/* OVERALL DESIGN */
.modal-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
}
.modal-layer .backdrop {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: rgb(128 128 128 / 50%);
    }
.modal-layer .modal.sm {
        position: absolute;
        width: 400px;
        height: 360px;
        background: rgba(21, 32, 43, 1);
        left: calc(50% - 200px);
        top: calc(50% - 180px);
        z-index: 2;
    }
.modal-layer .modal.lg {
        position: absolute;
        width: 800px;
        height: 600px;
        background: rgba(21, 32, 43, 1);
        z-index: 3;
        border-radius: 15px;
        left: calc(50% - 400px);
        top: calc(50% - 300px);
    }
.modal-layer .modal.alert {
        position: absolute;
        width: 400px;
        height: 210px;
        background: rgba(21, 32, 43, 1);
        left: calc(50% - 200px);
        top: calc(50% - 105px);
        z-index: 2;
    }
.modal-layer .modal .modal-header {
            float: left;
            width: 100%;
            height: 50px;
            line-height: 50px;
        }
.modal-layer .modal .modal-header .title {
                float: left;
                color: white;
                font-size: 18px;
                font-weight: 600;
                margin-left: 20px;
            }
.modal-layer .modal .modal-header .add-btn {
                float: right;
                background: #222426;
                padding-left: 15px;
                height: 30px;
                padding-right: 15px;
                line-height: 30px;
                margin-top: 10px;
                margin-right: 20px;
                border-radius: 10px;
                color: white;
                font-size: 12px;
                font-weight: 600;
                border: 1px solid #414141;
            }
.modal-layer .modal .modal-title {
            float: left;
            width: calc(100% - 40px);
            height: 50px;
            line-height: 50px;
            font-size: 14px;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            padding-left: 20px;
            padding-right: 20px;
            text-align: center;
        }
.modal-layer .modal .modal-title .exit-btn {
                position: absolute;
                width: 40px;
                height: 40px;
                background-size: 16px 16px;
                right: 20px;
                top: 5px;
                transition:all 0.5s ease;
            }
.modal-layer .modal .modal-title .exit-btn:hover { opacity:0.5; }
.modal-layer .modal .modal-btn {
            position: absolute;
            bottom: 20px;
            left: 20px;
            width: calc(100% - 40px);
            text-align: center;
            float: left;
            height: 40px;
            line-height: 40px;
            text-align: center;
            margin-top: 30px;
            color: white;
            font-size: 12px;
            font-weight: bold;
            border-radius: 5px;
            text-transform: uppercase;
            background: #FFB520;
            /* box-shadow: 0px 0px 5px 2px rgb(255 181 32 / 50%); */
            transition: all 0.5s ease;
            cursor: pointer;
        }
