body {
    font-family: "Open Sans";
    background-color: #ffffff;
    margin: 0px;
    overflow: hidden;
}

#container {
    position: absolute;
    top: 0px;
    left: 300px;
    width: calc(100% - 300px);
    height:100%;
}

#left_menu{
    overflow: auto;
    box-sizing: border-box;
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 300px;
    height:100%;
    font-size: 16px;
    user-select: none;
}
#left_menu::-webkit-scrollbar{
    width:4px;
}
#left_menu::-webkit-scrollbar-thumb{
    border-width:1px 1px 1px 2px;
    border-color: #777;
    background-color: #aaa;
}
#left_menu::-webkit-scrollbar-thumb:hover{
    border-width: 1px 1px 1px 2px;
    border-color: #555;
    background-color: #777;
}
#left_menu::-webkit-scrollbar-track{
    border-width:0;
}
#left_menu::-webkit-scrollbar-track:hover{
    border-left: solid 1px #aaa;
    background-color: #eee;
}

#left_menu * {
    box-sizing: border-box;
}

.menu_h1{
    cursor: pointer;
    padding: 5px;
}
.menu_h1 .trigger:hover{
    /* background: rgba(150, 79, 218, 0.397); */
}

.menu_h1 .trigger > * {
    pointer-events: none;
    margin: 0;
    position: absolute;               /* 2 */
    top: 50%;                         /* 3 */
    transform: translate(0, -50%);   /* 4 */
}

.menu_h1 .trigger {
    position: relative;
    height: 2em;
    padding: 5px;
    border-bottom: #777777;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.menu_h1 .trigger i {
    font-size: .75em;
    right: 0;
}

.menu_h1 .target{
    overflow: hidden;
    height: 0px;
    padding: 5px;
    transition: all .2s ease;
}

.target-item > span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 10px;
}
.target-item > .checkbox{
    font-size: 14px;
}

.menu_h1 > .active {
    height: auto;
    padding-top: 10px;
}

.color-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease;
}
.colorized {
    background-image: url(./media/check-24px.svg);
    background-size: 70%;
}

.img-item{
    position: relative;
}
.img-item > * {
    position: absolute;
}
.img-item > .item, .img-item{
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    background-color: #bebebe;
    z-index: 1;
}
.img-item > .check{
    transition: all .2s ease;
}
.img-item > .selected-img{
    overflow: hidden;
    background-image: url(./media/check-24px.svg);
    background-size: 100%;
    width: 30px;
    height: 30px;
    pointer-events: none;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #48ef45;
    border-radius: 100%;
    z-index: 10;
    transform: translate(10px, 10px);
}
.checkbox{
    position: relative;
}
.checkbox > input[type="checkbox"] {
    display: none;
}

/*Прячем галку по умолчанию*/
.checkbox input[type="checkbox"] + label::after {
    content: none;
}
/*Показываем галку по состоянию checked*/
.checkbox input[type="checkbox"]:checked + label::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(./media/check-24px.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox > label{
    content: " ";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: -3px;
    cursor: pointer;
    background-color: #0683F9;
    top: 50%;
    transform: translate(20%, -40%);
    border-radius: 1px;
    transition: all 0.4s ease;
}
.checkbox > span {
    position: relative;
    left: 20px;
}

/* ORDER */
.order {
 margin: 5px;
padding: 5px;
 border: 1px solid #777777;
 -webkit-birder-radius: 6px;
 -moz-border-radius: 6px;
 border-radius: 6px; }

 textarea {
    margin: 0;
    max-width: 250px;
    max-height: 200px;
    min-width: 200px;
    min-height: 38px;
}

input, textarea {
    border: solid 1px #CCCCCC;
    color: #999999;
    padding: 5px;
    outline: 0;
    font-family: "Open Sans";
    width: 200px;
    height: 38px;
    font-size: 16px;
    margin-left: 10px;
    /* background: #F9F9F9; */
    -webkit-birder-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.send > input{
    cursor: pointer;
    background-color: #5CB85C;
    color: white;
}

.valid-error{
    border: solid 1px #c91e1e;
    background-color: rgba(201, 30, 30, 0.1);
}