.document-img {
    width: 50px;
    height: 50px;
}
.fullDocument-img {
    max-width: 100%;
}
.filters-window{
    display: none;
}
.filters-overlay{
    background: rgba(0,0,0,0.5);
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.filters-content{
    background: #fff;
    border-radius: 20px;
    position: fixed;
    width: 30vw;
    z-index: 10000;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.filters-content-buttons{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.form-group-custom{
    display: flex;
    flex-direction: column;
    /*width: fit-content;*/
}
.form-group-custom > label{
    margin-bottom: 0;
}
.navbar-vertical.navbar-expand-xs .navbar-collapse{
    height: unset;
}
a.user-more-row-button{
    display: block;
    border: 1px solid #dbdbdb;
    /* margin-left: 5px; */
    padding: 5px 10px;
}
.row-buttons{
    display: flex;
    margin-bottom: 20px;
}
.current-local{
    cursor: pointer;
    color: #fff;
    display: block;
    margin-top: 7px;
    margin-right: 10px;
}
.locales-list {
    position: absolute;
    z-index: 999;
    background: rgb(251 99 64 / 100%);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 9px -1px #333;

    display: none;
}
.success-message {
    color: green;
}
#import-from-file {
    margin-top: 10px;
}
.user-more-row-button.active{
    box-shadow: inset 0px 0px 5px -2px #333;
    color: #ea3005;
}
.balance-form-group{
    width: 40%;
}
.balance-buttons-row{
    margin-top: 10px;
}
.burger-sidenav-header{
    cursor: pointer;
}
.burger-sidenav-header > li{
    display: none;
}
.popup_balance_plus_container,
.popup_bonus_balance_plus_container,
.popup_balance_minus_container,
.popup_bonus_balance_minus_container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    text-align: center;
    justify-content: space-around;

    z-index: 150001;

    display: none;
}
.popup_balance_overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background: rgba(0,0,0,0.5);

    z-index: 150002;
}
.popup_balance{
    background: #fff;
    color: #333;

    z-index: 150003;

    width: 400px;
    border-radius: 10px;

    height: fit-content;
    box-sizing: border-box;

    padding: 30px;
    text-align: left;

    margin-top: 20vh;
}
.popup_balance-header{
    text-align: center;
}
.popup_balance-footer{
    margin-top: 20px;
    display: flex;
    justify-content: end;
}
.popup_balance-footer > button:last-child{
    margin-left: 10px;
}
select[readonly]{
    background: #eee;
    cursor:no-drop;
}
select[readonly] option{
    display:none;
}
@media screen and (max-width: 500px){
    .filters-content{
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        border-radius: unset;
    }
    .balance-form-group{
        width: 100%;
    }
}

.select2-container.select2-container--default.select2-container--open {
    z-index: 11111111111111;
}

/* CUSTOM INPUT TOGGLER */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.input-toggled {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.input-toggled:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .input-toggled {
    background-color: #2196F3;
}

input:focus + .input-toggled {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .input-toggled:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.input-toggled.round {
    border-radius: 34px;
}

.input-toggled.round:before {
    border-radius: 50%;
}

.click-disabled {
    pointer-events: none !important;
}

.delete-btn {
    display: flex;
    align-items: center;
}
.delete-btn span {
    cursor: pointer;
}

.ck-editor__editable {
    height: 450px;
}

.custom-disabled-input {
    pointer-events: none;
    opacity: .5;
}

