@import url('https://fonts.googleapis.com/css?family=Numans');

:root {

    --primary-color: #2D5986;
    --left-panel-size: 20%;
    --margin-right-panel: 20.5%;
    --right-panel-size: 79.5%;
    --chat-bar-size: 65px;
    --margin-top-bar: 10px;
}

.buttonToLink {
    background: none;
    border: none;
    color: gray;
}

.buttonToLink:hover {
    background: none;
    color: blue;
    text-decoration-color: blue;
    text-decoration: underline;
}

.buttonToLink:active {
    background: none;
    color: blue;
    text-decoration-color: blue;
    text-decoration: underline;
}

.buttonToLink:focus {
    background: none;
    color: blue;
    text-decoration-color: blue;
    text-decoration: underline;
}


.divVerticalCenter {
    position: absolute;
    top: 27%;
}

body {
    margin: 0;
    color: #6a6f8c;
    background: #c8c8c8;
    font: 600 16px/18px 'Open Sans', sans-serif;
}

*,
:after,
:before {
    box-sizing: border-box
}

.clearfix:after,
.clearfix:before {
    content: '';
    display: table
}

.clearfix:after {
    clear: both;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.login-wrap {
    width: 100%;
    margin: auto;
    max-width: 525px;
    min-height: 550px;
    position: relative;

    background: url(/static/drawable/mental.png) no-repeat center;

    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19);
}

.aImg {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.login-html {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 90px 70px 50px 70px;
/*
    background: #106aa5;
*/
    background: rgba(255, 255, 251, .95) ;

}

.login-html .sign-in-htm,
.login-html .sign-up-htm {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    transition: all .4s linear;
}

.login-html .sign-in,
.login-html .sign-up,
.login-form .group .check {
    display: none;
}

.login-html .tab,
.login-form .group .label,
.login-form .group .button {
    text-transform: uppercase;
}

.login-html .tab {
    font-size: 22px;
    padding-bottom: 5px;
    margin: 0 15px 10px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.login-html .sign-in:checked + .tab,
.login-html .sign-up:checked + .tab {
    color: gray;
    border-color: #1161ee;
}

.login-html .sign-in + .tab,
.login-html .sign-up + .tab {
    color: cadetblue;
    border-color: #1161ee;
}

.login-form {
    min-height: 345px;
    position: relative;
    perspective: 1020px;
    transform-style: preserve-3d;
}

.login-form .group {
    margin-bottom: 15px;
}

.login-form .group .label,
.login-form .group .input,
.login-form .group .button {
    width: 100%;
    color: black;
    display: block;
    border-color: #106aa5;
}

.login-form .group .input,
.login-form .group .button {
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .1);
}

.login-form .group input[data-type="password"] {
    text-security: circle;
    -webkit-text-security: circle;
}

.login-form .group .label {
    /*
        color: #aaa;

     */
    color: #1161ee;

    font-size: 12px;
}


.login-form .group .button {
    background: #1161ee;
    color: white;
}

.login-form .group label .icon {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, .1);
}

.login-form .group label .icon:before,
.login-form .group label .icon:after {
    content: '';
    width: 10px;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: all .2s ease-in-out 0s;
}

.login-form .group label .icon:before {
    left: 3px;
    width: 5px;
    bottom: 6px;
    transform: scale(0) rotate(0);
}

.login-form .group label .icon:after {
    top: 6px;
    right: 0;
    transform: scale(0) rotate(0);
}

.login-form .group .check:checked + label {
    color: #fff;
}

.login-form .group .check:checked + label .icon {
    background: #1161ee;
}

.login-form .group .check:checked + label .icon:before {
    transform: scale(1) rotate(45deg);
}

.login-form .group .check:checked + label .icon:after {
    transform: scale(1) rotate(-45deg);
}

.login-html .sign-in:checked + .tab + .sign-up + .tab + .login-form .sign-in-htm {
    transform: rotate(0);
}

.login-html .sign-up:checked + .tab + .login-form .sign-up-htm {
    transform: rotate(0);
}

.hr {
    height: 2px;
    margin: 60px 0 50px 0;
    background: rgba(255, 255, 255, .2);
}

.foot-lnk {
    text-align: center;
}

.uscolor0 {
    background: #e6f1d3;
}

.uscolor1 {
    background: white;
}

