.upsells_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.simply_upsells_container {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 408px;
    width: 100%;
    padding: 34px 30px 30px;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: popupFadeIn 0.3s ease-out;
    text-align: center;
}
.simply_upsells_container * {
    font-family: Montserrat, Heebo-Regular;
}
.star-icons {
    position: relative;
}
.star-icons::after {
    background-image: url('../../../../images/upsell/1111.png');
    content: "";
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 40px;
    background-size: 150%;
    top: -15px;
}
.simply-upsells-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.simply-upsells-popup-close .close-icon {
    font-size: 28px;
    line-height: 1;
    color: #666;
    font-weight: 300;
}

.simply_upsells_container .upsells_content .heading{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    line-height: 1.5;
}
.simply_upsells_container .upsells_content .heading .overline_text {
    color: #ff0283;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.simply_upsells_container .upsells_content .heading .title {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}
.simply_upsells_container .upsells_content .heading .subtitle {
    color: #000000;
    font-size: 16px;
}

.simply_upsells_container .upsells_content .product_info img {
    width: 200px;
}

.simply_upsells_container .upsells_content .product_info p.upsell_product_name {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 5px;
}
.simply_upsells_container .simply_upsells .buttons {
    display: flex;
    gap: 1em;
}
.simply_upsells_container .simply_upsells .buttons button {
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    direction: rtl;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 5px;
}
.simply_upsells_container .simply_upsells .buttons .add_upsell {
    background-color: #FF0283;
    color: #ffffff;
    border: none;
}
.simply_upsells_container .simply_upsells .buttons .add_upsell span.text, .simply_upsells_container .simply_upsells .buttons .cancel_upsell span.text {
    display: flex;
    align-items: center;
    gap: 5px;
}
.simply_upsells_container .simply_upsells .buttons .add_upsell span.text:before{
    content: "";
    background: url("../../../../images/minicart_bar/gift_white.svg");
    width: 18px;
    height: 18px;
    display: inline-block;
}

.simply_upsells_container .simply_upsells .buttons .cancel_upsell {
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
    flex: 1 1 50%;

    font-weight: 100;
}
.simply_upsells_container .simply_upsells .buttons .cancel_upsell .close-icon {
    font-size: 28px;
    line-height: 1;
    color: #666;
    font-weight: 300;
}
@media only screen and (max-width: 676px) {
    .simply_upsells_container .simply_upsells .buttons button {
        font-size: 14px;
    }
}
@media only screen and (max-width: 420px) {
    .simply_upsells_container .simply_upsells .buttons button {
        font-size: 16px;
    }
    .simply_upsells_container .simply_upsells .buttons {
        display: flex;
        gap: 1em;
        flex-direction: column;
    }
    .simply_upsells_container .simply_upsells .buttons .cancel_upsell .close-icon {
        font-size: 18px;
    }
}