.modal-layer .modal .modal-btn:hover { background:#b77e0c; }
.modal-layer .modal .modal-content {
        float: left;
        width: 100%;
        height: calc(100% - 50px);
    }
.modal-layer .modal .modal-content.has-sidebar {
        width:calc(100% - 280px);
    }
.modal-layer .modal .modal-content .category-title {
            float: left;
            padding-left: 10px;
            padding-top: 20px;
            color: white;
            width: calc(100% - 20px);
            font-weight: 600;
            font-size: 20px;
        }
.modal-layer .modal .modal-content .category-hint {
            float: left;
            width: calc(100% - 20px);
            margin-left: 10px;
            margin-top: 10px;
            color: #878787;
            font-size: 12px;
            font-weight: 500;
        }
.modal-layer .modal .modal-content .user-list {
            float: left;
            width: calc(100% - 20px);
            margin-left: 10px;
            margin-top: 20px;
            height: calc(100% - 50px);
            overflow-y: auto;
        }
.modal-layer .modal .modal-content .user-list > div {
                float: left;
                width: 100%;
            }
.modal-layer .modal .modal-content .user-list > div:not(:first-child) {
                margin-top:15px;
            }
.modal-layer .modal .modal-content .user-list > div .avatar {
                    float: left;
                    width: 40px;
                    height: 40px;
                    background-image:url('avatar.jpg');
                    background-size:cover;
                    background-position: center;
                    background-repeat:no-repeat;
                    border-radius: 100%;
                    border:2px solid #51555b;
                    box-sizing: border-box;
                }
.modal-layer .modal .modal-content .user-list > div .info {
                    float: left;
                    width: calc(100% - 250px);
                    margin-left: 10px;
                    margin-top: 3px;
                }
.modal-layer .modal .modal-content .user-list > div .info .name {
                        float: left;
                        color: white;
                        font-size: 14px;
                        font-weight: 500;
                    }
.modal-layer .modal .modal-content .user-list > div .info .rank {
                        float: left;
                        width: 100%;
                        font-size: 12px;
                        font-weight: 500;
                        color:#a3a3a3;
                    }
.modal-layer .modal .modal-content .user-list > div .action-btn {
                    float: right;
                    padding-left: 10px;
                    padding-right: 10px;
                    font-size: 10px;
                    color: white;
                    font-weight: 600;
                    border: 1px solid #51555b;
                    background: #222222;
                    padding-top: 5px;
                    padding-bottom: 5px;
                    border-radius: 5px;
                    margin-top: 7px;
                    text-transform: uppercase;
                    margin-right:10px;
                }
.modal-layer .modal .modal-content .user-list > div .action-btn.negative {
                    background:#d95f5f;
                }
.modal-layer .modal .modal-content table {
            width: calc(100% - 40px);
            margin-left: 20px;
        }
.modal-layer .modal .modal-content table th {
                height: 30px;
                line-height: 30px;
                color: white;
                font-size: 12px;
                text-align: left;
                border-bottom: 1px solid #2c2c2c;
            }
.modal-layer .modal .modal-content table td {
                height: 30px;
                line-height: 30px;
                color: #acacac;
                font-size: 12px;
                border-bottom: 1px solid #2c2c2c;
            }
html, body {
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
    overflow:hidden;
}
* {
    font-family: 'Montserrat', sans-serif !important;
    -webkit-user-select:none;
       -moz-user-select:none;
        -ms-user-select:none;
            user-select:none;
    outline:none;
}
.main-holder { float:left;width:100%;height:100%; }
.header {
        float:left;
        height:50px;
        /* background:#2B293B; */
        background:#15202b !important;
        width:100%;
    }
.header .settings-icon {
            float: right;
            width: 40px;
            height: 40px;
            margin-right: 10px;
            margin-top: 5px;
            background-size: 24px;
            background-position: center;
            background-repeat: no-repeat;
            background-image:url('settings-icon.svg');
        }
.header .fast-switch-btn {
            float: left;
            width: 30px;
            height: 30px;
            background: rgb(84 84 84 / 50%);
            margin-left: 10px;
            margin-top: 10px;
            border-radius: 5px;
            border: 1px solid rgba(149, 148, 157, 0.3);
            transition:all 0.3s ease;
            cursor:pointer;
        }
.header .fast-switch-btn:hover { background:rgb(121 118 118 / 50%); }
.header .fast-switch-btn .icon {
                float: left;
                width: 15px;
                height: 15px;
                margin-left: 7.5px;
                margin-top: 7.5px;
            }
.header .top-menu {
            padding: 0px;
            margin: 0px;
            list-style: none;
            float: left;
            margin-left: calc(50% - 400px);
        }
.header .top-menu li {
                float: left;
                height: 50px;
                line-height: 50px;
                padding-left: 20px;
                padding-right: 20px;
                cursor:pointer;
            }
.header .top-menu li .icon {
                    float: left;
                    width: 16px;
                    height: 16px;
                    margin-top: 16px;
                    transition:all 0.3s ease;
                }
.header .top-menu li span {
                    float: left;
                    margin-left: 5px;
                    color: #95949d;
                    text-transform: uppercase;
                    font-size: 12px;
                    font-weight: bold;
                    transition:all 0.3s ease;
                }
.header .top-menu li.active span, .header .top-menu li:hover span {
                    /* color:#825DD0; */
                    /* text-shadow: 0 0 5px rgba(130, 93, 208, 0.3); */
                    color:#FFB520;
                    /* text-shadow: 0 0 5px #FFB520; */
                }
.header .select-holder {
            float:left;
            position:relative;
            width: 200px;
            margin-left: 20px;
            margin-top: 8px;
        }
.input-row .select-holder {
            float: left;
            position: relative;
        }
.chat-line .select-holder, .input-row .select-holder { margin-top:0px !important; margin-left:0px !important; }
.header .select-server, .chat-line .select-player, .input-row select {
                color: white;
                float: left;
                height: 34px;
                border: 1px solid rgba(149, 148, 157, 0.3);
                width: 200px;
                outline: none;
                border-radius: 5px;
                padding-left: 10px;
                padding-right: 10px;
                font-size: 10px;
                text-transform: uppercase;
                font-weight: 500;
                /* background: #292839; */
                background:#2b3138;
                -moz-appearance: none;
                -webkit-appearance: none;
            }
.input-row select {
                width: 100%;
                height: 38px;
                border-top-left-radius: 0px;
                border-bottom-left-radius: 0px;
            }
.chat-line .select-player {
                height: 40px !important;
                border: 1px solid rgba(149, 148, 157, 0.3);
                width: 200px;
                outline: none;
                padding-left: 10px;
                padding-right: 10px;
                font-size: 10;
                text-transform: uppercase;
                font-weight: 500;
                /* background: #292839; */
                background:#2b3138;
                -moz-appearance: none;
                -webkit-appearance: none;
                border-left: 0px !important;
                border-radius: 0px !important;
                margin-top: 1px !important;
            }
.header .select-server:required:invalid { color: #cfcfcf; }
.header .select-holder::before, .chat-line .select-holder::before , .input-row .select-holder::before{
                    pointer-events:none;
                    content: "";
                    position: absolute;
                    right: 0px;
                    width: 34px;
                    height: 34px;
                    background-size: 12px;
                    background-position: center;
                    background-image: url(/assets/select-arrow-down.svg);
                    z-index: 1;
                    background-repeat: no-repeat;
                }
.header .select-server option, .chat-line .select-player option, .input-row .select-holder option {
                    background:#2B293B;
                    color: #fff;
                    border:0px;
                    height:30px;
                    line-height:30px;
                }
.header .user {
            position:relative;
            float:right;
            margin-right:20px;
            height:50px;
            line-height:50px;
        }
.header .user .avatar {
                float:left;
                width:30px;
                height:30px;
                border-radius:100%;
                margin-top:10px;
                /* background-image:url(/assets/avatar.jpeg); */
                background-position:center;
                background-size:cover;
                background-repeat:no-repeat;
                line-height:32px;
                text-align:center;
                background:#464646;
                color:white;
            }
.header .user span {
                float: left;
                margin-left: 15px;
                font-size: 10px;
                color: #95949D;
                font-weight: 600;
                text-transform: uppercase;
                transition:all 0.3s ease;
            }
.header .user:hover span { color:white; }
.header .user .arrow {
                float: left;
                margin-left: 5px;
                height: 12px;
                width: 12px;
                margin-top: 18px;
                background-image: url(/assets/arrow-down-icon.svg);
                background-position: center;
                background-size: 12px;
                background-repeat: no-repeat;
                transition:all 0.3s ease;
            }
.header .user:hover .arrow { background-image:url(/assets/arrow-down-active-icon.svg); }
.subheader {
        float: left;
        width: 100%;
        height: 80px;
        background: #1b2733;
        border-top: 1px solid rgba(169, 169, 169, 0.2);
    }
.subheader .hint {
            float: left;
            width: 100%;
            text-align: center;
            line-height: 60px;
            height: 60px;
            color: rgba(149, 148, 157, 0.5);
            text-transform: uppercase;
            font-weight: 500;
            font-size: 12px;
        }
.subheader .menu {
            float: left;
            height: 50px;
            line-height: 50px;
            padding-left: 20px;
            padding-right: 20px;
            cursor: pointer;
            list-style: none;
            padding: 0px;
            margin: 0px;
            margin-left:calc(50% - 110px);
        }
.subheader .menu li {
                float: left;
                height: 100%;
                width: 80px;
            }
.subheader .menu li .icon-holder {
                    float: left;
                    width: 40px;
                    height: 40px;
                    background: #111921;
                    margin-left: calc(50% - 20px);
                    margin-top: 12px;
                }
.subheader .menu li .icon-holder .icon {
                        float: left;
                        width: 20px;
                        height: 20px;
                        margin-left: 10px;
                        margin-top: 10px;
                        transition:all 0.3s ease;
                    }
.subheader .menu li span {
                    float: left;
                    width: 100%;
                    font-size: 10px;
                    color: #95949d;
                    height: 15px;
                    line-height: 15px;
                    text-align: center;
                    margin-top: 5px;
                    font-weight: 500;
                    text-transform: uppercase;
                    transition:all 0.3s ease;
                }
.subheader .menu li.active span, .subheader .menu li:hover span {
                        color:#ffb520;
                    }
.content {
        float:left;
        width:100%;
        height:calc(100% - 131px);
        /* background:#262433; */
        background: #121c26;
    }
.content.overflow { overflow:auto; }
.content.has-no-subheader{
        height:calc(100% - 50px) !important;
    }
.content .heading {
            float: left;
            width: calc(100% - 40px);
            margin-left: 20px;
            color: white;
            font-size: 24px;
            text-transform: uppercase;
            font-weight: 700;
            height: 50px;
            line-height: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
        }
.content .smaller-heading {
            margin-top: 0px;
            margin-bottom: 0px;
            width: calc(100% - 40px);
            height: 40px;
            line-height: 40px;
            text-align: left;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            padding-left: 20px;
            padding-right: 20px;
            /* background: #2b293b; */
            margin-left: 0px;
            background:rgb(23, 29, 38);
            /* background:rgba(21, 32, 43, 80%); */
            /* background:rgb(0 0 0 / 40%); */
            float:left;
            border-bottom: 1px solid #333333;
            border-top: 1px solid #333333;
        }
.content .heading.short {
            width: 1200px;
            margin-left: calc(50% - 600px);
        }
.content .back-btn {
            float:left;
            margin-left: calc(50% - 500px);
            padding-left:10px;
            padding-right:10px;
            margin-top:30px;
            margin-bottom: 30px;
            cursor:pointer;
        }
.content .back-btn .back-arrow {
                float:left;
                width:30px;
                height:20px;
                background-size:cover;
                background-repeat:no-repeat;
                background-position:center;
                transition:all 0.5s ease;
                margin-top:10px;
            }
.content .back-btn span {
                float:left;
                margin-left:10px;
                height:40px;
                line-height:40px;
                font-size:12px;
                text-transform: uppercase;
                color:#95949d;
                font-weight:bold;
                transition:all 0.5s ease;
            }
.content .back-btn:hover span { color:white; }
.content .server-card {
            float: left;
            width: calc(33.3% - 26.5px);
            height: 200px;
            background: url(/assets/bg1.jpg);
            margin-left: 20px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
            border-radius: 7px;
        }
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 1440px) and (min-width:960px) {
            .content .server-card { width:calc(50% - 28.5px) !important; }
            .content .server-card:nth-child(n + 4) { margin-top:20px; }
        }
@media screen and (max-width: 960px){
            .content .server-card { width:calc(100% - 40px) !important; }
            .content .server-card:nth-child(n + 3) { margin-top:20px; }
        }
.content .server-card .overlay {
                position: absolute;
                top: 0px;
                left: 0px;
                width: 100%;
                height: 100%;
                border-radius: 5px;
                overflow: hidden;
                /* background: linear-gradient(to bottom right, #2B293B, #2b293bd6); */
                /* background: linear-gradient(to bottom right, #0b1521, rgb(11 21 33 / 80%));
                box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.23) */
                background:linear-gradient(to bottom right, #393c3e, rgb(21, 32, 43, 0.6));
                box-shadow:0px 0px 1px 1px rgb(74, 78, 82);
            }
.content .server-card .overlay .hdr {
                    float: left;
                    width: calc(100% - 40px);
                    color: white;
                    font-size: 16px;
                    font-weight: 600;
                    text-transform: uppercase;
                    padding-left: 20px;
                    padding-right: 20px;
                    margin-top:5px;
                }
.content .server-card .overlay .hdr .info {
                        float:left;
                        /* width:calc(100% - 70px); */
                        width:calc(100% - 20px);
                    }
.content .server-card .overlay .hdr .title {
                            float: left;
                            width: calc(100%);
                            margin-top: 10px;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }
.content .server-card .overlay .hdr .game {
                            font-size: 12px;
                            margin-top: 5px;
                            float: left;
                            color: #95949d;
                        }
.content .server-card .overlay .hdr .action-icon {
                        float:right;
                        width:14px;
                        height:14px;
                        background-size:cover;
                        background-repeat:no-repeat;
                        background-position:center;
                        margin-top: 13px;
                    }
.content .server-card .overlay .hdr .action-icon.play { background-image:url(/assets/play-icon.svg); }
.content .server-card .overlay .hdr .action-icon.stop { background-image:url(/assets/stop-icon.svg); }
.content .server-card .overlay .hdr .action-icon.restart { background-image:url(/assets/refresh-icon.svg); }
.content .server-card .overlay .cnt {
                    float: left;
                    width: calc(100% - 40px);
                    padding: 20px;
                    height: 110px;
                }
.content .server-card .overlay .cnt .info-row {
                        float: left;
                        width: calc(33.3% - 20px);
                        height: 30px;
                        line-height: 30px;
                        /* background: #292839; */
                        background:#2b3138;
                        box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.15);
                    }
.content .server-card .overlay .cnt .info-row:not(:first-child) {
                        margin-left:30px;
                    }
.content .server-card .overlay .cnt .btn {
                        float: left;
                        height: 40px;
                        line-height: 40px;
                        width: 120px;
                        text-align: center;
                        /* background: #825DD0; */
                        margin-top: 30px;
                        color: white;
                        font-size: 12px;
                        font-weight: bold;
                        border-radius: 5px;
                        text-transform: uppercase;
                        /* box-shadow: 0px 0px 5px 2px rgba(130, 93, 208, 0.5); */
                        transition:all 0.5s ease;
                        cursor:pointer;
                        background: #FFB520;
                        /* box-shadow: 0px 0px 5px 2px rgb(255 181 32 / 50%) */
                    }
.content .server-card .overlay .cnt .btn:not(.disabled):hover { 
                        /* background:#7348d0;   */
                        background:#b77e0c;
                    }
.content .server-card .overlay .cnt .btn.disabled { opacity:0.4; cursor:not-allowed; }
.content .server-card .overlay .cnt .btn .icon {
                            float: left;
                            width: 20px;
                            height: 20px;
                            margin-left: 10px;
                            margin-top: 10px;
                        }
.content .server-card .overlay .cnt .players {
                        float: right;
                        height: 40px;
                        /* background: #232231; */
                        background: #2b3138;
                        margin-top: 30px;
                        line-height: 40px;
                        color: white;
                        width: 80px;
                        text-align: center;
                        font-weight: 800;
                        letter-spacing: 0.5px;
                        box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.15)
                    }
