.registration-user {
    position: relative;

}

.registration-user:hover .registration-user__dropdown {
    display: block;
}

.registration-user:hover .registration-user__caret svg {
    transform: rotate(0);
}

.registration-user:hover .registration-user__caret {
    color: #fff;
}

.registration-user__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
    width: 100%;
    padding-top: 20px;
    display: none;
}

.registration-user__dropdown-wrapper {
    border: 1px solid #E5E5E5;
}

.registration-user__dropdown-item {
    background: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 15px;
    font-family: 'Akzidenz-GroteskPro', sans-serif;
    font-size: 14px;
    color: #000 !important;
    font-weight: bold;
    transition: .2s;
}

.registration-user__dropdown-item:hover {
    cursor: pointer;
    background: #f7f7f7;
}

.registration-user__dropdown-icon {
    color: #E5E5E5;
    margin-right: 10px;
    width: initial !important;
}

.registration-user__dropdown-item_active .registration-user__dropdown-icon {
    color: #9a554b;
}

.registration-user__dropdown-item_active {
    color: #9a554b !important;
}

.registration-user__caret {
    color: #151515;
    position: relative;
    width: 37px;
    height: 22px;
    padding-left: 15px;
    margin-left: 15px;
    box-sizing: border-box;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.registration-user__caret svg {
    transform: rotate(180deg);
    transition: rotate .3s;
}

.registration-user__dropdown-caret {
    width: 0;
    height: 0;
    position: absolute;
    right: 5%;
    top: 11px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
}

/*modal style*/
#gisp-header .modal-open {
    overflow: hidden;
}
#gisp-header .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
#gisp-header .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
#gisp-header .modal.fade.show{
    display: block;
    opacity: 1;
    visibility: visible;
}
#gisp-header .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
}
#gisp-header .modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    #gisp-header .modal.fade .modal-dialog {
        transition: none;
    }
}
#gisp-header .modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
#gisp-header .modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem);
}
#gisp-header .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}
#gisp-header .modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer {
    flex-shrink: 0;
}
#gisp-header .modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
#gisp-header .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}
#gisp-header .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}
#gisp-header .modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
#gisp-header .modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}
#gisp-header .modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}
#gisp-header .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}
#gisp-header .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
#gisp-header .modal-backdrop.fade {
    opacity: 0;
}
#gisp-header .modal-backdrop.show {
    opacity: 0.5;
}
#gisp-header .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
#gisp-header .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    background: none;
    border: none;
    font-size: 25px;
    font-weight: bold;
}
#gisp-header .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
#gisp-header .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
#gisp-header .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}
#gisp-header .modal-footer > :not(:first-child) {
    margin-left: 0.25rem;
}
#gisp-header .modal-footer > :not(:last-child) {
    margin-right: 0.25rem;
}
#gisp-header .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

#gisp-header .modal-body{
    padding: 0;
}
#gisp-header .modal-dialog{
    margin: 0;
}
@media (min-width: 576px) {
    #gisp-header .modal-dialog {
        max-width: 500px;
        /*margin: 1.75rem auto;*/
    }
    #gisp-header .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }
    #gisp-header .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }
    #gisp-header .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    #gisp-header .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
    }
    #gisp-header .modal-sm {
        max-width: 300px;
    }
}
.links-container__menu .lang {
    display: none;
}
@media (min-width: 992px) {
    #gisp-header .modal-lg, .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 1200px) {
    #gisp-header .modal-xl {
        max-width: 1140px;
    }
}

/*header*/
@font-face {
    font-family: 'Akzidenz-GroteskPro';
    src: url('./AkzidenzGroteskPro/AkzidenzGroteskPro-Regular.eot');
    src: local('Akzidenz-Grotesk Pro SuperIt'), local('AkzidenzGroteskPro-Regular'),
    url('./AkzidenzGroteskPro/AkzidenzGroteskPro-Regular.eot?#iefix') format('embedded-opentype'),
    url('./AkzidenzGroteskPro/AkzidenzGroteskPro-Regular.woff') format('woff'),
    url('./AkzidenzGroteskPro/AkzidenzGroteskPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#gisp-header .header__navigation .registration a span.user-fio,
#gisp-header .header__navigation .registration a span.user-email{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 250px;
}

#gisp-header{
    height: 53px;
}

