/* -------CUSTOM NORMALIZE CSS - FB------*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    all: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*--------END NORMALIZE CSS-------*/

.only-mobile {
    display: none;
}

html,
body {
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

body {
    background: #FBFBFB;
    color: #5F0510;
}

html {
    /* overflow: hidden; */
    overflow-x: hidden;
}

h1 {
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
    font-size: 40px;
    line-height: normal;
    color: #fff;
    /* text-shadow: 4px 3px #000; */
}

h4 {
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #5F0510;
    min-height: 58px;
}


.block-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 100vh;
    overflow: hidden;
}

.block-wrapper .block-center {
    width: 60%;
}

.block-wrapper .block-left,
.block-wrapper .block-right {
    width: 25%;
    background-size: cover;
    background-repeat: no-repeat;
}

.block-wrapper .block-left {
    background-position: left center;
    background-image: url(../img/hearts-left.jpg);
}

.block-wrapper .block-right {
    background-image: url(../img/hearts-right.jpg);
    background-position: right center;
}

.hidden{
    display: none;
}

/*---------------
-----------------
-----STEPS------
----------------*/

.steps-wrapper {
    /* height: 100%; */
    padding: 20px 30px 30px;
    text-align: center;
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
}

.title-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}


.title-block h1 {
    color: #EF2B38;
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 45px;
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

.title-block img {
    max-width: 200px;
}

.steps-wrapper p {
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* .steps-wrapper h4{
    text-transform: uppercase;
} */

.steps-wrapper h3 {
    font-size: 24px;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 30px;
}

.steps-wrapper .options-wrapper {
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 400px;
}

.steps-wrapper .options-wrapper label {
    color: #000;
}

.steps-wrapper .options-wrapper.options-2,
.steps-wrapper .options-wrapper.options-3,
.steps-wrapper .options-wrapper.options-4 {
    max-width: 600px;
}

.steps-wrapper .option {
    /* box-shadow: 0 10px 20px rgb(0 0 0 / 30%), 0 6px 6px rgb(0 0 0 / 32%); */
    padding: 10px;
    /* margin: 20px; */
    width: calc(50% - 20px);
}

.steps-wrapper .option img {
    padding: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 100%;
}

.options-3 img,
.options-4 img {
    max-width: 150px;
}

.steps-wrapper .option p {
    margin-bottom: 10px;
}

.steps-wrapper .option-button {
    /* text-decoration: underline; */
    font-size: 17px;
    cursor: pointer;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}

/* .steps-wrapper .step-3 .option-button,
.steps-wrapper .step-4 .option-button,
.steps-wrapper .step-5 .option-button{
    color: #000;
} */

.steps-wrapper .step-2 button {
    padding: 20px 15px;
    text-transform: uppercase;
    background: #ff9b9f;
    border: none;
    outline: none;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
    box-shadow: 1px 1px 1px #ddd;
    font-size: 24px;
    width: 100%;
    display: block;
    margin-top: 40px;
    cursor: pointer;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    animation: glow1 0.5s linear infinite alternate;
    margin-bottom: 10px;
}

@keyframes glow1 {

    0%,
        {
        box-shadow: 0 0 0 #ff9b9f;
    }

    100% {
        box-shadow: 0 0 40px #ff9b9f;
    }
}
@keyframes glow {

    0%,
        {
        box-shadow: 0 0 0 #ff9b9f;
    }

    100% {
        box-shadow: 0 0 40px #ff9b9f;
    }
}

.step {
    transition: opacity 400ms;
    opacity: 1;
}

.step.fading-out {
    opacity: 0;
}

main.fading-out {
    opacity: 0;
}

.step.hide {
    display: none;
}

main.hide,
.hide {
    display: none;
}

.step.show,
.show {
    display: block;
}

main.show {
    display: block;
}

.skin-block {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.skin-block-1 {
    background: #f8eee4;
}

.skin-block-2 {
    background: #f2caa7;
}

.skin-block-3 {
    background: #d3948b;
}

.skin-block-4 {
    background: #64381d;
}

.option-form {
    width: calc(50% - 40px);
    margin: 20px;

}

.option-form input {
    height: 60px;
    font-size: 1rem;
    text-align: center;
    /* -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15); */
    /* box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15); */
    border-style: none;
    z-index: 1;
    line-height: 23px;
    outline: none !important;
    width: 100%;
    -webkit-appearance: none;
    margin-top: 10px;
    background: #ffff;
    border: 2px solid rgb(95 5 16 / 40%);
}

.option-form input::placeholder {
    opacity: 1;
    color: #ccc;
}

.option-form input:focus {
    border: 2px solid #5f0510;
    background-color: #fff;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 15px 30px;
    background: #fddede;
}
.logo-wrapper p {
    text-align: center;
    margin-top: -10px;
    font-size: 16px;
    color: #000;
}
header p{
    text-align: center;
    font-size: 10px;
}

.hambuguer-menu {
    max-width: 30px;
    height: 100%;
}

.main-title-games {
    max-width: 150px;
    width: 100%;
    height: 100%;
}

.main-wrapper .page-subtitle {
    margin-bottom: 35px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.input-wrapper {
    margin-bottom: 10px;
}

.input-wrapper form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.input-wrapper .align-input {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-wrapper .align-input .input-group-addon{
        /* flex: 1; */
        min-height: 50px;
        margin-bottom: 5px;
        background: #ccc;
        border-radius: 4px 0 0 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-weight: 700;
        font-size: 18px;
        min-width: 80px;
}

.input-wrapper form input#msisdn,
.input-wrapper form input#pin {
    width: 100%;
    background: #fff;
    min-height: 50px;
    border: 2px solid #fff;
    max-width: 450px;
    color: #000000a1;
    font-weight: 800;
    font-size: 18px;
    text-align: left;
    padding-right: 15px;
    /* text-indent: 35px; */
    background: #cccccc2b;
    border: 2px solid #cccccca8;
    font-family: Arial, Helvetica, sans-serif;
}

.input-wrapper form input#msisdn {
    margin-bottom: 5px;
}

.input-wrapper form input#pin {
    text-align: center;
}

.input-wrapper .example-span {
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
}

.input-wrapper form input#msisdn:focus,
.input-wrapper form input#pin:focus {
    color: #000000a1;
    border-color: #cccccca8;
    background-color: #fff;
}

.input-wrapper form input#msisdn::placeholder,
.input-wrapper form input#pin::placeholder {
    color: #ccc;
}