.content .server-card .overlay .cnt .players-text {
                        float: right;
                        margin-top: 30px;
                        height: 40px;
                        line-height: 40px;
                        margin-right: 10px;
                        color: white;
                        font-weight: 500;
                        font-size: 14px;
                        color: #ffffff;
                    }
.content .table-wrapper {
        float: left;
        width: 100%;
        height: calc(100% - 270px);
        background: #1b2733;
        border-radius:7px;
    }
.content .table-wrapper.padded {
            width: calc(100% - 40px);
            margin-left: 20px;
        }
.content .table-wrapper caption {
            width: calc(100% - 40px);
            height: 40px;
            line-height: 40px;
            text-align: left;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            padding-left: 20px;
            padding-right: 20px;
            background:rgb(23, 29, 38);
            border-bottom: 1px solid #333333;
            border-top: 1px solid #333333;
        }
.content .table-wrapper caption .right {
                float: right;
                color: #b9b9b9;
                font-size: 10px;
            }
.content .search-row {
            float:left;
            width:100%;
        }
.content .search-row .select-holder {
                position:relative;
                float:left;
                width:200px;
            }
.content .search-row .select-holder::before {
                    pointer-events:none;
                    content: "";
                    position: absolute;
                    right: 0px;
                    width: 34px;
                    height: 34px;
                    background-size: 12px;
                    background-position: center;
                    background-image: url(/assets/select-arrow-down.svg);
                    z-index: 1;
                    background-repeat: no-repeat;
                }
