body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow:hidden;
    background: #2983FF;
}
body *{
    font-family: 'Work Sans', sans-serif;
}
canvas {
    display: block;
}
button {
    margin-top: 20px;
}
#logo{
    position:absolute;
    left:100px;
    top:100px;
    z-index:99;
}
#logo img{
    width:200px;
}
#logo:hover{
    cursor:pointer;
}
#lotteryCenter{
    width: 400px;
    height:400px;
    position: absolute;
    border-radius:50%;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    z-index:-1;
}
#imgLotteryCenter{
    width:100%;
    height:100%;
    transform: scale(2);
    position: absolute;
    left:0;
    top:0;
}
#imgLotteryBorder{
    width:100%;
    height:100%;
    transform: scale(2.02);
    position: absolute;
    left:0;
    top:0;
}
#centerCircle{
    width: 40px;
    height: 40px;
    position:absolute;
    border-radius: 50%;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    overflow:hidden;
}
#centerCircle img{
    width: calc(100% + 7px);
    height: calc(100% + 7px);
    margin-left: -4px;
    margin-top: -3px;
}
.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: scale(2) rotate(0deg);
    }
    to {
        transform: scale(2) rotate(-360deg);
    }
}

#lotteryCenterFixed{
    width: 400px;
    height:400px;
    position: absolute;
    border-radius:50%;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
}
#resultCircle{
    width:100%;
    height:100%;
    border-radius: 50%;
    background:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}
#resultCircle label{
    font-size: 50px;
    color: #0B004E;
    display: block;
    text-align: center;
    font-weight: 300;
}
#resultNumber{
    font-size: 185px;
    color: #2983FF;
    font-weight: 700;
    line-height: 0.8;
    text-align: center;
}
#prizeCol{
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: calc(50% - 300px);
    display: flex;
    align-items: center;
    padding-left: 100px;
}
.prizeLabel{
    font-size:60px;
    color: #0B004E;
    font-weight: 300;
    line-height:65px;
}
.prizeNumber{
    font-size:60px;
    color: #fff;
    font-weight: 700;
    line-height:65px;
    height:65px;
}
#ultrawide .prizeNumber{
    font-size:30px;
    line-height: 30px;
    font-weight:300;
    height: auto;
}
#prizeCol .prizeNumber:not(:last-child){
    margin-bottom: 20px;
}
.firstViewContainer{
    padding: 100px ;
    width: calc(100vw - 200px);
    height: calc(100vh - 200px);
}
#ultrawide #firstView{
    width:100%;
    height:100%;
}
#ultrawide #lastView{
    width:100%;
    height:100%;
}
#ultrawide .firstViewContainer{
    width: 100%;
    height: calc(100vh - 10px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0;
    height: 100%;
}
.firstViewPrizesContainer{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
#ultrawide .firstViewPrizesContainer{
    display: flex;
    align-items: flex-end;
    justify-content: unset;
    padding: 0 17px;
    margin-top: 10px;
}
#ultrawide .center-screen .firstViewPrizesContainer{
    justify-content: flex-end;
}
#ultrawide .right-screen{
    width: 384px;
    height: 100%;
}
#ultrawide .right-screen img{
    width:100%;
    height:100%;
    object-fit:cover;
}
#ultrawide .flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% + 10px);
    background: #FFD800;
    margin-top: -5px;
    margin-bottom: -5px;
}
#ultrawide #firstView .flex-center,
#ultrawide #lastView .flex-center{
    background:transparent;
}
#ultrawide .flex-center.blue-screen{
    background: #0B004E;
}
#ultrawide .flex-center.blue-screen .firstViewCol h2{
    color: #fff;
}
#ultrawide .left-screen{
    width: 372px;
    height: 182px;
    padding-left: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
}
#ultrawide .center-screen{
    width: 384px;
    height: 182px;
    padding-top:5px;
    padding-bottom:5px;
}
#ultrawide .canvas-container{
    zoom: 0.37;
    margin-top: -55px;
}
#ultrawide .canvas-container #bingoCanvas{
    margin:auto;
}
.firstViewSideCol{
    width:calc(30vw - 100px);
    height:calc(30vw - 100px);
}
.firstViewCenterCol{
    width:calc(40vw - 100px);
    height:calc(40vw - 100px);
}
#ultrawide .firstViewCol{
    width:85px;
    height:100%;
    margin-left:47px;
}
#ultrawide .firstViewCol:first-child{
    margin-left: 0px;
}
.prizeCircle{
    width:100%;
    height:100%;
    border-radius:50%;
    background: #fff;
}
#ultrawide .prizeCircle{
    width:85px;
    height:85px;
}
.prizeCircle h2{
    font-size:30px;
    color: #0B004E;
    font-weight:700;
    line-height:35px;
    margin:0;
    text-align:center;
}
.prizeCircle p{
    font-size:30px;
    color: #0B004E;
    font-weight:300;
    line-height:35px;
    margin:0;
    text-align:center;
}
#ultrawide .firstViewCol h2{
    font-size:16px;
    line-height: 16px;
    font-weight:700;
    color: #0B004E;
    margin:0;
    margin-top:10px;
}
#ultrawide .firstViewCol p{
    font-size:16px;
    line-height: 16px;
    font-weight:300;
    color: #0B004E;
    margin:0;
}
.firstViewCenterCol .prizeCircle h2{
    font-size:50px;
    line-height: 50px;
}
.firstViewCenterCol .prizeCircle p{
    line-height: 40px;
}