#gisp-header .ul-collapse {
    display: none;
}
#gisp-header .ul-collapse.open {
    display: block !important;
}
#gisp-header #mobile-category {
    display: none;
}
#gisp-header #mobile-category .services__list-category-item  {
    display: block;
}
#gisp-header #mobile-category .services__list-category-item.hide  {
    display: none;
}

#gisp-header #services{
    margin-right: 0;
}

#gisp-header,
#gisp-header *{
    font-family: 'Akzidenz-GroteskPro', sans-serif;
    box-sizing: border-box;
}
#gisp-header .header .container{
    max-width: 1730px;
    width: 100%;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#gisp-header #shadowLayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000075;
    display: none;
    z-index: 10002;
}

#gisp-header .logos {
    display: flex;
    align-items: center;
}
#gisp-header .logos a {
    display: inline-block;
}
#gisp-header .logos a:first-child {
    margin-right: 40px;
}
#gisp-header header.header * {
    box-sizing: border-box !important;
}
#gisp-header header.header a {
    text-decoration: none !important;
}
#gisp-header .header .logos img {
    height: 33px;
}
#gisp-header .header {
    background: #151515;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 53px;
    display: flex;
    align-items: center;
    z-index: 1005;
}
#gisp-header .header__navigation {
    display: flex;
    align-items: center;
}
#gisp-header .header__navigation > *:not(:last-child) {
    margin-right: 30px;
}
#gisp-header .header__navigation .lang .main-click {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 35px;
    padding: 0 15px;
    color: #fff;
    border-radius: 2px;
    border: 1px solid #424242;
}
#gisp-header .header__navigation .lang .main-click::after {
    content: "";
    display: block;
    position: relative;
    width: 14px;
    height: 22px;
    background: url("https://gisp.gov.ru/gisplk/assets/images/lang-arrow.png") 100% 50% no-repeat;
    padding-left: 20px;
    margin-left: 15px;
    border-left: 2px solid #e5e5e5;
}
#gisp-header .header__navigation .lang .block-ul ul li {
    /*text-align: left;*/
    padding: 10px 25px;
}
#gisp-header .header__navigation .lang .block-ul ul li.lang-item-yt {
    text-align: left !important;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}
#gisp-header .header__navigation .language {
    font-size: 16px;
    cursor: pointer;
}
#gisp-header .header__navigation .login {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 2px;
    padding: 0 15px;
    background: #fff;
    color: #151515;
    font-size: 14px;
    line-height: 35px;
    font-weight: bold;
    white-space: nowrap;
}
#gisp-header .header__navigation .login:hover {
    background: transparent;
    color: #fff;
}
#gisp-header .header__navigation .login:hover::before {
    background: url("https://gisp.gov.ru/gisplk/assets/images/user-icon-hover.png") 0 50% no-repeat;
}
#gisp-header .header__navigation .login::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 37px;
    height: 22px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 2px solid #e5e5e5;
    background: url("https://gisp.gov.ru/gisplk/assets/images/user-icon.png") 0 50% no-repeat;
    box-sizing: border-box;
}
#gisp-header .header__navigation .registration {
    display: flex;
    align-items: center;
    color: #151515;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 35px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}
#gisp-header .header__navigation .registration a{
    color: #151515;
}
/*#gisp-header .header__navigation .registration::before {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    width: 37px;*/
/*    height: 22px;*/
/*    padding-right: 15px;*/
/*    margin-right: 15px;*/
/*    border-right: 2px solid #e5e5e5;*/
/*    background: url("https://gisp.gov.ru/gisplk/assets/images/user-icon.png") 0 50% no-repeat;*/
/*    box-sizing: border-box;*/
/*}*/
#gisp-header .header__navigation .registration .registration-user-icon {
    display: inline-block;
    position: relative;
    width: 37px;
    height: 22px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 2px solid #e5e5e5;
    background: url("https://gisp.gov.ru/gisplk/assets/images/user-icon.png") 0 50% no-repeat;
    box-sizing: border-box;
}
#gisp-header .header__navigation .registration .logout {
    display: inline-block;
    position: relative;
    width: 37px;
    height: 22px;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 2px solid #e5e5e5;
    background: url("https://gisp.gov.ru/gisplk/assets/images/logout-icon.png") 100% 50% no-repeat;
    box-sizing: border-box;
    z-index: 10;
    cursor: pointer;
}
#gisp-header .header__navigation .registration-user {
    height: 38px;
    justify-content: center;
}
#gisp-header .header__navigation .registration a {
    line-height: 1.2;
}
#gisp-header .header__navigation .registration a > span {
    display: block;
}
#gisp-header .header__navigation .registration span {
    display: inline-block;
    width: 100%;
    text-align: center;
}
#gisp-header .header__navigation .registration:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}
#gisp-header .header__navigation .registration:hover a {
    color: #fff;
}
#gisp-header .header__navigation .registration:hover .logout {
    background: url("https://gisp.gov.ru/gisplk/assets/images/logout-icon-hover.png") 100% 50% no-repeat;
}
#gisp-header .header__navigation .registration:hover::before {
    background: url("https://gisp.gov.ru/gisplk/assets/images/user-icon-hover.png") 0 50% no-repeat;
}
#gisp-header .header__menu {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 2px;
    outline: none;
    padding: 12px 22px 12px 0;
    transition-duration: 0.3s;
    min-width: 10%;
    position: relative;
    z-index: 10005;
    background: #fff;
}
#gisp-header .header__menu::before {
    content: "";
    display: none;
    height: 24px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}
