* {
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Poppins", Sans-serif;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.scratch_button{
    background-color:#ae0f0e !important;
    border-color:#ae0f0e !important;
}

.wrapper {
        max-width: 430px;
    width: 100%;
    height: 844px;
    margin: 0 auto;
}


/*********************************/
/* Entry Screen */
/*********************************/
.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #c9c9c987, transparent), url(../img/bg1.png);
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.screen .logo {
    width: 55%;
    height: auto;
}

.entry-screen .progress-bar_wrapper {
    width: 70%;
    margin-bottom: 190px;
}

.entry-screen .progress-text {
    margin-bottom: 7px;
    font-size: 21px;
    font-weight: bold;
    color: #e03933;
}

.entry-screen .progress-bar_wrapper .progress-bar {
    width: 100%;
    height: 50px;
    border: 2px solid #e03933;
    position: relative;
}

.entry-screen .progress-bar:before {
    content: "";
    position: absolute;
    /* width: 97%; */
    width: var(--progress);
    height: 86.5%;
    top: 6%;
    left: 1.5%;
    background: #bf302b;
    background: linear-gradient(180deg, #E03933 0%, #9C0001 100%);
}


/*********************************/
/* Login Screen */
/*********************************/
.login-screen.screen {
    padding-bottom: 0;
}

.login-screen .form_wrapper {
    width: 100%;
    padding-top: 90px;
    background: #ffffff96;
    height: 75%;
    background-size: cover;
    background-position: 0% 50%;
    border-radius: 40px 40px 0 0;
}

.login-screen .form_wrapper .field {
    width: 67%;
    margin-bottom: 30px;
}

.login-screen .form_wrapper .field > div {
    box-shadow: 1px 1px 11px 0px rgb(0 0 0 / 30%);
    height: 45px;
    overflow: hidden;
}

.login-screen .form_wrapper .field:not(.error) .errorText {
    display: none;
}

.login-screen .form_wrapper .field .errorText {
    margin: 15px 0 0 0px;
    color: #ff4545;
    font-weight: bold;
}

.login-screen .form_wrapper .field.error input {
    border: 2px solid #ff4545;
}

.login-screen .form_wrapper .field input {
    outline: none;
    border: none;
    width: calc(100% - 45px);
    border-radius: 0 5px 5px 0;
    padding: 5px 10px;
    font-size: 15px;
    color: #413c3c;
}

.login-screen .form_wrapper .field .icon {
    background: #ff5267;
    width: 45px;
    padding: 8px 8px;
    border-radius: 5px 0 0 5px;
}

.login-screen .form_wrapper button.submitBtn {
    background: url("../img/submitBtn.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 140px;
    min-height: 50px;
    border: none;
    margin-bottom: 90px;
    cursor: pointer;
}

.login-screen .form_wrapper button.submitBtn:active {
    transform: scale(0.9);
}


/*********************************/
/* Reward Screen */
/*********************************/
.reward-screen.screen {
    padding-top: 20px;
    background: linear-gradient(to top, #c9c9c987, transparent), url(../img/bg2.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.reward-screen .container {
    width: 100%;
    /*overflow: hidden;*/
    margin-top: 0px;
    text-align: center;    
}

.reward-screen .container .scratch_win_img {
    max-width: 70%;
    height: auto;
    animation-name: scratch;
    animation-duration: 1.3s;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
    padding-top: 20px;    
}

.reward-screen .container .rewardText {
    font-weight: bold;
    display: block;
    text-align: center;
    color: white;
    text-shadow: -1px -1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000, 1px 1px 2px #000;
}

.js--sc--container {
    position: relative;
    /* margin: 15px auto 0; */
    width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 5px solid #ffffff;
    border-radius: 5px;
}

.col-md-4 {
    /*padding-left: 2px !important;*/
    /*padding-right: 2px !important;*/
    padding-bottom: 20px !important;
    /*padding-top: 2px !important;*/
}

.js--sc--container:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.js--sc--container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.sc__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-size: 22px !important;
    background: linear-gradient(180deg, #E03933 0%, #9C0001 100%);
    font-weight: bold;
    font-size: 45px;
    color: #bb3e39;
    color: white;
}





@keyframes scratch {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.popupBox_wrapper {
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
}

.popup_content {
    width: 85%;
    min-height: 340px;
    background: #fff;
    border-radius: 20px;
    padding: 15px 30px;
    text-align: center;
}

.popup_content span.reward {
    background: linear-gradient(180deg, #E03933 0%, #9C0001 100%);
    padding: 20px 40px;
    font-size: 25px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup_content .contactBtn {
    width: 147px;
    height: 38px;
    background: url("../img/whatsapp.png");
    margin-top: 20px;
    cursor: pointer;
}

.row{
    margin-left: 0px !important;
    margin-right: 0px !important;
}

