@import "_root.css";
@import "animations.css";
@import "common-08082024.css";

.custom-header {
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--fifty-color);
}

.custom-footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.nav-link.active,
.navbar-brand {
    font-weight: 900;
}

.marquee-wrapper {
    background-color: var(--secondary-color);
    border-bottom: 1px solid #c8c8c8;
    position: relative;
    overflow-x: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
}

.marquee-wrapper ul li {
    padding: 0 40px;
}

.marquee-wrapper ul li a {
    color: var(--quaternary-color);

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4rem;
    background-color: var(--white-color);
    color: var(--quaternary-color);
    position: relative;
    transition-duration: 0.5;
    transition-timing-function: linear;
    transition-property: all;
}

.right a {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--quaternary-color);
    font-weight: 400;
    line-height: 13px;
}

.left {
    position: relative;
    z-index: 99;
}

.middle {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.middle li a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--quaternary-color);
    font-family: Work Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
}

.middle li:hover a.main,
.middle li.selected a.main {
    text-shadow: 0 0 0.05px var(--fifty-color);
}

.middle li:hover>div.submenu {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 35px;
    position: relative;
    z-index: 99;
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--fifty-color);
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.mobile-menu-icon span:nth-child(1) {
    top: 7px;
}

.mobile-menu-icon span:nth-child(2) {
    top: 16px;
}

.mobile-menu-icon span:nth-child(3) {
    top: 25px;
}

.mobile-menu-icon.open span:nth-child(1) {
    top: 16px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.mobile-menu-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-icon.open span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.section-devider {
    padding: 40px 0;
    border-top: 1px solid var(--primary-color);
    margin: 50px 0;
}

.mobile-menu {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 110px;
    left: -10000px;
    background-color: var(--secondary-color);
    padding: 0 20px;
    z-index: 9999;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hero-image {
    width: 100%;
    height: calc(100vh - 97px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    flex-direction: column;
    position: relative;
}

.hero-image h1,
.hero-image h2 {
    color: var(--quaternary-color);
    font-size: 100px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.hero-image h1 {
    font-weight: 300;
}

.hero-image h2 {
    font-weight: 500;
}

.hero-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    position: absolute;
    bottom: 30px;
    align-items: center;
    color: var(--quaternary-color);
}

.hero-content-wrapper span {
    font-size: 18px;
    font-weight: 400;
}

.hero-content-wrapper a {
    font-size: 20px;
    font-weight: 700;
    color: var(--quaternary-color);
}

.no-stock .item-card-img {
    position: relative;
}

.no-stock .item-card-img:before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--fifty-color-opacity);
}

.no-stock .hidden-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.no-stock .hidden-text span,
.no-stock .hidden-text a {
    display: block;
    text-align: center;
    color: var(--white-color);
}

.no-stock .hidden-text a {
    text-decoration: underline;
}

.no-stock .hidden-text a:hover {
    text-decoration: none;
}

.complete-your-look {
    display: block;
    padding: 20px 0;
    text-align: right;
}

.mobile-slider {
    display: none;
    overflow: hidden;
}

.shop-item-card-wrapper {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;
}

/* .main-page .shop-item-card-wrapper, .product-detail-page .shop-item-card-wrapper{
    height: 540px;
} */

/* .shop1-page .shop-item-card-wrapper{
    height: 560px;
} */
.submenu .shop-item-card-wrapper {
    height: auto;
}

.shop-item-card-wrapper.hover-group>.item-card-content {
    position: relative;
    bottom: -4px;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 8;
    visibility: hidden;
}

.shop-item-card-wrapper.hover-group:hover>.item-card-content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.item-card-img b {
    position: absolute;
    top: -80px;
    left: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.shop-item-card-wrapper.no-stock b {
    opacity: 1;
    top: 20px;
    color: #fff;
}

.item-card-img img {
    width: 100%;
}

.shop-item-card-wrapper.hover-group:hover>.item-card-img h1 {
    color: #fff;
}

.shop-item-card-wrapper.hover-group:hover .item-card-img b {
    opacity: 1;
    top: 15px;
}

.item-card-img.no-hover-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.item-card-img.no-hover-group h1 {
    font-weight: 500;
}

.item-card-img h1,
.shop-item-card-wrapper h1 {
    color: var(--quaternary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 15px 0 5px;
}

.mix-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    border: 1px solid #707070;
    padding: 30px;
    gap: 25px;
}

.mix-container .swiper-container {
    flex: 1;
    width: 100%;
    position: relative;
}

.mix-container .swiper-button-prev,
.mix-container .swiper-rtl .swiper-button-next {
    left: 30%;
}

.mix-container .swiper-button-next,
.mix-container .swiper-rtl .swiper-button-prev {
    right: 30%;
}

.mix-container .swiper-slide {
    width: 33.333% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.mix-container .swiper-slide span {
    opacity: 0;
}

.mix-container .swiper-slide.swiper-slide-active span {
    opacity: 1;
}

.mix-container .swiper-slide img {
    width: 100%;
    height: 100%;
    scale: 0.6;
}

#mix-and-match .mix-container #swiper1 .swiper-slide-active img {
    scale: 0.8;
}

.mix-container #swiper1 .swiper-slide img {
    scale: 0.5;
    object-fit: contain;
}

#mix-and-match .mix-container #swiper2 .swiper-slide span {
    order: 2;
}

#mix-and-match .mix-container #swiper2 .swiper-slide img {
    object-fit: contain;
}

#mix-and-match .mix-container #swiper1 .swiper-slide span {
    display: none;
}

#mix-and-match .mix-container #swiper1 .swiper-slide-active span {
    display: block;
}

.mix-content-container {
    height: 100%;
}

.mix-content-container>div span {
    display: block;
    margin-bottom: 5px;
}

.mix-container .swiper-slide-prev,
.mix-container .swiper-slide-next {
    opacity: 0.5;
}