.firstViewCenterCol .prizeCircle img{
    width: 100%;
    height: calc(100% - 80px);
    margin-top: -60px;
    object-fit: contain;
}
.firstViewSideCol .prizeCircle img{
    width: 100%;
    height: calc(100% - 90px);
    margin-top: -35px;
    object-fit: contain;
}
#ultrawide .firstViewCol .prizeCircle img{
    width: 100%;
    height: 100%;
    margin-top: -10px;
    object-fit: contain;
}
.firstViewContainer h1{
    font-size:90px;
    color:#fff;
    line-height:90px;
    font-weight:500;
    margin:0;
    position: absolute;
    bottom: 60px;
    left: 100px;
}
#ultrawide .firstViewContainer h1{
    font-size:30px;
    line-height:30px;
    position: unset;
    width:300px;
}
#ultrawide .firstViewContainer .h1-container{
    display: flex;
    align-items: flex-end;
    height: 100%;
    justify-content: flex-start;
}
.firstViewContainer h1 a{
    color: #0B004E;
    text-decoration: none;
}
.firstViewContainer h1 a:hover{
    text-decoration: none;
    color: #0B004E;
}
.videoContainer{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index: 100;
    background: #fff;
}
.videoContainer #video{
    min-width:100%;
    min-height:100%;
}
#ultrawide .videoContainer #video{
    height:192px;
}
.slick-slide-subscribe{
    width: 100vw;
    height: 100vh;
    margin:0 !important;
}
.slick-slide-subscribe .slick-list{
    height:100%;
}
.slick-slide-subscribe .slick-list .slick-track{
    height:100%;
}
.slick-slide-subscribe-item{
    width:100%;
    height:100%;
    overflow:hidden;
}
.slick-slide-subscribe-item.first-slide{
    background-size: cover !important;
    background-position: center !important;
}
.slick-slide-subscribe-item .btn-container .btn-primary img{
    filter: brightness(0) invert(1);
}
.slick-slide-subscribe-item .btn-container .btn-primary.btn-next img{
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
    margin-left:10px;
}
.slick-slide-subscribe-item .btn-container .btn-primary.btn-next{
    display:flex;
}
.slide-container{
    padding: 100px 200px;
    height: 100%;
    display:flex;
    align-items: center;
    position: relative;
}
.slide-container #logo{
    left:200px;
    top:100px;
}
.slide-content{
    width: 100%;
}
.slide-content h2{
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}
.slide-content h1{
    font-size: 90px;
    line-height: 90px;
    font-weight: 500;
    margin-bottom: 10px;
}
.slide-content p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 30px;
    margin-top: 15px;
}
.btn-container{
    display:flex;
    align-items:center;
}
.btn-container .btn-primary:first-child{
    margin-right: 20px;
}
.btn-primary{
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: #fff;
    background: #0B004E;
    border-radius: 40px;
    padding: 12px 24px;
    border: 0;
}
.btn-primary:hover,
.btn-primary:focus{
    background: #0B004E;
    outline: 0;
    box-shadow: unset;
}
.btn-secondary{
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: #0B004E;
    background: #F6F7FB;
    border-radius: 40px;
    padding: 12px 24px;
    border: 0;
}
.btn-secondary:hover,
.btn-secondary:focus{
    background: #F6F7FB;
    color:#0B004E;
    outline: 0;
    box-shadow: unset;
}
.first-slide .slide-content h2{
    color: #FFD800;
}
.first-slide .slide-content h1{
    color: #fff;
}
.first-slide .slide-content p{
    color: #0B004E;
}
.label-float{
  position: relative;
  padding-top: 20px;
}

