@media (min-width: 1000px) {
    .page {
        width: calc(100vw - 175px);
    }
}
.countdown-timer{
}
@media(max-width: 1000px){
    .countdown-timer{
        position: relative;
    }
}
.promotion-card{
    display: inline-block;
    width: 100%;
    background-size: 100%;
    background-position: top center;
    border-radius: 10px;
    padding-top: 100px;
    overflow: hidden;
    background-repeat: no-repeat;
}
.promotion-card .site-name{
    display: inline-block;
    background: #1E2832;
    border-top-left-radius: 10px;
    padding: 10px 20px;
    color: #B9D1E8;
    font-weight: 500;
    font-size: 14pt;
    position: relative;
}
.promotion-card .site-name:after{
    content: " ";
    width: 0;
    height: 0;
    border-right: 40px solid transparent;
    border-bottom: 50px solid #1E2832;
    position: absolute;
    right: -40px;
    top: 0;
}
.promotion-card div.title{
    display: inline-block;
    width: 100%;
    background: #1E2832;
    padding: 20px;
}
.promotion-card div.title .desc{
    color: #FFFFFF;
    display: inline-block;
    width: 100%;
    min-height: 100px;
    font-size: 16pt;
    font-weight: bold;
}
.promotion-card .note{
    color: #fff;
    display: inline-block;
    width: 100%;
    font-size: 10pt;
}
.promotion-card div.title span.beto{
    display: inline-block;
    width: 100%;
    color: #FFFFFF;
    font-size: 22pt;
    font-weight: bold;
}
.promotion-card div.title span.game{
    display: inline-block;
    width: 100%;
    color: #FFFFFF;
    font-size: 22pt;
    font-weight: bold;
    min-height: 100px;
}
.promotion-detail-button{
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    background: #33FF00;
    color: #1E2832;
    text-decoration: none;
    font-size: 14pt;
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
}
.bottom-v1{
    display: inline-block;
    width: 100%;
    background: #1E2832;
    padding: 20px;
    padding-top: 0px;
}
.bottom-v1 span.title{
    color: #33FF00;
    display: inline-block;
    width: 100%;
    font-weight: bold;
    font-size: 14pt;
    margin-bottom: 10px;
}
.bottom-v1 .form-control{
    display: inline-block;
    width: 100%;
    background: #2E3E4D;
    padding:20px;
    border: 0;
    margin-bottom: 20px;
    color: #C7DDF4;
    outline: none;
    box-shadow: none;
}
.bottom-v1 .form-control::placeholder{
    color: #C7DDF4;
}
.promotion-details{
    display: inline-block;
    width: 100%;
    background: #1E2832;
    border-radius: 10px;
    padding: 20px;
    border-radius: 10px;
}
.promotion-details .title{
    color: #C7DDF4;
    display: inline-block;
    width: 100%;
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 20px;
}
.promotion-details .promotion-details-content{
    display: inline-block;
    font-size: 10pt;
    color: #C7DDF4;
    width: 100%;
}
.promotion-details .promotion-details-content p{
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    color: #C7DDF4 !important;
    font-size: 10pt !important;
}
.promotion-carousel{
    display: inline-block;
    width: 100%;
}
.promotion-carousel.carousel .owl-nav::after{
    display: none;
}
.promotion-carousel.carousel .owl-nav{
    display: inline-block;
    width: 10%;
}
.promotion-carousel.carousel .owl-dots{
    display: inline-flex;
    width: 90%;
}
.promotion-carousel.carousel .owl-dots .owl-dot{
    display: inline-block;
    width: 100%;
    border-radius: 0;
    height: 3px;
    background: #3F4B56;
}
.promotion-carousel.carousel .owl-dots .owl-dot span{
    display: none;
}
.promotion-carousel.carousel .owl-dots .owl-dot.active{
    background: var(--mastergreen);
}
.other-promotions{
    display: inline-block;
    width: 100%;
}
.other-promotions h4.title{
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 20px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 16pt;
}
.bottom-v2{
    display: inline-block;
    width: 100%;
    background: #FFE500;
    padding: 20px;
}
.bottom-v2 .status-icon{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.bottom-v2 .status-icon i{
    display: inline-block;
    font-size: 50pt;
    background: #FFE500;
    border-radius: 50%;
    margin-top: -50px;
    padding: 5px;
    animation: spinning 5s linear infinite;
}
.bottom-v2 .status-icon.noanimate i{
    animation: none;
}
@keyframes spinning {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.bottom-v2 .title{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16pt;
    font-weight: bold;
}
.bottom-v2 .desc{
    display: inline-block;
    font-size: 12pt;
    text-align: center;
    width: 100%;
}
.bottom-v2 .bottom{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 10pt;
}
.bottom-v3{
    display: inline-block;
    width: 100%;
    background: #33FF00;
    padding: 20px;
}
.bottom-v3 .status-icon{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.bottom-v3 .status-icon i{
    display: inline-block;
    font-size: 50pt;
    background: #33FF00;
    border-radius: 50%;
    margin-top: -50px;
    padding: 5px;
    animation: bounce 1s linear infinite;
}
@keyframes bounce {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(10deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(0.9);
    }
    75% {
        transform: rotate(-10deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}
.bottom-v3 .title{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16pt;
    font-weight: bold;
}
.bottom-v3 .desc{
    display: inline-block;
    font-size: 10pt;
    text-align: center;
    width: 100%;
}
.bottom-v3 .bottom{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 10pt;
}
.bottom-v3 .promocode{
    background: #000;
    color: #33FF00;
    display: inline-block;
    width: 100%;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
}
.bottom-v4{
    display: inline-block;
    width: 100%;
    background: #8a0000;
    padding: 20px;
}
.bottom-v4 .status-icon{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.bottom-v4 .status-icon i{
    display: inline-block;
    font-size: 50pt;
    background: #8a0000;
    border-radius: 50%;
    color: #fff;
    margin-top: -50px;
    padding: 5px;
    animation: bounce 1s linear infinite;
}
.bottom-v4 .title{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16pt;
    color: #fff;
    font-weight: bold;
}
.bottom-v4 .desc{
    display: inline-block;
    font-size: 10pt;
    text-align: center;
    width: 100%;
    color: #fff;
}
.bottom-v5{
    display: inline-block;
    width: 100%;
    background: #1E2832;
    padding: 20px;
}
.bottom-v5 .title{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16pt;
    color: #fff;
    font-weight: bold;
}
.bottom-v5 .desc{
    display: inline-block;
    font-size: 12pt;
    text-align: center;
    width: 100%;
    color: #fff;
    background-color: #8a0000;
    padding: 15px 10px;
    border-radius: 10px;
}
.promotion-detail-button-2{
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    background: #500000;
    color: #fff;
    text-decoration: none;
    font-size: 14pt;
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
}