@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --background: #ffffff;
    --foreground: #000000;
    --foreground-1-4: #00000044;
    --foreground-1-2: #00000088;
    --color1: #e8b242;
    --color1Light: #e8b242aa;
    --color2: #cf941b;
    --color2Light: #cf941baa;
    --color3: #a3710a;
    --color3Light: #a3710aaa;
    --mainFont: "Roboto", sans-serif;
    --subFont: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    min-height: 55vh;
    font-family: var(--subFont);
    align-items: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.normSizedArticle {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: start;
    align-items: stretch;
    font-family: var(--mainFont);
    width: 300px;
    margin: 20px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 2px 4px 3px var(--foreground-1-2), -2px -2px 3px var(--foreground-1-2);
    transition: all 0.5s ease-in-out;
    position: relative;
}

.normSizedArticle * {
    margin: 0px;
    padding: 0px;
}

.normSizedArticle_priceBox {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: start;
    width: 100%;
}

.normSizedArticle_banner {
    font-family: var(--mainFont);
    font-size: 30px;
    text-align: center;
    padding: 5px;
}

.normSizedArticle_image {
    width: 300px;
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: inset 0px 0px 80px -30px var(--foreground);
    z-index: 3;
}

.normSizedArticle_button {
    position: absolute;
    background-color: var(--foreground-1-4);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.normSizedArticle_button:nth-child(2) {
    left: 5px;
}

.normSizedArticle_button:nth-child(3) {
    right: 5px;
}

.normSizedArticle_imageBand {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    width: fit-content;
    transition: all 500ms ease-in-out;
    z-index: -1;
}

.normSizedArticle_imageBandItem {
    width: 300px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    z-index: 5;
    align-items: center;
}

.normSizedArticle_imageBandItem>img {
    z-index: -1;
    transition: all 750ms ease-in-out;
    height: 225px;
}

.normSizedArticle_image>a {
    z-index: 4;
}

.normSizedArticle_imageBandItem:hover>img {
    transform: scale(1.1);
}

.normSizedArticle:hover {
    box-shadow: 2px 4px 15px var(--foreground-1-2), -2px -2px 15px var(--foreground-1-2);
}

.normSizedArticle_sale {
    margin-top: 10px;
    margin-left: 30px;
    /* height: 27px; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.normSizedArticle_sale>h5 {
    color: var(--background);
    font-size: 15px;
    background-color: var(--foreground);
    border-radius: 3px;
    border: none;
    padding: 5px;
    font-weight: 700;
}

.normSizedArticle_sale>div {
    margin-right: 30px;
}

.normSizedArticle_sale svg {
    height: 27px;
    width: 27px;
    fill: var(--foreground);
    stroke: var(--background);
}

.normSizedArticle_sale svg:hover {
    fill: var(--color2Light);
}

.normSizedArticle_title {
    font-size: 16px;
    margin-top: 5px;
    margin-left: 30px;
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.normSizedArticle_off>h6 {
    color: #009f2b;
    margin: 5px;
    font-weight: 300;
}

.normSizedArticle_price {
    font-size: 20px;
    margin-top: 5px;
    margin-left: 30px;
    font-weight: 400;
}

/* .normSizedArticle_previousPrice {
    height: 14px;
} */

.normSizedArticle_previousPrice>h6 {
    margin-top: 5px;
    margin-left: 30px;
    font-size: 12px;
    color: var(--foreground-1-2);
    font-weight: 400;
}

.normSizedArticle_sizes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    margin-left: 25px;
    margin-bottom: 10px;
}

.normSizedArticle_sizes p {
    margin: 2px;
    padding: 4px;
    color: var(--foreground);
    background-color: var(--background);
    border: solid var(--color1) 1px;
    border-radius: 5px;
}

#bigSizedArticle {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: solid var(--foreground-1-2) 2px;
    border-radius: 5px;
}

#bigSizedArticle>form {
    margin: 0px;
    padding: 0px;
    border: none;
}

