@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=cyrillic-ext);
@font-face {
    font-family: sf_pro_displaybold;
    src: url(../fonts/sf-pro-display-bold-webfont.eot);
    src: url(../fonts/sf-pro-display-bold-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/sf-pro-display-bold-webfont.woff2) format('woff2'), url(../fonts/sf-pro-display-bold-webfont.woff) format('woff'), url(../fonts/sf-pro-display-bold-webfont.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}

@keyframes openlinks {
    0% {
        left: 0
    }
    50% {
        left: 7px
    }
    100% {
        left: 0
    }
}

@keyframes closelinks {
    0% {
        left: 92%
    }
    50% {
        left: 93%
    }
    100% {
        left: 92%
    }
}

* {
    outline: 0
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    font-family: 'Open Sans', sans-serif
}

body {
    position: relative;
    padding-bottom: 239px;
    min-height: 100vh;
    background-image: url(../images/search-block-bg.png);
    background-position: center center
}

input,
select,
textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0
}

body,
html {
    overflow-x: hidden
}

html {
    line-height: 1
}

ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    text-align: left;
    font-weight: 400;
    vertical-align: middle
}

a img {
    border: none
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

b,
strong {
    font-weight: 700
}

div {
    position: relative
}

a {
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

a:hover {
    text-decoration: none
}

button,
input,
select,
textarea {
    outline: 0
}

::-webkit-input-placeholder {
    color: #263238
}

::-moz-placeholder {
    color: #263238
}

:-ms-input-placeholder {
    color: #263238
}

:-moz-placeholder {
    color: #263238
}

.block-fl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto
}

.show-mobile {
    display: none
}

header {
    width: 100%;
    background-color: #026788;
    padding: 10px 0
}

header .logo {
    margin-left: 0
}

.location-text {
    top: -3px
}

.logo img {
    width: 100%;
    max-width: 174px;
    height: auto
}

.logo p {
    font-family: sf_pro_displaybold;
    font-size: 21px;
    color: #fff;
    margin-left: 15px;
    text-transform: uppercase
}

.location {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end
}

.location .la-map-marker {
    font-family: FontAwesome;
    color: #37b6c4;
    font-size: 36px
}

.location-current {
    font-size: 12px;
    color: #37b6c4;
    text-transform: uppercase
}

.location-selected {
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    margin-top: 5px;
    cursor: pointer
}

.location-selected:after {
    content: "\f110";
    font-family: FontAwesome;
    font-size: 12px;
    color: #eaf0f1;
    margin-left: 22px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.location-selected.active:after {
    content: "\f113"
}

.location-selected:hover:after {
    color: #fff
}

.location-selected .select_city {
    max-width: 200px;
    display: inline-block
}

.location-list {
    position: absolute;
    display: block;
    background: #fff;
    z-index: 10;
    width: 300px;
    font-size: 12px;
    margin-top: 5px;
    border-radius: 3px;
    height: 400px;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.location-list.active {
    max-height: 400px;
    overflow: auto;
    border: 1px #035777 solid
}

.location-list span {
    display: block;
    cursor: pointer;
    font-weight: 600;
    color: #035777;
    padding: 5px 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.location-list span:hover {
    color: #0f99b2;
    background-color: #eee
}

.userenter .user-enter,
.userenter .user-reg {
    color: #fff;
    font-size: 15px;
    padding: 0 22px;
    border: 1px #0f99b2 solid;
    border-radius: 5px;
    height: 40px
}

.userenter .user-enter:hover {
    background-color: #fff;
    color: #0f99b2
}

.userenter .user-reg {
    background-color: #0f99b2;
    margin-left: 8px;
    padding-left: 0
}

.userenter .user-reg:hover {
    background-color: #fff;
    color: #0f99b2
}

.userenter .user-reg .la-institution,
.userenter .user-reg .la-sign-out {
    font-family: FontAwesome;
    font-size: 22px;
    color: #fff;
    margin: 0 8px 0 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.userenter .user-reg .la-sign-out {
    margin: 0 5px 0 5px
}

.userenter .user-reg.user_exit .la-institution {
    display: none
}

.userenter .user-reg.user_exit {
    padding: 0
}

.userenter .user-reg:hover .la-institution,
.userenter .user-reg:hover .la-sign-out {
    color: #0f99b2
}

nav {
    background-color: #035777;
    padding: 8px 0 8px 0
}

nav .menu {
    width: 100%
}

nav .menu ul {
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center
}

nav .menu>ul>li {
    border: 1px #035777 solid;
    border-right-color: #026789;
    border-left: 0;
    height: 28px;
    position: relative;
    padding: 0 55px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center
}

nav .menu>ul.auth_menu>li {
    padding: 0 14px
}

nav .menu>ul>li:first-child {
    padding-left: 0
}

nav .menu>ul>li:last-child {
    border-right-color: #035777
}

nav .menu>ul>li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding-top: 3px
}

nav .menu>ul>li a.active,
nav .menu>ul>li a:hover,
nav .menu>ul>li.active a {
    color: #37b6c4
}

nav .menu>ul>li ul {
    position: absolute;
    top: 31px;
    left: 0;
    width: 400px;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background-color: #035777;
    z-index: 4;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

nav .menu>ul>li:hover ul {
    max-height: 1000px
}

nav .menu ul li ul li,
nav .menu ul li ul li:first-child {
    padding: 10px
}

nav .menu ul li ul li a {
    font-size: 12px
}

.search {
    margin: 5px auto
}

.search input {
    max-width: 80%;
    border: none;
    color: #000;
    display: flex;
    width: 80%;
    height: 37px;
    font-size: 16px;
    font-weight: 300;
    padding: 0 19px;
    border: 1px #dee6e7 solid !important;
    box-shadow: none !important
}

.search input::-webkit-input-placeholder {
    color: #3a738c
}

.search input::-moz-placeholder {
    color: #3a738c
}

.search input:-ms-input-placeholder {
    color: #3a738c
}

.search input:-moz-placeholder {
    color: #3a738c
}

.search span {
    padding: 6px;
    display: flex;
    max-width: 100px;
    width: 20%;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 37px;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.search span:hover {
    opacity: .7
}

.documents-tabs .search.block-fl {
    display: none
}

.documents-tabs.active .search.block-fl {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 20px
}

.search-block {
    padding: 30px 0 30px 0;
    background-image: url(../images/search-block-bg.png);
    background-position: center;
    background-repeat: repeat;
    min-height: 460px
}

.search-block-wrap {
    background-color: #fff;
    padding: 30px 50px;
    box-shadow: 0 0 6px rgba(8, 32, 71, .21);
    box-sizing: border-box
}

.search-block-wrap h2 {
    color: #02394e;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 0
}

.serach-block-icon {
    position: absolute;
    top: 35px;
    right: 63px;
    display: block;
    width: 70px;
    height: 70px;
    background-image: url(../images/search-block-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.search-block-tabs-link {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.search-block-tabs-link.active {
    max-height: 1000px
}

.search-block-tabs-link span.tl-s {
    width: 33.3%;
    text-align: center;
    font-size: 14px;
    color: #000;
    padding: 18px 0;
    border-right: 1px #dae8e9 solid;
    border-bottom: 2px #f2f5f5 solid;
    background-color: #f2f5f5;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.search-block-tabs-link span.tl-s:last-child {
    border-right: 1px #f2f5f5 solid
}

.search-block-tabs-link span.tl-s.active {
    color: #03727e;
    background-color: #e1e8ec;
    border-bottom: 2px #03727e solid
}

.search-block-tabs-link span.tl-s:hover {
    background-color: #fff
}

.search-block-tabs-link span.tl-s.active:hover {
    background-color: #e1e8ec
}

.search-block-tab {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0
}

.search-block-tab.active {
    opacity: 1;
    max-height: 100000px;
    margin-top: 15px
}

.search-block-tab form {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start
}

.search-block-tab form>div {
    width: 23%
}

.search-block-tab .ep-ui form>div {
    width: unset
}

.search-block-tab.ul form>div {
    width: 48%
}

.help-page .search-block-tab form>div {
    width: 48%
}

.help-page .search-block-tab form>div.form-line {
    width: 100%
}

.search-block-tab.ip form>div {
    width: 100%
}

.search-block-tab form>div.reg-select,
.search-block-tab form>div.search-block-btn {
    width: 100%
}

.search-block-tab form>div.search-block-btn {
    text-align: center
}

.search-block-tab input[type=text],
.search-block-tab select,
.search-block-tab textarea {
    height: 48px;
    max-width: 100%;
    font-size: 18px;
    font-weight: 300;
    padding: 0 19px;
    border: 1px #dee6e7 solid !important;
    box-shadow: none !important
}

.search-block-tab textarea {
    padding-top: 15px
}

.search-block-tab input[type=text]:focus,
.search-block-tab select:focus,
.search-block-tab textarea:focus {
    border-bottom: 2px #00994f solid !important
}

.ep-ui input[type=submit],
.search-block-tab button[type=submit] {
    width: 100%;
    max-width: 252px;
    height: 50px;
    margin: 0 auto 0 auto;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.search-block-tab button[type=submit]:hover {
    background-color: #035777
}

.auth-form.search-block-tab .form-line {
    width: 100%
}

.auth-form.search-block-tab button[type=submit],
.auth-form.search-block-tab input[type=text] {
    width: 100%;
    max-width: 320px;
    height: 50px
}

.authent-page .search-block-tab input[type=text] {
    width: 100%;
    max-width: 400px;
    margin: 5px auto;
    position: relative;
    display: block
}

.unsubscribe-page .search-block-tab input[type=text] {
    width: 100%;
    max-width: 400px;
    margin: 5px auto;
    position: relative;
    display: block
}

.help-page .search-block-tab input[type=text],
.help-page .search-block-tab textarea {
    width: 100%
}

.help-page .search-block-tab textarea {
    height: 200px
}

.help-page .capcha-block {
    text-align: center;
    margin: 0 auto 0 auto
}

.help-page .capcha-block .capcha-img {
    width: auto;
    display: inline-block;
    border: 1px #dee6e7 solid;
    margin: 0 auto 10px auto
}

.help-block {
    font-size: 12px
}

.about {
    background-color: #fff;
    padding: 45px 0 50px 0
}

.about-title {
    background-image: url(../images/useful-title-bg.png);
    background-position: center;
    background-repeat: repeat-x;
    text-align: center;
    margin-bottom: 55px
}

.about-title span {
    display: inline-block;
    padding: 0 27px;
    background-color: #fff;
    font-size: 22px;
    color: #02394e
}

.about-wrap {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start
}

.about-wrap .about-item {
    width: 25%;
    padding: 0 20px 0 40px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 22px
}

.about-wrap .about-item:last-child {
    padding-right: 0
}

.about-wrap .about-item:before {
    content: '';
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/about-list-icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.services {
    background-color: #026789;
    padding: 48px 0 65px 0
}

.services-title {
    background-image: url(../images/services-bg.png);
    background-position: center;
    background-repeat: repeat-x;
    text-align: center;
    margin-bottom: 40px
}

.services-title span {
    display: inline-block;
    padding: 0 35px;
    margin: 0 auto;
    position: relative;
    background-color: #026789;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase
}

.search-block .services-title span {
    background: 0 0;
    color: #026789
}

.services-item {
    width: 218px;
    height: 93px;
    background-color: #fff;
    border-left: 3px #00994f solid;
    overflow: hidden;
    margin-bottom: 19px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.search-block .services-item {
    border-left: 3px #026789 solid
}

.services-item:hover {
    border-left: 3px #fff solid
}

.services-item a {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding-left: 15px
}

.services-item p {
    position: relative;
    font-size: 14px;
    color: #003351;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2
}

.services-item .service-icon {
    position: absolute;
    right: -24px;
    bottom: -24px;
    z-index: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.services-item:hover .service-icon {
    right: -15px;
    bottom: -15px
}

.services-item .service-icon img {
    max-width: 104px;
    height: auto
}

.useful {
    padding: 40px 0 40px 0
}

.useful-title {
    background-image: url(../images/useful-title-bg.png);
    background-position: center;
    background-repeat: repeat-x;
    text-align: left;
    margin-bottom: 40px
}

.useful-title span {
    display: inline-block;
    background-color: #fff;
    font-size: 30px;
    color: #02394e;
    padding-right: 25px
}

.useful-tabs-wrap {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start
}

.useful-tabs-link {
    width: 27%;
    padding-right: 18px;
    text-align: right;
    margin-top: 5px
}

.useful-tabs-link span {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #026789;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 6px;
    margin-left: 18px;
    border-bottom: 1px #d4e3e9 solid;
    font-weight: 600;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.useful-tabs-link span:hover {
    color: #02394e
}

.useful-tabs-link span.active {
    color: #02394e;
    border-bottom: none;
    font-weight: 700
}

.useful-tabs-link span.active:after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    width: 31px;
    height: 18px;
    background-image: url(../images/useful-arrow.png);
    display: block
}

.useful-tabs {
    width: 65%
}

.useful-tab {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.useful-tab.active {
    opacity: 1;
    max-height: 10000px
}

.useful-tab ol li,
.useful-tab p,
.useful-tab ul li {
    font-size: 14px;
    color: #000;
    line-height: 22px;
    margin-bottom: 20px
}

.useful-tab ol,
.useful-tab ul {
    padding-left: 20px;
    margin-left: 10px
}

.useful-tab ol li,
.useful-tab ul li {
    margin-bottom: 7px
}

.useful-tab ol li {
    list-style: decimal
}

.useful-tab ul li {
    list-style: disc
}

.useful-tab h4 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin: 20px 0 35px 0
}

.documents {
    padding: 30px 0 30px 0
}

.documents-title {
    background-image: url(../images/useful-title-bg.png);
    background-position: center;
    background-repeat: repeat-x;
    text-align: left;
    margin-bottom: 40px
}

.documents-title span {
    display: inline-block;
    background-color: #fff;
    font-size: 30px;
    color: #02394e;
    padding-right: 25px;
    text-transform: uppercase
}

.documents-tabs-wrap {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start
}

.documents-tabs-links {
    width: 33%;
    border-right: 1px #d4e7eb solid
}

.documents-tabs-links .documents-tabs-link {
    padding: 15px 15px 15px 48px;
    font-size: 14px;
    line-height: 22px;
    color: #026789;
    text-decoration: underline;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.documents-tabs-links .documents-tabs-link:hover {
    text-decoration: none
}

.documents-tabs-links .documents-tabs-link:before {
    content: '\f35e';
    display: block;
    font-family: FontAwesome;
    color: #37b6c4;
    font-size: 22px;
    position: absolute;
    top: 15px;
    left: 20px
}

.search-block-wrap h2.h2-title {
    margin-bottom: 30px
}

.documents-tabs-links .documents-tabs-link.active {
    color: #02394e;
    background-color: #eaf0f1;
    text-decoration: none
}

.documents-tabs {
    width: 62%
}

.documents-tab {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.documents-tab.active {
    opacity: 1;
    max-height: 1000000px
}

.documents-tab-item {
    padding: 16px 65px 55px 65px;
    border: 1px #dee6e7 solid;
    margin-bottom: 20px
}

.documents-tab-item p {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px
}

.documents-tab-item:before {
    content: '';
    width: 31px;
    height: 38px;
    background-image: url(../images/pdf-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 17px;
    left: 19px
}

.documents-tab-item .documents-tab-item-date {
    color: #717171;
    font-size: 12px;
    font-style: italic;
    display: block;
    position: absolute;
    left: 65px;
    bottom: 21px;
    font-weight: 400
}

.documents-tab-item a {
    position: absolute;
    color: #00994f;
    font-size: 14px;
    text-decoration: underline;
    bottom: 21px;
    right: 30px
}

.documents-tab-item a:hover {
    text-decoration: none
}

.found-block {
    padding: 30px 0 30px 0;
    background-image: url(../images/search-block-bg.png);
    background-position: center;
    background-repeat: repeat
}

.found-block-wrap {
    background-color: #fff;
    padding: 50px 63px;
    box-shadow: 0 0 6px rgba(8, 32, 71, .21);
    box-sizing: border-box
}

.found-block-wrap h2 {
    color: #02394e;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px
}

.found-block-icon {
    position: absolute;
    top: 35px;
    right: 63px;
    display: block;
    width: 89px;
    height: 89px;
    background-image: url(../images/search-block-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.found-info {
    background-color: #eaf0f1;
    border-left: 3px #00994f solid;
    box-sizing: border-box;
    padding: 30px
}

.found-info-text {
    width: 60%
}

.found-fio {
    font-size: 25px;
    color: #000
}

.found-dop {
    margin-top: 15px;
    justify-content: flex-start
}

.found-dop .found-birth-date {
    font-size: 14px;
    color: #000;
    display: block;
    position: relative;
    margin-right: 25px
}

.found-dop .found-status {
    font-size: 14px;
    color: #03727e;
    display: block;
    position: relative
}

.found-info-clock {
    width: 20%
}

.found-info-clock-icon {
    font-size: 52px;
    font-family: FontAwesome;
    color: #bdcacc;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.found-info-clock-icon.rotate {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.found-info-clock-text {
    font-size: 18px;
    color: #00994f;
    line-height: 22px
}

.found-process {
    margin: 35px 0 30px 0
}

.found-process-text {
    width: 20%;
    font-size: 16px;
    color: #02394e;
    text-transform: uppercase;
    font-weight: 600
}

.found-process-bar {
    width: 79%;
    height: 15px;
    box-sizing: border-box;
    border: 1px #e0e7e8 solid
}

.found-process-bar span {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    width: 0%;
    display: block;
    background-color: #0f99b2;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.found-process-bar span.getfound {
    -webkit-transition: all 50ms ease;
    transition: all 50ms ease
}

.found-base {
    padding: 15px 0;
    border-bottom: 1px #dee6e7 solid;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start
}

.found-base-icons {
    width: 3%;
    min-width: 35px
}

.found-base-icons span {
    font-family: FontAwesome;
    position: absolute;
    display: block
}

.found-base-icons span.la-university {
    color: #37b6c4;
    left: 3px;
    top: -5px;
    font-size: 25px;
    z-index: 1
}

.found-base-icons span.la-check {
    background-image: url(../images/base-check.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    left: 8px;
    top: 1px;
    z-index: 2;
    display: none
}

.found-base-icons span.la-check.active {
    display: block
}

.found-base-percent {
    width: 10%;
    text-align: right;
    color: #024c6c;
    font-size: 14px;
    font-weight: 600
}

.found-base-name {
    width: 85%;
    font-size: 14px;
    color: #333
}

.found-get-block {
    display: none;
    margin-top: 40px
}

.found-get-block.active {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex
}

.get-icons {
    width: 54px;
    height: 53px;
    background-image: url(../images/get-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 20px
}

.get-block-text {
    width: 50%;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start
}

.get-block-text .get-text {
    font-size: 23px;
    color: #02394e;
    text-transform: uppercase
}

.get-block-text .get-text span {
    font-size: 27px;
    color: #00994f;
    font-weight: 700;
    display: block;
    width: 100%
}

.get-button {
    width: 50%;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end
}

.debts-btn .get-btn,
.found-get-block .get-btn {
    display: block;
    position: relative;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    width: 90%;
    max-width: 320px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #00994f;
    border: 1px #00994f solid;
    border-radius: 3px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.debts-btn .get-btn:hover,
.found-get-block .get-btn:hover {
    background-color: #fff;
    color: #00994f
}

.debts-btn {
    margin-top: 10px;
    display: none
}

.auth-page {
    padding: 30px 0 30px 0;
    background-image: url(../images/search-block-bg.png);
    background-position: center;
    background-repeat: repeat
}

.auth-page .about,
.auth-page .about .about-title span {
    background: 0 0
}

.auth-wrap {
    background-color: #fff;
    padding: 0;
    box-shadow: 0 0 6px rgba(8, 32, 71, .21);
    box-sizing: border-box;
    margin-bottom: 0;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch
}

.auth-wrap .auth-left {
    background-color: #f2f5f5;
    padding: 30px 0;
    text-align: center;
    width: 23%;
    box-sizing: border-box
}

.auth-wrap .auth-left img {
    width: auto;
    height: auto;
    max-width: 90%
}

.auth-wrap .auth-right {
    width: 77%;
    box-sizing: border-box;
    padding: 30px 30px
}

.auth-wrap .auth-right h2 {
    color: #00994f;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 45px
}

.auth-wrap .form-title {
    font-size: 21px;
    color: #02394e;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px
}

.auth-form .auth-input {
    width: 225px;
    height: 48px;
    font-size: 18px;
    font-weight: 300;
    padding: 0 19px;
    border: 1px #dee6e7 solid;
    box-shadow: none;
    margin-right: 30px
}

.auth-form .auth-input:focus {
    border-bottom: 2px #00994f solid
}

.auth-form .auth-submit {
    width: 90%;
    max-width: 208px;
    height: 48px;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.auth-form .auth-submit:hover {
    background-color: #035777
}

.auth-wrap .text-after-form {
    font-size: 14px;
    color: #000;
    opacity: .5;
    margin-top: 20px
}

.auth-description {
    margin-top: 40px;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    display: none
}

#ep-pay-phone-interface .form-text {
    text-transform: none !important
}

.code-row {
    display: block !important
}

.code-row div {
    display: block !important;
    width: 100% !important
}

.ep-ui .ep-forms .code-row input[type=text].form-input-text {
    width: 252px !important
}

.code-row div:last-child {
    margin-top: 20px
}

.auth-descr-text {
    width: 100%;
    font-size: 13px;
    color: #000;
    opacity: .5;
    line-height: 22px
}

.auth-descr-av span {
    display: block;
    width: 100%;
    font-size: 15px;
    color: #02394e;
    font-weight: 600;
    text-transform: uppercase
}

.auth-descr-av img {
    margin-top: 30px;
    width: 100%;
    max-width: 220px;
    height: auto
}

.search-block-tab form>div.cost {
    color: #d1d1d1;
    font-size: 12px;
    width: 100%
}

.new-letter-block {
    width: 100%;
    margin-top: 15px
}

.dictionary-wrap {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start
}

.dictionary-wrap .letter-block {
    width: 100%;
    padding-top: 15px;
    border-top: 1px #02394e solid
}

.dictionary-wrap .letter-block:first-child {
    border-top: none
}

.letter-block p {
    font-size: 24px;
    color: #02394e;
    font-weight: 700
}

.word-block {
    width: 33%;
    margin-top: 15px;
    padding-right: 20px
}

.termin-block {
    margin-top: 15px;
    line-height: 22px
}

.termin-block:first-letter {
    text-transform: uppercase
}

.back-dictionary {
    margin-top: 30px;
    text-align: right
}

.alphabet {
    margin: 30px 0 15px 0;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    border-radius: 3px
}

.alphabet a {
    text-align: center;
    display: block;
    padding: 10px;
    font-weight: 600;
    background: #035777;
    color: #fff
}

.alphabet a:hover {
    background: #fff;
    color: #035777
}

.phone-search .search-block-tab form>div.logic-field {
    margin-bottom: 20px
}

.phone-search .search-block-tab form>div.logic-field>div label {
    display: inline-block;
    padding-left: 22px;
    width: 45%;
    position: relative;
    cursor: pointer;
    padding-top: 3px
}

.phone-search .search-block-tab form>div.logic-field>div label:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    top: 1px;
    border: 2px #035777 solid;
    border-radius: 12px
}

.phone-search .search-block-tab form>div.logic-field>div label.active:before {
    background-color: #0f99b2
}

.phone-search .search-block-tab form>div.logic-field>div label.control-label {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    color: #035777;
    padding-left: 0
}

.phone-search .search-block-tab form>div.logic-field>div label.control-label:before {
    display: none
}

.regions-field .form-group {
    width: 31%;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex
}

.regions-field .form-group label {
    cursor: pointer
}

.regions-field .form-group label:nth-child(3) {
    order: 1;
    width: 15px;
    height: 15px;
    position: relative;
    z-index: 1
}

.regions-field .form-group label:first-child {
    order: 2;
    display: inline-block;
    margin-left: -20px;
    padding-left: 30px;
    z-index: 3
}

.regions-field .form-group label:nth-child(3):after {
    content: '';
    width: 16px;
    height: 17px;
    border: 2px #035777 solid;
    position: absolute;
    display: block;
    left: 1px;
    top: 3px;
    z-index: 2
}

.regions-field .form-group label.active:nth-child(3):before {
    content: "\f17b";
    font-family: FontAwesome;
    position: absolute;
    display: block;
    left: 0;
    top: -2px;
    color: #035777;
    font-size: 22px;
    z-index: 2
}

.regions-field .form-group label:nth-child(3) input {
    opacity: 0;
    z-index: 3
}

.phone-search .search-block-tab form>div {
    width: 32%
}

.phone-search .search-block-tab form>div.half-block {
    width: 49%
}

.phone-search.pristav-search .search-block-tab form>div {
    width: 48%
}

.phone-search .search-block-tab .form-line,
.phone-search .search-block-tab .search-block-btn,
.phone-search.pristav-search .search-block-tab .form-line {
    width: 100%
}

.phone-search .search-block-tab .search-block-btn button[type=submit] {
    max-width: 250px
}

.dolg-search .search-block-tab .form-line,
.dolg-search .search-block-tab .search-block-btn,
.dolg-search.pristav-search .search-block-tab .form-line {
    width: 100%
}

.dolg-search .search-block-tab .search-block-btn button[type=submit] {
    margin: 30px auto 0 auto;
    max-width: 420px;
    display: block
}

.authent-page .dolg-search .search-block-tab button[type=submit] {
    width: 100%;
    max-width: 400px
}

.unsubscribe-page .dolg-search .search-block-tab button[type=submit] {
    width: 100%;
    max-width: 300px;
    height: 50px
}

.debts-content {
    display: none;
    margin-top: 15px;
    padding: 5px 0
}

.found-get-block-ready {
    display: none;
    margin-bottom: 32px
}

.response-block {
    display: none
}

.wait-block {
    flex-direction: column;
    align-items: center;
    display: none
}

.wait-block .block-fl {
    margin-top: 40px;
    text-align: center;
    display: block;
    color: #00994f
}

.wait-block div img {
    max-width: 100px
}

.search-phone-more {
    color: #035777;
    cursor: pointer;
    text-decoration: underline
}

.search-phone-more:hover {
    text-decoration: none
}

.search-block-tab.add-search {
    margin-top: 0
}

.text-page p {
    margin-bottom: 15px
}

.unsubscribe-page p {
    text-align: center;
    margin-bottom: 20px
}

.text-page ol,
.text-page ul {
    margin-bottom: 15px;
    padding-left: 25px
}

.text-page ul li {
    list-style: disc;
    margin-bottom: 5px
}

.text-page .style_n li {
    list-style: none
}

.text-page ol li {
    list-style: decimal;
    margin-bottom: 5px
}

.text-page h3 {
    color: #02394e;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px
}

.text-page h4 {
    color: #02394e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px
}

.search-block-tab select,
.text-page .search-block-tab input[type=text] {
    margin-bottom: 10px
}

.conditions-block {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px #ccc solid
}

.conditions-block a {
    font-weight: 700
}

.conditions-block a.subscribe_query {
    color: #00994f;
    font-weight: 400
}

.conditions-block a.subscribe_query.selected {
    color: red;
    font-weight: 400
}

.conditions-block a.subscribe_query.selected:hover,
.conditions-block a.subscribe_query:hover {
    color: #02394e
}

.conditions-block-form .form-group.search-block-tab {
    width: 45%
}

.conditions-block-form .search-block-tab button[type=submit] {
    height: 48px;
    margin: 0 auto
}

.conditions-block-form .help-block {
    position: absolute;
    left: 20px;
    bottom: -25px
}

.conditions-block-form .search-block-tab input[type=text] {
    margin-bottom: 20px
}

.pagination-list {
    margin: 20px 0
}

.pagination-list li {
    margin: 0 10px
}

.pagination-list li.active a {
    color: #00994f;
    font-weight: 700
}

.g-recaptcha {
    margin: 0 auto;
    text-align: center;
    width: 300px
}

footer {
    padding: 21px 0;
    background-image: url(../images/footer_bg.png);
    background-size: cover;
    position: absolute;
    width: 100%;
    bottom: 0
}

footer .container {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between
}

footer .logo img {
    width: 100%;
    max-width: 174px;
    height: auto
}

footer .logo p {
    font-size: 14px
}

.footer-menu {
    margin-left: 10px
}

.footer-menu ul {
    display: flex
}

.footer-menu ul li {
    margin-right: 20px;
    border-right: 1px #256889 solid;
    padding: 2px 9px;
    margin: 0
}

.footer-menu ul li:last-child {
    border-right: none
}

.footer-menu ul li a {
    font-size: 13px;
    color: #fff;
    font-weight: 300
}

.footer-menu ul li a:hover {
    color: #37b6c4
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .5;
    z-index: 100;
    display: none;
    overflow: hidden
}

.overlay.active {
    display: block
}

.popup.active {
    position: fixed;
    background: #fff;
    width: 300px;
    height: auto;
    padding: 30px 10px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 101;
    top: 45%;
    font-size: 18px;
    background-color: #e1e8ec;
    border-bottom: 2px #03727e solid
}

.popup-close {
    position: absolute;
    right: 0;
    top: -20px;
    font-weight: 700;
    cursor: pointer
}

.popup-close:hover {
    opacity: .6
}

.search-block-tab form div.error-msg {
    color: red;
    width: 50%
}

.search-block-tab form div.error-aut,
.search-block-tab form div.unsubscribe-error {
    width: 100%;
    padding-bottom: 10px
}

.search-block-tab form div.success-msg {
    color: #12984f;
    width: 100%;
    font-weight: 600
}

.authent_q {
    text-align: center
}

.rules_description {
    font-size: 11px;
    line-height: 12px
}

.search-block-tab form div.no-payment-msg {
    margin-top: 5px;
    color: red;
    width: 320px
}

.sms-test {
    color: #0fb25a;
    font-weight: 600
}

li.isp {
    background-image: url(../images/fssp-logo.svg);
    background-repeat: no-repeat;
    padding-left: 35px !important;
    background-position-y: 0
}

li.pri {
    background-image: url(../images/fssp-logo.svg);
    background-repeat: no-repeat;
    padding-left: 35px !important;
    background-position-y: 0;
    margin-left: 52px
}

li.gbd {
    background-image: url(../images/gibdd-logo.svg);
    background-repeat: no-repeat;
    padding-left: 35px !important;
    background-position-y: 3px;
    margin-left: 52px
}

li.doc {
    background-image: url(../images/icon-doc.svg);
    background-repeat: no-repeat;
    padding-left: 28px !important;
    background-position-y: 5px;
    margin-left: 20px
}

li.hlp {
    background-image: url(../images/icon-hlp.svg);
    background-repeat: no-repeat;
    padding-left: 24px !important;
    background-position-y: 4px;
    margin-left: 20px
}

@media (min-width:1200px) {
    .help-page .container {
        width: 1000px
    }
}

nav .menu>ul.auth_menu>li.header-icon {
    padding: 0 15px 0 8px;
    margin-left: 12px
}

nav .menu>ul.auth_menu>li.header-icon:first-child {
    margin-left: 0
}

@media(max-width:1099px) {
    body {
        padding-bottom: 0
    }
    footer {
        position: relative;
        bottom: auto
    }
    header .logo {
        margin-left: 0
    }
    .container {
        max-width: 900px
    }
    .footer-menu {
        margin-left: 30px
    }
    nav .menu>ul>li a {
        font-size: 13px
    }
    nav .menu>ul>li {
        padding: 0 8px
    }
    nav .menu>ul>li.header-icon {
        margin-left: 10px
    }
    nav .menu>ul>li a {
        font-size: 11px
    }
    nav .menu>ul.auth_menu>li.header-icon {
        padding: 0 8px 0 8px;
        margin-left: 8px
    }
}

@media(max-width:991px) {
    .userenter .user-reg.user_exit {
        margin-right: 7px
    }
    .container {
        max-width: 98%
    }
    nav .menu>ul {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center
    }
    nav .menu ul li:first-child {
        padding-left: 5px
    }
    nav .menu>ul>li a {
        font-size: 11px
    }
    header .logo {
        width: 30%
    }
    .userenter .user-enter,
    .userenter .user-reg {
        padding: 0 12px
    }
    nav .menu ul li {
        padding: 0 5px
    }
    .userenter .user-reg .la-institution {
        margin: 0 8px 0 0
    }
    .search-block {
        padding: 30px 0 30px 0
    }
    .found-block-wrap h2,
    .search-block-wrap h2 {
        font-size: 26px
    }
    .found-block-icon,
    .serach-block-icon {
        width: 50px;
        height: 50px;
        top: 30px
    }
    .found-block-wrap,
    .search-block-wrap {
        background-color: #fff;
        padding: 25px 23px
    }
    .about-wrap .about-item {
        padding: 0 20px
    }
    .about-wrap .about-item:before {
        width: 15px;
        height: 15px;
        top: 5px
    }
    .about {
        padding: 25px 0 30px 0
    }
    .about-title,
    .services-title {
        margin-bottom: 25px
    }
    .services {
        padding: 28px 0 45px 0
    }
    .services-wrap {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center
    }
    .services-item {
        margin: 0 15px 19px 15px
    }
    .useful {
        padding: 30px 0 25px 0
    }
    .useful-tabs {
        width: 70%
    }
    .documents-title,
    .useful-title {
        text-align: center
    }
    .documents-title span,
    .useful-title span {
        padding: 0 35px;
        font-size: 19px
    }
    .documents {
        padding: 10px 0 10px 0
    }
    .found-info-clock {
        width: 25%
    }
    .found-process-text {
        width: 25%
    }
    .found-process-bar {
        width: 74%
    }
    .get-block-text .get-text {
        font-size: 18px
    }
    .found-get-block .get-btn {
        max-width: 280px
    }
    footer .logo {
        -webkit-order: 2;
        -moz-order: 2;
        -ms-order: 2;
        -o-order: 2;
        order: 2;
        margin-top: 15px;
        text-align: center;
        margin: 15px auto 0 auto
    }
    .footer-menu {
        -webkit-order: 1;
        -moz-order: 1;
        -ms-order: 1;
        -o-order: 1;
        order: 1;
        width: 100%;
        margin-left: 0;
        padding: 0 15px
    }
    .auth-descr-text {
        width: 55%
    }
    .auth-descr-av img {
        max-width: 180px
    }
    .footer-menu ul li {
        text-align: center;
        border: none;
        padding: 0
    }
    .mobile-menu ul li {
        background-position-y: 0;
        padding-bottom: 1px;
        min-height: 26px
    }
    .mobile-menu ul li.isp {
        background-position-y: 2px;
        background-position-x: 2px;
        padding-top: 4px
    }
    .mobile-menu ul li.doc {
        background-position-x: 2px
    }
    .mobile-menu ul li.hlp {
        padding-left: 28px !important
    }
    .mobile-menu ul li.pri {
        background-position-x: 2px;
        padding-top: 6px
    }
    .mobile-menu ul li.gbd {
        background-position-x: 3px;
        padding-top: 3px
    }
}

@media(max-width:767px) {
    .show-mobile {
        display: block
    }
    .hide-mobile {
        display: none
    }
    header {
        padding: 20px 0 0 0
    }
    .open-menu {
        font-family: FontAwesome;
        font-size: 24px;
        color: #fff;
        padding: 5px 5px 5px 0;
        box-sizing: border-box;
        border-radius: 3px;
        cursor: pointer
    }
    .open-menu.active {
        color: #0f99b2
    }
    .mobile-menu {
        position: absolute;
        overflow: hidden;
        max-height: 0;
        width: 100%;
        padding: 0;
        z-index: 3;
        transition: all .3s ease
    }
    .mobile-menu.active {
        max-height: 800px;
        padding: 15px 0
    }
    .mobile-menu ul {
        position: relative;
        background-color: #035777;
        width: 100%;
        padding: 15px 15px 15px 7px
    }
    .mobile-menu ul li {
        width: 100%;
        margin: 0 0 20px 0
    }
    .mobile-menu ul li ul {
        padding-bottom: 0
    }
    .mobile-menu ul li ul li:last-child {
        margin-bottom: 0
    }
    .mobile-menu ul li a {
        color: #fff;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 600
    }
    .mobile-menu ul li ul li a {
        font-size: 13px
    }
    header .logo {
        top: 9px
    }
    .location {
        margin-right: 20px
    }
    .location-list {
        left: -118px
    }
    .userenter {
        width: 100%;
        padding-right: 10px;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        -o-justify-content: flex-end;
        justify-content: flex-end
    }
    .userenter .user-enter,
    .userenter .user-enter:hover,
    .userenter .user-reg,
    .userenter .user-reg:hover {
        border: none;
        background: 0 0
    }
    .userenter .user-reg .la-institution {
        display: none
    }
    .search-block-tab form>div {
        width: 48%
    }
    .help-page .search-block-tab form>div {
        width: 100%
    }
    .search-block-tab input[type=text],
    .search-block-tab select {
        width: 100%
    }
    .search-block-tab button[type=submit] {
        max-width: 320px;
        font-size: 16px;
        height: 47px
    }
    .search-block-tab input[type=text],
    .search-block-tab select,
    .search-block-tab textarea {
        margin: 0 auto !important;
        font-size: 14px
    }
    .auth__disc {
        font-size: 16px
    }
    .search-block-tab.active {
        margin-top: 5px
    }
    .about-wrap .about-item {
        width: 50%;
        padding: 0 30px;
        margin-bottom: 15px
    }
    .services-title span,
    .useful-title span {
        font-size: 24px
    }
    .services-item {
        width: 45%
    }
    .useful-tabs-link {
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-top: 5px
    }
    .useful-tabs-link span {
        margin: 0 10px 10px 10px
    }
    .useful-tabs {
        width: 100%;
        padding: 20px 10px 0 10px
    }
    .useful-tab p {
        margin-bottom: 20px
    }
    .useful-tab h4 {
        margin: 20px 0 15px 0
    }
    .documents-tabs-wrap {
        flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -o-justify-content: flex-start;
        justify-content: flex-start
    }
    .documents-tabs-links {
        width: 0;
        max-height: 100px;
        left: -11px;
        border-right: 0;
        overflow: hidden;
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }
    .documents-tabs-links.active {
        width: 90%;
        max-height: 10000px;
        z-index: 3;
        background-color: #fff;
        border-right: 0;
        left: 0
    }
    .documents-tabs {
        width: 0%;
        max-height: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }
    .documents-tabs.active {
        width: 90%;
        margin-left: 8%;
        max-height: 1000000px
    }
    .open-links {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        animation: openlinks 1s infinite
    }
    .open-links.active {
        left: 93%;
        animation: closelinks 1s infinite
    }
    .open-links:after {
        content: '\f181';
        font-family: FontAwesome;
        color: #035777;
        font-size: 32px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        left: -13px
    }
    .open-links.active:after {
        content: '\f182';
        left: 0
    }
    .found-info-text {
        width: 90%
    }
    .found-info-clock {
        display: none
    }
    .found-base-name {
        width: 75%
    }
    .footer-menu ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
        border: none;
        padding: 0
    }
    .footer-menu ul li a {
        font-size: 16px
    }
    .auth-wrap {
        margin-bottom: 15px
    }
    .auth-wrap .auth-left {
        width: 15%
    }
    .auth-wrap .auth-left img {
        width: auto;
        height: auto;
        max-width: 80%
    }
    .auth-wrap .auth-right {
        width: 85%
    }
    .auth-descr-text {
        width: 100%;
        margin-bottom: 20px
    }
    .auth-descr-av {
        text-align: center;
        width: 100%
    }
    .auth-page {
        padding: 35px 0 0 0
    }
    .word-block {
        width: 50%;
        padding-right: 20px
    }
    .alphabet {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center
    }
    .regions-field .form-group {
        width: 45%
    }
}

.found-progress-title {
    display: none
}

@media(max-width:660px) {
    .found-bases {
        display: none
    }
    .found-progress-title {
        display: block;
        text-align: center;
        margin-bottom: 10px
    }
    .fpt {
        display: none
    }
    .fpt.active {
        display: block
    }
    header {
        padding: 0
    }
    header .logo {
        width: 100%;
        margin-bottom: 15px
    }
    header .logo a {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center
    }
    header .logo a img {
        max-width: 170px
    }
    .location-current {
        display: none
    }
    .location {
        margin: 10px 0;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        width: 100%
    }
    .userenter {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        width: 100%;
        padding: 0
    }
    .found-block-wrap h2,
    .search-block-wrap h2 {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-bottom: 15px
    }
    .found-block-icon,
    .serach-block-icon {
        width: 30px;
        height: 30px;
        top: 30px;
        right: 23px;
        display: none
    }
    .found-process-text {
        width: 100%;
        text-align: center;
        margin-bottom: 10px
    }
    .found-process-bar {
        width: 100%
    }
    .found-process {
        margin: 15px 0 15px 0
    }
    .get-block-text,
    .get-button {
        width: 100%;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        margin-bottom: 15px
    }
    .services-item {
        width: 85%
    }
    .search-block-tabs-link span.tl-s {
        width: 50%
    }
    .search-block-tab form>div,
    .search-block-tab.ul form>div {
        width: 100% !important
    }
    select.fines-search-form__input {
        margin-bottom: 5px !important
    }
    .about-wrap .about-item {
        width: 100%;
        margin-left: 20px
    }
    .useful-title {
        margin-bottom: 20px
    }
    .useful-tabs-link span {
        width: 100%;
        margin: 0 0 10px 0
    }
    .useful-tabs-link span.active:after {
        display: none
    }
    .auth-wrap .auth-right {
        padding: 10px 15px
    }
    .auth-wrap .form-title,
    .form-title {
        font-size: 21px !important;
        margin-bottom: 15px !important;
        text-align: center;
        text-transform: uppercase
    }
    .auth-block .form-text {
        line-height: 20px !important;
        font-size: 16px !important;
        margin-bottom: 15px !important
    }
    nav.auth {
        min-height: 44px
    }
    .ep-ui .number-title {
        font-size: 15px !important;
        margin: 10px 0 !important
    }
    .authent-page .form-text {
        line-height: 20px !important;
        font-size: 16px !important;
        margin-bottom: 15px !important
    }
    .auth-form .auth-input {
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0
    }
    .auth-form .auth-submit {
        position: relative;
        margin: 10px auto;
        display: block
    }
    .auth-wrap .auth-right h2 {
        font-size: 32px;
        margin-bottom: 25px
    }
    .auth-wrap .text-after-form {
        text-align: center
    }
    .word-block {
        width: 100%;
        padding-right: 0
    }
    .letter-block p {
        font-size: 18px
    }
    .phone-search .search-block-tab form>div.logic-field>div label,
    .regions-field .form-group {
        width: 100%;
        margin-bottom: 10px
    }
    .phone-search .search-block-tab form>div,
    .phone-search .search-block-tab form>div.half-block,
    .phone-search.pristav-search .search-block-tab form>div {
        width: 100%
    }
    .regions-field .form-group {
        margin-bottom: 10px
    }
    .regions-field .form-group label:nth-child(3):after {
        top: 0
    }
    .regions-field .form-group label.active:nth-child(3):before {
        top: -5px
    }
    .conditions-block-form .form-group.search-block-tab {
        width: 100%
    }
    .conditions-block-form .form-group .search-block-btn {
        text-align: center
    }
    .conditions-block-form .search-block-tab.active {
        margin-top: 0
    }
    .select2-container .select2-selection--single .select2-selection__rendered {
        padding: 0 !important;
        font-size: 14px
    }
    .pagination-list {
        display: block !important;
        text-align: center;
        margin: 20px 0 10px
    }
    .pagination-list li {
        display: inline-block;
        padding: 5px 0
    }
}

.form-group {
    margin-bottom: 10px !important
}

.help-block {
    margin-top: 5px !important;
    margin-bottom: 5px !important
}

@media(max-width:480px) {
    .documents-tab-item {
        padding: 16px 25px 55px 35px
    }
    .documents-tab-item:before {
        width: 16px;
        height: 18px;
        left: 9px
    }
    .documents-tab-item .documents-tab-item-date {
        position: relative;
        top: 0;
        margin-top: 7px;
        left: 0
    }
    .search-block-tabs-link span.tl-s {
        width: 100%;
        padding: 10px 0
    }
    .useful-tabs-link span {
        font-size: 16px
    }
    .auth-wrap .auth-left {
        display: none
    }
    .auth-wrap .auth-right {
        width: 100%
    }
    .auth-wrap .auth-right h2 {
        text-align: center
    }
    .auth-wrap .form-title {
        font-size: 18px;
        text-align: center
    }
    .location-list.active {
        max-height: 200px;
        z-index: 99
    }
    .search-block-tab form div.no-payment-msg {
        width: 100%
    }
}

.footer_text {
    width: 100%;
    color: #f5e7e7;
    font-size: 13px;
    line-height: 1.2;
    padding: 0 2px;
    text-align: right
}

.pagination-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center
}

.pagination-list li {
    margin: 0 10px
}

.selected_nav {
    color: #909090
}

.checkbox-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: text-bottom;
    margin-right: 5px
}

.checkbox-wrapper .checkbox {
    margin: 0
}

.checkbox-wrapper input {
    cursor: pointer;
    height: 20px;
    margin: 0;
    opacity: 0;
    position: absolute;
    width: 20px;
    z-index: 2
}

.checkbox-wrapper input:active+.checkbox:before {
    height: 50px;
    width: 50px
}

.checkbox-wrapper input:checked+.checkbox {
    border: 2px solid #00994f
}

.checkbox-wrapper input:checked+.checkbox:before {
    animation: pulse 1s cubic-bezier(.15, .8, .5, 1)
}

.checkbox-wrapper input:checked+.checkbox:after {
    height: 20px;
    opacity: 1;
    width: 20px
}

.checkbox-wrapper .checkbox {
    border: 2px solid #000;
    border-radius: 2px;
    height: 16px;
    position: relative;
    transition: all .5s;
    width: 16px
}

.checkbox-wrapper .checkbox:after,
.checkbox-wrapper .checkbox:before {
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all .5s
}

.checkbox-wrapper .checkbox:before {
    background-color: rgba(41, 182, 246, 0);
    border-radius: 50%;
    height: 5px;
    width: 5px;
    z-index: -1
}

.checkbox-wrapper .checkbox:after {
    background-color: #00994f;
    border-radius: 2px;
    height: 5px;
    opacity: 0;
    width: 5px
}

.checkbox-wrapper .checkbox i {
    color: #fff;
    height: 18px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 18px;
    z-index: 2
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #00994f
    }
    100% {
        box-shadow: 0 0 0 25px rgba(41, 182, 246, 0)
    }
}

.advanced_search {
    margin-top: 25px
}

#advanced_search_s {
    cursor: pointer;
    margin-top: 12px;
    display: block
}

.rules_description {
    font-size: 11px;
    line-height: 12px
}

.pad20tb {
    line-height: 20px
}

.authent_q {
    text-align: center
}

.subscribe_query {
    cursor: pointer
}

@media (max-width:660px) {
    .debts-btn .get-btn,
    .found-get-block .get-btn {
        font-size: 18px;
        height: 59px;
        line-height: 56px
    }
    .get-icons {
        width: 44px;
        height: 43px
    }
    .get-block-text .get-text {
        font-size: 14px
    }
    .get-block-text .get-text span {
        font-size: 23px
    }
    .found-get-block {
        margin-top: 10px
    }
    header {
        padding: 0;
        position: relative
    }
    header .container {
        flex-wrap: nowrap
    }
    header .logo {
        width: auto;
        min-width: auto;
        margin-bottom: 15px
    }
    header .logo a {
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }
    header .logo a img {
        width: 200px;
        transform: translateY(-3px) translateX(-3px)
    }
    .location-text {
        max-width: 180px
    }
    .location {
        margin: 10px 0;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        width: 100%
    }
    .location-selected {
        min-height: 40px;
        text-align: right
    }
    .location-selected:after {
        position: absolute;
        right: 0
    }
    .open-menu {
        position: relative;
        left: -2px
    }
    .location-selected.block-fl span {
        padding-right: 18px;
        font-size: 11px;
        font-weight: 200
    }
    .userenter {
        top: 66px;
        right: -12px;
        width: auto;
        position: absolute;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        padding: 0;
        z-index: 11
    }
    .userenter .user-enter,
    .userenter .user-reg {
        padding: 0 8px 0 0
    }
    .search-block {
        min-height: auto
    }
    footer .logo img {
        right: 0;
        position: relative
    }
    .auth-page {
        padding: 10px 0 0 0;
        flex: 1 0 auto
    }
    .search-block {
        flex: 1 0 auto
    }
    footer {
        flex: 0 0 auto
    }
    header {
        flex: 0 0 auto
    }
    body {
        display: flex;
        flex-direction: column;
        height: 100%
    }
    .auth-description {
        display: none
    }
    .ep-ui input[type=submit].form-button {
        margin: 20px 0 0 0 !important
    }
    .search-block-tab .ep-ui form>div {
        width: 100%
    }
    .ep-ui .input-phone-frame .input-wrap input {
        width: 100% !important;
        height: 36px;
        line-height: 19px
    }
    .ep-ui input[type=submit].form-button {
        margin: 20px auto 0 auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        height: 37px !important
    }
    .authent-page .search-block-tab button[type=submit] {
        max-width: 100% !important
    }
    .authent-page .search-block-tab input[type=text] {
        margin: 0 !important;
        max-width: 100% !important
    }
    nav {
        padding: 5px 0 5px 0
    }
    .search-block-tabs-link span.tl-s {
        margin-bottom: 5px
    }
    .found-block-wrap,
    .search-block-wrap {
        padding: 10px 15px
    }
    .container {
        max-width: 95%
    }
    .search-block {
        padding: 10px 0 10px 0
    }
    .advanced_search {
        margin-top: 10px
    }
    .search-block-tab.active {
        margin-top: 0
    }
    .mobile-menu.active {
        padding: 0
    }
    .mobile-menu ul li:last-child {
        margin: 0
    }
    .mobile-menu ul {
        padding: 15px 15px 15px 9px
    }
    .search-block-tabs-link span.tl-s {
        border-right: 0
    }
    .footer-menu ul li {
        margin: 5px 0
    }
    .footer-menu ul li a {
        font-size: 13px
    }
    .fines-actions-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px !important
    }
    .fines-actions-item:last-child {
        margin-bottom: 0 !important
    }
    .field-bailiffsdepartmentlist-name_of_the_territorial_agency,
    .field-dataexecutiveproceedings-ip_number,
    .field-dataexecutiveproceedings-lastname,
    .field-help-email,
    .ul .field-dataexecutiveproceedings-firstname {
        margin-top: 7px;
        margin-bottom: 5px !important
    }
    .phone-search .search-block-tab form>div.logic-field>div label {
        padding-left: 21px
    }
    .field-bailiffsdepartmentlist-chiefs_full_name,
    .field-bailiffsdepartmentlist-name_of_the_territorial_agency,
    .field-bailiffsdepartmentlist-postal_address,
    .field-bailiffsdepartmentlist-telephone_number,
    .field-dataexecutiveproceedings-address,
    .field-dataexecutiveproceedings-firstname,
    .field-dataexecutiveproceedings-region,
    .field-dataexecutiveproceedings-region2,
    .field-dataexecutiveproceedings-secondname,
    .field-datepicker,
    .field-help-email,
    .field-help-message,
    .field-help-phone,
    .field-help-title,
    .reg-select {
        margin-bottom: 5px !important
    }
    .field-bailiffsdepartmentlist-territory_of_service,
    .field-dataexecutiveproceedings-ip_number {
        margin-bottom: 12px !important
    }
    .field-bailiffsdepartmentlist-chiefs_full_name label,
    .field-bailiffsdepartmentlist-name_of_the_territorial_agency label,
    .field-bailiffsdepartmentlist-postal_address label,
    .field-bailiffsdepartmentlist-telephone_number label,
    .field-bailiffsdepartmentlist-territory_of_service label,
    .field-dataexecutiveproceedings-address label,
    .field-dataexecutiveproceedings-firstname label,
    .field-dataexecutiveproceedings-ip_number label,
    .field-dataexecutiveproceedings-lastname label,
    .field-dataexecutiveproceedings-region label,
    .field-dataexecutiveproceedings-secondname label,
    .field-datepicker label,
    .field-help-email label,
    .field-help-message label,
    .field-help-phone label,
    .field-help-recaptcha label,
    .field-help-title label,
    .reg-select label {
        display: none
    }
    .search-block-tab input[type=text],
    .search-block-tab select,
    .search-block-tab textarea {
        height: 36px;
        line-height: 19px
    }
    .search-block-tab button[type=submit] {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        height: 37px
    }
    .search-block-btn {
        margin-top: 0 !important;
        margin-bottom: 2px
    }
    .userenter .user-enter,
    .userenter .user-reg {
        font-size: 14px
    }
    .search-phone-more {
        margin: 0 0 16px 0;
        display: block;
        font-size: 14px
    }
    .pristav-search .search-phone-more {
        margin: 16px 0 16px 0
    }
    .phone-search .search-block-tab .search-block-btn button[type=submit] {
        max-width: 100%
    }
    .la-map-marker:before {
        display: none
    }
    .footer_text {
        padding: 0 20px;
        text-align: center
    }
    .select2-results__option {
        font-size: 14px
    }
}

@media (max-width:375px) {
    header .logo {
        width: auto;
        min-width: auto
    }
    header .logo a img {
        width: 175px
    }
    .location .la-map-marker {
        display: none
    }
    .userenter {
        top: 67px;
        right: -7px
    }
}

@media (max-width:350px) {
    header .logo a img {
        max-width: 125px
    }
    .location-text {
        max-width: 170px
    }
}

.fines-desciption {
    width: 100%;
    padding: 45px 10px 0 0;
    background: #f3f6f7
}

.page {
    max-width: 1000px;
    margin: auto;
    padding: 0 7px
}

.fines-desciption__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.fines-desciption__text {
    width: 468px;
    padding-top: 15px;
    padding-bottom: 30px
}

.fines-desciption__title {
    color: #0d2b47;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 30px;
    font-weight: 600
}

.fines-desciption__text p {
    margin-top: 40px;
    font-size: 14px;
    line-height: 19px;
    color: #333
}

.fines-desciption__img {
    width: 300px;
    height: 442px;
    background-image: url(../images/phone.svg);
    background-size: contain;
    margin-left: 120px;
    background-repeat: no-repeat
}

.fines-items {
    padding-top: 48px;
    padding-bottom: 50px
}

@media screen and (max-width:1000px) {
    .fines-desciption__title {
        text-align: center
    }
}

.fines-items__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:1000px) {
    .fines-items__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 510px;
        width: 100%;
        margin: 0 auto
    }
}

@media screen and (max-width:540px) {
    .fines-items__content {
        width: 245px
    }
}

.fines-items__item {
    width: 245px;
    height: 320px;
    padding: 17px 17px 40px;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: relative
}

@media screen and (max-width:1000px) {
    .fines-items__item {
        margin-bottom: 20px
    }
}

.auth-wrap .form-title,
.form-title {
    font-size: 30px !important;
    margin-bottom: 15px !important
}

.form-text {
    font-size: 16px !important
}

#w0 .search-block-btn {
    margin-top: 20px !important
}

.fines-items__item:not(:last-child) {
    margin-right: 20px
}

@media screen and (max-width:540px) {
    .fines-items__item:not(:last-child) {
        margin-right: 0
    }
}

@media screen and (max-width:1000px) {
    .fines-items__item:nth-child(2n) {
        margin-right: 0
    }
}

.fines-items__item--fssp .fines-items__icon {
    background-image: url(../images/fssp-logo.svg)
}

.fines-items__item--gbdd .fines-items__icon {
    background-image: url(../images/gibdd-logo.svg);
    background-size: 91px
}

.fines-items__item--duty .fines-items__icon {
    background-image: url(../images/duty-logo.svg);
    background-size: 91px
}

.fines-items__item--rua .fines-items__icon {
    background-image: url(../images/rua-logo.svg);
    background-size: 145px
}

.fines-items__icon {
    height: 105px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%
}

.fines-items__title {
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    margin-top: 10px;
    height: 50px
}

.fines-items__desciption {
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: grey;
    margin-top: 20px
}

.fines-items__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 25px;
    margin: 20px auto 0;
    color: #0f99b2;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #0f99b2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px
}

.fines-items__button--soon {
    background: #e8eeef;
    border: 1px solid #e8eeef;
    cursor: default
}

.fines-items__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 25px;
    background: #1cbcd5;
    color: #fff;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0
}

.fines-search {
    margin-top: 30px
}

.fines-search__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.auth-in .number-title {
    font-size: 16px !important;
    line-height: 19px !important;
    color: #1cbcd5;
    display: block !important;
    margin-bottom: 10px !important;
    max-width: 300px;
    font-weight: 500 !important;
    margin-top: 0 !important
}

.auth-in .number-example {
    font-size: 12px !important;
    font-style: italic;
    color: #4f4f4f;
    opacity: .5 !important
}

.auth-in .form-button {
    background: #00994f;
    -webkit-box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    cursor: pointer
}

.auth-in .form-button:hover {
    opacity: .8
}

@media screen and (max-width:750px) {
    .fines-search__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.has-success .form-control {
    border-color: #e0e0e0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 3px !important
}

#dataexecutiveproceedings-number {
    height: 50px !important;
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    padding: 7px 16px 10px 16px
}

.inplacehol::-webkit-input-placeholder {
    color: #9d9d9d;
    font-size: 28px
}

.inplacehol::-moz-placeholder {
    color: #9d9d9d;
    font-size: 28px
}

.inplacehol:-ms-input-placeholder,
.inplacehol::-ms-input-placeholder {
    color: #9d9d9d;
    font-size: 28px
}

.inplacehol::placeholder {
    color: #9d9d9d;
    font-size: 28px
}

.inplacehol:focus::placeholder {
    color: transparent
}

.fines-search__form {
    -ms-flex-preferred-size: 600px;
    flex-basis: 600px;
    background: #fff
}

@media screen and (max-width:750px) {
    #dataexecutiveproceedings-number {
        height: 50px !important;
        text-align: center;
        font-weight: 600;
        font-size: 28px;
        padding: 11px 16px 10px 16px
    }
    .inplacehol::placeholder {
        line-height: 125%
    }
    .fines-search__form {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .auth-in .fines-search__form {
        -ms-flex-preferred-size: 275px;
        flex-basis: 275px
    }
    .auth-in input {
        height: 41px !important
    }
    .auth-in #ep-pay-phone-interface .form-text {
        font-size: 12px !important;
        line-height: 16px
    }
    .auth-in .ep-ui input[type=submit].form-button {
        height: 41px !important
    }
}

.fines-search-form {
    padding: 40px 25px 40px 50px;
    background: #fff;
    width: 100%;
    max-width: 610px
}

.number-example {
    font-size: .8rem;
    opacity: .8;
    margin-top: 15px
}

.ep-form input[type=submit].form-button {
    margin: 25px 0 10px
}

@media screen and (max-width:750px) {
    .fines-search-form {
        padding: 40px 25px
    }
}

.fines-search-form__title {
    color: #0d2b47;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600
}

.fines-search-form__disc {
    color: #026789;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 8px
}

.fines-search-form__result-disc {
    font-size: 14px;
    line-height: 19px;
    color: #1cbcd5;
    margin-bottom: 10px
}

.fines-search-form__result-example {
    font-size: 12px;
    font-style: italic;
    color: #4f4f4f;
    opacity: .5
}

.fines-search-form__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:970px) {
    .fines-search-form__content {
        display: block
    }
}

.fines-search-form form {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 300px;
    margin-top: 16px
}

@media screen and (max-width:970px) {
    .fines-search-form form {
        width: auto
    }
}

.fines-search-form--company form {
    margin-bottom: 30px
}

.fines-search-form__input {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
    border-radius: 3px
}

input.fines-search-form__input:focus {
    border-bottom: 2px solid #00994f
}

select.fines-search-form__input {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIG9wYWNpdHk9Ii41IiBkPSJNMSAxTDQgNEw3IDEiIHN0cm9rZT0iIzAwMCIvPjwvc3ZnPg==);
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) 50%;
    border-radius: 0
}

.fines-search-form__btn {
    width: 100%;
    height: 50px;
    margin-top: 12px
}

.fines-search-form__info {
    margin-left: 32px
}

.auth-form-ico {
    position: absolute;
    right: 24px;
    top: 120px;
    margin-left: 0
}

.input-container {
    border-radius: 3px
}

@media screen and (max-width:970px) {
    .fines-search-form__info {
        margin-left: 0
    }
}

.fines-search-form__img {
    width: 165px;
    height: 180px
}

@media screen and (max-width:970px) {
    .fines-search-form__img {
        display: none
    }
}

.auth-form .form-number .form-title {
    font-size: 26px !important;
    color: #00994f
}

.auth-form .form-number .form-text {
    font-size: 22px !important;
    line-height: 22px;
    color: #0d2b47;
    font-weight: 700;
    margin-bottom: 10px
}

.fines-search-form .auth-form form {
    margin-top: 0;
    width: 100%
}

.auth-form .ep-form input[type=submit].form-button {
    margin: 16px 0 10px
}

@media screen and (max-width:480px) {
    .auth-wrap .form-title {
        font-size: 21px !important
    }
    .auth-form .form-number .form-title {
        font-size: 21px !important
    }
    #ep-pay-phone-interface .form-text {
        font-size: 14px !important
    }
    .auth-form.search-block-tab button[type=submit],
    .auth-form.search-block-tab input[type=text] {
        max-width: 100% !important;
        width: 100% !important
    }
    .ep-ui input[type=submit].form-button {
        margin: 5px auto 0 auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 18px !important;
        height: 47px !important
    }
    #ep-pay-phone-interface .form-loader {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding-top: 9px
    }
    #ep-pay-phone-interface .form-errors {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding-top: 16px
    }
}

.fines-search-form__img--human {
    background-image: url(../images/fines-search.svg)
}

.fines-search-form__img--company {
    background-image: url(../images/fines-search2.svg)
}

.fines-search-form__img--car {
    background-image: url(../images/fines-search3.svg)
}

.fines-search-form__img--result {
    background-image: url(../images/fines-search4.svg)
}

.fines-search-form__img--car {
    background-image: url(../images/fines-search3.png);
    background-repeat: no-repeat;
    background-position: center
}

.fines-search-form__text {
    margin-top: 15px;
    padding-left: 15px;
    font-size: 12px;
    line-height: 16px;
    position: relative
}

.fines-search-form__text a {
    color: #1cbcd5;
    text-decoration: none
}

.fines-search-form__text:before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(../images/icon-i.svg);
    position: absolute;
    top: 2px;
    left: 0
}

.fines-search__info {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    background: #f3f7f7;
    padding: 50px 30px 35px
}

@media screen and (max-width:750px) {
    .fines-search__info {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .location-select {
        display: none
    }
    .fines-search-info__mobile {
        background-size: contain
    }
    .fines-desciption__img {
        display: none
    }
    .fines-desciption {
        padding: 10px 10px 30px 10px
    }
    .fines-search-form {
        padding: 10px 15px
    }
    .fines-search-form__title {
        font-size: 18px;
        width: 100%;
        text-align: left;
        margin-bottom: 15px;
        font-weight: 700;
        line-height: 21px
    }
    div.fines-search-form__content.fl .fines-search-form__input {
        font-size: 14px
    }
    .field-dataexecutiveproceedings-firstname .help-block {
        display: none
    }
    .fines-search-form__content .fines-button {
        height: auto
    }
}

.fines-search-info--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.fines-search-info__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.fines-search-info__item:not(:last-child) {
    margin-bottom: 30px
}

.fines-search-info__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background-color: #eaeded;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    margin-right: 10px
}

.fines-search-info__icon--auth {
    background-color: #e1e6e6
}

.fines-search-info__icon--envelope {
    background-image: url(../images/icon-envelope.svg)
}

.fines-search-info__icon--gear {
    background-image: url(../images/icon-gear.svg)
}

.fines-search-info__icon--money {
    background-image: url(../images/icon-money.svg)
}

.fines-search-info__icon--lightning {
    background-image: url(../images/icon-lightning.svg)
}

.fines-search-info__text {
    width: 100%
}

.fines-search-info__title {
    color: #026789;
    font-size: 14px;
    line-height: 19px;
    font-weight: 600
}

.fines-search-info__desciption {
    font-size: 12px;
    line-height: 16px
}

.fines-search-info__mobile {
    height: 23px;
    margin-top: 10px;
    background-image: url(../images/mobile-logos.svg);
    background-repeat: no-repeat
}

.footer-search__info {
    background: #f3f7f7;
    padding: 50px 30px 35px
}

.footer-search__info--auth {
    background: #e8eeef
}

.footer-search__info .fines-search-info__item:not(:last-child) {
    margin-right: 26px
}

.footer-search__info .fines-search-info__item .fines-search-info__title {
    height: 30px;
    margin-bottom: 20px
}

.fines-search-form__content .control-label {
    display: none
}

.fines-search-form__content .form-group {
    width: 100%
}

.fines-search-form__btn {
    width: 100%;
    height: 50px;
    margin-top: 12px
}

.green-btn {
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    background: #00994f;
    -webkit-box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    cursor: pointer
}

.green-btn:hover {
    opacity: .8
}

.form-number .form-text,
.form-number .form-title,
.form-number .number-title {
    display: none
}

.landing-content-step-two {
    padding: 40px 25px 40px 50px
}

.landing-content-step-two .form-number .form-text {
    font-size: 22px !important;
    line-height: 22px;
    color: #0d2b47;
    font-weight: 700;
    margin-bottom: 10px
}

.landing-content-step-two .form-button {
    background: #00994f;
    -webkit-box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    cursor: pointer
}

.landing-content-step-two .number-example {
    font-size: 12px !important;
    font-style: italic;
    color: #4f4f4f;
    opacity: .5 !important
}

.landing-content-step-two input[type=text] {
    width: 100%;
    max-width: 320px;
    height: 40px;
    font-size: 18px;
    font-weight: 300;
    padding: 0 19px;
    border: 1px #dee6e7 solid !important;
    box-shadow: none !important
}

.landing-content-step-two .number-title {
    font-size: 16px !important;
    line-height: 19px !important;
    color: #1cbcd5;
    display: block !important;
    margin-bottom: 10px !important;
    max-width: 300px;
    font-weight: 500 !important;
    margin-top: 0 !important
}

.landing-content-step-two .form-number .form-text,
.landing-content-step-two .form-number .form-title,
.landing-content-step-two .form-number .number-title {
    display: block
}

.form-number .form-text {
    text-transform: none
}

div.fines-search-form__content.fl .block-fl {
    margin-top: 16px
}

div.fines-search-form__content.fl .block-fl .form-button {
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    background: #00994f;
    -webkit-box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    cursor: pointer;
    width: 100%;
    max-width: 100%
}

div.fines-search-form__content.fl .block-fl .form-button:hover {
    opacity: .8
}

div.fines-search-form__content.fl form {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    margin-top: 0
}

div.fines-search-form__content.fl form #reg_phone {
    width: 100%;
    height: 40px;
    padding: 0 16px 0 16px;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
    border-radius: 3px
}

