
._sd_productsfeature_modal__wrapper {
    width: 100%;
    top: 0;
    right: 0;
    position: fixed;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    z-index: -1;
}
._sd_productsfeature_modal__wrapper.show {
    opacity: 1;
    z-index: 999;
}
._sd_productsfeature_modal__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
    max-width: 70%;
    margin: 15px auto;
}
._sd_productsfeature_modal__close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #111;
    font-size: 24px;
    cursor: pointer;
}
._sd_productsfeature_modal__container {
    width: 25%;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    height: 100%;
    padding: 40px 0px;
    box-shadow: rgb(34 45 57 / 18%) 0px 14px 30px 0px, rgb(34 45 57 / 6%) 0px 4px 3px 0px, rgb(34 45 57 / 6%) 0px 0px 0px 1px;
    transform: translateX(100%);
    transition: 0.5s ease;
}  
._sd_productsfeature_modal__title {
    margin-top: 75px;
    font-weight: 400;
    color: #000;
    font-size: 22px;
    margin-bottom: 25px;

}
._sd_productsfeature_modal__products_slider {
    max-width: 70%;
    margin: 0 auto;
}
._sd_productsfeature_modal__product {
    overflow: auto;
    margin: 0 auto;
}

._sd_productsfeature_modal__product::-webkit-scrollbar {
    width: 8px;
}
._sd_productsfeature_modal__product::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 20px;
}
._sd_productsfeature_modal__product::-webkit-scrollbar-track {
    background: #ebebeb;
    border-radius: 4px;
}
._sd_productsfeature_modal__product_colors_wrapper {
    margin-top: 40px;
}
._sd_productsfeature_modal__product_colors_wrapper > span{
    text-transform: uppercase;
    color: #111;
}
._sd_productsfeature_modal__product_name {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
}
._sd_productsfeature_modal__product_price {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
._sd_productsfeature_modal__products > span {
    color: #111;
    font-size: 20px;
    font-weight: 500;
} 
._sd_productsfeature_modal__product_colors {
    display: flex;
    gap: 10px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 3px;
}
._sd_productsfeature_modal__product_colors {
    display: flex;
    gap: 7px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 3px;
}
._sd_productsfeature_modal__product_color {
    height: 28px; 
    width: 28px; 
    border-radius: 50%; 
    border: 1px solid #f2f2f2
}
._sd_productsfeature_modal__product_combinations {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 10px;
    margin-top: 15px;
}
._sd_productsfeature_modal__product_combination {
    text-align: center;
    padding: 4px 16px;
    font-weight: 500;
    margin-bottom: 0px;
    gap: 10px;
    font-size: 16px;
    color: #111;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}
._sd_productsfeature_modal__product_images {
    overflow: hidden;
}
._sd_productsfeature_modal__product_combination:not(.unavailable).selected {
    background-color: #111;
    color: white;
}
._sd_productsfeature_modal__product_combination.active {
    box-shadow: 0 0 0 1px white, 0px 0px 0px 2px #e5e5e5;
}
._sd_productsfeature_modal__product_combination.unavailable {
    opacity: 0.3;
    cursor: initial;
}
._sd_productsfeature_modal__product_combinations_wrapper {
    margin-top: 40px;
}
._sd_productsfeature_modal__product_combinations_wrapper > span{
    text-transform: uppercase;
    color: #111;
}
._sd_productsfeature_modal__product_add {
    margin-top: 40px;
    width: 100%;
    background-color: #111;
    text-align: center;
    border-radius: 10px;
    padding: 10px 0px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border: 2px solid #222;
}
._sd_productsfeature_modal__product_add.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
._sd_productsfeature_modal__products_slider {
    overflow: hidden;
}
._sd_productsfeature_modal__sizes {
    grid-template-columns: repeat(auto-fill, minmax(75px,1fr));
    display: grid;
    column-gap: 20px;
    margin-top: 25px;
    row-gap: 10px;
    max-height: 80px;
    overflow: auto;
}
._sd_productsfeature_modal__size {
    text-align: center;
    padding: 5px 0px;
    font-weight: 500;
    margin-bottom: 0px;
    gap: 10px;
    font-size: 14px;
    color: #111;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}
._sd_productsfeature_modal__size.unavailable {
    opacity: 0.3;
}
._sd_productsfeature_modal__add {
    background-color: #111;
    text-align: center;
    border-radius: 10px;
    padding: 9px 0px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid #222;
    margin-top: 25px;
}
._sd_productsfeature_modal__add.disabled {
    opacity: 0.2;
    cursor: initial;
}
._sd_productsfeature_modal__pagination {
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
._sd_productsfeature_modal__size.selected {
    background: #111;
    color: white;
}
._sd_productsfeature_modal__buy.no-show {
    opacity: 0;
}
._sd_productsfeature_modal__product.swiper-slide-active ._sd_productsfeature_modal__buy {
    opacity: 1;
    transition: 0.25s;
}
._sd_productsfeature_modal__sizes::-webkit-scrollbar {
    width: 4px;
}
._sd_productsfeature_modal__sizes::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 8px;
}
._sd_productsfeature_modal__sizes::-webkit-scrollbar-track {
    background: white;
}
._sd_productsfeature_modal__sizes::-webkit-scrollbar-corner {
    background-color: white;
}
._sd_productsfeature_modal__wrapper.show ._sd_productsfeature_modal__container  {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 991px)
{
    ._sd_productsfeature_modal__container {
        width: 100%;
    }
}