.cab-stat__labels  p:hover {
    cursor: pointer;
    color: #6D4BD7;
}
.terms{

    h2{
        margin-bottom: 15px;
    }
}
.cab-table__arbitrage{
    .cab-table__val{
        display: flex;
        flex-direction: column;
        align-items: center;

        img{
            width: 73px;
            padding: 0 6px;
            border: 1px solid #c7b9fb;
            border-radius: 12px;
            height: 30px;
        }
    }
    .cab-table__cur{
        h3 + img{
            width: 73px;
            height: 30px;
            padding: 0 6px;
            border: 1px solid #d9cfff;
            border-radius: 12px;
        }
    }
}
.m-select__drop input[disabled]+label {
    filter: grayscale(100%);
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
.tradingview-widget-container iframe{
    height: 610px!important;
}
.cab-widget {
    pointer-events: all;
    border-radius: 12px;
    overflow: hidden;
}

.loadingIndicator {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;

    h4{
        margin-bottom: 8px;
    }

    .loading-wrapper {
        height: 10px;
        width: 100%;
        margin-inline: 5%;
        background: #CFD8DC;
        border-radius: 5px;
        overflow: hidden;
    }

    .loader {
        background-color: #304FFE;
        height: 100%;
        width: 80%;
        animation: loading 2s ease infinite;
    }
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(130%);
    }
}

.to-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6D4BD7;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;

    svg {
        fill: none;
        stroke: #ffffff;
        stroke-width: 2;
        width: 32px;
        height: 32px;
        stroke-linecap: round;
        transform: rotate(-135deg);
        transform-origin: center;
    }
}
.to-top.active{
    pointer-events: inherit;
    opacity: 1;
}
.to-top:hover{
    background: rgba(0,0,0,.8);
}
.sect-4-chart__tooltip-date {
    font-size: 14px;
    font-weight: normal;
}
.m-select__drop input{
    display: none;
}
.cab-dep.empty, .cab-transaction.empty{
    justify-content: center;
    text-align: center;
    position: relative;

    svg{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        fill: none;
        stroke: #9c80f4;
        stroke-width: 2;
        width: 90px;
        min-width: 90px;
        height: 90px;
        opacity: 0.1;
    }

    .text{
        z-index: 1;
        color: #ffffff;
        text-shadow: 0 0 4px #6D4BD7;
    }
}

.cab-stat__chart-tooltip {
    text-align: center;
}

.alert{
    text-align: center;
}

.alert-success {
    background-color: #caffb4;
}

.alert-danger {
    color: #ffffff;
    background-color: #ff8585;
}

.sect-bg-3 {
    background-position: 50% 33px;
    padding-top: 120px;
}

.sign-form{
    display: flex;
    flex-wrap: wrap;
}


@media screen and (min-width: 992px){
    .sect-14 {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 991.98px){
    .header-btns{
        margin-top: 0;
        margin-bottom: 25px;
    }
    .header-top{
        border: 0;
    }
    .header-soc{
        a span{
            font-size: 8px;
        }
    }
}