div.fines-search-form__content.fl .input-phone-frame {
    width: 100%
}

div.fines-search-form__content.fl .country-flag-wrap {
    display: none
}

div.fines-search-form__content.fl .fines-search-form__input {
    position: relative;
    font-size: inherit
}

.fines-search-form__input::-webkit-input-placeholder {
    color: #263238
}

.fines-search-form__input::-moz-placeholder {
    color: #263238
}

.fines-search-form__input:-ms-input-placeholder,
.fines-search-form__input::-ms-input-placeholder {
    color: #263238
}

.fines-search-form__input::placeholder {
    color: #263238
}

div.fines-search-form__content.fl .form-group.validate {
    position: relative
}

div.fines-search-form__content.fl .form-group.validate:after {
    background-image: url(../img/succes.png);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    content: "";
    z-index: 2;
    display: block;
    background-size: contain
}

.w300 {
    width: 300px
}

.my {
    width: 35%
}

.day {
    width: 27%
}

.fines-search-form__disc {
    width: 100%
}

.w300 .day,
.w300 .my {
    margin-bottom: 15px;
    border-radius: 3px
}

#dataexecutiveproceedings-region,
.has-success .form-control:focus {
    box-shadow: none;
    border-radius: 3px
}

#dataexecutiveproceedings-region:focus,
.has-success .form-control:focus {
    border: 1px solid #e0e0e0
}