.input-wrapper label {
    margin-bottom: 20px;
    font-weight: 700;
    font-style: italic;
    max-width: 325px;
}

.input-wrapper button[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    width: 105%;
}
.hidden {
    display: none;
  }
/* .input-wrapper button:hover,
.input-wrapper button:focus {
    -ms-transform: translate(2px, 2px);
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
}

.input-wrapper button::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(400px + 17px);
    min-height: calc(75px + 17px);
    border: 6px solid #fff;
    box-shadow: 0 0 60px rgb(0 255 203 / 64%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
} */

.input-wrapper button:hover::before,
.input-wrapper button:focus::before {
    opacity: 1;
}

/*.input-wrapper button:hover {
   box-shadow: none;
   -moz-box-shadow: none;
   -webkit-box-shadow: none;
   -ms-transform: translate(2px, 2px);
   -webkit-transform: translate(2px, 2px);
   transform: translate(2px, 2px);
}*/

.input-wrapper button span {
    position: relative;
    padding: 10px 50px;
}

.input-wrapper button span:nth-child(1) {
    border-right: 1px solid #fff;
    font-size: 22px;
    opacity: 1;
}

.input-wrapper button span:nth-child(2) {
    animation: blink 1s linear infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

form .icon_phone {
    position: absolute;
    width: 25px;
    height: 25px;
    margin-left: 10px;
    top: 13px;
}

.main-wrapper .bottom-small {
    text-align: left;
    padding: 15px;
    border: 1px solid #fff;
}


.main-wrapper .bottom-small p {
    margin-bottom: 15px;
    font-size: 14px;
}

footer a {
    text-decoration: underline;
}

footer a:hover {
    color: #AE079A;
}

.bottom-small a:hover {
    color: #AE079A;
}

.terms-conditions {
    margin-top: 50px;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.stepsinfo {
    margin: 10px 0 10px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
}


.stepsinfo span {
    margin-right: 10px;
    /* border-radius: 50px; */
    /* width: 35px; */
    /* height: 35px; */
    display: inline-block;
    /* background-color: #53a026; */
    /* padding: 3px; */
    /* padding-top: 5px; */
    font-size: 24px;
    color: #53a026;
    font-weight: 700;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center;*/
}

.lang-wrapper a {
    padding: 5px 15px;
    background: #fff;
    color: #000;
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 40%);
}


#overlay {
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    height: 100%;
    top: 0px;
    left: 0px;
    text-align: center;
    z-index: 110;
    width: 100%;
}