#gisp-header .header__menu:hover {
    border-color: grey;
}
#gisp-header .header__menu:hover::before {
    opacity: 1;
    visibility: visible;
    display: block;
}
#gisp-header .header__menu-link {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: bold;
}
#gisp-header .header__menu-icon {
    display: inline-block;
    padding: 16px 16px;
    margin-left: 15px;
    margin-right: 15px;
    background: url("https://gisp.gov.ru/gisplk/assets/images/acc_icon_inverted.png") 50% 50% no-repeat;
}
#gisp-header .header__menu-chevron {
    margin-left: 12px;
}
#gisp-header .header__menu-wrapper {
    position: absolute;
    top: calc(100% + 20%);
    right: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: 0.2s ease-in-out;
    max-height: calc(100vh - 100% - 40px);
    width: 100%;
}
#gisp-header .header__menu-wrapper::before {
    transition: 0.2s;
    top: -4px;
    right: calc(20px);
    position: absolute;
    content: "";
    border: 8px solid transparent;
    border-bottom: 8px solid white;
}
#gisp-header .header__menu-wrapper .hidden {
    display: none;
}
#gisp-header .header__menu-wrapper .btn {
    margin: 15px auto;
    padding-left: 20px;
    padding-right: 20px;
}
#gisp-header .header__menu:hover .header__menu-wrapper, #gisp-header .header__menu:hover .header__menu-dropdown {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
#gisp-header .header__menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    padding: 0px 20px;
    opacity: 0;
    background-color: white;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: 0.2s ease-in-out;
    max-height: calc(100vh - 150px);
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
    min-width: 300px;
    z-index: 1500;
}
#gisp-header .header__menu-item {
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    overflow-x: hidden;
    border-bottom: 1px solid #bcbec0;
}
#gisp-header .header__menu-item .sub-group a {
    color: #4d4d4d;
    font-size: 14px;
}
#gisp-header .header__menu-item .item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#gisp-header .header__menu-item .item-container a {
    padding: 20px 0;
    word-break: break-word;
    color: #000;
    outline: none;
    font-size: 14px;
}
#gisp-header .header__menu-item .item-container .image-plus-minus {
    width: 14px;
    height: 14px;
    align-self: center;
    display: flex;
    align-items: center;
}
#gisp-header .modal-services {
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    color: #151515;
}
#gisp-header .modal-services .modal-header {
    height: 100px;
    align-items: center !important;
    border-bottom: 2px solid #e5e5e5 !important;
    padding-left: 0;
    padding-right: 0;
}
#gisp-header .modal-services .modal-header .logos a:first-child {
    margin-right: 40px;
}
#gisp-header .modal-services .modal-header .close {
    font-size: 14px;
    line-height: 50px;
    display: flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 2px;
    padding: 0 35px 0 0 !important;
    margin: 0 !important;
    opacity: 1;
}