#bigSizedArticle_ImagesPreview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 0px 15px;
    height: 100%;
}

#bigSizedArticle_ImagesPreview>span {
    height: 50px;
    width: 50px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: solid var(--foreground-1-4) 1px;
    border-radius: 5px;
}

#bigSizedArticle_ImagesPreview>span:first-child {
    margin-top: 15px;
}

#bigSizedArticle_ImagesPreview>span>img {
    width: 50px;
}

.bigSizedArticle_image {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: start;
    width: 40vw;
}

.bigSizedArticle_button {
    position: absolute;
    background-color: var(--foreground-1-4);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.bigSizedArticle_button:first-child {
    left: 5px;
}

.bigSizedArticle_button:nth-child(2) {
    right: 5px;
}

.bigSizedArticle_imageBand {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    width: fit-content;
    transition: all 500ms ease-in-out;
    z-index: -1;
}

.bigSizedArticle_imageBandItem {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    width: 40vw;
}

#bigSizedArticle_description {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#bigSizedArticle_descriptionTop {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 400px;
}

#bigSizedArticle_descriptionBottom {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: end;
    width: 400px;
}

.bigSizedArticle_descriptionText {
    color: var(--foreground);
    font-family: var(--mainFont);
    margin: 5px 0px 0px 10px;
    font-size: 16px;
    font-weight: 300;
    min-height: 21px;
}

.bigSizedArticle_descriptionText:last-of-type {
    margin-bottom: 20px;
}

#bigSizedArticle_Name {
    color: var(--foreground);
    font-family: var(--mainFont);
    margin: 5px 0px 0px 10px;
    font-size: 25px;
    font-weight: 500;
}

#bigSizedArticle_priceBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: end;
    font-family: var(--mainFont);
}

#bigSizedArticle_PrevPrice {
    color: var(--foreground-1-2);
    margin: 5px 0px 0px 10px;
    min-height: 14px;
    font-size: 14px;
    font-weight: 300;
}

#bigSizedArticle_price {
    color: var(--foreground);
    margin: 5px 0px 0px 10px;
    font-size: 35px;
    font-weight: 300;
    width: max-content;
}

#bigSizedArticle_offRate {
    color: #009f2b;
    margin: 0px 0px 3px 7px;
    font-size: 14px;
    width: max-content;
}

.bigSizedArticle_sizes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    margin-left: 5px;
}

.bigSizedArticle_sizeBox {
    margin: 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border: solid var(--color1) 1px;
    border-radius: 5px;
}

.bigSizedArticle_sizeBox>input {
    all: unset;
    size: unset;
    width: 50px;
    text-align: center;
    border-top: solid var(--color1) 1px;
}

.bigSizedArticle_upperSizeBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

.bigSizedArticle_upperSizeBox>p {
    margin: 0px;
    padding: 0px;
    flex-grow: 3;
    text-align: center;
}

.bigSizedArticle_rightSizeBox {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    border-left: solid var(--color1) 1px;
}

.bigSizedArticle_rightSizeBox>p {
    margin: 0px;
    padding: 0px;
    flex-grow: 1;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.bigSizedArticle_rightSizeBox>p:first-child {
    border-bottom: solid var(--color1) 1px;
}

.bigSizedArticle_variantsBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    margin-left: 5px;
    width: 100%;
}

.bigSizedArticle_variant {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    margin: 5px;
    /* width: 70px; */
    /* flex-grow: 1; */
    border: solid var(--color1) 1px;
    border-radius: 5px;
}

.bigSizedArticle_variantImage {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 10px;
    margin-bottom: 5px;
    width: 50px;
}

.bigSizedArticle_variantImage>img {
    width: 100%;
}

.bigSizedArticle_variant>p {
    margin: 0px 5px;
    margin-bottom: 5px;
    padding: 0px;
    text-align: center;
    width: max-content;
}

#bigSizedArticle_buyBtn {
    padding: 10px 15px;
    font-family: var(--subFont);
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: var(--color2);
    color: var(--background);
    cursor: pointer;
    box-shadow: var(--foreground-1-4) 0px 3px 8px;
    display: block;
    width: 100%;
    margin-top: 10px;
}