.disc {
    position: absolute;
    width: calc(100% - 50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    background: #fff;
    color: #000;
    padding: 30px;
    text-align: center;
    max-width: 600px;
}

.disc p.terms_text {
    font-size: 12px;
    text-align: left;
    margin-bottom: 10px;
}

.disc .terms_title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.close_btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    border-radius: 50px;
    border: none;
    -webkit-box-shadow: 5px 5px 15px 3px rgb(0 0 0 / 30%);
    box-shadow: 5px 5px 15px 3px rgb(0 0 0 / 30%);
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    font-weight: 900;
    cursor: pointer;
}

.close_terms {
    font-weight: bold;
    border-radius: 50px;
    width: 100%;
    border: 2px solid #000;
    padding: 5px 15px;
    margin-top: 15px;
    background-color: #000;
    color: #fff;
    transition: all ease-in-out 150ms;
    cursor: pointer;
}

.close_terms:hover {
    background-color: transparent;
    color: #000;
}

.disc p.terms_text a {
    text-decoration: underline;
}

/*----------LOADER-------*/

.loader-wrapper {
    display: none;
    background: rgb(0 0 0 / 75%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 999;
}

.load {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load div {
    width: 25px;
    height: 25px;
    background-color: #3bff3b;
    margin-left: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: calc(50px - 12.5px);
    animation-name: loading;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.load-two {
    animation-delay: 0.4s;
}

.load-three {
    animation-delay: 0.6s;
}

@keyframes loading {
    to {
        opacity: 0.7;
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
    }

}

/* ----- Donwload Animation ----- */

.folder {
    background: url('../img/cloud.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
    /* border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px; */
}

.folder-tab {
    position: absolute;
    height: 10px;
    left: 0;
    bottom: 100%;
    display: block;
    width: 40%;
    border-top-left-radius: 8px;
    background-color: inherit;
}

.folder-tab:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: calc(100% - 10px);
    border-bottom: 10px solid #2196f3;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.folder-icn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.downloading {
    width: 30px;
    height: 32px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.custom-arrow {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -7px;
    background-color: #fff;
    -webkit-animation-name: downloading;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: downloading;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.custom-arrow:after {
    content: '';
    position: absolute;
    display: block;
    top: 97%;
    left: -9px;
    border-top: 15px solid #fff;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 0 auto;
}

@-webkit-keyframes downloading {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 110%;
        opacity: 0;
    }

    52% {
        top: -110%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes downloading {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 110%;
        opacity: 0;
    }

    52% {
        top: -110%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

/* ----- End Donwload Animation ----- */

/* ----- Button Continue Animation -----*/

.input-wrapper .subscribe_btn {
    position: relative;
    /* padding: 10px 20px; */
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 20%);
    /* color: #999; */
    text-decoration: none;
    /* text-transform: uppercase; */
    /* letter-spacing: 4px; */
    font: 700 30px consolas;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    background-color: #ff9b9f;
    border-radius: 3px;
    min-width: 200px;
    margin-top: 20px;
}

#linkpin{
    position: relative;
    text-decoration: none;
    font: 700 30px consolas;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    background-color: #53a026;
    border-radius: 3px;
    min-width: 200px;
    margin-top: 30px;
    padding: 10px 50px;
    font-size: 22px;
}

/* .subscribe_btn span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #171618, #3bff3b);
    animation: animate1 2s linear infinite;
} */

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* .subscribe_btn span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #171618, #3bff3b);
    animation-delay: 1s;
} */

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.subscribe_btn span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #171618, #3bff3b);
    /* animation: animate3 2s linear infinite; */
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.subscribe_btn span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #171618, #3bff3b);
    /* animation: animate4 2s linear infinite; */
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* ----- End Button Continue Animation -----*/

/*-----------Last Changes--------------*/

#msisdninsert>.stepsinfo:nth-child(2) {
    margin-bottom: 35px;
}

#msisdninsert .align-input {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
}

#msisdninsert .input-group-addon {
    flex: 1;
    min-height: 50px;
    margin-bottom: 5px;
    background: #ccc;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 24px;
    min-width: 80px;
    max-width: 100px;
}

.input-wrapper form input#msisdn {
    text-indent: 15px;

}

