:root {
    --primary: #e3d6e6;
    --secondary: #ffe4dc;
    --secondary: #eaeffff;
    --primary-font: #5050050;
    --secondary-font: #008bbb;
    --btn-bg: #006e94;
    --size-title: 35px;
    --size-title-mobile: 30px;
    --size-step-title: 26px;
    --size-step-title-mobile: 22px;
    --size-step-title-mobile-xs: 17px;
    --size-subtitle: 22px;
    --size-subtitle-mobile: 19px;
    --size-subtitle-mobile-xs: 15px;
    --primary-blue: #0090ff;
    --bg-option: #eeeeeee;
    --white: #FFFFFFF;
    --bg-bullet: #96c100;
    --body: 18px;
    --body-mobile: 14px;
    --button: 20px
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}
html, body {
    height: 100%;
}
body {
    background-color: linear-gradient(135deg, #2E0249, #570A57);
    font-size: var(--body-mobile)
}

h1,
h2 {
    font-size: var(--size-title-mobile)
}
/* .container-fluid {
    display: flex;
    flex-direction: column;
    min-height: 100%;
} */
h5 {
    font-size: var(--size-subtitle-mobile)
}
.hideFooter {
    min-height: 100vh;
}
.row {
    margin: 0;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding: 0;
}
[data-step] {
    flex: 1 1 auto;
    background-color: linear-gradient(135deg, #2E0249, #570A57);
}

.logo-img {
    background: url("../img/var3.png") no-repeat center;
    background-size: contain;
    animation: showContentImg 0.8s ease-in;
    height: 250px
}
@keyframes showContentImg {
    0% {transform: translateY(-180px)}
    60% {transform: translateY(0)}
    80% {transform: translateY(-10px)}
    100% {transform: translateY(0)}
    
  }
@keyframes dotAnimation {
    0%, 20% {
        opacity: 0;
    }
    25%, 45% {
        opacity: 1;
    }
    50%, 70% {
        opacity: 0;
    }
    75%, 95% {
        opacity: 1;
    }
}
.dot {
    display: inline-block;
    animation: dotAnimation 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.5s; 
}

.dot:nth-child(3) {
    animation-delay: 1s;
}
#loaderText {
    color: #000;
    margin-top: 15px;
    margin-bottom: 0;
}
.text-title {
    font-size: var(--size-title-mobile);
    color: var(--primary-font);
    font-weight: bold;
    text-align: center
}
#content{
    padding-top: 15px !important;
}
.text-title span {
    color: var(--secondary-font)
}

.layout-paragraph {
    font-size: var(--size-subtitle-mobile-xs);
    color: var(--secondary-font)
}

[data-step="sendPin"] .text-title,
[data-step="validatePin"] .text-title {
    font-size: var(--size-step-title-mobile);
    color: var(--primary-font);
    font-weight: normal
}

.btn-4 {
    background-color:  var(--btn-bg);
    border: 1px solid var(--btn-bg);
    border-radius: 30px;
    color: white;
    width: 100%;
    height: 60px;
    text-transform: uppercase;
    font-size: var(--button);
    font-weight: bold;
    animation: pulse 0.8s infinite alternate-reverse;
    transition: .3s all;
}

.disabled {
    opacity: 0.5;
}

a:hover {
    color: #fff;
}
@keyframes pulse {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.03);
    }

  }
.btn-4:hover {
    cursor: pointer;
    text-decoration: auto;
    box-shadow: none;
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.3));
}

.option {
    background: var(--bg-option);
    border: 1px solid grey;
    padding: 5px 0
}

.option :hover {
    cursor: pointer
}

.bullet {
    background: var(--bg-bullet);
    margin-left: 5px;
    color: var(--white)
}

.label {
    width: 100%;
    text-align: center
}

input#submitFormButtonPhone,
input#submitFormButtonPin,
input#submitFormButtonClick2SMS,
input#submitFormButtonMO {
    appearance: none;
    width: 90%;
    height: 60px;
    position: absolute;
    background-color: transparent;
    border: none;
    border-radius: 2em
}

