.overlay_stock {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transition: .5s;
}

.overlay_stock.open {
    visibility: visible;
    opacity: 50%;
    transition: .5s;
}

.invise {
    display: none !important;
}

.popup_stock {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    width: 100%;
    max-width: max-content;
    padding: 0 20px;
   
}

.popup_stock .popup__container {
    display: flex;
    position: relative;
    background-color: #FFF;
    border-radius: 1.25rem;
    padding: 0;
    margin: 0;
    max-height: 70vh;
}

.popup_stock .popup__container img {
    object-fit: contain;
    object-position: center;
    /* border: 50px solid #013C38; */
    width: 100%;
    max-width: min-content;
    max-height: 70vh;
    display: flex;
    position: relative;
}

.popup_stock .popup__container .close-btn {
    position: absolute;
    right: -55px;
    top: -50px;
    z-index: 3;
    cursor: pointer;
}

.popup_stock .popup__container .close-btn:hover path {
    opacity: 0.5;
}

@media (max-width: 1560px) {
    .popup_stock .popup__container .close-btn {
        right: -10px;
        top: -55px;
    }
}

@media (max-width: 700px) {
    .popup_stock .popup__container img {
        /* border: 15px solid #013C38; */
    }

    .popup_stock .popup__container .close-btn {
        position: absolute;
        right: -10px;
        top: -35px;
        z-index: 3;
        width: 35px;
        height: 35px;
    }
}

.popup_stock.open {
    display: flex;
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}

.popup_stock .popup__container img.mob {
    display: none;
}

@media (max-width: 900px) {
    .popup_stock .popup__container img.mob {
        display: block;
    }

    .popup_stock .popup__container img.desk {
        display: none;
    }
}

.popup_stock .back_img {
    max-width: 40%;
    min-width: 40%;
    height: auto;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1.25rem 0 0 1.25rem;
}

.popup_stock__right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
    max-height: 70vh;
}

@media (min-width: 721px) {
    .popup_stock__right {
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .popup_stock__right::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
}

.popup_stock__right ul {
    list-style: url('./../img/f09f94b8.png');
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup_stock__right ul li {
    list-style: url('./../img/f09f94b8.png');
}

.popup_stock__right ul li::marker {
    position: relative;
}

@media (max-width: 720px) {
    .popup_stock .popup__container {
        flex-direction: column;
    }

    .popup_stock .back_img {
        min-width: auto;
        max-width: none;
        border-radius: 1.25rem;
    }

    .popup_stock__right {
        max-height: none;
        overflow: hidden;
    }

    .popup_stock .popup__container {
        max-height: 70vh;
        overflow-y: scroll;
        display: block;
    }
}

@media (max-width: 500px) {
    .popup_stock__right {
        padding: 40px 20px;
    }
}