.input-wrapper .error-msg {
    display: none;
    color: #ea3222;
    font-size: 18px;
    width: 100%;
    /* position: absolute; */
    margin-top: 5px;
    text-align: center;
}

/* .pininsert .input-wrapper .error-msg{
    top: 125px;
} */

.show-error .input-wrapper .error-msg {
    display: block;
}

.show-error .input-wrapper form input#msisdn {
    border: 2px solid #ea3222;
}

.correct .input-wrapper form input#msisdn {
    border: 2px solid #3bff3b;
}

.input-wrapper #bmsisdn {
    pointer-events: none;
    /* background-color: #ccc; */
    /*opacity: 0.3;*/
    opacity: 0.3;
}

.correct .input-wrapper #bmsisdn {
    pointer-events: auto;
    /* background-color: #2fda2f; */
    opacity: 1;
    animation: glow 0.5s linear infinite alternate;
}

.input-wrapper #bpin {
    pointer-events: none;
    /* background-color: #ccc; */
    opacity: 0.3;
}

.correct .input-wrapper #bpin {
    pointer-events: auto;
    /* background-color: #53a026; */
    opacity: 1;
}

.steps-wrapper .step-2 button.disable {
    opacity: 0.3;
    cursor: not-allowed !important;
    animation: none;
    pointer-events: none;
}

.step.step-6 {
    background: none;
    box-shadow: none;
}

/*-----------End Last Changes--------------*/

/*-------------Loading bar---------------*/

.loading-bar-wrapper {
    position: relative;
    width: 100%;
    height: 30px;
    background-color: #eee;
    border-radius: 3px;
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #4CAF50;
    transition: width 4s linear;
    border-radius: 3px;
}


.loading-text-wrapper {
    display: none;
    margin-bottom: 20px;
}

.loading-text {
    opacity: 0;
    transition: opacity 1s;
    margin-bottom: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-text img {
    opacity: 0;
}

.show-loading-text,
.loading-text img.show-loading-text {
    opacity: 1;
}

.show-loading-bar {
    animation: loading-bar 3s linear forwards;
}

.loading-text-3 img:nth-child(1) {
    margin-right: 10px;
    margin-left: 0;
}

@keyframes loading-bar {
    0% {
        width: 0;
    }

    70% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}


.loading-text img {
    max-width: 20px;
    margin-left: 10px;
}

.thermometer {
    position: relative;
    width: 30px;
    height: 200px;
    margin: 0 auto;
}

.thermometer-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    border-radius: 15px;
}

.thermometer-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #EF0000;
    transition: height 3s linear;
    border-radius: 15px;
    -webkit-box-shadow: -5px -2px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: -5px -2px 5px 0px rgba(0, 0, 0, 0.3);
}

.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('../img/android-chrome-512x512.png');
    background-size: cover;
    animation: float 5s infinite;
    bottom: 0;
    left: 45%;
}

.heart:nth-child(2) {
    left: 42%;
    animation-delay: 1.5s;
}

.heart:nth-child(3) {
    left: 52%;
    animation-delay: 0.5s;
}

.heart:nth-child(4) {
    left: 54%;
    animation-delay: 4.5s;
}

.heart:nth-child(5) {
    left: 47%;
    animation-delay: 3s;
}

.heart:nth-child(6) {
    left: 48%;
    animation-delay: 1s;
}

.heart:nth-child(7) {
    left: 44%;
    animation-delay: 1.3s;
}

.heart:nth-child(8) {
    left: 48%;
    animation-delay: 1.8s;
}

.heart:nth-child(9) {
    left: 54%;
    animation-delay: 2.7s;
}