#bigSizedArticle_cartBtn {
    padding: 10px 15px;
    font-family: var(--subFont);
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: var(--color3);
    color: white;
    cursor: pointer;
    box-shadow: var(--foreground-1-4) 0px 3px 8px;
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

#bigSizedArticleMobile {
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: solid var(--foreground-1-2) 2px;
    border-radius: 5px;
    margin: 20px;
}

#bigSizedArticleMobile>form {
    margin: 0px;
    padding: 0px;
    border: none;
}

#bigSizedArticleMobile_UpperSide {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    border-bottom: solid var(--foreground-1-2) 2px;
}

.bigSizedArticleMobile_descriptionText {
    color: var(--foreground);
    font-family: var(--mainFont);
    margin: 5px 0px 0px 10px;
    font-size: 16px;
    font-weight: 300;
    min-height: 21px;
}

.bigSizedArticleMobile_descriptionText:last-of-type {
    margin-bottom: 20px;
}

#bigSizedArticleMobile_Name {
    color: var(--foreground);
    font-family: var(--mainFont);
    margin: 10px 0px 0px 10px;
    font-size: 25px;
    font-weight: 500;
}

.bigSizedArticleMobile_Image {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: start;
    margin: 10px 10px 10px 10px;
    width: 75vw;
}

.bigSizedArticleMobile_imageBandItem {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    width: 75vw;
}

#bigSizedArticleMobile_PrevPrice {
    color: var(--foreground-1-2);
    margin: 5px 0px 0px 10px;
    min-height: 14px;
    font-size: 14px;
    font-weight: 300;
}

#bigSizedArticleMobile_priceBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: end;
    font-family: var(--mainFont);
}

#bigSizedArticleMobile_price {
    color: var(--foreground);
    margin: 5px 0px 0px 10px;
    font-size: 35px;
    font-weight: 300;
    width: max-content;
}

#bigSizedArticleMobile_offRate {
    color: #009f2b;
    margin: 0px 0px 3px 7px;
    font-size: 14px;
    width: max-content;
}

.bigSizedArticleMobile_btnsBox {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: start;
}

#bigSizedArticleMobile_buyBtn {
    padding: 10px 15px;
    font-family: var(--subFont);
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: var(--color2);
    color: var(--background);
    cursor: pointer;
    box-shadow: var(--foreground-1-4) 0px 3px 8px;
    display: block;
    width: auto;
    margin: 10px 10px 0px 10px;
}

#bigSizedArticleMobile_cartBtn {
    padding: 10px 15px;
    font-family: var(--subFont);
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: var(--color3);
    color: var(--background);
    cursor: pointer;
    box-shadow: var(--foreground-1-4) 0px 3px 8px;
    display: block;
    width: auto;
    margin: 10px 10px 20px 10px;
}

#aboutArticle {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 2px 4px 3px var(--foreground-1-2), -2px -2px 3px var(--foreground-1-2);
}

#aboutArticle_leftSide {
    display: flex;
    flex-direction: column;
    width: 500px;
    font-family: var(--mainFont);
}

#aboutArticle_leftSide>h2 {
    font-size: 50px;
    margin: 20px 0px;
    padding: 0px;
}

#aboutArticle_leftSide>pre {
    font-size: 25px;
    margin: 0px;
    padding: 0px;
    white-space: pre-line;
    font-family: var(--mainFont);
}

#aboutArticle_rightSide {
    display: flex;
    flex-direction: column;
    width: 500px;
    overflow: hidden;
}

#aboutArticle_rightSide>img {
    transform: translateY(-30px);
}

#contactArticle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    width: 800px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 2px 4px 3px var(--foreground-1-2), -2px -2px 3px var(--foreground-1-2);
}

#contactArticle * {
    font-family: var(--mainFont);
}

#contactArticle>h2 {
    font-size: 30px;
    margin-top: 24px;
    align-self: center;
    text-align: center;
}