#gisp-header .title{
    font-size: 45px;
    color: #333635;
    font-weight: bold;
    margin: 0 0 15px;
}
#gisp-header .services__list-category-item .services__list-item-content h3{
    font-weight: bold;
}
#gisp-header .modal-services .modal-header .close::before {
    content: "";
    width: 53px;
    height: 26px;
    background: url("https://gisp.gov.ru/gisplk/assets/images/close_icon.png") 50% 50% no-repeat;
    border-right: 2px solid #e5e5e5;
    margin-right: 35px;
}
#gisp-header .modal-services .modal-content {
    height: 100vh !important;
    border-radius: 0 !important;
}
#gisp-header .navigation-services {
    padding: 0 20px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    border-radius: 2px;
    color: #151515;
    background: #fff;
    font-size: 14px;
    line-height: 35px;
    font-weight: bold;
    text-align: center;
    line-break: unset;
    white-space: nowrap;
    outline: none;
    border: 1px solid #fff;
    cursor: pointer;
}
#gisp-header .navigation-services-icon {
    display: inline-block;
    position: relative;
    width: 37px;
    height: 22px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 2px solid #e5e5e5;
}
#gisp-header .navigation-services-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(100% - 15px);
    height: 2px;
    margin-top: -1px;
    background: #9a554b;
}
#gisp-header .navigation-services-icon span::before, #gisp-header .navigation-services-icon span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #9a554b;
}
#gisp-header .navigation-services-icon span::before {
    top: calc(100% + 5px);
}
#gisp-header .navigation-services-icon span::after {
    bottom: calc(100% + 5px);
}
#gisp-header .navigation-services:hover {
    background: none;
    color: #fff;
}
#gisp-header .navigation-services:hover .navigation-services-icon span {
    background: #fff;
}
#gisp-header .navigation-services:hover .navigation-services-icon span::before, #gisp-header .navigation-services:hover .navigation-services-icon span::after {
    background: #fff;
}
@media only screen and (max-width: 1360px) {
		#gisp-header .logos a {
        width: 36px;
        height: 38px;
    }
		#gisp-header .logos a:first-child {
        background: url("https://gisp.gov.ru/gisplk/assets/images/header-logo-small-1.png") 50% 50% no-repeat;
    }
    #gisp-header .logos a:last-child {
        background: url("https://gisp.gov.ru/gisplk/assets/images/header-logo-small-2.png") 50% 50% no-repeat;
    }
    #gisp-header .logos a img {
        display: none;
    }

    #gisp-header .modal-services .modal-header .logos a {
      width: auto;
    }

    #gisp-header .modal-services .modal-header .logos a img {
        display: block;
    }

    #gisp-header .header__navigation .registration a span.user-fio,
		#gisp-header .header__navigation .registration a span.user-email{
		  text-overflow: ellipsis;
		  overflow: hidden;
		  white-space: nowrap;
		  max-width: 230px;
		}
}
@media only screen and (max-width: 1169px) {
    #gisp-header{
        height: 80px;
    }
    #gisp-header .header {
        padding: 10px 0;
        height: 80px;
    }
    #gisp-header .header__menu {
        margin-right: 0 !important;
        padding-right: 0;
    }
    #gisp-header .header__menu-chevron, #gisp-header .header__menu p {
        display: none;
    }
    #gisp-header .header .logos img {
        max-width: 160px;
    }
    #gisp-header .header__navigation {
        margin-top: 0;
        padding-bottom: 0;
        justify-content: space-between;
    }
}
@media only screen and (max-width: 1024px) {
    #gisp-header .header__navigation .registration a{
        font-size: 12px;
    }
    #gisp-header .header__navigation .registration a span.user-fio{
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 200px;
    }
    #gisp-header .header__navigation .registration a span.user-email{
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 200px;
    }
}
@media only screen and (max-width: 1000px) {
    #gisp-header .header .login {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-right: 0;
        padding: 0 5px;
        justify-content: center;
        align-items: center;
    }

    #gisp-header .registration-user__dropdown-value {
        display: none;
    }

    #gisp-header .registration-user__dropdown-item {
        justify-content: center;
    }

    #gisp-header .header .login::before {
        width: 30px;
        padding-right: 0;
        margin-right: 0;
        border: none;
        background-position: 50% 50%;
    }
    #gisp-header .header .login-text {
        display: none;
    }
    #gisp-header .header__navigation .registration {
        height: 40px;
        padding: 12px 5px;
    }
    #gisp-header .header__navigation .registration::before {
        margin-right: 0;
        border: none;
        padding-right: 5px;
        width: 24px;
    }
    #gisp-header .header__navigation .registration .logout {
        width: 28px;
        margin-left: 0;
        padding-left: 5px;
    }
    #gisp-header .header__navigation .lang .main-click {
        line-height: 36px;
    }
    #gisp-header .registration > a, #gisp-header .registration .logout {
        display: none;
    }

    #gisp-header .registration a.registration-user-icon{
        display: inline-block;
    }
    #gisp-header .header__navigation .registration a.registration-user-icon {
        margin-right: 0;
        border: none;
        padding-right: 5px;
        width: 24px;
    }
}
@media only screen and (max-width: 740px) {

		#gisp-header .modal-services .modal-header .logos a img {
      display: none;
    }

    #gisp-header .modal-services .modal-header .logos a {
      width: 36px;
    	height: 38px;
    }

    #gisp-header .modal-content .logos a:first-child {
        background: url("https://gisp.gov.ru/gisplk/assets/images/header-logo-black-small-1.png") 50% 50% no-repeat;
    }
    #gisp-header .modal-content .logos a:last-child {
        background: url("https://gisp.gov.ru/gisplk/assets/images/header-logo-black-small-2.png") 50% 50% no-repeat;
    }
    #gisp-header .slider-block .show-all {
        border: 1px solid #9a554b;
        width: 100%;
        padding: 10px;
        text-align: center;
    }
    #gisp-header .slider-block .show-all::after {
        display: inline-block;
        position: static;
        top: inherit;
        left: inherit;
        margin-left: 5px;
        background: url(https://gisp.gov.ru/gisplk/assets/images/arrow-show.png) 0 0 no-repeat;
    }
    #gisp-header .header .container {
        flex-wrap: nowrap;
    }
    #gisp-header .header__navigation .lang .main-click {
        font-size: 12px;
        padding: 0 5px;
    }
    #gisp-header .header__navigation .lang .main-click::after {
        padding-left: 7px;
        margin-left: 7px;
    }
    #gisp-header .header__navigation > *:not(:last-child) {
        margin-right: 15px;
    }
    #gisp-header .logos a:first-child {
        margin-right: 20px;
    }
}
@media only screen and (max-width: 560px) {
    #gisp-header .navigation-services {
        max-width: 100%;
        width: auto;
        padding: 0 18px;
        margin-left: 10px;
    }
    #gisp-header .main-click::after {
        display: none !important;
    }

    #gisp-header .modal-services .modal-header .close{
        padding: 0 !important;
        line-height: 36px;
    }
    #gisp-header .modal-services .modal-header .close::before{
        border: none;
        width: 40px;
        margin-right: 0;
    }

    #gisp-header .modal-services .modal-header .close span{
        display: none;
    }

    #gisp-header .services__list-category-item .services__list-item{
        flex-direction: column;
        padding-right: 20px;
        padding-left: 0;
    }
    #gisp-header .services__list-category-item .services__list-item-content {
        width: 100% !important;
    }
    #gisp-header #mobile-category .services__list-category-item{
        /*padding: 10px;*/
    }
    #gisp-header .services__list-item .lock{
        right: 5px !important;
        top: 10px !important;
        margin-top: 0 !important;
    }

    #gisp-header .services__list-category-item .services__list-item-title{
        margin: 15px 0 ;
    }

    #gisp-header header.header .title{
        font-size: 18px;
    }

    #gisp-header .navigation-services {
        width: 40px !important;
        height: 40px !important;
        overflow: hidden;
        padding: 0 5px;
        align-items: center;
        justify-content: center;
    }

    #gisp-header .navigation-services-icon {
        width: 30px;
        border: none;
        margin-right: 0;
    }
    #gisp-header .navigation-services-icon span {
        width: 100%;
    }
    #gisp-header .navigation-services-text {
        display: none;
    }
}

