/* styling for Lucky Number Section */

.decrease-right-space {
    right: 0% !important;
}

.remove-radius-on-mobile {
    border-radius: 0 0 0 0;
    border-right: 10px solid #fff;
}

.luckysim-box-height {
    min-height: 100px !important;
}

.luckysim-banner-box {
    display: flex;
    flex-direction: column;
    border-radius: 0 0 0 18.75vw;
    overflow: hidden;
}

.luckysim-banner-box img {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.show-on-desktop {
    display: none;
}

.show-on-mobile {
    display: block;
    max-height: auto;
}

@media screen and (min-width:480px) {
    .remove-radius-on-mobile {
        border-radius: 0 18.75vw 0 0;
        border-right: none;
    }
    .decrease-right-space {
        right: 4.166666666666667% !important;
    }
    .luckysim-banner-box {
        border-radius: 0 0 0 12.5vw;
        flex-direction: row;
    }
    .luckysim-banner-box img {
        height: auto;
    }
    .show-on-desktop {
        display: block;
    }
    .show-on-mobile {
        display: none;
    }
}

@media screen and (min-width:900px) {
    .decrease-right-space {
        right: 25px !important;
    }
    .remove-radius-on-mobile {
        border-radius: 0 90px 0 0;
        border-right: none;
    }
    .luckysim-banner-box {
        border-radius: 0 0 0 90px;
    }
}