@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
}
body{
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.container-small{
    width: 700px;
    margin: 0 auto;
}
.text-align-left{
    text-align: left !important;
}
.text-align-center{
    text-align: center !important;
}
.text-align-right{
    text-align: right !important;
}

/* Header */
header{
    width: 100%;
    position: relative;
    height: calc(100vw / 5.052631579);
    min-height: 380px;
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-size: cover;
}
header:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.7) 100%);
}
header.small-header{
    min-height: 220px;
    height: 220px;
}
header.full-header{
    background-image: none;
    z-index: 102;
}
header.full-header:after{
    height: 120px;
}

header #navigation{
    position: fixed;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.2);
    z-index: 1000;
}
header #navigation.sticky{
    background: rgb(68 26 201);
    background: linear-gradient(324deg, rgb(145 64 231) 0%, rgb(68 26 201) 100%);
    border: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,.4);
}
header .nav{
    position: relative;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .nav .left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .nav .left .logo{
    display: block;
    width: 140px;
    position: relative;
}
header .nav .left .logo .environment{
    position: absolute;
    background: orangered;
    color: white;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    right: calc(100% + 8px);
    box-shadow: 0 3px 0 rgb(0 0 0 / 80%);
}
header .nav .left .logo img{
    width: 100%;
}
header .nav .left .menu .mobile-menu-button{
    display: none;
    width: 26px;
    height: 29px;
    overflow: hidden;
    position: relative;
    margin-left: 32px;
    cursor: pointer;
}
header .nav .left .menu .mobile-menu-button span{
    display: block;
    width: 100%;
    height: 3px;
    background-color: rgba(255,255,255,.7);
    border-radius: 2px;
}
header .nav .left .menu > ul{
    margin-left: 16px;
}
header .nav .left .menu > ul > li{
    position: relative;
    display: inline-block;
    margin: 17px 0;
}
header .nav .left .menu > ul > li > a{
    color: #fff;
    display: block;
    padding: 0 12px;
    line-height: 36px;
    border-radius: 5px;
    white-space: nowrap;
    transition: background ease-in-out 300ms;
}
header .nav .left .menu > ul > li:hover > a,
header .nav .left .menu > ul > li > a:hover,
header .nav .left .menu > ul > li > a.active{
    background-color: rgba(0,0,0,.2);
}
header .nav .left .menu > ul > li.dropdown-menu:after{
    content: '';
    position: absolute;
    top: 0;
    right: 5px;
    width: 10px;
    height: 36px;
    background-image: url('../img/down_arrow.png');
    background-position: center;
    background-repeat: no-repeat;
}
header .nav .left .menu > ul > li.dropdown-menu > a{
    padding: 0 20px 0 12px;
}
header .nav .left .menu > ul > li > ul{
    display: none;
    position: absolute;
    top: auto;
    left: 0;
    background: #fff;
    padding: 16px 0;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
}
header .nav .left .menu > ul > li:hover > ul{
    display: block;
}
header .nav .left .menu > ul > li > ul > li > a{
    display: block;
    padding: 0 16px;
    line-height: 36px;
    color: #00468C;
    white-space: nowrap;
    transition: all ease-in-out 300ms;
}
header .nav .left .menu > ul > li > ul > li > a:hover{
    background: #ddd;
}

header .nav .right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .nav .right select{
    border: 0;
    color: #fff;
    background-color: rgba(0,0,0,.1);
    display: block;
    padding: 6px 24px 6px 8px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 400;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('../img/down_arrow.png');
    background-position: right 7px center;
    background-repeat: no-repeat;
}
header .nav .right select *{
    background-color: #fff;
    color: #00468C;
}
header .nav .right > ul{
    margin-left: 16px;
}
header .nav .right > ul > li{
    position: relative;
    display: inline-block;
    margin: 17px 0;
}
header .nav .right > ul > li > a{
    color: #fff;
    display: block;
    padding: 0 12px;
    line-height: 36px;
    border-radius: 5px;
    transition: background ease-in-out 300ms;
}
header .nav .right > ul > li:hover > a,
header .nav .right > ul > li > a:hover{
    background-color: rgba(0,0,0,.2);
}
header .nav .right > ul > li.dropdown-menu:after{
    content: '';
    position: absolute;
    top: 0;
    right: 5px;
    width: 10px;
    height: 36px;
    background-image: url('../img/down_arrow.png');
    background-position: center;
    background-repeat: no-repeat;
}
header .nav .right > ul > li.dropdown-menu > a{
    padding: 0 20px 0 12px;
}
header .nav .right > ul > li.link-with-label{
    margin: 10px 0;
}
header .nav .right > ul > li.link-with-label > a{
    line-height: 24px;
    padding-top: 7px;
    padding-bottom: 7px;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}
header .nav .right > ul > li.link-with-label > a span{
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    font-style: normal;
    line-height: 12px;
}
header .nav .right > ul > li > ul{
    display: none;
    position: absolute;
    top: auto;
    right: 0;
    background: #fff;
    padding: 16px 0;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
}
header .nav .right > ul > li:hover > ul{
    display: block;
}
header .nav .right > ul > li > ul > li.separator{
    width: 100%;
    height: 1px;
    padding: 0;
    background-color: #ddd;
}
header .nav .right > ul > li > ul > li > a{
    display: block;
    padding: 0 16px;
    line-height: 36px;
    color: #00468C;
    white-space: nowrap;
    transition: all ease-in-out 200ms;
}
header .nav .right > ul > li > ul > li > a:hover{
    background: #ddd;
}

header .slogan{
    color: #fff;
    max-width: 40%;
    min-width: 450px;
    height: calc(100vw / 5.052631579);
    min-height: 380px;
    display: flex;
    align-items: center;
}
header .slogan span{
    display: block;
    font-size: 20px;
    font-weight: 400;
}
header .slogan span strong{
    font-size: 20px;
    font-weight: 500;
}
header .slogan p{
    font-weight: 500;
    font-size: 36px;
}
/* Header */

main{
    min-height: calc(100vh - 630px);
}

/* Mobile App */
section#mobile-app{
    background: linear-gradient(0deg, rgba(255,255,255,0) 20%, rgb(63 0 255 / 10%) 100%);
    padding: 96px 0;
}
section#mobile-app .mobile-app{
    display: flex;
    align-items: center;
}
section#mobile-app .mobile-app .app-image{
    width: 40%;
    height: 580px;
    text-align: center;
    position: relative;
}
section#mobile-app .mobile-app .app-image img{
    width: 280px;
    height: 580px;
    position: relative;
    z-index: 10;
}
section#mobile-app .mobile-app .app-image #mobile-slider{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -140px;
    width: 280px;
    height: 580px;
    z-index: 1;
}
section#mobile-app .mobile-app .app-image #mobile-slider div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
}
section#mobile-app .mobile-app .app-image #mobile-slider div.passive{
    opacity: 0;
    -webkit-animation: fadeOut 400ms ease-in-out;
    -moz-animation: fadeOut 400ms ease-in-out;
    -o-animation: fadeOut 400ms ease-in-out;
    animation: fadeOut 400ms ease-in-out;
}
@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-o-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
section#mobile-app .mobile-app .app-image #mobile-slider div.active{
    opacity: 1;
    -webkit-animation: fadeIn 600ms ease-in-out;
    -moz-animation: fadeIn 600ms ease-in-out;
    -o-animation: fadeIn 600ms ease-in-out;
    animation: fadeIn 600ms ease-in-out;
}
section#mobile-app .mobile-app .app-image #mobile-slider div.first-active{
    opacity: 1 !important;
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-o-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
section#mobile-app .mobile-app .app-presentation{
    width: 60%;
}
section#mobile-app .mobile-app .app-presentation > h1{
    font-size: 32px;
    font-weight: 500;
    color: #00468C;
    margin-bottom: 24px;
}
section#mobile-app .mobile-app .app-presentation > p{
    max-width: 80%;
    font-weight: 400;
    color: #00468C;
    margin-bottom: 32px;
}
section#mobile-app .mobile-app .app-presentation ul{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 16px;
}
section#mobile-app .mobile-app .app-presentation ul li{
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
section#mobile-app .mobile-app .app-presentation ul li img{
    width: 36px;
    height: 36px;
}
section#mobile-app .mobile-app .app-presentation ul li p{
    margin-left: 16px;
    margin-right: 16px;
    font-weight: 400;
    color: #00468C;
}
section#mobile-app .mobile-app .stores{
    display: flex;
    align-items: center;
}
section#mobile-app .mobile-app .stores a{
    display: block;
    margin-right: 32px;
}
section#mobile-app .mobile-app .stores a img{
    width: 120px;
}
/* Mobile App */