.content .search-row .select-holder option {
                    background:#2B293B;
                    color: #fff;
                    border:0px;
                    height:30px;
                    line-height:30px;
                }
.content .search-row .select-holder select, .content .search-row input {
                    color: white;
                    float: left;
                    height: 34px;
                    border: 1px solid rgba(149, 148, 157, 0.3);
                    width: 200px;
                    outline: none;
                    padding-left: 10px;
                    padding-right: 10px;
                    font-size: 10;
                    text-transform: uppercase;
                    font-weight: 500;
                    /* background: #292839; */
                    background:#2b3138;
                    -moz-appearance: none;
                    -webkit-appearance: none;
                    margin-left: 1px;
                    margin-top: 1px;  
                }
.content .search-row input:not(:first-child) { border-left:0px;width:calc(100% - 400px) !important; }
.content .search-row .btn {
                    float: left;
                    height: 34px;
                    line-height: 34px;
                    width: 198px;
                    text-align: center;
                    background: #FFB520;
                    margin-top:1px;
                    color: white;
                    font-size: 12px;
                    font-weight: bold;
                    text-transform: uppercase;
                    transition:all 0.3s ease;
                    cursor:pointer;
                }
.content .search-row .btn:hover { background:#b77e0c; }
.content .table-wrapper .scrollable {
            float: left;
            width: 100%;
            height: calc(100% - 80px);
            overflow: auto;
        }
.content .table-wrapper table {
            float: left;
            width: 100%;
            border-radius:7px;
        }
.content .table-wrapper table thead {
                color: white;
                text-align: center;
                font-size: 12px;
                height: 40px;
                line-height: 40px;
                /* background: rgba(21, 32, 43, 0.7); */
                background:rgb(23, 29, 38);
                border-top-left-radius: 7px;
                border-bottom-left-radius: 7px;
            }
.content .table-wrapper table th { position:relative; }
.content .table-wrapper table th .sort {
                        width: 10px;
                        height: 10px;
                        position: absolute;
                        right: 10px;
                        top: 14px;
                    }
.content .table-wrapper table tbody tr {
                height: 40px;
                line-height: 40px;
                color: white;
                font-size: 12px;
                text-align: center;
                cursor:default;
                transition:all 0.3s ease;
                background:#2b3138;
            }
.content .table-wrapper table tbody tr:hover { 
                /* background: rgba(130, 93, 208, 0.2) !important;  */
                background:rgba(26, 34, 46, 0.7) !important;
            }
.content .table-wrapper table tbody tr:nth-child(even) {
                background: rgb(37, 42, 48)
            }
.table-wrapper table .action-btn {
                float: left;
                height: 24px;
                width: 24px;
                /* background: #825dd0; */
                background:#FFB520;
                border-radius: 3px;
                cursor:pointer;
                transition:all 0.3s ease;
            }
.table-wrapper table .action-btn.disabled {     
                    opacity: 0.4;
                    cursor: not-allowed; 
                }
.table-wrapper table .action-btn:first-child { margin-left: calc(50% - 46px); }
.table-wrapper table .action-btn:hover {
                /* background:#7740ea; */
                background:#b77e0c;
            }
.table-wrapper table .action-btn:not(:first-child) { margin-left:10px; }
.table-wrapper table .action-btn .icon {
                    float: left;
                    width: 14px;
                    height: 14px;
                    margin-left: 5px;
                    margin-top: 5px;
                }
.table-wrapper table .action-label {
                float:left;
                height:20px;
                line-height:22px;
                background: #825dd0;
                padding-left:10px;
                padding-right:10px;
                border-radius:5px;
                text-transform: uppercase;
                font-size:10px;
                font-weight:bold;
                transition:all 0.5s ease;
            }
.table-wrapper table .action-label:hover { background:#7740ea; }
.content .profile-holder {
        float:left;
        width:1000px;
        margin-left:calc(50% - 500px);
    }
.content .profile-holder .avatar {
            float:left;
            width:120px;
            height:120px;
            background:gray;
            border-radius:100%;
            background-image:url('avatar.jpg');
            background-size:cover;
            background-position: center;
            background-repeat:no-repeat;
            border:2px solid #51555b;
        }
.content .profile-holder .profile-info {
            float:left;
            width:calc(100% - 204px);
            margin-left:50px;
        }
.content .profile-holder .profile-info .name {
                float:left;
                width:100%;
                color:white;
                font-size:24px;
                font-weight:bold;
                margin-top:30px;
            }
.content .profile-holder .profile-info .rank {
                float:left;
                height:30px;
                line-height: 30px;
                border:1px solid #51555b;
                padding-left:10px;
                padding-right:10px;
                color:white;
                background:#51555b;
                margin-top:10px;
                border-radius:5px;
                text-transform: uppercase;
                font-size:10px;
                font-weight:600;
            }
.content .profile-holder .profile-info .new-badge {
                height:30px;
                line-height:30px;
                border:1px solid #FFB520;
                padding-left:5px;
                padding-right:5px;
                color:white;
                margin-top:10px;
                border-radius:5px;
                text-transform: uppercase;
                font-size:10px;
                font-weight:600;
                margin-left:10px;
                float:left;
                color:#FFB520
            }
.content .profile-holder .profile-info .new-badge .icon {
                    float:left;
                    width:20px;
                    height:20px;
                    margin-top:4px;
                    margin-right:5px;
                    background-size:16px;
                }
.content .copy-btn {
            position:absolute;
            right:20px;
            top:15px;
            width:30px;
            height:30px;
            cursor:pointer;
        }
.content .copy-btn .icon {
                float:left;
                width:30px;
                height:30px;
                background-size:18px;
                transition:all 0.3s ease;
            }
.content .double-column {
            float:left;
            width:1000px;
            margin-left:calc(50% - 500px);
            height:30px;
            color:gray;
            text-transform: uppercase;
            font-size:14px;
            font-weight:600;
            margin-top:20px;
        }
.content .information-title {
            float:left;
            width:1000px;
            margin-left:calc(50% - 500px);
            height:30px;
            color:gray;
            text-transform: uppercase;
            font-size:14px;
            font-weight:600;
            margin-top:20px;
        }
.content .information-title.first { margin-top:40px; }
.content .information-table {
            float:left;
            width:1000px;
            margin-left:calc(50% - 500px);
            margin-top:10px;
            background:#15202b;
        }
.content .information-table:last-child { margin-bottom:20px; }
.content .information-table .info-row {
                float:left;
                width:100%;
                height:60px;
                position:relative;
            }
.content .information-table .info-row .info-label {
                    float:left;
                    width:calc(100% - 40px);
                    margin-left:20px;
                    color:#79797F;
                    font-size:14px;
                    font-weight:600;
                    margin-top:10px;
                }
.content .information-table .info-row .info-value {
                    float:left;
                    width:calc(100% - 40px);
                    margin-left:20px;
                    color:white;
                    font-size:16px;
                    font-weight:500;
                    margin-top:5px;
                }
.content .tab-wrapper {
        float: left;
        width: 1200px;
        margin-left: calc(50% - 600px);
        height: calc(100% - 110px);
    }
.content .tab-wrapper .tab-header {
            float: left;
            width: 100%;
            padding: 0px;
            margin: 0px;
            list-style: none;
        }
.content .tab-wrapper .tab-header li {
                float: left;
                padding-left: 20px;
                padding-right: 20px;
                height: 40px;
                line-height: 40px;
                color: #95949d;
                text-transform: uppercase;
                font-size: 14px;
                font-weight: 500;
                cursor:pointer;
                transition:all 0.3s ease;
                -webkit-user-select:none;
                   -moz-user-select:none;
                    -ms-user-select:none;
                        user-select:none;
            }
.content .tab-wrapper .tab-header li:hover { color:white; }
.content .tab-wrapper .tab-header li.active {
                /* background: #2B293B; */
                /* color: #825DD0; */
                background:#172331;
                color:#FFB520;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
            }
.content .tab-wrapper .tab-header li.darken.active { background:#16151e; }
.content .tab-wrapper .tab-header li .icon.arrow-down {
                    float:right;
                    width:12px;
                    height:12px;
                    background-image:url(/assets/arrow-down-icon.svg);
                    background-size:cover;
                    background-repeat:no-repeat;
                    background-position: center;
                    margin-top: 13px;
                    margin-left: 7px;
                }
.content .tab-wrapper .tab-header li:hover .icon.arrow-down { background-image:url(/assets/arrow-down-active-icon.svg); }
.content .tab-wrapper .tab-header li > .sublist, .user > .sublist {
                    z-index:10;
                    position: absolute;
                    display: none;
                    background: #232323;
                    width: 200px;
                }
.user > .sublist {
                    width:120px !important;
                    top:100%;
                    left:0px;
                }
.content .tab-wrapper .tab-header li:hover .sublist, .user:hover .sublist { display:block; }
.content .tab-wrapper .tab-header li .sublist-item, .user .sublist .sublist-item {
                        float: left;
                        width: 100%;
                        font-size: 12px;
                        padding-left: 10px;
                        transition:all 0.3s ease;
                        color: #909090;
                    }
.content .tab-wrapper .tab-header li .sublist-item:hover, .user .sublist .sublist-item:hover { color:white; }
.content .tab-wrapper .tab-content {
            float: left;
            height: calc(100% - 40px);
            /* background: #2B293B; */
            background:#172331;
            height: auto;
            padding-bottom:10px;
            display:none;
        }
.content .tab-wrapper .tab-content.table-wrapper { margin-left:0px; position:relative; }
.content .tab-wrapper .tab-content.active { display:block; }
.content .category-title {
                float: left;
                width: calc(100% - 40px);
                margin-left: 20px;
                color: white;
                margin-top: 20px;
                margin-bottom: 20px;
                border-bottom: 1px solid rgba(149, 148, 157, 0.4);
                padding-bottom: 10px;
                font-weight: bold;
                text-transform: uppercase;
                font-size: 14px;
            }
.content .chat-window {
        float: left;
        width: 100%;
        margin-left: 0px;
        height: 270px;
        background: #2B293B;
        resize:vertical;
        overflow:hidden;
    }
.content .chat-window .chat-list {
            float: left;
            height: calc(100% - 82px);
            width: 100%;
            /* background: rgba(0, 0, 0, 0.3); */
            background:rgba(21, 32, 43,.9);
            overflow:auto;
        }
.content .chat-window .chat-list span, .content .chat-window .chat-list div { -webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text; }
.content .chat-window .chat-list .chat-message {
                float: left;
                width: calc(100% - 20px);
                /* height: 22px; */
                line-height: 22px;
                padding-left: 10px;
                padding-right: 10px;
                color: white;
                font-size: 12px;
                -webkit-user-select:text;
                   -moz-user-select:text;
                    -ms-user-select:text;
                        user-select:text;
            }
.content .chat-window .chat-list .chat-message.side { color:cyan; }
.content .chat-window .chat-list .chat-message.global { color:silver; }
.content .chat-window .chat-list .chat-message.group { color:lightgreen; }
.content .chat-window .chat-list .chat-message.vehicle { color:orange; }
.content .chat-window .chat-list .chat-message.command, .content .chat-window .chat-list .chat-message.custom { color:yellow; }
.content .chat-window .chat-list .chat-message.unknown { color:#6c45ff; }
.content .chat-window .chat-list .chat-message.system { color:red; }
.content .chat-window .chat-list .chat-message .timestamp {
                    margin-right: 2px;
                    opacity: 0.7;
                }
.content .chat-window .chat-list .chat-message .group {
                    font-weight:600;
                }
.content .chat-window .chat-list .chat-message .msg {
                    margin-left:5px;
                }
.content .chat-window .chat-line {
            float:left;
            width:100%;
            height:42px;
        }
.content .chat-window .chat-line input {
                float: left;
                width: calc(100% - 351px);
                height: 40px;
                color: white;
                float: left;
                border: 1px solid rgba(149, 148, 157, 0.3);
                outline: none;
                padding-left: 10px;
                padding-right: 10px;
                font-size: 10px;
                font-weight: 500;
                /* background: #292839; */
                background:#2b3138;
                -moz-appearance: none;
                -webkit-appearance: none;
                margin-left: 1px;
                margin-top: 1px;
            }
.content .chat-window .chat-line .select-holder {
                float:left;
                position:relative;
                width: 200px;
                margin-left: 20px;
                margin-top: 8px;
            }
.content .chat-window .chat-line .btn {
                float: left;
                height: 40px;
                line-height: 40px;
                margin-top:1px;
                width: 150px;
                text-align: center;
                /* background: #825DD0; */
                background:#FFB520;
                color: white;
                font-size: 10px;
                font-weight: bold;
                text-transform: uppercase;
                transition:all 0.5s ease;
            }
.content .chat-window .chat-line .btn:hover { 
                /* background:#7348d0;  */
                background:#b77e0c;
            }
/* UTILITY */
.text-left { text-align:left; }
.info-row .label {
    float: left;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    background: rgb(37, 42, 48);
    text-transform: uppercase;
}
.info-row .value {
    float: left;
    margin-left: 10px;
    color: #cdcdcd;
    font-size: 12px;
    font-weight: 500;
}
.small-btn {
    float: left;
    height: 26px;
    line-height: 26px;
    width: 200px;
    text-align: center;
    background: #825DD0;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0px 0px 5px 2px rgba(130, 93, 208, 0.5);
    transition:all 0.5s ease;
    cursor:pointer;
}
.icon {
    background-size:100% 100%;
    background-repeat:no-repeat;
    background-position:center;
}
.icon.servers { background-image:url(/assets/servers-icon.svg); }
.active .icon.servers, li:hover > .icon.servers { background-image:url(/assets/servers-active-icon.svg) !important; }
.icon.bans { background-image:url(/assets/bans-icon.svg); }
.active .icon.bans, li:hover > .icon-holder .icon.bans, li:hover > .icon.bans  { background-image:url(/assets/bans-active-icon.svg) !important; }
.icon.settings { background-image:url(/assets/settings-icon.svg); }
.active .icon.settings, li:hover > .icon.settings { background-image:url(/assets/settings-active-icon.svg) !important; }
.icon.dashboard { background-image:url(/assets/dashboard-icon.svg); }
.active .icon.dashboard, li:hover > .icon-holder .icon.dashboard { background-image:url(/assets/dashboard-active-icon.svg); }
.icon.stats { background-image:url(/assets/stats-icon.svg); }
.active .icon.stats , li:hover > .icon-holder .icon.stats { background-image:url(/assets/stats-active-icon.svg); }
.icon.console { background-image:url(/assets/console-icon.svg); }
.active .icon.console, li:hover > .icon-holder .icon.console { background-image:url(/assets/console-active-icon.svg); }
.icon.users { background-image:url(/assets/users-icon.svg); }
.active .icon.users , li:hover > .icon-holder .icon.users, li:hover > .icon.users { background-image:url(/assets/users-active-icon.svg); }
.icon.zeus { background-image:url(/assets/zeus-icon.svg); }
.active .icon.zeus, li:hover > .icon-holder .icon.zeus { background-image:url(/assets/zeus-active-icon.svg); }
.icon.search { background-image:url(/assets/search-icon.svg); }
.active .icon.admins, li:hover > .icon-holder .icon.admins { background-image:url(/assets/admins-active-icon.svg); }
.icon.admins { background-image:url(/assets/admins-icon.svg); }
.active .icon.search, li:hover > .icon-holder .icon.search, li:hover > .icon.search { background-image:url(/assets/search-active-icon.svg); }
.icon.back-arrow { background-image:url(/assets/back-arrow.svg); }
div:hover > .icon.back-arrow { background-image:url(/assets/back-arrow-active.svg); }
.icon.copy-clipboard { background-image:url(/assets/copy-icon.svg); }
div:hover > .icon.copy-clipboard { background-image:url(/assets/copy-active-icon.svg); }
.icon.star { background-image:url(/assets/star-icon.svg); }
.icon.star-white { background-image:url(/assets/star-white-icon.svg) }
.icon.greeting { background-image:url(/assets/greeting-icon.svg); }
.icon.promote { background-image:url(/assets/promote-icon.svg); }
.icon.mask { background-image:url(/assets/mask-icon.svg); }
.icon.comment-action-icon { background-image:url(/assets/action-comment-icon.svg); }
.icon.kick-action-icon { background-image:url(/assets/kick-ic.svg); }
.icon.hammer-action-icon { background-image:url(/assets/hammer-action-icon.svg); }
.icon.ban-action-icon { background-image:url(/assets/ban-action-icon.svg); }
.icon.warning { background-image:url(/assets/warning-icon.svg); }
.icon.alert { background-image:url(/assets/alert-icon.svg); }
.icon.enter { background-image:url(/assets/enter-icon.svg); }
.icon.close { background-image:url(/assets/close-icon.svg); }
.icon.arrow-sort-down { background-image:url(/assets/arrow-sort-down.svg); }
.icon.arrow-sort-up { background-image:url(/assets/arrow-sort-up.svg); }
.icon.next { background-image:url('next-icon.svg'); }
.threat-slot {
    float:right;
    width:14px;
    height:14px;
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
    display:block;
    margin-top:13px;
}
::-webkit-scrollbar {
    width: 10px;
  }
/* Track */
::-webkit-scrollbar-track {
    background: #212121;
  }
/* Handle */
::-webkit-scrollbar-thumb {
    /* background: #825dd0; */
    background:#FFB520;
  }
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #7740ea; */
    background:#b77e0c;
  }
.pulsate {
    -webkit-animation-name: pulsate;
            animation-name: pulsate;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
.row-marge { 
    float: left;
    width: calc(100% - 40px);
    margin-left: 20px;
  }
.row-marge > div {
      float:left;
  }
.info-col { margin-top:10px; }
.info-col .label {
    float: left;
    width: 100%;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
  }
.info-col .value {
    float: left;
    width: 100%;
    color: #95949d;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
  }
.info-col .value { -webkit-user-select:all; -moz-user-select:all; -ms-user-select:all; user-select:all; }
@-webkit-keyframes pulsate {
    0% {opacity:1;}
    50% {opacity: 0.5;}
    100% { opacity:1; }
  }
@keyframes pulsate {
    0% {opacity:1;}
    50% {opacity: 0.5;}
    100% { opacity:1; }
  }
.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }
.pointer { cursor:pointer; }
.loader {
    position:absolute;
    top:35%;
    left:50%;
    transform: translate(-50%, -50%);
    height:40px;
    display:flex;
    align-items:center;
  }
.loader.search {
      top:45%;
  }
.loader .obj {
        width:5px;
        height: 40px;
        /* background: #7884CD; */
        background:#b77e0c;
        margin: 0 3px;
        border-radius:10px;
        -webkit-animation: loading 0.8s infinite;
                animation: loading 0.8s infinite;
    }
.loader .obj:nth-child(2) { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
.loader .obj:nth-child(3) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.loader .obj:nth-child(4) { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.loader .obj:nth-child(5) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
.loader .obj:nth-child(6) { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }
.loader .obj:nth-child(7) { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.loader .obj:nth-child(8) { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }
@-webkit-keyframes loading {
    0% {
        height:0;
    }
    50% {
        height: 40px;
    }
    100%{
        height:0;
    }
  }
@keyframes loading {
    0% {
        height:0;
    }
    50% {
        height: 40px;
    }
    100%{
        height:0;
    }
  }
.hdr-row {
    float: right;
    width: auto;
    padding-right: 15px;
    height: 30px;
    line-height: 30px;
    background: #2b3138;
    box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 15%);
    margin-top: 5px;
    border-radius:5px;
}
.hdr-row .label {
        font-size: 10px;
        font-weight: normal;
        color: #9c9c9c;
    }
.hdr-row .value {
        color: white;
    }
.lobby-badge {
    height: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 8px;
    background: #55c155;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}
/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    line-height: 42px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: right;
    font-size: 8px;
  }
/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 10px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    /* border: 1px solid #825DD0; */
    border: 1px solid #FFB520;
    /* background:#FFB520; */
    border-radius: 4px;
  }
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
  }
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    /* border-color: #825DD0; */
    border-color:#FFB520;
  }
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
  }
/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    /* background: #825DD0; */
    background:#FFB520;
  }
