@charset "UTF-8";

/* FONT SETTINGS */
@font-face {
    font-family: "Tondo Corp";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/local/assets/fonts/tondoCorp/tondoCorp-Bold.eot");
    src: local("TondoCorp Bold"), local("TondoCorp-Bold"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Bold.eot?#iefix") format("embedded-opentype"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Bold.woff2") format("woff2"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Bold.woff") format("woff"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Bold.ttf") format("truetype"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Bold.svg#TondoCorp-Bold") format("svg");
}
@font-face {
    font-family: "Tondo Corp";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/local/assets/fonts/tondoCorp/tondoCorp-Regular.eot");
    src: local("TondoCorp"), local("TondoCorp-Regular"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Regular.eot?#iefix") format("embedded-opentype"), 
        url("/local/assets/fonts/tondoCorp/tondoCorp-Regular.woff2") format("woff2"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Regular.woff") format("woff"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Regular.ttf") format("truetype"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Regular.svg#TondoCorp-Regular") format("svg");
}
@font-face {
    font-family: "Tondo Corp";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/local/assets/fonts/tondoCorp/tondoCorp-Light.eot");
    src: local("TondoCorp Light"), local("TondoCorp-Light"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Light.eot?#iefix") format("embedded-opentype"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Light.woff2") format("woff2"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Light.woff") format("woff"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Light.ttf") format("truetype"),
        url("/local/assets/fonts/tondoCorp/tondoCorp-Light.svg#TondoCorp-Light") format("svg");
}

:root {
    --accent-color: #D61E3D;
    --common-text-color: #1D1D1D;
    --additional-text-color: #ffffff;
    --special-text-color: #9EA3AF;
    
    --common-background-color: #ffffff;
    --additional-background-color: #F1F3F4;
    --special-background-color: #D61E3D;
    --common-border-color: #E4E7EA;
    
    --header-accent-color: #D61E3D;
    --header-text-color: #1D1D1D;
    --header-credo-color: #E00019;
    --header-logotype-color: #2B398A;
    --header-background-color: #ffffff;
    
    --footer-accent-color: #E308D3;
    --footer-text-color: #FFFFFF;
    --footer-credo-color: #FFFFFF;
    --footer-logotype-color: #FFFFFF;
    --footer-background-color: #1D1D1D;
}
select:focus {
    outline:none;
}

/* COMMON SETTINGS */
html,
body {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
    font-family: "Tondo Corp", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1;
    color: var(--common-text-color);
    background-color: var(--common-background-color);
    scroll-behavior: smooth;
}
header.af-header .af-header-logo {
    width: 130px;
    height: 30px;
}
footer.af-footer {
    z-index: 2;
}

@supports (-ms-ime-align:auto) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        overflow: auto;
        height: 100%;
        position: relative;
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        overflow: auto;
        height: 100%;
    }
}

/* ALL MEDIA */
@media screen and (min-width: 0) {

    /* PAGE */
    .af-page.af-page__ampm-novelties {
        display: block;
        width: 100%;
        height: auto;
    }
    .af-page__ampm-novelties svg,
    .af-page__ampm-novelties img {
        max-width: 100%;
    }
    .af-page__ampm-novelties .af-page-section {
        display: flex;
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .af-page__ampm-novelties .af-page-wrapper {
        display: flex;
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        padding-top: 40px;
        box-sizing: border-box;
        position: relative;
    }
    .af-page__ampm-novelties [data-total=""][data-empty]::before,
    .af-page__ampm-novelties [data-total="0"][data-empty]::before {
        content: attr(data-empty);
        display: block;
        width: 100%;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: normal;
        line-height: 1.5;
        color: var(--common-text-color);
        box-sizing: border-box;
    }
    .af-page__ampm-novelties .af-page-upper {
        display: block;
        height: auto;
        border: 1px solid var(--border-color);
        border-radius: 100%;
        background-color: rgba(241, 243, 244, .7);
        background-repeat: no-repeat;
        background-position: center;
        background-image: url('../img/arrow-right.svg');
        transform: rotate3d(0, 0, 1, 270deg);
        position: fixed;
        z-index: 1;
    }
    
    /* MAIN */
    .af-page__ampm-novelties .af-main-image {
        display: block;
        width: 100%;
        height: auto;
    }
    .af-page__ampm-novelties .af-main-image img {
        display: block;
        width: 100%;
        object-fit: cover;
        object-position: top center;
    }

    /* COLLECTION */
    .af-page__ampm-novelties .af-collection-information {
        display: flex;
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .af-page__ampm-novelties .af-collection-title {
        display: block;
        width: 100%;
        height: auto;
        font-family: 'Tondo corp', sans-serif;
        font-weight: 700;        
        letter-spacing: normal;
        line-height: 1.5;
        color: var(--common-text-color);
        margin-top: 0;
    }
    .af-page__ampm-novelties .af-collection-credo {
        display: block;
        width: 100%;
        font-weight: 400;
    }
    .af-page__ampm-novelties .af-collection-description {
        display: block;
        width: 100%;
        height: auto;
        font-family: 'Tondo corp', sans-serif;
        font-weight: 400;
        letter-spacing: normal;
        line-height: 1.5;
        color: var(--common-text-color);
        margin-top: 0;
    }
    .af-page__ampm-novelties .af-collection-video {
        display: block;
        object-fit: cover;
        object-position: center center;
    }
    .af-page__ampm-novelties .af-collection-image {
        display: block;
        margin-bottom: 40px;
        border-radius: 12px;
        position: relative;
    }
    .af-page__ampm-novelties .af-collection-image::after {
        content: "";
        display: block;
        border-radius: 100%;
        background-color: rgba(0, 0, 0, .5);
        background-position: center;
        background-repeat: no-repeat;
        background-image: url('../img/magnifier.svg');
        position: absolute;
        z-index: 1;
    }
    .af-page__ampm-novelties .af-collection-image img {
        display: block;
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
        object-position: center center;
    }
    .af-page__ampm-novelties .af-collection-switches {
        display: flex;
        width: 100%;
        height: auto;
        flex-wrap: nowrap;
        padding-top: 4px;
        padding-bottom: 8px;
        box-sizing: border-box;
        overflow: auto;
    }
    .af-page__ampm-novelties .af-collection-switch {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-weight: 400;
        font-size: 12px;
        letter-spacing: normal;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 4px;
        box-sizing: border-box;
    }
    .af-page__ampm-novelties .af-collection-switch:not(:last-of-type) {
        margin-right: 8px;
    }
    .af-page__ampm-novelties .af-collection-switch:not(.active) {
        color: var(--common-text-color);
        background-color: var(--additional-background-color);
    }
    .af-page__ampm-novelties .af-collection-switch.active {
        color: var(--additional-text-color);
        background-color: var(--common-text-color);
        pointer-events: none;
    }
    .af-page__ampm-novelties .af-collection-switch[data-items]::after {
        content: '\00A0\0028' attr(data-items) '\0029';
        font-family: 'Tondo Corp', sans-serif;
        font-weight: 400;
        font-size: 10px;
        letter-spacing: normal;
        line-height: 1;
        color: var(--special-text-color);
    }
    .af-page__ampm-novelties .af-collection-filters {
        display: flex;
        width: 100%;
        height: auto;
        align-items: baseline;
        align-content: baseline;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 0 auto 8px;
        box-sizing: border-box;
    }
    .af-page__ampm-novelties .af-collection-filter {
        display: flex;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: normal;
        line-height: 1;
        text-align: left;
        flex-wrap: nowrap;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
        flex-direction: row;
        margin: 0 8px 8px 0;
    }
    .af-page__ampm-novelties .af-collection-filter select {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: normal;
        line-height: 1;
        text-align: left;
        margin-left: 8px;
        padding: 4px 8px;
        border: 2px solid var(--common-border-color);
        border-radius: 4px;
        box-sizing: border-box;
        background-color: var(--common-background-color);
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-collection-filter select:active,
    .af-page__ampm-novelties .af-collection-filter select:focus {
        border-color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-collection-filter input[type="checkbox"] {
        display: block;
        width: 18px;
        height: 18px;
        margin: 0 0 0 8px;
        padding: 0;
        outline: 0;
        border: 2px solid var(--common-text-color);
        border-radius: 4px;
        box-sizing: border-box;
        background-color: var(--common-background-color);
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-collection-filter input[type="checkbox"]:active,
    .af-page__ampm-novelties .af-collection-filter input[type="checkbox"]:focus {
        border-color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-collection-filter input[type="checkbox"]:checked {
        background-color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-collection-products {
        display: block;
        width: 100%;
        height: auto;
    }
    
    /* PRODUCT */
    .af-page__ampm-novelties .af-product {
        display: flex;
        height: auto;
        box-sizing: border-box;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        border-radius: 12px;
        border: 1px solid var(--common-border-color);
        box-sizing: border-box;
        background-color: #ffffff;
        position: relative;
    }
    .af-page__ampm-novelties .af-product-image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 0 15px;
        position: relative;
    }
    .af-page__ampm-novelties .af-product-image.JSProductImage::before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 10px;
        bottom: 10px;
        border-radius: 100%;
        background-color: var(--accent-color);
        background-size: 45% auto;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url('../img/magnifier.svg');
    }
    .af-page__ampm-novelties .af-product-image img {
        display: block;
        width: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down;
        -o-object-position: center;
           object-position: center;
    }
    .af-page__ampm-novelties .af-product-lineup {
        display: block;
        width: 100%;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 11px;
        letter-spacing: normal;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
        color: var(--normal-text-color);
        margin-bottom: 5px;
    }
    .af-page__ampm-novelties .af-product-name {
        display: block;
        width: 100%;
        height: 2.6em;
        font-family: 'Tondo Corp', sans-serif;
        font-style: normal;
        font-weight: 400;
        letter-spacing: normal;
        line-height: 1.3;
        text-decoration: none;
        color: var(--normal-text-color);
        margin-bottom: 5px;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        display: box;
        display: -moz-box;
        display: -webkit-box;
        line-clamp: 2;
        -moz-line-clamp: 2;
        -webkit-line-clamp: 2;
        box-orient: vertical;
        -webkit-box-orient: vertical;
    }
    .af-page__ampm-novelties .af-product-prices {
        display: flex;
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 16px;
    }
    .af-page__ampm-novelties .af-product-price {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-style: normal;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: normal;
        line-height: 1;
        color: var(--normal-text-color);
    }
    .af-page__ampm-novelties .af-product-price__old {
        font-size: 16px;
        color: var(--light-text-color);
        text-decoration: line-through;
    }
    .af-page__ampm-novelties .af-product-price__new {
        font-weight: 500;
        font-size: 20px;
    }
    .af-page__ampm-novelties .af-product-more {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        letter-spacing: normal;
        line-height: 1.3;
        text-decoration: none;
        color: var(--normal-text-color);
        margin: 0 auto 8px;
        padding: 0 24px 0 0;
        box-sizing: border-box;
        background-size: 14px auto;
        background-repeat: no-repeat;
        background-position: right 6px center;
        background-image: url('../img/arrow-next.svg');
    }
    .af-page__ampm-novelties .af-product-add {
        display: flex;
        width: 100%;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        letter-spacing: normal;
        line-height: 1;
        color: var(--additional-text-color);
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 8px;
        border: 1px solid var(--accent-color);
        box-sizing: border-box;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        background-color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-product-add.added {
        width: 100%;
        color: var(--accent-color);
        border-color: var(--common-border-color);
        background-color: var(--common-background-color);
    }
    .af-page__ampm-novelties .af-product-adding .af-product-add {
        color: var(--special-text-color);
        background-color: var(--common-border-color);
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: left top;
        background-image: url('../img/preloader.svg');
        pointer-events: none;
        cursor: progress;
    }
}

/* ONLY MOBILE MEDIA */
@media screen and (max-width: 767px) {

    /* HEADER AND FOOTER */
    header.af-header .af-header-toggle {
        width: 20px;
    }
    footer.af-footer .af-stores-toggle::after {
        background-size: auto 100%;
        background-image: url('../img/arrow-up.svg');
    }

    /* PAGE */
    .af-page__ampm-novelties [data-total=""][data-empty]::before,
    .af-page__ampm-novelties [data-total="0"][data-empty]::before {
        padding-left: 20px;
        padding-right: 20px;
    }
    .af-page__ampm-novelties .af-page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .af-page__ampm-novelties .af-page-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .af-page__ampm-novelties .af-page-upper {
        width: 30px;
        height: 30px;
        background-size: 10px auto;
        right: 30px;
        bottom: 30px;
    }

    /* MAIN */
    .af-page__ampm-novelties .af-main-collection {
        display: none;
    }
    

    /* COLLECTION */
    .af-page__ampm-novelties .af-collection-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .af-page__ampm-novelties .af-collection-credo {
        font-size: 18px;
    }
    .af-page__ampm-novelties .af-collection-description {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .af-page__ampm-novelties .af-collection-video {
        width: calc(100% + 40px);
        height: 80vh;
        position: relative;
        left: -20px;
        order: 9;
        margin-bottom: 16px;
    }
    .af-page__ampm-novelties .af-collection-image {
        width: calc(33.33% - 5.33px);
    }
    .af-page__ampm-novelties .af-collection-image::after {
        width: 30px;
        height: 30px;
        background-size: 15px auto;
        bottom: 10px;
        right: 10px;
    }
    .af-page__ampm-novelties .af-collection-image:not(:nth-of-type(3n)) {
        margin-right: 8px;
    }
    .af-page__ampm-novelties .af-collection-switches {
        margin-bottom: 12px;
    }
    .af-page__ampm-novelties .af-collection-switch:first-of-type {
        margin-left: 20px;
    }
    .af-page__ampm-novelties .af-collection-switch:last-of-type {
        margin-right: 20px;
    }
    .af-page__ampm-novelties .af-collection-filters {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* PRODUCT */
    .af-page__ampm-novelties .af-product {
        width: calc(100% - 8px);
        padding: 8px;
    }
    .af-page__ampm-novelties .af-product-image img {
        height: calc(50vw - 46px);
    }
    .af-page__ampm-novelties .af-product-name {
        font-size: 13px;
    }
    .af-page__ampm-novelties .af-product-prices {
        min-height: 36px;
    }
    .af-page__ampm-novelties .af-product-price__old {
        margin-right: 4px;
    }
}

/* MOBILE AND TABLET MEDIA */
@media screen and (max-width: 1023px) {

    /* MAIN */
    .af-page__ampm-novelties .af-main-image img {
        height: auto;
    }

    /* COLLECTION */
    .af-page__ampm-novelties .af-collection-image img {
        height: auto;
    }
    .af-page__ampm-novelties .af-collection-products {
        margin-bottom: 40px;
    }
    .af-page__ampm-novelties .af-collection-products .owl-nav {
        display: none;
    }

    /* PRODUCT */
    .af-page__ampm-novelties .af-product-image {
        margin-bottom: 16px;
    }
}

/* WITHOUT MOBILE MEDIA */
@media screen and (min-width: 768px) {

    /* HEADER AND FOOTER */
    header.af-header .af-header-container,
    footer.af-footer .af-footer-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    /* PAGE */    
    .af-page__ampm-novelties .af-page-upper {
        width: 40px;
        height: 40px;
        background-size: 14px auto;
    }

    /* MAIN */
    .af-page__ampm-novelties .af-main-collection {
        border-radius: 12px;
        position: relative;
    }
    .af-page__ampm-novelties .af-main-collection__func {
        color: var(--additional-text-color);
        border-color: var(--additional-text-color);
    }
    .af-page__ampm-novelties .af-main-collection__xjoy {
        color: var(--common-text-color);
        border-color: var(--common-text-color);
    }
    .af-page__ampm-novelties .af-main-picture {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .af-page__ampm-novelties .af-main-picture img {
        display: block;
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
        object-position: bottom center;
    }
    .af-page__ampm-novelties .af-main-description {
        display: flex;
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-content: center;
        position: absolute;
        left: 0;
        z-index: 1;
    }
    .af-page__ampm-novelties .af-main-name {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: normal;
        text-align: center;
        line-height: 1.5;
        color: inherit;
        margin-bottom: 8px;
    }
    .af-page__ampm-novelties .af-main-credo {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: normal;
        text-align: center;
        line-height: 1.5;
        color: inherit;
        margin-bottom: 24px;
    }
    .af-page__ampm-novelties .af-main-button {
        display: block;
        width: auto;
        height: auto;
        font-family: 'Tondo Corp', sans-serif;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: normal;
        line-height: 1.5;
        color: inherit;
        text-decoration: none;
        margin-bottom: 24px;
        padding: 13px 16px;
        border-width: 2px;
        border-style: solid;
        border-radius: 12px;
        border-color: inherit;
        box-sizing: border-box;
    }
    
    /* COLLECTION */
    .af-page__ampm-novelties .af-collection-image::after {
        width: 40px;
        height: 40px;
        background-size: 20px auto;
        bottom: 20px;
        right: 20px;
    }
    .af-page__ampm-novelties .af-collection-description {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .af-page__ampm-novelties .af-collection-video {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        border-radius: 12px;
    }
    

    /* PRODUCT */
    .af-page__ampm-novelties .af-product {
        width: calc(100% - 32px);
    }
    .af-page__ampm-novelties .af-product-name {
        font-size: 14px;
    }
    .af-page__ampm-novelties .af-product-price__old {
        margin-right: 8px;
    }
}

/* ONLY TABLET MEDIA */
@media (min-width: 768px) and (max-width: 1023px) {

    /* PAGE */
    .af-page__ampm-novelties .af-page-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
    .af-page__ampm-novelties [data-total=""][data-empty]::before,
    .af-page__ampm-novelties [data-total="0"][data-empty]::before {
        padding-left: 40px;
        padding-right: 40px;
    }
    .af-page__ampm-novelties .af-page-upper {
        right: 40px;
        bottom: 40px;
    }
    .af-page__ampm-novelties video {
        max-width: 100%;
    }

    /* MAIN */
    .af-page__ampm-novelties .af-main-image {
        margin-bottom: 40px;
    }
    .af-page__ampm-novelties .af-main-collection {
        width: calc(50% - 56px);
    }
    .af-page__ampm-novelties .af-main-collection:nth-child(even) {
        margin-left: 40px;
        margin-right: 32px;
    }
    .af-page__ampm-novelties .af-main-collection:nth-child(odd) {
        margin-right: 40px;
    }
    .af-page__ampm-novelties .af-main-picture img {
        height: auto;
    }
    .af-page__ampm-novelties .af-main-description {
        top: 32px;
    }

    /* COLLECTION */
    .af-page__ampm-novelties .af-collection-title {
        font-size: 40px;
        margin-bottom: 32px;
    }
    .af-page__ampm-novelties .af-collection-credo {
        font-size: 26px;
    }
    .af-page__ampm-novelties .af-collection-image {
        width: calc(33.33% - 21.33px);
    }
    .af-page__ampm-novelties .af-collection-image:not(:nth-of-type(3n)) {
        margin-right: 32px;
    }
    .af-page__ampm-novelties .af-collection-switches {
        margin-bottom: 32px;
    }
    .af-page__ampm-novelties .af-collection-switch:first-of-type {
        margin-left: 40px;
    }
    .af-page__ampm-novelties .af-collection-switch:last-of-type {
        margin-right: 40px;
    }
    .af-page__ampm-novelties .af-collection-filters {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    /* PRODUCT */
    .af-page__ampm-novelties .af-product {
        padding: 16px;
    }
    .af-page__ampm-novelties .af-product-image img {
        height: calc(33vw - 90px);
    }
}

/* ONLY FULL MEDIA */
@media screen and (min-width: 1024px) {

    /* HEADER AND FOOTER */
    header.af-header .af-header-container,
    footer.af-footer .af-footer-container {
        max-width: 1280px;
    }
    
    /* PAGE */
    .af-page__ampm-novelties {
        min-height: calc(100vh - 200px);
    }
    .af-page__ampm-novelties .af-page-wrapper {
        max-width: 1472px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 56px;
        padding-right: 56px;
    }
    .af-page__ampm-novelties .af-page-upper {
        right: 80px;
        bottom: 80px;
        cursor: pointer;
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-page-upper:hover {
        background-color: rgba(241, 243, 244, 1);
    }

    /* MAIN */
    .af-page__ampm-novelties .af-main {
        align-items: stretch;
        justify-content: center;
    }
    .af-page__ampm-novelties .af-main-image {
        width: calc(33.33% - 42.66px);
        max-width: 480px;
        margin: 32px;
        order: 2;
    }
    .af-page__ampm-novelties .af-main-image img {
        height: 100%;
    }
    .af-page__ampm-novelties .af-main-collection {
        width: calc(33.33% - 42.66px);
        max-width: 480px;
        margin: 32px 0;
    }
    .af-page__ampm-novelties .af-main-collection__func {
        order: 1;
    }
    .af-page__ampm-novelties .af-main-collection__xjoy {
        order: 3;
    }
    .af-page__ampm-novelties .af-main-picture img {
        height: 100%;
    }
    .af-page__ampm-novelties .af-main-description {
        bottom: 40px;
    }
    .af-page__ampm-novelties .af-main-button {
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-main-button:hover {
        color: var(--additional-text-color);
        border-color: var(--accent-color);
        background-color: var(--accent-color);
    }
    

    /* COLLECTION */
    .af-page__ampm-novelties .af-collection-information {
        align-items: stretch;
    }
    .af-page__ampm-novelties .af-collection-title {
        width: calc(50% - 16px);
        font-size: 52px;
        margin-right: auto;
    }
    .af-page__ampm-novelties .af-collection-credo {
        font-size: 28px;
    }
    .af-page__ampm-novelties .af-collection-description {
        width: calc(50% - 16px);
    }
    .af-page__ampm-novelties .af-collection-video {
        cursor: pointer;
    }
    .af-page__ampm-novelties .af-collection-image {
        position: relative;
        cursor: pointer;
    }
    .af-page__ampm-novelties .af-collection-image::after {
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-collection-image:hover::after {
        transform: scale3d(1.2, 1.2, 1);
    }
    .af-page__ampm-novelties .af-collection-image:first-of-type {
        width: calc(50% - 5.99px);
    }
    .af-page__ampm-novelties .af-collection-image:not(:first-of-type) {
        width: calc(25% - 28.99px);
        margin-left: auto;
    }
    .af-page__ampm-novelties .af-collection-image img {
        height: 100%;
    }
    .af-page__ampm-novelties .af-collection-switches {
        max-width: 1472px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
        padding-left: 56px;
        padding-right: 56px;
    }
    .af-page__ampm-novelties .af-collection-switch {
        cursor: pointer;
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-collection-switch:hover {
        color: var(--additional-text-color);
        background-color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-collection-filters {
        max-width: 1472px;
        padding-left: 56px;
        padding-right: 56px;
    }
    .af-page__ampm-novelties .af-collection-filter select,
    .af-page__ampm-novelties .af-collection-filter input[type="checkbox"] {
        cursor: pointer;
    }
    .af-page__ampm-novelties .af-collection-filter select:hover,
    .af-page__ampm-novelties .af-collection-filter input[type="checkbox"]:hover {
        border-color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-collection-products {
        width: calc(100% - 80px);
        max-width: 1396px;
        margin: 0 auto 40px;
        padding-left: 32px
    }
    .af-page__ampm-novelties .af-collection-products.owl-theme .owl-nav [class*=owl-] {
        display: flex;
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 0;
        border-radius: 100%;
        background-color: var(--additional-background-color);
        background-size: 14px auto;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url('../img/arrow-right.svg');
        align-items: center;
        align-content: center;
        justify-content: center;
        transition: 150ms ease-in-out;
        position: absolute;
        top: calc(50% - 24px);
        bottom: calc(50% - 24px);
        z-index: 1;
    }
    .af-page__ampm-novelties .af-collection-products.owl-theme .owl-next {
        right: -20px;
    }
    .af-page__ampm-novelties .af-collection-products.owl-theme .owl-prev {
        left: -20px;
        transform: rotate3d(0, 0, 1, 180deg);
    }
    .af-page__ampm-novelties .af-collection-products.owl-theme .owl-next.disabled {
        pointer-events: none;
        transform: scale3d(0, 0, 1);
    }
    .af-page__ampm-novelties .af-collection-products.owl-theme .owl-prev.disabled {
        pointer-events: none;
        transform: rotate3d(0, 0, 1, 180deg) scale3d(0, 0, 1);
    }

    /* PRODUCT */
    .af-page__ampm-novelties .af-product {
        padding: 24px;
    }
    .af-page__ampm-novelties .af-product-tags,
    .af-page.af-page__ampm-novelties .af-product-tags {
        display: block;
        width: calc(100% - 20px);
        height: auto;
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
    }
    .af-page__ampm-novelties .af-product-tags .af-commoncontent-container {
        display: flex;
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .af-page__ampm-novelties .af-product-tag,
    .af-page__ampm-novelties .af-product-tags .af-commoncontent {
        display: flex;
        width: 100%;
        max-width: 28px;
        overflow: hidden;
        height: auto;
        font-weight: 500;
        flex-flow: row nowrap;
        transition: 300ms ease;
        margin: 0 0 5px 0;
    }
    .af-page__ampm-novelties .af-product-tag > a,
    .af-page__ampm-novelties .af-product-tags .af-commoncontent > a {
        display: flex;
        font-weight: 500;
        white-space: nowrap;
        flex-flow: row nowrap;
        margin: 0;
    }
    .af-page__ampm-novelties .af-product-tag:hover,
    .af-page__ampm-novelties .af-product-tags .af-commoncontent:hover {
        max-width: 300px;
    }
    .af-page__ampm-novelties .af-product::before {
        content: "";
        display: block;
        width: 100%;
        height: calc(100% + 60px);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        background-color: #ffffff;
        transform: scale3d(0, 0, 1);
        transform-origin: center center;
        transform-style: preserve-3d;
        transition: 150ms ease;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
    }
    .af-page__ampm-novelties .af-product-image.JSProductImage::before {
        cursor: pointer;
    }
    .af-page__ampm-novelties .af-product-name {
        cursor: pointer;
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-product-name:hover {
        color: var(--accent-color);
    }
    .af-page__ampm-novelties .af-product-more {
        cursor: pointer;
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-product-more:hover {
        background-position: right 2px center;
    }
    .af-page__ampm-novelties .af-product-image img {
        height: calc(25vw - 102px);
        max-height: 267px;
    }
    .af-page__ampm-novelties .af-product-add {
        max-width: 180px;
        margin: 0 auto;
        cursor: pointer;
        transition: 150ms ease-in-out;
    }
    .af-page__ampm-novelties .af-product-add:hover {
        color: var(--common-text-color);
        border-color: var(--accent-color);
        background-color: var(--additional-background-color);
    }
}