#contactArticle h3 {
    font-size: 17px;
    display: inline;
    color: var(--background);
}

#contactArticle>h4 {
    font-size: 15px;
    margin-top: 20px;
    align-self: center;
    text-align: center;
}

.contactArticle_linkBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    border-radius: 5px;
}

#contactArticle_mail {
    background: #00eeff;
}

#contactArticle_linkBoxTextMail {
    cursor: pointer;
}

#contactArticle_whatsapp {
    background: #009087;
    background: -moz-linear-gradient(45deg, #00b5a9 0%, #005d57 100%);
    background: -webkit-linear-gradient(45deg, #00b5a9 0%, #005d57 100%);
    background: linear-gradient(45deg, #00b5a9 0%, #005d57 100%);
}

#contactArticle_instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

#contactArticle_tiktok {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #25f4ee 0%, #000000 50%, #fe2c55 100%);
    background: -webkit-linear-gradient(45deg, #25f4ee 0%, #000000 50%, #fe2c55 100%);
    background: linear-gradient(45deg, #25f4ee 0%, #000000 50%, #fe2c55 100%);
}

.contactArticle_linkBox>span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.contactArticle_linkBox>span:first-child {
    margin: 10px 0px 10px 10px
}

.contactArticle_linkBox>span:last-child {
    margin: 10px 10px 10px 0px;
}

.contactArticle_linkBoxText {
    font-size: 15px;
    display: inline;
    color: var(--background);
}

.contactArticle_linkBoxText:first-child {
    margin: 0px 10px 0px 0px;
}

.contactArticle_linkBoxText:last-child {
    margin: 0px 0px 0px 10px
}

.copyButton {
    height: 24px;
    width: 24px;
}

.copyButton svg {
    position: absolute;
    cursor: pointer;
}

.copyButton svg path {
    transition: all 200ms ease-in-out 0s;
}

.copyButton svg:last-child path {
    fill-opacity: 0;
}

.table,
.mobileTable,
.table_header,
.table_item {
    border-collapse: collapse;
    text-align: center;
}

.table {
    margin: 10px 10px 0px 10px;
    border: solid 2px var(--color2);
    border-radius: 5px;
}

.mobileTable {
    display: none;
}

.table_header,
.table_item {
    padding: 10px;
    border: solid 1px var(--color1);
}

.table_trashBox {
    background-color: #00000000;
    border: none;
    all: unset;
}

.table_trash {
    width: 30px;
    cursor: pointer;
}

.table_items:nth-child(even) {
    background-color: var(--color1Light);
}

.table_items:nth-child(odd) {
    background-color: var(--color2Light);
}

.table_items:last-child {
    border-top: solid 2px var(--color2);
    background-color: var(--background);
}

.table_items:last-child>.table_item:nth-child(1),
.table_items:last-child>.table_item:nth-child(2),
.table_items:last-child>.table_item:nth-child(5) {
    border-right-color: var(--background);
}

.table_items:last-child>.table_item:nth-child(1),
.table_items:last-child>.table_item:nth-child(2),
.table_items:last-child>.table_item:nth-child(3) {
    border-left-color: var(--background);
}

.endPurchase {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

#shownOptions {
    display: none;
    /* display: flex; */
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    font-family: var(--mainFont);
}

#shownOptions>h5 {
    margin: 30px 0px 0px 0px;
    text-align: center;
    font-family: var(--mainFont);
    font-size: 20px;
}

.link {
    text-decoration: underline;
    color: var(--color1);
}

#shownOptions>.copyButton {
    background-color: var(--color2Light);
    margin: 0px 20px 0px 0px;
    padding: 10px;
    align-self: end;
}

#sendText {
    margin: 30px 0px 0px 70px;
    text-align: start;
    font-family: var(--mainFont);
    white-space: pre-line;
}