/* LOGIN */
.logging-screen {
    position:fixed;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:9999;
}
.logging-screen .login-text {
        text-align: center;
        color: white;
        width: 100%;
        position: absolute;
        top: 45%;
    }
.login { float:left;width:100%;height:100%; }
.login-left { 
    float:left;
    width:400px;
    height:100%;
    /* background:#2B293B; */
    background:#15202b;
    position:relative; 
}
.login-left .title {
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    float: left;
    margin-top: calc(50vh - 142.5px);
}
.login-left .field {
    float: left;
    width: 250px;
    margin-left: 75px;
    margin-top: 20px;
}
.login-left .field label {
        float: left;
        color: white;
        font-size: 12px;
        line-height: 30px;
        height: 30px;
    }
.login-left .field input {
        color: white;
        float: left;
        height: 34px;
        border: 1px solid rgba(149, 148, 157, 0.3);
        width: 227px;
        outline: none;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 10;
        font-weight: 500;
        /* background: #292839; */
        background:#181725;
        -moz-appearance: none;
        -webkit-appearance: none;
        margin-left: 1px;
        margin-top: 1px;
    }
.login-left .field input.error { border-color:#ff2c2c; }
.login-left .copyright {
        position:absolute;
        bottom:10px;
        left:0px;
        width:100%;
        text-align:center;
        color:gray;
        font-size:10px;
    }
.login-left .btn {
        float: left;
        height: 34px;
        line-height: 34px;
        width: 250px;
        text-align: center;
        /* background: #825DD0; */
        margin-top: 1px;
        color: white;
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-left: 75px;
        margin-top: 20px;
        text-decoration: none;
        background: #FFB520;
    }
.login-left .btn:hover { 
        /* background:#7348d0;  */
        background:#b77e0c;
    }
.login-right { float:left;width:calc(100% - 400px);height:100%;background:url(/assets/bg1.jpg);position:relative;background-position:center;background-size:cover; }
.login-right .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(43, 41, 59, 0.7), rgba(60, 45, 78, 0.7), rgba(43, 41, 59, 0.7)); */
    background: linear-gradient(to right, rgb(21 32 43 / 70%), rgb(18 26 35 / 50%), rgb(21 32 43 / 70%));
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    }
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 800px) {
    .login-right { display:none; }
    .login-left { width:100% !important; }

    .login-left .field, .login-left .btn { margin-left:calc(50% - 125px) !important; }
  }
