/* xs < 768 */
@media screen and (max-width: 767px) {
    body {
        font-size: 0.8em;
    }
}

/* sm */
@media screen and (min-width: 768px) {
    body {
        font-size: 0.8em;
    }
}

/* md */
@media screen and (min-width: 992px) {
    body {
        font-size: 0.9em;
    }
}

/* lg */
@media screen and (min-width: 1200px) {
    body {
        font-size: 1em;
    }
}

.filter_input {
    max-width: 100px;
    height: 20px;
    font-size: small;
    font-weight: 700;
    color: gray;
    padding: 0px 5px;
}

.clean_filter_icon {
    width: 24px;
    padding: 2px;
    cursor: pointer;
    display: none;
}

.menu_btn {
    width: 50px;
    padding: 10px;
    margin: 5px;
    background: #ffffff;
    height: 50px;
    text-align: center;
    border: 1px solid #eceeef;
    border-radius: 3px;
    cursor: pointer;
}

.menu_btn img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.menu_btn:hover {
    background: #eeffa9;
}

.addnewbox {
    border-radius: 2px;
    background: #ff8d8d;
    margin: 30px auto 0;
    padding: 25px 2px 2px 2px;
    width: 600px;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    position: absolute;
    z-index: 1;
    margin-top: -300px;
    box-shadow: rgba(0, 0, 0, 0.25) 5px 5px 10px;
    display: none;
}

.row_tools {
    /*display: grid;*/
    display: none;
}
.row_tools img {
    padding: 1px;
    margin: 1px;
    width: 18px;
}
.row_tools img:hover {
    border: 1px solid gray;
    border-radius: 1px;
    background: #efffd4;
    cursor: pointer;
}


.addnewcap {
    margin-top: -25px;
    padding: 2px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5pt;
}

.addnewbody {
    background: #ffffff;
    padding: 28px 26px 33px 25px;
    /* height: 550px; */
}

.addnewbody input,select {
    font-weight: 600;
    color: #565656;
}

.newposbtn {
    display: -webkit-box;
    text-align: -webkit-center;
}

/* --------------------------- ÐŸÐµÑ€ÐµÐºÐ»ÑŽÑ‡Ð°Ñ‚ÐµÐ»ÑŒ ----------------------------- */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
    margin-top: 5px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

input:checked + .slider {
    background-color: #ff6c6c;
}

input:focus + .slider {
    box-shadow: 0 0 1px #ff6c6c;
}

input:checked + .slider:before {
    -webkit-transform: translateX(14px);
    -ms-transform: translateX(14px);
    transform: translateX(14px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 10px;
}

.slider.round:before {
    border-radius: 50%;
}
/* --------------------- ÐŸÐµÑ€ÐµÐºÐ»ÑŽÑ‡Ð°Ñ‚ÐµÐ»ÑŒ --------------------- */


.login_div {
    width: 300px;
    height: 230px;
    top: calc(30% - 100px);
    left: calc(50% - 150px);
    position: fixed;
    padding: 15px;
    border: 1px solid #c7c7c7;
    border-radius: 5px;
}

.login_error_div {
    color: red;
    margin-top: -19px;
    font-weight: 600;
    font-variant: all-small-caps;
    text-align: center;
    display: none;
}