/* для "резиновости" сайта */
body{
    min-height:100%;
    background: #033649;
    font-size: 14px;
}

/* по-умолчанию спрятано отображение информационного блока о необходимости повернуть устройство */
#warning-message { display: none; }

/*для маленьких экранов в портретном режиме отображаем информационный блок о необходимости повернуть устройство*/
@media only screen and (orientation:portrait) and (max-width:767px){
    #warning-message { display:block; }
}

/*для любых экранов в альбомном режиме прячем информационный блок о необходимости повернуть устройство*/
@media only screen and (orientation:landscape){
    #warning-message { display:none; }
}

/* задаем основоные размеры шрифтов и стили для мобильных и старинных устройств */
@media (max-width:800px) {
    table {
        font-size: 0.7em;
    }
}
@media (max-width:640px) {
    table {
        font-size: 0.5em;
    }
    .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
        padding: 3px !important;
    }
}
@media (max-width:500px) {
    body {
        font-size: 0.9em !important;
    }
    table {
        font-size: 0.8em;

    }
    .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
        padding: 1px !important;
        border: 1px dotted #8c8c8c;
    }
}

/* preloader для ajax*/
.ajax-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px; /* -1 * image width / 2 */
    margin-top: -32px; /* -1 * image height / 2 */
    z-index: 999;
    background-color: #ffffff !important;
}
.ajax-loader-block {
    position: relative;
    left: 50%;
}

/* цвет полосок для скрыть/показать меню */
.toggle a i {
    color: #235e96;
}
/* цвет полски для бокового меню (активный пункт) */
.nav.side-menu> li.active, .nav.side-menu li.active-sm {
    /*border-right: 5px solid #438a34 !important;*/
    /*border-right: 5px solid #d0651e !important;*/
    /*border-right: 5px solid #235e96 !important;*/
    border-right: 2px solid #d0651e !important;
}

/* приводит любой блок к прямоугольной форме (удаляет скругленные углы)*/
.rectangle {
    border-radius: 0px !important;
    box-shadow: 0px 0px 15px 2px black;
}

input{
    border-radius: 0px !important;
}

button{
    border-radius: 4px !important;;
}

/* стили для футера */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0px !important;
    background-color: #ffffff;
    border-top: 3px solid #205a94;
    background-color: #064373;
    padding-top: 10px;
    color: white;
}

.sidebar-footer {
    /*background: #235e96;*/
    background: #d0651e;
}
.sidebar-footer a{
    /*background-color: #509C41 !important;*/
    background-color: #438a34 !important;
    color: #ffffff;
}
.sidebar-footer a:hover{
    text-decoration: none !important;
}

.footer a {
    color: #2199e8;
    text-decoration: none;
    line-height: inherit;
    cursor: pointer;
}
.footer p.copywrite {
    color: #8f9296;
    margin-top: 15px;
    font-size: 1em;
}
html{
    height:100%;
    min-height:100%;

}

/* задаем стиль для блока с основным фоном, в т.ч. для разных размеров экрана */
.with_backgroud{
    background-image:url('../img/background_powerline.jpg') !important;
    background-repeat: no-repeat  !important;
    background-position: center center  !important;
    background-attachment: fixed  !important;
    background-size: cover  !important;
}
@media (max-height:1080px) {
    .with_backgroud {
        background-image: url('../img/background_powerline_1080.jpg') !important;
    }
}
@media (max-height:800px) {
    .with_backgroud {
        background-image: url('../img/background_powerline_800.jpg') !important;
    }
}
@media (max-height:600px) {
    .with_backgroud {
        background-image: url('../img/background_powerline_600.jpg') !important;
    }
}
@media (max-height:480px) {
    .with_backgroud {
        background-image: url('../img/background_powerline_480.jpg') !important;
    }
}

/* задаем логотип (2 картинки для открытого и свернутого меню)*/
.navbar.nav_title {
    background-image: url('../img/org_logo_230x57.png') !important;
    background-size: 100%;
    background-repeat: no-repeat  !important;
    background-position: center center  !important;
    border: 0; height: 57px; background-color: #fff;
    -webkit-box-shadow: inset -3px 3px 5px -2px rgba(0,0,0,0.44);
    -moz-box-shadow: inset -3px 3px 5px -2px rgba(0,0,0,0.44);
    box-shadow: inset -3px 3px 5px -2px rgba(0,0,0,0.44);
}
body.nav-sm .navbar.nav_title {
    background-image: url('../img/org_logo_70x57.png') !important;
    background-size: cover  !important;
    background-repeat: no-repeat  !important;
    background-position: center center  !important;
    border: 0; height: 57px; background-color: #fff;
    -webkit-box-shadow: inset 3px 3px 5px -2px rgba(0,0,0,0.44);
    -moz-box-shadow: inset 3px 3px 5px -2px rgba(0,0,0,0.44);
    box-shadow: inset 3px 3px 5px -2px rgba(0,0,0,0.44);
}

