/**
 *  @file
 *  Основные стили
 */
/*======= Дополнительные шрифты ===========*/

@font-face {
    font-family: 'Roboto Light'; 
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: 'Roboto Light Italic'; 
    src: url(../fonts/Roboto-LightItalic.ttf);
}

@font-face {
    font-family: 'Roboto Meduim'; 
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: 'Roboto Regular'; 
    src: url(../fonts/Roboto-Regular.ttf);
}
input[readonly],
select[readonly] + .select2.select2-container {
    pointer-events: none;
    touch-action: none;
}

select[readonly] + .select2.select2-container .select2-selection {
    background-color: #eee;
    box-shadow: none;
}

select[readonly] + .select2.select2-container .select2-selection__arrow,
select[readonly] + .select2.select2-container .select2-selection__clear {
    display: none;
}

.light{
    font-family: "Roboto Light", sans-serif;
}

.fs-inherit{
    font-size: inherit;
}

.fs-12{
    font-size: 12px;
}

.fs-15{
    font-size: 15px;
}

.fs-16{
    font-size: 16px;
}

.fs-18{
    font-size: 18px; 
}

.fs-24{
    font-size: 24px;
}

.fs-60{
    font-size: 60px;
}

.medium{
    font-family: "Roboto Meduim", sans-serif !important;
}

.regular{
    font-family: "Roboto Regular", sans-serif !important;
}

.overflow-auto{
    overflow: auto;
}

.row-xs{
    margin-left: -5px;
    margin-right: -5px;
}

.row-xs [class*=col-]{
    padding-left: 5px;
    padding-right: 5px;
}

.row-sm{
    margin-left: -10px;
    margin-right: -10px;
}

.row-sm [class*=col-]{
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width:1200px){
    .columns-lg-2{
        -moz-column-count: 2;
        column-count: 2;
    }
}

.well-rows{
    padding-top: 26px;
    padding-bottom: 5px;
}

.well-rows .well-row + .well-row{
    border-top: 1px solid #e3e3e3;
    padding-top: 28px;
    margin-top: 5px;
}

.well-row-count{
    border: 1px solid #e3e3e3;
    border-radius: 50%;
    line-height: 100%;
    padding: 3px 9px;
    text-align: center;
    background-color: #e3e3e3;
    position: relative;
    margin-left: -12px;
    margin-right: 6px;
    top: -9px;
}

.line-h-22 {
    line-height: 22px;
}

/*========== Style ========================*/

body{
    background-color: #fff;
    color: #383838;
    min-width: 340px;
    font-family: "Roboto Regular", sans-serif;
}

.wrap{
    margin: 0 auto -36px;
}

.wrap > .container {
    padding-top: 30px;
}

hr{
    border-bottom: 1px solid rgb(191, 191, 191);
    margin-bottom: 30px;
}

.flex{
    display: flex;
}

.flex-row-wrap{
    display: flex;
    flex-flow: row wrap;
}



.flex-align-self-end{
    align-self: flex-end;
    margin-bottom: 0px;
}

.flex-align-self-start{
    align-self: flex-start;
    margin-bottom: 0px;
}

.flex-align-self-center{
    align-self: center;
}

.inline-block{
    display: inline-block;
}

input:focus,
textarea:focus,
select:focus{
    outline: none;
}

.nav.nav-pills{
    margin-bottom: 20px;
}

.uppercase{
    text-transform: uppercase;
}

.inner-inline-block > *{
    display: inline-block;
}

@media (min-width: 1200px){
    .container {
        width: 1200px;
    }
}

