.history-pay-method-img{
    width: 24px;
    height: 24px;
    margin-right: .3rem;
}
.history-pay-method-img img{
    width: 100%;
}
.history-sum{
    font-size: 14px;
    font-weight: 600;
}

.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin-left: 10px;
    margin-top: 6px;
    height: 8px;
    width: 8px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}

.blob.green {
    background: rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}

.pulse-infinity{
    animation: pulse-infinity 1.5s ease-in-out infinite alternate;
}
@keyframes pulse-infinity {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(0.95);
    }
}

.online{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.message-container{
    opacity: 0;
    position: fixed;
    top: 20px;
    left: 16px;
    right: 16px;
    transform: translateY(-20px);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}
.message-container.is-visible{
    opacity: 1;
    transform: translateY(0);
}
.message-wrapper{
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.98) 0%, rgba(20, 20, 30, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all .3s ease-in-out;
    text-align: center;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.message-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.8;
}
.message-wrapper::after{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.message-wrapper:hover::after{
    opacity: 1;
}
.message-wrapper.danger{
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
    box-shadow: 
        0 10px 40px rgba(220, 38, 38, 0.4),
        0 0 0 1px rgba(252, 165, 165, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}
.message-wrapper.danger::before{
    background: linear-gradient(90deg, transparent, #fca5a5, transparent);
}
.message-wrapper.warning{
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95) 0%, rgba(217, 119, 6, 0.95) 100%);
    box-shadow: 
        0 10px 40px rgba(245, 158, 11, 0.4),
        0 0 0 1px rgba(252, 211, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}
.message-wrapper.warning::before{
    background: linear-gradient(90deg, transparent, #fcd34d, transparent);
}
.message-wrapper.info{
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    box-shadow: 
        0 10px 40px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(147, 197, 253, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}
.message-wrapper.info::before{
    background: linear-gradient(90deg, transparent, #93c5fd, transparent);
}
.message-wrapper.success{
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    box-shadow: 
        0 10px 40px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(110, 231, 183, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}
.message-wrapper.success::before{
    background: linear-gradient(90deg, transparent, #6ee7b7, transparent);
}

.bottom-navbar{
    position: relative;
    padding: .5rem 1.5rem;
    padding-bottom: 2.5rem;
    font-weight: 600;
}
.bottom-navbar a.bottom-navbar-item{
    position: relative;
    white-space: nowrap;
}
.bottom-navbar a.bottom-navbar-item .label{
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-bottom: 0;
}
.bottom-navbar a.bottom-navbar-item .image{
    position: relative;
}
.bottom-navbar a.bottom-navbar-item .image img{
    transition: width .2s ease-in-out;
}
.bottom-navbar a.bottom-navbar-item .image img{
    width: 48px;
}
.bottom-navbar a.bottom-navbar-item:hover .image img{
    opacity: .8;
}

.loader-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
}
.loader-wrapper .loader{
    height: 6px;
    background: #4d4d4d;
}
.loader-wrapper .loader.start{
    transition: width .4s ease-in;
}
.loader-wrapper .loader.end{
    transition: width .2s ease-in;
}

.languages-wrapper{
    position: relative;
}
.languages-wrapper .language-variants {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #3b3b3b;
    padding: .5rem .75rem;
    border-radius: 8px;
}

.skiptranslate, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf{
    display: none;
}