#ct_shoppable_modal__overlay {
    z-index: 9998;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: 0.5;
}

#ct_shoppable_modal__popup {
    z-index: 9999;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70vw;
    max-width: 1000px;
    height: 38vw;
    max-height: 560px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 25px #00000080;
    box-shadow: 0px 10px 25px #00000080;
    display: none;
}

#ct_shoppable_modal__popup .shop-red-text {
    color: #ca3300;
    font-family: 'Avenir Next';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
}

#ct_shoppable_modal__popup .shop-image-container,
#ct_shoppable_modal__popup .shop-products-container {
    height: 100%;
}

#ct_shoppable_modal__popup .shop-image-container {
    width: 50%;
}

#ct_shoppable_modal__popup .shop-products-container {
    width: 50%;
    display: flex;
    flex-direction: column;
}

#ct_shoppable_modal__popup .shop-products-container-close {
    position: relative;
    padding: 30px;
}

#ct_shoppable_modal__popup .shop-products-container-prods {
    margin-right: 0.7rem;
    padding: 0rem 1rem 0rem 1rem;
    overflow-y: scroll;
    margin-bottom: 1rem;
}

#ct_shoppable_modal__popup .shop-products-container-prods::-webkit-scrollbar-track {
    background-color: #fff;
    width: 4px;
}

#ct_shoppable_modal__popup .shop-products-container-prods::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

#ct_shoppable_modal__popup .shop-products-container-prods::-webkit-scrollbar-thumb {
    background-color: #D8D8D8;
    width: 4px;
}

#ct_shoppable_modal__popup .shop-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px 0px 0px 7px;
}

#ct_shoppable_modal__popup #ct_shoppable_modal__close {
    position: absolute;
    right: 2%;
    top: 50%;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    display: block;
    transform: translateY(-50%);
}

.shop-products-container-title {
    color: #222;
    font-family: 'Avenir Next';
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

#ct_shoppable_modal__popup #ct_shoppable_modal__close::after {
    font-family: "fullOakleyIcons", sans-serif;
    font-size: 16px;
    font-weight: 900;
    content: "\e92e";
    color: #222222;
}

#ct_shoppable_modal__popup .ct_shoppable_modal__cta {
    margin-bottom: 10px;
}

#ct_shoppable_modal__popup .shop-product-tile {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 0px 16px 0px;
    text-decoration: none !important;
}

#ct_shoppable_modal__popup .shop-product-tile:first-child {
    padding-top: 0px;
}

#ct_shoppable_modal__popup .shop-product-tile:last-child {
    border-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 0px;
}

#ct_shoppable_modal__popup .shop-product-tile img {
    width: 100%;
    background: #F6F6F6;
}

#ct_shoppable_modal__popup .shop-product-tile-img {
    min-width: 144px;
    max-width: 144px;
    height: 138px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5%;
}

#ct_shoppable_modal__popup .shop-product-tile-img img {
    aspect-ratio: 1/1;
    object-fit: contain;
    width: 125px;
    border-radius: 10px;
}

#ct_shoppable_modal__popup .shop-product-tile-infos {
    width: 50%;
    flex-grow: 1;
}

#ct_shoppable_modal__popup .shop-product-tile-infos .shop-product-tile-title {
    color: #222;
    font-family: 'Avenir Next';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}

#ct_shoppable_modal__popup .shop-product-tile-infos .shop-product-tile-price {
    font-family: 'Avenir Next';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
}

.discount-percentage-shoppable {
    top: -2px !important;
    left: 0 !important;
}

/*MEDIA QUERYS*/

@media (max-width: 450px) {
    .discount-percentage-shoppable {
        display: block;
        margin-top: .5rem;
        padding: 1px 8px !important;
    }
}

@media (min-width: 768px) and (max-width: 800px) {
    .discount-percentage-shoppable {
        display: block;
        margin-top: .5rem;
        width: fit-content !important;
        padding: 1px 8px !important;
    }
}

/*Mobile*/
@media (max-width: 767px) {
    #ct_shoppable_modal__overlay {
        z-index: 9998;
    }

    #ct_shoppable_modal__popup {
        width: 90vw;
        z-index: 9999;
        height: 70vh;
        top: 55%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #ct_shoppable_modal__popup .shop-image-container {
        display: none;
        width: 0%;
    }

    #ct_shoppable_modal__popup .shop-products-container {
        width: 100%;
    }

    #ct_shoppable_modal__popup .shop-products-container-prods {
        padding: 0rem .5rem 0rem 0rem;
    }
}

/*Tablet*/
@media (min-width: 768px) and (max-width: 1099px) {
    #ct_shoppable_modal__popup {
        width: 92vw;
        height: 50vw;
    }

    #ct_shoppable_modal__popup .shop-product-tile-img {
        min-width: 124px;
        max-width: 124px;
        height: 120px;
    }

    #ct_shoppable_modal__popup .shop-product-tile-img img {
        width: 105px;
    }
}