@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");

body {
    background-color: #fff;
    color: #069;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    min-width: 1050px;
}


.top_nav {
    padding: 10px 0;
    background-color: #fff;
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
}

body > .wrap {
    padding-top: 76px;
}

a:hover {
    color: #F38300;
}

.pseudo {
    color: #069;
    cursor: pointer;
    border-bottom: dashed 1px #069;
    padding: 0 10px;
}

#preview {
    z-index: 9999;
}

.content-main {
    /*padding-left: 260px;*/
    display: inline-grid;
    /*overflow-x: scroll;*/
    width: calc(100% - 280px);
    margin-left: 260px;
}

.content-menu {
    z-index: 10;
    float: left;
    width: 17.5%;
}

.glyphicon {
    color: #069;
}

.glyphicon-plus {
    color: #fff;
}

.glyphicon-minus {
    color: #fff;
}
.user_notice {
    font-size: 20px;
    margin-top: 6px;
    margin-left: 15px;
    color: #4688bf;
}
.user_notice:hover {
    font-size: 20px;
    margin-top: 6px;
    margin-left: 15px;
    color: #2570af;
}

.user_control {
    font-size: 20px;
    margin-top: 6px;
    margin-left: 15px;
    color: #4688bf;
}
.user_control:hover {
    font-size: 20px;
    margin-top: 6px;
    margin-left: 15px;
    color: #2570af;
    cursor: pointer;
}

.notice-count {
    background: #ef8811;
    color: #fff;
    border-radius: 8px;
    font-size: 11px;
    padding: 1px 5px;
    position: absolute;
    top: 3px;
    right: -6px;
}
.notice-count:hover {
    cursor: pointer;
}
.user_settings {
    margin-right: 15px;
    font-size: 23px;
    margin-top: 4px;
    margin-left: 15px;
    color: #4688bf;
}

/* login */
.login-form {
    float: right;
    width: 391px;
    box-shadow: 0px 4px 25px #E2F7FF;
    padding: 71px 28px 61px 28px;
}

.logo_company {
    float: left;
}

.login-form button {
    width: 100%;
    border: none;
    background-color: #047AAB;
    border: 1px solid transparent;
    height: 41px;

    font-weight: 400;
    font-size: 14px;
    padding: 0 10px;
    outline: none;
}

.login-form button:hover {
    background-color: #009FE1;
    border-color: #009FE1;
}

.login-form button:focus,
.login-form button:active {
    background-color: #004C6C;
    border-color: #004C6C;
}

.login-form input[type='text'] {
    margin-bottom: 28px;
}

.login-form input[type='password'] {
    margin-bottom: 41px;
}

.login-form input[type='text'],
.login-form input[type='password'] {
    box-shadow: 0px 4px 10px rgba(76, 200, 252, 0.5);
    border: 1px solid transparent;
    padding-left: 10px;
}

.login-form input[type='text']::placeholder,
.login-form input[type='password']::placeholder {
    color: #6990A1;
    font-size: 20px;
    font-weight: 400;
}

.login-form input[type='text']:hover,
.login-form input[type='password']:hover,
.login-form input[type='text']:focus,
.login-form input[type='password']:focus {
    border: 1px solid #E5E5E5;
    box-shadow: 0px 4px 10px rgba(76, 200, 252, 0.5);
}

.row-login-form {
    margin-top: 50%;
    top: -334px;
    position: relative;
    padding: 0 50px;
}

.login-form .has-error .form-control {
    border-color: #d9534f;
    box-shadow: 0px 4px 10px rgba(255, 75, 85, 0.5);
}

.login-form .has-success .form-control {
    border-color: #06C28A;
    box-shadow: 0px 4px 10px rgba(6, 194, 138, 0.5);
}


@media (max-width: 1020px) {
    .login-form {
        float: none;
    }

    .logo_company img {
        width: 390px;
    }

    .logo_company {
        float: none;
        text-align: center;
        margin-right: -104px;
        margin-bottom: 20px;
    }

    .row-login-form {
        margin-top: 0;
        top: 0px;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .control-label {
        width: 50%;
    }
}

/* left menu */
.menu-left {
    position: fixed;
    overflow-y: auto;
    height: calc(100% - 75px);
    width: 240px;
    left: 0;
    padding-left: 10px;
    background-color: #fff;
}

.menu-left::-webkit-scrollbar-thumb {
    /*background-color: #F38300;*/
    /*background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, rgb(73,125,189)), color-stop(0.86, rgb(28,58,148)));*/
    background-image: linear-gradient(180deg, rgba(255, 75, 85, 0.74) 0%, rgba(243, 131, 0, 0.44) 100%);
    border-radius: 10px;
    height: 30px;
}
.menu-left::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}

.menu-left a:hover {
    color: #004C6C;
    text-decoration: none;
}
.menu-left a {
    display: block;
    font-size: 16px;
    padding: 10px 15px;
    color: #004C6C;
    position: relative;
    z-index: 22;
}

.menu-left .list-group-item {
    padding: 0;
    position: relative;
}

.menu-left .list-group-item > .fa {
    position: absolute;
    right: 6px;
    top: 16px;
}

/*.list-group-item:hover {*/
/*background: #eee;*/
/*}*/


.menu-left .list-group-item.active > a > span.underline  {
    border-bottom: 2px solid #F38300;
}
.menu-left .list-group-item.active > a {
    color: #004C6C;
    font-weight: bold;
}

.menu-left .label {
    right: 8px;
    margin-top: 3px;
    padding: 3px 8px;
    border-radius: 9px;
    margin-left: 3px;
    font-family: Roboto, sans-serif;
}

.menu-left .list-group-item.active .list-group-item.active > a > span  {
    border-bottom: 2px solid #F38300;
}

.menu-left .list-group-item .list-group-item > a:hover > span:first-child  {
    font-weight: 700;
}

.menu-left .list-group-item.active .list-group-item.active > a > span.label,
.menu-left .list-group-item .list-group-item > a > span.label  {
    border-bottom: none;
    margin-left: 4px;
    float: right;
    margin-top: 3px;
    border-radius: 9px;
}

.menu-left .list-group-item .list-group-sub a  {
    font-size: 14px;
    padding-left: 35px;
}
.menu-left .list-group-item.active .list-group-item.active > a  {
    color: #004C6C;
    font-weight: bold;
}

.menu-left .list-group-sub:before {
    content: ' ';
    display: block;
}

/* panels */
.panel-body {
    padding: 0;
}

.panel-heading {
    font-size: 16px;
    text-transform: uppercase;
}

.price-from label {
    display: block;
}

/* tabs */
.nav > li > a {
    background-color: #eee;
    font-size: larger;
}

.nav > li > a:hover {
    background-color: #ddd;
}

/* footer */
.footer {
    text-align: center;
}

.footer a {
    background: url('../images/logo.png') 40px 0 no-repeat;
    display: inline-block;
    font-size: 16px;
    height: 120px;
    line-height: 240px;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 200px;
}

/* buttons */
.glyphicon-pencil, .glyphicon-trash, .glyphicon-search {
    font-size: larger;
    font-weight: bold;
    margin: 0 0 0 5px;
}

/* tables */
.grid-view {
    font-size: 14px;
}

.grid-view thead {
    /*background: #eee;*/
    color: #004C6C;
    font-size: 16px;
}

.form-control {
    padding: 2px;
}

.kv-grid-group-row .parent {
    font-weight: bold;
}

.kv-group-header {
    color: #ffffff;
    /*background-color: #428bca;*/
}

.kv-group-footer {
    font-weight: bold;
}

.kv-table-float {
    background-color: #eee;
}

.kv-page-summary {
    border-top: 0;
}

.child {
    font-size: smaller;
}

.select2-container--krajee .select2-selection--single {
    height: 41px;
    line-height: 1.428571429;
    /*padding: 9px 24px 6px 12px;*/

    /*color: #6990A1;*/
    /*font-size: 20px;*/
    padding: 5px 25px 6px 12px;
}

.select2-container--krajee .select2-selection--single .select2-selection__rendered {
    color: inherit;
}

.select2-container--krajee .select2-selection--single .select2-selection__arrow {
    /*height: 38px;*/
}


.select2-container--krajee .select2-selection__clear {
    float: right;
    color: #000;
    top: 10px;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0.4;
    filter: alpha(opacity=40);
    position: absolute;
    right: 0;
    margin-right: 5px;
}

.table-bordered > thead > tr.extend-header > th {
    border-right: none;
    border-left: none;
}

.table > tfoot > tr.warning > td {
    background: none;
}

.kv-grid-group-filter .form-control {
    display: inline;
    min-width: 0;
    width: auto;
    margin-right: 10px;
}

.kv-grid-group-filter .btn {
    margin-right: 10px;
}