@media (min-width: 992px){
    .main-container{
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width:991px){
    .main-container{
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px){
    nav.navbar{
        margin-bottom: 0px;
    }
}

@media (max-width: 767px){
    .main-container{
        margin-top: 0px;
        margin-bottom: 20px;
    }
}

.search-period{

}
/*========== Headers===============*/

h1, h3, h4{
    font-family: "Roboto Meduim", sans-serif;
}

h2{
    font-size: 34px;
}

.highlighted-header{
    background-color: #cae3fb;
    padding: 17px 15px;
    margin-bottom: 20px;
    color: #356694;
}

.f-blue{
    color: #356694;
}

.highlighted-header *{
    margin-top: 0;
    margin-bottom: 0px;
}

.highlighted-header > div {
    font-family: "Roboto Meduim", sans-serif;
    font-size: 18px;
    line-height: 1.1;
    color: inherit;

}

h3.highlighted-header,
.highlighted-header h3 {
    font-size: 20px;
}

.highlighted-header .highlighted-header-content {
    display: table;
}
.highlighted-header .highlighted-header-content > div {
    display: table-cell;
}

.highlighted-header .highlighted-header-content > div:not(:first-child) {
    font-size: 14px;
    font-family: "Roboto Regular", sans-serif;
}

.highlighted-header .highlighted-header-content > div > span {
    font-size: 16px;
}

.highlighted-header .highlighted-header-content > div > span.highlighted-header-datetime {
    word-spacing: 7px;
}

.green{
    color: #07b427 !important;
}

/*============ Btns ============*/

.btn {
    font-family: "Roboto Regular", sans-serif;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
    border-radius: 4px;
    outline: none;
}

.btn.disable-hover{
    pointer-events: none;
}

.btn-default,
.btn-danger,
.btn-primary,
.btn-success,
.btn-gray{
    min-width: 140px;
}

.table .btn{
    min-width: 20px;
}

.btn.btn-default{
    border-color: #0178aa;
    color: #0178aa;
    background-color: transparent;
}

.btn-primary{
    background-color: #438aca;
    border-color: #438aca;
}


.btn-primary:hover,
.btn-primary:focus{
    background-color: #356694;
    border-color: #356694;
}

.btn.btn-gray{
    border-color: #dddddd;
    background-color: #dddddd;
    color: rgb(56, 56, 56);
}

.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-gray:hover,
.btn.btn-gray:focus{
    border-color: #4a86bd;
    background-color: #4a86bd;
    color: #fff;
}

.btn.btn-default.disabled,
.btn.btn-success.green-border.disabled,
.btn.btn-success.green-border:disabled{
    background-color: #eee !important;
    border-color: #bbb !important;
    color: #333 !important;
    opacity: 0.6 !important;
}

.btn.btn-gray.disabled{
    border-color: #0178aa !important;
    background-color: transparent !important;
    color: #0178aa !important;
}

.btn:hover,
.btn:focus{
    outline: none !important;
}

.btn.as-link{
    border: none;
    color: #0178aa;
    background: transparent;
    white-space: inherit;
}

.btn.as-link:hover,
.btn.as-link:focus{
    color: #0197d6;
    box-shadow: none;
}

.btn.btn-success,
.btn.btn-success.green-border.active{
    background-color: #07b427;
    border-color: #07b427;
    color: #fff;
}

.btn.btn-success:hover,
.btn.btn-success.green-border:hover,
.btn.btn-success:focus,
.btn.btn-success.green-border:focus{
    background-color: #06881e;
    border-color: #06881e;
    color: #fff;
}

.btn.btn-success.green-border{
    background-color: transparent;
    border-color: #07b427;
    color: inherit;
}


.btn.btn-danger{
    background-color: #f24841;
    border-color: #f24841;
}

.btn.btn-danger:hover,
.btn.btn-danger:focus{
    background-color: #c02c26;
    border-color: #c02c26;
}

.btn-60{
    height: 60px;
    min-width: 160px;
    line-height: 1.6;
}

.btn-plus-20{
    padding-right: 35px;
    position: relative;
    text-decoration: none;
}

.btn-plus-20:hover,
.btn-plus-20:focus{
    color: #05a3f7;
    text-decoration: none;
}

.btn-plus-20:after{
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    background: url(../icons/icons-20.png);
    background-position: -60px 0;
}

.btn-plus-20:hover:after,
.btn-plus-20:focus:after{
    background-position: -60px -20px;
}

@media (max-width: 1199px){
    .btn.media-responsive{
        height: 50px;
    }
}
.btn-group.btn-group-blue > .btn-default,
.btn-group.btn-group-blue > .btn-danger,
.btn-group.btn-group-blue > .btn-primary,
.btn-group.btn-group-blue > .btn-success,
.btn-group.btn-group-blue > .btn-gray{
    min-width: 130px;
}
.btn-group.btn-group-blue > .btn.btn-default {
    border-color: #ccc;
    color: #333;
    background-color: transparent;
}
.btn-group.btn-group-blue > .btn.active,
.btn-group.btn-group-blue > .btn:hover,
.btn-group.btn-group-blue > .btn:focus{
    background-color: #478aca;
    color: white;
}

/*============ Icons =========*/

.btn-icon{
    padding: 0px;
    border: none;
}

.btn-icon:focus{
    box-shadow: none;
}

.btn-icon:after,
.btn-icon-text:after{
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    float: right;
}

.btn-icon.btn-icon-15{
    width: 15px;
    height: 15px;
}

.btn-icon-text:after{
    margin-left: 15px;
}

.icon-green{
    background-color: #07b427;
}

.icon-success:after{
    background: url(../icons/icons-20.png);
    background-position: -1px -1px;
    background-color: #07b427;
    border: 1px solid #07b427;
    border-radius: 2px;
}

.icon-danger-warning:after{
    background: url(../icons/icons-20.png);
    background-position: -22px 0;
    background-color: #f24841;
    border: 1px solid #f24841;
    border-radius: 2px;
}

.icon-circle-plus:after{
    background: url(../icons/icons-20.png);
    background-position: -60px 0;
}

.icon-circle-delete:after{
    background: url(../icons/icons-20.png);
    background-position: -40px 0;
}
.icon-circle-delete-custom:after{
    background: url(../icons/icons-20.png);
    background-position: -40px 0;
}

.btn-icon.gray-filter:after{
    -webkit-filter: grayscale(1);
    filter: gray;
    filter: grayscale(1);
    opacity: 0.3;

    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
}

.btn-icon.gray-filter:hover:after,
.btn-icon.gray-filter:focus:after{
    -webkit-filter: grayscale(0);
    filter: none;
    filter: grayscale(0);
    opacity: 1;
}

.btn.btn-default.btn-reload-page{
    background-color: #FFF;
}
.btn.btn-default.btn-reload-page:hover,
.btn.btn-default.btn-reload-page:focus{
    background-color: #4a86bd;
}
.btn-import-info .icon-import-info {
    display: inline-block;
    width: 19px;
    height: 19px;
    background: url(../icons/question.png) 0 0 no-repeat;
}
.btn.as-link.import {
    margin-right: 0px;
}
.btn-import-info {
    margin-top: 5px;
}



.dropdown-menu .menu-icon{
    width: 25px;
    height: 25px;
    display: block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
    float: left;
    background: url(../icons/menu-icon-25.png) 0 0 no-repeat;
    background-position: 0 0;
    margin-right: 24px;
}

.dropdown-menu li:hover > a > .menu-icon{
    background: url(../icons/menu-icon-25-hover.png) 0 0 no-repeat;
}

.dropdown-menu .menu-icon.info,
.dropdown-menu li:hover > a > .menu-icon.info{
    background-position: -25px 0;
}

.dropdown-menu .menu-icon.ved,
.dropdown-menu li:hover > a > .menu-icon.ved{
    background-position: -100px 0;
}

.dropdown-menu .menu-icon.requests,
.dropdown-menu li:hover > a > .menu-icon.requests{
    background-position: -50px 0;
}

.dropdown-menu .menu-icon.profile,
.dropdown-menu li:hover > a > .menu-icon.profile{
    background-position: -125px 0;
}

.dropdown-menu .menu-icon.contacts,
.dropdown-menu li:hover > a > .menu-icon.contacts{  
    background-position: -150px 0;
}

.dropdown-menu .menu-icon.schedule,
.dropdown-menu li:hover > a > .menu-icon.schedule{
    background-position: -75px 0;
}

.dropdown-menu .menu-icon.main,
.dropdown-menu li:hover > a > .menu-icon.main{
    background-position: -200px 0;
}

.dropdown-menu .menu-icon.reporting,
.dropdown-menu li:hover > a > .menu-icon.reporting{
    background-position: -225px 0;
}

.header-icon{
    width: 39px;
    height: 38px;
    display: block;
    background: url('../icons/headers-39.png');
    display: inline-block;
    margin-right: 15px;
    margin-top: -4px;
}

.header-icon.main{
    background-position: 0 0;
}

.icon-27{
    background: url('../icons/icons-27.png');
    display: inline-block;
    width: 27px;
    height: 27px;
}

.icon-20{
    background: url('../icons/icons-20.png');
    display: inline-block;
    width: 20px;
    height: 20px;
}

.icon-20.date{
    background-position: -139px 0;
}

.icon-20.time{
    background-position: -160px 0;
}

.icon-20.classroom{
    background-position: -180px 0;
}

.icon-29{
    background: url('../icons/icons-29.png');
    display: inline-block;
    width: 29px;
    height: 29px;
}

.icon-29.play{
    background-position: -29px 0;
}

.process .icon-29.play{
    background-position: -58px 0;
}

.icon-20.time-green{
    background-position: 0 0;
}

.icon-chekbox{
    background: url('../icons/checkbox-23.png');
    display: inline-block;
    width: 23px;
    height: 21px;
}

.icon-chekbox.checked{
    background-position: 0 0;
}

.icon-chekbox.unchecked{
    background-position: -23px 0;
}

h4 > [class^=icon-]{
    position: relative;
    margin-right: 10px;
}

h4 > .icon-20{
    top: 3px;
}

.icons-views-tiles{
    width: 44px;
    height: 42px;
    display: inline-block;
    background-image: url(../icons/icons-views-tiles-2.png);
    background-repeat:no-repeat;
    margin-left: 20px !important;
    margin-right: 20px !important;
    padding: 2px;
    border: 1px solid #FFF;
}

.icons-views-tiles.tiles-1{
    background-position: 0 0;
}

.icons-views-tiles.tiles-2{
    background-position: -40px 0;
}

.icons-views-tiles.tiles-3{
    background-position: -80px 1px;
}

.icons-views-tiles.tiles-4{
    background-position: -120px 1px;
}

.icons-views-tiles.tiles-5{
    width: 62px;
    background-position: -160px 1px;
}

.icons-views-tiles.tiles-6{
    width: 62px;
    background-position: -220px 1px;
}

.icons-views-tiles:focus,   
.icons-views-tiles.active{
    outline: none;
    box-shadow: none;
    border: 1px solid #478aca;
    background-image: url(../icons/icons-views-tiles-2.png);
    border-radius: 0;
}


/*========== Labels =============*/

.form-group .control-label{
    font-family: "Roboto Regular", sans-serif;
    font-size: 15px;
    line-height: 1.2;
}

.has-success .control-label,
.has-error .control-label{
    color: inherit;
}

#filter-panel .form-group .control-label {
    line-height: 3;
}

/*========= Inputs ============*/

.form-group-multiple-input.has-error .form-control{
    border-color: rgb(209, 209, 209);
}

.form-group-multiple-input.has-error .form-control:focus{
    border-color: #0178aa;
}

.form-control{
    font-family: "Roboto Light", sans-serif;
    border: 1px solid rgb(209, 209, 209);
    border-radius: 2px;
    background-color: rgb(251, 251, 253);
    box-shadow: none;
    outline: none;
}

.form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus{
    box-shadow: none;
}

.form-control:focus{
    border-color: #0178aa;
}

.form-control[readonly]:focus{
    border-color: rgb(209, 209, 209);
}

.form-control.as-text{
    overflow: hidden;
    white-space: nowrap;
}

/*.has-success .form-control,
.has-success .form-control:focus{
    
}*/

.has-error .form-control,
.has-error .form-control:focus,
.has-error.select2-container--krajee .select2-dropdown, 
.has-error .select2-container--krajee .select2-selection,
.has-error .select2-container--open .select2-selection, 
.has-error .select2-container--krajee.select2-container--focus .select2-selection{
    border-color: #ff5252;
    box-shadow: none;
}

/*.form-group.has-error .select2-container--open .select2-selection, 
.form-group.has-error .select2-container--krajee.select2-container--focus .select2-selection{
    border-color: #ff5252;
}*/

.input-span {
    display: flex;
}

.input-span > *{
    margin: auto;
}

.input-span > span:first-child{
    margin-right: 10px;
}

.input-span.icon-input-span > span:first-child{
    margin-right: 5px;
}

.input-filter-group {
    position: relative;
}

.input-filter-group > input{
    padding-right: 76px;
}

.input-filter-group > .btn-icon{
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.input-filter-group > .btn-icon.icon-circle-delete{
    margin-right: 15px;
}

.input-filter-group > .btn-icon.icon-circle-success{
    margin-right: 45px;
}

div.required label:after {
    content: " *";
    color: red;
}

input[type="text"]:invalid + span[alt="clear"].clear-input{
    display: none;
}

input[type="text"] + span[alt="clear"].clear-input
{
    position: absolute;
    cursor: pointer;
    top: 12px;
    right: 25px;
    opacity: 0.8;
}

/*========== Errors ==========*/

.has-error .help-block{
    color: #ff5252;
}

.form-group .help-block{
    font-family: "Roboto Light Italic", sans-serif;
}

/*============ Margins==========*/
.ml-5{
    margin-left: 5px;
}

.ml-10{
    margin-left: 10px;
}

.ml-25{
    margin-left: 25px;
}

.ml-40{
    margin-left: 40px;
}

.mr-5{
    margin-right: 5px;
}

.mr-8{
    margin-right: 8px;
}

.mr-10{
    margin-right: 10px;
}

.mr-15{
    margin-right: 15px;
}

.mr-20{
    margin-right: 20px;
}

.mr-25{
    margin-right: 25px;
}

.mr-40{
    margin-right: 40px;
}

.mr-45{
    margin-right: 45px;
}

.mr-28{
    margin-right: 28px;
}

.mb-0{
    margin-bottom: 0px !important;
}

.mb-5{
    margin-bottom: 5px;
}

.mb-15{
    margin-bottom: 15px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-50{
    margin-bottom: 40px;
}

.mb-25{
    margin-bottom: 25px;
}

.mt-0{
    margin-top: 0px !important;
}

.mt-5{
    margin-top: 5px;
}

.mt-10{
    margin-top: 10px;
}

.mt-15{
    margin-top: 15px;
}

.mt-20{
    margin-top: 20px;
}

.mt-25{
    margin-top: 25px;
}

.mt-30{
    margin-top: 30px;
}

.mt-40{
    margin-top: 40px;
}

.mt-60{
    margin-top: 60px;
}

.mlr-5{
    margin-left: 5px;
    margin-right: 5px;
}

/*============== Widths =========*/

.w-40{
    width: 40px;
}

.w-70{
    width: 70px;
}

.w-85{
    width: 85px;
}

.w-105{
    width: 105px;
}

.w-100{
    width: 100px;
}

.w-110{
    width: 110px;
}

.w-115{
    width: 115px;
}

.w-120{
    width: 120px;
}

.w-130{
    width: 130px;
}

.w-135{
    width: 135px;
}

.w-140{
    width: 140px;
}

.w-150{
    width: 150px;
}

.w-160{
    width: 160px;
}

.w-165{
    width: 165px;
}

.w-170{
    width: 170px;
}

.w-180{
    width: 180px;
}

.w-185{
    width: 185px;
}

.w-190{
    width: 190px;
}

.w-200{
    width: 200px;
}

.w-210{
    width: 210px;
    max-width: 100%;
}

.w-220{
    width: 220px;
    max-width: 100%;
}

.w-227{
    width: 227px;
    max-width: 100%;
}

.w-260{
    width: 260px;
    max-width: 100%;
}

.w-270{
    width: 270px;
    max-width: 100%;
}

.w-280{
    width: 280px;
    max-width: 100%;
}

.w-375{
    width: 375px;
    max-width: 100%;
}

.w-380{
    width: 380px;
    max-width: 100%;
}

.w-500{
    width: 500px;
    max-width: 100%;
}

.w-522{
    width: 522px;
    max-width: 100%;
}

.w-628{
    width: 628px;
    max-width: 100%;
}

.w-992{
    width: 992px;
    max-width: 100%;
}

.full-width{
    width: 100%;
}

.wh-15{
    width: 15px;
    height: 15px;
    display: block;
}

.btn-actions-row > .btn.pull-right{
    margin-left: 20px;
}

/*============ Forms =========*/

@media (min-width: 992px){
    .form-separated-header{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.form-separated-header > h3{
    font-family: "Roboto Regular", sans-serif;
    text-align: center;
    margin-bottom: 0;
}

.form-separated-header > form{
    padding-top: 55px;
    /*border-top: 1px solid #bfbfbf;*/
}

.form-separated-header > form .btn[type=submit]{   
    margin-top: 50px;
}

.login-form,
.register-form{
    max-width: 556px;
    margin: auto;
}
.register-form {
    max-width: 656px;
}

.form-inline-groups{
    width: 100%;
    display: inline-block;
}

.form-inline-groups.flex{
    display: inline-flex;
}

.form-inline-groups > .form-group{
    float: left;
}

.form-inline-groups > .form-group:not(:last-child){
    margin-right: 30px;
}

.form-actions{
    margin-top: 30px;
    padding-top: 40px;
    border-top: 1px solid rgb(191, 191, 191);
}

.form-actions > .btn.pull-right:not(:last-child){
    margin-left: 30px;
}

@media (max-width:767px){
    .form-inline-groups.flex{
        display: flex;
        flex-flow: row wrap;
    }
}


/*========== Panels ===========*/

.top-header-panel{
    color: #fff;
    text-align: center;
    position: fixed;
    top: 0px;
    z-index: 1031;
    left: 0;
    right: 0;
    height: 70px;
    display: inline-flex;
}

.top-header-panel + h3{
    margin-top: 0px;
}

.top-header-panel > *{
    margin: auto;
    width: auto;
}

.top-header-panel > * > *{
    margin: auto;
}

.top-header-panel > * > *{
    float: left;
}

.top-header-panel > * > *:not(:last-child){
    margin-right: 25px;
}

.top-header-panel > * > h3{
    line-height: calc(100% - 5px);
}

.top-header-panel .form-control{
    height: 24px;
    padding: 2px 5px;
}

.top-header-panel .menu{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    text-align: left;
}


/*============== Header ============*/

.top-header-baground{
    height: 70px;
    background-color: #478aca;
    border-bottom: 5px solid #356694    ;
    color: #fff;
    z-index: 1060;
}

.navbar-nav{
    display: none;
}

.top-header-menu{
    position: fixed;
    height:55px;
    /*width:56px;*/
    z-index: 1062;
    padding: 0;
    top: 0;
    display: table !important;
}

.top-header-menu > *{
    display: table-cell;
}

.top-header-menu > .title{
    width: 100%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

.top-header-menu > .title > *{
    margin: auto;
}

@media (max-width: 767px){
    .top-header-menu {
        width: 100%;
    }

    .top-header-menu .search-menu .dropdown-menu{
        max-width: 390px;
        width: 390px;
    }
}

@media (min-width: 768px){
    .top-header-menu {
        width: 750px;
    }

    .top-header-menu .search-menu .dropdown-menu{
        max-width: 694px;
        width: 694px;
    }
}

@media (min-width: 992px){
    .top-header-menu {
        width: 970px;
    } 

    .top-header-menu .search-menu .dropdown-menu{
        max-width: 914px;
        width: 914px;
    }
}

@media (min-width: 1200px){
    .top-header-menu {
        width: 1170px;
    }

    .top-header-menu .search-menu .dropdown-menu{
        max-width: 1114px;
        width: 1114px;
    }
}

.top-header-menu .dropdown-menu{
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
    width: 225px;
    min-width: 150px;
}

.top-header-menu .menu.profile-menu .dropdown-menu{
    min-width: 170px;
}

.top-header-menu .open > .dropdown-menu{
    opacity: 1;
}

.top-header-menu .dropdown.menu a{
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
}

.top-header-menu .dropdown.menu > a{
    display: block;
    margin-top: 10px;
    padding: 12px 15px 24px;
    width: 56px;
    cursor: pointer;
}

.top-header-menu .dropdown.menu.search-menu > a{
    padding: 12px 15px 21px;
}

.top-header-menu .dropdown.menu > a:before{
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background-position: 0 0;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: all;
    transition-property: all;
}    

.top-header-menu .dropdown.menu > a:before{
    background: url('../icons/menu-icon-25.png');
}

.top-header-menu .dropdown.menu.open > a:before{
    background: url('../icons/menu-icon-25-hover.png');
}

.top-header-menu .dropdown.menu > a:before,
.top-header-menu .dropdown.menu.main-menu.open > a:before{
    background-position: 0 0;
}

.top-header-menu .dropdown.menu.profile-menu > a:before,
.top-header-menu .dropdown.menu.profile-menu.open > a:before{
    background-position: -175px 0;
}

.top-header-menu .dropdown.menu.search-menu > a:before{
    width: 27px;
    height: 27px;
    background: url('../icons/icons-27.png');
    background-position: 0 0;
}

.top-header-menu .dropdown.menu.search-menu.open > a:before{
    background: url('../icons/icons-27-hover.png');
    background-position: 0 0;
}

.top-header-menu .dropdown.menu.open > a{
    background-color: #fff;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu{
    margin-top: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: calc(100vh - 70px);
    overflow: auto;
}

.top-header-menu .dropdown.menu.main-menu.open > .dropdown-menu{
    box-shadow: 0px 13px 18.8px 1.2px rgba(0, 0, 0, 0.22);
}

.top-header-menu .dropdown.menu.profile-menu.open > .dropdown-menu,
.top-header-menu .dropdown.menu.search-menu.open > .dropdown-menu{
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.17);
}

.top-header-menu .dropdown.menu.profile-menu .profile-name {
    width: 390px;
    display: block;
    position: absolute;
    right: 100%;
    margin-right: 10px;
    text-align: right;
    top: 24px;
    font-size: 14px;
    font-family: "Roboto Meduim", sans-serif;
    color: #FFF;
    line-height: 1.1;
    font-weight: 500;
}

.top-header-menu .dropdown.menu.search-menu + .dropdown.menu.profile-menu > .profile-name {
    right: 200%;
}

@media (max-width: 1199px) {
    .top-header-menu .dropdown.menu.profile-menu .profile-name {
        width: 315px;
    }
}

@media (max-width: 991px) {
    .top-header-menu .dropdown.menu.profile-menu .profile-name {
        display: none;
    }
}

.top-header-menu .dropdown.menu.search-menu.open > .dropdown-menu{
    padding: 20px 15px;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li > a{
    padding: 20px;
    font-family: "Roboto Regular", sans-serif;
    font-size: 16px;
    outline: none !important;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li:not(:last-child){
    border-bottom: 1px solid #dddddd;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li:hover:not(:last-child){
    border-bottom: 1px solid #5596d3;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li.role-item:not(:last-child),
.top-header-menu .dropdown.menu.open > .dropdown-menu > li.divider:not(:last-child) {
    border-bottom: none;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li.role-item.role-item-active {
    padding: 20px;
    font-size: 16px;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li:hover > a{
    background-color: #4b86be;
    color: #fff;
}

.top-header-menu .dropdown.menu .dropdown-submenu > ul{
    padding: 0px;
    list-style-type: none;
    font-size: 15px;
    text-align: center;
    
    
}

@media screen and (min-width: 992px) {
    body:not(.pointer-touch) .top-header-menu .dropdown.menu .dropdown-submenu > ul{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }
    
    body:not(.pointer-touch) .top-header-menu .dropdown.menu.open .dropdown-submenu:hover > ul{
        max-height: 700px;
        transition: max-height 1s ease-in-out;
    }
}

.top-header-menu .dropdown.menu.open .dropdown-submenu > ul > li{
    
}

.top-header-menu .dropdown.menu.open .dropdown-submenu > ul a{
    /*padding: 10px 20px 10px 40px;*/
    padding: 10px 20px;
    width: 100%;
    display: block;
    text-decoration: none !important;
    border-bottom: 1px solid #dddddd;
    outline: none !important;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
    font-weight: 600;
}

.top-header-menu .dropdown.menu.open .dropdown-submenu > ul > li:last-child a{
    border-bottom: none;
}

.top-header-menu .dropdown.menu.open .dropdown-submenu > ul > li:first-child a{
    border-top: 1px solid #dddddd;
}

.top-header-menu .dropdown.menu.open .dropdown-submenu > ul > li:hover a{
    background-color: #4b86be;
    color: #fff !important;
}

.top-header-menu .dropdown.menu.open > .dropdown-menu > li.dropdown-submenu:hover:not(:last-child){
    border-color: #dddddd;
}

@media (max-width:767px){
    .container .top-header-menu{
        display: block;
        margin-top: -1px;
        margin-left: 0;
        left: 0;
        top: 0;
    }
}

@media (max-width:460px){
    .top-header-menu .dropdown.menu.search-menu.open > .dropdown-menu{
        margin-right: -55px;
        max-width: 100vw;
    }
}

/*============== Tabs ==============*/

.nav-tabs{
    border-color: #0178aa;
}
.nav-tabs > li{
    border-bottom: 1px solid #0178aa;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active:hover > a{
    background-color: #0178aa;
    border-color:  #0178aa;
    color: #fff;
}

.nav-tabs > li:hover > a,
.nav-tabs > li > a:hover{
    background-color: #0197d6;
    border-color: #0197d6;
    color: #fff;
}

.nav-tabs > li.dropdown.open > a{
    background-color: #0197d6;
    border-color: #0197d6;
}

/*============= Footer ===========*/

.footer{
    font-family: "Roboto Light", sans-serif;
    font-size: 12px;
    background-color: #478aca;
    color: #fff;
    padding: 10px 0px 8px;
    height: auto;
}

.footer p{
    margin-bottom: 0px;
}


/*============= Links ==============*/

a{
    color: #0178aa;
}

a:hover,
a:focus{
    color: #0197d6;
}

a.as-block{
    color: inherit;  
    display: block;
}

a.as-block:hover,
cas-block:focus{
    text-decoration: none;
}

a.underline{
    text-decoration: underline;
}

a.regular{
    font-size: 15px;
    text-decoration: underline;
}

a.c-inherit{
    color: inherit;
}

a[data-toggle=modal]{
    outline: none !important;
}

/*============ Main tiles =========*/

.main-title > .block-item{
    padding: 20px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
}

.main-title > .block-item > *{
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
}


.main-title > .block-item > *:first-child{
    margin-top: 0px;
    padding-top: 0px;
}

.main-title > .block-item > *:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.main-title > .block-item > h3{
    margin-bottom: 15px;
}

/*============= Blocks ===========*/

.block-group{
    margin-bottom: 10px;
}

.block-hover-border > .block-item{
    border: 1px solid transparent;
    border-radius: 4px;
    height: 100%;   
    position: relative;
}

.block-hover-border.blue:hover > .block-item{
    border-color: #5596d3;
}

.block-hover-border.blue:hover .block-header{
    color: #5596d3;
}

.block-hover-left-border > .block-item{
    border-left: 4px solid transparent;
}

.block-hover-left-border.blue:hover > .block-item:before{
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    width: 4px;
    background-color: #5596d3;
}

.block-hover-left-border.blue:hover .block-header{
    color: #5596d3;
}


.block-group.main{
    display: block;
    flex-grow: 1;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

.block-group.main > div{
    position: absolute !important;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #478aca;
    border-radius: 10px;
    max-width: 510px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.block-group.main .block-item{
    color: #fff;
    position: relative;
    max-width: 510px;
    height: 100%;
    margin: auto;
    position: relative;
    z-index: 2;
    max-width: 510px;
}

.block-group.main .block-header{
    text-transform: uppercase;
    margin-bottom: 15px;
}

.block-group.main .block-body{
    font-size: 22px;
    font-family: "Roboto Light", sans-serif;
    line-height: 1.2;
}

@media (max-width:509px){

}

@media (min-width:510px){
    .block-group.main .block-item{
        padding: 40px 152px 40px 30px;
    }

    .block-group.main .block-item:after{
        content: '';
        position: absolute;
        top: 34px;
        right: 10px;
        bottom: 0;
        margin: auto;
        width: 153px;
        height: 160px;
        background: url(../icons/main-148.png)
    }

    .block-group.main .block-item.info:after{
        background-position: -3px 0;
    }
    .block-group.main .block-item.shedule:after{
        background-position: -173px 0;
    }
    .block-group.main .block-item.requests:after{
        background-position: -335px 0;
    }
    .block-group.main .block-item.training-sheets:after{
        background-position: -507px 0;
    }
    .block-group.main .block-item.reporting:after{
        background-position: -679px 0;
    }
    .block-group.main .block-item.handbag:after{
        background-position: -837px 0;
    }
}

@media (min-width:992px){
    .block-group.main{
        width: calc(50% - 30px);
        margin-bottom: 76px;
    }
    .block-group.main .block-item{
        padding: 56px 152px 56px 30px;
    }
}


/*============= Tables ==========*/

.align-middle{
    vertical-align: middle !important;
}

.align-bottom{
    vertical-align: bottom !important;
}

table.table  > thead,
table.table  > tbody{
    background-color: #fff;
}

table.table > thead > tr > th,
table.table > thead > tr > th > a{
    position: relative;
}

table.table > thead > tr > th > a{
    display: block;
}

table.table > thead > tr > th > a.asc:after,
table.table > thead > tr > th > a.desc:after{
    content: '';
    background: url(../icons/icons-20.png);
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
}

table.table > thead > tr > th > select{
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 18px;
    border: none;
    border-top: 1px solid #ddd;
    cursor: pointer;
    background-color: inherit;
    border-color: inherit;
    color: transparent;
}

table.table > thead > tr > th > select:before{
    content: '';
}

table.table > thead > tr > th > select option{
    color: #478aca;
}

table.table > thead > tr > th > a.asc:after{
    background-position: -100px -5px;
}

table.table > thead > tr > th > a.desc:after{
    background-position: -100px 2px;
    transform: rotate(180deg);
}

table.table  thead > tr > th,
table.table  tbody > tr > th{
    font-family: "Roboto Regular", sans-serif;
    font-size: 10px;
    vertical-align: top;
}

table.table  > thead > tr > th,
table.table.table-condensed > thead > tr > th{
    height: 36px;
    padding: 17px 15px;
    border-left: 1px solid #ddd;
    color: #356694;
    font-size: 14px;
    font-weight: inherit;
}

table.table > tbody > tr > td,
table.table.table-condensed > tbody > tr > td{
    padding: 10px 15px;
}

table.table > thead > tr,
table.table > tbody > tr{
    border: 1px solid #ddd;
}

table.table > thead > tr.filters{
    border-top: 2px solid #ddd;
}

table.table > thead > tr.filters.extend-filters{
    display: none !important;
}

table.table > thead{
    border-bottom: 2px solid #ddd;
}

.multiple-input{
    overflow: auto;
}

.multiple-input table.table.multiple-input-list tbody > tr > td {
    padding-left: 5px;
}

table.table.multiple-input-list.table-condensed > tbody > tr > td{
    border-left: 1px solid #ddd !important;
}

table.table .list-cell__button,
.form-group-multiple-input table.table .list-cell__button {
    display: none;
}

table.table thead > tr:after,
table.table tbody > tr:after{
    content: '';
    width: 1px;
    display: table-caption;
}

.table > tbody > tr.success{
    background-color: #dff0d8;
}

.table > tbody > tr.info{
    background-color: #d9edf7;
}

.table > tbody > tr.danger{
    background-color: #f2dede;
}

table.table > tbody > tr.grid-row-pale-yellow {
    background: #FFFFE3;
}

table.table > tbody > tr.grid-row-pale-grey {
    background: #F5F5F5;
}

.disable-tr-colors .table >tbody > tr.success,
.disable-tr-colors .table >tbody > tr.success td,
.disable-tr-colors .table >tbody > tr.info,
.disable-tr-colors .table >tbody > tr.info td,
.disable-tr-colors .table >tbody > tr.danger,
.disable-tr-colors .table >tbody > tr.danger td{
    background-color: inherit;
}

.clicked-row tbody tr:hover{
    cursor: pointer;
    background-color: rgb(219, 238, 255);
}

table.table thead > tr.filters > td:last-child{
    border-right: none;
}

table.table.table-bordered > thead > tr > th:last-child,
table.table.table-bordered > tbody > tr > td:last-child{
    border-right: none;
}

table.table .list-cell__actions,
table.table.multiple-input-list.table-condensed > tbody > tr > td.list-cell__actions{
    border-left: none !important;
    vertical-align: top;
}

table.table .list-cell__actions .form-control-static{
    padding: 8px 0 0 0;
    min-height: 20px;
}

.table-actions-row{
    margin-top: 15px;
    padding: 0 3px;
}

.table-actions-row > * + *{
    margin-right: 22px;
}

.table-actions-row .btn > .btn-import-info {
    padding-left: 10px;
}

.table-accordion > table .td-accordion[data-depth="1"]{
    font-weight: bold;
    cursor: pointer;
}

.table-accordion > table .td-accordion.td-dropdown{
    cursor: pointer;
}

.td-middle > table.table > tbody > tr > td{
    vertical-align: middle;
}

.table-accordion > table .td-accordion.td-dropdown:after{
    content: '';
    background: url(../icons/icons-20.png);
    width: 20px;
    height: 20px;
    margin: auto;
    display: block;
    background-position: -120px 0;
    float: right;
}

.table-accordion > table tr.closed > .td-accordion.td-dropdown:after{
    transform: rotate(-90deg);
}

/*td-accordion td-dropdown*/

.table-accordion > table .td-accordion[data-depth="2"]{
    padding-left: 45px;
    position: relative;
}

.table-accordion > table .td-accordion.td-li:before{
    content: '';
    position: absolute;
    background-color: #07b427;
    width: 4px;
    height: 4px;
    display: block;
    border: 1px solid #07b427;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: -12px;
}

.table-accordion > table .td-accordion.td-li[data-depth="2"]{
    padding-left: 40px;
    position: relative;
}

.table-accordion > table .td-accordion[data-depth="3"]{
    padding-left: 70px;
}

.table-accordion > table .td-accordion.td-li[data-depth="3"]{
    padding-left: 57px;
    position: relative;
}

td.evaluation .cbx{
    width: 52px;
    height: 36px;
    box-shadow: none;
    border-color: #ccc !important;
}

td.evaluation .cbx .cbx-icon{
    height: 21px;
    margin: auto;
}

.table.table-lilac{

}

.table.table-lilac thead tr,
.table.table-lilac thead tr th,
.table.table-lilac tbody tr,
.table.table-lilac tbody tr th,
.table.table-lilac tbody tr td{
    border-color: rgb(167, 200, 233);
}

.table.table-lilac .header{
    padding: 5px 10px;
    background-color:  rgb(202, 227, 251);
}

.table.table-lilac .subheader{
    background-color: rgba(202, 227, 251, .2);
}

.without-after thead tr:after,
.without-after tbody tr:after{
    content: none !important;
}

.table.table-lilac .seleted{
    background-color: rgb(219, 238, 255);
    border-color: rgb(53, 102, 148);
    border-width: 2px;
}

.table.table-lilac tbody tr:first-child .seleted{
    border-top-width: 3px;
}

.without-after .table-bordered > thead > tr > th:last-child, 
.without-after .table-bordered > tbody > tr > td:last-child{
    border-right: inherit !important;
}

.table .th-green{
    background-color: rgba(7, 180, 39, .102);
    color: rgb(7, 180, 39);
}

.table.table-schedule tbody > tr > td{
    padding: 10px 5px;
    min-width: 15px;
}

.table.table-schedule thead tr:first-child th:first-child,
.table.table-schedule tbody tr th{
    width: 9%;
}

.table.table-schedule td{
    font-size: 10px;
}

@media (min-width:1200px){
    .table.table-schedule td{
        height: 62px;
    }
}

@media (max-width:1199px){
    .table.table-schedule td{
        height: 78px;
    }
}

.table-header-center thead tr:not(.filters) th{
    text-align: center;
}

.table-align-middle thead tr:not(.filters) th{
    vertical-align: middle;
}

.display-table-cell{
    display: table-cell;
}

.display-table-cell > h3{
    text-transform: capitalize;
}

.table-header-highlighted thead tr:not(.filters){
    background-color: #cae3fb;
    color: #356694;
}

.table-header-highlighted thead tr:not(.filters),
.table-header-highlighted thead tr:not(.filters) th{
    border-color: rgb(167, 200, 233) !important;
}

.table-header-highlighted thead tr:not(.filters) th,
.table-header-highlighted thead tr:not(.filters) th:hover{
    background-color: transparent;
}

.table-header-highlighted thead tr th{
    background-color: inherit;
}

.request-table .module{
    min-width: 300px;
}

.training-sheet-table .module{
    min-width: 300px;
}


@media (min-width:1200px){
    .request-table .time_end_exam{
        min-width: 150px;
    }

    .training-sheet-table tbody td,
    .request-table tbody td{
        height: 61px;
    }
}

@media (max-width:1199px){
    .request-table .time_end_exam{
        min-width: 107px;
    }

    .training-sheet-table tbody td,
    .request-table tbody td{
        height: 81px;
    }
}

.table-header-bottom-panel{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
    cursor: pointer;
}

.table-header-bottom-panel.filter-select > *{
    opacity: 0;
    height: calc(100% + 1px);
    margin-left: -3px;
}

.table-header-bottom-panel > *{
    width: 100%;
}

.table-header-bottom-panel > .dropdown-menu{
    padding: 0;
    margin-top: 2px;
    border-color: inherit;
    border-width: 0;
}

.table-header-bottom-panel.only-form-control > .dropdown-menu{
    border-radius: 0px;
}

.table-header-bottom-panel.only-form-control > .dropdown-menu .form-control{
    border-color: rgb(53, 102, 148);
    border-radius: 0;
}

.table-header-bottom-panel.only-form-control > .dropdown-menu .input-filter-group input{
    padding-right: 33px;
}
.table-header-bottom-panel.only-form-control > .dropdown-menu .input-filter-group .btn-icon.icon-circle-delete{
    margin-right: 9px;
}

.table-header-bottom-panel .select2-container .select2-selection{
    border-radius: 0;
    border-top-color: inherit;
    margin-top: -1px;
    height: 35px;
    box-shadow: none;
}

.table-header-bottom-panel .select2-selection__clear{
    top: 0.2rem;
    font-size: 24px;
}

.table-header-bottom-panel .select2-selection,
.table-header-bottom-panel .select2-selection *{
    color: inherit !important;
}

@media (min-width:1199px){
    table.table > thead > tr > th.th-filter-column{
        padding-bottom: 35px;
    }

    .table-header-bottom-panel{
        height: 25px;
    }

    .table-header-bottom-panel > .dropdown-toggle{
        line-height: 25px;
    }

    .table-header-bottom-panel.only-form-control > .dropdown-menu .form-control{
        height: 40px;
    }
}


@media (min-width:768px) and (max-width: 1200px){
    table.table > thead > tr > th.th-filter-column {
        padding-bottom: 50px;
    }

    .table-header-bottom-panel{
        height: 40px;
    }

    .table-header-bottom-panel > .dropdown-toggle{
        line-height: 40px;
    }

    .table-header-bottom-panel.only-form-control > .dropdown-menu .form-control{
        height: 50px;
    }
}

@media (max-width: 767px){
    table.table > thead > tr > th.th-filter-column {
        padding-bottom: 60px;
    }

    .table-header-bottom-panel{
        height: 50px;
    }

    .table-header-bottom-panel > .dropdown-toggle{
        line-height: 50px;
    }

    .table-header-bottom-panel.only-form-control > .dropdown-menu .form-control{
        height: 60px;
    }
}

table tbody tr.table-row-disable{
    background-color: #eee !important;
    border-color: #bbb !important;
    color: #333 !important;
    opacity: 0.6 !important;
    cursor: default !important;
}

@media screen and (max-width: 991px){
    .as-table-fixed-cell-above-sm{
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    
    body .wrap .as-table-fixed-cell-above-sm > *{
        display: table-cell;
        float: none;
    }
}

.table > tbody > tr.kv-expand-detail-row > td {
    padding: 0;
}
.table > tbody > tr.kv-expand-detail-row > td table.table {
    margin: 0;
}
.kv-grid-table.table > tbody > tr > td.kv-expand-icon-cell .kv-expand-icon .glyphicon {
    font-size: 14px;
}

#gr-tbl-students > table.table thead > tr:after,
#gr-tbl-students > table.table tbody > tr:after {
    content: none;
}

#gr-tbl-students > table.table > thead > tr,
#gr-tbl-students > table.table > tbody > tr {
    background-color: #F5F5F5;
}

#gr-tbl-students > table.table > tbody > tr,
#gr-tbl-students > table.table > thead > tr > th,
#gr-tbl-students > table.table > tbody > tr > td {
    background-color: #FFF;
}
#gr-tbl-students > table.table > tbody > tr > td {
    position: relative;
}
#gr-tbl-students > table.table > tbody > tr > td.gr-cell-text-success {
    color: #4CAF50;
}
#gr-tbl-students > table.table > thead > tr > th.gr-cell-training {
    background-color: #7DB0CA;
}
#gr-tbl-students > table.table > thead > tr > th.gr-cell-exams {
    background-color: #D29ED2;
}
#gr-tbl-students > table.table > thead > tr > th.gr-cell-training > a,
#gr-tbl-students > table.table > thead > tr > th.gr-cell-exams > a {
    color: #FFF;
}
#gr-tbl-students > table.table > tbody > tr > td.gr-cell-not-present {
    background-color: #F5F5F5;
}
#gr-tbl-students > table.table > thead > tr > th:hover > a.linkage,
#gr-tbl-students > table.table > tbody > tr > td:hover > a.linkage {
    width: 0;
    height: 0;
    position: absolute;
    display:block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #EEE;
    right: 5px;
    bottom: 5px;
    margin-left: -5px;
}
#gr-tbl-students > table.table > tbody > tr > td:hover > a.linkage {
    border-left: 5px solid #BBB;
}

/*============ Fields ============*/

.signature{
    border-bottom: 1px solid rgb(209, 209, 209);
    color: rgb(209, 209, 209);
    height: 100%;
    position: relative;
}

.signature:after{
    content: 'Подпись';
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    bottom: 10px;
}

/*=========== Sedebars ==========*/

.sidebar-group{
    position: relative;
    min-height: 90px;
}

.bottom-absolute{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.bottom-absolute-0{
    position: absolute;
    bottom: 0;
    left: 17px;
}

/*============ Progress ==========*/

.progress{
    height: 30px;
}

.progress-bar{
    background: #0197d6;
    font-size: 14px;
    padding: 5px 0px;
}


/*============ ==========*/

.block-sidebar{
    display: flex;
    flex-flow: row wrap;
}

.block-sidebar > *{
    float: left;
}

.block-sidebar > .block table{
    margin-bottom: 0px;
}

.block-sidebar > .sidebar > .params{
    margin: auto;
    height: 100%;
    margin-right: 0px;
}

@media (min-width:768px){
    .block-sidebar > .block{
        width: 76%;
    }
    .block-sidebar > .sidebar{
        width: 24%;
    }
}

@media (max-width:767px){
    .block-sidebar > .block,
    .block-sidebar > .sidebar{
        width: 100%;
    }
}
/*============ Calendar ===========*/

.datepicker-as-inline .kv-date-calendar{
    background-color: transparent !important;
    border: none !important;
    padding: 0;
}

.datepicker-as-inline .kv-date-calendar i{
    background: url('../icons/icons-20.png');
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: -139px 0;
}

.datepicker-as-inline input{
    cursor: pointer;
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
}

.datepicker-as-inline input.krajee-datepicker{
    border: 1px solid #d1d1d1!important;
}

.request-calendar-block{
    display: block;
}

input.input-lg.krajee-datepicker{
    padding: 6px;
}

input.krajee-datepicker + .kv-date-calendar{
    padding: 6px;
}

input.krajee-datepicker.readonly-active{
    background-color: #fff;
    cursor: pointer;
}

input.krajee-datepicker + .kv-date-calendar > .glyphicon-calendar{
    background: url('../icons/icons-27.png');
    width: 27px;
    height: 28px;
    background-position: -27px 0;
    color: transparent;
}


.calendar .datepicker,
.calendar .datepicker table{
    width: 100%;
}

.calendar .datepicker table{
    border-collapse: separate;
    margin-top: -15px;
}
.calendar .datepicker .datepicker-days thead tr:last-child,
.calendar .datepicker .datepicker-days tbody{
    background-color: #f3f3f3;
}

.calendar .datepicker .datepicker-days thead th{
    height: 40px;
}

.calendar .datepicker .datepicker-days thead th,
.calendar .datepicker .datepicker-days td{
    font-size: 18px;
}

.calendar .datepicker .datepicker-days thead tr:last-child > th:nth-last-child(2),
.calendar .datepicker .datepicker-days thead tr:last-child > th:last-child{
    color: #f24841;
}

.calendar .datepicker table > tfoot{
    display: none;
}

.calendar th.datepicker-switch{
    font-family: "Roboto Regular", sans-serif;
    font-size: 24px;
}

.calendar .datepicker table tr td, 
.calendar .datepicker table tr th{
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 0px;
}

.calendar .datepicker table tr td.day.free:not(.active){
    background-color: #07b427;
    color: #fff;
}

.calendar .datepicker table tr td.active.day.disabled{
    background-color: transparent;
    color: inherit;
}

/*.calendar .datepicker table tr td:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;.
    background-color: #07b427;
    width: 35px;
    height: 30px;
    margin: auto;
}*/





.request-calendar-block{
    display: table;
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
}

.request-calendar-block > *{
    display: table-cell;
    vertical-align: top;
    padding: 20px 0;
}

.request-calendar-with-times-info{
    background-color: #f3f3f3;
    width: 420px;
    border-right: 1px solid #e3e3e3;
}

.request-calendar-with-times-info > *{
    padding: 20px 20px;
}

.request-calendar-with-times-info > *:not(:last-child){
    border-bottom: 1px solid #e3e3e3;
}

.request-calendar{

}

.request-rooms-with-trainings-container,
.request-wishful-datetime-with-trainings-container,
.request-checklist-from-trainings-container,
.request-preparation {
    padding: 20px 15px 20px 30px;
    display: block;
}

.request-calendar-subheader{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.request-calendar-block .times-btns .btn{
    min-width: 100px;
    font-size: 16px;
    min-height: 40px;
}

.request-calendar .params .rooms-btns > .btn.active{
    background-color: #438aca;
    border-color: #438aca;
    color: #fff;
}

.request-calendar .datepicker table tr td.active.active,
.request-calendar .datepicker table tr td.active.active:hover{
    background-color: #468ac9; 
    border-color: #468ac9; 
}

.request-calendar .params .times-btns > .btn.active{
    background-color: #286090;
    border-color: #286090;
}

.request-calendar .times-btns .btn.disabled{
    opacity: 1;
    background-color: transparent;
    color: inherit;
}

.calendar .calendar-table-wrapper{
    margin: 0 -2px 20px -2px;
}

@media (min-width:1200px){
}

@media (max-width:1199px){
}

.calendar .datepicker table{
    border-spacing: 2px;
}

@media (min-width:992px){
}

@media (max-width:991px) and (min-width:768px){
}

@media (min-width:768px){
}

@media (max-width:767px){
}

@media (max-width:767px) and (min-width:561px){
    .request-calendar .params .times-btns > *,
    .request-calendar .params .rooms-btns > *{
        width: calc(50% - 10px);
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .request-calendar .params .times-btns >*:nth-child(2n),
    .request-calendar .params .rooms-btns >*:nth-child(2n){
        margin-left: 10px;
    }

    .request-calendar .params .times-btns >*:nth-child(2n + 1),
    .request-calendar .params .rooms-btns >*:nth-child(2n + 1){
        margin-right: 10px;
    }
}

@media (max-width:560px){
    .request-calendar .params .times-btns > *,
    .request-calendar .params .rooms-btns > *{
        margin-bottom: 12px;
        margin-right: 20px;
    }
}

@media (max-width:991px){
}

.daterangepicker .range_inputs > *{
    display: block;
    width: 100%;
}

.daterangepicker .range_inputs > * + * {
    margin-top: 5px;
}

/*=========== Scroll ====================*/

.mCS-3d-thick-dark.mCSB_scrollTools_vertical{
    width: 28px;
}

.mCS-3d-thick-dark.mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar{
    width: 23px;
}

.mCS-3d-thick-dark.mCSB_inside>.mCSB_container{
    margin-right: 40px;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal{
    height: 26px;
}

.mCS-3d-thick.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
    height: 22px;
}

.mCSB_scrollTools.inset-custom.mCSB_scrollTools_horizontal{
    height: 22px;
}

.mCSB_scrollTools.inset-custom.mCSB_scrollTools_horizontal .mCSB_draggerRail{
    height: 20px;
    border-radius: 0;
}

.mCSB_scrollTools.inset-custom.mCSB_scrollTools_horizontal .mCSB_dragger_bar{
    height: 14px;
}


.mCSB_scrollTools.inset-custom.mCSB_scrollTools_vertical{
    width: 24px;
}

.mCSB_scrollTools.inset-custom.mCSB_scrollTools_vertical .mCSB_draggerRail{
    width: 20px;
    border-radius: 0;
}

.mCSB_scrollTools.inset-custom.mCSB_scrollTools_vertical .mCSB_dragger_bar{
    width: 14px;
}

.mCSB_scrollTools.lilac .mCSB_draggerRail{
    background-color: #c7dcef;
}

.mCSB_scrollTools.lilac .mCSB_dragger_bar,
.mCSB_scrollTools.lilac .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color: #269aff !important; 
}

.mCSB_scrollTools.site-theme .mCSB_draggerRail{
    background-color: #cae3fb;
}

.mCSB_scrollTools.site-theme .mCSB_dragger_bar,
.mCSB_scrollTools.site-theme .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color: #478aca !important;
}

.mCustomScrollBox.mCSB_horizontal.closely .mCSB_container:not(.mCS_x_hidden){
    margin-bottom: 20px;
}

/*=========== Modals =================*/
.modal img {
    width: 100%;
}
@media (min-width: 1200px){
    .modal.wide .modal-dialog {
        width: 1170px;
    }
    #comment-modal {
        top: 15%;
    }
}

@media (min-width: 992px) and (max-width:1199px){
    .modal.wide .modal-dialog {
        width: 970px;
    }
    #comment-modal {
        top: 10%;
    }
}

@media (min-width: 768px) and (max-width:991px){
    .modal.wide .modal-dialog {
        width: 750px;
    }
    #comment-modal {
        top: 5%;
    }
}