.mobile-slider-mix .swiper-slide {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mobile-slider-mix .swiper-slide img {
    width: 80%;
}

.mobile-slider-mix .swiper-container {
    border: 1px solid #707070;
    padding: 30px;
    position: relative;
}

.item-card-content-right {
    display: flex;
}

.item-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 0;
    background-color: #fff;
}

.item-card-content p {
    color: var(--quaternary-color);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.item-card-content span {
    color: var(--quaternary-color);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.no-stock a.let-me-know {
    width: 100%;
    display: block;
    text-align: right;
    color: var(--quaternary-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-decoration: underline;
    line-height: normal;
}

.no-stock a.let-me-know:hover {
    text-decoration: none;
}

.hero-type-2 .button-type-1,
.hero-type-3 .button-type-1 {
    z-index: 1;
    width: 150px;
}

.hero-type-3 h2 {
    text-align: center;
}

/*footer*/
footer {
    border-top: 1px solid var(--primary-color);
}

footer .link-group {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 20px 4rem;
}

.text-link {
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    color: var(--black-color);
}

.text-link:hover {
    color: var(--quaternary-color);
}

footer input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    transition: 0.5s;
    outline: none;
}

footer .input-wrap {
    position: relative;
}

footer .input-wrap svg {
    position: absolute;
    right: 10px;
}

/*footer img {
    width: 50%;
}*/

/*footer*/
/*Accordion*/
.accordion {
    width: 100%;

    color: black;
    background-color: white;
}

.accordion h1 {
    color: var(--quaternary-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.accordion .accordion-container {
    position: relative;
    height: auto;
    max-height: 50px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

.accordion .accordion-container.active {

    max-height: 500px;
}

/*.accordion .label {
    position: relative;
    padding: 10px 0;
    color: var(--quaternary-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
}*/

.accordion .content {
    position: relative;
    font-size: 16px;
    text-align: justify;
    color: var(--quaternary-color);
    font-weight: 400;
    line-height: 140%;
    display: grid;
    grid-template-rows: 0;
    transition: grid-template-rows 500ms;
}

.accordion .content .element {
    overflow: hidden;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
}

.accordion .content p {
    display: block;
    margin: 10px 0;
}

.accordion hr {
    width: 100;
    margin-left: 0;
    border: 1px solid var(--primary-color);
}

.accordion .accordion-container.active .content {
    grid-template-rows: 1fr;
}

/*.small-accordion .accordion .label {
    font-size: 15px;
    font-weight: 500;
}*/
.small-accordion .accordion .accordion-container.active label {
    color: var(--primary-color);
}

.accordion .label::before {
    content: "";
    background: url("/ikikiz/img/svg/angle-small-right.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 25px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    filter: brightness(0);
}

.accordion .accordion-container.active .label::before {
    background: url("/ikikiz/img/svg/angle-small-right.svg") no-repeat center center;
    background-size: contain;
    transform: translateY(-50%) rotate(180deg);
    filter: brightness(0);
    top: 15px;
}

/*Accordion*/

.notification-messeage img {
    width: 20px;
}

.login-wrapper {
    width: 60%;
    margin: 0 auto;
}

.login-wrapper form {
    gap: 11px !important;
}

input.search-input {
    padding: 15px 30px;
    border: 0;
    border-bottom: 1px solid #707070;
    outline: none;
    width: 100%;
}

input.search-input::placeholder {
    color: var(--quaternary-color);
    font-size: 15px;
    font-weight: 700;
}

.search-group {
    position: relative;
}

.search-group img {
    position: absolute;
}

.search-group img.search-icon {
    left: 20px;
    top: 20px;
}

.search-group img.close-icon {
    right: 20px;
    top: 20px;
    width: 20px;
    cursor: pointer;
}

.product-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 12rem;
    display: grid;
}

.collection-item {
    gap: 20px;
    position: relative;
}

#shop-collection-page-title h2 {
    border-bottom: 1px solid var(--quaternary-color);
    padding-bottom: 20px;
}

.collection-item p {
    text-align: center;
}

.collection-item:nth-child(even) {
    flex-direction: row-reverse;
}

img.blog-hero-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: top;
}

.collection-item span {
    display: block;
    width: 100%;
}

.blog-detail-wrapper {
    position: relative;
}

.title-on-image {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.image-with-title-wrapper {
    position: relative;
}

.size-and-guide-image-with-title-wrapper {
    position: relative;
}

.care-and-guide-collections-image-with-title-wrapper {
    position: relative;
}

.image-with-title-wrapper h2 {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    background: #ffffffb5;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-and-guide-image-with-title-wrapper h2 {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.care-and-guide-collections-image-with-title-wrapper h2 {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    background: #ffffffb5;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.care-guide-wrapper {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    gap: 15px;
}

.care-guide-wrapper .care-guide-item {
    width: calc(33.333% - 10px);
}

.user-own-page a:hover,
.user-own-page a.selected {
    font-weight: 700;
    color: var(--quaternary-color) !important;
}

.custom-table {
    border: 0;
    border-spacing: 0;
}

.custom-table th {
    padding: 8px;
}

.map-list-group ul li a {
    display: flex;
    align-items: center;
    padding: 25px 5px;
    border-bottom: 1px solid var(--fifty-color);
    align-items: flex-start;
    gap: 25px;
}

.map-list-group ul li div span {
    display: block;
    width: 100%;
    color: var(--quaternary-color);
}

.retailler-mapIcon img {
    width: 30px;
}

.card-page-information {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-color);
}

.discount-group div {
    position: absolute;
    top: 0;
    right: 0;
}

.card-adress-wrapper {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--quaternary-color);
}

.need-assistance span {
    display: block;
}

.need-assistance a {
    color: #7d6857;
}

.need-assistance a {
    text-decoration: underline;
}

.need-assistance a:hover {
    text-decoration: none;
}

.card-radio-detail-wrapper {
    margin-left: 40px;

    margin-top: 40px;
    margin-bottom: 30px;
}

.card-radio-container {
    border: 1px solid #707070;
    padding: 20px;
}

.cart-done-info span {
    display: block;
}

.social-media {
    column-gap: 30px;
}

footer .social-media a {
    width: 30px;
    height: 30px;
}

footer .social-media a img {
    width: 100%;
    height: 100%;
}

footer .social-media a.youtube {
    width: 35px;
}

footer .social-media a.facebook {
    height: 27px;
}

.breadcrumb {
    width: 100%;
    display: flex;
    margin-bottom: 51px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0;
    color: var(--quaternary-color);
    content: ">";
    padding-left: 5px;
}

.breadcrumb-item+.breadcrumb-item:hover::before,
.breadcrumb-item+.breadcrumb-item:hover a {
    color: var(--quaternary-color);
}

.breadcrumb-item a {
    text-decoration: none;
    padding-right: 5px;
    color: var(--quaternary-color) !important;
    font-size: 1.125em;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: var(--primary-color) !important;
}

.product-announced {
    margin-bottom: 11px;
}

.breadcrumb-item.active:before {
    padding-right: 5px;
}

.product-sizes {
    display: flex;
    gap: 8px;
}

.product-sizes input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.map-list-group {
    height: 810px;
    overflow-y: auto;
}

.product-sizes label {
    display: inline-flex;
    cursor: pointer;
    background-color: #f5f4f0;
    text-align: center;
    transition: background-color 0.3s ease;
    color: var(--quaternary-color);
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

#detail-saved a:hover {
    color: var(--primary-color);
}

.product-sizes input:checked+label,
.product-sizes label:hover {
    background-color: var(--primary-color);
    color: #fff;
}

table.table-custom-small {
    border: 0;
    border-spacing: 0;
    margin: 60px 0;
}

table.table-custom-small tr:nth-child(even) {
    background-color: rgba(207, 181, 162, 0.1);
}

table.table-custom-small td,
table.table-custom-small th {
    padding: 15px;
    color: var(--quaternary-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

table.table-custom-small th {
    font-weight: 700;

    color: var(--primary-color);
}

.product-announced span {
    padding: 5px 15px;
    text-align: center;
    border: 1px solid var(--primary-color);
    font-size: 1.25em;
    font-weight: 400;
    color: var(--quaternary-color);
}

.color-selector {
    display: flex;
    gap: 8px;
}

.color-selector input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color-selector label,
.color-selector a {
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid transparent;
    background-size: cover;
    transition: background-color 0.3s ease;
}

.color-selector input:checked+label {
    border-color: var(--quaternary-color);
    color: #fff;
}

.color-selector a:hover {
    background-color: #f8f8f8;
}

.left-menu-external {
    width: 30%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--white-color);
    padding: 50px 30px;
    box-shadow: 12px 0 13px 10px #000;
    position: fixed;
    transition: transform 0.5s ease-in-out;
    transform: translateX(100%);
    top: 0;
    right: 0;
    z-index: 9999999999;
    overflow: auto;
}

.size-guied-external {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.size-guied-external p,
.size-guied-external span {
    color: #7d6857;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
}

.left-menu-external.active {
    transform: translateX(0);
}

a.close-external {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

a.close-external img {
    width: 25px;
}

.olcu-image {
    height: auto;
    width: 100%;
}

.main-page-slider .swiper-slide {
    width: 21%;
}

/*Media Query*/
@media only screen and (max-width: 575.98px) {

    .flex-sm-column,
    .footer-mobile {
        flex-direction: column !important;
    }

    .flex-sm-align-center {
        align-items: center !important;
    }

    .pop-up-container {
        max-width: 300px !important;
    }

    .pop-up-content {
        height: 350px !important;
        padding: 15px;
    }

    .pop-up-container img {
        height: 250px;
    }

    .collection-item,
    .collection-item:nth-child(even),
    .section-top:nth-child(even) {
        flex-direction: column;
    }

    .care-guide-wrapper .care-guide-item {
        width: 100% !important;
    }
}

@media only screen and (max-width: 1024px) {

    .tab-container,
    .nested-tab-container,
    .list-tab-container {
        gap: 10px;
        justify-content: space-between;
        padding: 0;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-align-center {
        align-items: center !important;
    }

    .middle,
    .right,
    .desktop-gallery {
        display: none !important;
    }

    .mob-gap-20 {
        gap: 20px;
    }

    .mobile-menu-icon,
    .mobile-slider {
        display: block;
    }

    .hero-image h1,
    .hero-image h2 {
        font-size: 40px;
    }

    .hero-image .gap-10 {
        gap: 5px;
    }

    .hero-image img {
        width: 50%;
    }

    .item-card-content {
        height: auto;
    }

    .mobile-gap {
        display: flex;
        gap: 20px;
        --bs-gutter-x: 0;
    }

    .link-group {
        padding: 20px 10px !important;
    }

    footer img,
    .login-wrapper,
    .w-50,
    .w-70,
    .w-20 {
        width: 100%;
    }

    .pop-up-container {
        max-width: 600px;
    }

    .pop-up-wrapper {
        flex-direction: column;
    }

    .font-60 {
        font-size: 30px;
    }

    .collection-item {
        gap: 15px;
    }

    .title-on-image {
        font-size: 40px;
    }

    .ikikiz-collection-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .mobile-menu.open {
        left: 0;
        top: 70px;
        height: 100vh;
        position: fixed;
    }

    .header.open {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 99999;
    }

    button[type="submit"] {
        width: 80%;
    }

    .flex-direction-col {
        flex-direction: column !important;
    }

    .care-guide-wrapper .care-guide-item {
        width: calc(50% - 10px);
    }

    .user-own-nav {
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
        text-align: left;
        font-size: 14px;
    }

    .tab-container,
    .nested-tab-container {
        padding: 4px;
    }

    .tab {
        padding: 10px;
        font-size: 0.8125em;
        margin: 0;
        text-align: center;
        cursor: pointer;
    }

    .list-tab {
        padding: 0 10px;
        font-size: 0.8125em;
        cursor: pointer;
        line-height: 20px;
    }

    .left-menu-external {
        width: 90%;
        padding: 20px;
        box-shadow: none;
    }

    .tab-content,
    .nested-tab-content {
        padding: 0;
    }

    .main-page-slider .swiper-slide {
        width: 50%;
    }

    .shop-item-card-wrapper {
        height: auto;
    }

    .shop-item-card-wrapper.hover-group:hover>.item-card-content {
        padding: 10px;
    }

    .item-card-img h1,
    .shop-item-card-wrapper h1 {
        margin: 8px;
    }
}

@media only screen and (max-width: 600px) {
    .item-card-content {
        height: 70px;
    }

    /*footer img {
        width: 50% !important;
    }*/
}

@media only screen and (max-width: 1090px) {
    .sub-menu-left {
        padding: 0;
        gap: 5px;
    }

}

@media only screen and (min-width: 1090px) {
    .product-grid {
        grid-template-columns: 2fr minmax(48.8rem, 1fr);
    }

}

/*Media Query*/

/*.care-guide h3 {
    color: #7d6857;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}*/

.border-split {
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    margin: 2rem 0;
}

.care-guide p {
    margin-bottom: 0.4rem;
}

.card-page .shop-item-card-wrapper {
    height: 100%;
}

.ex-margin {
    margin-bottom: 4rem;
}


/* CUSTOM CSS */
.logo-container {
    width: 160px;
    height: 50px;
}

.header-logo {
    width: 100%;
    height: 100%;
    display: block;
}

.wrapper a {
    color: var(--quaternary-color);
}

.wrapper a:hover {
    color: var(--primary-color);
}

@media (min-width: 1024px) {
    .mix-container {
        gap: 0;
    }

    .mix-container .swiper-slide {
        gap: 0;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide {
        max-height: 550px;
        height: auto;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide {
        max-height: 300px;
        height: auto;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide span {
        display: none;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide-active span {
        display: block;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide img {
        scale: 0.8;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide-active img {
        scale: 1;
    }



    /* #homepage-hero {
        background: url(/sayfalar/anasayfa/banner1.jpg) no-repeat center;
        background-size: cover;
    } */

    #homepage-hero h1,
    #homepage-hero h2 {
        font-size: 120px;
        line-height: 130px;
    }

    #homepage-hero .mask {
        padding-top: 12%;
    }

    #homepage-hero .hero-content-wrapper {
        padding-right: var(--bs-gutter-x, 2rem);
        padding-left: var(--bs-gutter-x, 2rem);
    }

    #homepage-hero .hero-content-wrapper span {
        font-size: 26px;
        font-weight: 400;
    }

    #homepage-hero .hero-content-wrapper a {
        font-size: 32px;
    }

    #homepage-item-infos {
        bottom: 3%;
        left: 5%;
    }

    /* HERO TYPE 2 */
    #homepage-herotype-2 {
        background: url(/sayfalar/anasayfa/banner2.jpg) no-repeat center;
        background-size: cover;
    }

    /* HERO TYPE 2 */

    /* SHOP COLLECTION CARD */
    #shop-item-card-infos {
        bottom: 30px;
        left: 60px;
    }

    /* SHOP COLLECTION CARD */

    /* HERO TYPE 3 */
    #homepage-herotype-3 {
        background: url(/sayfalar/anasayfa/core_collection.jpg) no-repeat center;
        background-size: cover;
    }

    #homepage-herotype-3-content {
        padding-left: 15%;
        padding-bottom: 3%;
    }

    #homepage-herotype-3-content a {
        margin-top: 20px;
        display: inline-flex;
        margin-bottom: 0;
    }

    /* HERO TYPE 3 */

    /* PRODUCT SLIDER */
    div#submenu-about {
        transition: none;
    }

    .shop-item-card-wrapper:hover #item-card-title {
        display: none !important;
    }

    .shop-item-card-wrapper:hover #item-card-infos {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: var(--white-color);
    }

    .shop-item-card-wrapper:hover #item-card-hover {
        display: flex !important;
        width: 100%;
        align-items: center;
    }

    #item-card-hover {
        padding-right: 10px;
    }

    #product-list-page .shop-item-card-wrapper:hover #item-card-title {
        display: flex !important;
    }

    #product-list-page .shop-item-card-wrapper:hover #item-card-infos {
        position: relative;
        bottom: auto;
        width: 100%;
        background: transparent;
    }

    #product-list-page .shop-item-card-wrapper:hover #item-card-hover {
        display: flex !important;
        width: 100%;
        align-items: center;
    }

    #product-list-page #item-card-hover {
        padding-right: 10px;
    }

    #item-card-hover-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #item-card-hover-info h1 {
        font-weight: 600;
    }

    /* PRODUCT SLIDER */

    /* ABOUT US PAGE */
    #about-section-3 .about-text {
        top: -80px;
    }

    #about-section-4 .about-text {
        top: 60px;
    }

    #about-section-5 .about-text {
        top: 10px;
    }

    #about-section-6 .about-text {
        top: 30px;
    }

    #about-section-1 {
        border-top: 1px solid var(--primary-color);
        padding-top: 40px;
    }

    /* ABOUT US PAGE */

    /* WECARE PAGE */
    #wecare-page section .h-50 {
        overflow: auto;
    }

    #wecare-page section .height-825 {
        width: 90%;
        object-position: center;
        float: right;
        object-fit: cover;
        height: 750px;
    }

    #wecare-page #wecare-section-6 .height-825 {
        float: left;
    }

    /* WECARE PAGE */

    /* CARE GUIDE */
    #care-guide-page .image-with-title-wrapper {
        height: auto;
    }

    /* CARE GUIDE */

    /* SIZE GUIDE PAGE */
    #size-guide-content {
        top: -30px;
    }

    #size-guide-content-2 {
        top: 30px;
    }

    /* SIZE GUIDE PAGE */

    /* MIX & MATCH */
    #mix-and-match .tab-container {
        gap: 60px;
    }

    #mix-and-match .tab-container .tab {
        padding: 0;
        margin: 0;
    }

    #mix-and-match .tab-container .tab.active {
        color: var(--quaternary-color);
    }

    #mix-and-match .mix-container .swiper-slide-active img {
        width: 100%;
        scale: 0.8;
    }

    /* MIX & MATCH */

    /* COLLECTIONS PAGE */
    #collections-page hr {
        float: left;
        margin-left: 4rem;
        color: var(--fifty-color);
        height: 2px;
    }

    /* COLLECTIONS PAGE */

    /* CART PAGE */
    .card-page-wrapper .item-card-content-right {
        padding-top: 15px;
    }

    #right-cart-gift .button-type-1 {
        padding: 5px 30px;
        height: 50px;
    }

    #right-cart-gift input.custom-no-border {
        border: none;
        padding: 0;
    }

    #right-cart-gift {
        padding-bottom: 10px;
        border-bottom: 1px solid var(--quaternary-color);
    }

    #cart-add-address select,
    #cart-add-address input,
    #cart-add-address textarea {
        color: var(--quaternary-color);
    }

    /* CART PAGE */

    /* My Order Page */
    #my-order-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* My Order Page */

    /* PRODUCT LIST PAGE */
    #product-list-page .ps-product .shop-item-card-wrapper .swiper-pagination {
        top: auto;
        bottom: 10%;
        left: auto;
        right: 0;
    }

    /* PRODUCT LIST PAGE */

    /* FOOTER */
    #footer-bottom-button {
        padding: 10px;
        gap: 25px;
    }

    #footer-bottom-button img {
        rotate: 180deg;
    }

    /* FOOTER */
    .forMobile {
        display: none;
    }

    /* FOOTER */


    /* CUSTOM SEARCH AREA */
    .wrapper .search-group {
        padding: 0 45px;
    }

    .wrapper .search-group img.search-icon {
        left: 45px;
        width: 25px;
        top: 15px;
    }

    .wrapper .search-group img.close-icon {
        right: 45px;
        top: 15px;
    }

    .ps-cart--mobile {
        display: none;
    }

    .ps-panel--search-result.active .ps-panel__content {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        width: 100%;
        margin: 30px 0;
        gap: 15px;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result {
        margin: 0;
        padding: 0;
        border: none;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content .ps-product__title {
        order: 2;
        padding-right: 20px;
        padding-top: 10px;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content>.row {
        order: 1;
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        --bs-gutter-x: 0;
        width: 100%;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content>.row .col-6:first-child {
        display: none;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content .ps-product__thumbnail a {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content .ps-product__thumbnail img.ppimage {
        height: 100%;
        max-height: 310px;
        margin: 0;
        right: auto;
        position: relative !important;
    }

    .ps-panel--search-result.active .ps-panel__content .ps-product--search-result .ps-product__content>.row .col-6 {
        width: 100%;
    }

    /* CUSTOM SEARCH AREA */
}

/* CUSTOM MOBILE */
@media (max-width:1024px) {

    /* BLOG DETAIL */
    #blog-page #item-card-title {
        display: flex !important;
        justify-content: flex-start !important;
    }

    #blog-page #item-card-title .item-card-content-left {
        width: 100%;
    }

    #blog-page #item-card-title .item-card-content-right {
        display: none !important;
    }

    #blog-page #item-card-title .item-card-content-left h1 {
        margin: 10px 0;
    }

    /* BLOG DETAIL */
    .forDesktop {
        display: none;
    }

    .header {
        padding: 1rem;
    }

    .mobile-menu.open .header.header--mobile {
        padding-top: 3rem;
        align-items: flex-start !important;
    }

    /* #homepage-hero {
        background: url(/sayfalar/anasayfa/Mobile/banner1.jpg) no-repeat center;
        background-size: cover;
    } */

    /* HERO TYPE 2 */
    #homepage-herotype-2 {
        background: url(/sayfalar/anasayfa/Mobile/banner2.jpg) no-repeat center;
        background-size: cover;
    }

    #homepage-herotype-2 h1 {
        font-size: 22px;
        margin-bottom: 0;
        padding: 0 10px;
        text-align: center;
    }

    #homepage-herotype-2 h2 {
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: 0;
    }

    /* HERO TYPE 2 */

    /* HOMEPAGE SECTION 3 */
    /* #homepage-section-3>.row {
        gap: 20px;
    } */

    #homepage-item-infos {
        bottom: 10px;
        left: 20px;
        background: rgb(255, 255, 255);
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(0, 0, 0, 0) 100%);
        width: 70%;
    }

    /* HOMEPAGE SECTION 3 */

    /* SHOP COLLECTION CARD */
    #shop-item-card-infos {
        bottom: 10px;
        left: 20px;
    }

    #shop-item-card-infos h1 {
        color: var(--white-color);
    }

    /* SHOP COLLECTION CARD */

    /* HERO TYPE 3 */
    #homepage-herotype-3 {
        background: url(/sayfalar/anasayfa/Mobile/core_collection.jpg) no-repeat center;
        background-size: cover;
    }

    #homepage-herotype-3-content {
        padding-left: 5%;
        padding-bottom: 5%;
    }

    #homepage-herotype-3-content a {
        margin-top: 20px;
        display: inline-flex;
        margin-bottom: 0;
    }

    /* HERO TYPE 3 */

    /* ABOUT US PAGE */
    #about-page p {
        font-size: 16px;
    }

    #about-page .height-689 {
        height: 100%;
    }

    #about-section-4.section-top:nth-child(4) {
        --offset: 45px;
    }

    #about-section-5.section-top:nth-child(5) {
        --offset: 60px;
    }

    #about-section-6.section-top:nth-child(6) {
        --offset: 75px;
    }

    #about-page #footer-section-1 {
        margin-top: 25%;
    }

    /* ABOUT US PAGE */

    /* WECARE PAGE */
    #wecare-page .mb-40 {
        margin-bottom: 0;
    }

    #wecare-page .mn-top-bottom {
        margin: auto;
    }

    #wecare-page .pad-container-2x {
        padding: 0 1rem;
    }

    #wecare-page section .h-50 {
        overflow: auto;
    }

    #wecare-page section .height-825 {
        width: 100%;
        object-position: center;
        float: none;
        object-fit: cover;
        height: 100%;
    }

    #wecare-two-img {
        flex-direction: column;
    }

    #wecare-page #wecare-section-6 .height-825 {
        float: left;
    }

    /* WECARE PAGE */

    /* CARE GUIDE PAGE */
    .care-guide h3 {
        text-align: center;
        font-size: 25px;
        font-weight: 400;
    }

    /* CARE GUIDE PAGE */

    /* SIZE GUIDE PAGE */
    #size-guide-page .nested-tab span {
        margin: 20px 0 10px;
        padding: 0;
        font-size: 0.7em;
    }

    #size-guide-page .nested-tab img {
        width: 70%;
    }

    #size-guide-page .nested-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #size-guide-page .collection-item:nth-child(2) {
        --offset: 0;
        top: 30px;
    }

    #size-guide-wrapper {
        margin: 80px auto 40px;
    }

    #size-guide-wrapper>div {
        text-align: left;
    }

    /* SIZE GUIDE PAGE */

    /* MIX & MATCH */
    #mix-and-match .tab-container .tab {
        padding: 0;
        margin: 0;
        font-size: 1em;
    }

    #mix-and-match .tab-container .tab.active {
        color: var(--quaternary-color);
    }

    #mix-and-match .mix-container .swiper-slide-active img {
        width: 100%;
        scale: 1;
    }

    #mix-and-match .tab-container {
        justify-content: space-between;
        padding: 0;
    }

    /* MIX & MATCH */

    /* RETAILLER PAGE */
    #retailler-left .map-list-group ul li div span:first-child {
        font-size: 1em;
    }

    #retailler-left .map-list-group ul li div span:last-child {
        font-size: 0.8em;
    }

    .retailler-content {
        padding-right: 1rem;
    }

    .map-list-group ul li a {
        padding: 15px 0;
        gap: 20px;
    }

    /* RETAILLER PAGE */

    /* PRODUCT DETAIL PAGE */
    #product-details-page .product-info {
        top: auto;
        position: relative;
    }

    #details-first-section>.row {
        --bs-gutter-x: 0;
    }

    #product-details-page .product-info .product-announced {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
    }

    #product-details-page .product-info .product-announced span {
        padding: 0;
        font-size: 0.8em;
        word-break: break-word;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 42px;
    }

    #product-details-page .tab-container,
    #product-details-page .nested-tab-container {
        padding: 0 10px;
    }

    #product-details-page .tab-container .tab {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    #product-details-page #item-card-hover-info h1 {
        margin: 10px 0 5px;
    }

    /* PRODUCT DETAIL PAGE */

    /* SHOP COLLECTION PAGE */
    #item-card-title {
        display: none !important;
    }

    .shop-item-card-wrapper #item-card-hover {
        display: flex !important;
        width: 100%;
        align-items: center;
    }

    #item-card-hover {
        padding-right: 10px;
    }

    #item-card-hover-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 80%;
    }

    #item-card-hover-info h1 {
        font-weight: 600;
        color: var(--quaternary-color);
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 5px auto;
        text-align: left;
    }

    .item-card-content-right {
        justify-content: flex-end;
        width: 20%;
    }

    #item-card-infos {
        margin-bottom: 20px;
    }

    /* SHOP COLLECTION PAGE */

    /* CART PAGE */
    #my-address-page .card-page-right {
        height: auto !important;
    }

    #cart-add-address select,
    #cart-add-address input,
    #cart-add-address textarea {
        color: var(--quaternary-color);
    }

    .card-radio-detail-wrapper {
        margin-left: 0;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .custom-checkbox {
        height: auto;
    }

    /* CART PAGE */

    /* CONTACT US */
    #contact-us-page button[type=submit] {
        width: 100%;
        margin-top: 0;
    }

    /* CONTACT US */

    /* COLLECTIVE PAGE */
    #collective-page .pad-button {
        padding: 10px 20px;
    }

    #collective-page .accordion .content .element {
        padding-right: 0;
        padding-top: 15px;
    }

    /* COLLECTIVE PAGE */

    #my-saved-page #item-card-hover-info h1 {
        margin: 10px 0 5px;
    }

    /* PRODUCT LIST PAGE */
    #product-list-page .ps-shopping-product {
        margin-top: 20px;
    }

    #product-list-page #item-card-title {
        display: flex !important;
        width: 100%;
    }

    #product-list-page #item-card-title a {
        width: 75%;
    }

    #product-list-page #item-card-title a h1 {
        margin: 10px 0 5px;
        min-height: 30px;
    }

    #product-list-page #item-card-title .item-card-content-right {
        width: 25%;
    }

    #product-list-page #item-card-title .item-card-content-right a:first-child {
        display: none;
    }

    #product-list-page #item-card-title .item-card-content-right a {
        width: 100%;
    }

    #product-list-page #item-card-title .item-card-content-right .heart-icon img {
        width: 88%;
    }

    #product-list-page .ps-product .shop-item-card-wrapper .swiper-pagination {
        top: auto;
        bottom: 26%;
        left: auto;
        right: 0;
    }

    /* PRODUCT LIST PAGE */

    /* FOOTER */
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.6666666667%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.3333333333%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.3333333333%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.3333333333%;
    }

    #footer-section-2 {
        padding: 0 10px;
        flex-direction: column;
    }

    #footer-section-2 a {
        width: auto;
        margin: 0;
    }

    #footer-bottom-button {
        padding: 10px;
        gap: 25px;
        text-wrap: nowrap;
    }

    #footer-bottom-button img {
        rotate: 180deg;
    }

    #footer-bottom-left {
        flex-direction: column;
        row-gap: 20px;
    }

    #footer-bottom-left div {
        align-items: center !important;
    }

    #footer-section-5 {
        align-items: center !important;
    }

    .social-media {
        column-gap: 30px;
    }

    footer .social-media a {
        width: 30px;
        height: 30px;
    }

    footer .social-media a img {
        width: 100%;
        height: 100%;
    }

    footer .social-media a.youtube {
        width: 35px;
    }

    footer .social-media a.facebook {
        height: 27px;
    }

    footer #footer-etbis {
        width: auto;
        margin: auto;
        margin-left: 10px;
    }

    /* FOOTER */
}

