@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root {
    --font-family: 'Montserrat', sans-serif;
    --color-text: #4A4A4A;
    --color-grey: #808080;
    --color-blue: #0094D6;
    --color-blue-hover: #006FA0;
    --color-orange: #D4502B;
    --color-orange-hover: #FA6339;
    --color-orange-active: #BA3813;
}
body {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.25;
}
a {
    text-decoration: none;
    color: var(--color-blue);
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    -ms-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
a:hover {
    text-decoration: none;
    color: var(--color-orange);
}
a:focus,
a:active {
    text-decoration: none;
    color: var(--color-orange-active);
}
.scale {
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.scale:hover {
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.color-orange {
    color: var(--color-orange);
}
.color-blue {
    color: var(--color-blue);
}
.gallery-container {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}
.custom-controls {
    display: block;
    width: 97px;
    position: relative;
    float: right;

}
.gallery-container .custom-controls {
    position: absolute;
    right: 0;
}
.custom-controls button {
    width: 40px;
    height: 40px;
    display: block;
    float: left;
    border: none;
    outline: none;
    background-color: #BCBCBC;
    position: relative;
}
.custom-controls button svg {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.custom-controls button:hover {
    background-color: var(--color-orange);
}
.custom-controls button.slider-arrows__arrow_prev {
    margin-right: 17px;
}
.form-btn {
    color: #ffffff;
    background-color: var(--color-orange);
    display: inline-block;
    position: relative;
    padding: 0 30px 0 40px;
    height: 48px;
    line-height: 48px;
    font-weight: normal;
    font-size: 16px;
    border: none;
    border-radius: 0;
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    -ms-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.form-btn:hover,
.form-btn:focus,
.form-btn:active {
    background-color: var(--color-orange-hover);
}
.form-btn:after {
    content: '';
    position: absolute;
    right: -47px;
    border: 24px solid transparent;
    border-left: 24px solid var(--color-orange);
    border-top: 24px solid var(--color-orange);
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    -ms-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.form-btn:hover:after,
.form-btn:focus:after,
.form-btn:active:after {
    border-left-color: var(--color-orange-hover);
    border-top-color: var(--color-orange-hover);
}
.modal-content {
    border: none;
    -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -khtml-border-radius: 0;
        border-radius: 0;
}
.modal-content button.close {
    position: absolute;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    font-size: 43px;
    top: 0px;
    right: 10px;
}
.modal-content .modal-header {
    padding: 1rem 2.2rem 1rem 1rem;
    border-bottom: none;
}

.header-content {
    padding: 18px 0;
    border-bottom: 1px solid #808080;
    line-height: 1.1;
}
.header-content .container {
    position: relative;
}
.header-content .container .special-version {
    position: absolute;
    top: -12px;
    right: 13px;
    color: var(--color-grey);
    font-size: 15px;
}

.header-logos a {
    vertical-align: middle;
}
.header-logos a:nth-child(2) {
    margin-left: 38px;
}
.search-form {
    position: relative;
    vertical-align: middle;
}
.search-form input {
    border: none;
    border-bottom: 1px solid #808080;
    padding: 7px 23px 7px 0;
    outline: none;
    color: #808080;
    line-height: 1;
    font-size: 14px;
}
.search-form input:focus {
    border-bottom-color: var(--color-orange);
}
.search-form input::-webkit-input-placeholder {color: #808080;}
.search-form input::-moz-placeholder {color: #808080;}
.search-form input:-moz-placeholder {color: #808080;}
.search-form input:-ms-input-placeholder {color: #808080;}
.search-form button {
    position: absolute;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.search-form button:hover svg path {
    fill: var(--color-orange);
}
.content-wrapper {
    padding-top: 20px;
    padding-bottom: 50px;
    background-color: #F8F8F8;
}
.content-wrapper-documents {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #F8F8F8;
}
.content-wrapper h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.9rem;
}


h2, .h2 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.8em;
}

.soc-vk {
    display: inline-block;
    vertical-align: middle;
    width: 31px;
    height: 31px;
    background: url(../images/icons/vk.svg) no-repeat center center;
}
.contacts, .authorize a, .delimeter {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: var(--color-grey);
}
.authorize a.color-blue:not(:hover) {
    color: var(--color-blue);
}
a.contacts:hover,
.authorize a:hover,
.authorize a.color-blue:hover {
    color: var(--color-orange-hover);
}
.delimeter {
    margin: 0 5px;
}
.contacts i,
.authorize i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}
.logo-subtitle {
    font-weight: 600;
    font-size: 9px;
}
footer {
    background-color: var(--color-text);
    color: #ffffff;
    padding: 35px 0;
}
footer .soc-vk {
    background-image: url(../images/icons/vk-white.svg);
}
footer .contacts {
    color: #ffffff;
}
.footer-bottom {
    color: #ffffff;
    opacity: 0.8;
    font-size: 12px;
    margin-top: 40px;
}
.footer-bottom a:not(:hover) {
    color: #ffffff;
    opacity: 0.8;
}
.footer-bottom a:hover,
.footer-bottom a:active,
.footer-bottom a:focus {
    opacity: 1;
    color: #ffffff;
}
.footer-bottom a.special-version {
    color: #ffffff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500; 
}
.footer-bottom a.special-version:hover {
    opacity: 1;
    color: var(--color-orange-hover);
}
.footer-bottom a.special-version i {
    vertical-align: middle;
    margin-right: 10px;
}
.video-list .video-item .preview {
    overflow: hidden;
}
.overflow {
    overflow: hidden;
}
.video-list .video-item .name {
    margin-top: 10px;
}
.sorting-block {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}
.sorting-block .nav-link {
    color: #282C34;
    padding: 0.5rem 30px 0.5rem 12px;
    position: relative;
    background-color: #ffffff;
}
.sorting-block .nav-link:after {
    position: absolute;
    border: none;
    width: 9px;
    height: 7px;
    background: url(../images/icons/arrow.svg) no-repeat center center;
    -moz-background-size:100% 100%;
        -o-background-size:100% 100%;
        -webkit-background-size:100% 100%;
        background-size: 100% 100%;
    top: 50%;
    right: 5px;
    margin-top: -3.5px;
}
.sorting-block .nav-link.show:after {
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sorting-block .dropdown-menu.show {
    border: none;
    border-radius: 0;
    padding: 10px 12px;
}
.sorting-block .dropdown-menu .dropdown-item {
    padding: 0.25rem 0;
    color: #282C34;
    font-size: 15px;
}
.sorting-block .dropdown-menu .dropdown-item:hover,
.sorting-block .dropdown-menu .dropdown-item.active {
    background-color: transparent;
    color: var(--color-blue);
}
.sorting-block .dropdown-menu a:not(.active) {
    cursor: pointer;
}

#map {
    height: 296px;
    width: 100%;
}
.contacts-list .item {
    margin-bottom: 30px;
}
.contacts-list .item .item-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1;
}
.form-wrapper {
    background-color: #ffffff;
    overflow: hidden;
}
.form-control {
    border-radius: 0;
    border: 1px solid var(--color-grey);
    line-height: 1;
    padding: 15px;
}
textarea.form-control {
    height: 149px;
}
.feedback-wrapper {
    padding: 30px 0 50px 0;
}
.documents-list {
   margin-bottom: 30px;
}
.documents-list .document-item {
   color: var(--color-text);
   font-size: 16px;
   line-height: 1.15;
   padding: 20px;
   background-color: #fff;
   margin-bottom: 10px;
   border-bottom: 3px solid #ffffff;
}
.documents-list .document-item:hover,
.documents-list .document-item:active {
    border-bottom-color: var(--color-blue);
}
.documents-list .document-item .date-active {
    line-height: 25px;
    font-weight: 400;
    color: var(--color-grey);
}
.documents-list .document-item .file-info-container {
    vertical-align: middle;
}
.documents-list .document-item .file-info {
    margin-left: 12px;
    text-transform: uppercase;
    font-size: 14px;
}
.date-selector {
    position: relative;
    width: auto;
    color: #282C34;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    padding: 0 22px 0 47px;
    border: 1px solid #282C34;
    background: url(../images/calendar.png) no-repeat left 22px center;
    margin-bottom: 30px;
}
.date-selector input {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.rmkk-iblocks .rmkk {
    display: block;
    position: relative;
    width: 100%;
    height: 294px;
    overflow: hidden;
    background-color: var(--color-grey);
    margin-bottom: 30px;
}
.rmkk-iblocks .rmkk:hover {
    background-color: var(--color-orange-hover);
}
.rmkk-iblocks .rmkk img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%) scale(1.0);
    -o-transform: translateX(-50%) scale(1.0);
    -webkit-transform: translateX(-50%) scale(1.0);
    transform: translateX(-50%) scale(1.0);
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.rmkk-iblocks .rmkk:hover:hover img {
    -moz-transform: translateX(-50%) scale(1.05);
    -o-transform: translateX(-50%) scale(1.05);
    -webkit-transform: translateX(-50%) scale(1.05);
    transform: translateX(-50%) scale(1.05);
}
.rmkk-iblocks .rmkk span {
    position: absolute;
    top: 70px;
    left: 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 34px;
}
.table.reestr-table {
    border: none;
}
.table.reestr-table td {
    font-size: 14px;
    font-weight: 500;
}
.table.reestr-table thead {
    border-bottom: 20px solid #F8F8F8;
}
.table.reestr-table thead td {
    color: #fff;
    background-color: var(--color-grey);
    vertical-align: top;

}
.table.reestr-table tbody tr {
    box-shadow: inset 0 -2px 2px #ffffff;
    border-bottom: 5px solid #F8F8F8;
    background-color: #ffffff;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    transition: all ease 0.2s;
    position: relative;
}
.table.reestr-table tbody tr:hover {
    box-shadow: inset 0 -3px 0px var(--color-blue);
}
.table.reestr-table tbody tr.reestr-link {
    cursor: pointer;
}
.table.reestr-table tbody td a.reestr-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.table.reestr-table tbody td a.pasport-link {
    position: relative;
    z-index: 1;
}

i.status-icon {
    width: 35px;
    height: 35px;
    background: #ffffff no-repeat center center;
    display: inline-block;
    vertical-align: top;
    -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        border-radius: 50%;
}
i.status-icon.in-work {
    background-image: url(../images/icons/status-in-work.png);
}
i.status-icon.cancel {
    background-image: url(../images/icons/status-cancel.png);
}
i.status-icon.ok {
    background-image: url(../images/icons/status-ok.png);
}
.status-icon-container {
    position: relative;
    font-size: 13px;
    padding-left: 45px;
    min-height: 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.status-icon-container i {
    position: absolute;
    left: 0;
    top: 0;
}
#menu-opener, #video-menu-opener {
    position: relative;
    height: 17px;
    width: 25px;
    border: none;
    outline: none;
    padding: 0;
    background: transparent;
    float: right;
    z-index: 2;
}

#menu-opener span,
#video-menu-opener span {
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 3px;
    -moz-border-radius: 1.5px;
        -webkit-border-radius: 1.5px;
        -khtml-border-radius: 1.5px;
        border-radius: 1.5px;
    background-color: var(--color-blue);
    left: 0;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    transition: all ease 0.2s;
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
#menu-opener span:nth-child(1),
#video-menu-opener span:nth-child(1) {
    top: 0;
}
#menu-opener span:nth-child(2),
#video-menu-opener span:nth-child(2) {
    top: calc(50% - 1.5px);
}
#menu-opener span:nth-child(3),
#video-menu-opener span:nth-child(3) {
    bottom: 0;
}
#menu-opener.active span:nth-child(2),
#video-menu-opener.active span:nth-child(2) {
    opacity: 0;
}
#menu-opener.active span:nth-child(1),
#video-menu-opener.active span:nth-child(1) {
    top: 7px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#menu-opener.active span:nth-child(3),
#video-menu-opener.active span:nth-child(3) {
    bottom: 7px;
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.personal-navigation .item {
    display: block;
    padding: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    line-height: 1;
    background-color: var(--color-blue);
    color: #ffffff;
        -webkit-transition: all ease 0.25s;
        -moz-transition: all ease 0.25s;
        -o-transition: all ease 0.25s;
        -ms-transition: all ease 0.25s;
        transition: all ease 0.25s;
}
.personal-navigation .item:hover {
    background-color: var(--color-orange);
}
.personal-navigation .item.logout {
    background-color: var(--color-orange);
}
.personal-navigation .item.logout:hover {
    background-color: var(--color-blue);
}
input[name="DOCS"].form-control,
input[name="DOCS[]"].form-control {
    margin-bottom: 5px;
}
#preloader {
    display: block;
    background: rgba(255,255,255,.75) url(../images/preloader.svg) no-repeat center center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
}
.index-news {
    position: relative;
    padding: 30px 0;
    background: #E9E9EC;
}
.index-news:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/index-news-bg-left.png) no-repeat left bottom;
    z-index: 1;
    background-attachment: fixed;
}
.index-news:after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/index-news-bg-right.png) no-repeat right bottom;
    z-index: 2;
    background-attachment: fixed;
}
.index-news .container {
    position: relative;
    z-index: 3;
}

