﻿:root {
    --color-bg-main: #f3f3f3;
    --color-orange: #f29100;
    --color-green: #18E109;
    --color-grey: #c6c3c3;
    --color-blue: #4d7fbb;
    --color-lite-blue: #03a9f4;
    --color-dark-blue: #014e95;
    --border-radius-main: 4px;
    --font-family-slim: "Museo Sans Cyrl 300", sans-serif;
    --font-family-normal: "Museo Sans Cyrl 500", sans-serif;
    --font-family-bold: "Museo Sans Cyrl 700", sans-serif;
    --font-family-extra-bold: "Museo Sans Cyrl 900", sans-serif;
    --font-family-myriad: 'Myriad Pro';
    --font-size-main: 13px;
}

body {
    margin: 0;
    color: black;
    padding: 0px;
    background-color: var(--color-bg-main);
    font-family: var(--font-family-myriad);
    font-weight: normal;
    font-style: normal;
    line-height: 1.3;
    min-height: 100vh;
    font-size: var(--font-size-main);
}

    body.modal-open {
        overflow: hidden;
        padding-right: 0 !important;
    }

@media (min-width: 1200px) {
    .modal-xl, .modal.modal-large .modal-dialog {
        max-width: 95%;
    }

    .modal.modal-middle .modal-dialog {
        max-width: 800px;
    }
}

@media (min-width: 576px) {
    .modal.modal-large .modal-dialog {
        max-width: 1800px;
        width: 95%;
    }

    .modal-xl {
        max-width: 100%;
    }
}

a:active, a:hover, a:focus {
    text-decoration: none;
}

a:active, a:hover, a:focus {
    outline: 0 none;
}