/*services*/

#gisp-header #servicesModal .modal-body {
    overflow: auto;
}
#gisp-header .services {
    width: 100%;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    background-size: cover;
    margin-bottom: 100px;
}
#gisp-header .services .grid-back-btn {
    display: none;
    color: #333333;
}
#gisp-header .services__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
#gisp-header .services__view {
    display: flex;
    justify-content: flex-end;
    margin: 0 -10px 20px;
}
#gisp-header .services__view button {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    margin: 0 10px;
    width: 30px;
    height: 30px;
    background-size: 100% auto;
    display: inline-block;
}
#gisp-header .services__search {
    display: block;
    padding: 20px 15px 19px 57px;
    width: 100%;
    max-width: 558px;
    border: 2px solid #e5e5e5;
    outline: none;
    font-size: 16px;
    color: #6d6d6d;
}
#gisp-header .services__search-wrap {
    display: flex;
    align-items: center;
    margin-right: 0;
    position: relative;
    max-width: 558px;
    width: 100%;
}
#gisp-header .services__search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 21px;
    height: 21px;
    margin-top: -10px;
    background: url("https://gisp.gov.ru/gisplk/assets/images/service-search-icon.png") 50% 50% no-repeat;
}
#gisp-header .services__erase-icon {
    cursor: pointer;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 21px;
    height: 21px;
    margin-top: -10px;
    background: url("https://gisp.gov.ru/gisplk/assets/images/close_icon.png") 50% 50% no-repeat;
}
#gisp-header .services__erase-icon.hide {
  display: none;
}
#gisp-header .services__list {
    display: flex;
    align-items: stretch;
    border: 2px solid #e5e5e5;
    min-height: 629px;
}
#gisp-header .services__list-category {
    padding: 0 25px;
    display: none;
    /*position: relative;*/
    z-index: 2;
}
#gisp-header .services__list-category.show {
    display: block;
}
#gisp-header .services__list-category.current {
    width: 100%;
    display: block;
}
#gisp-header .services__list-category > .services__list-item img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-category > .services__list-item:hover img {
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-category > .services__list-item:hover .arrow svg {
    fill: #9a554b !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-category > .services__list-item .arrow {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -14px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-category > .services__list-item .arrow svg {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-category.show .services__list-category-item {
    display: block;
    /*border-bottom: 1px solid #9a564b;*/
}
#gisp-header .services__list-category.show > .services__list-item {
    border-bottom: 1px solid #9a564b;
}
#gisp-header .services__list-category.show > .services__list-item .arrow {
    transform: rotate(180deg);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-top: -18px;
}
#gisp-header .services__list-category.show > .services__list-item .arrow svg {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gisp-header .services__list-category.show.search .services__list-category-item {
    border-bottom: none;
    padding-left: 0;
}
#gisp-header .services__list-category-item .services__list-item {
    padding-left: 25px;
    background: #f7f7f7;
    border-bottom: 2px solid #e5e5e5;
}
#gisp-header .services__list-category-item .services__list-item-title {
    width: 80px;
}
#gisp-header .services__list-category-item .services__list-item-content {
    width: calc(100% - 80px);
}
#gisp-header .services__list-item {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    align-items: center;
    padding: 6px 40px 6px 10px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    margin: 0 !important;
}
#gisp-header .services__list-item .lock {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -14px;
}
#gisp-header .services__list-item .lock svg {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-item img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .services__list-item:hover {
    background: #f7f7f7;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gisp-header .services__list-item:hover h3 {
    color: #9a554b;
}
#gisp-header .services__list-item:hover .lock svg {
    fill: #fff !important;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gisp-header .services__list-item-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#gisp-header .services__list-item-title {
    width: 80px;
}
#gisp-header .services__list-item-title img {
    width: 40px;
    height: 40px;
}
#gisp-header .services__list-item-content h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}
#gisp-header .react-tabs__tab{
    padding: 0;
}
#gisp-header .react-tabs__tab-list {
    display: flex;
    flex-direction: column;
    width: 550px !important;
    list-style: none;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    border-right: 2px solid #e5e5e5 !important;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab {
    width: 100%;
    border: none !important;
    padding: 0;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab:focus {
    box-shadow: none;
    outline: none;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab:not(:last-child) {
    border-bottom: 2px solid #e5e5e5 !important;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab .arrow {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -11px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: rotate(-90deg);
}
#gisp-header .react-tabs__tab-list .react-tabs__tab .arrow svg {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab .services__list-item:hover .arrow svg {
    fill: #9a554b;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab.react-tabs__tab--selected .services__list-item, #gisp-header .react-tabs__tab-list .react-tabs__tab.current .services__list-item {
    background: #f7f7f7;
    color: #9a554b;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gisp-header .react-tabs__tab-list .react-tabs__tab .services__list-item .services__list-item-content{
    width: calc(100% - 80px);
}
#gisp-header .react-tabs__tab-list .react-tabs__tab.react-tabs__tab--selected .arrow svg, #gisp-header .react-tabs__tab-list .react-tabs__tab.current .arrow svg {
    fill: #9a554b;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gisp-header .not-found {
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    display: none;
}
#gisp-header .not-found.show {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#gisp-header .not-found-item h3 {
    font-size: 14px;
    color: #b0b0b0;
    text-transform: uppercase;
    margin-bottom: 20px;
}
#gisp-header .not-found-item figcaption {
    font-size: 16px;
    font-weight: bold;
}
#gisp-header .not-select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
#gisp-header .services-cat-scroll {
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
}
#gisp-header .services-responsive-btn {
    display: none;
}
#gisp-header .services-scroll {
    min-height: 100%;
    max-height: 625px;
    width: 100%;
    overflow-y: auto;
    position: relative;
}
@media only screen and (max-width: 1366px) {
    #gisp-header .services__header{
        margin-bottom: 10px;
    }
    #gisp-header .services__list-item {
        padding: 5px 40px 3px 10px;
    }
    #gisp-header .services__list-item-title,
    #gisp-header .services__list-category-item .services__list-item-title{
        width: 50px;
    }

    #gisp-header .services__list-item-content,
    #gisp-header .services__list-item .services__list-item-content{
        width: calc(100% - 50px);
    }

    #gisp-header .services__list-item-title img{
        width: 30px;
        height: 30px;
    }
    #gisp-header .services__list-item-content h3{
        font-size: 13px;
    }

    #gisp-header .services__list-item-content h3,
    #gisp-header .services__list-category-item .services__list-item-content{
        font-size: 12px;
    }

    #gisp-header .services__search{
        padding: 11px 15px 11px 57px;
        font-size: 11px;
    }

    #gisp-header .services__search-icon{
        background-size: 100% auto;
        width: 15px;
        height: 15px;
        margin-top: -6px;
    }
    #gisp-header .services__list-category-item .services__list-item{
        padding-left: 10px;
    }

    #gisp-header .services__list{
        min-height: 475px
    }
    #gisp-header .services-scroll{
        max-height: 471px;
    }
}