/* Promotional Video */
section#promotional-video{
    /*background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(10,10,10,0.1) 50%, rgba(255,255,255,0) 100%);*/
}
section#promotional-video .video-container{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}
section#promotional-video .video-container .video-control{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 600ms;
    cursor: pointer;
}
section#promotional-video .video-container .video-control img{
    margin: 0 50px;
    opacity: 1;
}
section#promotional-video .video-container .video-control p{
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    opacity: 1;
    position: absolute;
    left: 0;
    bottom: 32px;
    width: 100%;
    text-align: center;
}
section#promotional-video .video-container .video-control.play{
    background-color: rgb(0,0,0,0);
}
section#promotional-video .video-container .video-control.play img,
section#promotional-video .video-container .video-control.play p{
    opacity: 0;
}
section#promotional-video .video-container video{
    display: block;
    max-width: 100%;
    position: relative;
    z-index: 1;
}
/* Promotional Video */

/* Promotional Video Two Column */
section#promotional-video-two-column .videos{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section#promotional-video-two-column .video-container{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section#promotional-video-two-column .videos .video-container:last-child{
    margin-right: 0;
    margin-left: 8px;
}
section#promotional-video-two-column .video-container .video-control{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 600ms;
    cursor: pointer;
}
section#promotional-video-two-column .video-container .video-control img{
    width: 40px;
}
section#promotional-video-two-column .video-container .video-control p{
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    opacity: 1;
    position: absolute;
    left: 0;
    bottom: 32px;
    width: 100%;
    text-align: center;
}
section#promotional-video-two-column .video-container > img{
    max-width: 100%;
    max-height: 100%;
}
/* Promotional Video Two Column */