@media (max-width: 1024px) {
    #homepage-item-infos {
        bottom: 10px;
        left: 20px;
        background: rgb(255, 255, 255);
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(0, 0, 0, 0) 100%);
        width: 70%;
    }

    #wecare-page p {
        margin-bottom: auto;
    }

    #wecare-page #wecare-section-4 {
        margin: 40px auto;
    }

    #wecare-page #wecare-section-6 {
        margin: 40px auto;
    }

    #blog-page section .ck-content img {
        height: 100%;
        width: 100%;
    }
}


/* CART PAGE DESKTOP */
@media (min-width: 1024px) {
    .ps-shopping-cart .container {
        max-width: 100%;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .ps-shopping-cart {
        margin-top: 40px;
    }

    .ps-shopping-cart .ps-table--shopping-cart {
        border-spacing: inherit;
        padding-top: 20px;
    }

    .ps-shopping-cart .ps-table--shopping-cart tbody tr td {
        padding: 15px;
    }

    .ps-shopping-cart .ps-table--shopping-cart tbody tr td:first-child {
        padding-left: 0;
    }

    .ps-shopping-cart .ps-table--shopping-cart tbody tr td:last-child {
        padding-right: 0;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart {
        display: flex;
        column-gap: 20px;
    }

    .ps-shopping-cart .ps-table--shopping-cart thead th {
        font-size: 1.5em;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart .item-card-img {
        width: 20%;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart .ps-product__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart .ps-product__content a {
        font-size: 1.2em;
        font-weight: 500;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart .ps-product__content small {
        font-size: 1em;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart .item-card-img a {
        display: flex;
    }

    .ps-shopping-cart .ps-table--shopping-cart .ps-product--cart .item-card-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .ps-shopping-cart .ps-table--shopping-cart .price {
        padding: 0;
    }

    .ps-shopping-cart .ps-table--shopping-cart .price span {
        font-size: 1.5em !important;
        font-weight: 500;
    }

    .ps-shopping-cart .ps-table--shopping-cart .text-center {
        padding: 0;
    }

    .ps-shopping-cart .ps-table--shopping-cart .text-center .product__qty>div {
        justify-content: flex-start !important;
    }

    .ps-shopping-cart .ps-table--shopping-cart .text-center .product__qty>div .quantity__button {
        width: auto;
        font-size: 2.5em;
        min-width: 45px;
        padding: 0;
        color: var(--quaternary-color);
        font-weight: 300;
    }

    .ps-shopping-cart .ps-table--shopping-cart .text-center .product__qty>div .quantity__input {
        width: 50px;
        height: 50px;
        padding: 0;
        font-size: 1.8em;
        color: var(--quaternary-color);
    }

    .ps-shopping-cart .ps-table--shopping-cart .text-center .product__qty>div button#minusqty {
        font-size: 3em;
    }

    .ps-shopping-cart .ps-table--shopping-cart td:nth-child(4) span {
        font-size: 1.5em !important;
        font-weight: 600;
    }

    .ps-section__footer input.custom-no-border {
        padding: 10px 0;
    }
}


/* CHECKOUT PAGE DESKTOP */
@media (min-width: 1024px) {
    .checkout-page .container {
        max-width: 100%;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .checkout-page #main-checkout-product-info {
        padding: 0;
    }

    .checkout-page .checkout-payment-title {
        font-size: 2em;
    }

    .checkout-page .customer-address-payment-form p {
        font-size: 1.2em;
    }

    .checkout-page .customer-address-payment-form p a {
        color: var(--quaternary-color);
        font-weight: bold;
        text-transform: uppercase;
    }

    .checkout-page .payment-checkout-form .list_payment_method {
        gap: 10px;
    }

    .checkout-page .payment-checkout-form .list_payment_method .list-group-item {
        border: 1px solid var(--primary-color);
    }

    .checkout-page .payment-checkout-form .list_payment_method .list-group-item label {
        font-size: 1.2em;
        color: var(--quaternary-color);
    }

    .checkout-page .payment-checkout-form .list_payment_method .list-group-item label:before {
        border: 1px solid var(--primary-color);
        top: 2px;
    }

    .checkout-page .payment-checkout-form .list_payment_method .list-group-item label:after {
        background: var(--quaternary-color);
        top: 8px;
    }

    .checkout-page .control-label {
        font-size: 2em;
        font-weight: 500;
    }

    .checkout-page #description {
        border: 1px solid var(--primary-color);
        color: var(--quaternary-color);
        font-size: 1.2em;
    }

    .checkout-page .customer-address-payment-form div:nth-child(3).form-group {
        display: flex;
    }

    .checkout-page .customer-address-payment-form .form-group:nth-child(2) input {
        width: 5%;
    }

    .checkout-page .customer-address-payment-form div:nth-child(3).form-group input {
        width: 3%;
        margin: 0;
        top: auto;
        padding: 0;
        border: none;
    }

    .checkout-page .customer-address-payment-form div:nth-child(3).form-group input:after {
        border: 1px solid var(--primary-color);
        background: transparent;
    }

    .checkout-page .customer-address-payment-form div:nth-child(3).form-group input:before {
        border-color: transparent;
    }

    .checkout-page .customer-address-payment-form .address-form-wrapper .form-group {
        display: grid;
    }

    #main-checkout-product-info #cart-item>p {
        font-size: 2em;
        font-weight: 500;
    }

    #main-checkout-product-info #cart-item .cart-item .col-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        width: 50%;
    }

    #main-checkout-product-info #cart-item .cart-item .col-3 {
        width: 15%;
    }

    #main-checkout-product-info #cart-item .cart-item .col-5 p {
        font-size: 1.2em;
    }

    #main-checkout-product-info #cart-item .cart-item .col-4 p {
        font-size: 1.8em;
        font-weight: 500;
    }

    #main-checkout-product-info #cart-item .font-quaternary-color {
        font-size: 1.1em;
        color: var(--quaternary-color);
    }
}