.heart:nth-child(10) {
    left: 55%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Add this line to apply the new animation */
.show-thermometer {
    animation: thermometer 3s linear forwards;
}

@keyframes thermometer {
    0% {
        height: 0;
    }

    70% {
        height: 50%;
    }

    100% {
        height: 100%;
    }
}

.measure-lines {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 20px;
    height: 100%;
}

.measure-line {
    position: absolute;
    left: 0;
    width: 10px;
    height: 1px;
    background-color: #000;
    z-index: 3;
}

.heart-bottom {
    position: absolute;
    bottom: -90px;
    max-width: 120px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 3;
}

/* .measure-line:nth-child(5n) {
    width: 15px;
} */

.measure-line:nth-child(1) {
    bottom: 0%;
}

.measure-line:nth-child(2) {
    bottom: 5%;
}

.measure-line:nth-child(3) {
    bottom: 10%;
}

.measure-line:nth-child(4) {
    bottom: 15%;
}

.measure-line:nth-child(5) {
    bottom: 20%;
}

.measure-line:nth-child(6) {
    bottom: 25%;
}

.measure-line:nth-child(7) {
    bottom: 30%;
}

.measure-line:nth-child(8) {
    bottom: 35%;
}

.measure-line:nth-child(9) {
    bottom: 40%;
}

.measure-line:nth-child(10) {
    bottom: 45%;
}

.measure-line:nth-child(11) {
    bottom: 50%;
}

.measure-line:nth-child(12) {
    bottom: 55%;
}

.measure-line:nth-child(13) {
    bottom: 60%;
}

.measure-line:nth-child(14) {
    bottom: 65%;
}

.step {
    
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 30px;
    display: block;
    width: 100%;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(221, 221, 221, 0.1019607843);
    margin-bottom: 0;
    margin-top: 0;
}

.steps-wrapper .step-1 .option img {
    max-height: 120px;
    width: auto;
    border-radius: 0;
    max-width: 100%;
}

.subtitle.hide{
    display: none;
}


/*------------------end of loading bar-----------*/

/*------------Footer-----------*/

footer{
    position: absolute;
    top: calc(100% - 40px);
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    text-align: center;
    color: #b1afaf;
}

footer.hide{
    display: none;
}

/*---------End of Footer----------*/

/*---------Pin flow----------*/

.main-wrapper h2 {
    margin-top: 0;
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}

.main-wrapper .msisdn-heading {
    font-size: 28px;
    color: #145561;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center;

}

/*---------End Pin flow----------*/

.bottom-part{
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}

/*-----------Media Queries----------------*/


@media only screen and (max-width: 1366px) {
    h1 {
        font-size: 34px;
    }

    /* .main-title-games {
        font-size: 76px;
    } */
}

@media only screen and (max-width: 991px) {

    .block-wrapper .block-left,
    .block-wrapper .block-right {
        width: 15%;
    }

    .block-wrapper .block-center {
        width: 70%;
    }
}

@media only screen and (max-width: 650px) {
    h1 {
        font-size: 30px;
    }

    /* .main-title-games {
        font-size: 70px;
    } */

    /* .stepsinfo{
        font-size: 20px;
    } */

    .block-wrapper {
        flex-wrap: wrap;
    }

    .block-wrapper .block-left {
        display: none;
    }

    .block-wrapper .block-right {
        width: 100%;
        background-position: center top;
        height: 250px;
        margin-bottom: -50px;
        display: none;
    }

    .block-wrapper .block-center {
        width: 100%;
    }

    .only-desktop {
        display: none;
    }

    .only-mobile {
        display: block;
    }

    .input-wrapper form input#msisdn::placeholder,
    #msisdninsert .input-group-addon {
        font-size: 16px;
    }

    #msisdninsert .input-group-addon {
        min-width: 70px;
    }

    .stepsinfo {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: right;
    }

    .stepsinfo span {
        min-width: 35px;
    }

    .main-wrapper .page-title {
        font-size: 24px;
    }

    .main-wrapper .msisdn-heading {
        font-size: 28px;
    }

    footer{
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 500px) {
    h1 {
        font-size: 26px;
    }

    /* .stepsinfo{
        font-size: 16px;
    } */

    /* .stepsinfo span {
        width: 28px;
        height: 35px;
        padding: 3px;
        padding-top: 4px;
        font-size: 15px;
    } */

    /* .main-title-games {
        font-size: 66px;
    } */

    /*  .main-wrapper {
        padding: 60px 0 0;
    } */

    .main-title-games {
        max-width: 50px;
    }

    /* .main-wrapper .box-container {
        padding: 20px 15px;
    } */

    .input-wrapper form input#msisdn,
    .input-wrapper form input#pin {
        max-width: 350px;
    }

    /* .input-wrapper button[type="submit"] {
        max-width: 300px;
    } */

    .input-wrapper button::before {
        min-width: calc(300px + 17px);
    }

    .main-wrapper .bottom-small p {
        font-size: 13px;
    }

    .disc {
        padding: 15px;
    }

    /* .main-wrapper .page-title {
        margin-bottom: 20px;
    }

    .main-wrapper .page-title {
        margin-top: 10px;
    } */

    .input-wrapper .subscribe_btn {
        /* padding: 20px 40px; */
        font: 700 24px consolas;
    }

    .main-wrapper {
        padding: 10px 20px 30px;
    }

    .steps-wrapper h3 {
        font-size: 18px;
    }

    .title-block h1 {
        font-size: 36px;
    }

    .steps-wrapper p {
        font-size: 18px;
    }

    .steps-wrapper .option {
        padding: 5px;
    }

    .title-block {
        margin-bottom: 10px;
    }

    .steps-wrapper .option-button {
        font-size: 16px;
    }

    .steps-wrapper .option {
        width: 50%;
    }

    .steps-wrapper p {
        margin-bottom: 10px;
    }

    .title-block img {
        max-width: 175px;
    }

    .option-form {
        width: calc(50% - 20px);
        margin: 10px;
    }

    #msisdninsert>.stepsinfo:nth-child(2) {
        margin-bottom: 25px;
    }

    .main-wrapper .stepsinfo {
        font-size: 18px;
    }

    .main-wrapper .box-container h4 {
        font-size: 14px;
    }

    .loading-text {
        font-size: 16px;
    }

    .steps-wrapper {
        /* height: 100%; */
        padding: 20px 20px 30px;
    }

    .lang-wrapper {
        font-size: 12px;
    }

    h4 {
        font-size: 20px;
    }

    .main-wrapper .msisdn-heading {
        font-size: 20px;
    }

    .main-wrapper h2 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 415px) {
    /* .stepsinfo {
        font-size: 15px;
    } */

    .title-block h1 {
        font-size: 26px;
    }

    .steps-wrapper .step-2 .options-wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .step-2 .option-form {
        width: 100%;
        margin: 10px;
    }

    /* .main-wrapper .stepsinfo{
        text-align: left;
    } */

    .input-wrapper form input#msisdn::placeholder,
    #msisdninsert .input-group-addon {
        font-size: 16px;
    }

    #msisdninsert .input-group-addon {
        min-width: 60px;
    }

    .steps-wrapper .step-2 button {
        margin-top: 10px;
    }

    .input-wrapper form input#msisdn::placeholder{
        font-size: 12px;
    }
}

