﻿.sale_overlay_show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.94);
    z-index: 999999;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
    transition: all ease .5s;
    cursor: default;
    user-select: none;
}

.sale_overlay_hide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.94);
    z-index: 999999;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all ease .5s;
    cursor: default;
}

.sale_container {
    background-color: rgb(41, 41, 41);
    background-color: rgb(255, 255, 255);
    color: white;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5);
    width: 70%;
    width: 915px;
    border-radius: 0px;
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    border-bottom-right-radius: 250px;
    border-top-right-radius: 250px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: default;
    user-select: none;
}

    .sale_container .first {
        padding: 50px;
    }

    .sale_container .second {
        background: rgb(144, 1, 255);
        border-bottom-left-radius: 250px;
        border-bottom-right-radius: 250px;
        border-top-right-radius: 250px;
        box-shadow: 0px 0px 20px 0px rgba(144, 1, 255, 0.50);
        margin: 10px;
        transition: all ease .5s;
    }

        .sale_container .second:hover {
            border-bottom-left-radius: 0px;
            border-top-left-radius: 250px;
            transition: all ease .5s;
        }

.special_offer {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: rgb(146, 146, 146);
}

.cyber, .ilham {
    font-size: 130px;
    line-height: 100px;
    color: rgb(146, 146, 146);
    color: rgb(67, 228, 171);
}

.cyber {
    font-weight: 400;
}

.ilham {
    font-weight: 900;
}

.discount_percentile {
    font-size: 160px;
    font-weight: 900;
    text-align: center;
    margin-bottom: -20px;
}

.discount_percentile_symbol {
    font-size: 50px;
    margin-left: -40px;
}

.save_upto {
    text-align: left;
    margin-bottom: -80px;
    margin-top: 55px;
    margin-left: 65px;
}

.promotion_buy_now_btn {
    padding: 10px 40px;
    border: solid white 2px;
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    color: white;
    background-color: transparent;
    box-shadow: 0px 0px 20px 0px black;
    text-decoration: none;
    font-weight: 600;
}

    .promotion_buy_now_btn:hover {
        color: rgb(0, 0, 0);
        background-color: rgb(255, 255, 255);
        border-color: white;
        box-shadow: 0px 0px 20px 0px black;
        text-decoration: none;
    }

.no_thanks {
    margin-top: 35px;
}

    .no_thanks a {
        color: white;
        text-decoration: none;
    }

        .no_thanks a:hover {
            margin-top: 35px;
            color: white;
            text-decoration: underline;
        }

@media (max-width:950px) {
    .sale_overlay_show {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.94);
        z-index: 999999;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
        transition: all ease .5s
    }
}