/* Forms */
section#form{
    padding: 64px 0;
}
section#form h1{
    text-align: center;
    font-size: 32px;
    color: #00468C;
    margin-bottom: 32px;
}
.form-input{
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 16px;
    width: 100%;
}
.form-input span{
    background-color: #eee;
    min-width: 60px;
    text-align: center;
    line-height: 40px;
    display: block;
    color: #666;
}
.form-input input,
.form-input select,
.form-input textarea{
    width: 100%;
    background-color: transparent;
    border: 0;
    padding: 0 16px;
    line-height: 40px;
    font-weight: 400;
    height: 40px;
}
.form-input textarea{
    resize: vertical;
    height: auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[data-password-input="true"] {
    -webkit-text-security: disc;
    -moz-appearance: password;
}
.form-input .password-show-button:after{
    content: '';
    position: absolute;
    top: 10px;
    right: 8px;
    width: 20px;
    height: 20px;
    opacity: .3;
    background-image: url("../img/eye.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}
.form-input.showing .password-show-button:after{
    background-image: url("../img/eye_slash.png");
}
[data-browser-support="false"] .form-input .password-show-button::after{
    content: none;
}
.input-with-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.input-with-button .form-input{
    width: 100%;
}
.input-with-button button{
    position: relative;
    margin: 0 0 16px 16px;
    padding: 0 16px;
    min-width: 80px;
    height: 40px;
    line-height: 40px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #00468C;
    background: linear-gradient(140deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
    cursor: pointer;
}
.input-with-button button:hover{
    background: linear-gradient(330deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);;
}
select > *{
    font-weight: 400;
}
.form-input .radiobox{
    width: 100%;
    padding: 16px;
}
.form-input .radiobox label{
    display: block;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
}
.form-input .radiobox label:last-child{
    margin-bottom: 0;
}
input[type="radio"]{
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: sub;
}
.form-column-2{
    display: flex;
    justify-content: space-between;
}
.form-column-2 fieldset{
    width: calc(50% - 8px);
}
.form-button{
    text-align: center;
}
.form-button button{
    position: relative;
    width: 40%;
    height: 40px;
    line-height: 40px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #00468C;
    background: linear-gradient(140deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
    cursor: pointer;
}
.form-button button:hover{
    background: linear-gradient(330deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);;
}
.form-button button[disabled]{
    opacity: .5;
    cursor: default !important;
}
.form-button button[disabled]:hover{
    background: linear-gradient(140deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
}
.preloader{
    margin-left: -18px;
    display: none;
    width: 32px;
    height: 32px;
    border: 4px solid rgba(0,0,0,.5);
    border-left-color: rgba(0,0,0,0);
    border-radius: 50%;
    -webkit-animation-name: loader; 
    -webkit-animation-duration: 1.0s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: loader; 
    animation-duration: 1.0s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}
button .preloader{
    position: absolute;
    top: 4px;
    left: 50%;
    border: 4px solid rgba(255,255,255,.5);
    border-left-color: rgba(255,255,255,0);
}
@-webkit-keyframes loader {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes loader {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-o-keyframes loader {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@keyframes loader {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.loading .preloader{
    display: inline-block;
}
.loading button span{
    display: none;
}
form.loading .form-input input,
form.loading .form-input select,
form.loading .form-input textarea,
.loading button{
    pointer-events: none;
}
.loading.first-button-loading button.secondary-button .preloader,
.loading.secondary-button-loading button.first-button .preloader{
    display: none;
}
.loading.first-button-loading button.secondary-button span,
.loading.secondary-button-loading button.first-button span{
    display: inherit;
}

.expires-counter{
    margin-left: 16px;
}
.expires-counter .expires-after{
    color: orangered;
    font-size: 16px;
    font-weight: 500;
}
.expires-counter button{
    position: relative;
    border: 0;
    background: transparent;
    color: orangered;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.expires-counter button .preloader{
    border-color: red;
    border-bottom-color: transparent;
    position: relative;
    top: unset;
    left: unset;
    margin-left: 0;
}
.expires-counter button.loading span{
    display: none;
}

form fieldset{
    border: 0;
}
form fieldset.invalid-input .form-input{
    border-color: red;
}
form .error-message,
form .form-error span{
    color: red;
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: -12px;
    margin-bottom: 16px;
}
form .form-error span{
    margin-top: 16px;
    text-align: center;
}
.form-checkbox{
    margin-bottom: 16px;
}
.form-checkbox label{
    display: flex;
    align-items: center;
}
.form-checkbox label input{
    margin-right: 8px;
}
.form-checkbox label p{
    font-size: 14px;
    font-weight: 400;
}
.form-checkbox label a{
    font-size: 14px;
    font-weight: 400;
    color: orangered;
}
.form-checkbox label a:hover{
    text-decoration: underline;
}
.form-title{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #aaa;
    text-align: center;
}
form[data-step] div[class^='step-']{
    display: none;
}
form[data-step="1"] .step-1,
form[data-step="2"] .step-2,
form[data-step="3"] .step-3,
form[data-step="4"] .step-4,
form[data-step="5"] .step-5{
    display: block !important;
}
.quick-amount{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.quick-amount button {
    width: 100%;
    margin: 0 8px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 8px;
    color: #00468C;
    background: #ddd;
    cursor: pointer;
}
.quick-amount button:first-child {
    margin-left: 0;
}
.quick-amount button:last-child {
    margin-right: 0;
}
/* Forms */

/* Content */
section#content{
    padding: 64px 0;
}
section#content .content{
    word-break: break-word;
}
section#content .content h1{
    font-size: 32px !important;
    font-weight: 500 !important;
    color: #00468C !important;
    margin-bottom: 16px;
}
section#content .content h2{
    font-size: 24px !important;
    font-weight: 500 !important;
    margin-bottom: 16px;
}
section#content .content h3{
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #222 !important;
    margin-bottom: 16px;
}
section#content .content h4{
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-bottom: 16px;
}
section#content .content h5{
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 16px;
}
section#content .content h6{
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 16px;
}
section#content .content p{
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #222 !important;
    margin-bottom: 16px;
}
section#content .content blockquote{
    padding: 8px 0 8px 16px !important;
    border-left: 3px solid #ddd !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #666 !important;
    margin-bottom: 16px;
}
section#content .content img{
    max-width: 100% !important;
    margin-bottom: 16px;
}
section#content .content pre{
    white-space: normal;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #222 !important;
    font-family: monospace !important;
    margin-bottom: 16px;
}
section#content .content ul{
    padding-left: 32px;
    list-style-type: disc;
    margin-bottom: 16px;
}
section#content .content ul li{
    font-size: 15px;
    font-weight: 400;
    list-style-type: disc;
}
section#content .content .custom-card-info{
    margin-bottom: 50px;
}
section#content .content .custom-card-info img{
    border: 5px solid #ddd;
    border-radius: 8px;
}
section#content .presentation{
    display: flex;
    align-items: center;
    justify-content: center;
}
section#content .presentation .item{
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 32px 16px;
    margin: 16px;
    width: 25%;
}
section#content .presentation .item img{
    height: 80px;
    margin-bottom: 32px;
}
section#content .presentation .item h5{
    font-size: 24px;
    font-weight: 500;
    color: #00468C;
}
section#content .presentation .item p{
    font-size: 20px;
    font-weight: 500;
    color: #666;
}
/* Content */