@media only screen and (max-width: 768px) {

    #gisp-header .logos a:first-child{
        margin-right: 20px;
    }
    #gisp-header .header__navigation > *:not(:last-child){
        margin-right: 15px;
    }
    #gisp-header .navigation-services{
        margin-left: 15px;
    }
    #gisp-header .not-found.show{
        background: #fff;
    }
    #gisp-header #current-service{
        display: none !important;
    }
    #gisp-header #mobile-category,
    #gisp-header .services-responsive-btn{
        display: block;
    }

    #gisp-header .react-tabs__tab-list{
        display: none;
    }

    #gisp-header .services__header{
        flex-wrap: wrap;
    }
    #gisp-header .services__list{
        background: #fff;
        border: none;
    }

    #gisp-header .services__list-category{
        padding: 0;
    }

    #gisp-header .services-responsive-btn .services__list-item{
        border: 2px solid #e5e5e5;
        margin-bottom: 15px !important;
        position: relative;
    }

    #gisp-header .services-cat-scroll{
        background: #fff;
        max-height: 100% !important;
    }

    #gisp-header #mobile-category .services__list-category-item{
        /*padding: 12px;*/
        /*border: 2px solid #e5e5e5;*/
        background: #f7f7f7;
        margin-bottom: 15px;
    }

    #gisp-header .services__list-category-item .services__list-item{
        padding-left: 10px;
        padding-bottom: 10px;
        border-left: 2px solid #e5e5e5;
        border-right: 2px solid #e5e5e5;
    }
    #gisp-header .services__list-category-item .services__list-item:first-child{
        border-top: 2px solid #e5e5e5;
     }

    #gisp-header .services-responsive-btn.current:hover .arrow svg {
        fill: #9a554b;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    #gisp-header .services-responsive-btn .arrow svg{
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -10px;
    }
    #gisp-header .services__list-item-title,
    #gisp-header .services__list-category-item .services__list-item-title{
        width: 50px;
    }
    #gisp-header .services__list-item-title img{
        width: 35px;
        height: 35px;
    }
    #gisp-header .services__list-item-content h3{
        font-size: 13px;
    }

    #gisp-header .services__list-item-content h3,
    #gisp-header .services__list-category-item .services__list-item-content{
        font-size: 12px;
    }

    #gisp-header .services__search-wrap,
    #gisp-header .services__search{
        max-width: 100%;
    }

    #gisp-header .services__search{
        padding: 11px 15px 11px 57px;
        font-size: 11px;
    }

    #gisp-header .services__search-icon{
        background-size: 100% auto;
        width: 15px;
        height: 15px;
        margin-top: -6px;
    }

    #gisp-header .header .container{
        max-width: 100%;
    }
}