/* act-table */
.panel.acts .panel-body {
    padding: 20px;
}

.act {
    border-collapse: collapse;
    color: #000;
    font-size: 14px;
    width: 100%;
    border: 1px solid black;
}

.act td {
    border: 1px solid black;
    padding: 10px 5px 0px 5px;
}

.act th {
    border: 1px solid black;
    color: #069;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    padding: 10px 5px 0 5px;
}

.act .strong {
    font-weight: bold;
}

.act .header {
    color: #069;
    font-weight: bold;
}

.act-error-message {
    margin: 0 5px 5px;
    font-size: 1.4em;
    float: left;
    width: 100%;
    white-space: normal;
    line-height: 1.4;
}

span.sign {
    font-size: 14px;
    color: #069;
}

table.sign {
    color: #000;
    font-size: 14px;
}

.sign td {
    vertical-align: bottom;
}

.wPaint-canvas {
    border-bottom: 1px solid black;
}

.extra-number {
    display: none;
}

.wPaint-menu {
    display: none;
}

/* schedule */
.entry-time {
    font-weight: bold;
    color: #f0ad4e;
}

.free-time {
    color: red;
    font-size: 30px;
    font-weight: bold;
}

.current-time {
    color: #069;
    font-size: 30px;
    font-weight: bold;
}

/* forms */
.form-control.datepicker[readonly] {
    background: #fff;
}

.datetimepicker {
    font-size: 150%;
}

.datetimepicker .datetimepicker-hours span {
    height: 30px;
    line-height: 30px;
}

.datetimepicker .minutes span {
    height: 30px;
    line-height: 30px;
}

.datetimepicker .table-condensed {
    width: 300px;
}

.list-group-sub{
    padding: 3px;
    margin: 0;
}
/*.menu-left .list-group-item.active .list-group-sub a{*/
/*color: #069;*/
/*}*/
/*.list-group-sub .list-group-item.active a{*/
/*color: #ffffff!important;*/
/*}*/
#act-grid #act-grid-filters{
    /*display: none;*/
}

.nav_up {
    position: fixed;
    background: url(../images/arrow_top_bottom.png) no-repeat top left;
    background-position: 0 0;
    width: 36px;
    height: 36px;
    bottom: 10px;
    right: 80px;
    white-space: nowrap;
    cursor: pointer;
}

.nav_down {
    position: fixed;
    background: url(../images/arrow_top_bottom.png) no-repeat top left;
    background-position: -40px 0;
    width: 36px;
    height: 36px;
    bottom: 10px;
    right: 30px;
    white-space: nowrap;
    cursor: pointer;
}

.top_nav .pull-right {
    margin-top: 6px;
}

.top_nav .user_control {
    margin-top: 12px;
}

/*.android-link,
.instagram-link,
.apple-link,
.youtube-link {
    background: #fff url(../images/soc_icons.png) no-repeat top left;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    margin-top: 13px !important;
}*/

.huawei-link {
    background: url(../images/huawei.png) no-repeat;
    background-size: 33px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 29px;
    height: 29px;
    margin-right: 15px;
    margin-top: 8px !important;
}

.android-link {
    background: url(../images/android.png) no-repeat;
    background-size: 23px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 15px;
    margin-top: 13px !important;
}

.instagram-link {
    background: url(../images/instagram.png) no-repeat;
    background-size: 23px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 15px;
    margin-top: 13px !important;
    margin-left: 40px;
}

.apple-link {
    background: url(../images/apple.png) no-repeat;
    background-size: 31px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 26px;
    height: 29px;
    margin-right: 15px;
    margin-top: 8px !important;
    margin-left: -3px;
}

.youtube-link {
    background: url(../images/youtube.png) no-repeat;
    background-size: 31px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 32px;
    height: 29px;
    margin-right: 15px;
    margin-top: 9px !important;
}


.nav-button {
    background: #3fad46;
}
.file-upload {
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 31px;
    background: #428bca;
    border:1px solid #069;
    border-radius: 3px;
    padding: 8px 4px;
    color: #fff;
    text-align: center;
}
.file-upload:hover {
    background: #1863e6;
}

.file-upload input[type="file"] {
    display: none;
}
.file-upload label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.file-upload span {
    line-height: 56px;
}
.file-upload div label {
    padding-top: 5px;
    font-size: 13px;
    font-weight: normal;
}

/*Act color status*/
.act-warning {
    background-color: #f0ad4e;
}

.act-danger select {
    border: 1px solid #FF4B55 !important;
    color: #FF4B55 !important;
}

.act-success select {
    border: 1px solid #06C28A !important;
    color: #06C28A !important;
}

.act-info {
    background-color: #9600ad;
}

.act-notification {
    background-color: #5bc0de;
}

.act-agreed {
    background-color: #F0EC47;
}

.monthly-act-warning select {
    border: 1px solid #F38300 !important;
    color: #F38300 !important;
}

.monthly-act-danger select {
    border: 1px solid #d4ad11 !important;
    color: #d4ad11 !important;
}

.monthly-act-success select {
    border: 1px solid #06C28A !important;
    color: #06C28A !important;
}

.monthly-act-agreed select {

}

.kv-grid-table .btn-warning.kv-align-middle,
.kv-grid-table .btn-success.kv-align-middle,
.kv-grid-table .btn-danger.kv-align-middle {
    background-color: transparent;
}

.kv-grid-table .btn-warning.kv-align-middle select {
    border: 1px solid #f0ad4e !important;
    color: #f0ad4e !important;
}

.kv-grid-table .btn-success.kv-align-middle select {
    border: 1px solid #3fad46 !important;
    color: #3fad46 !important;
}

.kv-grid-table .btn-danger.kv-align-middle select {
    border: 1px solid #d9534f !important;
    color: #d9534f !important;
}

/* Style bootstrap modal confirm */
/*.bootstrap-dialog.type-warning .modal-header {*/
/*background-color: #428bca;*/
/*}*/

.bootstrap-dialog-footer .btn-warning {
    color: #ffffff;
    background-color: #428bca;
    border-color: #069
}

.bootstrap-dialog-footer .btn-warning:hover {
    color: #ffffff;
    background-color: #1863e6;
    border-color: #175fdd
}
/* Style bootstrap modal confirm */

/* Рейтинг и опросы */
.ratingPlace {
    width: auto;
    height: auto;
}
.ratingText {
    font-size: 14px;
    color: #738494;
}
.starsBody {
    margin: 10px 0px 15px 0px;
}
.ratingStar {
    background: url('../images/star_off.png') no-repeat;
    width: 45px;
    height: 45px;
    background-size: contain;
    display: inline-block;
    margin-right: 7px;
}
.ratingStar:hover {
    cursor: pointer;
}
.ratingStarOn {
    background: url('../images/star.png') no-repeat;
    width: 45px;
    height: 45px;
    background-size: contain;
    display: inline-block;
    margin-right: 7px;
}
.ratingStarOn:hover {
    cursor: pointer;
}
.ratingStarUnSelect {
    background: url('../images/star_off.png') no-repeat;
    width: 45px;
    height: 45px;
    background-size: contain;
    display: inline-block;
    margin-right: 7px;
}
.ratingStarUnSelect:hover {
    cursor: pointer;
}
.ratingStarSelect {
    background: url('../images/star.png') no-repeat;
    width: 45px;
    height: 45px;
    background-size: contain;
    display: inline-block;
    margin-right: 7px;
}
.ratingStarSelect:hover {
    cursor: pointer;
}
.ratingSettingResult {
    font-size: 15px;
    color: #008e34;
    margin: 0px 0px 22px 0px;
}
.ErrorRating {
    font-size: 14px;
    color: #8e0010;
    margin: 0px 0px 22px 0px;
}
/* END Рейтинг и опросы */

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #d9534f;
    filter: alpha(opacity=20);
    opacity: 0.7;
}

.close:hover, .close:focus {
    color: #d9534f;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=50);
}

.btn-logout {
    color: #004C6C;
    font-size: 18px;
    background: url(../images/logout.png) right no-repeat;
    background-size: 23px;
    padding-right: 38px;
    padding-top: 4px;
}

.menu-left a:focus {
    text-decoration: none;
}
.menu-left .list-group-item {
    border: none;
    border-radius: 0;
}
.menu-left > .list-group-item:hover > a {
    font-weight: bold;
}
.menu-left > .list-group-item:hover {
    background: #fff;
}

.content-main .btn {
    font-family: Roboto, sans-serif;
    border: none;
    padding: 8px 34px;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
}

.content-main a:hover {
    text-decoration: none;
}

.top_nav .glyphicon {
    color : #004C6C;
}
.top_nav a:hover {
    text-decoration: none;
    color: #004C6C;
}

