
#wrapper {
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0px; 
    left: 0px; 
    bottom: 0px;
    right: 0px;
    
    z-index: 9999;
}

.contain {
    max-width: 1900px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
}

.games-list {
    margin: 10px 0 0px 0;
    border-radius: 6px;
} 

.lists_menuPanel_all {
    height: 40px;
    background-color: #09437f;
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.games-list__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

@media (min-width: 768px) {
    .games-list__wrap {
        -ms-grid-columns:(1fr)[4];
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (min-width: 1600px) {
    .games-list__wrap {
        -ms-grid-columns:(1fr)[6];
        grid-template-columns: repeat(6, 1fr)
    }
}

.game-item {
    position: relative;
    border-radius: 4px;
    transition: all .4s ease-in-out;
}

.game-item--overflow {
    overflow: hidden;
}

.game-item__block {
    position: relative;
    overflow: hidden;
}

.game-item__img {
    max-width: 100%;
    width: 100%;
    transition: transform .5s ease;
}

.game-item__labels {
    /*position: absolute;
    top: 8px;
    right: 8px;*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

.game-item__label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2px 6px;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    /*text-transform: uppercase;*/
}

.depositBtn {
    background-color: #ffba00;
    background-image: none;
    color: #000000;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto",sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
}
.header__mob-btn {
    font-size: 10px;
    padding: 6px 10px;
    min-width: auto;
    margin: 0 10px 0 0;
    color: #fff;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.2;
}

.game-item__label:last-child {
    color: goldenrod;
    margin-bottom: 0
}

.game-item__label--hot {
    background: #fd2d5e
}

.game-item__label--new {
    background: #3e3ef4
}

.game-item__label--bitcoin {
    width: 26px;
    height: 26px;
    background: url("/woocasino/resources/images/decor/label-bitcoin.svg") no-repeat center/contain
}

.game-item__label--exclusive {
    background: #3e3ef4
}

.game-item__label-live {
    position: absolute;
    top: 9px;
    left: 8px
}

.game-item__label-live::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 26px;
    height: 26px;
    background: #fd2d5e;
    border-radius: 50%
}

.game-item__label-live-txt {
    position: relative;
    background: #ce1d47;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 10px;
    text-shadow: 1px 1px 1px #585555
}

.game-item__drops {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background: url("/woocasino/resources/images/decor/label-drops-%26-wins.svg") no-repeat top/contain
}

.game-item__wazdan-drops {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: url("/woocasino/resources/images/decor/wazdan_cash_drop.png") no-repeat top/contain
}

.game-item__overlay {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    overflow: hidden;
    padding: 10px 0 0;
    background-color: rgba(44,46,51,0.7);
    opacity: 0;
    transition: all .4s ease-in-out;
}

@media (min-width: 576px) {
    .game-item__overlay {
        bottom: 0px;
    }
}

.game-item__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}


.button-primary {
    min-width: 80px;
    max-width: 100%;
    padding: 8px 15px;
    background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
    box-shadow: 0 10px 30px rgb(250 65 0 / 40%);
    border-radius: 50px;
}

.button-primary {
    font-size: 10px;
}

@media (min-width: 768px) {
    .button-primary {
        min-width: 120px;
    }
}

@media (min-width: 320px) {
    .button-primary {
        font-size: calc(10px + 4 * ((100vw - 320px) / 880));
    }
}

.mr-2, .mx-2 {
    margin-right: 0.5rem!important;
}
.ml-2, .mx-2 {
    margin-left: 0.5rem!important;
}

.mobile-slider {
    position: relative;
    margin-left: -10px;
    margin-right: -10px
}
.scrollable-navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
}



.box {
    border-radius: 0.5em;
    border: 2px solid #6c7282;
    background: #141E30;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #243B55, #141E30);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    padding: 3px;
    -webkit-box-shadow: inset 0px 2px 5px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 2px 5px 0px rgb(0 0 0 / 75%);
    text-align: center;
}




