.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.faster {
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

@media (print),
(prefers-reduced-motion: reduce) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

div:where(.swal2-container).swal2-backdrop-show{
    background: #8183875e!important;
}
div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 8px!important;
    box-shadow: 2px 2px 8px #00000024;
}

div:where(.swal2-container) button:where(.swal2-close) {
    font-size: 2.2em!important;
    width: 1.3em!important;
    height: 1.3em!important;
    color: #7d7c7c45!important;
}
div:where(.swal2-container) button:where(.swal2-close):hover {
    color: #69696978!important;
}
div:where(.swal2-container) button:where(.swal2-close):focus {
    outline: none;
    box-shadow: unset!important;
    border-radius: 50%;
    background: #7474740a;
}
div:where(.swal2-container) h2:where(.swal2-title) {
    padding: 1.3em 1em 0!important;
    font-size: 20px!important;
}
div:where(.swal2-container) .swal2-html-container {
    font-size: 17px!important;
}

.mdlg-btn-confirm{
    border: 0;
    border-radius: 5px;
    background: initial;
    background-color: #22afa7;
    padding: 7px;
    min-width: 100px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    margin: 3px;
    transition: all 0.15s ease-in-out;
}
.mdlg-btn-confirm:hover{
    background-color: #09989d;
}
.mdlg-btn-confirm:focus {
    outline: none;
    box-shadow: 0 0 0 2.5px #3d9b9559;
}

.mdlg-btn-cancel{
    border: 0;
    border-radius: 5px;
    background: initial;
    background-color: #c9d6d6;
    padding: 7px;
    min-width: 100px;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    margin: 3px;
    transition: all 0.15s ease-in-out;
}
.mdlg-btn-cancel:hover{
    background-color: #bac9c9;
}
.mdlg-btn-cancel:focus {
    outline: none;
    box-shadow: 0 0 0 2.5px #828d8c59;
}



.web-paymentbox{
    text-align: center;
}

.web-paymentbox .statusnok{
    font-weight: 600;
    padding: 10px 20px;
    display: inline-block;
    font-size: 1.1em;
    border-radius: 30px;
    background: #faf8f8;
    border: 1px solid #b45f7e;
    color: #c01010;
    margin-top: 20px;
}

.web-paymentbox .statusok{
    font-weight: 600;
    padding: 10px 20px;
    display: inline-block;
    font-size: 1.1em;
    border-radius: 30px;
    background: #f8faf9;
    border: 1px solid #5fb474;
    color: #08974f;
    margin-top: 20px;
}

.web-paymentbox .wallet-status{
    font-size: 0.9em;
    margin-top: 20px;
}

.web-paymentbox .desc{
    font-size: 0.9em;
    margin-top: 20px;
}

.web-paymentbox .backbtn {
    text-decoration: none;
    color: #fff;
    background: #1150c2;
    padding: 5px 20px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 20px;
}


.web-paymentbox .tracking {
    margin-top: 15px;
}

.web-paymentbox .descred{
    font-size: 0.9em;
    margin-top: 20px;
    line-height: 25px;
    color: #992e2e;
}

.web-paymentbox .appname{
    font-weight: 600;
    margin-top: 15px;
    font-size: 16px;
}


.web-paymentbox .reason {
    margin-top: 15px;
    color: #950909;
    font-size: 15px;
    font-weight: 600;
}