/*============ Statuses ===============*/

.label-success{
    background-color: #07b427;
}

.label-danger{
    background-color: #f24841
}

.label.label-block{
    display: block;
    width: 100%;
}

/*============= Checklist ==================*/
.checklist-view-actions-fixed-wrap{
    margin-top: -20px;
}

.checklist-view-actions-fixed-wrap{
    height: 151px;
}

.checklist-view-actions-fixed{
    padding: 25px 0;
}

.checklist-view-actions-fixed.fixed{
    position: fixed;
    width: 100%;
    top: 69px;
    left: 0;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.17);
}

.checklist-view-actions-fixed > *{
    margin: 0 17px;
}

/*============ Statuses ===============*/
/**
 *  @file
 *  @ingroup reporting
 *  Стили для Расписания
 */
/*============ Calendar Hour ===============*/
.datetimepicker-inline {
    width: 100%;
}
.datetimepicker .table-condensed > tbody > tr > td {
    width: 100%;
}
.datetimepicker table tr td span {
    min-width: 84px;
    font-size: 16px;
}
.datetimepicker table tr td span.active.active {
    background-color: #07b427;
    border-color: #07b427;
    color: #fff;
    background-image: none;
}
.datetimepicker table tr td span.active.active:hover,
.datetimepicker table tr td span.active.active:focus {
    background-color: #06881e;
    border-color: #06881e;
}
.times-btns .form-control[readonly] {
    display: inline-block;
    width: 47%;
}
@media (max-width: 590px) {
    .times-btns .form-control[readonly] {
        width: 46%;
    }
}
/*============ Autocomplete Begin  ===============*/
.ui-widget-content {
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    z-index: 2000;
}
.ui-menu .ui-menu-item {
    display: list-item;
}
.ui-menu .ui-menu-item.ui-state-focus {
    background: #337ab7;
    color: #fff;
}