.MobileNavigation_active__2fWiV {
    position: relative;
    color: #ffba00;
    pointer-events: none;
}



.PaymentCard_mobile__3C_qt.PaymentCard_active__3kVpC {
    background: #fff;
    border: 2px solid #ffba00;
}

.MobilePaymentsList_root__xIyEj {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
}

.MobilePaymentsList_items__2j9QS {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



.MobileNavigation_root__1Ivvx {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 17px;
    border-top: 2px solid #09519e;
    border-bottom: 2px solid #09519e;
}


.RefillButton_root__1Ma-h {
    height: 20px;
    box-shadow: 1px 1px 10px rgb(255 186 0 / 43%);
    background-color: #ffba00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.RefillButton_btnWrap__1sRxH {
    flex: 0 0 auto;
}

.RefillButton_link__2RTTL {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: var(--color-main-black);
}

.Filter_paramsList__1mY8- {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    top: calc(100% - 10px);
    left: -10px;
    width: 100%;
    max-width: 1040px;
    max-height: 0;
    overflow: hidden;
    border-radius: 13px;
    opacity: 0;
    background-color: #043e7d;
    box-shadow: 0 10px rgba(0,6,13,.63);
    transition: opacity .4s;
}

@media screen and (max-width: 1024px) {
    .Filter_mobile__34RW9 .Filter_paramsList__1mY8- {
        max-width: 100%;
    }
}

#progress {
    height: 20px;
    width: 30px;
}
#spinner{
    /*background: url("img/icon/apple-icon-120x120.png") no-repeat 100% 100%;*/
    background: url(/img/cc_loading.png) no-repeat 100% 100%;
    height: 40px;
    width: 40px;
    background-size: cover;
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* margin: -76px 0 0 -60px; */
    animation: spinnerPulse 1.5s ease-in-out infinite;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    transform: translate(20px, 12px);
    margin-left: 39%;
}

.gameBox {
    width: 42vw;
    height: 100px;
    overflow: hidden;
    background: black;
}

#status{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin: 65px 0 0 -100px;
}
#status, #spinner{
    z-index: 999;
}

.flLogo777 {
    position: absolute;
    color: #906b00;
    font-family: sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    right: 35%;
    top: 36%;
    text-transform: uppercase;
    background: linear-gradient(to top, #906b00 30%, #ffffff 60% , #8a6c15 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 700px) {
    .flLogo777 {
        right: 40%;
        top: 42%;
        font-size: 5em;
    }
}
.Filter_mobile__34RW9 .Filter_paramsList__1mY8- {
    background-color: rgba(4,62,125,.9);
    box-shadow: none;
    top: 100%;
    margin: 0;
    left: 0;
    border-radius: 0;
}

.Filter_mobile__34RW9 .Filter_paramsList__1mY8-.filter_active {
    padding: 10px 5px 10px 10px;
}

.Filter_mobile__34RW9 .Filter_paramsList__1mY8- {
    background-color: rgba(4,62,125,.9);
    box-shadow: none;
    top: 100%;
    margin: 0;
    left: 0;
    border-radius: 0;
}

.Filter_paramsList__1mY8-.filter_active {
    padding: 20px;
    transition: opacity .4s;
    pointer-events: auto;
    z-index: 4;
    color: #fff;
    max-height: none;
    opacity: 1;
}


.Filter_root__184C3 {
    width: 100%;
    position: relative;
    z-index: 5;
    padding-top: 20px;
    padding-bottom: 20px;
}

.Filter_mobile__34RW9.Filter_root__184C3 {
    position: absolute;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
    background-color: rgba(4,62,125,.9);
}
.AllGamesFilter_filter__3LL5q {
    border-bottom: 2px solid #003266;
}
.Filter_resetFilters__KPOmo, .Filter_root__184C3 {
    display: flex;
    align-items: center;
}


.Filter_mobile__34RW9 .Filter_parameter__3OeLc {
    margin-left: 0;
    line-height: 40px;
}
.Filter_parameter__3OeLc {
    color: #a4bbe4;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    margin-left: 40px;
    position: relative;
}

.Filter_mobile__34RW9 .Filter_parameterButton__39ZVT {
    display: flex;
    font-size: 12px;
}
button:not(:disabled) {
    cursor: pointer;
}
.Filter_parameterButton__39ZVT {
    display: inline-flex;
    align-items: center;
    border: none;
    background: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    height: 100%;
    cursor: pointer;
}

.Filter_mobile__34RW9 .Filter_paramsListInner__3cZ46 {
    margin-bottom: 0;
}
.Filter_paramsListInner__3cZ46 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.Filter_mobile__34RW9 .Filter_parameterButton__39ZVT.filter_active:before {
    border-bottom: 2px solid #fff;
}
.Filter_mobile__34RW9 .Filter_parameterButton__39ZVT:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid transparent;
}