/* News */
section#news{
    padding-top: 96px;
}
section#news h1{
    text-align: center;
    font-size: 32px;
    color: #00468C;
    margin-bottom: 32px;
}
.news-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.news-container.first-open{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-container .news{
    margin-bottom: 32px;
}
.news-container .news a{
    display: block;
}
.news-container .news:nth-child(3n+1){
    margin-right: 21px;
}
.news-container .news:nth-child(3n+2){
    margin-left: 11px;
    margin-right: 11px;
}
.news-container .news:nth-child(3n+3){
    margin-left: 21px;
}
.news-container .news .news-photo{
    position: relative;
    height: 140px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 8px;
}
.news-container .news .news-photo img{
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    transition: all ease 300ms;
}
.news-container .news:hover .news-photo img{
    transform: scale(1.3);
}
.news-container .news .news-title{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}
.news-container .news .news-date{
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
}
.news-container .news button[data-click="more"]{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border: 0;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 400;
    color: #888;
    cursor: pointer;
}
.news-container .news button[data-click="more"]:hover{
    color: #000;
}
.news-container .news button[data-click="more"] .preloader{
    position: relative;
    top: unset;
    left: unset;
    margin: 0;
    border: 4px solid rgba(89, 47, 238, 0.781);
    border-left-color: rgba(255,255,255,0);
}
.news-detail{
    display: flex;
    justify-content: flex-start;
}
.news-detail img{
    width: 30%;
    height: fit-content;
    margin-right: 32px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}
.news-detail h1.news-title{
    margin-bottom: 8px;
}
.news-detail span.news-date{
    font-size: 14px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-bottom: 32px;
}
/* News */

/* One Page */
section#one-page{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.4);
    width: 100vw;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    background-image: url('../img/banner2.jpg');
    background-position: center;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 20px;
}
section#one-page .one-page-container{
    width: 40%;
    max-width: 420px;
    min-width: 360px;
    padding: 32px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    overflow-y: auto;
    /*max-height: calc(100vh - 150px);*/
}
section#one-page .one-page-container .logo{
    text-align: center;
    padding: 32px 0;
    margin-bottom: 16px;
}
section#one-page .one-page-container .logo img{
    max-width: 50%;
}
section#one-page .one-page-container .link-content{
    text-align: center;
}
section#one-page .one-page-container .link-content p{
    font-weight: 400;
}
section#one-page .one-page-container .link-content a{
    font-weight: 400;
    color: orangered;
}
section#one-page .one-page-container .link-content a:hover{
    text-decoration: underline;
}
section#one-page .one-page-container .form-button button{
    width: 100%;
}
section#one-page .one-page-container hr{
    margin-top: 32px;
    margin-bottom: 32px;
}
/* One Page */

/* 404 */
.page-404{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: rgba(0,0,0,.4);
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
}
.page-404 h1{
    font-size: 220px;
    font-weight: 500;
    color: #fff;
}
.page-404 p{
    font-size: 42px;
    font-weight: 400;
    color: #fff;
}
/* 404 */

/* List */
section#list{
    padding: 64px 0;
}
section#list table{
    width: 100%;
    border-collapse: collapse;
}
section#list table thead{
    background: rgb(68 26 201);
    background: linear-gradient(324deg, rgb(145 64 231) 0%, rgb(68 26 201) 100%);
    position: sticky;
    top: 70px;
    z-index: 100;
}
section#list table th,
section#list table td{
    padding: 0 8px;
    line-height: 42px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
section#list table th{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
section#list table tr:nth-child(even) td{
    background-color: #fafafa;
}
section#list table button[data-click="more"]{
    position: relative;
    padding: 0 32px;
    height: 40px;
    line-height: 40px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #00468C;
    background: linear-gradient(140deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
    cursor: pointer;
}
section#list table button[data-click="more"]:hover{
    background: linear-gradient(330deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
}
section#list table a.button{
    position: relative;
    display: inline-block;
    padding: 0 32px;
    height: 28px;
    line-height: 28px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #458f00;
    transition: all ease-in-out 300ms;
}
section#list table a.button:hover{
    background: #295500;
}
section#list table a.text-link{
    font-weight: inherit;
    color: inherit;
}
section#list table#walletList tr td span.description{
    font-size: 12px;
    font-weight: 400;
    display: block;
    line-height: 12px;
    margin-top: -10px;
    margin-bottom: 8px;
    color: #666;
}
.terms-list{
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.terms-list > div{
    width: calc(100% - 160px);
}
.terms-list > div p{
    font-size: 16px;
    font-weight: 400;
}
.terms-list a{
    font-weight: 400;
    color: orangered;
    display: inline-block;
}
.terms-list a:hover{
    text-decoration: underline;
}
.terms-list.terms-list-active{
    padding: 32px;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.terms-list.terms-list-active div{
    width: auto;
}
.terms-list.terms-list-active div p{
    font-size: 22px;
}
.terms-list.terms-list-active a{
    background-color: green;
    color: #fff;
    padding: 0 16px;
    line-height: 36px;
    border-radius: 8px;
    transition: all ease-in-out 300ms;
}
.terms-list.terms-list-active a:hover{
    text-decoration: none;
    background-color: rgb(2, 100, 2);
}
/* List */

.home-section-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.home-section-title h1{
    text-align: center;
    font-size: 32px;
    color: #00468C;
}
.home-section-title a{
    font-size: 20px;
    font-weight: 500;
    color: #666;
}
.home-section-title a:hover{
    color: #00468C;
    text-decoration: underline;
}
.home-section-title div a{
    font-size: 16px;
}
.home-section-title div a i{
    font-size: 16px;
    vertical-align: initial;
}

.back-button{
    font-size: 18px !important;
    color: #666;
}
.back-button:hover{
    color: #00468C;
    text-decoration: underline;
}
.back-button i{
    font-size: 18px !important;
    vertical-align: initial;
}

/* Wallet */
section#wallet .wallet{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section#wallet .wallet > div{
    width: 32%;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    border-radius: 8px;
    overflow: hidden;
}
section#wallet .wallet .balance{
    background: #0984e3;
}
section#wallet .wallet .blocked{
    background: #d63031;
}
section#wallet .wallet .usable{
    background: #00b894;
}
section#wallet .wallet span{
    font-size: 24px;
}
/* Wallet */