.content-main .btn-default:active {
    background-color: #79C7FF;
}
.content-main .btn-default:hover {
    background-color: #B0DEFF;
}
.content-main .btn-default {
    color: #052F41;
    background-color: #E2F7FF;
    border-color: #E2F7FF;
}

.content-main .nav-tabs li.active span.underline {
    /*border-bottom: 2px solid #F38300;*/
}

.content-main .nav-tabs .label {
    padding: 3px 8px;
    border-radius: 9px;
    margin-left: 3px;
    font-family: Roboto, sans-serif;
}

/*.content-main .nav-tabs li .label:before {*/
/*content: ' ';*/
/*display: block;*/
/*border-bottom: 2px solid #F38300;*/
/*}*/

.content-main .nav-tabs li.active a {
    color: #F38300;

}

.content-main .nav-tabs li a:hover {
    border: none;
}

.content-main .nav-tabs li a {
    border: none;
    background-color: #fff;
    font-size: 16px;
    color: #6990A1;
    box-shadow: 0px 3px 8px #E2F7FF;
    border-radius: 10px;
    margin-right: 10px;
    height: 55px;
    padding-top: 16px;
}

.content-main .nav-tabs a {
    position: relative;
}
.content-main .nav-tabs {
    border-bottom: none;
    background-color: white;
    margin-bottom: 15px;
    margin-top: 5px;
}

.content-main .nav-tabs li {
    height: 65px;
}

.header_block {
    min-width: 1335px;
}

.content-main .panel form .col-sm-6:not(.notFloat) {
    float: none;
}

.content-main .panel form .control-label {
    float: none;
    text-align: left;
}

.content-main .panel .btn-primary {
    /*padding: 8px 34px;*/
    background-color: #047AAB;
    font-size: 13px;
    text-transform: uppercase;
}

.content-main .panel .btn-primary:hover {
    background-color: #009FE1;
}

.content-main .panel form .control-label {
    color: #598BA0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
}
.safari .content-main .panel input[type='search']::placeholder {
    line-height: 20px;
}

.content-main .panel input[type='search']::placeholder {
    color: #6990A1;
    font-size: 20px;
    font-weight: 400;
    padding-left: 0px;
}
.content-main .panel input[type='search'] {
    height: 41px !important;
}

.content-main .panel textarea::placeholder,
.content-main .panel input[type='tel']::placeholder,
.content-main .panel input[type='text']::placeholder,
.content-main .panel input[type='number']::placeholder,
.content-main .panel input[type='password']::placeholder {
    color: #6990A1;
    font-size: 20px;
    font-weight: 400;
    padding-left: 0px;
}

.content-main .panel select:hover,
.content-main .panel select:hover,
.content-main .panel form textarea:hover,
.content-main .panel form textarea:focus,
.content-main .panel input[type='tel']:hover,
.content-main .panel input[type='text']:hover,
.content-main .panel input[type='number']:hover,
.content-main .panel input[type='file']:hover,
.content-main .panel input[type='password']:hover {
    border: 1px solid #4CC8FC;
}

.content-main .panel form textarea {
    border: 1px solid #E5E5E5;
    font-size: 16px;
    padding: 10px;
    background-color: #FBFBFB;
}
.content-main .panel select,

.content-main .panel select,
.content-main .panel input[type='tel'],
.content-main .panel input[type='text'],
.content-main .panel input[type='number'],
.content-main .panel input[type='password'],
.content-main .panel input[type='file'] {
    border: 1px solid #E5E5E5;
    height: 41px;
    background-color: #FBFBFB;
    font-weight: 400;
    color: #004C6C;
    font-size: 20px;
    padding: 0 10px;
}

.content-main .panel select:hover,
.content-main .panel input:hover
{
    /*border: 1px solid #4CC8FC;*/
}

.content-main .panel input[type='file'] {
    outline: none;
}

.content-main .panel input[type='tel'] {
    padding-left: 52px;
}

.content-main .panel [class*="grid"] select,
.content-main .panel [class*="grid"] input[type='tel'],
.content-main .panel [class*="grid"] input[type='text'],
.content-main .panel [class*="grid"] input[type='number'],
.content-main .panel [class*="grid"] input[type='file'],
.content-main .panel [class*="grid"] input[type='password'] {
    height: 41px;
    box-shadow: none;
    font-size: 20px;
    padding-left: 10px;
    border: 1px solid #E5E5E5;
}

.content-main [class*="grid"] select:hover,
.content-main [class*="grid"] input[type='tel']:hover,
.content-main [class*="grid"] input[type='text']:hover,
.content-main [class*="grid"] input[type='number']:hover,
.content-main [class*="grid"] input[type='file']:hover,
.content-main [class*="grid"] input[type='password']:hover
{
    border: 1px solid #4CC8FC;
}

.content-main .panel [class*="grid"] .fa,
.content-main .panel [class*="grid"] .fas,
.content-main .panel [class*="grid"] .far {
    font-size: 21px;
    color: #052F41;
}

.content-main .select2-container--krajee .select2-selection--single .select2-selection__arrow b:before {
    /*top: -5px;*/
    right: -4px;
}

.safari_browser .content-main .select2-container--krajee .select2-selection--single .select2-selection__arrow b:before {
    top: -1px;
    right: -4px;
}

.top_nav .fas,
.top_nav .far,
.top_nav .fa {
    color: #004C6C;
}

.top_nav. content-main .panel [class*="grid"] .glyphicon {
    color: #052F41;
}

.content-main .panel [class*="grid"] .glyphicon {
    color: #052F41;
}

.content-main .panel form .graph-select {
    background-color: #fff;
    padding-top: 30px;
    padding-left: 40px;
}

.content-main .panel form strong {
    color: #004C6C;
    font-size: 18px;
}

.content-main .panel form .input-group.date input::placeholder {
    font-size: 15px;
}
.content-main .panel form .radio label {
    color: #004C6C;
    font-size: 14px;
}
.content-main .panel form radio label,
.content-main .panel form .checkbox label {
    font-size: 15px;
}

.content-main .panel form .form-horizontal .checkbox,
.content-main .panel form .form-horizontal .radio-inline,
.content-main .panel form .form-horizontal .checkbox-inline {
    padding-top: 14px;
}

.content-main .panel form .form-group.has-error input[type='file'],
.content-main .panel form .form-group.has-error input[type='tel'],
.content-main .panel form .form-group.has-error input[type='text'],
.content-main .panel form .form-group.has-error input[type='number'],
.content-main .panel form .form-group.has-error input[type='password'] {
    border: 1px solid #FF4B55;
    box-sizing: border-box;
}

.content-main .panel form .form-group.has-success input[type='file'],
.content-main .panel form .form-group.has-success input[type='tel'],
.content-main .panel form .form-group.has-success input[type='text'],
.content-main .panel form .form-group.has-success input[type='number'],
.content-main .panel form .form-group.has-success input[type='password'] {
    border: 1px solid #06C28A;
    box-sizing: border-box;
}

.content-main .panel form .form-group .control-label {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.content-main .panel form .form-group .col-sm-6,
.content-main .panel form .form-group .col-sm-8 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

.content-main .panel form {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px #E2F7FF;
}

.content-main .panel .panel-body {
    /*box-shadow: 0px 4px 25px #E2F7FF;*/
    /*padding: 10px;*/
}

.content-main .panel {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
}
.content-main .panel-primary > .panel-heading {
    color: #004C6C;
    background-color: #fff;
    border-color: #fff;
    font-size: 24px;
    text-shadow: none;
    text-transform: initial;
}

.content-main .panel table {
    border: none;
}

.kv-grid-table thead tr th.kv-grid-table thead tr thead {
    background-color: #fff;
}

.content-main .panel table th,
.content-main .panel table td,
.content-main .panel table tr {
    /*background-color: #fff;*/
    font-size: 16px;
    /*border: none;*/
}


.content-main .panel table tr.kv-grid-group-filter,
.content-main .panel table tr.extend-header {
    border: none;
}


.kv-panel-before {
    border-bottom: none;
}

.kv-grid-container {
    /*background: #FFFFFF;*/
    /*box-shadow: 0px 4px 25px #E2F7FF;*/
    /*color: #053741;*/
    /*padding: 13px;*/
}

.table-bordered {
    /*grid-view*!*/
}

#chart_div {
    box-shadow: 0px 4px 25px #E2F7FF;
    margin: 0 -15px;
    padding: 15px 15px 0 15px;
}

.content-main .grid-view {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px #E2F7FF;
    color: #004C6C;
    padding: 13px;
}

/*body::-webkit-scrollbar-thumb {
    background-image: linear-gradient(180deg, rgba(255, 75, 85, 0.74) 0%, rgba(243, 131, 0, 0.44) 100%);
    border-radius: 10px;
    height: 30px;
}

body::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}*/