input#submitFormButtonPhone:hover,
input#submitFormButtonPin:hover,
input#submitFormButtonClick2SMS:hover,
input#submitFormButtonMO:hover {
    cursor: pointer
}

#sendSMS {
    text-decoration: none
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6)
}

.form-control::-moz-placeholder {
    color: #56565c;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #56565c
}

.form-control::-webkit-input-placeholder {
    color: #56565c
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px
    }

    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px
    }

    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 46px
    }
}

.layout-form-input:focus.layout-form-input::-webkit-input-placeholder {
    opacity: 0
}

.layout-form-input:focus.layout-form-input:-ms-input-placeholder {
    opacity: 0
}

.layout-form-input:focus.layout-form-input::-ms-input-placeholder {
    opacity: 0
}

.layout-form-input:focus.layout-form-input::placeholder {
    opacity: 0
}

.layout-form-input {
    height: 60px;
    border: 2px solid #979797;
    position: relative;
    font-size: var(--body);
    padding-top: 10px;
    padding-left: 14px;
    text-align: center
}

.layout-form-input-select {
    text-indent: 20px
}

.layout-form-input-label {
    font-size: 13px;
    padding: 4px 7px;
    position: absolute;
    top: 3px;
    width: 100%;
    border-radius: 3px;
    color: var(--primary-blue);
    opacity: 0;
    -webkit-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
    pointer-events: none
}

.layout-form-input-label-fix {
    left: 20px
}

.layout-form-input:focus {
    border: 3px solid var(--primary-blue)
}

.layout-form-input:focus+.layout-form-input-label {
    opacity: 1
}

label.prefix-phone {
    position: absolute;
    width: 40px;
    background-color: var(--primary-blue);
    font-size: var(--body-mobile);
    z-index: 99;
    height: 60px;
    padding-top: 17px;
    padding-left: 7px
}

.layout-form-errorBox {
    display: none;
    font-size: 13px;
    margin-bottom: 15px;
    color: white;
    text-align: center;
    background-color: red;
    padding: 4px 6px;
    border-radius: 2px
}

.grid-block {
    position: relative;
    padding-top: 80px
}

@media screen and (max-width: 767px) {
    .grid-block {
        padding-top: 30px
    }
}

.grid-block-title {
    font-size: 36px;
    color: #656565;
    text-align: center;
    margin-bottom: 50px
}