/* Bakikart */
section#bakikart{
    padding: 64px 0;
}
section#bakikart .bakikarts-container{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 40px;
}
.bakikart-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(64,159,251,1) 0%, rgba(131,69,252,1) 100%);
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
    position: relative;
    width: 280px;
    height: 160px;
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
}
.bakikart-item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../img/baki_card_img_3.png');
    background-size: cover;
    background-position: center;
    opacity: .2;
    transition: all ease-in-out 300ms;
}
.bakikart-item:hover:after{
    transform: scale(1.3);
}
.bakikart-item.bakikart-item-single{
    cursor: default;
    max-width: 260px;
    margin: -50px 0px;
}
.bakikart-item img{
    position: relative;
    z-index: 10;
    max-width: 50%;
}
.bakikart-item .datas{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
    width: 100%;
}
.bakikart-item .datas i {
    font-size: 28px;
    margin-left: 16px;
    color: #fff;
}
.bakikart-item .datas .info{
    width: 100%;
}
.bakikart-item .datas .info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    word-break: break-word;
    color: #fff;
}
.bakikart-item .datas .info p:last-child {
    font-weight: 500;
    font-size: 20px;
    margin-top: 8px;
}
section#bakikart .bakikarts-container .bakikart-add-more-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f0f0f0;
    position: relative;
    width: 280px;
    height: 160px;
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
}
section#bakikart .bakikarts-container .bakikart-add-more-button a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
section#bakikart .bakikarts-container .bakikart-add-more-button a i{
    font-size: 36px;
    color: #666;
    transition: all ease-in-out 300ms;
}
section#bakikart .bakikarts-container .bakikart-add-more-button:hover a i{
    transform: scale(2);
}

section#bakikart-detail{
    padding: 96px 0;
}
section#bakikart-detail .bakikart-detail{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 16px 32px 16px 0;
    border-radius: 18px;
}
section#bakikart-detail .bakikart-detail .last-financial-activities p{
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 2px;
}
section#bakikart-detail .bakikart-detail .last-financial-activities p em{
    font-size: 14px;
    font-weight: 400;
    color: #999;
    font-style: normal;
    margin-right: 8px;
}
section#bakikart-detail .bakikart-detail > div{
    width: calc(100% - 640px);
}
section#bakikart-detail .bakikart-detail > div:first-child{
    width: 300px;
}
section#bakikart-detail .bakikart-detail > div:last-child{
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
section#bakikart-detail .bakikart-detail p{
    font-size: 18px;
    font-weight: 400;
}
section#bakikart-detail .bakikart-detail span{
    font-size: 32px;
    font-weight: 500;
}
section#bakikart-detail .bakikart-detail a{
    font-size: 20px;
    font-weight: 500;
    color: #666;
}
section#bakikart-detail .bakikart-detail a:hover{
    color: #00468C;
    text-decoration: underline;
}
section#bakikart .bakikarts-container .preloader,
section#bakikart-detail .bakikart-detail .preloader{
    position: absolute;
    top: 4px;
    left: 50%;
    margin-left: -16px;
}


section#bakikart-detail .bakikart-detail-container{
    position: relative;
    margin-bottom: 60px;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header{
    width: 100%;
    height: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px 16px 16px;
    background: rgb(68 26 201);
    background: linear-gradient(324deg, rgb(145 64 231) 0%, rgb(68 26 201) 100%);
    position: relative;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header .bakikart-item{
    margin: 132px 0 0 0;
    position: relative;
    z-index: 2;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header .button-list{
    position: relative;
    z-index: 3;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header .button-list a{
    color: #fff;
    font-size: 18px;
    margin-left: 32px;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header .button-list a i{
    vertical-align: text-bottom;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header .button-list a:hover{
    text-decoration: underline;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-header .button-list a:first-child{
    margin-left: 0;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata{
    position: relative;
    background: url('../img/baku_siluet.png') no-repeat right bottom #eee;
    border-radius: 0 0 16px 16px;
    width: calc(100% - 64px);
    min-height: 152px;
    margin: 0 32px;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata .last-financial-activities{
    position: relative;
    top: -40px;
    left: 270px;
    width: calc(100% - 270px);
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata .last-financial-activities h1{
    color: #fff;
    font-size: 16px;
    margin-bottom: 40px;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata .last-financial-activities h1 i{
    color: #fff;
    vertical-align: text-bottom;
    margin-left: 8px;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata .last-financial-activities h2{
    line-height: 140px;
    font-size: 16px;
    font-weight: 400;
    color: #555;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata .last-financial-activities p{
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 2px;
}
section#bakikart-detail .bakikart-detail-container .bakikart-detail-subdata .last-financial-activities p em{
    font-size: 14px;
    font-weight: 400;
    color: #999;
    font-style: normal;
    margin-right: 8px;
}
/* Bakikart */

/* Bank Return */
section#bank-return{
    padding: 96px 0;
}
section#bank-return .bank-return-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
section#bank-return .bank-return-container .bank-return{
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
section#bank-return .bank-return-container .bank-return h1{
    font-size: 24px;
    color: #666;
    margin-bottom: 32px;
}
section#bank-return .bank-return-container .bank-return span{
    display: block;
    font-size: 44px;
    line-height: 72px;
    width: auto;
    padding: 0 32px;
    background: #ddd;
    border-radius: 100px;
    margin-bottom: 32px;
}
section#bank-return .bank-return-container .bank-return h2,
section#bank-return .bank-return-container .bank-return h3,
section#bank-return .bank-return-container .bank-return h4{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}
section#bank-return .bank-return-container .bank-return h2{
    color: green;
}
section#bank-return .bank-return-container .bank-return h3{
    color: darkred;
}
section#bank-return .bank-return-container .bank-return h4{
    color: #00468C;
}
section#bank-return .bank-return-container .bank-return p{
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin-bottom: 32px;
}
section#bank-return .bank-return-container .bank-return a{
    color: #00468C;
    font-weight: 400;
}
section#bank-return .bank-return-container .bank-return a:hover{
    text-decoration: underline;
}
/* Bank Return */

/* Help */
section#help{
    padding: 64px 0;
}
section#help .help{

}
section#help .help ul{
    
}
section#help .help ul li {
    padding: 16px 0;
}
section#help .help ul li h2 .icon{
    width: 36px;
}
section#help .help ul li h2{
    font-size: 16px;
    font-weight: 500;
    padding: 16px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background ease-in-out 200ms;
}
section#help .help ul li h2:hover{
    background: #f5f5f5;
}
section#help .help ul li h2.rounded{
    border-radius: 12px;
}
section#help .help ul li > div{
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 0 0 12px 12px;
    display: none;
}
section#help .help ul li > div *{
    font-size: 14px;
    font-weight: 400;
}
section#help .help ul ul {
    padding-left: 32px;
    display: none;
}
section#help .help ul li.collapsed > h2:not(.rounded){
    border-radius: 12px 12px 0 0;
}
section#help .help ul li.collapsed > ul{
    display: block;
}
section#help .help ul li.collapsed > div{
    display: block;
}
section#help .help ul li h2 > i.down-icon,
section#help .help ul li h2 > i.up-icon{
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
}
section#help .help ul li h2 > i.down-icon{
    display: block;
}
section#help .help ul li h2 > i.up-icon{
    display: none;
}
section#help .help ul li.collapsed > h2 > i.down-icon{
    display: none;
}
section#help .help ul li.collapsed > h2 > i.up-icon{
    display: block;
}
/* Help */