@media screen and (max-width:750px) {
    .landing-content-step-two {
        padding: 10px 15px
    }
    .landing-content-step-two #ep-pay-phone-interface .form-text {
        font-size: 12px !important;
        line-height: 16px
    }
    .landing-content-step-two input[type=text] {
        max-width: 100%
    }
    .landing-content-step-two .input-phone-frame {
        width: 100%
    }
    .landing-content-step-two .form-number .form-title {
        font-size: 21px !important
    }
    .w300 {
        width: 100%
    }
}

.danger {
    color: red
}

.display-none {
    display: none
}

.landing-content-step-two .form-button {
    width: 100%;
    max-width: 252px;
    height: 50px;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    margin: 25px 0 10px
}

.agree-block {
    margin-top: 15px
}

.agree-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.checkbox-wrap {
    width: 12px;
    min-width: 12px;
    height: 12px;
    position: relative;
    margin-right: 5px;
    margin-top: 4px
}

.checkbox-wrap input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0
}

.checkbox-wrap input:checked~.checkbox-mask {
    background: #00994f;
    border-color: #00994f
}

.checkbox-wrap input:checked~.checkbox-mask img {
    opacity: 1
}

.checkbox-mask img {
    max-width: 8px
}

.checkbox-mask {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #eee;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.checkbox-mask img {
    opacity: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.agree-block label {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #878787;
    max-width: 435px;
    display: inline-block;
    cursor: pointer
}

.agree-block label a {
    text-decoration: underline;
    color: #878787
}

.agree-block label a:hover {
    text-decoration: none
}

.payment-method {
    padding: 0
}

.payment-method__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.payment-method__left {
    margin-right: 17px;
    width: 100%;
    max-width: 903px
}

.payment-method .title {
    font-size: 22px;
    line-height: 46px;
    color: #000;
    margin-bottom: 26px
}

.payment-method>img {
    width: 100%;
    max-width: 302px
}

.payment-method__text {
    font-size: 14px;
    line-height: 24px;
    color: #1f2429
}

.payment-method__text p {
    margin-bottom: 25px
}

.payment-method__text a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #333
}

