/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13.03.2019, 10:31:28
    Author     : irek
*/

.flex {
    display: flex;
    justify-content: space-between;
}

.menu {
    background-color: white;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.menu a {
    padding: 10px 20px;
    width: 100%;
    border-bottom: blue 1px solid;
}

.menu a:hover {
    background-color: #48464699;
    color: white;
}

.keyboards_block {
    min-width: 300px;
    min-height: 200px;
    margin-top: 25px;
    border-radius: 10px;
    padding: 20px;
    border: solid #cae2f7 1px;
}


.backform {
    position: absolute;
    background: #504f4fc2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    padding: 60px 20px;
}

.editform {
    display: flex;
    height: 100%;
    background: white;
    opacity: 1;
    z-index: 2001;
    border-radius: 10px;
    flex-direction: column;
    padding: 50px;
}

.close_add_button {
    position: absolute;
    z-index: 2022;
    color: white;
    right: 40px;
    top: 15px;
    font-weight: bold;
    cursor: pointer;
}

.sortable-ul li {
    margin: 4px 0;
    padding: 5px 10px;
    font-size: 16px;
    background: #eee;
    border: 1px solid #e0e0e0;
    border-left: 8px solid #e0e0e0;
    line-height: 24px;
}

.sortable-ul {
    list-style-type: none;
    margin: 10px auto;
    padding: 10px;
}

.load_ajax {
    background-color: black;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    opacity: 0.65;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader_icon {
    width: 100px;
}

.loader_icon img {
    width: 150px;
}

.gorizont_block{
    width: 100%;
    min-height: 50px;
    background-color: #cae2f7;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
}
.gorizont_block.activate{
    background-color: rgb(76, 100, 121);
}

.span_button {
    color: white;
    background-color: #2b2828;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin: 10px;
    text-align: center;
    cursor: pointer;
}

.btn_save_callback, .btn_delete_button {
    margin-left: 10px;
    margin-right: 10px;
}

.span_button:hover {
    background-color: #2313a7;
}