/*select2*/
.select2-container--krajee .select2-selection--single .select2-selection__arrow {
    border-left: none;
}

.select2-container--krajee .select2-selection {
    border: 1px solid #E5E5E5;
    color: #004C6C;
    font-size: 20px;
    background-color: #FBFBFB;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.select2-container--krajee.select2-container--open .select2-selection {
    border: 1px solid #E5E5E5;
}

.select2-container--krajee .select2-selection:hover,
.select2-container--krajee .select2-selection:focus {
    border: 1px solid #4CC8FC;
}

.content-main .panel [class*="grid"] .select2-container--krajee .select2-selection {
    height: 41px;
    box-shadow: none;
    font-size: 18px;
    border: 1px solid #E5E5E5;
    font-weight: 400;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__choice__remove {
    margin: -2px 0 0 3px;
}

.select2-container--krajee .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-image: linear-gradient(180deg, #4CC8FC 0%, #E0F2FF 100%);
    border-radius: 10px;
    height: 30px;
}
.select2-container--krajee .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}

.select2-container--krajee .select2-selection--single .select2-selection__arrow b {
    border: none;
}
.select2-container--krajee .select2-selection--single .select2-selection__arrow b:before {
    content: "\f107";
    display: block;
    border: none;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 14px;
}

.has-success .select2-container--open .select2-selection, .has-success .select2-container--krajee.select2-container--focus .select2-selection {
    border-color: #8bea8d;
}

.has-success.select2-container--krajee .select2-dropdown, .has-success .select2-container--krajee .select2-selection {
    border-color: transparent;
}

.input-sm.select2-container--krajee .select2-selection--single {
    height: 41px;
    font-size: 20px;
}

.select2-container--krajee .select2-selection--single .select2-selection__placeholder {
    color: #6990A1;
    font-size: 20px;
    line-height: 28px;
}
/*select2*/

.kv-panel-before {
    background-color: #fff !important;
}

.main_logo {
    margin-left: 61px;
}
.main_logo img {
    width: 80px;
}

.content-main .panel .kv-grid-table tr.kv-group-footer td:first-child {
    font-size: 22px;
    font-weight: 400;
}
.content-main .panel .kv-grid-table .kv-page-summary {
    background-color: #FFEFDC;
    border-radius: 5px;
    border: 1px solid #E5E5E5;
}

.content-main .panel .kv-grid-table .kv-page-summary td {
    background-color: #FFEFDC;
}

.kv-page-summary-container {
    border: none !important;
}

.top_nav select,
.top_nav select:focus,
.top_nav select:hover {
    border: 0px;
    outline: 0px;
    box-shadow: none;
    color: #004C6C;
    font-size: 16px;
    margin-top: 9px !important;
}


.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    background-color: #fff;
    color: #004C6C;
}

.content-main .panel .kv-grid-table tr.kv-group-header td {
    color: #004C6C;
    font-size: 18px;
    background-color: #E0F2FF;
    border-radius: 5px;
}

.kv-grid-table thead tr th {
    padding: 15px;
    font-size: 18px !important;
}

.content-main .panel .kv-grid-table tr td.kv-group-header {
    color: #004C6C;
    font-size: 18px;
    background-color: #E0F2FF;
    border-radius: 3px;
}


.pagination>li>a, .pagination>li>span {
    border: 1px solid #004C6C;
}

.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    border-color: #004C6C;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    background-color: #004C6C;
    border-color: #004C6C;
}

.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
    background-color: #004C6C;
    border-color: #004C6C;
}

/*table*/
.content-main .panel table tbody tr {
    /*border-bottom: 1px solid #4CC8FC;*/
}

.content-main .panel .kv-grid-group-filter table tr:last-child {
    border-bottom: none;
}

.content-main .panel table tbody tr:last-child {
    /*border-bottom: none;*/
}

.content-main .panel table tbody tr td:first-child,
.content-main .panel table tbody tr td:last-child
{
    position: relative;
}

.content-main .panel table tbody tr:last-child td:first-child::before,
.content-main .panel table tbody tr:last-child td:last-child::before {
    display: none;
}

.content-main .panel table tbody tr.kv-grid-group-row,
.content-main .panel table tbody .kv-group-footer,
.content-main .panel table tbody .kv-group-header,
.content-main .panel table .kv-page-summary-container tbody tr {
    border-bottom: none;
}

.content-main .panel table tbody .kv-group-footer:first-child::before,
.content-main .panel table tbody .kv-group-header:first-child::before,
.content-main .panel table tbody .kv-group-footer td:last-child::before,
.content-main .panel table tbody .kv-group-footer td:first-child::before,
.content-main .panel table tbody .kv-group-header td:last-child::before,
.content-main .panel table tbody .kv-group-header td:first-child::before,
.content-main .panel table .kv-page-summary-container tbody tr td:last-child::before,
.content-main .panel table .kv-page-summary-container tbody tr td:first-child::before {
    display: none;
}

.panel-footer {
    border-top: none;
}

/*.content-main .panel .kv-grid-table tbody tr::before {*/
/*content: '';*/
/*}*/

/*.content-main .panel .kv-grid-table tbody tr::after {*/
/*content: '';*/
/*}*/
/*table*/

.top_nav .btn-use-admin {
    border-radius: 5px;
    border: 1px solid #009FE1;
    color: #009FE1;
    background-color: #fff;
    text-decoration: none;
}
.top_nav .btn-use-admin:hover {
    background-color: #009FE1;
    color: #fff;
    border-color: #009FE1;
}
.top_nav .btn-use-admin:focus,
.top_nav .btn-use-admin:active:hover,
.top_nav .btn-use-admin:active:focus,
.top_nav .btn-use-admin:active  {
    background-color: #004C6C;
    color: #FFF;
    border-color: #004C6C;
}

.kv-grid-group-row td::after {
    content: ' ';
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    top: -1px;
    left: 0px;
}

/*modal window*/
/*.modal .modal-header {*/
/*display: none;*/
/*}*/
.modal .modal-body {
    /*text-align: center;*/
    color: #004C6C;
    font-size: 18px;
}

.bootstrap-dialog .bootstrap-dialog-message {
    font-size: inherit;
}

.modal .modal-footer {
    border-top: none;
}

.bootstrap-dialog-footer .btn-warning {
    border-radius: 5px;
    border: 1px solid #004C6C;
    color: #fff;
    background-color: #004C6C;
    text-decoration: none;
}


.bootstrap-dialog-footer .btn-default {
    border-radius: 5px;
    border: 1px solid #00364D;
    color: #00364D;
    background-color: #fff;
    text-decoration: none;
}

.bootstrap-dialog-footer .btn-default:hover,
.bootstrap-dialog-footer .btn-warning:hover {
    background-color: #006F9D;
    color: #fff;
    border: 1px solid #006F9D;
}

.bootstrap-dialog-footer .btn-default:focus,
.bootstrap-dialog-footer .btn-default:active:hover,
.bootstrap-dialog-footer .btn-default:active:focus,
.bootstrap-dialog-footer .btn-default:active,
.bootstrap-dialog-footer .btn-warning:focus,
.bootstrap-dialog-footer .btn-warning:active:hover,
.bootstrap-dialog-footer .btn-warning:active:focus,
.bootstrap-dialog-footer .btn-warning:active {
    background-color: #00364D;
    color: #fff;
    border: 1px solid #00364D;
}

.bootstrap-dialog-footer-buttons {
    display: flex;
    justify-content: center;
}


/*modal window*/

.content-main .panel .addChildren {
    width: 250px;
}

.top_nav .pull-right.user_control_ia {
    margin-top: 12px;
}

.content-main .panel table .kv-grid-group-filter table tr td {
    position: initial;
    border: none;
}

.content-main .panel table .kv-grid-group-filter table tr.close-statistic-yellow {
    position: initial;
    border-radius: 10px !important;
}

.content-main .panel table .kv-grid-group-filter table tr {
    position: initial;
    border: 10px !important;
}


.content-main .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: transparent;
}

.gvAlignRight {
    text-align: right;
}
/*modal window*/

.kv-grid-container {
    overflow: visible;
}

.form_add_place .col-sm-6 {
    display: block;
    margin: 0 auto;
    clear: both;
    float: none;
    text-align: left;
    margin-top: 10px;
}


.department_form .checkbox-inline {
    margin-left: 0px;
    margin-right: 15px;
    line-height: 22px;
}


.panel-backlight,
.tender_grid_view_sh {
    box-shadow: 0px 4px 25px #E2F7FF;
}

.tender_grid_view_sh {
    padding: 15px;
}

.content-main .panel.panel-backlight .grid-view,
.content-main .panel.panel-backlight form {
    box-shadow: none;
}

