.WrapPopupUpsell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: end;
}

.WrapPopupUpsell.slide_up {
    display: flex;
    animation: WPU_SlideUp;
    animation-duration: 0.5s;
}

.WrapPopupUpsell.slide_down {
    display: flex;
    top: 100%;
    animation: WPU_SlideDown;
    animation-duration: 0.5s;
}

.WPU_WrapContentUpsell {
    width: 60%;
    height: 90%;
    background-color: #ffffff;
    border-radius: 40px 40px 0 0;
    padding: 15px 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.WPU_WrapClose {
    display: flex;
    justify-content: end;
}

.WPU_WrapClose i {
    cursor: pointer;
    font-weight: 1500;
    font-size: 1.1rem;
}

.WPU_WrapHeadTopic span:nth-child(1) {
    font-size: 1.5rem;
    margin-right: 3px;
}

.WPU_WrapHeadTopic span:nth-child(2) {
    color: gray;
}

.WPU_WCU_WaitContent {
    margin-top: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 10px 50px 10px;
    width: 100%;
    height: 90%;
}

.WPU_WCU_WaitContent::-webkit-scrollbar {
    width: 5px;

}

.WPU_WCU_WaitContent::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

.WPU_WCU_WaitContent:hover::-webkit-scrollbar {
    width: 5px;

}

.WPU_WCU_WaitContent:hover::-webkit-scrollbar-thumb {
    background-color: rgba(128, 128, 128, 0.6);
    border-radius: 5px;
}

.WPU_WCU_WC_Item {
    overflow: hidden;
    border-radius: 20px;
    filter: drop-shadow(0 0 5px rgba(128, 128, 128, 0.6));
}

.WPU_WCU_WC_WrapImg img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.WPU_WCU_WC_WrapImg img:hover {
    transform: scale(1.05);
}

.WPU_WCU_WC_WrapNameAndPrice {
    background-color: white;
}

.WPU_WCU_WC_WNAP_WrapName {
    padding: 10px 10px;
}

.WPU_WCU_WC_WNAP_WrapPrice {
    padding: 5px 10px 10px 10px;
    text-align: end;
    font-weight: bold;
}

.WPU_WCU_WC_WrapAddToBasket {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    font-weight: bolder;
    font-size: 1.05rem;

}

.WPU_WCU_WC_WATB_WrapQty label {
    margin-bottom: 0;
}

.WPU_WCU_WC_WATB_WrapQty input {
    width: 60px;
    background-color: white;
    border: unset;
    text-align: center;
    outline: unset;
}

.WPU_WCU_WC_WATB_WrapMinus {
    background-color: white;
    filter: drop-shadow(0 0 5px rgba(128, 128, 128, 0.5));
    padding: 5px 20px;
    font-size: 1.05rem;
    font-weight: bolder;
    color: var(--orange__zen);
    transform: skew(-5deg);
    border-radius: 7px;
    cursor: pointer;
    transition: 0.1s;
    border: unset;
    outline: unset;
}
.WPU_WCU_WC_WATB_WrapMinus label{
    margin-bottom: 0;
}

.WPU_WCU_WC_WATB_WrapMinus:active {
    transform: scaleX(1.2) skew(-5deg);
}

.WPU_WCU_WC_WATB_WrapMinus .WPU_WCU_WC_WATB_WM_Text {
    transform: skew(5deg);
}

.WPU_WCU_WC_WATB_WrapPlus {
    background-color: var(--orange__zen);
    filter: drop-shadow(0 0 5px rgba(128, 128, 128, 0.5));
    padding: 5px 20px;
    font-size: 1.05rem;
    font-weight: bolder;
    color: white;
    transform: skew(-5deg);
    border-radius: 7px;
    cursor: pointer;
    transition: 0.1s;
    border: unset;
    outline: unset;
}
.WPU_WCU_WC_WATB_WrapPlus label{
    margin-bottom: 0;
}

.WPU_WCU_WC_WATB_WrapPlus:active {
    transform: scaleX(1.2) skew(-5deg);
}

.WPU_WCU_WC_WATB_WrapPlus .WPU_WCU_WC_WATB_WP_Text {
    transform: skew(5deg);
}


@keyframes WPU_SlideUp {
    0% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

@keyframes WPU_SlideDown {
    0% {
        top: 0;
    }
    100% {
        top: 150%;
    }
}

@media (max-width: 768px) {
    .WPU_WrapContentUpsell {
        width: 98%;
    }

    .WPU_WCU_WC_WrapImg img {
        height: 150px;
    }

    .WPU_WCU_WC_WATB_WrapMinus {
        padding: 5px 10px;

    }

    .WPU_WCU_WC_WATB_WrapPlus {
        padding: 5px 10px;
    }
}