#autoSend,
#submitPurchase {
    padding: 20px 30px;
    font-family: var(--subFont);
    border-radius: 40px;
    border: 0 !important;
    outline: 0 !important;
    background: var(--color1);
    color: var(--background);
    cursor: pointer;
    box-shadow: var(--foreground-1-4) 0px 3px 8px;
    display: block;
    width: auto;
    align-self: end;
    margin: 30px 20px 0px 10px;
}

#autoSend {
    background: linear-gradient(45deg, #32fff1 0%, #005d57 100%);
}

.accountForm-container {
    width: 300px;
    background-color: var(--background);
    box-shadow: var(--foreground-1-4) 0px 5px 15px;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 20px 30px;
}

.accountForm_title {
    text-align: center;
    font-family: var(--subFont);
    margin: 10px 0 30px 0;
    font-size: 28px;
    font-weight: 800;
}

.accountForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 15px;
}

.accountForm_input {
    border-radius: 20px;
    border: 1px solid var(--foreground-1-4);
    outline: 0 !important;
    box-sizing: border-box;
    padding: 12px 15px;
}

.accountForm_forgottenPass {
    text-decoration: underline;
    margin: 0;
    text-align: end;
    color: #747474;
    text-decoration-color: #747474;
}

.accountForm_forgottenPass-label {
    cursor: pointer;
    font-family: var(--subFont);
    font-size: 9px;
    font-weight: 700;
}

.accountForm_forgottenPass-label:hover {
    color: var(--foreground);
}

.accountForm_submitBtn {
    padding: 10px 15px;
    font-family: var(--subFont);
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: var(--color2);
    color: var(--background);
    cursor: pointer;
    box-shadow: var(--foreground-1-4) 0px 3px 8px;
}

.accountForm_submitBtn:active {
    box-shadow: none;
}

.accountForm_wrongSite-label {
    margin: 0;
    font-size: 10px;
    color: #747474;
    font-family: var(--subFont);
}

.accountForm_wrongSite-link {
    margin-left: 1px;
    font-size: 11px;
    text-decoration: underline;
    text-decoration-color: var(--color2);
    color: var(--color2);
    cursor: pointer;
    font-weight: 800;
    font-family: var(--subFont);
}

.buttons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 15px;
    display: none;
}

.google-login-button {
    border-radius: 20px;
    box-sizing: border-box;
    padding: 10px 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--subFont);
    font-size: 11px;
    gap: 5px;
}

.google-login-button {
    border: 2px solid #747474;
}

.google-icon {
    font-size: 18px;
    margin-bottom: 1px;
}

@media only screen and (max-width: 1240px) {
    article:hover {
        transform: unset;
    }

    #aboutArticle {
        flex-direction: column;
        padding: 10px;
        width: 85%;
    }

    #aboutArticle_leftSide {
        width: inherit;
        align-items: center;
    }

    #aboutArticle_leftSide>h2 {
        font-size: 30px;
    }

    #aboutArticle_leftSide>p {
        font-size: 15px;
        text-align: center;
    }

    #aboutArticle_rightSide {
        width: 270px;
    }

    #aboutArticle_rightSide>img {
        transform: translateY(0px);
    }

    #contactArticle {
        width: 85%;
    }

    #bigSizedArticle {
        display: none;
    }

    #bigSizedArticleMobile {
        display: flex;
    }

    .table {
        display: none;
    }

    .mobileTable {
        margin-top: 20px;
        display: unset;
    }

    #shownOptions>h5 {
        width: 75%;
    }

    #sendText {
        margin-left: 0px;
        width: 75%;
    }

    .table_items:last-child {
        border-top: unset;
        background-color: var(--color2Light);
    }

    .table_items:last-child>.table_item:nth-child(1),
    .table_items:last-child>.table_item:nth-child(2),
    .table_items:last-child>.table_item:nth-child(3) {
        border-left-color: var(--color1);
    }

    .table_items:last-child>.table_item:nth-child(1),
    .table_items:last-child>.table_item:nth-child(2),
    .table_items:last-child>.table_item:nth-child(5) {
        border-right-color: var(--color1);
    }
}