

/** CUSTOM UI **/


.overflow-width {
    overflow-x: scroll;
    overflow-y: auto;
}

/* language selector */
.language-selector{
    /*position: fixed;
    top: 0;
    right: 0;
    z-index: 1;*/
    text-align: right;
}

.language-selector ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-selector ul li {
    width: 120px;
    padding: 5px;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1em;
}


/** SIDEBAR BACKGROUND **/
.sidebar-overlay {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1049;
}

/** DATATABLE **/
.dataTables_length select.input-sm {
    line-height: 1.4;
}

.dataTables_paginate ul {
    justify-content: flex-end;
}

/** FLAG CONTAINER **/
.flag-container{
    position: relative;
    width: 64px;
}

.flag-container .preloader{
    position: absolute;
    top: 4px;
    left: 4px;
    display: none;
}

.flag-container .flag-box, .flag-box-label{
    border: 1px solid #333;
    width: 24px;
    height: 24px;
    display: block;
    background: #fff;
    float: left;
}

.flag-box-label{
    float: none;
    display: inline-block;
}

.flag-container .flag-sel{
    border: 1px solid #333;
    width: 38px;
    height: 24px;
    top: 0;
    right: 0;
    position: absolute;
}

/** DROPDOWN SUBMENU  **/
.dropdown-submenu .caret {
    float: right;
    margin: 8px 0px;
    transform: rotate(-90deg);
}

.menu-dropdown {
    display: none;
    list-style-type: none;
}

.menu-dropdown li {
    padding: 6px;
    background: #fff;
}

.menu-dropdown > .menu-item:hover {
    display: block;
    background: #F6F6F6;
}

.menu-dropdown > .menu-item:hover a {
    color: #000 !important;
}

.dropdown-submenu:hover .menu-dropdown {
    display: block;

}

/** DEPOSIT & WITHDRAW ALERT **/
.trans-alert {
    padding: 10px 10px 0px 10px;
    text-align: center;
}

@media (max-width: 764px) {
    .trans-alert {
        padding: 6px 8px;
    }
}

.trans-alert a {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.trans-alert a i {
    margin-right: 6px;
}

.trans-alert a div {
    margin-right: 6px;
}

@media (max-width: 764px) {
    .trans-alert a div {
        display: none;
    }
}

.trans-alert-btn {
    margin: 12px 8px; 
    height: 38px; 
    border-radius: 10px; 
    display: none;
}

@media (max-width: 764px) {
    .trans-alert-btn {
        margin: 8px 4px;
        height: 30px;
        border-radius: 5px;
    }
}

.deposit-alert {
    background-color: rgba(0,159,0,1);  
}

.withdraw-alert {
    background-color: rgba(255,0,0,0.8); 
}


/** WITHDRAW TOOLTIP **/
.wtooltip {
    position: relative;
    display: inline-block;

}

.withdrawTooltip {
    visibility: hidden;
    width: 400px;
    background-color: #252525;
    color: #fff;
    text-align: left;
    border-radius: 5px;
    padding: 12px;
    font-size: 14px;
    word-wrap: break-word;

    /* Position the tooltip */
    position: absolute;
    top: -50px;
    left: 120px;
    z-index: 1;

}

.wtooltip:hover .withdrawTooltip {
  visibility: visible;
}