a {
    color: var(--color-orange);
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    a:hover {
        color: var(--color-dark-blue);
        text-decoration: none;
    }

[s-click] {
    cursor: pointer;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

[s-click] {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
    font-family: var(--font-family-normal);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: none;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
}

[s-click] {
    cursor: pointer;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    width: 9px;
    height: 9px;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #b2afaf;
    margin-left: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #b2afaf;
}

::-webkit-input-placeholder {
    color: #c4c0c0;
    font-weight: 100;
    font-family: 'Museo Sans Cyrl 100';
}

::-moz-placeholder {
    color: #c4c0c0;
    font-weight: 100;
    font-family: 'Museo Sans Cyrl 100';
}

:-moz-placeholder {
    color: #c4c0c0;
    font-weight: 100;
    font-family: 'Museo Sans Cyrl 100';
}

:-ms-input-placeholder {
    color: #c4c0c0;
    font-weight: 100;
    font-family: 'Museo Sans Cyrl 100';
}

.form-control::placeholder {
    color: #c4c0c0;
    font-weight: 100;
    font-family: 'Museo Sans Cyrl 100';
}

select option[disabled][hidden] {
    color: #c4c0c0;
    font-weight: 100;
    font-family: 'Museo Sans Cyrl 100';
}

.p-r {
    position: relative;
}

.form-group {
    margin-bottom: 0.5rem;
}

select:required:invalid {
    color: #c4c0c0;
    font-weight: 300;
    font-family: 'Museo Sans Cyrl 300';
}

option[value=""][disabled] {
    display: none;
}

option {
    color: black;
}

.hide {
    display:none;
}

.bold {
    font-family: var(--font-family-extra-bold);
    font-weight: normal;
}

.current {
    font-family: var(--font-family-bold);
    color: black;
    background-color: #9bc4e2;
}

tr.active {
    background-color: rgb(233,243,250);
}

.btn {
    margin: 0.15rem;
    color: inherit;
    text-transform: uppercase;
    word-wrap: break-word;
    white-space: normal;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px 0 rgb(238 242 247 / 50%);
    -webkit-box-shadow: 0 2px 6px 0 rgb(238 242 247 / 50%);
    background-color: #eef2f7;
    color: #313a46;
    border-color: #eef2f7;
    height: 40px;
    line-height: 30px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .btn i {
        margin-right: 5px;
    }
    .btn.btn-icon {
       background-color:transparent;
       box-shadow:none;
    }
    .btn.btn-icon i {
        margin-right: 0;
        font-size: 18px;
        display: flex;
        line-height:30px;
    }

.btn-primary {
    background-color: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
}

.btn-blue {
    background-color: #005cb8;
    color: #fff;
    border-color: #005cb8;
}
    .btn-blue:hover {
        background-color: #0073e6;
        color: #fff;
        border-color: #0073e6;
    }

.btn-orange {
    background-color: #ffc107;
    color:#ffffff;
}

.btn-radius {
    border-color: #5d94c8;
    border-radius: 35px;
    color: #ffc107;
}

.btn-sm {
    padding: 0.3rem 1.25rem;
    font-size: 0.875rem;
}

.btn-action {
    padding: 0.2rem 0.5rem;
    font-size: 0.675rem;
}

.btn-action-small {
    padding: .5rem;
    font-size: 12px;
    height: 30px;
    line-height: 1;
}

    .btn-action-small[aria-expanded="true"] .fa-chevron-down {
        transform: rotate(180deg);
    }

    .btn-blue:hover {
        color: #fff;
    }

.orange {
    color: var(--color-orange)!important;
}

.blue {
    color: #0076be!important;
}

.green {
    color: #18E109!important;
}

.grey {
    color: var(--color-grey);
}

.red {
    color: red!important;
}

.dark-red {
    color: #860202;
}

.yellow {
    color: #f6f60d;
}

.dark-blue {
    color: var(--color-dark-blue);
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    font-size: 14px;
    line-height: 2;
}

div.clear {
    font-size: 0px;
    line-height: 0px;
    clear: both;
    width: 100%;
    height: 0px;
}

.wrap {
    min-height: calc(100vh - 140px);
}

header .top-header {
    background: #ffffff;
    min-height: 92px;
    width: 100%;
    padding: 5px 20px 10px;
}

header {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    position: relative;
    z-index: 1000;
}

    header .nav-menu {
        background: var(--color-dark-blue);
        min-height: 40px;
        padding: 5px 20px;
    }

        header .nav-menu.fixed {
            position: fixed;
            top: 0;
            width: 100%;
            left: 0;
        }

.home header .nav-menu {
    background: var(--color-dark-blue);
    min-height: 49px;
    padding: 5px 15px;
}

header .nav-menu ul.menu-list {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.header-section {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

header .header-logo {
    position: relative;
    padding: 10px 10px 10px 0;
    margin-right: 15px;
}

.top-header h1.title {
    font-size: 18px;
    color: var(--color-dark-blue);
    font-weight: normal;
    font-family: var(--font-family-bold);
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 0;
}

    .top-header h1.title:before {
        display: none;
    }

@media (min-width: 768px) and (max-width: 992px) {
    .top-header h1.title {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .top-header h1.title {
        font-size: 24px;
    }

    .Home header .header-logo:before {
        top: -5px;
        height: 208px;
    }
}

.nav-menu li a {
    display: block;
    text-decoration: none;
    height: 100%;
    color: #EEEEEE;
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--font-family-normal);
    padding: 0 21px 0 0;
    position: relative;
    border-right: 1px solid #f29100;
}

.nav-menu li:last-child a {
    border-right: 0;
}


    .nav-menu li a:hover {
        color: var(--color-orange);
    }

    .nav-menu li a span {
        display: block;
        padding: 13px 0 16px 21px;
    }

.nav-menu li {
    position: relative;
    list-style: none;
    float: left;
    text-align: center;
}

.nav-menu r li {
    height: 49px;
    margin: 0;
}

.nav-menu li:last-child a {
    padding-right: 0;
}

/*.nav-menu .header-section {
    justify-content: flex-end;
}*/

/*.separator {
    font-size: 8px;
    display: flex;
    align-items: center;
}*/

.chang-vision {
    text-align: right;
    cursor: pointer;
}

.nav-menu {
    position: relative;
}

.card {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    position: relative;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

    .card .card {
        margin-bottom: 0;
    }

.page {
    position: relative;
    padding: 5px 15px;
}

.home-main-content {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.list-container {
    display: flex;
    width: 100%;
}

@media (max-width: 500px) {
    .top-header h1.title {
        font-size: 16px;
        text-align: center;
    }

    header .header-logo {
        position: absolute;
        left: 5px;
        top: 5px;
        margin-right: 0;
        padding: 0;
    }
}

.login {
    margin-right: 20px;
}

.login-user {
    display: flex;
    align-items: flex-end;
    font-size: 13px;
    line-height: 1;
    color: var(--color-dark-blue);
}

.s-vision {
    margin-left: 15px;
}

.sign-out {
    margin-left: 15px;
    font-size: 14px;
}

    .sign-out i {
        color: var(--color-dark-blue);
    }

.login-user:hover {
    text-decoration: none;
    color: var(--color-dark-blue);
}

.login-user svg {
    margin-right: 15px;
    color: var(--color-orange);
}

.chang-vision:hover img {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.chang-vision .active img {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.main-content-wrapper {
    padding: 10px;
}

.login-container {
    position: relative;
    width: 100%;
}

.login-content {
    max-width: 420px;
    width: 100%;
    margin: auto;
    padding: 40px 30px;
    background-color: #ffffff;
    opacity: .8;
    /*-webkit-border-radius: var(--border-radius-main);
    -moz-border-radius: var(--border-radius-main);
    border-radius: var(--border-radius-main);*/
    z-index: 0;
    /*-webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);*/
    -webkit-box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
    box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
    font-size: var(--font-size-main);
}

.login-header {
    margin-bottom: 20px;
}

.form-item-control {
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: var(--font-size-main);
    line-height: 1.2;
    list-style: none;
    margin-bottom: 20px;
}

.input-form .input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    min-width: 0;
    padding: 7.9px 11px;
    color: #545454;
    font-size: var(--font-size-main);
    line-height: 1.3;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-main);
    transition: all .3s;
    display: inline-flex;
}

.input-prefix {
    margin-right: 4px;
}

.input-wrapper .input {
    padding: 0;
    border: none;
    outline: none;
    height: auto;
    cursor: text;
    width: 100%;
    background-color: #fff !important;
}

.input-wrapper:hover {
    border-color: #28aaeb;
    z-index: 1;
}

.form-item-control {
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: var(--font-size-main);
    line-height: 1.2;
    list-style: none;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #0d4b8e;
    background-color: #0d4b8e;
}

.login-title {
    position: relative;
    z-index: 1;
    /* border-left: 3px solid #faa627; */
    padding: 10px 0 10px 0;
    color: var(--color-dark-blue);
    font-size: 22px;
    font-family: var(--font-family-extra-bold);
    font-weight: 900;
    text-transform: uppercase;
}

.recover-content {
    max-width: 600px;
    width: 94%;
    margin: auto;
    padding: 110px 30px 30px;
    background-color: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
    background-image: url(../images/PHC_logo.png);
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
    -webkit-box-shadow: 0 0 5px 5px rgb(0 0 0 / 3%);
    -moz-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 5px 5px rgb(0 0 0 / 3%);
    font-size: var(--font-size-main);
}

    .recover-content:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.75);
        z-index: -1;
    }

.recover-header {
    margin-bottom: 20px;
}

    .recover-header h4 {
        font-size: 18px;
        color: #0c4a8d;
        text-align: center;
        font-family: var(--font-family-bold);
        text-transform: uppercase;
        font-weight: normal;
    }

    .recover-header p {
        font-size: 16px;
        line-height: 1.5;
        color: #6c757d;
        text-align: center;
    }

.recover-container .input-form {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

.main-container {
    z-index: 1;
    position: relative;
    overflow: hidden;
    background: var(--color-blue);
    padding: 40px 0 40px;
}

thead tr {
    text-align: center;
}

.table-bordered th {
    text-align: left;
}

.card-header {
    background-color: #ffffff;
    border-bottom: 0;
}

.card-title {
    margin-bottom: 0;
    color: var(--color-dark-blue);
    font-size: 18px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    display: inline-block;
}

    .card-title img {
        margin-right: 15px;
    }

.card-body {
    padding: 1rem;
}

.card-header {
    padding: 0.75rem 1rem;
}

/* .table-card {
    background: transparent;
}
.table-card .card-header {
    background: transparent;
} */
.table-card .card-body {
    padding: 0;
}

.table-card table {
    background: #ffffff;
    margin-bottom: 0;
}

.risk-level i {
    font-size: 18px;
}

.download-btn {
    color: var(--color-dark-blue);
}

.filter-block {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 1rem;
    margin-bottom: 10px;
    list-style: none;
}

ul.filter-block li {
    margin-left: 8px;
    margin-right: 8px;
}

.filter-item.dropdown {
    width: auto;
    position: relative;
    font-size: var(--font-size-main);
    line-height: 20px;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
}

ul.filter-block li:first-child {
    margin-left: 0;
}

.filter-link {
    display: block;
    text-transform: uppercase;
    padding: 5px 20px 5px 10px;
    border: 1px solid #EAEFF4;
    border-radius: var(--border-radius-main);
    background-color: transparent;
    color: #336699;
    position: relative;
}

.select-container.region {
    max-height: 320px;
    overflow-y: auto;
}

.select-container span {
    display: block;
    width: 100%;
    clear: both;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    position: relative;
    color: #333;
    border-top: none;
    border-right: none;
    margin-bottom: 0;
    line-height: 30px;
    padding: 0 12px 0 7px;
}

.dropdown-menu.clear-select {
    background-color: #F7F7F7;
    -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    font-size: var(--font-size-main);
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
}

.filter-item.show {
    background-color: #F7F7F7;
}

.filter-item .filter-link {
    text-decoration: none;
}

.select-container span:hover {
    background-color: #336699;
    color: #ffffff;
}

.widget-select .dropdown-toggle::after {
    display: none;
}

.usermenu {
    display: flex;
    align-items: center;
    margin-right: 0;
    color: var(--color-dark-blue);
    font-family: var(--font-family-normal);
    font-size: 16px;
    /*border-right: 1px solid #cdcbcb;*/
}

@media (min-width: 768px) {
    .usermenu {
        margin-right: 20px;
    }
}

.usermenu-separator {
    margin: 0 1rem;
}

.catalog-title {
    position: relative;
    margin-bottom: 16px;
}

.content-title {
    position: relative;
    margin-bottom: 16px;
}

    .content-title span {
        text-transform: uppercase;
        color: #0c4a8d;
        font-size: 18px;
        font-family: var(--font-family-bold);
        text-transform: uppercase;
        background: #ffffff;
        padding-right: 5px;
        position: relative;
        z-index: 1;
    }

    .content-title:after {
        content: "";
        display: block;
        width: 100%;
        height: 6px;
        right: 0;
        background-color: var(--color-orange);
        top: 50%;
        position: absolute;
        margin-top: -5px;
    }

.user .dropdown-menu {
    -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    font-size: var(--font-size-main);
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
}

    .user .dropdown-menu .dropdown-item a {
        text-decoration: none;
        color: #777;
    }

        .user .dropdown-menu .dropdown-item a:hover {
            text-decoration: none;
        }

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #eeeeee;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--color-dark-blue);
    text-decoration: none;
    background-color: #eeeeee;
}

/*.dropdown-item:focus a,
.dropdown-item:hover a {
    color: #ffffff !important;
}*/

.profile-content {
    max-width: 800px;
    width: 94%;
    margin: auto;
    padding: 30px;
    background-color: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 5px 5px rgb(0 0 0 / 3%);
    -moz-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 5px 5px rgb(0 0 0 / 3%);
    font-size: var(--font-size-main);
}

.profile-header h4 {
    font-size: 18px;
    color: #0c4a8d;
    text-align: left;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    font-weight: normal;
}

.profile-header {
    margin-bottom: 10px;
}

.profile-content .form-item-control {
    margin-bottom: 10px;
}

    .profile-content .form-item-control label {
        margin-bottom: 0;
    }

.main-department {
    background-color: #f3f3f3;
    padding: 40px 15px 30px;
    position: relative;
}

.account-user {
    display: none;
}

@media screen and (min-width:768px) {
    .main-department {
        background-color: #f3f3f3;
        padding: 20px 30px 0;
        position: relative;
    }

    .account-user {
        display: inline-block;
    }
}

.main-department .home-main-content {
    max-width: 1540px;
}

.main-department .left-img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.departments-box {
    background-color: #ffffff;
    margin-bottom: 3rem;
    padding: 40px 45px;
    position: relative;
    -webkit-box-shadow: 0px 1px 0px 0px rgb(227 227 227 / 75%);
    -moz-box-shadow: 0px 1px 0px 0px rgba(227, 227, 227, 0.75);
    box-shadow: 0px 1px 0px 0px rgb(227 227 227 / 75%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
/*.department-items {
    display: flex;
    width: 100%;
    align-items: flex-start;
}*/

.department-items ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.department-items ul {
    margin-bottom: 0;
    width: max-content;
    margin: 0 0 0 auto;
}

    .department-items ul li {
        margin-bottom: 5px;
        font-size: 18px;
    }

        .department-items ul li a {
            border-radius: 6px;
            background: rgba(0,118,190,.8);
            padding: 10px 30px 10px 40px;
            display: block;
            color: #ffffff;
            font-size: 14px;
            position: relative;
            z-index: 2;
            border-left: 5px solid var(--color-dark-blue);
            -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .07), 0 1px 2px 0 rgba(0, 0, 0, .05) !important;
            -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .07), 0 1px 2px 0 rgba(0, 0, 0, .05) !important;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .07), 0 1px 2px 0 rgba(0, 0, 0, .05) !important;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .07), 0 1px 2px 0 rgba(0, 0, 0, .05) !important;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -ms-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

        .department-items ul li:nth-child(2n) a {
            background: var(--color-dark-blue);
        }

        .department-items ul li a:hover {
            text-decoration: none;
        }

        .department-items ul li a:before {
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            right: 10px;
            z-index: 1;
            color: #ffffff;
        }

        .department-items ul li a i {
            font-size: 16px;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            left: 12px;
        }

.main-title {
    margin-bottom: 20px;
    position: relative;
}

    .main-title:after {
        position: absolute;
        content: "";
        height: 4px;
        width: 100px;
        background-color: var(--color-orange);
        left: 0;
        margin: 0 auto;
    }

    .main-title h2 {
        font-size: 35px;
        line-height: 1.5;
        text-align: left;
        font-weight: bold;
        font-family: var(--font-family-extra-bold);
    }

.main-description {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin-top: 30px;
}

.table-card .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    color: #17449e;
    color: #26292e;
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-family-bold);
}

.card-header:first-child {
    border-radius: var(--border-radius-main) var(--border-radius-main) 0 0;
}

.left-widget {
    margin-bottom: 20px;
}

.widget-detail {
    width: 100%;
    position: relative;
}

    .widget-detail .form-group:last-child {
        margin-bottom: 0;
    }

.widget-header {
    color: #ffffff;
    font-size: 20px;
}

.widget-select {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: var(--border-radius-main);
    color: #111111;
    font-size: var(--font-size-main);
    padding: 10px 15px;
    color: #545454;
    line-height: 1.3;
    border: 2px solid #e9ecef;
}

.widget-title {
    color: #0c4a8d;
    position: relative;
    margin-bottom: 20px;
    /*padding-bottom: 20px;*/
    font-size: 20px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
}
/*.widget-title:after {
        content: "";
        height: 4px;
        width: 50px;
        background-color: var(--color-orange);
        border-radius: var(--border-radius-main);
        bottom: 0;
        left: 0;
        position: absolute;
    }*/
.contact-oraginzation-title {
    position: relative;
    margin-bottom: 20px;
    color: #26292e;
    font-size: 20px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
}

    .contact-oraginzation-title img {
        margin-right: 10px;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f1f7fa;
}

.contact-oraginzation-info {
    margin-bottom: 20px;
}

    .contact-oraginzation-info ul {
        list-style: outside none none;
        margin: 0;
        padding-left: 10px;
    }

    .contact-oraginzation-info li {
        color: #26292e;
        margin-bottom: 5px;
        position: relative;
        font-size: 1rem;
    }

        .contact-oraginzation-info li:first-child {
            font-family: var(--font-family-bold);
        }

        .contact-oraginzation-info li i {
            font-size: 18px;
            color: var(--color-orange);
            margin-right: 10px;
        }

a.widget-select:hover {
    color: #a6bfff;
    text-decoration: none;
}

.main-content {
    min-height: calc(100vh - 273px);
}

.home-page .emergency-card {
    border-top: 5px solid var(--color-orange);
}

.emergency-card .card-body {
    padding-top: 10px;
}

.emergency-card .table {
    margin-bottom: 0;
}

.show-more {
    color: var(--color-orange);
    text-transform: uppercase;
    font-size: 20px;
}

    .show-more:hover {
        text-decoration: none;
        color: var(--color-orange);
    }

.card-footer {
    background-color: #ffffff;
}

footer {
    position: relative;
    background: #f7f7f7;
    border-top: 1px solid rgba(138,150,156,.2);
    width: 100%;
}

    footer .content {
        max-width: 1540px;
        margin: auto;
        padding: 0;
    }

@media screen and (max-width: 1540px) {
    footer .content {
        padding: 0 15px;
    }
}

footer .bottom-details {
    text-align: left;
    padding: 10px 0;
}

footer .copyright {
    font-size: 12px;
}

.copyright span {
    font-size: var(--font-size-main);
    font-weight: 900;
    font-family: 'Museo Sans Cyrl 900';
    color: #004188;
    text-transform: uppercase;
}

.copyright p {
    margin-bottom: 0;
}

footer .bottom-details .bottom_text {
    max-width: 1540px;
    margin: auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: var(--font-size-main);
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

    .bottom-details .bottom_text a:hover {
        opacity: 1;
        text-decoration: underline;
    }

.bottom-details .bottom_text a {
    margin-right: 10px;
}

@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }

        footer .content .link-boxes .input-box {
            width: 40%;
            margin-top: 10px;
        }
}

.journal-table.table-responsive {
    max-height: calc(100vh - 273px);
    overflow: auto;
    min-height: 150px;
}

.journal-table .table.table-hover tbody tr {
    transition: background-color .5s ease-in-out;
}

    .journal-table .table.table-hover tbody tr:hover, .journal-table .table.table-striped tbody tr:nth-of-type(2n+1) {
        background-color: #f5f5f6;
        cursor: pointer;
    }

.event-detail-card {
    background: #fff;
    padding: 0 1rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: var(--font-size-main);
}

    .event-detail-card .card-title {
        margin-bottom: 10px;
        color: #26292e;
        display: flex;
        align-items: center;
    }

@media (min-width:992px) {
    .event-detail-card .card-title {
        margin-bottom: 0;
    }
}

label {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 11px;
}

.add-file-label {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 100%;
/*    background: #fff;*/
    cursor: pointer;
    font-size: .825rem;
    padding: 0.5rem 0.6rem;
    margin: 0.375rem 0;
    text-align: center;
    text-transform: uppercase;
    word-wrap: break-word;
    white-space: normal;
    cursor: pointer;
/*    border: 2px solid #ffc107;*/
    border-radius: 3px;
    color: #ffc107;
}
.add-file-label:hover {
   text-decoration:underline;
}

.add-file {
    position: relative;
}

.add-file-input {
    position: absolute;
    z-index: 1;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.button-file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.button-file-label {
    padding: .3rem .5rem;
    background-color: #fff;
    margin: .375rem;
    color: inherit;
    text-transform: uppercase;
    word-wrap: break-word;
    white-space: normal;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.card .card {
    box-shadow: none;
    border: none;
    border-radius: 0;
}

/*    .card .card .card-header {
        border: 1px solid #ced4da;
        border-radius: 0;
        background-color: #f5f5f6;
    }*/

.dropzone.clickable {
    cursor: pointer;
}

.dropzone {
    border: 1px dashed #ced4da;
    color: #26292e;
}

    .dropzone .text {
        margin: 20px 0;
        text-align: center;
    }

.prew_title {
    font-weight: normal;
    font-family: var(--font-family-bold);
}

@media screen and (min-width:768px) {
    .flex-md-center {
        display: inline-flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .flex-md-start {
        display: inline-flex;
        align-items: flex-start;
        margin-bottom: 10px;
    }
}

.DateTimeRow input {
    max-width: 200px;
}

.input-group-text {
    border-radius: 0;
}

.event-detail-card .DateTimeRow .form-group {
    margin-bottom: 0;
}

/*.DatePicker i {
    color: #0076be;
}*/

.DateTimePicker i {
    color: #0076be;
}

.journal-table .table th, .journal-table .table .field-header {
    border-top: 1px solid #dee2e6;
    font-weight: normal;
    font-family: var(--font-family-bold);
}

.show-map-btn {
    border-radius: var(--border-radius-main);
    border: 2px solid #0076be;
    box-shadow: none;
    background-color: #0076be;
    color: #ffffff;
    padding: 0.4rem 0.5rem;
    margin: 0 0 0 10px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .show-map-btn:hover {
        color: #ffffff;
    }

.navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}

.datetimepicker-input {
    border-radius: var(--border-radius-main) 0 0 var(--border-radius-main);
    border: 2px solid #e9ecef;
}

.input-group-text {
    /*border-radius: 0 var(--border-radius-main) var(--border-radius-main) 0;*/
    border-width: 1px 1px 1px 0;
    border-color: #e9ecef;
}

span.form-control {
    background-color: #f5f5f6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    span.form-control:hover {
        border-color: #e9ecef;
    }
    span.form-control.form-control-wrap {
        background-color: #f5f5f6;
        overflow: initial;
        white-space: normal;
        text-overflow: initial;
        height: auto;
        min-height: calc(1.5em + .75rem + 2px);
    }


input.form-control {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.form-control {
    color: #324148;
    border-width: 1px;
    font-size: .9375rem;
    font-family: var(--font-family-bold);
    border-color: #ced4da;
    padding: 0.375rem;
    height: calc(2.25rem + 4px);
    border-radius: 0;
}

    .form-control:hover {
        border-color: #28aaeb;
        z-index: 100;
    }

.form-control-sm {
    height: calc(1.1em + (0.5rem + 2px));
    padding: 0.25rem;
    font-size: .775rem;
    line-height: 1;
    border-radius:0;
}
    .form-control-sm ~ .input-group-append .btn.btn-icon {
        height: calc(1.1em + (0.5rem + 2px));
        padding: 0.25rem;
        font-size: .775rem;
    }
    .form-control-sm ~ .input-group-append .btn.btn-icon i {
        font-size: initial;
    }

    .form-control-sm.custom-select {
        padding: 0.25rem 1.7rem 0.25rem 0.25rem;
    }

.form-control-md {
    height: calc(1.5em + (0.5rem + 2px));
    padding: 0.25rem;
    font-size: .875rem;
    line-height: 1;
    border-radius: 0;
}

    .form-control-md ~ .input-group-append .btn.btn-icon {
        height: calc(1.5em + (0.5rem + 2px));
        padding: 0.25rem;
        font-size: .875rem;
    }

        .form-control-md ~ .input-group-append .btn.btn-icon i {
            font-size: initial;
        }

    .form-control-md.custom-select {
        padding: 0.25rem 1.7rem 0.25rem 0.25rem;
        font-size: .875rem;
    }
    .form-control-md ~ .btn.dropdown-toggle {
        height: calc(1.5em + (0.5rem + 2px));
        min-height: calc(1.5em + (0.5rem + 2px));
        line-height: 1;
        font-size: .875rem;
    }

span.form-control.form-control-md {
    line-height:1.5;
}

.table {
    margin-bottom: 0;
}

.table-sm td, .table-sm th {
    padding: 0.15rem;
}

.card .view-card.card .card-header {
    border: 1px solid #ced4da;
    background-color: #f5f5f6;
}

.error-page, .main {
    min-height: calc(100vh - 219px);
}

.input-group-text {
    cursor: pointer;
}

[s-click] {
    cursor: pointer;
}

.inform-box {
    background-color: #ffffff;
    border: none;
    position: relative;
    margin-bottom: 5px;
    border-radius: 0;
    border-bottom: 1px solid #e3e5e7;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

    .inform-box:last-child {
        border-bottom: 0;
    }

    .inform-box .item-content {
        padding: .5rem 0;
    }

        .inform-box .item-content .item-title {
            overflow: hidden;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            font-weight: normal;
            font-family: var(--font-family-bold);
            margin-bottom: 5px;
        }

            .inform-box .item-content .item-title a {
                color: #000000;
                font-size: 1.1rem;
                line-height: 1.2;
                font-family: var(--font-family-bold);
                text-transform: none;
                text-decoration: underline;
                transition: color .5s ease-in-out;
            }

                .inform-box .item-content .item-title a:hover {
                    color: var(--color-orange);
                }

    .inform-box p {
        margin: 0;
        line-height: 1.6;
        font-size: 1rem;
        font-family: var(--font-family-slim);
        font-weight: normal;
    }

    .inform-box .list-actions ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
    }

    .inform-box .item-content .list-actions ul li {
        font-size: var(--font-size-main);
        display: inline-block;
        margin-right: 20px;
    }

        .inform-box .item-content .list-actions ul li a {
            color: #26292e;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .inform-box .item-content .list-actions ul li span {
            color: #8b8a8a;
        }

.sidebar-categories .sidebar-title {
    color: #26292e;
    font-size: 18px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.sidebar-categories ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    display: none;
}

    .sidebar-categories ul.expanded {
        display: block;
    }

/*    .sidebar-categories ul li {
        border-bottom: 1px dashed #dedede;
    }*/

        .sidebar-categories ul li ul li {
            border-bottom: 0;
            cursor: pointer;
        }

        .sidebar-categories ul li > div {
            position: relative;
            padding-right: 50px;
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 20px;
            display: flex;
        }
            .sidebar-categories ul li > div.full-width {
                padding-left: 0;
            }

        .sidebar-categories ul li.active > a {
            color: var(--color-orange);
        }

        .sidebar-categories ul li > div:hover > .edit-btn {
            opacity: 1;
        }

        .sidebar-categories ul li .edit-btn {
            display: flex;
            position: absolute;
            right: -10px;
            top: 2.5px;
            width: 84px;
            background-color: #ffffff;
            margin-left: 0;
            opacity: 0;
        }
        .sidebar-categories.equipments-categories ul li .edit-btn {
                width: 30px;
        }
            .sidebar-categories ul li .edit-btn a {
                font-size: 12px;
                line-height: 12px;
                min-width: 25px;
                width: 25px;
                height: 25px;
                position: relative;
            }

        .sidebar-categories ul li > div > a {
            color: #26292e;
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-family-normal);
            display: flex;
        }

        .sidebar-categories ul li.active > div > a {
            color: var(--color-orange);
        }

        .sidebar-categories ul li div > i {
            position: absolute;
            left: 0;
            top: 8px;
        }

        .sidebar-categories ul li ul {
            padding-left: 20px;
        }

            .sidebar-categories ul li ul li > a {
                position: relative;
                padding-left: 0;
                padding-right: 0;
                padding-top: 5px;
                padding-bottom: 5px;
                border-bottom: 0;
            }

        .sidebar-categories ul li:last-child {
            border-bottom: 0;
        }

.contact-card tbody tr:first-child td {
    border-top: 2px solid #e9ecef;
}

.contact-card tbody tr:first-child th {
    border-top: 2px solid #e9ecef;
}

.links-list h5 {
    color: #26292e;
    font-size: 18px;
}

    .links-list h5 i {
        margin-right: 5px;
        color: #f29100;
    }

.list-group {
    border-radius: 0;
    margin-top: 0.5rem;
}

.title {
    color: #26292e;
    font-size: 20px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
}

    .title:before {
        content: "";
        height: 3px;
        width: 50px;
        background: var(--color-orange);
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        /*-webkit-border-radius: var(--border-radius-main);
        -moz-border-radius: var(--border-radius-main);
        -ms-border-radius: var(--border-radius-main);
        -o-border-radius: var(--border-radius-main);
        border-radius: var(--border-radius-main);*/
    }

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.75rem 0.75rem 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
    box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
    border: 0;
    border-radius: 0;
    margin-bottom: 5px;
}

    .list-group-item a h5 {
        transition: color .5s ease-in-out;
    }

    .list-group-item:hover a h5 {
        color: var(--color-orange);
        transition: color .5s ease-in-out;
    }

    .list-group-item:last-child {
        border-bottom: 0;
    }

    .list-group-item p {
        color: #717e85;
    }

/*.menu-container.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    min-height: 60px;
}*/

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

/*.menu-container.fixed:after {
    -moz-box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
}*/

.left-widget, .sidebar-categories {
    background-color: #ffffff;
    border-radius: 0;
    padding: 1rem;
    -webkit-box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
    box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
}
/*bootstrap-select-style*/
.bootstrap-select .btn {
    margin: 0;
    color: #324148 !important;
    border: 2px solid #e9ecef;
    text-transform: none;
    background-color: #ffffff;
    padding: 0.375rem 0.75rem;
    height: calc(2.25rem + 4px);
    min-height: 40px;
    border-radius: var(--border-radius-main) !important;
    box-shadow: none;
}

.bootstrap-select .dropdown-item {
    padding: 0.25rem 0.5rem;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    border-color: #80bdff !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25) !important;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active, .bootstrap-select .btn-light:not(:disabled):not(.disabled):active, .bootstrap-select .show > .btn-light.dropdown-toggle {
    background-color: #f1f7fa !important;
}
/*bootstrap-select-style*/
.input-group-append .btn-outline-secondary {
    color: #0076be;
    background-color: #e9ecef;
    background-image: none;
    border: 1px solid #ced4da;
    box-shadow: none;
}

.btn-img {
    border: 0;
    border-radius: 0;
}

.btn.btn-sm.btn-img {
    padding: 0 0.425rem;
    background-color: #ffffff;
    box-shadow: none;
}

.input-group-append .btn.btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: calc(2.25rem + 4px);
    margin: 0;
    border: 1px solid #ced4da;
    border-left: 0;
    padding: 0.2rem 0.6rem;
    border-radius: 0;
}

    .input-group-append .btn.btn-icon i {
        margin-right: 0;
    }

.input-group.description-input input {
    border-radius: var(--border-radius-main) !important;
}

.bootstrap-datetimepicker-widget .btn {
    box-shadow: 0;
    padding: 0.5rem;
}

#map {
    position: relative;
    width: 100%;
    height: 650px;
    left: 0;
    top: 0;
}

.Fullscreen #map {
    height: 95vh;
}