/* задаем фоновый рисунок для основной части контента (если требуется)*/
.right_col{
    background-image:url('../img/background_powerline_w.jpg') !important;
    background-repeat: no-repeat  !important;
    background-position: center center  !important;
    background-attachment: fixed  !important;
    background-size: cover  !important;
}
@media (max-height:600px) {
    .right_col {
        background-image: none !important;
    }
}
@media (max-height:480px) {
    .right_col {
        background-image: none !important;
    }
}

/* для всех ссылок курсор - рука */
a {
    text-decoration: none;
    cursor: pointer;
}



.btn-file { position: relative; overflow: hidden; margin-right: 4px; }
.btn-file input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; filter: alpha(opacity=0);
    transform: translate(-300px, 0) scale(4); font-size: 23px; direction: ltr; cursor: pointer; }
/* Fix for IE 7: */
* + html .btn-file { padding: 2px 15px; margin: 1px 0 0 0; }


/*Кнопак "наверх"*/
.scrollToTop{
    width:60px;
    height:60px;
    opacity: 0.5;
    border: 1px solid #999;
    padding-top:10px;
    text-align:center;
    background: whiteSmoke;
    font-weight: bold;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    position:fixed;
    bottom:75px;
    right:40px;
    display:none;
    z-index: 9999;
}
.scrollToTop:hover{
    opacity: 1;
    text-decoration:none;
    border: 1px solid #337ab7;
}
.scrollToTop i{
    font-size: 2em;
}

/*Прелоадер для всей страницы*/
.page-loader {
    position: fixed;
    /*display: none;*/
    height: 88px;
    left: 50%;
    top: 50%;
    width: 300px;
    z-index: 999;
    background: #ffffff; /* Old browsers */
    border: 2px solid #235e96;
}

.singlePageBlocked{
    background-color:#ffffff;
    opacity: 0.4;
}

h1{
    font-size: 24px;
    color: #000000;
    font-weight: 700;
}
h2{
    font-size: 18px;
    color: #438a34;
    font-weight: 700;
}
h3{
    font-size: 18px;
    color: #438a34;
}
h4{
    font-size: 16px;
    color: #033649;
    font-weight: 700;
}
h5{
    font-size: 16px;
    color: #033649;
}

caption > h4{
    font-weight: 700 !important;
}

/*Заголовки блоков*/
.fa-chevron-up,.fa-chevron-down{
    color: #235e96;
    font-size: 16px;
}
.fa-info-circle{
    color: #235e96;
    font-size: 24px;
}
.x_title h4 {
    margin: 5px 0 6px;
    float: left;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background-color: #235e85 !important;
}
.btn-success {
    background-color: #438a34 !important;
}

.white-text{
    color: #ffffff;
}

.alert-success{
    background-color: #438a34;
    border-color: #fff;
}
.alert-warning{
    background-color: #d0651e;
    border-color: #fff;
}

td.details-control {
    background: url('../img/details_open.png') no-repeat center center;
    cursor: pointer;
}
tr.shown td.details-control {
    background: url('../img/details_close.png') no-repeat center center;
}

.white-text{
    color: #fff;
}

.addTable{
    background-color: #fff !important;
    /*border: 1px solid #cacaca;*/
    padding: 10px;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}
.addTable table{
    font-size: 0.8em;
}
.addTable th{
    background-color: #153E62;
    color: #fff;
}
.addTable h4{
    font-size: 1.3em;
}
.addTable tr:hover{
    background-color: #E3F2FD !important;
}


.paymentCheck{
    overflow: hidden;
    padding:10px;
    width:300px;
    border: 1px solid #E8E8E8;
    font-family: 'Teleindicadores1Regular';
    font-weight: 800;
    font-style: normal;
    font-size: 1.5em;
    color: #39227C;
    background: url('../img/paper.png');

    -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.55);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.55);
    /*text-shadow: -1px -1px 0px #bbb;*/
}
@font-face {
    font-family: 'Teleindicadores1Regular';
    src: url('../vendor/teleindicadores/Teleindicadores1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Teleindicadores 1';
    src: url('../vendor/teleindicadores/Teleindicadores1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#balanceTop.positive {
    font-weight: 600;
    color: #438a34;
}

#balanceTop.negative {
    font-weight: 600;
    color: #D0651E;
}
#balanceTop{
    border-bottom: 1px dotted #9E9E9E;
}


.panel-hourplan-object {
    border: 1px solid #438a34 !important;
}
.panel-hourplan-tu {
    border: 1px solid #438a34;
    padding: 5px;
    background-color: #F3FAFE;
}
.panel-hourplan-table-object {
    border: 0px;
}
.panel-hourplan-table {
    border: 1px solid lightgrey;
}

#validSMSCod{
    text-align: center;
}

.login_content div .reset_pass {
    margin-right: 15px;
}