@media only screen and (max-width: 375px) {
    h1 {
        font-size: 28px;
    }

    h4 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .disc p.terms_text {
        font-size: 10px;
    }

    .steps-wrapper p {
        font-size: 16px;
    }

    .steps-wrapper .option-button {
        font-size: 15px;
    }

    .steps-wrapper {
        /* height: 100%; */
        padding: 20px 10px 30px;
    }

    .input-wrapper button span {
        position: relative;
        padding: 10px 30px;
    }
}

@media only screen and (max-width: 370px) {
    .input-wrapper button[type="submit"] {
        font-size: 36px;
        /* padding-top: 15px; */
    }
}

@media only screen and (max-width: 350px) {

    .input-wrapper button[type="submit"] {
        font-size: 28px;
        /* padding-top: 15px; */
    }

    .input-wrapper button::before {
        min-height: calc(62px + 17px);
    }

    .title-block h1 {
        font-size: 24px;
    }

    .title-block img {
        max-width: 150px;
        margin-bottom: 10px;
    }

    /* .steps-wrapper .option-button{
        font-size: 14px;
    } */
}

@media only screen and (max-width: 320px) {
    .steps-wrapper p {
        font-size: 14px;
    }
}

@media only screen and (max-height: 550px){
    footer{
        top: calc(100% + 20px);
    }
}

@media only screen and (max-height: 500px){
    footer {
    position: relative;
    margin-top: -30px;
    }
}