/*lang*/

#gisp-header .lang .block-ul ul {
    padding-top: 10px;
    padding-bottom: 0 !important;
    padding-left: 0;
    list-style: none;
    margin: 0;
    margin-top: 10px;
    position: relative;
}
#gisp-header .lang .block-ul ul::after{
    content: "";
    position: absolute;
    bottom: 100%;
    right: 10px;
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #383838;
}

#gisp-header .block-ul {
    width: 150px !important;
}
#gisp-header .lang {
    color: white;
    outline: none;
    height: 100%;
    text-align: center;
    align-items: center;
    font-size: 16px;
    display: inline-block;
    height: auto;
    position: relative;
}
#gisp-header .lang .lang-select {
    background-image: url("https://gisp.gov.ru/gisplk/assets/images/chevron.png");
    min-width: 55px;
    background-repeat: no-repeat;
    background-position: 75% center;
    font-size: 14px;
    font-weight: bold;
    border: 0px;
    background-color: #151515;
    color: white;
    font-weight: bold;
    z-index: 2;
}
#gisp-header .lang .lang-select .lang-select__option {
    font-size: 14px;
    font-weight: bold;
    border: 0px;
    background-color: #151515;
    color: white;
    font-weight: bold;
    z-index: 2;
    padding: 5px 10px;
}
#gisp-header .lang .block-ul {
    background-color: #383838;
    position: absolute;
    /*width: 400%;*/
    min-width: 135px;
    z-index: 999;
    border-radius: 10px;
    overflow: hidden;
    right: 0;
    left: auto;
}
#gisp-header .lang .block-ul .li-lang{
  background-position: 25px 50%;
  background-repeat: no-repeat;
  -webkit-background-size: 25px 16px;
  background-size: 25px 16px;
}
#gisp-header .lang .block-ul .ru{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-russia.png');
}
#gisp-header .lang .block-ul .en{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-america.png');
}
#gisp-header .lang .block-ul .tr{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-turkey.png');
}
#gisp-header .lang .block-ul .ko{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-korea.png');
}
#gisp-header .lang .block-ul .hi{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-india.png');
}
#gisp-header .lang .block-ul .fr{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-france.png');
}
#gisp-header .lang .block-ul .es{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-spain.png');
}
#gisp-header .lang .block-ul .zh{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-china.png');
}
#gisp-header .lang .block-ul .de{
  background-image: url('https://gisp.gov.ru/gisplk/assets/images/flag-germany.png');
}