#main-map {
    position: relative;
    width: 100.0%;
    min-height: 580px;
    left: 0.0%;
    top: 0.0%;
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

.navbar-toggler {
    color: #eeeeee;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0 65 136 / 70%);
        position: absolute;
        top: 100%;
        z-index: 1500;
        right: 0;
        left: 0;
        min-height: 100%;
        padding: 15px;
        -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 2px 10px 0 rgb(0 0 0 / 10%);
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 2px 10px 0 rgb(0 0 0 / 10%);
    }

    .nav-menu li {
        margin-bottom: 15px;
    }

        .nav-menu li:last-child {
            margin-bottom: 0;
        }

    .header-section {
        position: initial;
    }

    header .top-header {
        background: #ffffff;
        min-height: 92px;
        width: 100%;
        padding: 5px 15px;
    }

    header .nav-menu {
        padding: 5px 15px;
        min-height: 50px;
    }
}

.fl-r {
    float: right;
}

.fl-l {
    float: left;
}

@media (max-width:600px) {
    .main-content-wrapper {
        padding: 10px 10px 0;
    }

    .PeriodDate {
        display: block;
    }

        .PeriodDate > div {
            margin-right: 10px;
        }
}

.modal-body p {
    margin-bottom: 0;
}

.modal-body .card {
    box-shadow: none;
    border: 0;
}

    .modal-body .card .card-body {
        padding: 0;
    }