.ui-menu .ui-menu-item > div:hover,
.ui-menu .ui-menu-item > div:focus {
    background: #337ab7;
    color: #fff;
}
/*============ Autocomplete end  ===============*/

table.table.multiple-input-list th.control-label {
    font-size: 15px;
    line-height: 1.2;
    font-weight: bold;
}

/* Tabs panel */
.tabbable-panel {
    /*border:1px solid #eee;*/
    padding: 10px;
    height: 95px;
    margin-bottom: 1em;
    text-align: center;
}

/* Default mode */
.tabbable-line {
    display: inline-block;
}
.tabbable-line > .nav-tabs {
    border: none;
    margin: 0px;
}
.tabbable-line > .nav-tabs > li {
    margin-right: 2px;
    border-bottom: 1px solid #DDD;
}
.tabbable-line > .nav-tabs > li > a {
    border: 0;
    margin-right: 0;
    color: #737373;
}
.tabbable-line > .nav-tabs > li > a > i {
    color: #a6a6a6;
}
.tabbable-line > .nav-tabs > li.open, .tabbable-line > .nav-tabs > li:hover {
    border-bottom: 1px solid #fbcdcf;
}
.tabbable-line > .nav-tabs > li.open > a, .tabbable-line > .nav-tabs > li:hover > a {
    border: 0;
    background: none !important;
    color: #333333;
}
.tabbable-line > .nav-tabs > li.open > a > i, .tabbable-line > .nav-tabs > li:hover > a > i {
    color: #a6a6a6;
}
.tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
    margin-top: 0px;
}
.tabbable-line > .nav-tabs > li.active {
    border-bottom: 4px solid #f3565d;
    position: relative;
}
.tabbable-line > .nav-tabs > li.active > a {
    border: 0!important;
    color: #333333!important;
    background-color: inherit;
}
.tabbable-line > .nav-tabs > li.active > a > i {
    color: #404040;
}
.tabbable-line > .tab-content {
    margin-top: -3px;
    background-color: #fff;
    border: 0;
    /*border-top: 1px solid #eee;*/
    padding: 15px 0;
}
.portlet .tabbable-line > .tab-content {
    padding-bottom: 0;
}