@media screen and (max-width: 767px) {
    .grid-block-title {
        font-size: 2.6em;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 767px) {
    .grid-block-mobile-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.grid-block-cell {
    background: lightgrey;
    min-height: 200px
}

@media screen and (max-width: 767px) {
    .grid-block-cell {
        min-height: 180px
    }
}

.grid-block-cell-grey {
    background-color: #F2F2F2
}

.grid-block-cell-orange {
    background-color: #B2170F
}

.grid-block-cell-white {
    background-color: #fff
}

.grid-block-limiter {
    margin-bottom: 30px
}

@media screen and (max-width: 767px) {
    .grid-block-limiter {
        max-width: 340px;
        margin-bottom: 30px
    }
}

.grid-block-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.grid-block-table-header {
    font-size: 2.3em;
    font-weight: 700;
    color: #B2170F;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px
}

@media screen and (max-width: 1199px) {
    .grid-block-table-header {
        font-size: 1.8em
    }
}

@media screen and (max-width: 767px) {
    .grid-block-table-header {
        font-size: 1.6em
    }
}

.grid-block-table-cell {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.9em;
    color: #4E4E4E
}

.grid-block-table-cell:nth-child(even) {
    background-color: #fff
}

@media screen and (max-width: 1199px) {
    .grid-block-table-cell {
        font-size: 1.7em
    }
}

@media screen and (max-width: 767px) {
    .grid-block-table-cell {
        font-size: 1.4em
    }
}

.grid-block-instructions {
    padding-bottom: 10px;
    color: #fff
}

.grid-block-instructions-header {
    font-size: 1.3em;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px
}

@media screen and (max-width: 1199px) {
    .grid-block-instructions-header {
        font-size: 1.2em
    }
}

@media screen and (max-width: 767px) {
    .grid-block-instructions-header {
        font-size: 1.2em
    }
}

.grid-block-instructions-text {
    font-size: 1.1em;
    text-align: justify
}

@media screen and (max-width: 1199px) {
    .grid-block-instructions-text {
        font-size: 1.1em
    }
}

@media screen and (max-width: 767px) {
    .grid-block-instructions-text {
        font-size: 1em
    }
}

.grid-block-stats {
    text-align: center
}

.grid-block-stats-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    min-height: 280px
}

.grid-block-stats-small {
    font-size: 1.8em;
    color: #B6B6B6;
    letter-spacing: 1px
}

@media screen and (max-width: 1199px) {
    .grid-block-stats-small {
        font-size: 1.4em
    }
}

@media screen and (max-width: 767px) {
    .grid-block-stats-small {
        font-size: 1.5em
    }
}

.grid-block-stats-big {
    font-size: 2.8em;
    font-weight: 700;
    color: #3766FF;
    letter-spacing: 1px
}

@media screen and (max-width: 1199px) {
    .grid-block-stats-big {
        font-size: 2.4em
    }
}

@media screen and (max-width: 767px) {
    .grid-block-stats-big {
        font-size: 2em
    }
}

.checkbox {
    font-size: 12px;
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 15px;
    width: 90%
}

.operator {
    height: 50px;
    text-align: center;
    font-size: var(--body)
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}



.footer h4 {
    font-size: 9px;
    font-weight: bold
}

.answers-op {
    background: var(--bg-option)
}

.img-success {
    width: 90%
}

.img-success-header {
    height: 200px;
    display: block;
    margin: auto
}

.total-answer {
    font-weight: bold
}

[data-step="click2sms"] .text-title {
    color: #008bbb;
    /* text-shadow: 0px 1px 4px black; */
    font-size: 26px
}
.text-title + img {
    transform: rotateX(90deg);
    animation: showIcons 0.3s 1s ease-in forwards;
}
@keyframes showIcons {
    0% {    transform: rotateX(90deg);}
    100% {    transform: rotateX(0deg);}
    
}

[data-step="click2sms"] .layout-paragraph {
    font-size: 17px
}

@media only screen and (min-width: 412px) {
    .layout-paragraph {
        font-size: var(--size-step-title-mobile)
    }
}

@media only screen and (min-width: 768px) {
    .text-title {
        font-size: var(--size-title)
    }

    label.prefix-phone {
        width: 50px;
        font-size: var(--body)
    }
}

#langSelect {
    color: blue;
    font-size: 12px;
    text-decoration: underline;
    z-index: 999
}

#resendpin {
    color: #000;
    padding-top: 15px
}

#resendpin span {
    cursor: pointer;
    text-decoration: underline
}

#confirmIntro {
    font-size: 10px;
    opacity: .7
}

.return {
    text-decoration: underline
}

.cost {
    color: #000;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 15px;
}
/*  */