.input-row {
    float: left;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-top: 20px;
}
.input-row .label {
        float: left;
        color: white;
        font-size: 12px;
        margin-bottom:5px;
        width:100%;
    }
.input-row input, .input-row textarea {
        color: white;
        float: left;
        height: 34px;
        border: 1px solid rgba(149, 148, 157, 0.3);
        width: calc(100% - 20px);
        outline: none;
        border-radius: 5px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 10px;
        font-weight: 500;
        background: #2b3138;
        resize: none;
        -moz-appearance: none;
        -webkit-appearance: none;
    }
.input-row textarea {
        height:60px;
        padding-top: 10px;
    }
.selection {
    float: left;
    height: 40px;
    width: auto;
    margin-left: 20px;
    background: #313033;
    border-radius: 10px;
    border: 1px solid #444444;
}
.selection.two {  margin-left: calc(50% - 75px); }
.selection.three {  margin-left: calc(50% - 112.5px); }
.selection .selection-segment {
        float: left;
        height: 34px;
        padding-left: 10px;
        width: 50px;
        padding-right: 10px;
        border-radius: 10px;
        text-align: center;
        margin-left: 5px;
        margin-top: 3px;
        line-height: 34px;
        font-size: 10px;
        text-transform: uppercase;
        color: white;
        font-weight: bold;
        transition:all 0.3s ease;
    }