.payment-method__text-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px
}

.payment-method__text-img img {
    margin-right: 27px
}

.payment-method__text-img span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #12a06d
}

.pay {
    padding: 20px 0 10px
}

.payments__row {
    margin-bottom: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.payments__item {
    width: 100%;
    margin-bottom: 50px
}

.payments__item:nth-child(odd) {
    width: 100%
}

.payments__item:nth-child(2n) {
    width: 100%
}

.payments__title {
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 21px;
    color: #333
}

.payments__title img {
    margin-right: 15px
}

.payments__text {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 24px;
    color: #333
}

.payments__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.payments__img img {
    margin-right: 20px;
    -webkit-filter: drop-shadow(0 4px 10px #0f3673);
    filter: drop-shadow(0 4px 10px #0f3673)
}

.payments__img-title {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #333
}

.in-works {
    padding: 63px 0 77px
}

.in-works__content {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px
}

.in-works__content,
.in-works__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.in-works__item {
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 42px;
    padding: 0 15px
}

.in-works__item>img {
    margin-right: 15px
}

.in-works__img {
    margin-left: 109px
}

.in-works__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #333
}

.in-works__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #575757
}

.footer {
    background-image: url(../images/footer_bg.png);
    background-size: contain;
    color: #fff
}

.footer__top {
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.footer__col {
    max-width: 305px
}

.footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 90px
}

.footer__col ul,
.footer__col ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal
}

