@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Medium.eot');
    src: local('HelveticaNeueCyr-Medium'),
    url('../fonts/HelveticaNeueCyr-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Medium.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Black.eot');
    src: local('HelveticaNeueCyr-Black'),
    url('../fonts/HelveticaNeueCyr-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Black.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Roman.eot');
    src: local('HelveticaNeueCyr-Roman'),
    url('../fonts/HelveticaNeueCyr-Roman.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Roman.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Bold.eot');
    src: local('HelveticaNeueCyr-Bold'),
    url('../fonts/HelveticaNeueCyr-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url("../fonts/Akrobat-SemiBold.otf") format("truetype");
}

@font-face {
    font-family: 'Akrobat Regular';
    src: url("../fonts/Akrobat-Regular.otf") format("opentype");
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url("../fonts/roboto-condensed.ttf") format('truetype');
}

@font-face {
    font-family: 'Gotham';
    src: url("../fonts/GothaProBol.otf") format('opentype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "HelveticaNeueCyr", sans-serif;
    color: #000;
}

a {
    color: #73af1f;
    transition: all 0.4s;
}

a:hover {
    color: #d47b00;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "HelveticaNeueCyr", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 70px;
    bottom: 35px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #d99537;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #e1444d;
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background-image: url(../images/background.png);
    transition: all 0.5s;
    z-index: 997;
    padding: 0;
    padding: 0 12px;
}

#header.header-scrolled {
    background: #a2cc78;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-inner-pages {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#header .logo a {
    color: #556270;
}

#header .logo img {
    max-height: 40px;
}

@media (min-width: 1200px) {
    #header .container{
        max-width: 1500px!important;
    }
}


@media (max-width: 992px) {
    #header {
        padding: 12px 0;
    }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 12px 35px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
    /*font-weight: 500;*/
    font-family: "Roboto Condensed";
    text-transform: uppercase;
    /*font-weight: 700;*/
    padding: 5px 15px;
}

.nav-menu a:hover, .nav-menu li:hover > a {
    color: #d47b00;
}

.nav-menu li.active:hover > a {
    color: #fff;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #556270;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #d9232d;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

.lk-header-btn {
    color: #006f44!important;
    background-color: #fff;
    border-radius: 15px;
}

/* Get Startet Button */
.get-started-btn {
    margin-left: 25px;
    background: #d9232d;
    color: #fff;
    border-radius: 4px;
    padding: 8px 30px 9px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.get-started-btn:hover {
    background: #e1444d;
    color: #fff;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    left: 15px;
    top: 12px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #a2cc78;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 700;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #d99537;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(63, 73, 83, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 20px 0;
}

.section-bg, .services .icon-box {
    background-color: #f8f9fa;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "HelveticaNeueCyr", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #e6636a;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "HelveticaNeueCyr", sans-serif;
    color: #556270;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #e5e5e5;
    padding: 0 0 30px 0;
    color: #000;
    font-size: 16px;
}

#footer .footer-top {
    background: #515d6a;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "HelveticaNeueCyr", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #d9232d;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: white;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #d9232d;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #df3740;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    font-weight: 600;
}

#footer .credits a:hover {
    color: white;
}

.pagin-box {
    text-align: center;
    margin-top: 3rem;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #636363;
    border-color: #a99698;
}

.pagination > li > a, .pagination > li > span {
    color: #a99698;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #a94442;
}

section.nav-2 {
    padding: 0;
    margin-top: 48px;
    background-image: url(../images/menu-bg.png);
}

.svg-icon path {
    fill: white;
}

.hasDatepicker {
    display: block;
    width: 27%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-align: center;
}

#path2 {
    fill: white;
}

.nav-menu-2 ul {
    list-style-type: none;
    margin-bottom: 0;
}

/*tasks comands*/
/*checkbox*/
.checkbox-design input[type="checkbox"] {
    display: none;
}

.checkbox-design {
    display: inline-block;
}

.checkbox-design p {
    width: 100px;
    display: block;
}

.checkbox-design p:last-child {
    margin-bottom: 0;
}

.checkbox-design label {
    min-height: 40px;
    line-height: 16px;
    width: 40px;
    display: block;
    white-space: nowrap;
    cursor: pointer;
    margin: 0 auto;
    background: no-repeat url('../images/checkbox-design-label-separately.png') top left;
    margin-bottom: 0 !important;
}

.checkbox-design.checkbox-design-min label {
    background: no-repeat url('../images/checkbox-design-label-separately-min.png') top left;
    width: initial;
    padding-left: 30px;
    font-size: 15px;
}

.checkbox-design label.current {
    background: no-repeat url('../images/checkbox-design-label-separately-checked.png') top left;
}

.checkbox-design-checked label {
    background: no-repeat url('../images/checkbox-design-label-separately-checked.png') top left !important;
}

.checkbox-design.checkbox-design-min label.current {
    background: no-repeat url('../images/checkbox-design-label-separately-min-checked.png') top left;
}

.checkbox-design {
    font-size: 12px;
}
/*\checkbox*/

/*checkbox*/
.checkbox-design-two input[type="checkbox"] {
    display: none;
}

.checkbox-design-two {
    display: inline-block;
}

.checkbox-design-two p {
    width: 100px;
    display: block;
}

.checkbox-design-two p:last-child {
    margin-bottom: 0;
}

.checkbox-design-two label {
    min-height: 40px;
    line-height: 16px;
    width: 40px;
    display: block;
    white-space: nowrap;
    cursor: pointer;
    margin: 0 auto;
    background: no-repeat url('../images/checkbox-design-label-separately.png') top left;
    margin-bottom: 0 !important;
}

.checkbox-design-two.checkbox-design-two-min label {
    background: no-repeat url('../images/checkbox-design-label-separately-min.png') top left;
    width: initial;
    padding-left: 30px;
    font-size: 15px;
}

.checkbox-design-two label.current {
    background: no-repeat url('../images/checkbox-design-label-separately-checked.png') top left;
}

.checkbox-design-two.checkbox-design-checked.checkbox-design-checked-grey label {
    background: no-repeat url('../images/checkbox-design-label-separately-checked-grey.png') top left !important;
}

.checkbox-design-two-checked label {
    background: no-repeat url('../images/checkbox-design-label-separately-checked.png') top left !important;
}

.checkbox-design-two.checkbox-design-two-min label.current {
    background: no-repeat url('../images/checkbox-design-label-separately-min-checked.png') top left;
}

.checkbox-design-two {
    font-size: 12px;
}
/*\checkbox*/

.checked-grey {
    background: url("../images/checkbox-design-label-separately-checked-grey.png");
    width: 40px;
    height: 40px;
}

.w-5 {
    width: 5% !important
}

.w-10 {
    width: 10% !important
}

.w-15 {
    width: 15% !important
}

.w-20 {
    width: 20% !important
}

.w-30 {
    width: 30% !important
}

.w-40 {
    width: 40% !important
}

.w-45 {
    width: 45% !important
}

.w-60 {
    width: 60% !important
}

.w-70 {
    width: 70% !important
}

.w-80 {
    width: 80% !important
}

.w-90 {
    width: 90% !important
}