.content-main .panel.panel-backlight form div.col-sm-4 {
    width: 50%;
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.tender_top_control {
    margin-bottom: 15px;
}
.tender_top_control .input-daterange {
    margin-top: 10px;
    margin-bottom: 15px;
}

.tender_grid_view .kv-grid-group-row td::after {
    display: none;
}

.content-main .tender_grid_view .panel table tbody tr.kv-grid-group-row,
.content-main .tender_grid_view .panel table tbody .kv-group-footer,
.content-main .tender_grid_view .panel table tbody .kv-group-header,
.content-main .tender_grid_view .panel table .kv-page-summary-container tbody tr {
    /*border-bottom: 1px solid #4CC8FC;*/
}

.glyphicon-question-sign.hover:after {
    width: 300px;
    left: -150px;
    z-index: 99;
    font-size: 16px;
}

table > tbody > tr:hover {
    background-color: #ebfaff33;
}

table > tbody > tr:hover:nth-of-type(odd) {
    background-color: #ebfaff33;
}

.modal-content #formSearchAddress .clearFormSearch {
    float: right;
}
.modal-content #formSearchAddress .searchDriverButt {
    float: left;
}
.modal-content #formSearchAddress {
    box-shadow: 0px 4px 25px #E2F7FF;
    padding: 10px 15px 10px 15px;
    margin: 0px 8px 15px 8px;
}
.modal-content #formSearchAddress input[type='text']::placeholder {
    color: #6990A1;
}

.modal-content #formSearchAddress select,
.modal-content #formSearchAddress input[type='text'] {
    height: 34px;
    box-shadow: none;
    font-size: 13px;
    border: 1px solid #4CC8FC !important;
    font-weight: 400;
}

.modal-content #formSearchAddress h3 {
    font-size: 24px;
    text-align: left;
}

.top_nav select.input-sm {
    background: url(../images/angle-for-select.png) right 57% no-repeat;
    line-height: 30px;
}

/*safari hide shadow*/
.top_nav select {
    box-shadow: none !important;
    -webkit-appearance: none !important;
    background-color: transparent !important;
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.top_nav select:focus {
    outline: none;
}


.safari select {
    -webkit-appearance: none !important;
    background-color: #FBFBFB !important;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik00LjgzMTc4IDIuODYzNzJMMC45NjIwNDQgNi42MzUyNkMwLjcxNTc1NSA2Ljg3NTE4IDAuNzE1NzU1IDcuMjY0MTYgMC45NjIwNDQgNy41MDM5NkMxLjIwODExIDcuNzQzNzggMS42MDcyMiA3Ljc0Mzc4IDEuODUzMjcgNy41MDM5Nkw1LjI3NzM5IDQuMTY2NzJMOC43MDE0IDcuNTAzODZDOC45NDc1NyA3Ljc0MzY4IDkuMzQ2NjMgNy43NDM2OCA5LjU5MjcgNy41MDM4NkM5LjgzODg3IDcuMjY0MDQgOS44Mzg4NyA2Ljg3NTA4IDkuNTkyNyA2LjYzNTE2TDUuNzIyOSAyLjg2MzYyQzUuNTk5ODEgMi43NDM3MSA1LjQzODY1IDIuNjgzODIgNS4yNzc0MSAyLjY4MzgyQzUuMTE2MDkgMi42ODM4MiA0Ljk1NDgyIDIuNzQzODMgNC44MzE3OCAyLjg2MzcyWiIgZmlsbD0iIzAwNEM2QyIvPgo8L2c+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMSkiPgo8cGF0aCBkPSJNNS43MjI4OCAxNy4zNzM2TDkuNTkyNjEgMTMuNjAyQzkuODM4OSAxMy4zNjIxIDkuODM4OSAxMi45NzMxIDkuNTkyNjEgMTIuNzMzM0M5LjM0NjU0IDEyLjQ5MzUgOC45NDc0NCAxMi40OTM1IDguNzAxMzkgMTIuNzMzM0w1LjI3NzI2IDE2LjA3MDZMMS44NTMyNiAxMi43MzM0QzEuNjA3MDkgMTIuNDkzNiAxLjIwODAzIDEyLjQ5MzYgMC45NjE5NTYgMTIuNzMzNEMwLjcxNTc4NiAxMi45NzMzIDAuNzE1Nzg2IDEzLjM2MjIgMC45NjE5NTYgMTMuNjAyMUw0LjgzMTc1IDE3LjM3MzdDNC45NTQ4NSAxNy40OTM2IDUuMTE2MDEgMTcuNTUzNSA1LjI3NzI0IDE3LjU1MzVDNS40Mzg1NiAxNy41NTM1IDUuNTk5ODQgMTcuNDkzNSA1LjcyMjg4IDE3LjM3MzZaIiBmaWxsPSIjMDA0QzZDIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iOSIgaGVpZ2h0PSI5IiB0cmFuc2Zvcm09Im1hdHJpeCgwIC0xIC0xIDAgOS43NzczMSA5LjYxODY1KSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPGNsaXBQYXRoIGlkPSJjbGlwMSI+CjxyZWN0IHdpZHRoPSI5IiBoZWlnaHQ9IjkiIHRyYW5zZm9ybT0ibWF0cml4KDAgMSAxIDAgMC43NzczNDQgMTAuNjE4NykiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.safari select.input-sm {
    background: url(../images/angle-for-select.png) right 57% no-repeat;
    line-height: 30px;
}

.content-main .fas,
.content-main .far {
    margin: 0 2px;
}

/*select:focus {
    outline: none;
}*/


.act-export .grid-view {
    background: transparent !important;
    box-shadow: none !important;
}

.panel-body.act-export {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px #E2F7FF;
    margin-top: 26px;
}


.panel-body.act-export .panel table thead {
    background-color: transparent;
}

.panel-body.act-export .grid-view thead {
    background: transparent;
}

.top_nav .pull-right .user_control {
    margin-top: 6px;
}

.top_nav .pull-right .user_control.pull-right {
    margin-top: 12px;
}

.content-main .btn.btn-success {
    color: #fff;
}

.content-main {
    /*width: auto;*/
}

label.label2 {
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

.chart-container {
    box-shadow: 0px 4px 25px #E2F7FF;
    margin-top: 20px;
}

.content-main {
    display: inline-grid;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
}

.content-main .panel .form-horizontal.no_width_lbl .form-group .control-label {
    width: auto;
}

.top_nav .form-control {
    padding: 0 !important;
}

.tooltip.top {
    font-family: 'Roboto';
}

#workTime-form .modaltime {
    display: block !important;
    margin-bottom: 15px;
}

#workTime-form .modaltime #anyday,
#workTime-form .modaltime #everyday
{
    margin: 0 auto;
    width: 60%;
}

#workTime-form .modaltime .companyWorkType {
    width: 57%;
    margin: 0 auto;
}

.content-main form.price-from  div.col-sm-4 {
    width: 50%;
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.register_link {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    display: block;
    margin-top: 16px;
}

.row-signup-form {
    padding-top: 100px;
    padding-bottom: 150px;
}

.row-signup-form .logo_company {
    margin-top: 100px;
}

.row-signup-form h2 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
}

.row-signup-form .login-form {
    padding: 28px;
    width: 491px;
}

.row-signup-form .login-form input[type='password'] {
    margin-bottom: 0px;
    margin-top: 32px;
}

.row-signup-form .login-form input[type='text'] {
    margin-bottom: 0px;
    margin-top: 32px;

}

.row-signup-form .login-form #signupform-client_type label {
    font-size: 15px;
}

.row-signup-form .login-form #signupform-client_type {
    padding-left: 3px;
}

.row-signup-form.is-sms-code-send-signup .logo_company {
    margin-top: 0px;
}

.row-signup-form.is-sms-code-send-signup p a {
    text-decoration: underline;
}

.row-signup-form.is-sms-code-send-signup p {
    font-size: 16px;
}

.row-signup-form.is-sms-code-send-signup .login-form input[type='text'] {
    margin-bottom: 20px;
    margin-top: 10px;
}

.row-signup-form.is-sms-code-send-signup label {
    font-size: 15px;
    font-weight: 500;
}

.form_individual_partner select {
    font-size: 14px;
    height: 28px;
    margin-right: 15px;
}

.form_individual_partner .create_individual_company {
    font-size: 14px;
    height: 28px;
}

.send-sms-code a {
    text-decoration: none !important;
}

.send-sms-code a.btn-primary {
    text-decoration: none !important;
    width: 100%;
    border: none;
    background-color: #ffb546;
    cursor: pointer;
}

.send-sms-code a.btn-primary:hover {
    background-color: #ffc266;
}

.flush_message {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px #E2F7FF;
    color: #053741;
}