.footer__col ul li {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px
}

.footer__col ul li a {
    text-decoration: none
}

.footer__col ul li a,
.footer__col._phone span {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -.04em;
    color: #fff
}

.footer__col._phone span {
    display: block;
    font-weight: 300;
    text-align: right
}

.footer__col._phone b,
.footer__col._phone strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    text-align: right;
    color: #fff
}

.footer__col._phone p {
    font-size: 14px;
    line-height: 30px;
    text-align: right;
    color: #fff
}

.footer__bottom {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    padding: 50px 0 10px 0
}

.logo-footer,
.logo-footer img {
    max-width: 170px
}

.w348 {
    max-width: 282px;
    width: 100%
}

@media screen and (max-width:1024px) {
    .form {
        max-width: 355px
    }
    .footer__col {
        min-width: 0
    }
    .footer__col ul {
        height: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .footer__col ul li {
        margin: 0
    }
    .footer__col ul li a {
        line-height: 20px
    }
}

@media screen and (max-width:940px) {
    .in-works__item {
        width: 100%
    }
    .payments__item:nth-child(2n),
    .payments__item:nth-child(odd) {
        width: 100%;
        margin-right: 0;
        padding: 0
    }
    .footer .logo-footer {
        margin-bottom: 20px
    }
    .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .footer__col {
        width: auto;
        min-width: 370px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .footer__col ul {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-direction: row
    }
    .footer__col ul li {
        margin: 0 10px
    }
    .footer__col ul li a {
        line-height: 30px
    }
    .footer__col._phone {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-direction: row
    }
    .footer__col._phone span {
        margin: 0 15px
    }
}

@media screen and (max-width:768px) {
    .in-works {
        padding: 6px 0
    }
    .in-works__content {
        width: 100%;
        max-width: 290px;
        margin: 0 auto
    }
    .in-works__item {
        margin-bottom: 25px;
        padding: 0
    }
    .in-works__item>img {
        width: 40px;
        height: 40px;
        margin-right: 6px
    }
    .in-works__title {
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        line-height: 14px
    }
    .in-works__text p {
        font-size: 12px;
        line-height: 16px;
        margin-left: -46px
    }
    .in-works__img {
        display: none
    }
    .footer__top {
        width: 290px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 15px auto
    }
    
    .footer .logo-footer {
        margin-bottom: 14px
    }
    .footer .logo-footer img {
        width: 106px;
        height: auto
    }
    .footer__col {
        min-width: 0;
        width: auto
    }
    .footer__col ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        align-items: center;
    }
    .footer__col ul li {
        margin: 0
    }
    .footer__col ul li a {
        font-size: 10px;
        line-height: 20px
    }
    .footer__col._phone {
        margin-right: -15px;
        margin-left: -15px;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-top: 16px
    }
    .footer__col._phone,
    .footer__col._phone span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-wrap: wrap;
    	flex-direction: column;
    }
    .footer__col._phone p {
	    font-size: 11px;
	    line-height: 20px;
	    text-align: center;
	}
    .footer__col._phone span {
        text-align: left;
        font-size: 10px;
        line-height: 16px;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px
    }
    .footer__col._phone span b {
        text-align: left;
        display: block;
        font-size: 10px;
        line-height: 16px
    }
    .footer__bottom {
        font-size: 10px;
        line-height: 16px;
        padding: 20px 0;
        text-align: center;
    }
    .payment-method {
        padding: 0
    }
    .payment-method__content>img {
        display: none
    }
    .payment-method__left {
        margin: 0 auto;
        width: 290px
    }
    .payment-method .title {
        font-size: 22px;
        line-height: 25px
    }
    .payment-method__text {
        margin-bottom: 20px
    }
    .payment-method__text,
    .payment-method__text a {
        font-size: 12px;
        line-height: 16px
    }
    .payment-method__text-img {
        margin-bottom: 24px
    }
    .payment-method__text-img span {
        font-size: 12px;
        line-height: 16px
    }
    .payment-method__text-img img {
        width: 32px;
        height: auto;
        margin-right: 10px
    }
    .pay {
        padding: 22px 0
    }
    .payments__row {
        width: 290px;
        margin: 0 auto
    }
    .payments__title {
        font-weight: 500;
        font-size: 14px;
        line-height: 14px
    }
    .payments__title img {
        max-width: 30px;
        max-height: 30px;
        margin-right: 8px
    }
    .payments__item {
        margin-bottom: 25px
    }
    .payments__text {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0
    }
    .payments__img {
        margin-top: 5px
    }
    .payments__img-title {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 0
    }
    .payments__img-item {
        margin-right: 10px
    }
    .payments__img-item img {
        max-width: 60px;
        margin-right: 0
    }
}