.pt-3-half {
    padding-top: 1.4rem;
}


.btnChat {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 80px;
    height: 40px;
    border-radius: 10px;

    background-color: rgba(0, 0, 220, 1);
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);

}

.btnChat:focus-within {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 80px;
    height: 40px;
    border-radius: 10px;

    background-color: greenyellow;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);

}


.btnDelete {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;

    background-color: red;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);

}

.btnDelete:hover {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;

    background-color: darkred;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);

}

.btnSendOrder {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    float: right;
    background-color: rgba(0, 0, 220, 1);
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.btnOrgSave {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(0, 0, 220, 1);
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.btnOrgSave:hover {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(0, 220, 0, 1);
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.btnOrgEdit {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;

    background-color: rgba(0, 0, 220, 1);
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}


.btnOrgEdit:hover {
    font-size: 16px;
    text-align: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color: yellow;
    color: black;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);

}

.btnOrgEditdisabled {
    font-size: 16px;
    color: white;
    text-align: center;

    width: 100px;
    height: 40px;
    border-radius: 10px;

    background-color: #cccccc;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);

}

.horisontal_container {
    display: flex;
}

.theadme {
    height: 80px;
    background: #106aa5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uslinebig {
    height: 300px;
    background: #F1F1F4;
    border:  var(--primary-color);
    border-style: solid;
    vertical-align: text-top;
    border-width: 0.2px;
    font-size: 15px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.uslinesmall {
    height: 100px;
    background: #F1F1F4;
    border: var(--primary-color);
    border-style: solid;
    vertical-align: text-top;
    border-width: 0.2px;
    font-size: 15px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
}

.center-screen {
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F1F1F4;
    width: 400px;
    height: 400px;
    box-shadow: inset -2px -2px 3px rgba(0, 0, 0, 0.6), inset 2px 2px 3px rgba(255, 255, 255, 0.6);
    border-radius: 2%;
}

.bottomdiv {
    position: absolute;
    bottom: 10px;
    right: 20px;

}

.textprofile {
    font-size: 18px;
    font-weight: bold;
    margin-left: 20px;
}

.textprofile1 {
    margin-left: 10px;
    font-size: 18px;
    font-weight: normal;
}

.textprofile2 {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #0062cc;
}

.visible {

}


.dropbtn {
    padding: 5px;
    cursor: pointer;
}

/* Select language */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 140px;
}

.dropbtn {
    background: url('/static/drawable/us-icon.png') no-repeat left center;
    padding-left: 25px;
    width: 40px;
}

.dropbtn::after {
    background: rgba(0, 0, 0, 0) url("https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-16.png") no-repeat scroll center center;
    content: "";
    height: 16px;
    position: absolute;
    right: 0;
    top: 7px;
    width: 16px;
}

.dropdown-content a:first-child {
    background: url('/static/drawable/us-icon.png') no-repeat left center;
}

.dropdown-content a:last-child {
    background: url('/static/drawable/ru-icon.png') no-repeat left center;
}

.dropdown-content a {
    color: black;
    padding: 2px 0 2px 25px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}


.btnLang {
    height: 25px;
    width: 25px;
    background-size: 25px 25px;
    border-radius: 50%;
    border-width: 0.5px;
    border-color: var(--primary-color);
    background-color: darkblue;
    outline: none;
}


.btnLang:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}


.cntLogout {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}


.btnLogout {
    height: 40px;
    width: 40px;
    background-size: 40px 40px;
    background-image: url('/static/drawable/logout.png');

    /*
        border-radius: 50%;
        outline: none;
    */
    background-color: darkblue;
    border: none;


    position: fixed;
    top: 10px;
    right: 5vh;

}

.titleName {
    position: absolute;
    left: 90%;
    font-weight: bold;
    font-size: 20px;
    color: black;
}


.sttd0 {
    text-align: center;
}

.sttd1 {
    font-weight: normal;
    background: #003d80;
    text-align: center;
}

.sttd2 {
    text-align: center;
    font-weight: normal;
    background: #004999;
}

.sttd3 {
    text-align: center;
    font-weight: normal;
    background: #0055b3;
}

.sttd4 {
    text-align: center;
    font-weight: normal;
    background: #0062cc;
}

.arow {
    height: 40px;
    font-weight: bold;
    text-align: center;
    position: static;
}


/*
.table td, .table th {
    width: 70px;
}

 */


.ablock {
    display: flex;
    height: 20px;
    background: #106aa5;
    color: white;
}


.arw {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}


.arw120 {
    height: 100px;
    width: 120px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}


.arwmin {
    height: 80px;
    width: 80px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.arwmax {
    height: 80px;
    width: 150px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.uswalletfix, .uswalletnofix {
    height: 55px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uswalletfix {
    color: blue;
    background: #e6f1d3;
    font-weight: bold;
}

.uswalletnofix {
    color: black;
    font-weight: normal;
    padding: 0;
    margin: 0;
}


.ustablemin {
    height: 55px;
    width: 80px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustablemax {
    height: 55px;
    width: 200px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustablenored {
    height: 55px;
    width: 150px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aheadorder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 80px;
    background: #106aa5;
}

.aroworder1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 65px;
    align-items: center;
    position: relative;
}


.detuser {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 55px;
    width: 1020px;
    margin-left: 280px;
}


.aheaduser {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 40px;
    background: #106aa5;
    width: 1020px;
}

.arouser {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 55px;
    width: 1020px;
}

.arwuser {
    height: 40px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arwusermedium {
    height: 40px;
    width: 120px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}


.arwusermax {
    height: 40px;
    width: 200px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ALL statistic */

.aheadoneall {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 40px;
    background: #106aa5;
    width: 1400px;
}

.aheadall {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 60px;
    background: #106aa5;
    width: 1400px;
}

.arw1 {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: white;
}

.arwall {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.arwminall {
    height: 80px;
    width: 80px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.arwmaxall {
    height: 80px;
    width: 150px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.ustableall {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustableminall {
    height: 55px;
    width: 80px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustablemaxall {
    height: 55px;
    width: 200px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustablemaxallred {
    height: 55px;
    width: 200px;
    font-weight: normal;

    background: red;
    color: white;


    display: flex;
    align-items: center;
    justify-content: center;
}


.ustablemediumall {
    height: 55px;
    width: 150px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustableredall {
    height: 55px;
    width: 150px;
    background: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustablenoredall {
    height: 55px;
    width: 150px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}


.arwallmedium {
    height: 100px;
    width: 110px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.arwallmin {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}


.ustableallmedium {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}


.arwall1 {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.arwall2 {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.arwall3 {
    height: 100px;
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
}

.ustableall1 {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustableall2 {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustableall3 {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arowall {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 55px;
    width: 1400px;
}

.btnEditDelete {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
    border-radius: 50%;
    background-color: crimson;
    border: none;
    outline: none;
}

.btnEditDelete:focus {
    background-color: black;
    border: yellow;
}

.btnEditDelete:focus-visible {
    background-color: green;
    border: green;
}


.btnEditDelete:hover {
    background-color: yellow;
    border: yellow;
}


.btnEditPlay {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
    border-radius: 50%;
    background-color: darkblue;
    border: none;
    outline: none;
}

.btnEditPlay:focus {
    background-color: red;
    border: red;
}

.btnEditPlay:focus-visible {
    background-color: green;
    border: green;
}


.btnEditPlay:hover {
    background-color: yellow;
    border: yellow;
}

.ustable {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustable120 {
    height: 55px;
    width: 120px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}


.usline3 {
    height: 50px;
    text-align: center;
    width: 200px;
    background: green;

}


.usline {
    height: 50px;
}

.usline1 {
    height: 50px;
    text-align: center;
}

.usline2 {
    height: 50px;
    text-align: center;
    font-size: 12px;
}


.usorder {
    height: 55px;
    width: 150px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.usorder2 {
    height: 55px;
    width: 1000px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
}

.usorder1 {
    height: 55px;
    width: 150px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.usorderwhite {
    height: 55px;
    width: 150px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}

.uslineidwallet {
    height: 55px;
    width: 150px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}


.uslineidwallet1 {
    height: 55px;
    width: 150px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}


.uslineid {
    height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    width: 120px;
}

.uslinetime {
    font-size: 11px;
    font-weight: normal;
}

.editMessage {
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F1F1F4;
    width: 200px;
    height: 200px;
    box-shadow: inset -2px -2px 3px rgba(0, 0, 0, 0.6), inset 2px 2px 3px rgba(255, 255, 255, 0.6);
    border-radius: 2%;
    text-align: left;
}

.blue-text_right {
    position: absolute;
    top: 12%;
    left: 60%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: blue;
    font-weight: bold;
}

.blue-text_left {
    position: absolute;
    top: 12%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: red;
    font-weight: bold;
}


.red-text {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: red;
    font-weight: bold;
}


@media only screen and (max-device-width: 480px) {
    nav {
        position: fixed !important;
    }
}

.chat_page {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 1400px;
    height: 600px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);

}


.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 150px;
    text-align: center;
}

.checkbox-label input[type="checkbox"] {
    vertical-align: middle;
}


.but-icon {
    width: 20px;
    height: 20px;
}

.btnWallet {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-size: 30px 30px;
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(-50%, -50%);
}

.btnWallet:hover {
    background-color: yellow;
    border: none;

}


.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    z-index: 9999;
    display: none;
}

.loader10 {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    position: fixed;
    z-index: 1000;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.ustablemedium {
    height: 55px;
    width: 150px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ustable_medium {
    height: 55px;
    width: 100px;
    font-weight: normal;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcdcdc;
}

.search-button {
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-button:hover .search-icon {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btnEditSave {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    outline: none;
}

.btnEditSave:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}



.btnEditSave1 {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    outline: none;
}

.btnEditSave1:hover {
    transform: scale(1.2);
}

.header-ref {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-list {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.bonus-icon {
    width: 30px;
    height: 30px;
}


.btnBonus {
    height: 46px;
    width: 46px;
    background-size: 46px 46px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    outline: none;
}

.btnBonus:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.date-input {
    margin-bottom: 10px;
}


.menu-item-container5 {
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
}


@media only screen and (max-device-width: 480px) {
    .menu-item-container5 {
        width: 50px;
        height: 30px;

    }
}


.btnClose {
    height: 20px;
    width: 20px;
    background-size: 20px 20px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    outline: none;
}

.btnClose:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.round-button {
    background-color: green;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid green;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-device-width: 480px) {
    .round-button {
        visibility: hidden;
    }
}


.round-button:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

#tableaids tbody {
    margin-top: 150px;
    display: block;
    overflow-y: auto;
}


#tablereferal tbody {
    margin-top: 150px;
    display: block;
    overflow-y: auto;
}

.invite-header {
    display: flex;
    align-items: center;
    position:fixed;
    top: 100px;
    left: 5px;
    height: 80px;
    color: #106aa5;


}

.invites_selector {
    margin-left: auto;
    font-size: 20px;
    width: 250px;
    border: 1px solid #106aa5;
    color: #106aa5;
}


.uslineidwallet2 {
    height: 55px;
    width: 150px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
    border-radius: 5px;
}

.uslineidwallet2:hover {
    background-color: #0056b3;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}


.uslineidwallet3 {
    height: 62px;
    width: 150px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    border-radius: 5px;
}

.uslineidwallet3:hover {
    background-color: #0056b3;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}




.uslinetime2 {
    font-size: 11px;
    font-weight: normal;
    display: block;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.popup-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup button {
    margin-top: 10px;
    align-self: flex-end;
}


.popup1 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.left-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    margin-top: 0;
}


.left-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}



.right-rectangle {
    width: 20px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 0;
}

.right-rectangle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.popup-header {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: white;
    border-bottom: 1px solid #ccc;
}



.icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.left-circle1 {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: red;
}

.right-rectangle1 {
    display: inline-block;
    width: 20px;
    height: 10px;
    border-radius: 2px;
    margin-right: 10px;
    background-color: blue;
}


.count-text {
    font-size: 12px;
    color: #ffcc00;
}

.count-text:hover {
    font-size: 16px;
}



.lang-container {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: #b7c9e2;
    border-radius: 8px;
}

@media (min-width: 992px) {
    .lang-container {
        width: 50px;
    }
}

.lang-container.active-lang {
    background-color: var(--primary-color);
    color: #2D5986;
    border-radius: 8px;
}

.lang-iconcircle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}


.lang-icon {
    width: 30px;
    height: 30px;
}

.lang-container:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}


.lang-text {
    font-size: 12px;
    color: white;
}

@media (min-width: 992px) {
    .lang-text {
        font-size: 12px;
    }
}