.label-float input{
  border: 0;
  border-bottom: 1px solid lightgrey;
  outline: none;
  width: 100%;
  min-width: 180px;
  font-size: 90px;
  color: #fff !important;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -webkit-appearance:none;
  border-radius: 0;
  color:#012406;
  background: transparent;
  border-bottom: 3px solid #0B004E;
}

.label-float input:focus{
  border-bottom: 2px solid #012406;
}

.label-float input::placeholder{
  color:transparent;
}

.label-float label{
  pointer-events: none;
  font-weight:normal;
  color: #0B004E;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 90px;
  margin-top: 13px;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
}

.label-float input:required:invalid + label{
  color: red;
}
.label-float input:focus:required:invalid{
  border-bottom: 3px solid red;
}
.label-float input:required:invalid + label:before{
  content: '*';
}
.label-float input:focus + label,
.label-float input:not(:placeholder-shown) + label{
  font-size: 13px;
  margin-top: 0;
  color: #012406;
  font-weight:bold;
}
.label-float input:focus,
.label-float input:not(:placeholder-shown){
  border-bottom: 3px solid #fff;
}
.slide-content .label-float{
    width:100%;
}
.slide-content .phone-num1{
    width:200px;
}
.slide-content .phone-num2{
    width:calc(100% - 220px);
    margin-left:20px;
}
.inputs-container{
    display:flex;
    align-items:center;
}
.slide-content .confirm-data p{
    font-size: 40px;
    line-height: 60px;
    color: #0B004E;
    font-weight: 500;
    margin-bottom: 20px;
    margin:0;
}
.subscribe-confirm-img{
    position:absolute;
    right:-50px;
    bottom: 100px;
    width:564px;
    height:564px;
    border-radius: 50%;
    object-fit:cover;
}
.slick-slide-subscribe-item.last-slide{
    background:#A5CD28;
}
.last-slide .slide-content h2{
    color: #0B004E;
}
.last-slide .slide-content .random-number{
    color:#fff;
    font-weight: 300;
    font-size: 200px;
    line-height: 200px;
    margin-bottom: 40px;
}
.last-slide .last-slide-disclaimer{
    position:absolute;
    top: -100px;
    right: -100px;
    border-radius:50%;
    background: #fff;
    font-weight: 500;
    font-size: 50px;
    line-height: 50px;
    color: #0B004E;
    width: 712px;
    height: 712px;
    padding-top: 200px;
    padding-right: 50px;
    text-align: center;
}
#countdownContainer{
    position: absolute;
    bottom: 60px;
    width: 100%;
    left: 0;
    text-align: center;
}
#ultrawide #countdownContainer{
    position: unset;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
}
#countdownContainer p{
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    line-height: 40px;
}
#ultrawide #countdownContainer p{
    color: #0B004E;
    font-size:20px;
    font-weight: 500;
    margin: 0;
    line-height: 20px;
}
#countdownContainer #countdown{
    color: #fff;
    font-size: 140px;
    font-weight: 300;
    margin: 0;
    line-height: 140px;
}
#ultrawide #countdownContainer #countdown{
    font-size: 100px;
    line-height: 100px;
    margin-bottom: -10px;
}
#loadingPrize{
    position: absolute;
    bottom: 60px;
    width: 100%;
    left: 0;
    text-align: center;
    display:none;
}
#loadingPrize p{
    color: #fff;
    font-size: 90px;
    font-weight: 500;
    margin: 0;
    line-height: 90px;
}
#loadingPrize p span{
    color: #0B004E;
}
#ultrawide #loadingCongratsPrize{
    display:flex;
    align-items:center;
    height:100%;
    justify-content: flex-start;
}
#ultrawide #loadingCongratsPrize p{
    font-size:20px;
    line-height: 20px;
    color: #0B004E;
    font-weight: 500;
    margin-bottom:10px;
}
#ultrawide #loadingCongratsPrize h1{
    font-size:80px;
    line-height: 80px;
    color: #fff;
    font-weight: 300;
    margin:0;
}
#congrats{
    position: absolute;
    bottom: 60px;
    width: 100%;
    left: 0;
    text-align: center;
    display:none;
}
#congrats p{
    color: #fff;
    font-size: 90px;
    font-weight: 500;
    margin: 0;
    line-height: 90px;
}
table.datatable .btn-table:focus{
    padding: 10px !important;
}
.dataTables_wrapper .table-header .DT-search{
    display:none;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #fff;
    width: 100% !important;
}
.dataTables_wrapper .table-header .DT-search .dataTables_filter{
    padding: 20px;
    padding-left: 48px;
    margin-top: 0;
}
.dataTables_wrapper .table-header .DT-search .dataTables_filter label{
    margin: 0;
    height:50px;
}
.dataTables_wrapper .table-header .DT-search .dataTables_filter input{
    width: calc(100vw - 76px) !important;
    height: 50px;
}
.dataTables_wrapper .table-header .DT-search .fa-search {
    bottom: 55px !important;
    right: 22px !important;
}
table.dataTable.dtr-column>tbody>tr>td.control:before, table.dataTable.dtr-column>tbody>tr>th.control:before {
    left: unset !important;
    right: -20px !important;
}
.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
    text-align: left;
}
table.dataTable>tbody>tr.child ul.dtr-details {
    width: 100%;
    columns: 2;
    padding-left: 0 !important;
}
table.dataTable>tbody>tr.child ul.dtr-details>li {
    display: inline-grid;
}
table.dataTable>tbody>tr.child ul.dtr-details>li:first-child {
    padding-top: 0.5em;
}
table.dataTable .img-table{
    width: 100% !important;
}
table.dataTable.dtr-column>tbody>tr>td.control:before, table.dataTable.dtr-column>tbody>tr>th.control:before {
    top: 50%;
    left: 50%;
    height: 16px;
    width: 18px;
    margin-top: -10px;
    margin-left: -10px;
    display: block;
    position: absolute;
    color: #9aa89c;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
     background: url(../images/arrow-down.svg) no-repeat right;
    content: '';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 30px !important;
    line-height: 0.5 !important;
    text-rendering: auto;
    
    border: 0;
    box-shadow: 0 0 black;
}
table.dataTable.dtr-column>tbody>tr.parent td.control:before, table.dataTable.dtr-column>tbody>tr.parent th.control:before {
    background: url(../images/arrow-up.svg) no-repeat right;
    content: '';
}
table.dataTable tbody td {
    padding: 0px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-right: 5px;
}
table.dataTable thead th:last-child{
    pointer-events: none;
    width: 1px !important;
}
table.dataTable thead th:last-child::after{
    display:none;
}
table.dataTable .img-table{
    width: 300px;
    padding-right: 20px;
    height:120px;
    object-fit:cover;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color:transparent !important;
    background:transparent !important;
    border-color:transparent !important;
}
table.dataTable tbody tr {
    height:60px;
}
table.dataTable tbody tr:hover {
    background-color: #f6f6f6 !important;
}
table.dataTable th {
    position: relative;
}
table.dataTable th:after {
    display: none;
    font-family: FontAwesome;
    font-size: 11px;
    font-weight: 400!important;
    line-height: 20px;
    height: 20px;
    position: absolute;
    right: -8px;
    top: 8px;
    width: 20px;
}
table.dataTable thead .sorting:after {
    content: "\f0dc";
    display: block;
}
table.datatable *{
    border:0 !important;
    background-color:transparent !important;
}
table.datatable td{
    border-bottom:1px solid #f2f4f2 !important;
    padding: 10px 0;
    padding-left: 0 !important;
}
table.datatable th{
    padding: 10px 0;
    padding-left: 0 !important;
    color: #012406;
}
.table-header{
    border: 0 !important;
    border-bottom: 2px solid #d9deda !important;
    padding: 20px 0 !important;
}
table.dataTable.no-footer {
    border-bottom: 0 !important;
}
.dataTables_wrapper .table-header .table-caption {
    float: left;
    line-height: 20px;
    padding: 5px 10px 5px 0;
    width: auto;
    display: flex;
    margin-top: 12px;
}
table.datatable .btn-table{
    background: transparent !important;
    width: 40px;
    height: 40px !important;
    border-radius: 50%;
    border: 1px solid #69a507 !important;
    color: #69a507;
    font-size: 18px;
    padding: 10px !important;
}
table.datatable .btn-table:focus{
    border-radius:50% !important;
}
.dataTables_length{
    display:none;
}
.DT-pagination{
    display:none;
}
.table-footer{
    min-height: 40px;
    margin-top: -19px;
    position: relative;
    line-height: 20px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}