.select-modal-dialog .modal-body {
    padding: .5rem .8rem;
}

.modal-title {
    font-size: 14px;
    font-family: 'Museo Sans Cyrl 700';
    text-transform: uppercase;
    color: #0076be;
}

.modal-body table th {
    text-align: left;
}
.datepicker .modal-body table th {
     text-align: center; 
}

/* Autocomplete */

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

.autocomplete-active {
    background-color: #9bc4e2 !important;
    color: #ffffff;
}

.chapter-group-card {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.icon-btn {
    border: 2px solid #e9ecef;
    padding: 5px;
    width: 25px;
    height: 25px;
    line-height: 1;
    font-size: 12px;
    color: #444;
    text-align: center;
    background-color: transparent;
    border-radius: var(--border-radius-main);
}

.action-btn {
    text-align: center;
    padding: 0.5rem 0.5rem;
    align-items: center;
    display: flex;
    align-items: center;
}

    .action-btn i {
        margin-right: 0;
        font-size: 20px;
    }

.wiki-title {
    color: #000000;
    font-size: 20px;
    line-height: 1;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0;
    display: inline-block;
}

.wiki-detail-description p {
    font-size: 1rem;
    line-height: 1.6rem;
}
/*.btn-file*/
.btn-file {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.btn-file-actions {
    margin: 0;
    padding: 0;
}

.btn-file-actions-item {
    cursor: pointer;
    min-height: 225px;
}

.btn-file-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 128px;
    height: 128px;
    background: url(../images/icon/image.png);
}

.form-group label.attachment {
    width: 350px;
    border: 1px dashed #ced4da;
    border-radius: 6px;
    margin-top: 20px;
}

    .form-group label.attachment input[type='file'] {
        display: none;
    }

.btn-file .PrewFile img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: auto;
    max-width: 100%;
}