#gisp-header .lang .block-ul .en:before {
  content: 'En';
}
#gisp-header .lang .block-ul .ru:before {
  content: 'Ru';
}
#gisp-header .lang .block-ul .tr:before {
  content: 'Tr';
}
/*#gisp-header .lang .block-ul .ar:before {
    content: 'العربية';
}*/
#gisp-header .lang .block-ul .ko:before {
  content: 'Ko';
}
#gisp-header .lang .block-ul .hi:before {
  content: 'Hi';
}
#gisp-header .lang .block-ul .fr:before {
  content: 'Fr';
}
#gisp-header .lang .block-ul .es:before {
  content: 'Es';
}
#gisp-header .lang .block-ul .zh:before {
    content: 'Zh';
}
#gisp-header .lang .block-ul .de:before {
  content: 'De';
}
#gisp-header .lang .block-ul ul {
    padding-top: 10px;
    padding-bottom: 10px;
}
#gisp-header .lang .block-ul ul li {
    text-align: center;
    line-height: 1.5;
    font-size: 15px;
    cursor: pointer;
    padding: 6px;
}
#gisp-header .lang .block-ul ul li:hover {
    background-color: #0d0d0d;
}
#gisp-header .lang .block-ul ul li:last-child:hover{
    background: transparent;
}
#gisp-header .lang .main-click {
    cursor: pointer;
}
#gisp-header #yt-widget .yt-button_type_left {
    display: none !important;
}
#gisp-header .yt-servicelink {
    color: white !important;
}
#gisp-header #yt-widget .yt-button_type_right {
    border-radius: 3px !important;
}
#gisp-header a.yt-servicelink {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}
#gisp-header .yt-servicelink:hover, #gisp-header .yt-servicelink > span {
    color: #f00;
}
#gisp-header .lang-item-yt {
    padding: 20px;
    text-align: right !important;
}