.flush_message_call {
    color: #F38300;
    font-size: 18px;
    font-weight: 800;
    margin: 20px 0;
    text-align: center;
    line-height: 50px;
}


.close_cross {
    position: absolute;
    right: 32px;
    top: 26px;
    width: 12px;
    height: 12px;
    opacity: 0.3;
}

.close_cross:hover {
    opacity: 1;
}

.close_cross:before, .close_cross:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 13px;
    width: 2px;
    background-color: #333;
}

.close_cross:before {
    transform: rotate(45deg);
}

.close_cross:after {
    transform: rotate(-45deg);
}


.content-main .panel [class*="grid"] .rating-stars .glyphicon,
.rating-stars .glyphicon
{
    color: #F38300;
    -webkit-text-stroke: transparent;
}

.form_feedback_driver {
    float: right;
}
.form_feedback_driver .form-horizontal {
    box-shadow: none !important;
}

.content-main .panel table tbody tr.close-statistic-blue {
    background-color: #E0F2FF !important;
    color: #004C6C !important;
}

.content-main .panel table tbody tr.close-statistic-yellow {
    background-color: #FFE8CD !important;
    color: #004C6C !important;
}

.content-main .panel .kv-grid-group-filter table tr {
    border: none;
}

.content-main .panel table tbody tr.close-statistic-yellow td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.content-main .panel table tbody tr.close-statistic-yellow td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.content-main .panel table tbody tr.close-statistic-blue td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.content-main .panel table tbody tr.close-statistic-blue td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.content-main .panel table tbody tr.close-statistic-grey {
    border-bottom: 1px solid #E7E7E7 !important;
}

.form_individual_partner ul {
    list-style: none;
    padding-left: 0px;
    padding-top: 10px;
}

.form_individual_partner ul li {
    width: 190px;
    display: inline-block;
}

.form_individual_partner ul li img {
    width: 100%;
}

/*.kv-align-middle {
    border: 1px solid #E5E5E5 !important;
}

.grid-view .table > tbody > tr > td {
    border: 1px solid #E5E5E5 !important;
}

.grid-view .table > thead > tr > td {
    border: 1px solid #E5E5E5 !important;
}*/

.ytext {
    color: #F38300;
}

.wrap .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.content-main button.input-sm {
    line-height: 41px;
    height: 41px;
    padding-top: 0px;
    padding-bottom: 0px;
}


.ctrlact_error_update table>tbody>tr:hover,
.ctrlact_act_update table>tbody>tr:hover {
    background-color: transparent;
}

.content-main button.input-sm.removeButton,
.content-main button.input-sm.addButton {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 120px;
}

.content-main button.input-sm.addButton {
    border: 1px solid #3fad46;
    color: #3fad46;
    background-color: #ffffff;
}

.content-main button.input-sm.addButton .glyphicon-plus {
    color: #3fad46;
}

.content-main button.input-sm.removeButton {
    border: 1px solid #d9534f;
    color: #d9534f;
    background-color: #ffffff;
}

.content-main button.input-sm.addButton:hover,
.content-main button.input-sm.addButton:focus,
.content-main button.input-sm.removeButton:hover > .glyphicon-minus:before,
.content-main button.input-sm.removeButton:focus > .glyphicon-minus:before {
    background-color: #3fad46;
    color: #fff;
}

button.btn.btn-primary.input-sm.addButton:hover > .glyphicon-plus:before {
    color: #fff;
}

.content-main button.input-sm.removeButton > .glyphicon-minus:before {
    color: #d9534f;
}

.content-main button.input-sm.removeButton:hover > .glyphicon-minus:before,
.content-main button.input-sm.removeButton:focus > .glyphicon-minus:before {
    color: #fff;
}

.content-main button.input-sm.removeButton:hover,
.content-main button.input-sm.removeButton:focus {
    background-color: #d9534f;
    color: #fff;
}

.form-group input[type='file']::placeholder {
    color: red !important;
}

/*
.has-success .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
*/

/*
.select2-container--krajee .select2-selection--single .select2-selection__clear {
    right: 10px;
    top: 1px;
    color: #004C6C;
    opacity: 1;
    z-index: 10;
}
*/

.select2-container--krajee .select2-selection--single .select2-selection__clear {
    color: #004C6C;
    opacity: 1;
    z-index: 10;
}

.select2-container--krajee .select2-selection--single .select2-selection__arrow b:before {
    transform: rotate(-90deg);
}

.content-main .panel input.form-control.input-sm[type='text']:disabled,
.content-main .panel input.form-control.input-sm[type='number']:disabled,
.content-main .panel input.form-control.input-sm[type='password']:disabled,
.content-main .panel input.form-control.input-sm[type='file']:disabled
{
    background-color: #F1EEEE;
    border: 1px solid #E5E5E5;
    color: #828282;
}

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

.content-main .panel [class*="grid"] .select2-container--krajee .select2-selection:hover {
    border: 1px solid #4CC8FC;
}

.kv-thead-float .kv-grid-table {
    background-color: white;
}

tbody.employeeTable tr.close-statistic-yellow {
    background-color: #FFE8CD !important;
}

tbody.employeeTable tr.close-statistic-blue {
    background-color: #E0F2FF !important;
    color: #004C6C !important;
}

tbody.employeeTable tr.close-statistic-grey {
    border-bottom: 1px solid #E7E7E7 !important;
    font-size: 16px;
}

tbody.employeeTable tr.close-statistic-yellow td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

tbody.employeeTable tr.close-statistic-yellow td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

tbody.employeeTable tr.close-statistic-blue td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

tbody.employeeTable tr.close-statistic-blue td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.filter-grid-container {
    display: block;
    float: left;
}
.filter-grid-container label.filter-label {
    display: block;
    color: #598BA0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
}

.filter-grid-container label.filter-label {

}

.filter-grid-for-select2 {
    margin-right: 10px;
}
.wrap-filter-period-3i .date-send {
    height: 39px;
    margin-top: -3px;
}

.clearfix:after, .clf:after, .clx:after {
    content: "";
    display: table;
    clear: both;
}

.clear {
    clear: both;
}

.btn-grid-head-filter {
    margin-top: 26px;
}

input[type="checkbox"] {
    transform: scale(1.5);
}

.safari_browser input[type="checkbox"] {
    transform: scale(1.7);
}
.urr_49 .content-main .panel .kv-grid-table .kv-page-summary,
.urr_49 .content-main .panel .kv-grid-table .kv-page-summary td,
.urr_50 .content-main .panel .kv-grid-table .kv-page-summary,
.urr_50 .content-main .panel .kv-grid-table .kv-page-summary td,
.urr_56 .content-main .panel .kv-grid-table .kv-page-summary,
.urr_56 .content-main .panel .kv-grid-table .kv-page-summary td
{
    background-color: #FFEFDC;
}

.urr_49 .date-send,
.urr_50 .date-send,
.urr_56 .date-send
{
    display: none;
}

.ctrl_car.act_history .date-send {
    display: none;
}

.client-down_excel {
    background-color: #f38300 !important;
    height: 39px;
    margin-top: 25px;
    line-height: 24px;
}

#modalCheckClient .checkDataCar {
    float: left;
    width: 35%;
}

#modalCheckClient .checkImg {
    float: left;
    width: 65%;
    padding-right: 15px;
}

#modalCheckClient .checkImg img {
    width: 100%;
}

.wrCheckModal {
    padding: 10px 27px 30px 22px;
}

#modalCheckClient .modal-dialog {
    width: 850px;
}

#modalCheckClient .modal-header {
    padding-bottom: 5px;
    border-bottom: none;
    padding-left: 40px;
    padding-right: 40px;
}

#modalCheckClient .modal-body {
    padding-top: 10px;
}

#modalCheckClient .checkDataCar {
    line-height: 40px;
    padding-left: 20px;
}

.wrCheckModal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modalCheckClient .check-not-found {
    text-align: center;
    color: #ff3d3d;
}

.modal-header {
    padding-bottom: 5px;
    border-bottom: none;
}

#dateSetMonth {
    width: 100%;
    font-weight: 900;
    padding: 2px 17px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
}

.month-item-compare > i {
    position: absolute;
    right: -26px;
    top: 4px;
    color: #F31010;
    cursor: pointer;
}

.month-item-compare {
    border: 1px solid #E5E5E5;
    position: relative;
    display: block;
    height: 30px;
    width: 100px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 28px;
}

.cont-month-compare {
    padding-top: 24px;
    margin-bottom: 40px;
}


.month-item-compare:nth-child(odd) {
    float: left;
}

.month-item-compare:nth-child(even) {
    float: right;
    margin-right: 20px;
}

#showListsYear .addNewYear {
    width: 132px;
    height: 36px;
    color: #fff;
    background-color: #047AAB;
    border: none;
    text-transform: uppercase;
    line-height: 26px;
}