.AttachMassageFile {
    margin-top: 10px;
    margin-bottom: 10px;
}

.SelectMassageFile {
    border: 1px dashed grey;
    margin-bottom: 5px;
}

.btn-file-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 128px;
    height: 128px;
    background: url(../images/icon/image.png);
}

.note-btn-group .note-btn {
    border-color: rgba(0,0,0,.2);
    padding: 0.28rem 0.65rem;
    font-size: 13px;
    background-color: #ffffff;
    border-radius: var(--border-radius-main);
}

.note-btn i {
    margin-right: 0;
}

/*.wiki-detail-description {
    font-family: var(--font-family-bold);
}*/

.chapter span {
    font-size: 16px;
}

.list-actions {
    margin-top: 5px;
}

.object-status .dropdown-toggle::after {
    display: none;
}

.object-status {
    position: relative;
    padding: 5px 10px;
    background-color: #f6f5f5;
    border-radius: 0;
    height: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-size: .875rem;
    line-height: 1.5;
}

.dropdown-menu {
    border: 0;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}

.note-editor.note-airframe, .note-editor.note-frame {
    border: 1px solid rgba(0,0,0,.2);
    border-radius: var(--border-radius-main);
}

.note-toolbar.card-header {
    border: 0 !important;
    border-bottom: 1px solid #ced4da !important;
}

.input-group .btn {
    margin: 0;
    height: calc(1.5em + 0.75rem + 2px);
    border-radius: 0;
    border-left: 0;
    padding: 0.25rem 0.32rem;
    border-color: #ced4da;
    border-width: 1px;
}

    .input-group .btn img {
        max-height: 30px;
    }

.timepicker-picker .btn {
    margin: 0;
    height: auto;
    border-radius: var(--border-radius-main);
    box-shadow: 0;
    padding: 0.5rem !important;
    border: 1px solid #ced4da;
}

.input-group .ordinal {
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
}

.input-group .custom-file-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.custom-file-label::after {
    background-color: #fff;
    content: url(/images/icon/clip.png);
    padding: .375rem .5rem;
}

.input-group .btn.dropdown-toggle::after {
    display: none;
}

.file-editor-item {
    margin-bottom: 10px;
}

.bootstrap-select > .dropdown-toggle {
    border-width: 1px;
}

.PrewFile iframe {
    height: 80vh;
}

.PrewFile img {
    max-width: 100%;
    height: auto
}

.prew-card object {
    min-height: 70vh;
}

.view-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .view-container object {
        min-height: 100vh;
    }

    .view-container iframe {
        min-height: 87vh;
        border: 1px solid #eee !important;
        background-color: #eee;
    }

.dropdown-item {
    text-transform: none;
}

    .dropdown-item a {
        color: #212529;
    }

        .dropdown-item a:hover {
            color: #212529;
        }

.item-body, .wiki-detail-description {
    display: flex;
    flex-wrap: wrap;
}
    /*.wiki-detail-description {
  margin-bottom:20px;
}*/
    .item-body.img-body .item-body-img {
        width: 270px;
        max-height: 250px;
        padding: 0 20px 0 0;
    }

        .item-body.img-body .item-body-img img {
            max-height: 100%;
            max-width: 100%;
            object-fit: cover;
        }

    .wiki-detail-description .wiki-detail-description-img {
        width: 320px;
        max-height: 300px;
        padding: 0 20px 0 0;
    }

        .wiki-detail-description .wiki-detail-description-img img {
            width: 320px;
            max-height: 300px;
            padding: 0 20px 0 0;
        }

    .item-body .item-body-text {
        width: 100%;
    }

    .item-body.img-body .item-body-text {
        width: calc(100% - 270px);
    }

    .wiki-detail-description .wiki-detail-description-text {
        width: 100%;
    }

    .wiki-detail-description.img-body .wiki-detail-description-text {
        width: calc(100% - 320px);
    }