.auth-wrap .form-title,
.form-title {
    color: #00994f;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 45px
}

.auth-wrap .form-title-ps,
.auth-wrap .form-title-sms {
    color: #00994f;
    font-size: 24px;
    font-weight: 700
}

.form-text {
    font-size: 21px;
    color: #02394e;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px
}

.auth-block .form-text {
    line-height: 25px
}

.form-input {
    font-size: 18px;
    font-weight: 300;
    padding: 0 19px;
    width: 90%;
    max-width: 320px;
    height: 50px;
    border: 1px #dee6e7 solid !important;
    box-shadow: none !important
}

.form-input:focus {
    border-bottom: 2px #00994f solid !important
}

.form-submit {
    width: 90%;
    max-width: 320px;
    height: 70px;
    margin: 30px auto 0 auto;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.form-submit:hover {
    background-color: #035777
}

.form-errors {
    color: red
}

.button-off {
    opacity: .6
}

.form1-example {
    margin: 5px 0 10px;
    color: #565656;
    font-size: 12px;
    font-family: tahoma
}

.form1-rules {
    font-size: 12px;
    height: 240px;
    overflow: auto;
    padding: 3px;
    background-color: #fff
}

.form1-accept {
    font-size: 11px;
    margin-bottom: 10px
}

.form1-accept.reg-label {
    width: 100% !important
}

.form1-accept a {
    text-decoration: none
}

.form1-2 .form1-example {
    color: #999;
    font-size: 12px;
    padding: 5px 0 0;
    clear: both
}

.form1-2 .form-input {
    float: left
}

.form1-2 .form-submit {
    float: left;
    margin: 0 0 0 10px
}

.form1-input-title {
    font-weight: 400;
    color: #333;
    font-size: 14px;
    margin: 0 0 5px
}

.form2 .form-input {
    width: 120px
}

.form2-info,
.form2-info-adv {
    font-size: 14px;
    color: #333
}

.form2-info strong,
.form2-info-adv strong {
    font-size: 16px;
    color: #5da631;
    font-weight: 700
}

.form2-code-title,
.form2-country-title {
    float: left;
    width: 150px;
    font-size: 14px;
    color: #333
}

.form2 .form-input,
.form2-country {
    float: left
}

.form2-code-title {
    padding-top: 10px
}

.form2-code-block,
.form2-country-block {
    margin: 15px 0
}

.form2-code-block:after,
.form2-country-block:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
    min-height: 1%
}

* html .form2-code-block,
* html .form2-country-block {
    height: 1%;
    overflow: visible
}

.form3-number {
    color: #333;
    font-size: 14px;
    margin-bottom: 10px
}

.form3-number strong {
    font-weight: 700;
    color: #3c8c1f;
    font-size: 16px
}

.form3-accept {
    margin-top: 15px
}

.authent-page .search-block-tab form>div.search-block-btn {
    text-align: inherit
}

.authent-page .search-block-tab.active {
    margin-top: 0
}

.authent-page .form-input {
    font-size: 18px;
    font-weight: 300;
    padding: 0 19px;
    width: 90%;
    max-width: 320px;
    height: 50px;
    border: 1px #dee6e7 solid !important;
    box-shadow: none !important
}

.authent-page .form-input:focus {
    border-bottom: 2px #00994f solid !important
}

.authent-page .search-block-tab input[type=text] {
    margin: 0;
    max-width: 320px
}

.authent-page .search-block-tab form>div {
    width: 100%
}

.authent-page .search-block-tab button[type=submit] {
    max-width: 320px
}

.authent-page .search-block-tab.control-block-tab.active {
    margin-top: 10px
}

.search-block-tab.control-block-tab button[type=submit] {
    margin: 0
}

.unsubscribe-msg {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 50%
}

.auth-message {
    margin-top: 5px
}

@media(max-width:480px) {
    .auth-form.form1 .form1-accept label {
        margin-left: 10px
    }
}

.wrapper {
    box-sizing: border-box;
    max-width: 1600px;
    min-width: 280px;
    min-height: 100%;
    margin: 0 auto;
    padding: 25px 30px 0;
    background: #fff;
    color: #333
}

.margin-bottom16 {
    margin-bottom: 16px !important
}

.margin-bottom24 {
    margin-bottom: 24px !important
}

.margin-bottom32 {
    margin-bottom: 32px !important
}

.margin-bottom48 {
    margin-bottom: 48px !important
}

.underline {
    border-bottom: 1px solid #d6dade
}

.background-white {
    background: #fff
}

.fines-reg-num .input-container {
    padding-right: 12px
}

.fines {
    width: 1000px;
    max-width: 1000px;
    padding: 0;
    margin-right: auto;
    margin-left: auto
}

.fines-ul {
    vertical-align: top;
    list-style: none;
    padding: 0;
    width: 100%;
    margin-bottom: 17px;
    margin-top: 0
}

.fines-ul li {
    width: 48%;
    display: inline-block;
    position: relative;
    padding: 0 0 40px 40px;
    vertical-align: top
}

.fines h4 {
    color: #333;
    margin: 0;
    line-height: 24px;
    font-size: 18px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.fines p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #6a6e72;
    font-size: 16px;
    line-height: 24px;
    margin: 0
}

.fines h4:before {
    position: absolute;
    font-size: 24px;
    left: 0;
    color: #f3f5f7
}

.fines h4:after {
    left: 5px;
    color: #2589de;
    font-size: 12px;
    top: 1px;
    position: absolute
}

.fines .fines-ul i {
    color: #0f99b2;
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 2px
}

.decree-number,
.drivers-license {
    margin-bottom: 30px;
    padding: 20px
}

.decree-number {
    display: none
}

.fines .container {
    width: 1000px
}

.fines .fines-ul a {
    color: #5cb2ff
}

.background-grey {
    background-color: #f3f5f7
}

.fines .fines-ul a:hover {
    color: #0f99b2
}

.row-image {
    background-repeat: no-repeat;
    background-size: 483px 570px;
    background-position: left 800px top 75px
}

.row-image:before {
    display: table;
    content: " "
}

.row-image:after {
    clear: both;
    display: table;
    content: " "
}

.fines .left-section {
    margin: 0;
    padding: 48px 0 0 40px
}

.fines h1 {
    font-size: 36px;
    line-height: 40px;
    color: #333;
    margin: 0;
    font-weight: 600
}

.fines .text-p {
    color: #262627
}

.fines-ul-nav {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    width: 100%
}

.fines-ul-nav li {
    width: 100%;
    display: inline-block;
    position: relative;
    padding: 0 0 14px 0;
    font-size: 18px;
    color: #333
}

.fines-ul-nav li:hover {
    cursor: pointer
}

.is-number-of-order {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    border-bottom: 2px solid #0f99b2;
    width: 100%
}

.sts-container {
    margin-bottom: 16px;
    padding-right: 0;
    padding-left: 0
}

.fines .item-container {
    position: relative
}

.fines .arrow-down {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 56px;
    border: 1px solid #d6dade;
    border-radius: 2px 0 0 2px;
    background-color: #fff
}

.input-container--two-icons {
    padding-right: 68px
}

.input-container {
    padding: 8px 40px 9px 16px;
    width: 236px
}

.api-error,
.form-error {
    color: #ff1f1f;
    font-weight: 600
}

.fines-result-error {
    margin: 10px
}

.form-document {
    min-height: 81px;
    padding-right: 0
}

.form-input-field {
    min-height: 65px
}

.form-input-field .help-block {
    margin-left: 5px;
    margin-bottom: 0
}

.fines .field-datepicker,
.fines .form-input-field {
    font-size: 13px
}

.fines .form-group {
    margin-bottom: 0
}

.input-document {
    width: 100%
}

.fines form input {
    border: 1px solid #d6dade
}

.datepicker-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 236px;
    height: 43px;
    background-color: #fff;
    border: 1px solid #d6dade;
    border-radius: 0 2px 2px 0;
    padding: 8px 20px 9px 16px
}