#loadingPanel {
    width: 100%; 
    height: 150vh; 
    position: fixed; 
    top: 0px; 
    left: 0px; 
    bottom: 0px;
    right: 0px;
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.8;
    z-index: 9999;
}

.centerSc {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -125px;
    width: 250px;
    height: 100px;
}

.Filter_mobile__34RW9 .Filter_paramsItem__1LVfV {
    list-style: none;
}

.myPage {
    margin: 8% auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    -webkit-box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 25%);
}

.myWrapper {
    padding: 10px;
    overflow: hidden;
}

.mainLayout_content {
    display: flex;
    flex-direction: column;
    padding-top: 55px;
    flex-grow: 1;
    height: 100%;
    position: relative;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.mobileNavigation_link {
    margin-right: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.mobileNavigation_link:last-child {
    margin-right: 0;
}

.mobileNavigation_active {
    position: relative;
    color: #ffba00;
    pointer-events: none;
}

.mobileNavigation_active:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    margin: auto;
    background: #ffba00;
}

button, input {
    font-weight: inherit;
    font-family: inherit;
    outline: none;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    text-align: inherit;
}

.Input_input__1Dl9g {
    color: #000;
    font-size: 14px;
    flex: 1 1 auto;
    width: 0;
    font-weight: 500;
    padding: 4px 6px;
    min-height: 32px;
    align-self: stretch;
    text-decoration: none;
}

.paymentCard_mobile .PaymentCard_icon__1V0oZ {
    max-width: 60%;
}
.PaymentCard_icon__1V0oZ {
    display: block;
    max-width: 70%;
    height: auto;
    margin: auto;
    overflow: hidden;
}
.MobilePaymentsList_card__GSYLS, .MobilePaymentsList_method__M371f {
    width: 100%;
    margin-bottom: var(--app-base-spacing);
}
.paymentCard_mobile {
    max-width: 32%;
    height: 30.3vw !important;
    background: #dde4ec;
}

.paymentCard_mobile.paymentCard_active {
    background: #fff;
    border: 2px solid #ffba00;
}

.paymentCard_active {
    pointer-events: none;
    filter: drop-shadow(0 5px 20px rgba(251,93,2,.25));
    border: 2px solid #fb4d00;
    transition: all .2s linear;
}
.paymentCard_root {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 11vw;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e8ecf1;
}

.MobilePaymentsList_card__GSYLS, .MobilePaymentsList_method__M371f {
    width: 100%;
    margin-bottom: 20px;
}

.paymentCard_mobile {
    max-width: 32%;
    height: 30.3vw;
    background: #dde4ec;
}
.MobilePaymentsList_card__GSYLS, .MobilePaymentsList_method__M371f {
    width: 100%;
    margin-bottom: 20px;
}

.PaymentForm_mobile__3pXXI, .PaymentForm_richContentBottomMobile__1UAAx, .PaymentForm_richContentTopMobile__uFLFR, .PaymentForm_substrate__vY32b, .PaymentForm_topPlankMobile__3KxCf {
    background: #fff;
    border-radius: 15px;
}
.PaymentForm_topPlankMobile__3KxCf {
    padding: 10px;
    margin-bottom: 10px;
}

.Plank_center__369NI {
    text-align: center;
}
.Plank_root__3C37O {
    width: 100%;
    margin: auto;
}

.Faq_icon__2VQjx {
    width: 20px;
    height: 20px;
}
.Icon_root__1cMWI {
    display: block;
}

.Icon_icon__2Th0s {
    fill: inherit;
    width: 100%;
    stroke-width: inherit;
    height: 100%;
}

.Link_link__2wioo {
    display: inline-block;
    margin: 5px auto;
    font-size: 14px;
    color: #094b95;
    text-decoration: none;
}


.PaymentForm_autoPayment__3PGuq {
    margin: 20px;
    padding-bottom: 36px;
    background: #e8ecf1;
    border-radius: 5px;
}

.PaymentForm_mobile__3pXXI {
    padding: 12px 10px;
    margin: auto;
}

.PaymentForm_form__1SkjG {
    position: relative;
    padding: 20px;
}


.PaymentForm_mobile__3pXXI, .PaymentForm_richContentBottomMobile__1UAAx, .PaymentForm_richContentTopMobile__uFLFR, .PaymentForm_substrate__vY32b, .PaymentForm_topPlankMobile__3KxCf {
    background: #fff;
    border-radius: 15px;
}

.LimitsAmount_root__1-x7x {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.LimitsAmount_text__3Lc3D, .LimitsAmount_value__1ahpn {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
}

.LimitsAmount_text__3Lc3D {
    color: #6b7d8e;
}

.LimitsAmount_text__3Lc3D, .LimitsAmount_value__1ahpn {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
}

.LimitsAmount_value__1ahpn {
    padding-left: 4px;
    color: #09519e;
}

.Faq_link__3AhRf, .Faq_text__2BUz7 {
    color: #09519e;
    text-decoration: none;
}

.Faq_link__3AhRf {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.Faq_text__2BUz7 {
    padding-right: 10px;
}
.PaymentForm_formRow__29nAQ {
    /*display: flex;*/
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.PaymentForm_formItem__2GTud {
    width: 100%;
}

.PaymentForm_input__1-rTy, .PaymentForm_label__2pmPb {
    flex: 0 0 auto;
}

.PaymentForm_input__1-rTy {
    width: 100%;
}

.PaymentForm_amountRow__12dCl {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.AmountTooltips_root__1TYdU {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
}

.BalanceAfterRefill_mobileRoot__qNVxR {
    padding: 20px 0 0;
}

.Input_skin-default__3DjhJ {
    border-color: #dde4ec;
}
.Input_input__wrapper__1YRy7 {
    background-image: linear-gradient(0deg,#fff 0,#fff 74%,#e8ecf1);
    position: relative;
    border-width: 2px;
    border-style: solid;
    transition: .3s ease;
}
.Input_numberInput__3boVg {
    text-align: center;
}


.Button_button__32FwK {
    color: #fff;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.2;
}
.Button_button_skin-info__2D494 {
    background-image: linear-gradient(0deg,#fa9400 0,#fab600);
    box-shadow: 0 10px 30px rgb(250 148 0 / 40%);
}
.Button_button_size-l__2JPWQ {
    font-size: 18px;
}
.paymentForm_submitBtn {
    width: 100%;
    background: linear-gradient(180deg,#fb5e01,#fb4f01);
    box-shadow: none;
    filter: drop-shadow(0 10px 20px rgba(251,93,2,.3));
}
.PaymentForm_noShadow__3wwxc, .PaymentForm_noShadow__3wwxc:hover {
    filter: unset;
}
.PaymentForm_amountStepButton__1UwNX {
    width: 99%;
    margin-left: 10px;
}
.Input_input__wrapper-inner__2JPqC {
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    width: 100%;
}

.PaymentForm_amountInput__3yHvk {
    width: 99%;
    min-width: 30%;
    border-radius: 20px;
}

.Input_currency__1SMDa {
    position: absolute;
    right: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #cbd4df;
    pointer-events: none;
}

.AmountTooltips_root__1TYdU {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
}

.amountTooltips_tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin: 8px 5px 0;
    padding: 7px;
    cursor: pointer;
    border-radius: 15px;
    background-color: #cbd4df;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #98a7ba;
}

.amountTooltips_mobileTooltip {
    height: 30px;
    margin: 8px 10px 0 0;
    background: #e8ecf1;
}

.amountTooltips_tooltip.amountTooltips_active, .amountTooltips_tooltip:hover {
    color: #9dbde1;
    background-color: #09519e;
}


.AmountTooltips_value__39DT0 {
    color: #09519e;
}

.amountTooltips_tooltip.amountTooltips_active .AmountTooltips_value__39DT0, .amountTooltips_tooltip:hover .AmountTooltips_value__39DT0 {
    color: #fff;
}

.BalanceAfterRefill_balance__3664D, .BalanceAfterRefill_text__1wyL2 {
    font-weight: 500;
}
.BalanceAfterRefill_text__1wyL2 {
    font-size: 14px;
    line-height: 16px;
    color: #6b7d8e;
}
.BalanceAfterRefill_mobileText__4dbgw {
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.BalanceAfterRefill_balance__3664D, .BalanceAfterRefill_text__1wyL2 {
    font-weight: 500;
}
.BalanceAfterRefill_balance__3664D {
    font-size: 16px;
    line-height: 19px;
    color: #fc5802;
}
.BalanceAfterRefill_mobileBalance__16dtH {
    flex-shrink: 0;
    font-size: 22px;
    line-height: 26px;
}

.PaymentCard_limit__3gqUF {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #6b7d8e;
}

.PaymentForm_formColumn__1vR4x {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: flex-start;
}

.PaymentForm_input__1-rTy {
    width: 100%;
}
.PaymentForm_input__1-rTy, .PaymentForm_formColumn__1vR4x .PaymentForm_label__2pmPb {
    flex: unset;
    width: unset;
    margin: 0;
}


.PaymentForm_formColumn__1vR4x .PaymentForm_label__2pmPb {
    word-break: break-all;
    margin-right: 10px;
}

.PaymentForm_label__2pmPb {
    display: inline-flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    color: #6b7d8e;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.PaymentForm_fixedHeight__2MDvM {
    min-height: 40px;
}

@keyframes spinnerPulse{
    0% {
        transform: scale(1);
        /*-webkit-transform: matrix3d(1, 0, 0, .0001, 0, 1, 0, .0001, 0, 0, 1, 0, 0, 0, 0, 1);*/
        /*transform: matrix3d(1, 0, 0, .0001, 0, 1, 0, .0001, 0, 0, 1, 0, 0, 0, 0, 1);*/
    }
    50% {
        transform: scale(.95);
        /*-webkit-transform: matrix3d(1, 0, .5, -.0005, 0, 1, 0, -.0005, 0, 0, 1, 0, 0, 0, 0, 1);*/
        /*transform: matrix3d(1, 0, .5, -.0005, 0, 1, 0, -.0005, 0, 0, 1, 0, 0, 0, 0, 1);*/
    }
    100% {
        transform: scale(1);
        /*-webkit-transform: matrix3d(1, 0, 0, .0001, 0, 1, 0, .0001, 0, 0, 1, 0, 0, 0, 0, 1);*/
        /*transform: matrix3d(1, 0, 0, .0001, 0, 1, 0, .0001, 0, 0, 1, 0, 0, 0, 0, 1);*/
    }
}
/*spinner animation*/
/*cc spinner animation*/
@keyframes spinnerSlides{
    from{background-position-x: 0;}
    to{background-position-x: -768px;}
}