.wiki-detail-text {
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-size: 1rem;
    line-height: 1.4;
    /*font-family: var(--font-family-slim);
    font-weight: normal;*/
}

.wikihead {
    border-bottom: 3px solid #f29100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: .5rem;
}

.chapter {
    margin-bottom: 10px;
}

    .chapter a {
        color: #272c2f;
        font-size: .875rem;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        text-transform: uppercase;
    }

        .chapter a:hover {
            color: #f29100;
        }

.contact-oraginzation-info ul li a {
    display: block;
    color: #000000;
    margin-bottom: 5px;
}

    .contact-oraginzation-info ul li a:hover {
        color: var(--color-orange);
    }

.risk-level {
    display: flex;
}

    .risk-level i {
        margin-right: 5px;
    }

.wiki-detail-card .card-body {
    padding: 1.875rem;
}

.item-content.draft {
    background-color: #eeeeee;
}

.wiki-detail-text ul li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.wiki-detail-text a {
    padding-bottom: 2px;
    border-bottom: 1px solid;
}

.sidebar-categories ul li > div .fa-angle-right.open {
    transform: rotate(90deg);
    color: #000000;
}

td.description {
    max-width: 200px;
    width: 200px;
    padding: .5rem;
}

.table-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    height: 3.9em;
}

.PrewFile iframe {
    min-height: 50vh;
    max-width: 100%;
}

.PrewFile img {
    max-width: 100%;
}

td.green-bg {
    background-color: #d0f4ce !important;
}

td.yellow-bg {
    background-color: #fdfdbd !important;
}

td.red-bg {
    background-color: #fdc2c2 !important;
}

td.dark-red-bg {
    background-color: #fdc2c2 !important;
}

.general-inform .view-container .ordinal {
    display: none;
}

.general-inform .view-container .dropdown-toggle {
    display: none;
}

.general-inform .view-container .custom-file-label::after {
    display: none;
}

.link-details-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