/*#showListsName .addNewItem {
    width: 132px;
    height: 36px;
    color: #fff;
    background-color: #047AAB;
    float: left;
    border: none;
    text-transform: uppercase;
    line-height: 26px;
    padding: 5px 10px;
}*/

#showListsName .modal-dialog {
    width: 320px;
}

#showListsName input:focus {
    outline-width: 0;
}

/*#showListsName .clearItem {
    width: 132px;
    height: 36px;
    color: #fff;
    background-color: #F38300;
    float: right;
    border: none;
    text-transform: uppercase;
    line-height: 26px;
    padding: 5px 10px;
}*/

#showSettingsList h5 {
    padding-left: 20px;
    color: #004C6C;
    font-size: 20px;
}

#showSettingsList .expense-stattotal-tr-name {
    font-weight: 900;
}

#showSettingsList table td {
    padding: 2px 8px;
}

.ui-autocomplete {
    z-index: 2000;
}

.grid-view thead {
    border: 1px solid #E5E5E5;
}

.grid-view tbody {
    border: 1px solid #E5E5E5;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border: 1px solid #E5E5E5;
}

.kv-grid-group-filter,
.filter-grid-container,
.extend-header {
    margin-left: 15px;
    margin-bottom: 10px;
}

input, select {
    box-shadow: none;
    font-size: 20px;
    padding-left: 10px;
    border: 1px solid #E5E5E5;
}

.my-fa-clock-red {
    height: 24px;
    width: 24px;
    background: url("../images/clock_red.png") no-repeat;
    background-size: 23px;
    display: block;
}

.my-fa-clock-blu {
    height: 24px;
    width: 24px;
    background: url("../images/clock.png") no-repeat;
    background-size: 23px;
    display: block;
}
.filter-grid-container select,
.filter-grid-container input {
    height: 41px;
    background-color: #FBFBFB;
    color: #004C6C;
    font-size: 20px;
}