.selection .selection-segment:last-child { margin-right:5px; }
.selection .selection-segment.active { background: #ffb520; }
.selection .selection-segment:not(.active):hover { color:#ffb520 !important;cursor:pointer; }
.chat-dropdown {
    float: left;
    margin-left: 10px;
    height: 100%;
    position: relative;
}
.chat-dropdown .chat-btn {
        float: left;
        font-size: 10px;
        background: #343a3f;
        height: 25px;
        line-height: 25px;
        margin-top: 9px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 5px;
        color: #d0d0d0;
        transition:all 0.5s ease;
    }
.chat-dropdown .chat-btn .icon {
            float:right;
            width:10px;
            height:10px;
            background-image:url(/assets/arrow-down-icon.svg);
            background-position:center;
            background-repeat:no-repeat;
            background-size:cover;
            margin-top: 7px;
            margin-left: 5px;
        }
.chat-dropdown:hover .chat-btn {
        background: #4e4e4e;
        color: white;
    }
.chat-dropdown .chat-btn-dropdown {
            position: absolute;
            top: 34px;
            background: rgba(43, 49, 56, 0.9);
            width: 100px;
            font-size: 10px;
            color: #ffffff;
            font-weight: normal;
            padding-left: 10px;
            padding-right: 10px;
            line-height: 30px;
            display:none;
            z-index:10;
        }
.chat-dropdown:hover .chat-btn-dropdown { display:block; }
.chat-dropdown .chat-btn-dropdown div::before {
                content: "";
                float: left;
                width: 10px;
                height: 10px;
                border: 1px solid #ffb520;
                margin-top: 8px;
                margin-right: 5px;
                transition:all 0.5s ease;
            }
.chat-dropdown .chat-btn-dropdown div:hover::before { border-color:white; }
.chat-dropdown .chat-btn-dropdown div.active { color:#ffb520; }
.chat-dropdown .chat-btn-dropdown div::after {
                content: "";
                position: absolute;
                width: 8px;
                height: 8px;
                left: 2px;
                top: 10px;
                background: #ffb520;
                transition:all 0.5s ease;
                opacity:0;
            }
.chat-dropdown .chat-btn-dropdown div.active::after { opacity:1; }
.chat-dropdown .chat-btn-dropdown div:hover::after { background:white;}
.chat-dropdown .chat-btn-dropdown div {
                float: left;
                width: 100%;
                margin-left: 5px;
                position:relative;
                color:white;
                cursor:pointer;
            }
.forbidden {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
}
.arrow-holder {
    float: right;
    color: white;
    background: #353d46;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 5px;
    margin-top: 5px;
    margin-right: 20px;
    transition:all 0.3s ease;
}
.arrow-holder.disabled {
    opacity:0.5;
    cursor:not-allowed;
    pointer-events: none;
}
.arrow-holder.second { margin-right:5px; }
.arrow-holder:hover { background:#b77e0c; }
.linked { 
    /* text-decoration: underline;
    text-decoration-style:dotted; */
}
.account-action-button {
    float:right;
    height:30px;
    line-height:30px;
    border:1px solid #51555b;
    padding-left:10px;
    padding-right:10px;
    color:white;
    background:#222222;
    margin-top:-5px;
    border-radius:5px;
    text-transform: uppercase;
    font-size:10px;
    font-weight:600;
    margin-right:5px;
    cursor:pointer;
    transition:all 0.3s ease;
}
.account-action-button:hover { background:#686868; }
.account-action-button i {
        float:left;
        width:20px;
        height:20px;
        margin-top:4px;
        margin-right:5px;
        background-size:14px;
    }
.orange { color:orange !important; }
.yellow { color:gold !important; }
.orange-bg { background:orange !important; }
.yellow-bg { background:gold !important; }
.modal-sidebar {
    float: left;
    width: 280px;
    height: 100%;
    background: #121c26;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.modal-sidebar .sidebar-title {
        float: left;
        padding-left: 10px;
        padding-top: 20px;
        color: white;
        width: calc(100% - 20px);
        font-weight: 600;
        font-size: 20px;
    }
.modal-sidebar .sidebar-list {
        float: left;
        margin: 0px;
        padding: 0px;
        list-style: none;
        width: 100%;
        margin-top: 20px;
    }
.modal-sidebar .sidebar-list li {
            float: left;
            width: 100%;
            height: 40px;
            line-height: 40px;  
            transition:all 0.3s ease; 
            cursor:pointer;
        }
.modal-sidebar .sidebar-list li i {
                float: left;
                width: 24px;
                height: 24px;
                margin-left: 10px;
                margin-top: 7px;
                background-size: 24px;
                transition:all 0.3s ease;
            }
.modal-sidebar .sidebar-list li span {
                float: left;
                margin-left: 10px;
                color: #95949d;
                line-height: 40px;
                font-size: 14px;
                font-weight: 500;
                transition:all 0.3s ease;
            }
.modal-sidebar .sidebar-list li.active span, .modal-sidebar .sidebar-list li:hover span { color:#FFB520; }
.collapsable {
    float: left;
    width: 1000px;
    margin-left: calc(50% - 500px);
    height: auto;
    max-height: 50px;
    overflow: hidden;
    transition:all 0.3s ease;
}
.collapsable.expanded { max-height:2000px; }
.collapsable .icon.arrow-sort-down {
            float: left;
            width: 14px;
            height: 14px;
            background-size: 14px;
            margin-right: 12px;
            margin-top: 2px;
            transition:all 0.3s ease;
            transform: rotate(-90deg);
        }
.collapsable.expanded .icon.arrow-sort-down { transform:rotate(0deg); }