fieldset {
    border: 1px solid #eeeeee;
    padding: 0px 10px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    fieldset legend {
        color: #0076be;
        padding: 2px 3px;
        width: auto;
        font-size: 12px;
        margin-left: 5px;
        margin-bottom: 2px;
        text-transform: uppercase;
        font-weight: normal;
        font-family: 'Museo Sans Cyrl 700';
    }
    fieldset fieldset legend {
        color: var(--color-orange);
    }

    .wiki-detail-card .file-editor-item .input-group .ordinal, .wiki-detail-card .file-editor-item .input-group button.dropdown-toggle {
        display: none;
    }

.wiki-detail-card .file-editor-item .input-group .custom-file-label:after {
    display: none;
}

.list-group-item .edit-btn {
    display: none;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

.list-group-item:hover .edit-btn {
    display: inline-block;
}

.list-group-item .edit-btn a {
    font-size: 12px;
    line-height: 12px;
    min-width: 25px;
    width: 25px;
    height: 25px;
    position: relative;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fafafa;
    opacity: 1;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #fafafa;
}

/*loader*/
.loader-container {
    position: fixed;
    background-color: rgba(46, 46, 46, 0.78);
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.loader {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

    .loader .line {
        border-radius: 50%;
        border-left: 4px solid;
        border-right: 4px solid;
        border-top: 4px solid transparent !important;
        border-bottom: 4px solid transparent !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .loader .line120 {
        border-color: #fff;
        width: 120px;
        height: 120px;
        animation: rot 2s infinite;
    }

    .loader .line100 {
        border-color: #0062cc;
        width: 100px;
        height: 100px;
        animation: rot 3s infinite;
    }

    .loader .line80 {
        border-color: #fff;
        width: 80px;
        height: 80px;
        animation: rot 4s infinite;
    }

    .loader .lineLogo {
        border: none;
        background-image: url(/images/PHC_logo_small_W.png);
        background-repeat: no-repeat;
        background-position: center;
        width: 60px;
        height: 60px;
        background-size: contain;
        animation: none;
    }

@keyframes rot {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.view-container img {
    max-width: 100%;
}

/* language-item  */
.language-item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-left: 5px;
}

    .language-item span:first-child {
        border-right: 1px solid;
    }

    .language-item span {
        font-size: 14px;
        padding: 0 10px;
        color: #f29100;
        font-family: 'Museo Sans Cyrl 700';
    }

        .language-item span.active {
            color: #dee2e6;
            font-weight: 400;
        }

        .language-item span[onclick] {
            cursor: pointer;
        }

/* language-item  */


#events-map {
    width: 100%;
    height: 600px
}

.events-map-section .left-navigation-panel {
    width: 350px;
    padding: 10px 20px;
}

.events-map-section .events-map-block {
    width: calc(100% - 350px);
}

@media screen and (max-width:992px) {
    .events-map-section .left-navigation-panel {
        width: 100%;
    }

    .events-map-section .events-map-block {
        width: 100%;
    }
}

.events-map-section ul.navigation-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .events-map-section ul.navigation-list li {
        padding-bottom: 5px;
        position: relative;
    }

        .events-map-section ul.navigation-list li .form-check-label {
            line-height: 25px;
        }

.Home .app-menu.navbar-nav {
    display: none;
}

.Home .navbar-toggler {
    display: none;
}

.scroll-logo {
    display: none;
}

.scroll-logo.show {
    display:block;
}

.Filter-block .nav-tabs .nav-item.show .nav-link, .Filter-block .nav-tabs .nav-link.active {
    color: #212529;
    background-color: #fff;
    border: 0;
    padding: 0;
}

.Filter-block .nav-tabs .nav-link.active {
    font-size: 14px;
    font-family: 'Museo Sans Cyrl 700';
    text-transform: uppercase;
    color: #0076be;
}

.Filter-block .nav.nav-tabs {
    margin-bottom: 0.5rem;
    border-bottom: 0;
    font-size: 18px;
}

.dropdown-filter-item .input-group .form-control {
    border-radius: 0 !important;
}

.right-menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 100px;
    width: 250px;
    height: auto;
    background-color: transparent;
    z-index: 9999;
}

    .right-menu ul {
        padding: 0px;
        margin: 0px;
        background-color: #f7f4f4;
        padding: 5px;
    }

        .right-menu ul li {
            list-style: none;
            padding: 2px 0px;
        }

            .right-menu ul li a {
                text-decoration: none;
                padding: 5px 10px;
                display: block;
                font-size: 12px;
                border-radius: 4px;
                border: 1px solid #ddd;
                vertical-align: middle;
                color: #000000;
                background-color: #eeeeee;
            }

.tree-header {
    margin-bottom: 10px;
}

    .tree-header h5 {
        font-size: 14px;
        font-family: 'Museo Sans Cyrl 700';
        text-transform: uppercase;
        color: #000000;
        margin-bottom: 5px;
        text-decoration: underline;
    }

    .tree-header span {
        font-size: 14px;
        line-height: 1;
    }

.form-control.custom-select {
    padding: 0.25rem 1.5rem 0.25rem 0.25rem;
    font-size: .875rem;
}

.left-navigation-panel .navigation-panel-title {
    font-family: 'Museo Sans Cyrl 700', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.left-navigation-panel .select-item {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    margin-bottom: 10px;
}

/*.left-navigation-panel .select-item .custom-control-label::before {
        position: absolute;
        top: 0;
        left: -1.5rem;
        display: block;
        width: 1rem;
        height: 1rem;
        pointer-events: none;
        content: "";
        background-color: #fff;
        border: #adb5bd solid 1px;
    }*/

.modal-settings .modal-header {
    border-bottom: none;
}

.selected-fields-tbody td img {
    height: 16px;
}

.selected-fields-tbody td .custom-control {
    min-height: initial;
}

.modal-settings .modal-title {
    margin-bottom: 10px;
    display: block;
}

.modal-settings .modal-footer {
    padding: 0.3rem 0.5rem;
}

.Filter-block table {
    margin-bottom: 0;
}

.modal-settings .modal-body {
    padding: 1rem 1rem 0.5rem;
}

.map-mark-image {
    height: 24px;
}

.marker-cluster {
    z-index: 1100 !important;
}

.dropdown-item {
    white-space: normal;
}

.bootstrap-select.form-control {
    z-index: auto;
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline-block;
    font-family: var(--font-family-normal);
}

.map-container {
    position: relative;
}

.popup-overlay {
    background: rgba(0,0,0,.20);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 998;
}

.map-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 400px;
    min-height: 300px;
    z-index: 999;
    background-color: #ffffff;
    padding: 20px;
    -webkit-box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
    box-shadow: 0 3px 10px -3px rgb(63 66 74 / 10%);
}

.popup-text-close {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.map-popup-text {
    font-size: 14px;
}

.leaflet-popup-pane {
    z-index: 1000 !important;
}

.item-content a {
    font-size: 18px;
    color: black;
}

    .item-content a:hover {
        color: var(--color-orange);
    }

.modal-body .journal-table .table th, .journal-table .table .field-header {
    border-top: 1px solid #dee2e6;
    font-weight: normal;
    border-bottom: 0;
    font-family: var(--font-family-bold);
}

.card-title {
    display: flex;
    align-items: center;
    color: #26292e;
    margin-bottom: 10px;
}

.action-menu {
    align-items: center;
    margin-bottom: 10px;
}

.form-lng span.add-translation {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -13px;
    font-size: 20px;
    color: #0076be;
    z-index: 999;
    background-color: #ffffff;
}
.form-lng .summernote span.add-translation {
    top: 100px;
    right: 20px;
}

.WebPathInfo span::after {
    content: ">";
    padding-right: 10px;
    padding-left: 10px;
}

.WebPathInfo {
    font-size: 14px;
    line-height: 2;
    color: #78797b;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0;
    font-style: italic;
    display: inline-block;
}

    .WebPathInfo span:last-child::after {
        content: "";
        padding-right: 0px;
        padding-left: 0px;
    }

    .WebPathInfo span:last-child {
        color: #004188;
        display: block;
        font-style: normal;
        font-size: 20px;
        line-height: 1;
        font-family: var(--font-family-bold);
        text-transform: uppercase;
        position: relative;
        margin-bottom: 0;
    }

.children {
    counter-reset: li;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

    .children a {
        position: relative;
        display: block;
        padding: .4em .4em .4em .8em;
        margin: .5em 0 .5em 2.5em;
        background: #edeef3;
        color: #000000;
        font-family: var(--font-family-bold);
        font-size: 16px;
        text-decoration: none;
        transition: all .3s ease-out;
    }

        .children a:before {
            content: "\f00c";
            font-family: 'Font Awesome 6 Free';
            color: #ffffff;
            font-weight: 900;
            position: absolute;
            left: -2.5em;
            top: 50%;
            margin-top: -1em;
            background: #f29100;
            height: 2em;
            width: 2em;
            line-height: 2em;
            text-align: center;
        }

.card-small {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

td .remove {
    color: #eeeeee;
}

    td .remove:hover {
        color: red;
    }

.invite_person {
    border: 1px dashed #b0b0b0;
    background: #FFF;
    margin-right: 5px;
    float: left;
}

.invite_person_text {
    border: 1px dashed #b0b0b0;
    padding: 5px;
    background: #FFF;
    margin-right: 5px;
    float: left;
    height: 37px;
    display: flex;
    border-radius: 4px;
    align-items: center;
}

.InvitedPersons {
    float: left;
    margin-bottom: 5px;
}

.Invite_title {
    float: left
}

.invite_person input {
    height: 35px;
    border: none;
}

.address_person_input input {
    min-width: 150px;
}

.remove {
    color: #eeeeee;
}

    .remove:hover {
        color: red;
    }

.readonly .remove {
    color: #eeeeee;
}

    .readonly .remove:hover {
        color: #eeeeee;
        cursor: none;
    }

.card.event > .card-header {
    padding: 0.75rem 1rem 0.5rem;
}

.scroll .card.event > .card-header {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    border-bottom: 1px solid #eeeeee;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 1002;
    width: 100%;
}

.bootstrap-select .btn {
    border-radius: 0 !important;
}

@media (max-width: 991px) {
    .nav-menu li {
        text-align: left;
    }
}

@media (min-width: 576px) {
    .form-inline > div {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
}

.form-check {
    position: relative;
    display: block;
    line-height: 1.8;
    padding-left: 1.25rem;
}

.e_mail_lists .card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.field-header {
    padding: 0.5rem !important;
    padding-top: 1rem !important;
}

.contact-card .table thead th {
    vertical-align: bottom;
    border-bottom: 3px solid #f29100;
}

.PeriodDate input {
    background-color: #f0f3f8;
    border: none;
}

.PeriodDate .input-group-append .btn.btn-icon {
    -webkit-box-shadow: 0 2px 6px 0 rgb(238 242 247 / 50%);
    background-color: #0076bf;
    color: #ffffff;
    border: none;
}
.info-icon {
    font-size:25px;
}

.instruction-block {
    background: #ffffff;
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

    .instruction-block .table_contents {
        background-color: #f3f3f3;
        padding: 20px;
        margin-bottom: 20px;
        max-width: 800px;
        width: 100%;
    }

    .instruction-block .table_contents_title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        padding-left: 5px;
    }

    .instruction-block .table_contents ol {
        padding-left: 0;
        margin-left: 20px;
        list-style: none;
    }

        .instruction-block .table_contents ol li {
            position: relative;
            margin-bottom: 13px;
            padding-left: 5px;
        }

            .instruction-block .table_contents ol li a {
                margin-bottom: 13px;
                display: block;
            }

            .instruction-block .table_contents ol li a {
                font-style: normal;
                font-weight: 600;
                text-transform: uppercase;
                font-size: 15px;
                line-height: 20px;
                color: rgba(0,118,190,.8);
                text-decoration: none;
            }

    .instruction-block a {
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: #277FFE;
        text-decoration: none;
    }

    .instruction-block img {
        max-width: 100%;
    }

    .instruction-block h5 {
        font-weight: 600;
    }

    .instruction-block .navigation-header {
        color: rgba(0,118,190,.8);
        font-size: 25px;
        line-height: 1.3;
    }
.instruction-container-body ul li p {
    margin: 0;
}
.info-icon {
    color:gray;
}
.instruction-block h1 {
    color: #000000;
    font-size: 25px;
    line-height: 1;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}
.only-print {
    display:none;
}
.translate-form-summernote .note-btn-group .note-btn {
    border:0;
    box-shadow:none;
    padding:5px;
}
.form-lng input {
    padding-right:40px;
}
.form-lng textarea {
    padding-right: 40px;
}
.map-block {
    position:relative;
}
.overlay-map {
    position: absolute;
    top: 15px;
    z-index: 1000;
    right: 15px;
    background-color: #073856;
    padding: 20px;
    border-radius: 5px;
}
.switch {
    display: inline-block;
    font-size: 100%;
    height: 1.6em;
    position: relative;
}

    .switch, .switch .witch-span, .switch .witch-span:before {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .switch > input[type="checkbox"] {
            display: none;
        }

        .switch .switch-span {
            height: 1.6em;
            left: 0;
            background: #C0CCDA;
            -webkit-border-radius: 0.8em;
            border-radius: 0.8em;
            display: inline-block;
            position: relative;
            top: 0;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            width: 3em;
            cursor: pointer;
        }

            .switch .switch-span:before {
                display: block;
                content: '';
                height: 1.4em;
                position: absolute;
                width: 1.4em;
                background-color: #fff;
                -webkit-border-radius: 50%;
                border-radius: 50%;
                left: 0.1em;
                top: 0.1em;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

        .switch > input[type="checkbox"]:checked + .switch-span {
            background-color: #0076be;
        }

            .switch > input[type="checkbox"]:checked + .switch-span:before {
                left: 50%;
            }

        .switch-text {
            font-size:12px;
        }

        .calculation-results tr div span {
            color: red;
            font-weight: 600;
        }
.event-register-tabs .nav-tabs {
    border: 0;
    display: inline-block;
}
    .event-register-tabs .nav-tabs > .nav-item > .nav-link {
        color: #888888;
        margin: 0;
        margin-right: 5px;
        background-color: transparent;
        border: 1px solid transparent;
        font-size: 14px;
        padding: 5px;
        line-height: 1.5;
    }
    .event-register-tabs .nav-tabs > .nav-item > .nav-link {
        color: #000000;
    }
/*        .event-register-tabs .nav-tabs > .nav-item > .nav-link:hover {
            border-bottom: 1px solid #11c103;
        }*/

.event-register-tabs ul li {
    display:inline-block;
}
.custom-checkbox label {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5rem;
}
.equipment-table table thead tr th {
    vertical-align: middle;
    vertical-align: bottom;
    border-bottom: 3px solid #f29100;
    line-height: 1.2;
    text-align: left;
}
.equipment-table table tbody tr:hover {
    color: #555;
    background-color: #f5f5f5;
    cursor: pointer;
}
.event-register-tabs .nav-item .nav-link.active {
    color: #0076be;
    border-bottom: 1px solid #18E109;
}
.protectiveEquipmentAutoComplete {
    margin-bottom: 10px;
    min-width: 300px;
}
@media (min-width:768px) {
    .protectiveEquipmentAutoComplete {
        margin-bottom:0;
    }
}
.bootstrap-autocomplete {
    flex-wrap:wrap;
}
.bootstrap-autocomplete .dropdown-item {
    cursor:pointer;
}
#ProtectiveEquipmentsContainer tr td {
    padding:.3rem .5rem;
    vertical-align:middle;
}
table.doc-table-list thead tr {
  text-align:left;
}
table.doc-table-list td input {
    background-color: #ffffff;
    border:0;
}
table.doc-table-list td .input-group .input-group-append .btn {
    border: 1px solid #ced4da;
    border-radius: 3px;
    color: #18E109;
    margin-left: 2px;
}
table.doc-table-list > tbody > tr > td {
    padding: 0.3rem 0.75rem;
    vertical-align: middle;
}
.card.rests {
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.delete-btn .icon-btn {
    color: #eeeeee;
    transition: color 1s;
}
.delete-btn .icon-btn:hover {
    color: red;
}
#ProtectiveEquipmentsContainer tr td .edit-btn .icon-btn {
    color: #eeeeee;
    transition: color 1s;
}
    #ProtectiveEquipmentsContainer tr td .edit-btn .icon-btn:hover {
        color: var(--color-orange);
        transition: color 1s;
    }

#ProtectiveEquipmentsContainer tr[data-object='1'] td {
    color: #dddddd;
    font-style: italic !important;
}

.filter-table tr:hover td {
    background: rgba(33, 33, 33, .05);
    cursor: pointer;
}

.remove-btn {
    position: absolute;
    top: 0;
    right: 20px;
    color: red;
}
.research-form {
    position: fixed;
    right: 0;
    top: 146px;
    width: 300px;
    z-index: 1003;
    height: calc(100vh - 146px);
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    border: 1px solid #eeeeee;
    display: none;
}
.event-row-form {
    position: fixed;
    right: 0;
    top: 0;
    width: 90%;
    max-width: 350px;
    z-index: 1003;
    height: calc(100vh);
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    border: 1px solid #eeeeee;
    display: none;
}

   .research-form.active, .event-row-form.active {
        display: block;
    }
    .research-form .close, .event-row-form .close {
        font-size: 14px;
    }
    .research-form .card-footer, .event-row-form .card-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0.5rem;
        z-index:100;
    }
    .research-form .card-body, .event-row-form .card-body {
        padding-bottom: 110px;
        height: 100%;
/*        overflow: auto;*/
    }

    .event-row-form label {
        font-size:10px;
    }
/*mobile-table*/
@media screen and (max-width: 991px) {
    * {
        box-sizing: border-box
    }

    .mobile-table > .table > thead {
        display: none
    }

    .mobile-table > .table, .mobile-table > .table > tbody, .mobile-table > .table > td, .mobile-table > .table > tbody > tr, .mobile-table > .table > tbody > tr > td {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        display: block;
        width: 100%
    }

    .mobile-table > .table > tbody > tr {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        border-top: 1px solid #000000;
    }

    .mobile-table > .table > tbody > tr > td {
        border-right: none;
        border-top: none;
        border-left: none;
        border-bottom: 1px dotted #c3cbd3;
        word-wrap: break-word
    }

        .mobile-table > .table > tbody > tr > td {
            min-height: 40px;
            height: auto;
            padding: 5px 0 !important;
            position: relative;
            text-align: right;
            display: block;
            font-weight: 700;
        }

        .mobile-table > .table > tbody > tr > td {
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: flex-start;
        }

            .mobile-table > .table > tbody > tr > td:before {
                content: attr(data-label);
                font-weight: 400;
                font-size: 9px;
                padding: 3px 5px;
                background-color: #eeeeee;
                text-align: left;
            }
}

@media(max-width: 991px) and (min-width:768px) {
    .mobile-table > .table > tbody > tr {
        display: inline-flex;
        flex-wrap: wrap;
        vertical-align: top;
        width: 48%
    }

        .mobile-table > .table > tbody > tr:nth-child(2n+1) {
            margin-right: 2%
        }
}

@media screen and (max-width: 350px) {
    .mobile-table .table > tbody td.quantity img {
        display: none !important
    }
}

.mobile-table > table {
    position: relative;
    border-collapse: collapse
}

@media(max-width: 991px) and (min-width:768px) {
    .mobile-table > .table > tbody > tr {
        display: inline-flex;
        flex-wrap: wrap;
        vertical-align: top;
        width: 48%
    }

        .mobile-table > .table > tbody > tr:nth-child(2n+1) {
            margin-right: 2%
        }
}

@media screen and (max-width: 300px) {
    .mobile-table > .table > tbody > tr > td.quantity {
        width: 100% !important
    }

}

@media screen and (max-width: 500px) {
    .btn .btn-text {
        display: none;
    }
    .protectiveEquipmentAutoComplete {
        min-width: initial;
    }
}

.main.readonly table button, .main.readonly table .icon-btn {
    display: none !important;
}

.main.readonly .form-control:focus {
    outline: 0;
    box-shadow: none;
}

.main.readonly .form-control:disabled, .main.readonly .form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}
.leaflet-tooltip.house-number {
    background: none;
    border: none;
    color: #938578;
    font-size: 11px;
    font-weight: 400;
    pointer-events: none;
    box-shadow: none;
}

.SickPerson {
    background-color: rgba(245,227,227,.2);
}

.Recovered {
    background-color: rgba(139,195,74,.2);
}

.modal.modal-full-width .modal-dialog {
    min-height: 99vh !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    overflow-y: auto;
}
.modal.modal-full-width.graf-modal .modal-dialog .modal-content {
    min-height: 98vh !important;
}
.person-tree ul > li > ul > li {
    padding:5px;
}
.event-detail-card .awesome-marker i {
    font-size: 15px;
}
.mermaid .node text {
    text-anchor: start;
    dominant-baseline: hanging;
}
.leaflet-tooltip {
    white-space: normal!important;
}
.form-control-sm ~ .select2.select2-container .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0;
    height: 23px;
}

    .form-control-sm ~ .select2.select2-container .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 23px;
    }

    .form-control-sm ~ .select2.select2-container .select2-selection--single .select2-selection__arrow {
        height: 23px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
    }

svg .node .label {
    text-align: left!important;
}

.table-bordered-research-info .action-td {
    display: none;
}

#mermaid {
    display:inline-flex;
}

.table-fixed-header .table.configurable-view > thead {
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 1;
}

    .table-fixed-header .table.configurable-view > thead.scroll {
        top: -8px;
        position: sticky;
    }

.openFeedbackItemBtn {
    padding-left: 20px;
    font-weight: bold;
    margin-left: 20px;
    background-color: #f2920a;
    color: #fff;
    border-color: #f2920a;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    height: auto;
    font-size: 12px;
    line-height: 14px;
}

    .openFeedbackItemBtn:hover {
        background-color: #f2920a;
        color: #fff;
    }

    .openFeedbackItemBtn i {
        position: absolute;
        left: -15px;
        margin-top: -15.5px;
        top: 50%;
        font-size: 31px;
        background-color: #ffffff;
        border-radius: 50%;
        color: #f2920a;
    }

.regionRequest {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    border: 2px solid #f2920a;
    color:#f2920a;
    border-radius: 50%;
}