.index-news .new-item {
    margin-bottom: 30px;
}
.index-news .new-item .image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
.index-news .new-item .image img {
    width: 100%;
    height: auto;
}
.index-news .new-item .news-date-time {
    color: var(--color-blue);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
}
.index-news .new-item .name {
    color: var(--color-text);
    font-weight: 500;
}
.index-news .new-item:hover .name {
    color: var(--color-blue);
}
.index-news .new-item:focus .name,
.index-news .new-item:active .name {
    color: var(--color-blue-hover);
}
.sirius {
    height: 32px;
    padding-left: 120px;
    background: url(../images/logo_sirius_grey.png) no-repeat left top;
    -moz-background-size: 105px 32px;
        -o-background-size: 105px 32px;
        -webkit-background-size: 105px 32px;
        background-size: 105px 32px;
}
.sirius:hover {
    background-image: url(../images/logo_sirius.png);
}
.active-date {
  color: var(--color-blue);
  font-weight: bold;
}
#nca-cookiesaccept-line.nca-cookiesaccept-line {
  background-color: var(--color-blue);
  padding: 25px 12px !important;
  line-height: 1.25;
}
#nca-cookiesaccept-line.nca-cookiesaccept-line button {
  color: var(--color-text);
  background-color: #fff;
  border: none;
  border-radius: 0;
  outline: 0;
  height: 30px;
  line-height: 30px;
  padding: 0 14px;
}
#nca-cookiesaccept-line.nca-cookiesaccept-line button:hover,
#nca-cookiesaccept-line.nca-cookiesaccept-line button:active,
#nca-cookiesaccept-line.nca-cookiesaccept-line button:focus {
    color: #ffffff;
    background-color: var(--color-orange);
}