li.active span.tab_wash {
    content: url('../images/tab_wash_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_wash {
    content: url('../images/tab_wash_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_service {
    content: url('../images/tab_service_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_service {
    content: url('../images/tab_service_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_tires {
    content: url('../images/tab_tires_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_tires {
    content: url('../images/tab_tires_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_desinfection {
    content: url('../images/tab_desinfection_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_desinfection {
    content: url('../images/tab_desinfection_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_parking {
    content: url('../images/tab_parking_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_parking {
    content: url('../images/tab_parking_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_penalty {
    content: url('../images/tab_penalty_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_penalty {
    content: url('../images/tab_penalty_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_penalty_check {
    content: url('../images/tab_penalty_check_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_penalty_check {
    content: url('../images/tab_penalty_check_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_trucking {
    content: url('../images/tab_trucking_orange.png');
    vertical-align: text-top;
    margin-top: -4px;
    height: 30px;
}

span.tab_trucking {
    content: url('../images/tab_trucking_blue.png');
    vertical-align: text-top;
    margin-top: -4px;
    height: 30px;
}

li.active span.tab_fuel {
    content: url('../images/tab_fuel_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_fuel {
    content: url('../images/tab_fuel_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_conditioner {
    content: url('../images/tab_conditioner_orange.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

span.tab_conditioner {
    content: url('../images/tab_conditioner_blue.png');
    vertical-align: text-top;
    margin-top: -6px;
    height: 30px;
}

li.active span.tab_text {
    color: #F38300;
}

.select2-container--krajee .select2-results__group {
    font-size: 16px;
}

.select2-container--krajee .select2-results__option .select2-results__option {
    font-size: 18px;
}

.my-fa-bell {
    height: 24px;
    width: 24px;
    background: url("../images/bell.png") no-repeat;
    background-size: 23px;
    display: block;
}

.my-fa-cog {
    height: 26px;
    width: 24px;
    background: url(../images/settings.png) no-repeat;
    display: block;
    background-size: 24px;
    margin-top: 5px;
}

select#actsearch-client_id {
    /*width: auto !important;*/
    color: #004C6C;
}

.modal .close {
    font-size: 50px;
    color: #F38300;
}

.safari .pull-left select {
    background-color: inherit !important;
}

.datepicker table tr td span {
    display: block;
    width: 67px;
    height: 33px;
    line-height: 33px;
    float: left;
    cursor: pointer;
    border-radius: 30px;
    border-color: #FFEFDC !important;
    margin: 7px;
}

.datepicker table tr td span:hover {
    border: 1px solid #FFEFDC;
    border-radius: 10px;
    background: none;
}

.datepicker table tr td span.focused {
    background: transparent;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover {
    text-shadow: none;
}

.dropdown-menu {
    min-width: 334px;
    min-height: 260px;
    color: #004C6C;
}

.datepicker .next {
    content: url('../images/next.png');
    float: right;
    width: 26px;
    margin-top: 5px;
}

.datepicker .prev {
    content: url('../images/prev.png');
    float: left;
    width: 26px;
    margin-top: 5px;
}

.datepicker table tr td {
    width: 335px;
    height: 200px;
}

.datepicker .datepicker-days table tr td {
    width: 52px;
    border-radius: 10px;
    height: 26px;
    line-height: 14px;
    margin-top: 10px;
}

.datepicker .datepicker-days table tr td.active,
.datepicker .datepicker-days table tr td.active:hover {
    background-color: #FFEFDC;
    color: #004C6C;
    text-shadow: none;
    border: 1px solid #FFEFDC;
}

.datepicker .datepicker-days table tr td:hover {
    background-color: #FFFFFF;
    color: #004C6C;
    text-shadow: none;
    border: 1px solid #FFEFDC;
}

.datepicker-days tr {
    display: flex;
    border-color: white !important;
}

.datepicker-days thead tr th.dow {
    margin-right: 22px;
    margin-top: 10px;
}

.datepicker-days thead tr {
    margin-left: 12px;
}

.datepicker-days th.datepicker-switch {
    width: -webkit-fill-available;
}

.datepicker-days th.next {
    margin-right: 20px;
}

.datetimepicker th.next,
.datetimepicker th.prev {
    width: 20px;
    height: 23px;
    margin-bottom: 7px;
}

.datepicker-switch,
.switch {
    font-size: 24px;
    color: #F38300;
    width: auto;
}

th.datepicker-switch:hover,
th.prev:hover,
th.next:hover,
th.switch:hover {
    background-color: inherit !important;
}

.datetimepicker table {
    width: -webkit-fill-available;
}

td.day.active,
span.month.active,
span.year.active,
span.hour.active,
span.minute.active {
    color: #004C6C !important;
    background: #FFEFDC !important;
    text-shadow: none !important;
}

td.day.active:hover,
span.month.active:hover,
span.year.active:hover,
span.hour.active:hover,
span.minute.active:hover {
    border: 1px solid #FFEFDC !important;
}

.datetimepicker table tr td span {
    border-radius: 30px;
}

span.month:hover,
span.year:hover,
span.hour:hover,
span.minute:hover {
    background: inherit !important;
    border: 1px solid #FFEFDC;
}

td.day {
    width: 50px;
    height: 25px;
    padding: 3px;
    border-radius: 30px;
}

td.day:hover {
    border: 1px solid #FFEFDC;
    display: block;
    background: inherit !important;
    height: 31px;
}

.rating-container .filled-stars {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    white-space: nowrap;
    overflow: hidden;
    -webkit-text-stroke: 1px #F38300;
    text-shadow: none;
    -webkit-text-fill-color: #F38300;
}

.rating-container .empty-stars {
    -webkit-text-fill-color: #F38300;
}

#previewStatus {
    background:#fff;
    padding:12px;
    position:fixed;
    font-size:14px;
    z-index:50;
    border-radius:3px;
    border:1px solid #069;
}

.showStatus:hover {
    cursor:pointer;
}
.glyphicon-link:hover {
    cursor:pointer;
}

.view_corr_act_table_before_grid,
.view_arch_act_table_before_grid {
    margin-left: 0px;
    clear: both;
}

.grid-view .view_corr_act_table_before_grid tbody,
.grid-view .view_arch_act_table_before_grid tbody {
    border: none;
}

.grid-view .view_corr_act_table_before_grid table:first-child {
    width: 47%;
    float: left;
}

.grid-view .view_corr_act_table_before_grid table:last-child {
    width: 48%;
    float: right;
}

.grid-view .view_arch_act_table_before_grid table:first-child {
    width: 47%;
}

.grid-view .view_arch_act_table_before_grid table:last-child {
    width: 48%;
}

.content-main .panel .view_corr_act_table_before_grid table .close-statistic-white,
.content-main .panel .view_arch_act_table_before_grid table .close-statistic-white {
    border-top: 1px solid #E7E7E7;
}

.content-main .panel .view_corr_act_table_before_grid table tr:nth-child(2),
.content-main .panel .view_arch_act_table_before_grid table tr:nth-child(2) {
    border-top: none;
}

table.border-btm .close-statistic-white {
    border-top: 1px solid #E7E7E7;
}

table.border-btm tr:nth-child(2) {
    border-top: none;
}

.ctrlact_load_list table.border-btm tr:nth-child(3) {
    border-top: none;
}

.ctrlact_activity_showlinking .content-main .btn,
.ctrlact_load_list .content-main .btn {
    padding: 6px 15px;
}

.ctrlact_load_list .extend-header {
    margin-left: 0px;
}

.content-main .panel .view_corr_act_table_before_grid table *,
.content-main .panel .view_arch_act_table_before_grid table * {
    font-size: 20px !important;
}

.ctrl_act.act_correct .kv-panel-before {
    padding-left: 0px;
    padding-right: 0px;
}

.content-main .panel .view_corr_act_table_before_grid table .close-statistic-white td,
.content-main .panel .view_arch_act_table_before_grid table .close-statistic-white td {
    color: #03709D;
}

.ctrl_act.act_correct .filter-grid-container {
     margin-left: 0px;
}

.wrap.ctrlact_act_correct .filter-wrap_inp .btn {
    display: none;
}

.show_only_user, .show_all_user {
    cursor: pointer;
}

.show_only_user:hover, .show_all_user:hover {
    color: #F38300 !important;
}

.ctrl_act #act-grid-container .act-grid {
    background-color: #FBFBFB;
    vertical-align: middle;
    font-size: 18px;
}

.ctrl_act #act-grid-container .act-grid {
    background-color: #FBFBFB;
    vertical-align: middle;
    font-size: 18px;
}

.ctrl_act.urr_49 #act-grid-container .act-grid {
    background-color: #fff;
}

#act-grid-container .kv-group-footer.child .numberCompany {
    color: #03709D;
    text-align: center;
}

#act-grid-container .kv-group-footer.child > td {
    font-size: 18px;
    vertical-align: middle;
    font-weight: 400;
}

#act-grid-container .kv-group-footer.child > td:nth-child(2) {
    cursor: pointer;
    color: #03709D;
}

#act-grid-container .kv-group-footer.child > td:nth-child(2):hover {
    color: #F38300;
}


.greenBtn {
    color: #01B47E !important;
    border: 1px solid #01B47E !important;
    background-color: #fff !important;
    height: 41px;
    width: auto;
    padding: 9px 19px !important;
    border-radius: 5px;
    margin-left: 20px;
    font-size: 13px;
}

.yellowBtn {
    color: #F38300 !important;
    border: 1px solid #F38300 !important;
    background-color: #fff !important;
    height: 41px;
    width: auto;
    padding: 9px 19px !important;
    border-radius: 5px;
    margin-left: 20px;
    font-size: 13px;
}

.redBtn {
    color: #F31010 !important;
    border: 1px solid #F31010 !important;
    background-color: #fff !important;
    height: 41px;
    width: auto;
    padding: 9px 19px !important;
    border-radius: 5px;
    margin-left: 20px;
    font-size: 13px;
}

.blueBtn {
    color: #047AAB !important;
    border: 1px solid #047AAB !important;
    background-color: #fff !important;
    height: 41px;
    width: auto;
    padding: 9px 19px !important;
    border-radius: 5px;
    margin-left: 20px;
    font-size: 13px;
}

.greenBtn:hover {
    background-color: #01B47E !important;
    color: #fff !important;
    cursor: pointer;
}

.yellowBtn:hover {
    background-color: #F38300 !important;
    color: #fff !important;
    cursor: pointer;
}

.redBtn:hover {
    background-color: #F31010 !important;
    color: #fff !important;
    cursor: pointer;
}

.blueBtn:hover {
    background-color: #047AAB !important;
    color: #fff !important;
    cursor: pointer;
}

.slider_prev, #kvFileinputModal .bi-caret-left-fill {
    content: url('../images/slider_prev.png');
    float: left;
    width: 26px;
    margin-top: 5px;
}

.slider_next, #kvFileinputModal .bi-caret-right-fill {
    content: url('../images/slider_next.png');
    float: left;
    width: 26px;
    margin-top: 5px;
}

.imgTickBlue {
    background: url('../images/tick_blue.png') no-repeat;
    background-size: 19px;
    display: block;
    height: 19px;
    width: 19px;
    margin-left: 23px;
    margin-right: 23px;
}

.kv-editable-submit:focus .imgTickBlue {
    background-image: url('../images/tick_white.png');
    background-size: 19px;
    display: block;
    height: 19px;
    width: 19px;
}

.Finput a.kv-file-download.btn.btn-sm.btn-kv.btn-default.btn-outline-secondary {
    background: url("../images/download.png") no-repeat;
    background-size: 17px;
    padding: 0px 10px;
    display: inline-block;
    height: 20px;
    width: 20px;
}

.Finput button.kv-file-remove.btn.btn-sm.btn-kv.btn-default.btn-outline-secondary {
    background: url("../images/trash.png") no-repeat;
    background-size: 17px;
    padding: 0px 10px;
    display: inline-block;
    height: 20px;
    width: 20px;
}

.Finput button.kv-file-zoom.btn.btn-sm.btn-kv.btn-default.btn-outline-secondary {
    background: url("../images/loop.png") no-repeat;
    background-size: 17px;
    padding: 0px 10px;
    display: inline-block;
    height: 20px;
    width: 20px;
}

#kvFileinputModal .bi-download::before, #kvFileinputModal .bi-download,
.Finput .bi-download::before, .Finput .bi-download,
#kvFileinputModal .bi-zoom-in::before, #kvFileinputModal .bi-zoom-in,
.Finput .bi-zoom-in::before, .Finput .bi-zoom-in,
#kvFileinputModal .bi-trash::before, #kvFileinputModal .bi-trash,
.Finput .bi-trash::before, .Finput .bi-trash
{
    content: none !important;
}

.tooltip, .popover {
    font-family: initial;
}

select#month,
select#year,
select.select-period {
    border-radius: 5px;
}

.imgCopy {
    background: url('/images/copy.png') no-repeat;
    background-size: 20px;
    display: block;
    height: 20px;
    width: 20px;
}

.rotate-left {
    font-size: 16px;
}

.rotate-right {
    margin-left:10px;
    font-size: 16px;
    transform: scale(-1, 1);
}

.file-preview-image {
    font: 14px sans-serif !important;
}

.headingNewStyle {
    font-size: 28px !important;
    color: #F38300 !important;
    font-weight: bold !important;
    text-transform: initial !important;
}

/* fix select2 (select2 < editable) */
.select2-container--open {
    z-index: 1065;
}

/* fix иконок в fileinput */
.Finput .file-preview .glyphicon-download:before,
.Finput .file-preview .glyphicon-trash:before,
.Finput .file-preview .glyphicon-move:before,
.Finput .file-preview .glyphicon-zoom-in:before {
    content: none;
}

/* фикс дизайеа после обновления композера */
.kv-table-header {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}

.kv-float-header {
    box-shadow: none;
}

.select2-container--krajee-bs3 .select2-selection {
    background-color: #FBFBFB;
    border: 1px solid #E5E5E5;
    box-shadow: none;
    color: #004C6C;
}

.select2-container--krajee-bs3 .select2-selection--single,
.input-sm.select2-container--krajee-bs3 .select2-selection--single {
    font-size: 20px;
    height: 41px;
}

.select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow {
    border-left: 0;
}

.select2-container--krajee-bs3 .select2-selection--single .select2-selection__placeholder {
    color: #6990A1;
    font-size: 20px;
    line-height: 28px;
}

.select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow b:before {
    content: "\f107";
    border: none;
    font-family: "Font Awesome 5 Free", serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 0;
    right: -4px;
    font-size: 14px;
    transform: rotate(-90deg);
}

.select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow b {
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
    border: none;
}

.select2-container--krajee-bs3 .select2-selection--single .select2-selection__rendered {
    color: #004C6C;
}

.select2-container--krajee-bs3 .select2-selection {
    background-color: #FBFBFB;
}
/* END фикс дизайеа после обновления композера */

/* Меняем цвет ячейки с датой в DatePicker как у DateTimePicker */
.datepicker table tr td.today {
    color: #FFF !important;
    background-image: linear-gradient(to bottom, #0088cc, #0044cc) !important;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) !important;
}
/* END Меняем цвет ячейки с датой в DatePicker как у DateTimePicker */

/* Переназначаем класс виджета PhoneInput */
.iti {
    position: relative;
    display: initial;
}
/* END Переназначаем класс виджета PhoneInput */

.hiddenInputLanguages {
    display: none;
}