/* CHECKOUT PAGE DESKTOP */


/* TABLET SCREEN */



/* MIX AND MATCH */
@media (min-width:1601px) and (max-width:1680px) {
    #mix-and-match .mix-container #swiper2 .swiper-slide {
        max-height: 450px;
        height: auto;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide {
        gap: 20px;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide span {
        display: none;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide-active span {
        display: block;
    }
}

@media (min-width:1441px) and (max-width:1600px) {
    #mix-and-match .mix-container .swiper-slide span {
        font-size: 1em;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide {
        max-height: 250px;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide-active img {
        scale: 0.9;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide {
        max-height: 400px;
        height: auto;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide-active img {
        scale: 0.9;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide {
        gap: 20px;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide span {
        display: none;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide-active span {
        display: block;
    }
}

@media (min-width:1370px) and (max-width:1440px) {
    #mix-and-match .mix-container .swiper-slide span {
        font-size: 1em;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide {
        max-height: 250px;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide-active img {
        scale: 0.9;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide {
        max-height: 400px;
        height: auto;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide-active img {
        scale: 0.9;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide {
        gap: 20px;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide span {
        display: none;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide-active span {
        display: block;
    }
}

@media (min-width:1201px) and (max-width:1366px) {
    #mix-and-match .mix-container .swiper-slide span {
        font-size: 1em;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide {
        max-height: 200px;
    }

    #mix-and-match .mix-container #swiper1 .swiper-slide-active img {
        scale: 0.9;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide {
        max-height: 300px;
        height: auto;
    }

    #mix-and-match .mix-container #swiper2 .swiper-slide-active img {
        scale: 0.9;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide {
        gap: 20px;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide span {
        display: none;
    }

    #mix-and-match .mix-container #swiper3 .swiper-slide-active span {
        display: block;
    }
}

@media (min-width:1024px) and (max-width:1599px) {
    .header {
        padding: 15px;
    }

    .checkout-page .submenu {
        top: 40px;
    }

    .shop-card.open {
        padding: 30px 15px 15px;
        width: 35%;
    }

    .shop-card.open .quantity__button {
        width: auto;
        font-size: 35px;
        padding: 0 10px;
    }

    .shop-card.open input.quantity__input {
        width: 40px;
    }

    h1 {
        font-size: 2rem;
    }

    .login-wrapper {
        height: auto;
    }

    #homepage-herotype-2 .hero-type-3 h1 {
        font-size: 1.5em;
    }

    .font-18 {
        font-size: 1em;
    }

    .font-25 {
        font-size: 1em;
    }

    .font-22 {
        font-size: 0.9em;
    }

    .font-30 {
        font-size: 1.5em;
    }

    .font-34 {
        font-size: 1.8em;
    }

    .font-60 {
        font-size: 2em;
    }

    .lh-2 {
        line-height: 1.5rem;
    }

    .font-20 {
        font-size: 0.8em;
    }

    .care-guide .font-18 {
        font-size: 0.8em;
    }

    .pad-container-2x {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .pad-container {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .pad-button {
        padding: 5px 20px;
    }

    .header .submenu .col-2 {
        width: 20%;
    }

    .header .submenu .col-10 {
        width: 80%;
    }

    /*div#footer-section-4 {
    padding: 0;
}*/
    div#footer-section-3 {
        padding: 20px;
    }

    #homepage-hero h1,
    #homepage-hero h2 {
        font-size: 70px;
        line-height: 0.8;
    }

    #homepage-hero .hero-content-wrapper span {
        font-size: 18px;
        font-weight: 400;
    }

    #homepage-hero .hero-content-wrapper a {
        font-size: 24px;
    }

    #about-page img.product-image {
        object-fit: contain;
    }

    #about-page .height-689 {
        height: auto;
    }

    #product-list-page .ps-product .shop-item-card-wrapper .swiper-pagination {
        bottom: 13%;
    }

    .checkout-page .shop-card.open {
        width: 100%;
        min-width: 450px;
        top: 25px;
    }

    div#aboo {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-height: 480px;
        overflow-x: auto;
    }

    .checkout-page .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .checkout-page .checkout-payment-title {
        font-size: 1.5em;
    }

    .checkout-page .control-label {
        font-size: 1.5em;
    }

    #main-checkout-product-info #cart-item>p {
        font-size: 1.5em;
    }
}

@media (min-width:1600px) and (max-width:1680px) {

    #homepage-hero h1,
    #homepage-hero h2 {
        font-size: 85px;
        line-height: 1;
    }

    #homepage-hero .hero-content-wrapper span {
        font-size: 24px;
        font-weight: 400;
    }

    #homepage-hero .hero-content-wrapper a {
        font-size: 26px;
    }
}

@media (max-width:768px) {
    #cart-page .flex-direction-col {
        flex-direction: column !important;
        padding: 0 10px;
    }

    #cart-page #cart-page-left {
        width: 100%;
    }

    #cart-page #cart-page-right {
        width: 100%;
    }
}

.wrapper .iti__tel-input {
    padding-left: 45px !important;
}