/* FOOTER */
.footer {
    margin: 100px auto 0;
    width: 100%;
    max-width: 750px;
    font-size: 11px;
    line-height: 11px;
    padding: 0 10px;
    text-align: center;
    opacity: 1;
    color: #757575;
  }
  .footer__text {
    font-weight: 300;
    margin: 0;
    text-align: justify;
    text-align-last: center;
  }
  .footer__link {
    color: #757575;
    font-weight: 300;
    display: block;
    line-height: 1;
    padding: 8px 10px 5px;
  }
  .footer__link:hover {
    color: #000;
  }
  .footer__link-wrapper {
    display: flex;
    justify-content: center;
  }
  /* Footer end */
    
    @media (max-height:650px) and (orientation:landscape) {
        /* .container {
            min-height: calc(100vh - 67px);
            min-height: calc(var(--vh,100vh) - 67px);
        } */
        .footer {
            margin-top: 0;
        }
    }

    @media (orientation:landscape) and (max-width:950px) and (max-height:500px) {
        .container {
            min-height: calc(100vh - 67px);
            min-height: calc(var(--vh,100vh) - 67px);
        }
        .btn-4 {
            width: 80%;
            height: 50px;
            margin: auto;
        }
        .footer {
            font-size: 12px;
            max-width: 310px;
            margin-top: 0;
        }
        .logo-img {
            background-position: center top;
            height: 110px;
        }
        .text-title {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            font-size: 20px;
        }
        .pb-2, .py-2 {
            padding-top: 0 !important;
        }
        .p-4 {
            padding-bottom: 0 !important;
            padding-top: 10px !important;
        }
        [data-step="click2sms"] .text-title {
            font-size: 21px;
        }
        [data-step="click2sms"] .layout-paragraph {
            font-size: 15px;
        }
        .text-title br {
            display: none;
        }
        .pb-md-5, .py-md-5 {
            padding-bottom: 0 !important;
            padding-top: 8px !important;
        }
    }
    @media (orientation:landscape) and (max-width:950px) and (max-height:320px) {
        .container {
            min-height: calc(100vh - 60px);
            min-height: calc(var(--vh,100vh) - 60px);
        }
        .logo-img {
            background-position: center top;
            height: 80px;
        }
        .footer {
            font-size: 12px;
            line-height: 10px;
        }
    }
    @media (orientation:landscape) and (max-width:950px) and (max-height:288px) {
        [data-step="click2sms"] .layout-paragraph {
            font-size: 13px;
        }
    }
    @media (orientation:landscape) and (max-width:568px) and (max-height:320px) {
        .btn-4 {
            width: 50%;
            height: 45px;
            font-size: 16px;
        }
        .logo-img {
            height: 70px;
        }
    }
    @media (orientation:landscape) and (max-width:568px) and (max-height:230px) {
        .logo-img {
            height: 50px;
        }
    }
    /* PORTRAIT */
  @media screen and (max-width:500px) and (orientation: portrait) {
    .container {
        min-height: calc(100vh - 67px);
        min-height: calc(var(--vh,100vh) - 67px);
        padding-left: 0;
        padding-right: 0;
    }
    .container-fluid {
        padding-right: 12px;
        padding-left: 12px;
    }
    [data-step="click2sms"] .text-title {
        font-size: 21px;
    }
    .layout-paragraph {
        padding: 0;
    }
    .footer {
        /* position: absolute; */
        /* left: 50%; */
        /* transform: translateX(-50%); */
        /* letter-spacing: 0.5px; */
        color: #909090;
        width: 100%;
        font-size: 12px;
        line-height: 11px;
        margin-top: 0;
        padding: 0 5px;
        font-family: Arial, Helvetica, sans-serif;
    }
  }

  @media screen and (max-width:376px) and (max-height:560px) {
    .text-title {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    [data-step="click2sms"] .text-title {
        font-size: 19px;
    }
    .pb-4, .py-4 {
        padding-bottom: 0 !important;
    }
    .p-4 {
        padding-bottom: 0 !important;
    }
  }
  @media (max-width:320px) {
    .logo-img {
        background-position: center top;
        height: 190px;
    }
    [data-step="click2sms"] .text-title {
        font-size: 15px;
    }
    [data-step="click2sms"] .layout-paragraph {
        font-size: 15px;
    }
    .p-4 {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
    }
    .pb-2, .py-2 {
        padding-top: 0 !important; 
    }
    .pb-4, .py-4 {
        padding-top: 0 !important;
    }
    .btn-4 {
        font-size: 17px;
    }
    #loaderText {
        letter-spacing: -0.4px;
    }
  }




  #loader {
    display: block;
    border: 10px solid #d1d1db;
    border-top: 10px solid #FF750C;
    border-top: 10px solid #00a8dd;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

#content {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}