.check-penalty,
.create-penalty,
.download-pdf {
    height: 48px;
    width: 224px;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.search-block-btn .a-fine {
    line-height: 35px
}

.check-penalty:hover,
.create-penalty:hover,
.download-pdf:hover {
    background-color: #035777;
    color: #fff
}

.check-penalty:focus,
.create-penalty:focus,
.download-pdf:focus {
    color: #fff;
    background-color: #035777
}

.field-1 input:focus,
.field-2 input:focus,
.field-3 input:focus,
.field-datepicker input:focus {
    border-bottom: 2px #00994f solid !important
}

.download-pdf {
    margin: 7px
}

.search-block-btn {
    margin-top: 10px
}

.tooltip-container {
    position: absolute;
    top: 13px;
    right: 10px
}

.tooltip-container-date {
    top: 0
}

.tooltip-icon {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #878787
}

.tooltip-text {
    position: relative;
    top: 0;
    font-size: 14px;
    line-height: 16px;
    background: #f7fafc;
    border: 1px solid #8eb7db;
    padding: 10px;
    border-radius: 3px;
    color: #333;
    z-index: 999
}

.tooltip-text-container .tooltip-text_after {
    border-color: rgba(247, 250, 252, 0);
    border-top-color: #f7fafc;
    border-width: 5px;
    margin-left: -5px
}

.tooltip-text-container .tooltip-text_before {
    border-color: rgba(37, 137, 222, 0);
    border-top-color: #8eb7db;
    border-width: 6px;
    margin-left: -6px
}

.tooltip-text_after,
.tooltip-text_before {
    bottom: -12px;
    left: 101px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.fines .tooltip-text-container {
    position: absolute;
    display: none;
    width: 400px;
    left: -92px;
    bottom: 25px
}

.fines div.section-fines {
    padding-bottom: 20px;
    min-height: 200px
}

.section-fines h2 {
    color: #02394e;
    margin: 0;
    line-height: 24px;
    font-size: 21px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.fines-content {
    min-height: 200px;
    border: 1px solid #02435c;
    margin: 10px 0;
    padding: 5px
}

.fines-title {
    font-weight: 600;
    color: #02435c;
    border-bottom: none
}

.fines-img img {
    width: 400px;
    display: block;
    margin: 0 auto 10px
}

.fines-description div {
    line-height: 1.2
}

.fines-pdf-file-title {
    margin-left: 8px
}

div.form-pdf form div.form-group {
    display: none
}

.create-penalty,
.fines-loader-pdf {
    margin-left: 8px
}

.fines-loader {
    width: 224px;
    height: 48px;
    position: absolute;
    top: 0;
    background-color: #ffffff85;
    display: none
}

.fines-loader img {
    width: 120px;
    margin-left: 46px;
    margin-top: 6px
}

@media (max-width:1350px) {
    .search-block {
        width: 100%
    }
    .fines {
        width: 1100px
    }
    .fines .container {
        width: 1100px
    }
    .fines .input-container {
        padding: 8px 12px 9px 9px;
        width: 100%
    }
    .number-vehicle div input.input-container {
        padding-right: 30px !important
    }
    .fines .datepicker,
    .fines .input-container::placeholder {
        font-size: 12px
    }
    .fines .datepicker-input-group {
        width: 250px
    }
    .fines .tooltip-container {
        right: 10px
    }
}

@media (max-width:1200px) {
    .fines {
        width: 970px
    }
    .fines .container {
        width: 970px
    }
    .fines .datepicker-input-group {
        width: 224px
    }
    .fines .tooltip-container {
        right: 12px
    }
    .number-vehicle div.tooltip-container.tooltip-tc {
        right: 0
    }
    .fines-ul-nav li {
        font-size: 16px
    }
    .fines .left-section {
        padding: 48px 10px 0 10px
    }
}

@media (max-width:992px) {
    .fines {
        width: 760px
    }
    .fines .container {
        width: 760px
    }
    .fines-ul li {
        width: 100%
    }
    .fines-ul-nav li {
        font-size: 13px
    }
    .number-vehicle {
        width: 100%
    }
    .fines .form-input-field {
        width: 100%;
        padding-right: 0
    }
    .fines .serach-block-icon {
        top: 10px;
        right: 16px;
        width: 59px;
        height: 59px
    }
    .fines .datepicker-input-group {
        width: 320px
    }
}

@media (max-width:768px) {
    .fines {
        width: 480px
    }
    .fines .container {
        width: 480px
    }
    .fines .tooltip-text-container {
        left: -300px
    }
    .fines .tooltip-text {
        font-size: 11px;
        max-width: 350px
    }
    .tooltip-text_after,
    .tooltip-text_before {
        left: 309px
    }
    .form-document-dn {
        width: 100%
    }
}

@media (max-width:499px) {
    .fines {
        width: 310px
    }
    .fines .container {
        width: 310px
    }
    .fines .datepicker-input-group {
        width: 235px
    }
    .fines .tooltip-text-container {
        width: 300px
    }
    .fines .tooltip-text-container {
        left: -246px
    }
    .tooltip-text_after,
    .tooltip-text_before {
        left: 255px
    }
    .fines .serach-block-icon {
        top: 7px;
        right: 7px;
        width: 45px;
        height: 45px
    }
    .fines-img img {
        width: 250px
    }
}

.fines-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    padding: 36px 20px 45px 40px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(8, 32, 71, .21);
    box-sizing: border-box
}

.fines-title {
    font-size: 36px;
    line-height: 49px;
    color: #000;
    margin-bottom: 17px
}

.fines-content-wrap {
    display: flex
}

.fines-form-wrap {
    padding: 20px 30px 40px 40px;
    display: flex;
    width: 49%;
    margin-right: 21px;
    background-color: #f4f5f7;
    border: 1px solid #e6eaeb;
    box-sizing: border-box;
    border-radius: 10px
}

.fines-input-wrap {
    width: 234px
}

.input-container {
    border: 1px #dee6e7 solid !important;
    font-size: 16px;
    padding: 10px 16px 10px 16px
}

.select2-container {
    height: 48px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 300;
    padding: 0 13px;
    width: 100% !important;
    border: 1px #dee6e7 solid !important;
    box-shadow: none !important
}

.select2-container--default .select2-selection--single {
    border: 0 !important
}

.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    height: 46px !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px !important
}

.select2-dropdown {
    border: 1px #dee6e7 solid !important
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dee6e7 !important
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e1e8ec !important
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #000 !important
}

.select2-container.select2-container--default.select2-container--open {
    border: 0 !important
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #03727e !important;
    color: #fff !important
}

.select2-container--open .select2-dropdown.select2-dropdown--below {
    top: -1px !important
}

.select2-selection {
    width: 100% !important
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 4px
}

.select2-container.select2-container--default.select2-container--open.select2-container--above,
.select2-container.select2-container--default.select2-container--open.select2-container--below {
    border: 1px solid #dee6e7 !important
}

.input-container {
    width: 100%
}

.fines-input {
    width: 100%;
    height: 44px;
    background-color: #fff;
    border: 1px solid #d6dade;
    box-sizing: border-box;
    color: #000;
    padding-left: 15px
}

.fines-input:focus {
    border-bottom: 2px #00994f solid
}

.fines-input::placeholder {
    font-size: 16px;
    line-height: 19px;
    color: #000;
    opacity: .2
}

.fines-help-block {
    visibility: hidden;
    opacity: 0;
    color: #a94442;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    transition: all .3s ease
}

.fines-help-block--active {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease
}

.fines-text-wrap {
    width: 49%
}

.fines-button {
    margin-top: 0;
    border: none;
    width: 100%;
    padding: 12px 42px;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    background-color: #05994f;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s ease
}

.fines-button:hover {
    background-color: #035777;
    color: #fff
}

.fines-search-form__content .fines-button {
    background: #00994f;
    -webkit-box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    box-shadow: 0 4px 4px rgba(2, 99, 52, .2), inset 0 1px 0 #05b861;
    cursor: pointer;
    height: 50px;
    margin-top: 12px
}

.fines-search-form__content .fines-button:hover {
    opacity: .8
}

.fines-image-wrap {
    margin-left: 20px;
    margin-top: 10px
}

.fines-image {
    width: 100%;
    min-width: 80px;
    max-width: 124px
}

.fines-descr {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 20px
}

.fines-descr-text {
    display: block
}

.fines-descr:last-child {
    margin-bottom: 0
}

.fines-descr strong {
    display: block;
    font-weight: 400;
    margin-top: 20px
}

.fines-descr-img {
    margin-right: 13px;
    display: block;
    height: 100%
}

.fines-actions {
    margin-bottom: 0
}

.fines-actions-icon {
    width: 58px;
    height: 58px
}

.fines-actions-list {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.fines-actions-item {
    max-width: 319px;
    padding: 35px 30px 28px 39px;
    background-color: #e3e9ea;
    margin-right: 20px;
    box-shadow: 0 0 6px rgba(8, 32, 71, .21);
    box-sizing: border-box
}

.fines-actions-item:last-child {
    margin-right: 0
}

.fines-actions-title-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.fines-actions-title {
    width: 50%;
    font-size: 18px;
    line-height: 21px;
    color: #000
}

.fines-actions-descr {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    opacity: .5
}

.footer {
    margin-top: 30px;
    width: 100%;
    background-color: #003452
}

.search-block.no-minh {
    min-height: auto;
    padding-top: 0
}

.search-block.no-minh .fines-actions {
    margin-bottom: 0
}

.search-block.no-bg {
    background: 0 0
}

.form-control {
    border-radius: 0
}

@media only screen and (max-width:885px) {
    .fines-wrap {
        padding-left: 20px
    }
    .fines-content-wrap {
        display: flex;
        flex-direction: column
    }
    .fines-image-wrap {
        order: 1;
        margin-left: 0;
        margin-bottom: 0
    }
    .input-container {
        border: 1px #dee6e7 solid !important;
        font-size: 14px;
        padding: 10px
    }
    .fines-form-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 30px;
        width: 100%;
        margin-right: 0
    }
    .fines-check,
    .fines-input-wrap {
        width: 100%
    }
    .fines-check {
        order: 2
    }
    .fines-button {
        max-width: 300px;
        display: block;
        margin: 0 auto;
        margin-top: 10px;
        padding: 12px 0
    }
    .fines-actions {
        margin-bottom: 0
    }
    .footer {
        margin-top: 0
    }
    .fines-text-wrap {
        width: 100%;
        margin-top: 40px
    }
    .fines-actions-list {
        flex-direction: column
    }
    .fines-actions-item {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px
    }
    .fines-actions-item:last-child {
        margin-right: auto
    }
}

@media only screen and (max-width:450px) {
    .fines-actions-title {
        font-size: 16px
    }
}

.fines-document {
    display: flex;
    justify-content: space-between;
    background-color: #f4f5f7;
    padding: 40px;
    border: 1px solid #e6eaeb;
    box-sizing: border-box;
    border-radius: 10px;
    width: 48%;
    margin-right: 21px
}

.fines-document-img {
    width: 48%
}

.fines-document-text {
    margin-right: 63px;
    width: 48%
}

.fines-document-subtitle {
    font-size: 10px;
    line-height: 12px;
    color: #97a4a7;
    text-transform: uppercase;
    margin-bottom: 4px
}

.fines-document-title {
    font-size: 20px;
    line-height: 24px;
    color: #000;
    margin-bottom: 13px
}

.fines-document-lines {
    width: 100%;
    height: 85px;
    background-image: url(../images/lines.png);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 5px
}

.fines-progress-block {
    width: 48%;
    border: 1px solid #e6eaeb;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 40px
}

.fines-progress-text {
    display: flex;
    align-items: center;
    margin-bottom: 45px
}

.fines-progress-img {
    margin-right: 43px
}

.fines-progress-title {
    font-size: 20px;
    line-height: 24px;
    color: #0e99b2;
    max-width: 160px
}

.fines-progress-bar {
    width: 100%;
    height: 3px;
    background-color: #e6eaeb;
    border-radius: 3px
}

.fines-progress-inner {
    height: 100%;
    background-color: #05994f;
    border-radius: 3px;
    transition: all .3s ease
}

.fines-progress-content-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px
}

.fines-progress-name {
    font-size: 16px;
    line-height: 19px;
    color: #97a5a7;
    white-space: nowrap
}

.fines-progress-perсentage,
.progress-complite {
    font-size: 16px;
    line-height: 19px;
    color: #05994f
}

.progress-complite {
    display: flex;
    align-items: center;
    white-space: nowrap
}