/* Below tabs mode */

.tabbable-line.tabs-below > .nav-tabs > li {
    border-top: 4px solid transparent;
}
.tabbable-line.tabs-below > .nav-tabs > li > a {
    margin-top: 0;
}
.tabbable-line.tabs-below > .nav-tabs > li:hover {
    border-bottom: 0;
    border-top: 4px solid #fbcdcf;
}
.tabbable-line.tabs-below > .nav-tabs > li.active {
    margin-bottom: -2px;
    border-bottom: 0;
    border-top: 4px solid #f3565d;
}
.tabbable-line.tabs-below > .tab-content {
    margin-top: -10px;
    border-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/** Let tabls-left class be available in bootstrap 3.3.7 - I **/
.tabs-left .nav-tabs {
    border-bottom: 0;
}

.tabs-left .tab-content > .tab-pane {
    display: none;
}

.tabs-left .tab-content > .active {
    display: block;
}

.tabs-left .nav-tabs > li {
    float: none;
    border-bottom: none;
}

.tabs-left .nav-tabs > li > a,
.tabs-left .nav-tabs > li > div {
    margin-right: 0;
    margin-bottom: 3px;
    width: 100%;
}

.tabs-left .nav-tabs {
    float: left;
    margin-right: 19px;
    border-right: 1px solid #ddd;
}

.tabs-left .nav-tabs > li > a,
.tabs-left .nav-tabs > li > div {
    margin-right: -1px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.tabs-left .nav-tabs > li > a:hover,
.tabs-left .nav-tabs > li > a:focus,
.tabs-left .nav-tabs > li > div:hover,
.tabs-left .nav-tabs > li > div:focus{
    border-color: #eeeeee #dddddd #eeeeee #eeeeee;
    background-color: #eeeeee;
}

.tabs-left .nav-tabs .active > a,
.tabs-left .nav-tabs .active > a:hover,
.tabs-left .nav-tabs .active > a:focus,
.tabs-left .nav-tabs .active > div,
.tabs-left .nav-tabs .active > div:hover,
.tabs-left .nav-tabs .active > div:focus{
    border-color: #ddd transparent #ddd #ddd;
    *border-right-color: #ffffff;
}
/** Let tabls-left class be available in bootstrap 3.3.7 - F **/

/* TABS */
.tabs-left .nav-tabs{
    margin-right:0px;
    padding: 0;
    height: 700px; /* Debe ser el mismo height que el que tenga .tab-content */
}

/* CONTENIDO DE LOS TABS */
.tabs-left .tab-content {
    background-color: #FFFFFF;
    border:solid 1px #DCE1E5;
    border-left-style: none;
    min-height: 700px; /* Debe ser el mismo height que el que tenga .tabs-left .nav-tabs */
    padding-left: 50px;

    border-radius: 0px 4px 4px 4px;
    -moz-border-radius: 0px 4px 4px 4px;
    -webkit-border-radius: 0px 4px 4px 4px;

    -webkit-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.05);
}

.tabs-left .tab-content > div {
    margin-top: 26px;
}

.tabs-left .tab-content > div > div:first-child {
    line-height: 14px;
    border-bottom: solid 1px #DCE1E5;
    padding-bottom:34.5px;
    margin-bottom: 34.5px;
    margin-right: 15px;
}

.tabs-left .tab-content .input-daterange .input-group-addon {
    background: none;
    border: none;
}

/* Formato del tab activo */
.tabs-left .nav-tabs .active > a,
.tabs-left .nav-tabs .active > a:hover,
.tabs-left .nav-tabs .active > a:focus,

.tabs-left .nav-tabs .active div,
.tabs-left .nav-tabs .active div:hover,
.tabs-left .nav-tabs .active div:focus
{
    color: #A0AEB6;
    font-size: 16px;
    line-height: 18px;
    background-color: #FFFFFF;

    border-bottom-style: none;
    border-left-style: none;

    /*border-bottom: 1px solid #DCE1E5;*/
    /*border-left: 1px solid #DCE1E5;*/
    border-bottom-left-radius: 0px;
    border-right-style: none;

    margin-right: -1px;

    -webkit-box-shadow: -4px 0px 18px -1px rgba(0,0,0,0.05);
    -moz-box-shadow: -4px 0px 18px -1px rgba(0,0,0,0.05);
    box-shadow: -4px 0px 18px -1px rgba(0,0,0,0.05);
}

/* Formato de los tabs en general */
.tabs-left .nav-tabs > li:nth-child(1) > a,
.tabs-left .nav-tabs > li:nth-child(1) > a:hover,
.tabs-left .nav-tabs > li:nth-child(1) > a:focus,

.tabs-left .nav-tabs > li:nth-child(1) > div,
.tabs-left .nav-tabs > li:nth-child(1) > div:hover,
.tabs-left .nav-tabs > li:nth-child(1) > div:focus
{
    cursor: pointer;
    border-top-left-radius: 4px;
}

.tabs-left .nav-tabs > li.active:nth-child(1) > a,
.tabs-left .nav-tabs > li.active:nth-child(1) > a:hover,
.tabs-left .nav-tabs > li.active:nth-child(1) > a:focus,

.tabs-left .nav-tabs > li.active:nth-child(1) > div,
.tabs-left .nav-tabs > li.active:nth-child(1) > div:hover,
.tabs-left .nav-tabs > li.active:nth-child(1) > div:focus
{
    border-top-left-radius: 4px;
    border-bottom-style: none;
    border-left: 1px solid #DCE1E5;
}

/* Formato de los tabs en general */
.tabs-left .nav-tabs > li:last-child > a,
.tabs-left .nav-tabs > li:last-child > a:hover,
.tabs-left .nav-tabs > li:last-child > a:focus,

.tabs-left .nav-tabs > li:last-child > div,
.tabs-left .nav-tabs > li:last-child > div:hover,
.tabs-left .nav-tabs > li:last-child > div:focus
{
    cursor: pointer;
    border-bottom-left-radius: 4px;
}

.tabs-left .nav-tabs > li.active:last-child > a,
.tabs-left .nav-tabs > li.active:last-child > a:hover,
.tabs-left .nav-tabs > li.active:last-child > a:focus,

.tabs-left .nav-tabs > li.active:last-child > div,
.tabs-left .nav-tabs > li.active:last-child > div:hover,
.tabs-left .nav-tabs > li.active:last-child > div:focus
{
    border-bottom-left-radius: 4px;
    border-top-style: none;
    border-left: 1px solid #DCE1E5;
}

.tabs-left .nav-tabs > li > a,
.tabs-left .nav-tabs > li > div {
    display: table;
    /*border: solid 1px transparent;*/
    background: #f7f9f9;
    margin-right: -1px;

    margin-bottom: 0;
    padding-bottom: 0;

    height: 105px;

    border:solid 1px #DCE1E5;
    border-radius: 0px;

    color: #A0AEB6;
    font-size: 16px;
    line-height: 18px;
}

/* Style of the div element acting as tab content */
.tabbable.tabs-left .nav-tabs > li > a > span,
.tabbable.tabs-left .nav-tabs > li > div > div {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 12px 0px 12px;

    min-width: 105px;
    max-width: 170px;

    text-overflow: ellipsis;
    overflow: hidden;
}


.tabbable.tabs-left table.table > thead > tr > th > a.asc:after,
.tabbable.tabs-left table.table > thead > tr > th > a.desc:after{
    display: inline-block;
    margin-top: -4px;
    position: absolute;
}
.tabbable.tabs-left form .icon-circle-delete {
    position: absolute;
    top: 12px;
    right: 25px;
    cursor: pointer;
    opacity: 0.4;
}
.tabbable.tabs-left form .icon-circle-delete:hover {
    opacity: 0.8;
}
.tabbable.tabs-left form .input-group.date {
    display: inline-block;
    width: 124px;
}
.tabbable.tabs-left form .kv-field-separator {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    text-align: left;
    width: initial;
    height: 34px;
    border: none;
    background: none;
}
.tabbable.tabs-left form .input-group.date .input-group-addon {
    background-color: rgb(251, 251, 253);
    border-color: #FFF;
    position: absolute;
    z-index: 100;
    right: 10px;
    top: 3px;
    display: inline-block;
}
.tabbable.tabs-left form .input-group.date .input-group-addon > i.glyphicon.glyphicon-remove {
    opacity: 0.4;
}
.tabbable.tabs-left form .input-group.date .input-group-addon > i.glyphicon.glyphicon-remove:hover {
    opacity: 0.8;
}
.tabbable.tabs-left .tab-content .btn-export {
    margin: 0 15px 15px 0;
}

/** Loader **/
.loader {
    display: block;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto;
}
.grid-loader {
    position: absolute;
    right: 2%;
    top: 6%;
    z-index: 1;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.toggle-client {
    cursor: pointer;
}
.toggle-client:after {
    content: "\203A";
    float: right;
}
.toggle-client.opened:after {
    content: "\2039";
    float: right;
}
.toggle-block {
    display: none;
}

/** Radio button for Multiple Input **/
.multiple-input .radio-list .radio input[type="radio"] {
    margin-left: -99999px;
    display: none;
}
.multiple-input .radio-list .radio {
    display: inline-block;
}
.multiple-input .radio-list .radio > label {
    position: relative;
    cursor: pointer;
}
.multiple-input .radio-list .radio:first-child > label {
    margin-left: -15px;
}
.multiple-input .radio-list .radio .radio-input:before,
.multiple-input .radio-list .radio .radio-input:after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    border-radius: 100%;
}
.multiple-input .radio-list .radio .radio-input:before {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    top: 10px;
    left: 16px;
}
.multiple-input .radio-list .radio .radio-input:after {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    top: 14px;
    left: 20px;
}
.multiple-input .radio-list .radio input[type="radio"]:checked + .radio-input:after {
    background: #428bca;
}
.multiple-input .radio-list .radio input[type="radio"]:checked + .radio-input:before {
    background: #fff;
    border-color: #5bc0de;
}
.multiple-input .radio-list .radio > label:hover .radio-input:before {
    border-color: #adadad;
}
.multiple-input .radio-list .radio > label:hover input[type="radio"]:checked + .radio-input:before {
    border-color: #5bc0de;
}
.multiple-input .radio-list .radio > label:hover .radio-input:after {
    background: #e6e6e6;
}
.multiple-input .radio-list .radio > label:hover input[type="radio"]:checked + .radio-input:after {
    background: #428bca;
}
.multiple-input .radio-list .radio input[type="radio"][disabled] + .radio-input {
    cursor: not-allowed;
    opacity: 0.65;
}
.multiple-input .radio-list .radio .radio-input-label {
    font-size: 15px;
    font-weight: 600;
    margin-left: 22px;
    position: relative;
    top: 8px;
}
.multiple-input .radio-list .radio input[type="radio"][disabled] ~ .radio-input-label {
    color: #c3c3c3;
    cursor: not-allowed;
}

/** Multi inputs list render **/
.multiple-input table.list-renderer tr.multiple-input-list__item td {
    width: 98%;
    position: relative;
}
.multiple-input table.list-renderer tr.multiple-input-list__item > td:first-child {
    padding-top: 20px;
    padding-left: 20px;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group {
    width: 50%;
    vertical-align: top;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__actions {
    position: absolute;
    right: 0;
    width: 45px;
    top: 22px;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label {
    width: 120px;
}
.wishful-datetime-list-wrap .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group {
    display: inline-block;
}
.wishful-datetime-list-wrap .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group > div {
    width: 50%;
}
.wishful-datetime-list-wrap .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label {
    width: 170px;
}
.wishful-datetime-list-wrap .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__actions {
    top: 15px;
}
.wishful-datetime-list-wrap .multiple-input table.list-renderer tr.multiple-input-list__item,
.wishful-datetime-list-wrap .multiple-input table.list-renderer tr.multiple-input-list__item > td {
    border: none;
}

.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__actions label.control-label {
    width: initial;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__actions label.control-label + div {
    width: 100%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__types_id {
    width: 42%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__types_id label.control-label {
    width: 45%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__trainings_id {
    width: 58%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__types_id label.control-label + div {
    width: 240px;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__trainings_id label.control-label + div {
    width: 505px;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__instructorsPreferredList {
    width: 100%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__instructorsPreferredList label.control-label {
    width: 19%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__instructorsPreferredList label.control-label + div {
    width: 78.5%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList {
    width: 100%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label {
    width: 0px;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div {
    width: 95%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group .select2-search.select2-search--inline,
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group .select2-search.select2-search--inline .select2-search__field {
    width: 100%!important;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group .form-group.form-group-multiple-input {
    width: 100%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div .form-group.form-group-multiple-input tr.multiple-input-list__item,
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div .form-group.form-group-multiple-input tr.multiple-input-list__item > td {
    border: none;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div .form-group.form-group-multiple-input tr.multiple-input-list__item > td > .form-group > label.control-label {
    width: 37%;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div .form-group.form-group-multiple-input tr.multiple-input-list__item > td > .form-group > label.control-label + div {
    width: 280px;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div .form-group.form-group-multiple-input tr.multiple-input-list__item > td > .form-group.list-cell__actions > label.control-label,
.multiple-input table.list-renderer tr.multiple-input-list__item td .form-group.list-cell__preferredTimesList label.control-label + div .form-group.form-group-multiple-input tr.multiple-input-list__item > td > .form-group.list-cell__actions > label.control-label + div {
    width: initial;
}
.field-trainingrequest-preferredTimesList .multiple-input .list-cell__day > label.control-label {
    width: 190px;
}
.field-trainingrequest-preferredTimesList .multiple-input .list-cell__day > label + div {
    width: 190px;
}
.field-trainingrequest-preferredTimesList .multiple-input .list-cell__time > label {
    width: 190px;
}
.field-trainingrequest-preferredTimesList .multiple-input .list-cell__time > label + div {
    width: 190px;
}
@media (max-width:1199px){
    .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label {
        width: 117px;
    }
    .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label + div {
        width: 326px;
    }
}
@media (max-width: 992px) {
    .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label,
    .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label + div {
        display: block;
    }
    .multiple-input table.list-renderer tr.multiple-input-list__item td .form-group label.control-label {
        text-align: left;
        margin-bottom: 5px;
    }
}
.preferred-time-table-wrap .multiple-input table.list-renderer tr.multiple-input-list__item {
    border: none;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial {
    position: absolute;
    top: 0;
    left: 0;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label {
    min-height: 22px;
    line-height: 1.077;
}
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label { border-radius: 0; text-shadow: none; font-size: 11px; font-weight: normal; padding: 3px 5px 3px; background-color: #abbac3!important }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label[class*="span"][class*="arrow"] { min-height: 0 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-primary { background-color: #2283c5!important }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-in { position: relative; margin-left: 9px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed:before,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-in:before { display: inline-block; content: ""; position: absolute; left: -14px; top: 0; border: 9px solid transparent; border-width: 9px 7px; border-right-color: #abbac3 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-in:before { border-color: #abbac3; border-left-color: transparent!important; left: -9px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-right,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-in-right { position: relative; margin-right: 9px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-right:after,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-in-right:after { display: inline-block; content: ""; position: absolute; right: -14px; top: 0; border: 9px solid transparent; border-width: 9px 7px; border-left-color: #abbac3 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label.arrowed-in-right:after { border-color: #abbac3; border-right-color: transparent!important; right: -9px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-primary.arrowed:before { border-right-color: #2283c5 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-primary.arrowed-in:before { border-color: #2283c5 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-primary.arrowed-right:after { border-left-color: #2283c5 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-primary.arrowed-in-right:after { border-color: #2283c5 }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large { font-size: 13px; padding: 3px 8px 4px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-in { margin-left: 12px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed:before,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-in:before { left: -16px; border-width: 11px 8px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-in:before { left: -12px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-right,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-in-right { margin-right: 11px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-right:after,
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-in-right:after { right: -16px; border-width: 11px 8px }
.multiple-input table.list-renderer tr.multiple-input-list__item td > .form-group.list-cell__serial label.control-label + div p.label-large.arrowed-in-right:after { right: -12px }

/** Stepper forms **/
.wizard {
    margin: 0 auto 20px;
}
.wizard .nav-tabs {
    margin: 0px auto 0 auto;
}

.nav-tabs.nav-sheets,
.nav-tabs.nav-sheets > li{
    border-bottom: none;
}

.nav-tabs.nav-sheets > li > a.active,
.nav-tabs.nav-sheets > li > a.active:focus,
.nav-tabs.nav-sheets > li > a.active:hover {
    border-width: 0;
}
.nav-tabs.nav-sheets > li:focus,
.nav-tabs.nav-sheets > li:hover {
    border: 0;
    outline: 0;
    background: transparent;
}

.nav-tabs.nav-sheets > li:focus > a,
.nav-tabs.nav-sheets > li:hover > a {
    background-color: transparent;
    color: #21527d;
}

.nav-tabs.nav-sheets > li > a {
    border: none;
    color: #666;
    text-align: center;
}

.nav-tabs.nav-sheets > li > a.active,
.nav-tabs.nav-sheets > li > a:hover,
.nav-tabs.nav-sheets > li > a:focus {
    border: none;
    color: #21527d !important;
    background: transparent;
}
.nav-tabs.nav-sheets > li > a.active {
    font-weight: bold;
}

.nav-tabs.nav-sheets > li > a::after {
    content: "";
    background: #CCC;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: -1px;
    transition: all 250ms ease 0s;
    transform: scale(0);
    transform: scale(1);
}
.nav-tabs.nav-sheets > li > a.active::after,
.nav-tabs.nav-sheets > li:hover > a::after {
    transform: scale(1);
}

.nav-tabs.nav-sheets > li > a.active::after,
.nav-tabs.nav-sheets > li:hover > a::after {
    background: #21527d none repeat scroll 0% 0%;
    color: #fff;
}
#filter-panel.filter-sheets-panel input.krajee-datepicker + .kv-date-calendar > .glyphicon-calendar {
    background: url('../icons/icons-28.png');
    width: 13px;
    height: 14px;
    background-position: -14px 0;
    color: transparent;
}
#filter-panel.filter-sheets-panel .form-group .control-label {
    line-height: 2;
}
table.table tbody > tr.kv-expand-detail-row .col-md-12 {
    padding: 0;
}
table.table tbody > tr.kv-expand-detail-row > td > .kv-expanded-row {
    width: 100%;
}
table.table tbody > tr > td.kv-expand-icon-cell:hover,
table.table tbody > tr > td.kv-expand-icon-cell:focus,
table.table tbody > tr.kv-expand-detail-row > td > .kv-expanded-row > .grid-view > table.table.table-bordered > tbody {
    background-color: #F6F9F9!important;
}
table.table tbody > tr.kv-expand-detail-row > td > .kv-expanded-row > .grid-view > table.table.table-bordered,
table.table tbody > tr.kv-expand-detail-row > td > .kv-expanded-row > .grid-view > table.table.table-bordered > tbody > tr,
table.table tbody > tr.kv-expand-detail-row > td > .kv-expanded-row > .grid-view > table.table.table-bordered > tbody > tr > td,
table.table tbody > tr.kv-expand-detail-row > td > .kv-expanded-row > .grid-view > table.table.table-bordered > tbody > tr > td {
    border-left: none;
    border-right: none;
}

.form-group.organization-autocomplete > input.ui-autocomplete-input {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    color: rgba(0, 0, 0, .5);
}
.form-group.organization-autocomplete > input.ui-autocomplete-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(0, 0, 0, .3);
    opacity: 1; /* Firefox */
}

.form-group.organization-autocomplete > input.ui-autocomplete-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, .3);
}

.form-group.organization-autocomplete > input.ui-autocomplete-input::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(0, 0, 0, .3);
}

.result-information > div > div > p {
    margin-bottom: 7px;
}
.result-information > div > div > p:first-child {
    font-size: 14px;
    line-height: 24px;
}

.result-information > div > div > p:last-child {
    font-size: 16px;
}

.total-rating-1 {
    color: #689F38;
}

.total-rating-0 {
    color: #FF5252;
}

a.change-scorepass {
    float: right;
}
a.change-scorepass span.glyphicon.glyphicon-cog {
    color: #337ab7;
    line-height: 20px;
    height: 20px;
    vertical-align: middle;
    text-align: center;
}

@media (min-width: 768px){
    .modal-dialog.modal-sm {
        width: 330px;
    }
}

.display-flex {
    display: flex;
}
.flex-direction-row {
    flex-direction: row;
}
.flex-nowrap {
    flex-wrap: nowrap;
}
.flex-align-center {
    align-items: center;
    justify-content: center;
}
.education-type .select2-search__field {
	min-width: 450px !important;
	width: 100% !important;
}
.nav-tabs > li.dropdown.open > a {
	color: #fff;
}
.modal {
	z-index: 1070;
}
.select2-container.select2-container--krajee.select2-container--open {
	z-index: 1070;
}
.top-header-menu .title .uppercase {
	max-height: 50px;
	overflow: hidden;
}
.filter-panel-requests label, .filter-panel-sheets label {
	margin-top: 5px;
}

.calendar-view-table .table-responsive {
	border: none;
}

.calendar-view-table.type-3 td {
	height: 145px;
	min-width: 145px;
}
.calendar-view-table.type-3 .relative {
	position: relative;
}
.calendar-view-table.type-3 .count-events {
    margin-top: 35px;
    color: #c7c7c7;
    font-size: 42px;
}
.calendar-view-table.type-1 .count-events {
    color: #c7c7c7;
    font-size: 20px;
}
.calendar-view-table.type-2 .count-events {
    color: #c7c7c7;
    font-size: 20px;
}
.calendar-view-table.type-1 .event-td {
    padding: 5px 15px;
}
.calendar-view-table.type-2 .event-td {
    padding: 5px 15px;
}
.calendar-view-table .table {
	margin-bottom: 0;
}

.wrap > .container-fluid {
    padding-top: 30px;
}

.calendar-view-table.type-2 .set-rowspan {
	vertical-align: middle;
}

.calendar-view-table.type-3 .day-holiday {
	/*background-color: #f3f3f3;*/
}
.calendar-view-table.type-3 .month-day-info {
    position: absolute;
	top: 5px;
	left: -9px;
    color: #aaa;
}
.calendar-view-table.type-3 .day:hover {
    background-color: #fcf8e3;
}

.calendar-view-table table.table thead > tr > th a, .calendar-view-table table.table tbody > tr > th a {
	font-size: 12px;
    color: #000;
	cursor: pointer;
}
.calendar-view-table table.table thead > tr > th, .calendar-view-table table.table tbody > tr > th {
	font-size: 12px;
    color: #000;
}
.calendar-view-table table.table tbody > tr::after {
	content: none;
}
.calendar-view-table .one-element {
	width: 85%;
}
.calendar-view-table.type-1, .calendar-view-table.type-2 {
    position: relative;
}
.calendar-view-table .top-absolute {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 300;
}
.calendar-view-table .left-absolute {
	position: absolute;
	left: 0;
	z-index: 200;
}

.calendar-view .btn-default, .calendar-view .btn-danger, .calendar-view .btn-primary, .calendar-view .btn-success, .calendar-view .btn-gray {
	min-width: 40px;
}

.calendar-view .calendar-date {
	font-size: 15px;
    margin-top: 0;
}
.calendar-view .calendar-date-small {
	font-size: 13px;
}

.calendar-view .pointer, .calendar-view-table .pointer {
	cursor: pointer;
}

.calendar-view .input-group-addon {
	background: none;
	border: none;
	padding: 0;
}
.calendar-view .input-group.date {
	width: 30px;
}

.calendar-view .checkbox {
	display: inline-block;
	margin: 0;
}
.calendar-view .checkbox label {
	font-size: 12px;
}

/** Checkbox **/
/*.checkbox.checbox-switch {
    padding-left: 0;
}*/

.checkbox.checbox-switch label,
.checkbox-inline.checbox-switch {
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.checkbox.checbox-switch label input,
.checkbox-inline.checbox-switch input {
    display: none;
}
.checkbox.checbox-switch label span,
.checkbox-inline.checbox-switch span {
    width: 35px;
    border-radius: 20px;
    height: 18px;
    border: 1px solid #dbdbdb;
    background-color: rgb(255, 255, 255);
    border-color: rgb(223, 223, 223);
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    text-align: left;
}
.checkbox.checbox-switch label span:before,
.checkbox-inline.checbox-switch span:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(255,255,255);
    content: " ";
    top: 0;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.checkbox.checbox-switch label > input:checked + span:before,
.checkbox-inline.checbox-switch > input:checked + span:before {
    left: 17px;
}
@media (max-width: 950px) {
    .checkbox.checbox-switch {
        float: none!important;
        /*text-align: center;*/
    }
}

/* Switch Primary */
.checkbox.checbox-switch.switch-primary label > input:checked + span,
.checkbox-inline.checbox-switch.switch-primary > input:checked + span {
    background-color: rgb(0, 105, 217);
    border-color: rgb(0, 105, 217);
    box-shadow: rgb(0, 105, 217) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-primary label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-primary > input:checked:disabled + span {
    background-color: rgb(109, 163, 221);
    border-color: rgb(109, 163, 221);
    box-shadow: rgb(109, 163, 221) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

.date-hours-minutes {
	font-size: 17px;
	font-weight: bold;
}
.calendar-modal-link-modal, .calendar-modal-link-modal:hover, .calendar-modal-link-modal:visited, .calendar-modal-link-modal:focus {
	color: #000;
	text-decoration: underline;
}

.blocks .block-group.main a.training-preparation.block-item::after {
	background: url(../icons/staff-blue.png);
}

.form-control-static-custom-readonly {
	color: #555555;
	background-color: #eeeeee;
	opacity: 1;
	border: 1px solid rgb(209, 209, 209);
	padding-left: 7px;
}

.dropdown-menu li:hover > a > .icon.training-preparation{
	width: 25px;
    height: 25px;
    display: block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
    float: left;
    background: url(../icons/menu-icon-staff-white.png) 0 0 no-repeat;
    background-position: 0 0;
    margin-right: 24px;
}
.dropdown-menu .icon.training-preparation{
	width: 25px;
    height: 25px;
    display: block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
    float: left;
    background: url(../icons/menu-icon-staff-gray.png) 0 0 no-repeat;
    background-position: 0 0;
    margin-right: 24px;
}
.main-menu .dropdown-menu{
	width: 235px;
}

.btn.btn-success.btn-white-bg {
	background: #fff;
	color: #07b427;
}
.btn.btn-success.btn-white-bg:hover {
	background: #07b427;
	color: #fff;
}

.calendar-color-exam {
	color: #c06bc0;
}

.calendar-color-training {
	color: #3a87ad;
}

.checkbox-sm input[type=checkbox] {
    display: none;
}

.checkbox-sm label {
	padding: 0;
	margin-top: 2px;
}

.checkbox-sm label:before {
    border-radius: 3px;
}

.checkbox-sm input[type=checkbox]:checked + label:before {
    content: "\2713";
    font-size: 15px;
    color: #000;
    text-align: center;
    line-height: 15px;
    width: 15px;
    height: 15px;
    display: inline-block;
	background-color: #fff;
	border: 1px solid rgb(204, 204, 204);

}

.checkbox-sm label:before {
	content: "";
    font-size: 15px;
    color: #f3f3f3;
    text-align: center;
    line-height: 15px;
    width: 15px;
    height: 15px;
    display: inline-block;
	background-color: #fff;
	border: 1px solid rgb(204, 204, 204);
}


.checkbox-big .checkboxes-data-main {
    display: none;
}

.checkbox-big label {
	padding: 0;
    margin: 0;
}

.checkbox-big label:before {
    border-radius: 3px;
}

.checkbox-big input[type=checkbox]:checked + label:before {
    content: "\2713";
    font-size: 17px;
    color: #000;
    text-align: center;
    line-height: 15px;
    width: 20px;
    height: 20px;
    display: inline-block;
	background-color: #fff;
	border: 1px solid rgb(204, 204, 204);

}

.checkbox-big label:before {
	content: " ";
    font-size: 17px;
    color: #f3f3f3;
    text-align: center;
    line-height: 15px;
    width: 20px;
    height: 20px;
    display: inline-block;
	background-color: #fff;
	border: 1px solid rgb(204, 204, 204);
}

.touch-table tr{
    cursor: pointer;
}
.touch-table tr{
    border: none !important;
}
.touch-table th{
    padding: 10px 15px !important;
    vertical-align: bottom  !important;
    height: initial !important;
    border-left: none !important;
}



.tp-actions {
    padding: 4px;
    margin-bottom: 10px;
}
.tp-actions label {
    margin-bottom: 0;
}
.tp-actions .toggle {
    margin-right: 15px;
}
.tp-actions .btn.btn-default {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}
.tp-actions .btn {
    min-width: 0;
}
.action-list {
    margin-left: 50px;
}