.DT-label {
    float: left;
    font-size: 12px;
    width: 100%;
    margin-top: 15px;
}
.dataTables_info{
    padding: 0 !important;
    font-size: 16px;
    color: #ccc !important;
}
.search-datatable
{
    position: relative;
    top:-40px;
    right:10px;
    float: right;
    z-index:99999;
}
table.dataTable thead .sorting:after, 
table.dataTable thead .sorting_asc:after, 
table.dataTable thead .sorting_desc:after, 
table.dataTable thead .sorting_asc_disabled:after, 
table.dataTable thead .sorting_desc_disabled:after{
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after{
    content: "\f107";
}
#confetti-canvas{
    position:absolute;
}
#termsContainer{
    position: absolute;
    background: #fff;
    width: 100vw;
    height: 100vh;
    padding: 100px;
    padding-top: 180px;
    transform: translate(0,-100%);
    transition: transform 0.5s ease-in-out;
    overflow-y: auto;
}
#termsContainer .btn-close{
    position: absolute;
    right: 100px;
    top: 100px;
    margin: 0;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #EFEFEF;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 0;
    padding: 0;
}
#termsContainer h2.termsTitle{
    font-size: 35px;
    color: #2983FF;
    margin-bottom: 20px;
}
#confirmDescription a{
    font-weight: bold;
}
#confirmDescription a:hover{
    cursor:pointer;
}
/* Customize the label (the container) */
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#confirmDescription{
    padding-left: 40px;
}
.error-message,
.error-message1,
.error-message2{
    font-weight: 500 !important;
}
@media (max-width:500px)
{
    table.dataTable.dtr-column>tbody>tr>td.control, table.dataTable.dtr-column>tbody>tr>th.control {right:20px;}
}
@media (max-width:414px)
{
    table.dataTable.dtr-column>tbody>tr>td.control, table.dataTable.dtr-column>tbody>tr>th.control {right:20px;}
}
@media screen and (min-width: 1850px) {
    .firstViewSideCol{
        width:calc(30vw - 200px);
        height:calc(30vw - 200px);
    }
    .firstViewCenterCol{
        width:calc(40vw - 200px);
        height:calc(40vw - 200px);
    }
}
@media (max-width: 1440px) and (min-width: 1280px){
    .first-slide .slide-content h1{
        font-size:60px;
        line-height:60px;
    }
}
@media (max-width: 1250px){
    table.dataTable.dtr-column>tbody>tr>td.control, table.dataTable.dtr-column>tbody>tr>th.control {right:20px;}
    .btn-login-jumpcloud{
        width: 90%;
        left: 5%;
    }
    .slide-container{
        padding: 40px;
    }
    .slide-content h1{
        font-size: 40px;
        line-height: 40px;
    }
    .slide-content h2{
        font-size: 25px;
        line-height: 25px;
    }
    .slide-content p{
        font-size:18px;
        line-height: 24px;
    }
    .slide-content .confirm-data p{
        font-size:18px;
        line-height: 24px;
    }
    .label-float input{
        font-size:25px;
    }
    .label-float label{
        font-size:25px;
    }
    .last-slide .last-slide-disclaimer{
        font-size:20px;
        line-height: 20px;
    }
    .last-slide .slide-content .random-number{
        font-size:100px;
        line-height:100px;
    }
    .slide-container #logo{
        left: 40px;
        top: 60px;
    }
    #logo img{
        width:140px;
    }
    .slide-content .phone-num1{
        width:80px;
    }
    .slide-content .phone-num2{
        width:calc(100% - 90px);
        margin-left:10px;
    }
    .label-float input{
        min-width: unset;
    }
    .slide-container{
        align-items: end;
    }
    .first-slide .slide-container{
        align-items: center;
    }
    .slide-container .btn-container{
        margin-top: 0px;
    }
    #confirmDescription{
        font-size: 14px;
        line-height: 16px;
    }
    .slick-slide-subscribe-item.slick-confirm .slide-content{
        z-index:99;
    }
    .subscribe-confirm-img{
        right: -100px;
        top: 60px;
        bottom: unset;
        width: 277px;
        height: 277px;
    }
    .last-slide .last-slide-disclaimer {
        top: 60px;
        right: -20px;
        width: 244px;
        height: 244px;
        padding:0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #termsContainer{
        padding:40px;
        padding-top: 140px;
    }
    #termsContainer #logo{
        left: 40px;
        top: 60px;
    }
    #termsContainer .btn-close{
        right: 40px;
        top: 60px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    #termsContainer h2.termsTitle{
        font-size:25px;
    }
    .slick-slide-subscribe-item.first-slide{
        background-size: 150% !important;
        background-position: 0% bottom !important;
        background-repeat: no-repeat !important;
    }
}