.fines-complite-wrapper {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.fines-complite-wrapper--visible {
    display: block;
    opacity: 1;
    visibility: visible
}

.progress-complite img {
    margin-right: 8px
}

.fines-progress-title--red {
    color: #eb5757;
    max-width: 195px;
    margin-bottom: 14px
}

.fines-complite-descr {
    color: #000;
    opacity: .5;
    font-size: 12px;
    line-height: 14px
}

.fines-complite-action {
    display: flex;
    align-items: center;
    width: 100%
}

.fine-complite-btn {
    border: none;
    padding: 12px 21px;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    background-color: #05994f;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s ease
}

.fine-complite-btn:hover {
    background-color: #035777;
    color: #fff
}

.fines-complite-action .progress-complite {
    width: 47%
}

.fines-progress-img {
    width: 40%
}

.fines-complite-text {
    width: 60%
}

.fine-complite-btn-wrap {
    width: 51%
}

.fines-document-img .img-wrap {
    width: 115px;
    height: 115px
}

.fines-document-img--warn:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 0;
    width: 33px;
    height: 33px;
    background-image: url(../images/warn.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

@media only screen and (max-width:885px) {
    .fines-document {
        width: 100%;
        margin-bottom: 40px
    }
    .fines-document-lines {
        margin-bottom: 20px
    }
    .fines-progress-block {
        width: 100%
    }
    .fines-progress-title,
    .fines-progress-title--red {
        max-width: 100%
    }
}

@media only screen and (max-width:500px) {
    .fines-document {
        flex-direction: column;
        align-items: center
    }
    .fines-document-text {
        order: 2;
        width: 100%;
        margin-right: 0;
        text-align: center
    }
    .fines-document-img {
        width: 100%;
        margin-bottom: 30px;
        text-align: center
    }
    .fines-document-lines {
        background-position: center center
    }
    .fines-progress-text {
        flex-direction: column
    }
    .fines-progress-img {
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
        text-align: center
    }
    .fines-complite-text {
        width: 100%
    }
    .fines-complite-action {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
    .fines-complite-action .progress-complite {
        margin-bottom: 30px;
        width: 100%
    }
    .fines-complite-action .progress-complite {
        justify-content: center
    }
    .fine-complite-btn-wrap {
        width: 100%
    }
    .fines-document-img .img-wrap {
        margin: 0 auto
    }
}

.all-fines {
    background-color: #fff;
    width: 100%;
    padding: 38px;
    margin-top: 30px;
    box-shadow: 0 0 6px rgba(8, 32, 71, .21);
    box-sizing: border-box
}

.all-fines-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px
}

.all-fines-title {
    font-size: 36px;
    line-height: 49px;
    margin-right: 17px
}

.all-fines-img {
    width: 49px;
    height: 44px;
    display: block
}

.all-fines-btn {
    color: #055777;
    font-size: 16px;
    line-height: 19px;
    opacity: .5;
    border: 1px solid #055777;
    box-sizing: border-box;
    border-radius: 3px;
    cursor: pointer;
    transition: all .3s ease;
    padding: 12px 24px;
    margin-left: auto;
    background: 0 0
}

.all-fines-btn:hover {
    opacity: .7
}

.all-fines-list {
    width: 100%
}

.all-fines-item {
    width: 100%;
    border: 1px solid #e6eaeb;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    margin-bottom: 20px
}

.all-fines-item-content {
    width: 70%;
    padding: 30px
}

.all-fines-right {
    width: 30%;
    background-color: #f4f5f7;
    border: 1px solid #e6eaeb;
    box-sizing: border-box
}

.all-fines-item-content {
    padding-left: 84px;
    position: relative
}

.all-fines-text-group {
    display: flex;
    justify-content: space-between
}

.all-fines-text-wrap {
    max-width: 70%
}

.all-fines-photo {
    width: 30%;
    margin-left: 20px
}

.fines-name {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
    position: relative
}

.mb0 {
    margin-bottom: 0
}

.nominh {
    min-height: auto
}

.fines-name:before {
    content: "";
    display: block;
    position: absolute;
    left: -55px;
    top: -2px;
    width: 35px;
    height: 35px;
    background-image: url(../images/g5.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center
}

.all-fines-section {
    max-width: 300px;
    margin-bottom: 20px
}

.all-fines-sec-title {
    display: block;
    font-size: 10px;
    line-height: 12px;
    color: #97a4a7;
    text-transform: uppercase;
    margin-bottom: 4px
}

.all-fines-descr {
    display: block;
    font-size: 14px;
    line-height: 17px
}

.all-fines-right {
    padding: 42px 30px 0 30px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    right: -1px;
    position: relative;
    border: 0
}

.all-fines-pay {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px
}

.all-fines-fine {
    display: block;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #97a4a7;
    margin-bottom: 4px
}

.all-fines-fine-amount {
    font-size: 20px;
    line-height: 24px;
    color: #eb5757
}

.all-mount-pay {
    width: 119px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    padding: 6px 28px;
    cursor: pointer;
    border: none;
    background-color: #fff;
    background: #05994f;
    border-radius: 3px;
    transition: all .3s ease
}

.all-fines-date-wrap {
    margin-bottom: 37px
}

.all-mount-pay:hover {
    background-color: #035777;
    color: #fff
}

.all-fines-date,
.all-fines-number {
    display: block;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600
}

.all-fines-item--paid .all-fines-fine-amount {
    color: #333
}

.all-fines-item--paid .all-mount-pay {
    display: none
}

.payd-label {
    display: flex;
    font-size: 14px;
    color: #05994f;
    height: 17px
}

.payd-label img {
    margin-right: 5px
}

@media only screen and (max-width:1120px) {
    .all-fines-pay {
        flex-direction: column
    }
    .all-fines-prise {
        margin-bottom: 10px
    }
}

@media only screen and (max-width:850px) {
    .all-fines-item {
        flex-direction: column
    }
    .all-fines-item-content {
        width: 100%;
        padding: 15px 15px 0 15px
    }
    .all-fines-right {
        width: 100%
    }
    .all-fines-pay {
        flex-direction: row
    }
    .all-fines-title {
        font-size: 22px;
        line-height: 30px;
        margin-right: 0
    }
    .all-fines {
        padding: 15px;
        margin-bottom: 30px
    }
    .all-fines-header {
        margin-bottom: 15px
    }
    .fines-name {
        font-size: 15px;
        line-height: 17px;
        margin-bottom: 15px
    }
    .all-fines-right {
        padding: 15px;
        -webkit-border-bottom-left-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-top-radius: 0;
        -moz-border-radius-bottomleft: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-topright: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 0;
        right: 0
    }
    .all-fines-pay {
        margin-bottom: 15px
    }
    .all-fines-date-wrap {
        margin-bottom: 15px
    }
    .all-fines-date-wrap:last-child {
        margin-bottom: 0
    }
}

@media only screen and (max-width:800px) {
    .all-fines-header {
        flex-direction: column;
        align-items: center
    }
    .all-fines-btn {
        margin-left: 0
    }
    .all-fines-title {
        margin-bottom: 0
    }
    .all-fines-img {
        margin-bottom: 20px;
        display: none
    }
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #909090;
    font-weight: 500
}

@media only screen and (max-width:660px) {
    .select2-container {
        height: 37px
    }
    .select2-container .select2-selection--single {
        height: 35px !important
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 5px !important
    }
    .fines-actions-item {
        padding: 15px
    }
    .fines-wrap {
        margin-top: 10px;
        margin-bottom: 15px;
        padding: 15px
    }
    .fines-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
        line-height: 18px
    }
    .fines-button {
        max-width: 100%
    }
}

@media only screen and (max-width:650px) {
    .all-fines-text-group {
        flex-direction: column
    }
    .all-fines-photo {
        margin-left: 0;
        margin-top: 20px
    }
}

@media only screen and (max-width:400px) {
    .all-fines-pay {
        flex-direction: column
    }
    .all-fines-item-content {
        padding-left: 15px;
        padding-right: 15px
    }
    .all-fines-right {
        padding-left: 15px;
        padding-right: 15px
    }
}

.bsh {
    box-shadow: 0 0 6px rgba(8, 32, 71, .21)
}

.bsh .all-fines.mt0 {
    box-shadow: none
}

.all-fin-header {
    background: #f4f5f7;
    border: 1px solid #e6eaeb;
    margin-top: 30px;
    padding: 31px 21px 27px 21px
}

.mt0 {
    margin-top: 0
}

.all-fin-back {
    display: inline-block;
    vertical-align: top;
    margin-top: 19px;
    margin-right: 15px
}

.all-fin-back a {
    background: url(../images/arrow-left.svg) center no-repeat;
    width: 23px;
    height: 23px;
    display: block
}

.all-fin-avatar {
    background: url(../images/avatar.svg) center no-repeat;
    width: 57px;
    height: 57px;
    display: inline-block
}

.all-fin-block-left {
    width: 265px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: top;
    margin-left: 15px
}

.all-fin-bl-fl {
    color: #0e99b2;
    text-transform: uppercase;
    display: block;
    font-size: 10px;
    line-height: 12px;
    width: 100%
}

.all-fin-bl-fln {
    color: #000;
    font-size: 18px;
    line-height: 21px;
    display: block;
    margin-top: 5px;
    width: 100%
}

.all-fin-bl-bd {
    font-size: 12px;
    margin-top: 4px;
    line-height: 14px;
    color: rgba(0, 0, 0, .5)
}

.all-fin-block-center {
    width: 360px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: top;
    margin-left: 17px
}

.all-fin-bс-reg {
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #97a4a7;
    display: block;
    width: 100%
}

.all-fin-header a:hover {
    opacity: .8;
    transition: all .3s ease
}

.all-fin-bс-title {
    display: block;
    width: 100%;
    margin-top: 9px;
    font-size: 14px;
    line-height: 17px;
    color: #000
}

.all-fin-block-right {
    width: 148px;
    display: inline-block;
    vertical-align: top
}

.all-fin-br-mail {
    background: url(../images/h-mail.svg) center no-repeat;
    width: 20px;
    height: 18px;
    display: inline-block;
    margin-right: 20px;
    margin-top: 20px;
    vertical-align: top
}

.all-fin-br-line {
    background: url(../images/h-line.svg) center no-repeat;
    width: 13px;
    height: 57px;
    display: inline-block;
    margin-right: 21px;
    vertical-align: top
}

.all-fin-br-edit {
    background: url(../images/h-edit.svg) center no-repeat;
    width: 19px;
    height: 19px;
    display: inline-block;
    margin-right: 21px;
    margin-top: 20px;
    vertical-align: top
}

.all-fin-br-delete {
    background: url(../images/h-delete.svg) center no-repeat;
    width: 16px;
    height: 18px;
    display: inline-block;
    margin-top: 21px;
    vertical-align: top
}

.all-fin-edit-block {
    background: #f4f5f7;
    border: 1px solid #e6eaeb;
    border-top: 0;
    margin-top: 0;
    padding: 31px 21px 27px 21px;
    display: none
}

.all-fin-edit-block.active {
    display: block
}

.all-fin-edb-line {
    background: url(../images/edit-line.svg) center no-repeat;
    width: 44px;
    height: 231px;
    display: inline-block;
    margin-left: 19px;
    margin-right: 50px
}

.all-fin-edb-right {
    display: inline-block;
    vertical-align: top;
    width: 825px
}

.all-fin-edb-edit-button {
    margin: 0 7px;
    background-color: #efefef;
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    overflow: auto;
    float: left
}

.all-fin-edb-edit-button:last-child {
    margin: 0 0 0 7px
}

.all-fin-edb-edit-button label {
    float: left
}

.all-fin-edb-edit-button label span {
    text-align: center;
    padding: 8px 14px;
    display: inline-block;
    background: #fff;
    border: 1px solid #0e99b2;
    box-sizing: border-box;
    border-radius: 3px;
    color: #0e99b2;
    outline: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 17px;
    transition: all .3s ease
}

.all-fin-edb-edit-button label input {
    position: absolute;
    top: -20px
}

.all-fin-edb-edit-button input.active+span,
.all-fin-edb-edit-button input:checked+span,
.all-fin-edb-edit-button input:hover+span {
    background: #0e99b2;
    border: 1px solid #0e99b2;
    box-sizing: border-box;
    border-radius: 3px;
    color: #fff
}

.all-fin-edb-edit-title {
    display: inline-block;
    width: 300px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    vertical-align: top;
    margin-right: 65px;
    margin-top: 8px
}

.all-fin-edb-edit-check {
    display: inline-block;
    width: 455px
}

.all-fin-sb.search-block-tab {
    display: none
}

.all-fin-sb.search-block-tab.active {
    margin-top: 30px;
    display: block
}

.all-fin-sb.search-block-tab form>div.search-block-btn {
    text-align: right;
    width: 100%;
    position: relative
}

.all-fin-sb.search-block-tab button[type=submit] {
    width: 188px;
    max-width: 360px;
    height: 44px;
    margin: 0 auto 0 auto;
    border-radius: 3px;
    background-color: #00994f;
    color: #fff;
    font-size: 16px;
    font-weight: 500
}

.all-fin-sb.search-block-tab button[type=submit]:hover {
    background-color: #035777
}

.all-fin-sb .check-block {
    position: absolute;
    text-align: left;
    left: 0;
    top: 9px
}

.all-fin-sb .form-group label.check-label input {
    opacity: 0;
    z-index: 3
}

.all-fin-sb .form-group label.check-label:after {
    content: '';
    width: 21px;
    height: 21px;
    background: #fff;
    border: 1px solid #d6dade;
    position: absolute;
    display: block;
    left: 1px;
    top: 3px;
    z-index: 2
}

.all-fin-sb.search-block-tab form>div.search-block-btn .control-label {
    padding-left: 35px;
    margin-top: 0;
    font-size: 14px;
    line-height: 17px;
    position: relative;
    left: -7px;
    z-index: 11;
    cursor: pointer
}

.all-fin-sb .form-group label.check-label.active:after {
    background: #d6dade
}

.all-fin-sb .form-control {
    border-radius: 0
}

.all-fin-sb .control-label img {
    position: relative;
    top: 3px;
    left: 5px
}

.all-fin-sb.search-block-tab input[type=text],
.all-fin-sb.search-block-tab select,
.all-fin-sb.search-block-tab textarea {
    font-size: 16px
}

.all-fines-tab {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px
}

.all-fines-tab-links {
    width: 480px;
    display: inline-block
}

.all-fines-tab-links li {
    margin-right: 16px;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 8px 12px;
    color: #055777;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.all-fines-tab-links li a {
    text-decoration: none;
    color: #055777
}

.all-fines-tab-links li.active a,
.all-fines-tab-links li.active:hover a {
    text-decoration: none;
    color: #1099b2
}

.all-fines-tab-links li.active,
.all-fines-tab-links li:hover {
    background: #fff;
    border: 1px solid #1099b2;
    box-sizing: border-box;
    border-radius: 3px;
    color: #1099b2
}

.all-fines-tab-save {
    width: 439px;
    display: inline-block;
    text-align: right
}

.all-fines-tab-save li {
    margin-right: 16px;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 8px 12px;
    color: #055777;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #e6eaeb;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.all-fines-tab-save li a {
    text-decoration: none;
    color: #055777
}

.all-fines-tab-save li:hover {
    border: 1px solid #e6eaeb;
    background: #e6eaeb
}

.all-fines-tab-save li:hover a {
    text-decoration: none;
    color: #055777
}

.all-fines-tab-save li.active a {
    text-decoration: none;
    color: #fff
}

.all-fines-tab-save li.active {
    background: #05994f;
    border-radius: 3px;
    border: 1px solid #05994f;
    color: #fff;
    margin-right: 0;
    font-size: 14px;
    line-height: 17px
}

.all-fines-tab-save li.active:hover {
    background-color: #035777;
    border: 1px solid #035777
}

.all-fines-tab-save li.active:hover a {
    color: #fff
}

.reg-select .form-group {
    background-color: #fff
}

.reg-select .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    font-size: 16px
}

@media only screen and (max-width:1100px) {
    .all-fin-edb-right {
        width: 85%
    }
    .all-fin-edb-edit-check {
        display: inline-block;
        width: 69%;
        text-align: right
    }
    .all-fin-edb-edit-button {
        float: none;
        display: inline-block;
        width: 100%;
        margin: 0
    }
    .all-fin-edb-edit-button label span {
        width: 100%
    }
    .all-fin-edb-edit-button label {
        float: left;
        width: 100%
    }
    .all-fin-edb-edit-button:last-child {
        margin: 0
    }
    .all-fin-edb-edit-title {
        width: 30%;
        margin-right: 0
    }
    .all-fin-block-left {
        width: 20%
    }
    .all-fin-block-center {
        width: 30%
    }
    .all-fin-block-right {
        width: 28%;
        text-align: right
    }
    .all-fines-tab-links {
        width: 60%
    }
    .all-fines-tab-save {
        width: 39%
    }
    .all-fin-sb.search-block-tab.active {
        margin-top: 10px
    }
    .all-fin-sb .form-group {
        margin-bottom: 5px !important
    }
}

@media only screen and (max-width:875px) {
    .all-fin-block-right {
        width: auto
    }
    .all-fines-tab-links {
        width: 100%
    }
    .all-fines-tab-save {
        width: 100%
    }
    .all-fin-edb-right {
        width: 100%
    }
    .all-fin-edb-line {
        display: none
    }
    .fines-name:before {
        display: none
    }
}

@media only screen and (max-width:690px) {
    .all-fin-block-center {
        width: auto;
        padding-left: 103px;
        padding-top: 20px
    }
    .all-fin-block-left {
        width: auto
    }
    .all-fin-br-line {
        display: none
    }
    .all-fin-block-right {
        padding-left: 120px
    }
    .all-fines-tab-save {
        text-align: center
    }
    .all-fines-tab-links {
        text-align: center;
        margin-bottom: 20px
    }
    .all-fin-sb.search-block-tab button[type=submit] {
        margin-top: 50px
    }
    .all-fin-edb-edit-check {
        display: inline-block;
        width: 100%;
        text-align: center
    }
    .all-fin-edb-edit-title {
        width: 100%;
        text-align: center;
        margin-bottom: 20px
    }
    .all-fin-sb.search-block-tab form>div.search-block-btn {
        text-align: center
    }
}

@media only screen and (max-width:460px) {
    .all-fin-sb.search-block-tab form>div.search-block-btn .control-label {
        padding-left: 50px;
        top: -14px
    }
    .all-fin-sb.search-block-tab button[type=submit] {
        margin-top: 70px
    }
}

@media only screen and (max-width:420px) {
    .all-fin-block-center {
        padding-left: 41px
    }
    .all-fin-block-left {
        width: 65%
    }
    .all-fin-avatar {
        display: none
    }
    .all-fin-block-right {
        padding-left: 59px
    }
    .all-fines-tab-save li {
        margin: 0
    }
}

.header .container, nav .container {
	justify-content: flex-start;
}