.one-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.one-button a{
    width: auto;
    display: inline-block;
    line-height: 40px;
    padding: 0 32px;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(140deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
    color: #fff;
}
.one-button a:hover{
    background: linear-gradient(330deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
}

/* Footer */
footer{
    background-color: #111;
    padding-bottom: 120px;
}
footer .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
footer .top .logo{
    width: 140px;
}
footer .top .logo a{
    display: block;
}
footer .top .logo a img{
    width: 100%;
}
footer .top .menu ul li{
    display: inline-block;
    margin: 27px 0;
}
footer .top .menu ul li a{
    color: #fff;
    padding: 0 16px;
    line-height: 36px;
    border-radius: 8px;
    display: block;
    transition: background ease-in-out 300ms;
}
footer .top .menu ul li a:hover{
    background-color: rgba(255,255,255,.1);
}
footer .top select{
    width: 140px;
    border: 0;
    color: #fff;
    background-color: rgba(255,255,255,.1);
    display: block;
    padding: 6px 24px 6px 8px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 400;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('../img/down_arrow.png');
    background-position: right 7px center;
    background-repeat: no-repeat;
}
footer .top select *{
    background-color: #fff;
    color: #00468C;
}

footer .middle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
footer .middle .social{
    width: 300px;
}
footer .middle .social ul li{
    display: inline-block;
    margin: 0 8px;
}
footer .middle .social ul li:first-child{
    margin-left: 0;
}
footer .middle .social ul li a{
    display: block;
}
footer .middle .social ul li a img{
    width: 24px;
    height: 24px;
}
footer .middle .menu ul li{
    display: inline-block;
    margin: 27px 0;
}
footer .middle .menu ul li a{
    color: #ccc;
    font-size: 13px;
    font-weight: 400;
    padding: 0 16px;
    line-height: 24px;
    border-radius: 8px;
    display: block;
    transition: background ease-in-out 300ms;
}
footer .middle .menu ul li a:hover{
    background-color: rgba(255,255,255,.1);
}
footer .middle .stores{
    width: 300px;
}
footer .middle .stores ul{
    text-align: right;
}
footer .middle .stores ul li{
    display: inline-block;
    margin: 0 8px;
}
footer .middle .stores ul li:last-child{
    margin-right: 0;
}
footer .middle .stores ul li a{
    display: block;
}
footer .middle .stores ul li a img{
    width: 120px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 11px;
}

footer .bottom{
    height: 120px;
    padding-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .bottom .copyright{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
footer .bottom .copyright span{
    display: inline-block;
    margin-left: 16px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
}
/* Footer */

/* Modal */
.modal{
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    overflow: hidden;
}
.modal h1{
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
}
.modal p{
    font-weight: 400;
}
.modal .buttons{
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.modal .buttons a{
    position: relative;
    min-width: 110px;
    height: 40px;
    margin-left: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #00468C;
    display: block;
    border-radius: 12px;
    padding: 0 4px;
    line-height: 40px;
    text-align: center;
    transition: all ease-in-out 200ms;
}
.modal .buttons a:hover{
    background-color: #ddd;
}
.modal .buttons a.button-bold{
    font-weight: 700;
}
.modal .buttons a.button-fill{
    background-color: #00468C;
    color: #fff;
}
.modal .buttons a.button-fill:hover{
    background-color: #36008c;
    color: #fff;
}
.modal .buttons a.button-primary{
    color: rgb(0,70,140);
}
.modal .buttons a.button-primary:hover{
    background-color: #ddd;
    color: rgb(0,70,140);
}
.modal .buttons a.button-fill.button-primary{
    background: linear-gradient(140deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
    color: #fff;
}
.modal .buttons a.button-fill.button-primary:hover{
    background: linear-gradient(330deg, rgba(145,0,255,1) 0%, rgba(0,70,140,1) 100%);
    color: #fff;
}
.modal .buttons a.button-red{
    color: #d00;
}
.modal .buttons a.button-red:hover{
    background-color: #ddd;
    color: #d00;
}
.modal .buttons a.button-fill.button-red{
    background-color: #d00;
    color: #fff;
}
.modal .buttons a.button-fill.button-red:hover{
    background-color: #a00;
    color: #fff;
}
.modal .buttons a.button-green{
    color: green;
}
.modal .buttons a.button-green:hover{
    background-color: #ddd;
    color: green;
}
.modal .buttons a.button-fill.button-green{
    background-color: green;
    color: #fff;
}
.modal .buttons a.button-fill.button-green:hover{
    background-color: rgb(0, 87, 0);
    color: #fff;
}
.modal .buttons a .preloader{
    position: absolute;
    top: 4px;
    left: 50%;
    border: 4px solid rgba(255,255,255,.5);
    border-left-color: rgba(255,255,255,0);
}
.loading .buttons a span{
    display: none;
}
.modal-scrolled-content{
    max-height: 60vh;
    overflow: auto;
    padding-right: 16px;
    width: 100%;
    box-sizing: content-box;
}
.modal-scrolled-content h1{
    font-size: 18px;
    font-weight: 500;
    margin: 16px 0;
}
.modal-scrolled-content h2,
.modal-scrolled-content p,
.modal-scrolled-content strong{
    font-size: 14px;
    margin: 16px 0;
}
.modal-scrolled-content ul{
    padding-left: 16px;
}
.modal-scrolled-content ul li{
    list-style: disc;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}
.modal #receipt{
    text-align: center;
    background-color: #f5f5f5;
    padding: 16px;
    border-radius: 12px;
}
/*
.modal #receipt img{
    display: none;
}
.modal #receipt h1{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
.modal #receipt p{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}
.modal #receipt span{
    font-size: 14px;
    font-weight: 400;
    color: #888;
    display: inline-block;
    margin-bottom: 32px;
}
.modal #receipt canvas#barcode{
    max-width: 100%;
}
*/
.modal > video{
    width: 80vw;
    display: block;
    margin: -2px;
}
.modal .large-modal{
    width: 700px;
    padding: 32px;
}
.modal .small-modal{
    width: 400px;
    padding: 32px;
}
/* Modal */

/* Alert */
.alert{
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
}
.alert.alert-warning{
    background-color: bisque;
    color: brown;
}
/* Alert */

hr{
    margin-top: 64px;
    margin-bottom: 64px;
    border: 1px solid #ddd;
    border-bottom: 0;
}

/* global padding classes */
.p-0{
    padding: 0 !important;
}
.p-4{
    padding: 4px !important;
}
.p-8{
    padding: 8px !important;
}
.p-16{
    padding: 16px !important;
}
.p-32{
    padding: 32px !important;
}
.p-64{
    padding: 64px !important;
}
.py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.py-4{
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}
.py-8{
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.py-16{
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}
.py-32{
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}
.py-64{
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}
.px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.px-4{
    padding-left: 4px !important;
    padding-right: 4px !important;
}
.px-8{
    padding-left: 8px !important;
    padding-right: 8px !important;
}
.px-16{
    padding-left: 16px !important;
    padding-right: 16px !important;
}
.px-32{
    padding-left: 32px !important;
    padding-right: 32px !important;
}
.px-64{
    padding-left: 64px !important;
    padding-right: 64px !important;
}
.pt-0{
    padding-top: 0px !important;
}
.pt-4{
    padding-top: 4px !important;
}
.pt-8{
    padding-top: 8px !important;
}
.pt-16{
    padding-top: 16px !important;
}
.pt-32{
    padding-top: 32px !important;
}
.pt-64{
    padding-top: 64px !important;
}
.pb-0{
    padding-bottom: 0px !important;
}
.pb-4{
    padding-bottom: 4px !important;
}
.pb-8{
    padding-bottom: 8px !important;
}
.pb-16{
    padding-bottom: 16px !important;
}
.pb-32{
    padding-bottom: 32px !important;
}
.pb-64{
    padding-bottom: 64px !important;
}
.pl-0{
    padding-left: 0px !important;
}
.pl-4{
    padding-left: 4px !important;
}
.pl-8{
    padding-left: 8px !important;
}
.pl-16{
    padding-left: 16px !important;
}
.pl-32{
    padding-left: 32px !important;
}
.pl-64{
    padding-left: 64px !important;
}
.pr-0{
    padding-right: 0px !important;
}
.pr-4{
    padding-right: 4px !important;
}
.pr-8{
    padding-right: 8px !important;
}
.pr-16{
    padding-right: 16px !important;
}
.pr-32{
    padding-right: 32px !important;
}
.pr-64{
    padding-right: 64px !important;
}
/* global padding classes */

/* global margin classes */
.m-0{
    margin: 0 !important;
}
.m-4{
    margin: 4px !important;
}
.m-8{
    margin: 8px !important;
}
.m-16{
    margin: 16px !important;
}
.m-32{
    margin: 32px !important;
}
.m-64{
    margin: 64px !important;
}
.my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.my-4{
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}
.my-8{
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}
.my-16{
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}
.my-32{
    margin-top: 32px !important;
    margin-bottom: 32px !important;
}
.my-64{
    margin-top: 64px !important;
    margin-bottom: 64px !important;
}
.mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.mx-4{
    margin-left: 4px !important;
    margin-right: 4px !important;
}
.mx-8{
    margin-left: 8px !important;
    margin-right: 8px !important;
}
.mx-16{
    margin-left: 16px !important;
    margin-right: 16px !important;
}
.mx-32{
    margin-left: 32px !important;
    margin-right: 32px !important;
}
.mx-64{
    margin-left: 64px !important;
    margin-right: 64px !important;
}
.mt-0{
    margin-top: 0px !important;
}
.mt-4{
    margin-top: 4px !important;
}
.mt-8{
    margin-top: 8px !important;
}
.mt-16{
    margin-top: 16px !important;
}
.mt-32{
    margin-top: 32px !important;
}
.mt-64{
    margin-top: 64px !important;
}
.mb-0{
    margin-bottom: 0px !important;
}
.mb-4{
    margin-bottom: 4px !important;
}
.mb-8{
    margin-bottom: 8px !important;
}
.mb-16{
    margin-bottom: 16px !important;
}
.mb-32{
    margin-bottom: 32px !important;
}
.mb-64{
    margin-bottom: 64px !important;
}
.ml-0{
    margin-left: 0px !important;
}
.ml-4{
    margin-left: 4px !important;
}
.ml-8{
    margin-left: 8px !important;
}
.ml-16{
    margin-left: 16px !important;
}
.ml-32{
    margin-left: 32px !important;
}
.ml-64{
    margin-left: 64px !important;
}
.mr-0{
    margin-right: 0px !important;
}
.mr-4{
    margin-right: 4px !important;
}
.mr-8{
    margin-right: 8px !important;
}
.mr-16{
    margin-right: 16px !important;
}
.mr-32{
    margin-right: 32px !important;
}
.mr-64{
    margin-right: 64px !important;
}
/* global margin classes */

/* global font size classes */
.fs-12{
    font-size: 12px !important;
}
.fs-14{
    font-size: 14px !important;
}
.fs-16{
    font-size: 16px !important;
}
.fs-18{
    font-size: 18px !important;
}
.fs-20{
    font-size: 20px !important;
}
.fs-22{
    font-size: 22px !important;
}
.fs-24{
    font-size: 24px !important;
}
.fs-26{
    font-size: 26px !important;
}
.fs-28{
    font-size: 28px !important;
}
.fs-30{
    font-size: 30px !important;
}
/* global font size classes */


/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0,0,0,.1);
    border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(145 64 231);
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(68 26 201);
}

.pointer-events-none{
    pointer-events: none !important;
}

.captcha-container {
    position: relative;
    min-height: 70px;
}
.captcha-container .captcha-content{
    position: relative;
    z-index: 10;
}
.captcha-container .loading{
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.captcha-container .loading .preloader{
    margin: 0;
}


.uploader{
    position: relative;
}
.uploader input[type="file"]{
    position: absolute;
    visibility: hidden;
    opacity: 0;
}
.uploader .file-list{
    
}
.uploader .file-list .file-item{
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    margin-bottom: 16px;
}
.uploader .file-list .file-item.file-success{
    background: rgb(225, 255, 210);
    background: linear-gradient(90deg, rgba(225, 255, 210, .3) 0%, rgba(0,0,0,0) 80%);
    border: 1px solid #b6dbbc;
}
.uploader .file-list .file-item.file-error{
    background: rgb(253, 231, 221);
    background: linear-gradient(90deg, rgba(253, 231, 221, .3) 0%, rgba(0,0,0,0) 80%);
    border: 1px solid #e1c2c0;
}
.uploader .file-list .file-item.file-uploading{
    background: #eee;
    background: linear-gradient(110deg,
        rgb(183, 221, 253) 3%,rgb(228, 245, 255) 6%, rgb(183, 221, 253) 9%,
        rgb(183, 221, 253) 15%, rgb(228, 245, 255) 18%, rgb(183, 221, 253) 21%,
        rgb(183, 221, 253) 27%, rgb(228, 245, 255) 30%, rgb(183, 221, 253) 33%,
        rgb(183, 221, 253) 39%, rgb(228, 245, 255) 42%, rgb(183, 221, 253) 45%,
        rgb(183, 221, 253) 51%, rgb(228, 245, 255) 54%, rgb(183, 221, 253) 57%,
        rgb(183, 221, 253) 63%, rgb(228, 245, 255) 66%, rgb(183, 221, 253) 69%,
        rgb(183, 221, 253) 75%, rgb(228, 245, 255) 78%, rgb(183, 221, 253) 81%,
        rgb(183, 221, 253) 87%, rgb(228, 245, 255) 90%, rgb(183, 221, 253) 93%);
    background-size: 200% 100%;
    border: 1px solid #b8cddd;
    animation: 2.5s shine linear infinite;
}
@keyframes shine {
    to {
        background-position-x: -200%;
    }
}
.uploader .file-list .file-item > i{
    font-size: 22px;
}
.uploader .file-list .file-item.file-success > i{
    color: #13be2f;
}
.uploader .file-list .file-item.file-error > i{
    color: #ff3b30;
}
.uploader .file-list .file-item.file-uploading > i{
    color: #0984e3;
}
.uploader .file-list .file-item div{
    width: calc(100% - 60px);
}
.uploader .file-list .file-item div p{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 4px;
}
.uploader .file-list .file-item div span{
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: #888;
    display: block;
}
.uploader .file-list .file-item div i{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 12px;
    color: orangered;
    display: block;
    margin-top: 4px;
}
.uploader .file-list .file-item > a{
    display: block;
}
.uploader .file-list .file-item > a i{
    font-size: 22px;
    color: orangered;
}
.uploader .file-list .file-item.file-uploading > a{
    opacity: 0;
    visibility: hidden;
}
.uploader .choose-file{
    border: 1px solid #dfcfbc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(90deg, rgba(255, 203, 145, 0.17) 0%, rgba(0,0,0,0) 80%);
    margin-bottom: 16px;
    cursor: pointer;
}
.uploader .choose-file.max-file-count{
    display: none;
}
.uploader .choose-file > i{
    font-size: 22px;
    color: #ff9500;
}
.uploader .choose-file div{
    width: calc(100% - 30px);
}
.uploader .choose-file div p{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 4px;
}
.uploader .choose-file div span{
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #888;
    display: block;
}

.text-list{
    padding-left: 16px;
}
.text-list li {
    font-weight: 400;
    list-style: disc;
}

.mobile-redirect-modal{
    text-align: center;
    padding: 30px 0;
}
.mobile-redirect-modal p{
    margin: 30px 0;
    font-size: 36px;
}
.mobile-redirect-modal > div{
    margin-bottom: 30px;
}
.mobile-redirect-modal > div a{
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.mobile-redirect-modal > div img{
    max-width: 80%;
}
.mobile-redirect-modal > a{
    display: block;
    color: #dd0000;
    text-decoration: underline;
    font-size: 32px;
}
.mobile-redirect-modal > a:last-child{
    color: #888;
    text-decoration: underline;
    font-size: 24px;
    margin-top: 28px;
}