.desktop-h1 {
    display: block;
}

.mobile-h1 {
    display: none;
}

@media (min-width:757px) and (max-width:1300px) {
    .firstViewPrizesContainer {
        justify-content: center;
    }

    .firstViewContainer h1 {
        font-size: 70px;
        color: #fff;
        line-height: 70px;
        font-weight: 500;
        margin: 0;
        position: absolute;
        bottom: 40px;
        left: 60px;
    }
}

@media screen and (max-width:756px) {

    #firstView {
        overflow: hidden;
    }

    .firstViewContainer {
        padding: 20px;
        width: calc(100vw - 40px);
        height: calc(100vh - 40px);
    }


    .firstViewContainer h1 {
        font-size: 30px;
        line-height: 30px;
        left: 40px;
    }

    .firstViewPrizesContainer {
        padding-top: 300px;
        justify-content: center;
    }

    .firstViewCenterCol {
        position: absolute;
        width: 300px;
        height: 300px;
        top: 110px;
    }

    .firstViewCenterCol .prizeCircle h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .firstViewCenterCol .prizeCircle p {
        font-size: 13px;
        font-weight: 300;
        line-height: 16px;
    }

    .firstViewCenterCol .prizeCircle img {
        height: calc(100% - 60px);
        margin-top: -80px;
    }

    .firstViewContainer h1 {
        bottom:30px !important;
    }

    .firstViewSideCol {
        width: 175px;
        height: auto;
        aspect-ratio: 1/1;
        z-index: 999;
    }

    .firstViewSideCol .prizeCircle h2 {
        font-size: 16px;
        line-height: 26px;
    }

    .firstViewSideCol .prizeCircle p {
        font-size: 13px;
        font-weight: 300;
        line-height: 16px;
    }

    .firstViewSideCol .prizeCircle img {
        height: calc(100% - 60px);
        margin-top: -15px;
    }

    #logo {
        position: absolute;
        left: 40px;
        top: 40px;
        z-index: 99;
    }

    .desktop-h1 {
        display: none;
    }

    .mobile-h1 {
        display: block;
    }

    
    #bingoCanvas, #lotteryCenter {
        scale:0.7;
    }

    #countdownContainer  {
        bottom:40px;
    }

    #countdownContainer #countdown {
        font-size: 100px;
        line-height: 100px;
    }

    #countdownContainer p {
        color: #0B004E;
        font-size: 20px;
        line-height: 28px;
    }

    #bingoView {
        position: absolute;
        height: 100vh;
    }

    #congrats, #loadingPrize {
        bottom:40px;
    }

    #loadingPrize p, #congrats p{
        font-size: 30px;
        line-height: 30px;
    }

    #lotteryCenter {
        top: calc(40% - 200px);
    }

    #lotteryCenterFixed {
        top: calc(40% - 200px);
    }

    #prizeCol  {
        display: none;
    }

    #prizeCol2  {
        display: flex !important;
        justify-content: center;
        align-items: center;
        position: absolute;
        left:0;
        bottom:145px;
        width: 100%;
    }

    #prizeCol2 .prize-col .round-prize {
        position: relative;
        background-color: #FFF;
        border-radius: 50%;
        margin: 5px;
        width: 88px;
        height: 88px;
    }

    #prizeCol2 .prize-col .round-prize img {
        position: absolute;
        left:50%;
        transform: translateX(-50%);
        top:-5px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #prizeCol2 .prize-col .round-prize h4 {
        color: #0B004E;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 14px;
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .prizeLabel {
        font-size: 20px;
        line-height: 20px;
    }

    .prizeNumber {
        font-size: 40px;
        line-height: 36px;
    }
}