.nav-menu-2 li {
    display: inline-block;
    padding: 0 !important;
    text-align: center;
    border-right: 2px solid #64983d;
    position: relative;
}

.nav-menu-2 li:first-child {
    border-left: 2px solid #64983d;
}

.nav-menu-2 li img {
    max-width: 50px;
    padding-bottom: 10px;
}

.nav-menu-2 li a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 20px 25px;
    display: block;
    min-width: 144px;
    font-weight: 500;
}

.nav-menu-2 li a:hover {
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.no-bg {
    background: none !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: calc(2.25rem + 2px);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
    right: 5px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 29px;
}

.faq-question {
    width: 97%;
    float: left;
}

.faq-icon {
    width: 2%;
    float: left;
    text-align: center;
    font-size: 1.3rem;
}

.faq-anno {
    padding: 35px;
    display: block;
}

.haserror {
    border-color: red;
}

.haserror::-webkit-input-placeholder {
    color: #c0392b;
}

.haserror::-moz-placeholder {
    color: #c0392b;
}

/* Firefox 19+ */
.haserror:-moz-placeholder {
    color: #c0392b;
}

/* Firefox 18- */
.haserror:-ms-input-placeholder {
    color: #c0392b;
}

.hidden {
    display: none;
}

.btn-link:hover {
    color: #d47b00;
    text-decoration: none;
}

.btn-link {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.4s;
}

.account-icon {
    position: relative;
}

.account-icon:before {
    display: block;
    position: absolute;
    content: '';
    width: 20px;
    height: 25px;
    background-image: url(../images/account-icon.png);
    left: -30px;
}

.page-heading {
    font-size: 48px;
    position: relative;
    text-transform: uppercase;
    color: #000;
    display: table;
    margin: auto;
    margin-bottom: 30px;
    padding-left: 80px;
}

.page-heading-icon:before {
    display: block;
    content: '';
    position: absolute;
    background-color: #94be33;
    background-image: url(../images/command-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    left: 0px;
    top: 5px;
}

.page-heading-icon-monitor:before {
    display: block;
    content: '';
    position: absolute;
    background-image: url(../images/task-icon-1.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 51px;
    height: 51px;
    left: 0px;
    top: 5px;
}

.btn-orange {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #d99537;
    border-radius: 5px;
    border-bottom: 4px solid #c9281c;
    display: block;
    padding: 8px;
    transition: all 0.4s;
    font-weight: 500;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link {
    border: 0 !important;
}

.row-eq-height .btn-orange {
    height: 100%;
}

.btn-green {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #99c13d;
    border-radius: 5px;
    border-bottom: 4px solid #48710d;
    display: block;
    height: 100%;
    padding: 8px;
    transition: all 0.4s;
    font-weight: 500;
}

.btn-orange:hover {
    background-color: #b68036;
}

.btn-green:hover {
    background-color: #83a436;
}

.btn-orange:hover,
.btn-green:hover {
    color: #fff;
}

.btn-new-user {
    padding-left: 70px;
    background-image: url(../images/add-user.png);
    background-repeat: no-repeat;
    background-position: 15px center;
}

.btn-choose-role {
    padding-left: 70px;
    background-image: url(../images/choose-role.png);
    background-repeat: no-repeat;
    background-position: 15px center;
}

.pdf-link {
    font-size: 14px;
    line-height: 120%;
    display: block;
    position: relative;
    padding-left: 90px;
}

.pdf-link:before {
    display: block;
    position: absolute;
    content: '';
    width: 34px;
    height: 38px;
    background-image: url(../images/pdf-icon.png);
    left: 20px;
}

.row-bordered {
    padding: 30px 0;
    border-top: 2px solid #e4e8e7;
    border-bottom: 2px solid #e4e8e7;
}

.row-bordered-bottom {
    border-bottom: 2px solid #e4e8e7;
}

.search-box {
    width: 100%;
    display: block;
    height: auto;
    background-image: url(../images/search-bg.png);
    border-radius: 10px;
    padding: 40px;
}

.search-box input {
    width: 100%;
    font-style: italic;
    border-radius: 5px;
    border: 0;
    padding: 10px;
}

.coord-list-item {
    padding: 20px;
    line-height: 120%;
    font-size: 16px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    margin: 16px 0;
}

.coord-list-item:nth-child(even) {
    background-color: #f4f4f4;
}

.coord-list-item:first-child {
    margin-top: 0;
}

.avatar {
    padding: 7px;
    border-radius: 50%;
    background-image: url(../images/search-bg.png);
    width: 99px;
    height: 99px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.avatar img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.coord-name {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 15px;
}

.coord-icon {
    margin: 5px auto;
    display: block;
}

.delete-link {
    color: #000;
    text-transform: uppercase;
    position: relative;
    margin: auto;
    text-align: center;
    display: block;
    padding-right: 40px;
    padding-top: 10px;
    margin-top: 20px;
    max-width: 150px;
}

.delete-link:after {
    position: absolute;
    display: block;
    content: '';
    background-image: url(../images/cross.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff001e;
    right: 0;
    top: 0;
    border-bottom: 4px solid #840010;
}

.coord-list-heading {
    width: 80%;
    background: red;
    margin: auto;
    color: #fff;
    background-color: #d99537;
    font-size: 21px;
    padding: 10px 85px;
    border-radius: 10px 10px 0 0;
}

.btn-chnage-role {
    max-width: 150px;
    margin: auto;
}

.p0 {
    padding: 0 !important;
}

.font-weight-medium {
    font-weight: 500;
}

.task-url-icon {
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

.task-url-icon.disabled-url {
    border: 2px solid #a0a6ab;
}

.lock-disabled {
    border: 2px solid #a0a6ab;
    background-image: url(../images/lock.png);
    background-size: 25px;
}

.lock-enabled {
    border: 2px solid #9bbe7e;
    background-image: url(../images/lock-green.png);
    background-size: 25px;
}

.lock-enabled:hover {
    background-image: url(../images/unlock-green.png);
}

.unlock-disabled {
    border: 2px solid #a0a6ab;
    background-image: url(../images/unlock.png);
    background-size: 25px;
}

.unlock-enabled {
    border: 2px solid #9bbe7e;
    background-image: url(../images/unlock-green.png);
    background-size: 25px;
}

.arrow-green-right {
    border: 2px solid #9bbe7e;
    background-image: url(../images/arrow-green-right.png);
}

.task-list thead td {
    text-align: center;
    font-size: 24px;
    padding: 10px;
    /*display: block;*/
    position: relative;
}

.task-list thead td.green-mark:after, .material-category-table .green-mark:after {
    display: block;
    position: absolute;
    content: '';
    width: 20px;
    height: 4px;
    background-color: #6b9f40;
    bottom: -3px;
    left: 50%;
    margin-left: -10px;
}

.task-list tbody td {
    font-size: 18px;
    padding: 10px;
}

.task-list.f-14 td {
    font-size: 14px;
}

.task-list thead tr {
    border-bottom: 2px solid #ced2d5;
}

.task-list tbody tr {
    border-bottom: 2px solid #e4e8e7;
}

.task-list .date {
    color: #d99537;
}

.shadow-box {
    -webkit-box-shadow: 0 0 22px 0 rgba(105, 105, 105, 0.3);
    -moz-box-shadow: 0 0 22px 0 rgba(105, 105, 105, 0.3);
    box-shadow: 0 0 22px 0 rgba(105, 105, 105, 0.3);
}

/* The heart of the matter */
.region-group > .row {
    overflow-x: auto;
    white-space: nowrap;
}

.region-group .row .col-lg-2,
.region-group .row .col-sm-4,
.region-group .row .col-6 {
    display: inline-block;
    float: none;
    white-space: normal;
}

.mCSB_container {
    white-space: nowrap !important;
}

.mCSB_draggerContainer {
    background-color: #e6e6e6;
    border-radius: 10px;
}

.mCSB_dragger_bar {
    margin: 0 !important;
    height: 100% !important;
    background-image: url(../images/scroll-bg.png);
}

.region-group .region {
    font-size: 18px;
    border-bottom: 1px solid #cad0c8;
    position: relative;
    line-height: 120%;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.region-group .region-quantity {
    font-size: 14px;
}

.region-group .region-completeness {
    background-color: #99c13d;
    border-radius: 3px;
    color: #fff;
    padding: 5px;
}

.region-group .region-strip {
    width: 100%;
    height: 5px;
    margin: 8px 0;
}

.region-group .region-completeness-percentage {
    font-size: 40px;
    font-weight: 900;
    margin: 10px 0;
}

table.etapy {
    font-size: 14px;
    width: 100%;
    font-weight: 500;
}

table.etapy td {
    padding-right: 5px;
    vertical-align: top;
}

.stage-strip {
    margin-top: 10px;
    margin-bottom: 18px;
}

.mon-block {
    border-radius: 5px;
    font-size: 14px;
}

.mon-block img {
    max-width: 100%;
}

.lh-130 {
    line-height: 130%;
}

.lh-120 {
    line-height: 120%;
}

.lh-140 {
    line-height: 140%;
}

.fs-18 {
    font-size: 18px;
}

.inactive {
    background-color: #c0c0c0;
}

.gray {
    background-color: #f4f4f4;
}

.big-counter {
    font-size: 40px;
    font-weight: 900;
}

.text-yellow {
    color: #ffd14f;
}

.green-bg {
    background-color: #99c13d;
}

.red {
    background-color: #d81919;
}

.pink {
    background-color: #d8199b;
}

.blue {
    background-color: #5319d8;
}

.mint-green {
    background-color: #19d88e;
}

.green {
    background-color: #80d819!important;
}

.orange {
    background-color: #e39d0b;
}

.dark-red {
    background-color: #b11d1f;
}

.yellow {
    background-color: #ffcc00!important;
}

.dark-green {
    background-color: #009900;
}

.clr {
    clear: both;
}

.progress {
    background-color: #b3e072;
    height: 9px;
}

.region-group .region:after {
    display: block;
    position: absolute;
    content: '';
    width: 30px;
    height: 7px;
    bottom: -3px;
    left: 50%;
    margin-left: -15px;
    background-color: #5fa63b;
}

.progress-bar {
    border-radius: 0 .25rem .25rem 0;
}

.block-heading-divider {
    height: 1px;
    width: 100%;
    background-color: #b2e072;
    margin-top: 10px;
    margin-bottom: 10px;
}

.progress-bar-block {
    font-size: 14px;
}

.light-blue {
    background-color: #5a99d5;
}

.stage-strip {
    height: 9px;
    border-radius: 0.25rem;
}

.percentage-table td {
    padding: 2px 5px;
    font-weight: 500;
}

.green-number {
    display: block;
    background-color: #99c13c;
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 5px;
    margin: auto;
}

.percentage-table tr td:first-child {
    white-space: nowrap;
}

.page-menu-list tr {
    border-bottom: 2px solid #e4e8e7;
}

.page-menu-list tr:first-child {
    border-top: 2px solid #e4e8e7;
}

.text-black {
    color: #000 !important;
}

a.text-black:hover {
    color: #d47b00 !important;
}

.page-menu-item {
    font-size: 48px;
    font-weight: 400;
}

.card-header button {
    font-size: 48px;
    color: #000;
    text-align: center;
    text-decoration: none !important;
    position: relative;
}

.accordion > .card {
    overflow: visible;
}

.accordion .btn.focus, .accordion .btn:focus {
    box-shadow: none;
}

.card-header button.collapsed:after {
    position: absolute;
    display: block;
    content: '';
    width: 35px;
    height: 18px;
    background-image: url(../images/accordion-arrow-bottom.png);
    background-repeat: no-repeat;
    background-position: center;
    bottom: -15px;
    left: 50%;
    margin-left: -18px;
}

.card .hide-btn.collapsed:before {
    position: absolute;
    display: none;
}

.card .hide-btn.collapsed:before {
    position: absolute;
    display: block;
    content: '';
    width: 35px;
    height: 18px;
    background-image: url(../images/accordion-arrow-bottom.png);
    background-repeat: no-repeat;
    background-position: center;
    bottom: -15px;
    left: 50%;
    margin-left: -18px;
}

.hide-btn {
    font-size: 18px;
    position: relative;
    text-decoration: underline;
    margin-top: 50px;
}

.hide-btn:before {
    display: block;
    position: absolute;
    content: '';
    background-image: url(../images/accordion-arrow-top.png);
    background-repeat: no-repeat;
    background-position: center;
    top: -25px;
    left: 50%;
    margin-left: -18px;
    width: 35px;
    height: 18px;
}

#headingTasks, .card {
    background: none;
    border: 0;
}

.collapse.show {
    position: relative;
}

.step-name {
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    border-bottom: 1px solid #c2c9bf;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 10px;
}

.step-name:after {
    display: block;
    position: absolute;
    content: '';
    width: 30px;
    height: 7px;
    background-color: #6b9f40;
    bottom: -4px;
    left: 50%;
    margin-left: -15px;
}

.step-column {
    margin-bottom: 30px;
}

.step-desc {
    color: #83848b;
    font-size: 14.5px;
    border-bottom: 5px solid #e6e6e6;
    padding-bottom: 10px;
    font-weight: 400;
}

.step-column a.nav-link {
    color: #000;
}

.step-column.active .step-name:after {
    background-color: #d99537;
}

.step-column.active .step-desc {
    border-bottom: 5px solid #99c13c;
}

.step-column.active .step-desc:after {
    content: '';
    border: 15px solid transparent;
    border-top: 15px solid #99c13c;
    display: block;
    position: absolute;
    width: 30px;
    height: 7px;
    bottom: -20px;
    left: 50%;
    margin-left: -15px;
}

.profile-form-block {
    padding: 70px 100px;
}

.profile-form label {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 15px;
}

.profile-form select, .profile-form input[type='text'] {
    font-size: 16px;
    height: 50px;
    padding: 10px;
    border: 1px solid #c0c1c6;
    border-radius: 3px;
}

.form-heading {
    font-size: 48px;
    font-weight: 400;
}

button.btn-orange {
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.nav-tabs {
    border-bottom: 0;
}

a.step-column {
    color: #000 !important;
    font-weight: 500;
}

.login-section {
    background-color: #6b9f41;
    background-image: url(../images/background.png);
}

.pictures-bg {
    background: none;
    background-image: url(../images/main-bg.png);

    background-repeat: repeat-x;
    background-position: center;
    min-height: 240px;
}

.gradient-strip {
    background-image: url(../images/gradient-strip.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: cover;
    height: 25px;
}

.gradient-strip-green {
    background-image: url(../images/gradient-strip-green.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    height: 25px;
}

a.news-heading {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 130%;
}

a.news-heading:hover {
    color: #d47b00;
}

.news-date {
    display: table;
    padding: 8px 20px;
    background-color: #76b320;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
    border-radius: 3px;
}

.home-menu-text {

    text-transform: uppercase;
}

.green-underline {
    font-size: 24px;
    border-bottom: 2px solid #76b320;
    transition: all 0.4s;
}

a:hover .green-underline {
    border-bottom: 2px solid #d47b00;;
}

section.home-menu {
    background-color: #f3f3f3;
}

.hidden {
    transition: all 0s !important;
    opacity: 0;
    cursor: default;
}

.form-bg {
    padding: 30px 100px;
    position: relative;
    background-color: #99c13d;
    border-radius: 10px;
}

.login-form-label {
    margin-bottom: 0;
    margin-top: 15px;
    text-transform: uppercase;
}

form.login-form input {
    border: 1px solid #75a527;
    height: 40px;
    padding: 5px 15px;
    font-style: italic;
}

a.forgot-pass {
    color: #000;
    text-transform: uppercase;
    text-decoration: underline;
    margin-top: 20px;
    margin-bottom: 20px;
}

form .login-btn {
    margin-top: -22px !important;
    position: relative;
}

#login-section .page-heading {
    font-family: "Gotham";
    font-size: 42px;
    margin-top: 80px;
    margin-bottom: 70px;
}

#login-section form {
    margin-bottom: 60px;
}

.profile-link {
    position: relative;
    padding-left: 30px;
    text-decoration: underline;
}

.profile-link:before {
    position: absolute;
    display: block;
    content: '';
    background-image: url(../images/profile-icon.png);
    width: 23px;
    height: 19px;
    left: 0;
    top: -2px;
}

.text-green {
    color: #73af1f;
}

.profile-management-popover {
    border: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
}

.popover-header {
    padding: 8px 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.popover-title {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
}

.example-popovers {
    padding: 30px 0;
}

.acenter {
    text-align: center;
    margin: 30px 0;
}

@media all and (max-width: 1200px) {
    .nav-menu-2 a {
        display: inline-block;
        width: auto;
        min-width: 0;
        padding: 5px !important;
    }

    .nav-menu-2 a img {
        display: none;
    }

}

@media all and (max-width: 991px) {
    .coord-icon {
        display: inline-block;
        margin: 10px 10px;
    }

    .avatar {
        width: 60px;
        height: 60px;
        padding: 4px;
    }

    .coord-name {
        font-size: 18px;
        margin-top: 10px;
    }

    .btn-chnage-role {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .delete-link {
        margin-left: auto;
        margin-right: auto;
    }

    input {
        font-size: 14px;
    }

    .page-menu-item {
        font-size: 30px;
    }
}

@media all and (max-width: 768px) {
    .search-box input {
        margin-bottom: 15px;
    }

    .page-heading-icon {
        font-size: 24px;
    }

    .nav-menu-2 ul {
        padding-left: 0;
        margin: auto;
        display: table;
        text-align: center;
    }

    .nav-menu-2 ul li {
        border: 0;
    }

    .btn-link {
        font-size: 13px;
    }

    section.nav-2 {
        margin-top: 43px;
    }

    .search-section h3 {
        font-size: 24px;
        text-align: center;
    }

    body {
        font-size: 14px;
    }

    .coord-list-item {
        font-size: 14px;
    }

    #footer {
        font-size: 14px;
    }

    table.task-list img {
        display: none;
    }

    .task-list thead td, .task-list tbody td, .task-list tbody td {
        font-size: 14px;
    }

    .task-url-icon {
        width: 35px;
        height: 35px;
    }

    .lock-enabled, .lock-disabled {
        background-size: 18px;
    }

    .task-list tbody td {
        padding: 5px 3px;
    }

    .page-heading {
        font-size: 24px;
    }

    .page-menu-item {
        font-size: 18px;
    }

    .profile-form-block {
        padding: 15px;
    }

    .card-header button, .form-heading {
        font-size: 24px;
    }

    .profile-form label {
        font-size: 14px;
    }

    .profile-form select, .profile-form input[type='text'] {
        font-size: 14px;
        height: 40px;
    }

    #login-section .page-heading {
        font-size: 18px;
    }
}

@media all and (max-width: 575px) {
    .region-group .row {
        max-width: 320px;
    }

    .mon-block.fs-18 {
        font-size: 14px;
    }

    .profile-form .btn-orange, .profile-form .btn-green {
        float: none !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .form-bg {
        padding: 25px;
    }
}

@media all and (max-width: 470px) {
    .account-icon {
        margin-left: 100px !important
    }
}

.mCSB_dragger_bar {
    margin: 0 !important;
    height: 100% !important;
    background-image: url(../images/scroll-bg.png);
}

.text-light-green {
    color: #a2cc78 !important;
}

.btn-light-green {
    background-color: #a2cc78 !important;
    color: #ffffff !important;
}

.btn-light-green:hover {
    background-color: #73af1f !important;
}

.text-main-green {
    color: #73af1f !important;
}

.btn-main-green {
    background-image: url(../images/search-bg.png);
    background-color: #73af1f !important;
    background-size: auto;
    color: #ffffff !important;
}

.btn-main-green:hover {
    opacity: 0.8;
}

.form-box {
    width: 100%;
    display: block;
    height: auto;
    padding: 40px;
    background-color: #f4f4f4;
}

.form-box .form-group .help-block {
    color: #6c757d;
    margin-bottom: 0.3rem;
}

.form-box .form-group .help-block.help-block-error {
    color: #a94442;
}

.main {
    min-height: calc(100vh - 198px);
}

#companyModal .modal-dialog, #roleModal .modal-dialog {
    max-width: 500px;
}

.role-list a:hover:not(.active, .disabled), .company-list a:hover:not(.active, .disabled) {
    background-color: #d9eac9 !important;
}

.role-list .active, .company-list .active {
    background-color: #a2cc78 !important;
    border: none;
}

.role-list .active:hover, .company-list .active:hover {
    cursor: default;
}

.role-list svg, .company-list svg {
    float: right;
}

.info .info-box {
    margin-top: 35px;
    font-size: 18px;
    padding-right: 50px;
    line-height: 27px;
    display: none;
}

.loading-animation {
    background: url('../images/loadingAnimation.gif') no-repeat;
    width: 32px;
    height: 8px;
    display: inline-block;
}

.agreeModal label {
    display: inline;
    cursor: pointer;
    margin-left: 10px;
}

.material-table-header {
    text-align: center;
    font-size: 24px !important;
    padding: 10px;
    position: relative;
}

.material-category-name {
    width: 90%;
    background-color: #d99537;
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
    font-size: 18px;
}

.material-category-table .row {
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #ced2d5;
    font-size: 20px;
}

.align-middle-material {
    display: flex;
    align-items: center;
    justify-content: center
}

.text-bold {
    font-weight: bold;
}

@media all and (max-width: 768px) {
    .hide-mobile {
        display: none
    }
}

@media all and (max-width: 575px) {
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.inf-text-h {
    min-height: 70px;
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-remove:before {
    content: "-";
    font-size: 18px;
}

.glyphicon-plus:before {
    content: "\002b";
}

.multiple-input-list td {
    border: none !important;
}

.multiple-input-list .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.multiple-input-list .btn-default {
    background-color: #f4f4f4;
    color: #444;
    border-color: #ddd;
}

.profile-group {
    border-bottom: 1px dashed;
}

.profile-group h6 {
    color: #d99537;
}

.profile-doo-submenu h6 {
    color: #d99537 !important;
}

.profile-doo-submenu span {
    text-decoration: underline;
}

.profile-doo-submenu .active span {
    text-decoration: none !important;
}

.profile-doo-submenu .active {
    background-color: #e9e9e9;
    color: #444;

}

.profile-doo-submenu {
    border: 1px solid #73af1f;
}

.profile-doo-submenu.fixed {
    position: fixed;
    z-index: 9999;
    top: 50px;
    background-color: #fff;
}

.form-green-label label.control-label {
    color: #73af1f;
}

.text-orange {
    color: #d99537 !important;
}

.fixed-top-self-raiting {
    position: fixed;
    top: 48px;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #e1e1e3 !important;
}

.qualityarea-main-tab tbody {
    min-height: 200px;
}

.btn-outline-green {
    color: #73af1f;
    border-color: #73af1f;
}

.btn-outline-orange {
    color: #d99537;
    border-color: #d99537;
}

.btn-outline-green:hover {
    color: #fff;
    background-color: #73af1f;
    border-color: #73af1f;
}

.btn-outline-orange:hover {
    color: #fff;
    background-color: #d99537;
    border-color: #d99537;
}

.table-bordered .fixed-top-self-raiting th, .table-bordered .fixed-top-self-raiting td {
    border: 1px solid #ffffff;
}

.master-popup {
    bottom: 80px !important;
}

.full-user-list tr td:nth-child(5), .full-user-list tr th:nth-child(5) {
    min-width: 220px;
    max-width: 280px;
    word-break: break-word;
}

/* Notices page markup -- */
.container.notices-container {
    margin-bottom: 40px;
}
.notices-container .notices-list {
    list-style: none;
    height: 55vh;
    margin: 12px 0;
    overflow-y: scroll;
    padding: 0 2px;
    color: #6c757d;
    float: left;
    width: 80%;
}
.notices-list::-webkit-scrollbar {
    width: 8px;
}
.notices-list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.notices-list::-webkit-scrollbar-thumb {
    background: #d99537;
    border-radius: 8px;
}
.notices-list::-webkit-scrollbar-thumb:hover {
    background: #b68036;
}
.notices-container .notices-list li {
    cursor: pointer;
    margin-bottom: 3px;
    display: flex;
    flex-flow: wrap;
    border-radius: 3px;
    background-color: #ffffff;
    border: 1px solid rgba(213,213,213,0.68);
    padding: 0.7rem;
}
.notices-container .notices-list li .read-status {
    align-self: center;
    font-size: 24px;
    color: #ffffff;
    width: 36px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #d99537;
}
.notices-container .notices-list li.read .read-status {
    background-color: #99c13c;
}
.notices-container .notices-list li .message-info {
    max-width: 80%;
    margin-right: auto;
}
.notices-container .notices-list li .message-info p {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    font-family: "Helvetica Neue Cyr";
}
.notices-container .notices-list li:not(.active):hover {
    text-decoration: underline;
}
.notices-container .notices-list li.active {
    color: #333333;
    background-color: #f4f4f4;
    pointer-events: none;
    border-color: #d99537;
}
.notices-container .notices-list li.active.read {
    border-color: #99c13c;
}
.notices-container .notices-list li i.fa-exclamation {
    color: #9e0505;
}
.notices-container .btn-scroll-notices-list {
    position: absolute;
    top: 60vh;
    left: 16px;
    font-size: 18px;
    line-height: 22px;
    color: #99c13c;
    font-weight: 500;
    font-family: "Helvetica Neue Cyr";
    text-align: center;
}
.notices-container .btn-scroll-notices-list:hover {
    text-decoration: underline;
}
.notices-container .btn-scroll-notices-list:focus {
    box-shadow: none;
}
.notices-container .card {
    align-items: center;
    min-height: 40vh;
    overflow-y: auto;
}
.carousel-item-container > .slide-title {
    padding: 0.75rem 1.25rem;
    font-size: 1.4rem;
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    transition: 0.2s;
}
.notices-container .card-title {
    display: none;
}
.notices-container .card-title p, .carousel-item-container > .slide-title p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
}
.notices-container .card-footer {
    color: #333333;
    background-color: #ffffff;
    border-top: none;
    width: 100%;
}
.notices-container .card-footer a,
.notices-container .card-footer span.notice-read {
    float: right;
}
.notices-container .carousel-item-container .card-body,
.notices-container .carousel-item-container .card-title {
    width: 100%;
    font-size: 1rem !important;
    text-align: left;
    border-radius: 5px;
    background-color: #f4f4f4;
}
.notices-container .carousel-item-container .card-title {
    margin-top: 7px;
    padding: 1.25rem;
}
.notices-container .card.important {
    border-color: #9e0505;
    color: #9e0505;
}
.notices-container .slider-controls a:nth-child(2) {
    float: right;
}
.notices-container .slider-controls a.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.notices-container .slider-controls {
    padding: 2px 14px;
    margin-bottom: 7px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}
.notices-container .slider-controls a {
    font-size: 24px;
    display: inline-flex;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(107, 159, 65, 0.68);
}
.notices-container .slider-controls a.disabled {
    pointer-events: none;
    color: #aaa;
    border-color: #aaa;
}
.notices-container .carousel-item-container {
    margin: 14px;
    border-radius: 3px;
    box-shadow: #d2d3d7;
    filter: drop-shadow(0px 3px 12px #d2d3d7);
    background-color: #ffffff;
}
.notices-counter {
    align-self: center;
}
.notices-counter > .current-notice {
    color: #d99537;
    font-weight: 800;
}
.notices-counter > .total-notices {
    font-weight: 700;
}
.unread-notices-counter {
    display: flex;
    align-items: end;
    justify-content: space-around;
    width: 18px;
    height: 18px;
    line-height: 14px;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 999;
}
.notices-tabs {
    flex-flow: row wrap;
    justify-content: space-around;
    border-bottom: 10px solid #d99537;
}
.notices-tabs li {
    flex-grow: 1;
    text-align: center;
    align-self: flex-end;
}
.notices-tabs a.nav-link {
    font-size: 24px;
    border: 3px solid #d99537;
    /*filter: drop-shadow(0px 3px 7.5px #d2d3d7); Если очень захочется */
}
.notices-tabs a.nav-link .tab-image {
    margin-right: 5px;
    height: 21px;
    margin-bottom: 10px;
}
.notices-tabs a.nav-link .tab-image:not(.active) {
    margin-bottom: 7px;
}
.notices-tabs a.nav-link:not(.active) {
    border-radius: 5px 5px 0 0;
    color: #000000;
    background-color: #f4f4f4;
    line-height: 24px;
}
.notices-tabs a.nav-link.active {
    background-color: #d99537;
    border-radius: 5px 5px 0 0;
}
.notices-tabs a.nav-link.active .tab-image.not-active {
    display: none;
}
.notices-tabs a.nav-link:not(.active) .tab-image.active {
    display: none;
}
.notices-tabs a.nav-link.active .tab-image.active {
    display: initial;
}
.notices-tabs a.nav-link:not(.active) .tab-image.not-active {
    display: initial;
}
.user-notice__form form {
    width: 100%;
    font-size: 14px;
}
.user-notice__form .card-title > .form-group {
    font-size: 1rem!important;
}
.user-notice__form .card-footer {
    display: flex;
    justify-content: space-between;
}
.carousel-item.form-item .card-title {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}
.carousel-item.form-item .card-title .form-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.carousel-item.form-item .card-title .form-group label {
    width: 40%;
}
.carousel-item.form-item .card-title .form-group input {
    width: 60%;
}

.btn-write-notice {
    position: absolute;
    bottom: -45px;
    margin-left: -16px;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Helvetica Neue Cyr";
    text-align: center;
    border-radius: 4px;
    border-color: transparent;
    filter: drop-shadow(0px 3px 0px #6b9f40);
    background-color: #99c23d;
}
.title-blur {
    filter: blur(3px);
}

@media (max-width: 768px) {
    .notices-container .notices-list {
        display: none;
    }
}
/* -- Notices page markup */

/* System messages container markup -- */

.system-messages__container {
    margin-top: 7px;
}

.system-messages__header {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}

.system-messages__header_icon {
    display: inline-block;
    background-color: #99c13c;
    width: 35px;
    height: 35px;
    border: 1px solid transparent;
    border-radius: 50%;
    color: white;
    line-height: 35px;
    text-align: center;
}

.system-messages__header_text {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-weight: 700;
}

.system-messages__header_controls {
    position: absolute;
    right: 0;
    bottom: 10px;
}

.system-messages__header_controls a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(107, 159, 65, 0.68);
}

.system-messages__header_controls a:hover {
    border-color: #d99537;
}

.system-messages__header_controls a:focus {
    text-decoration: none;
    color: rgba(107, 159, 65, 0.68);
}

.system-messages__header_controls a.disabled {
    pointer-events: none;
    color: #aaa;
    border-color: #aaa;
}

.system-messages__message_header {
    font-weight: 600;
}

.system-messages__message_body {
    position: relative;
    min-height: 100px;
    margin-top: 5px;
    font-size: 14px;
    padding: 7px;
    border-radius: 5px;
    background-color: #f4f4f4;
    overflow: hidden;
}

.system-messages__message_body.important {
    color: #9e0505;
}

.system-messages__message_is-read {
    position: absolute;
    color: #d99537;
    bottom: 0;
    right: 5px;
}

.system-messages__footer {
    margin-top: 15px;
    font-size: 18px;
    display: none;
}

.system-messages__footer_icon, .system-messages__footer_title {
    color: #6b9f41;
}

.system-messages__footer_icon {
    position: relative;
    font-size: 28px;
}

.system-messages__footer_icon_badge {
    display: inline-block;
    position: absolute;
    right: 1px;
    border-radius: 50%;
    color: #fff;
    min-width: 18px;
    min-height: 18px;
    font-size: 12px;
    font-weight: 600;
    background-color: #9e0505;
    line-height: 19px;
    text-align: center;
}
.system-messages__footer_title {
    padding-left: 8px;
    font-weight: 700;
}
.system-messages__footer_number {
    display: inline-block;
    color: #9e0505;
}
@media (max-width: 768px) {
    .system-messages__header_controls a {
        width: 24px;
        height: 24px;
    }
    .system-messages__header_controls a i {
        vertical-align: text-bottom
    }
}

/* -- System messages container markup */

.btn-orng {
    background-color: #d99537 !important;
    background-size: auto;
    color: #ffffff !important;
}

.btn-orng:hover {
    background-color: #D9A321 !important;
}

/* PROFILE MASTER */
.disabled-next-button {
    background-color: #808080 !important;
    background-image: none !important;
    cursor: default;
    text-decoration: none;
}

.sub-info-step {
    margin-top: 0.2rem;
    margin-left: 0.8rem;
}

table.table-2 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

@media screen and (max-width: 600px) {
    table.table-2 tr {
        display: block;
    }

    table.table-2 tr {
        margin-bottom: 30px;
    }

    table.table-2 th, table.table-2 td {
        display: block;
    }

    table.table-box td {
        height: auto;
    }
}

.table-box.f-4-1 td.w-50 {
    width: auto !important;
}

@media (min-width: 992px) {
    .table-box.f-4-1 td.w-50 {
        width: 50% !important;
    }
}

.btn-orng {
    background-color: #d99537 !important;
    background-size: auto;
    color: #ffffff !important;
}

.btn-orng:hover {
    background-color: #D9A321 !important;
}

/* PROFILE MASTER */
.disabled-next-button {
    background-color: #808080 !important;
    background-image: none !important;
    cursor: default;
    text-decoration: none;
}

.sub-info-step {
    margin-top: 0.2rem;
    margin-left: 0.8rem;
}

table.table-2 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
@media screen and (max-width: 600px) {
    table.table-2 tr{
        display: block;
    }
    table.table-2 tr{
        margin-bottom: 30px;
    }
    table.table-2 th, table.table-2 td{
        display: block;
    }
    table.table-box td {
        height: auto;
    }
}

.table-box.f-4-1 td.w-50 {
    width: auto !important;
}
@media (min-width: 992px) {
    .table-box.f-4-1 td.w-50 {
        width: 50% !important;
    }
}

.popover-header .close {
    cursor: pointer;
}

#command-user-form .select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field {
    min-width: 19rem;
}

.has-green-star::after {
    content: "*";
    margin-left: 3px;
    font-weight: bold;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: #15a810!important;
}

.required-next-message {
    color: #15a810;
}

.is-required::after {
    content: "*";
    margin-left: 3px;
    font-weight: normal;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: tomato;
}

#addRoleModal .modal-dialog, #editUserMunicipalityModal .modal-dialog {
    width: 96%;
}
@media (min-width: 992px) {
    #addRoleModal .modal-dialog, #editUserMunicipalityModal .modal-dialog {
        width: 100%;
        max-width: 1200px;
    }
}

.h-20 {
    height: 20px;
}

.relative {
    position: relative;
}

.center-flex {
    align-items: center;
    justify-content: center;
}

/*--------------------------------------------------------------
# Program scale -->
--------------------------------------------------------------*/
.not-started {
    color: #6c757d;
    border-color: #6c757d;
    padding: 8px;
    transition: all 0.4s;
}

.half-filled {
    color: #fff;
    background-color: #d99537;
    padding: 8px;
    transition: all 0.4s;
}

.full-filled {
    background-image: url(../images/search-bg.png);
    background-color: #73af1f !important;
    background-size: auto;
    color: #ffffff !important;
    padding: 8px;
    transition: all 0.4s;
}

.span-not-filled {
    color: #dc3545;
}

.span-half-filled {
    color: #d99537;
}

.span-full-filled {
    color: #15a810;
}

.youtube-video {
    margin-left: 40px;
    width: 135px;
}

.youtube-video:before {
    position: absolute;
    display: block;
    content: '';
    width: 40px;
    height: 32px;
    background-image: url(../images/youtube.png);
    background-size: cover;
    left: -40px;
    top: -10px;
}

/*--------------------------------------------------------------
# <-- Program scale
--------------------------------------------------------------*/

#teacher-form .form-group.required label.control-label::after, #teacher-form strong.required::after {
    content: "*";
    margin-left: 4px;
    font-weight: normal;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: tomato;
}

.btn-bound-company, .btn-change-company {
    color: #fff;
    background-color: #a2cc78;
    border-color: #a2cc78;
}

.btn-bound-company:hover, .btn-change-company:hover {
    color: #fff;
    background-color: #73af1f;
    border-color: #a2cc78;
}

.btn-unbound-company {
    color: #fff;
    background-color: tomato;
    border-color: tomato;
}

.btn-unbound-company:hover {
    color: #fff;
    background-color: #e84f36;
}

.expert-project-types-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.expert-project-types-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.expert-project-types-container .expert-checkmark {
    position: absolute;
    top: 20%;;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #f1f1f1;
    border: 2px solid #d0e5bb;
}

.expert-project-types-container:hover input ~ .expert-checkmark {
    background-color: #ccc;
    border: 4px solid #a2cc78;
}

.expert-project-types-container input:checked ~ .expert-checkmark {
    background-color: #fff;
    color: #a2cc78;
    border: 2px solid #a2cc78;
}

.expert-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.expert-project-types-container input:checked ~ .expert-checkmark:after {
    display: block;
}

.expert-project-types-container .expert-checkmark:after {
    left: 10px;
    top: -5px;
    width: 10px;
    height: 20px;
    border: solid green;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-sm {
    min-width: 31px;
}

/**---------------------------------------------------
    Parent poll ->
 */

.parent-poll-page .filled-stars {
    color: #a2cc78;
}

.parent-poll-page .f-4-1 th {
    border-bottom: 3px solid #6c757d;
}


.overflow-scroll {
    overflow-x: scroll;
    position: relative;
}

.table-fixed-columns .fixed-column {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    left: -1px;
    z-index: 3;
    background: #fff;
    border: 1px solid #dee2e6!important;
    width: 250px;
}

.table-fixed-columns .fixed-top {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    z-index: 1;
    top: 0;
}

.scroll-button-left {
    position: absolute;
    z-index: 100;
    left: 25px;
}

.scroll-button-right {
    position: absolute;
    z-index: 100;
    left: 100px;
}

/**---------------------------------------------------
    <- Parent poll
 */
.table-box th.bordered {
    border: 1px solid #cccccc;
}
.table-box .green-row {
    background-color: #89CA4C !important;
    color: #ffffff !important;
}
.green-row {
    background-color: #89CA4C !important;
    color: #ffffff !important;
}

/**---------------------------------------------------
    Self Raiting 3v ->
 */
.bg-group-self-raiting3v {
    background: #a2cc78!important;
}
/**---------------------------------------------------
    <- Self Raiting 3v
 */

.bg-orange {
    background-color: #d99537!important;
}

.bold-gothic {
    font-family: "Gotham";
    font-size: 1.2rem;
}

.main-works, .main-works a {
    color: #344652;
    font-weight: 500;
}

.main-works a:hover {
    color: #d99537;
}
.mail-bottom a {
    font-size: 1.5rem;
    font-weight: 600;
}


.mail-bottom {
    color: black!important;;
}

.bottom-white-border {
    border-bottom: 1px solid #fff;
}

.bg-light-green {
    background: #e4fbcd;
}

.bg-light-grey {
    background: #d1d2d4;
}

.fa-size-opt {
    font-size: 20px;
    position: relative;
    top: 2px;
}

.fa-size-opt.fa-times {
    top: 1px;
}

.calendar-current-day {
    font-size: 1.3rem;
}

.calendar-progress {
    min-height: 22px;
}

.calendar-progress .bg-light {
    color: #000000;
}

.calendar-info-icon {
    position: relative;
    top: -2px;
}

.calendar-procedure-operation {
    line-height: 20px;
    display: block;
    text-decoration: underline;
}

.faq-link-bottom {
    font-weight: 500;
}

.faq-link-bottom a {
    color: #d99537;
    text-decoration: underline;
}

.faq-link-bottom a:hover {
    text-decoration: none;
}

.bottom-big-text {
    font-size: 1.3rem;
}

.top-logo {
    top: 10px;
    left: 60px;
}

.top-logo img {
    max-height: 40px;
}

.form-bg .description {
    font-size: 0.9rem;
}

#login-container .profile-management-popover {
    right: -5px;
    bottom: 10px;
}

.radius-green {
    border-radius: 50%;
    background: #ffffff;
    text-align: center;
    border: 3px solid #68ab0a;
    width: 24px;
    height: 24px;
    display: inline-block;
    line-height: 17px;
    font-size: 16px;
    font-weight: bold;
    color: #d99537;
}

.text-decoration-dashed {
    text-decoration: underline dashed;
}

nav.nav-menu .dropdown > .dropdown-menu {
    background-image: url(../images/background.png);
    padding: 15px;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.4);
    -moz-box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.4);
    box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.4);
}

nav.nav-menu .dropdown:hover > .dropdown-menu {
    display: block;
}
.qualityarea_text {
    font-style: italic;
    font-size: 80%;
}
.instructions img {
    width: 35px!important;
}
.instructions p {
    margin: 0!important;
    font-size: 14px;
    line-height: 120%;
    color: #73af1f;
}

.js-tooltip {
    position: absolute;
    right: -30px;
    top: -10px;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #FFFFCC;
}

.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    min-width: 200px;
    max-width: 1000px;
    margin: auto;
    background: #FFFFCC;
    color: #000000;
}

@media (max-width: 320px) {
    .tooltip-inner {
        min-width: initial;
        max-width: 320px;
    }
}

.scale-radio-cell:hover, .scale-radio-cell label:hover {
    cursor: pointer;
}

.scale-radio-cell {
    padding: 0!important;
}

.scale-radio-cell label {
    width: 100%;
    height: 100%;
    min-height: 45px;
    margin-bottom: 0!important;
}

.scale-radio-cell input {
    height: 17px;
    width: 17px;
    margin: 15px;
}

.table-box-se tr {
    border-top: 1px solid #a7a8a9;
    border-bottom: 1px solid #a7a8a9;
}

.fixed-button {
    position: fixed;
    right: -1000px;
    bottom: 32px;
}

.card-header-result {
    background-color: #a2cc78;
}

.pse-companies-item + .pse-companies-item {
    border-top: 1px solid #dee2e6 !important;
}

.chart-container {
    max-width: 400px;
    max-height: 400px;
}

.parent-poll-chart-container {
    max-width: 500px;
    max-height: 500px;
}

.parent-diagram figure {
    margin: 0 auto;
    width: 100%;
    position: relative;
}
@keyframes expand {
    from {width: 0%;}
    to {width: 100%;}
}
@media screen and (min-width: 768px) {
    @keyframes expand {
        from {width: 0%;}
        to {width: calc(100% - 75px);}
    }
}
.parent-diagram .chart {
    overflow: hidden;
    width: 100%;
    animation: expand 1.5s ease forwards;
}
.parent-diagram .row + .row .chart {
    animation-delay: .2s;
}
.parent-diagram .row + .row + .row .chart {
    animation-delay: .4s;
}
.parent-diagram .block {
    display: block;
    height: 30px;
    color: #000;
    font-size: .7em;
    float: left;
    background-color: #334D5C;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transition: opacity, .3s ease;
    cursor: pointer;
    font-weight: bold;
}
.parent-diagram .block:nth-of-type(1) .value {
    line-height: 26px;
    padding-left: 10px;
    padding-right: 10px;
}

.parent-diagram .block:nth-of-type(1),
.parent-diagram .legend li:nth-of-type(1):before {
    background-color: #70AD47;
}
.parent-diagram .block:nth-of-type(2),
.parent-diagram .legend li:nth-of-type(2):before {
    background-color: #d99537;
}
.parent-diagram .block:hover {
    opacity: .65;
}
.parent-diagram .value {
    display: block;
    line-height: 30px;
    position: absolute;
    /*top: 50%;*/
    left: 50%;
    transform: translate(-50%);
}
.parent-diagram .x-axis {
    text-align: center;
    padding: .5em 0 2em;
}
.parent-diagram .y-axis {
    height: 20px;
    transform: translate(-32px,170px) rotate(270deg);
    position: absolute;
    left: 0;
}
.parent-diagram .legend {
    margin: 0 auto;
    padding: 0;
    font-size: .9em;
}
.parent-diagram .legend li {
    display: inline-block;
    padding: .25em 1em;
    line-height: 1em;
}
.parent-diagram .legend li:before {
    content: "";
    margin-right: .5em;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #334D5C;
}
@media screen and (min-width: 768px) {
    .parent-diagram h6 {
        padding: 0;
        width: 75px;
        float: left;
        line-height: 20px;
    }
    .parent-diagram .block {
        font-size: 1em;
    }
}

.main-report-diagram figure {
    margin: 0 auto;
    width: 100%;
    position: relative;
}
@keyframes expand {
    from {width: 0%;}
    to {width: 100%;}
}
@media screen and (min-width: 768px) {
    @keyframes expand {
        from {width: 0%;}
        to {width: calc(100% - 75px);}
    }
}
.main-report-diagram .chart {
    overflow: hidden;
    width: 100%;
    animation: expand 1.5s ease forwards;
}
.main-report-diagram .row + .row .chart {
    animation-delay: .2s;
}
.main-report-diagram .row + .row + .row .chart {
    animation-delay: .4s;
}
.main-report-diagram .block {
    display: block;
    height: 30px;
    color: #000;
    font-size: .7em;
    float: left;
    background-color: #334D5C;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transition: opacity, .3s ease;
    cursor: pointer;
    font-weight: bold;
}
.main-report-diagram .block:nth-of-type(1),
.main-report-diagram .legend li:nth-of-type(1):before {
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49.9%, black 49.9%, black 60%, rgba(0, 0, 0, 0) 60%)
    fixed,
    linear-gradient(-45deg, black 10%, rgba(0, 0, 0, 0) 10%)
    fixed;
    background-size: 0.45em 0.45em
}
.main-report-diagram .block:nth-of-type(2),
.main-report-diagram .legend li:nth-of-type(2):before {
    background-color: #d10200;
}
.main-report-diagram .block:nth-of-type(3),
.main-report-diagram .legend li:nth-of-type(3):before {
    background-color: #f55c5f;
}
.main-report-diagram .block:nth-of-type(4),
.main-report-diagram .legend li:nth-of-type(4):before {
    background-color: #ff949c;
}
.main-report-diagram .block:nth-of-type(5),
.main-report-diagram .legend li:nth-of-type(5):before {
    background-color: #caff52;
}
.main-report-diagram .block:nth-of-type(6),
.main-report-diagram .legend li:nth-of-type(6):before {
    background-color: #70AD47;
}
.main-report-diagram .block:nth-of-type(7),
.main-report-diagram .legend li:nth-of-type(7):before {
    background-color: #548237;
}
.main-report-diagram .block:hover {
    opacity: .65;
}
.main-report-diagram .value {
    display: block;
    line-height: 30px;
    position: absolute;
    /*top: 50%;*/
    left: 50%;
    transform: translate(-50%);
}
.main-report-diagram .x-axis {
    text-align: center;
    padding: .5em 0 .5em;
    background-color: #fff;
}
.main-report-diagram .y-axis {
    height: 20px;
    transform: translate(-32px,170px) rotate(270deg);
    position: absolute;
    left: 0;
}
.main-report-diagram .legend {
    margin: 0 auto;
    padding: 0;
    font-size: .9em;
}
.main-report-diagram .legend li {
    display: inline-block;
    padding: .25em 1em;
    line-height: 1em;
}
.main-report-diagram .legend li:before {
    content: "";
    margin-right: .5em;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #334D5C;
}
@media screen and (min-width: 768px) {
    .main-report-diagram h6 {
        padding: 0;
        width: 75px;
        float: left;
        line-height: 20px;
    }
    .main-report-diagram .block {
        font-size: 1em;
    }
}

.value-row {
    min-height: 20px;
}

.region-group-subvalues-card {
    display: none;
    z-index: 9999;
}

.region-group-card:hover > .region-group-subvalues-card {
    display: block;
}

.region-group-subvalues-value {
    min-width: 400px;
    border-radius: 4px;
    border: 1px solid #a7a8a9;
    padding: 15px;
}

.region-group-subvalues-value .row:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

.vertical-text {
    display: inline-block;
    overflow: hidden;
    width: 1.5em;
}
.vertical-text__inner {
    display: inline-block;
    white-space: nowrap;
    line-height: 1.5;
    transform: translate(0,100%) rotate(-90deg);
    transform-origin: 0 0;
}
.vertical-text__inner:after {
    content: "";
    display: block;
    margin: -1.5em 0 100%;
}

.main-report-color-1 {
    background-color: #FF0000;
}

.main-report-color-2 {
    background-color: #FF5050;
}

.main-report-color-3 {
    background-color: #FF7C80;
}

.main-report-color-4 {
    background-color: #FF9999;
}

.main-report-color-5 {
    background-color: #FFCCCC;
}

.main-report-color-6 {
    background-color: #CCFFCC;
}

.main-report-color-7 {
    background-color: #99FF99;
}

.main-report-color-8 {
    background-color: #66FF66;
}

.main-report-color-9 {
    background-color: #33FF33;
}

.main-report-color-10 {
    background-color: #008000;
}

.high-average {
    background-color: #CCFFCC;
}

.low-average {
    background-color: #FFCCCC;
}

.main-report-diagram {
    background-image: url("/images/main-rep-bg.png");
    background-size: calc(50% - 14px);
    background-repeat: no-repeat;
    background-position: right center;
}

.chart-header-img {
    height: 25px;
    background-image: url("/images/main-rep-head-bg.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}