@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body{
    background: #F5F5F5;
    font-family: 'Carlito', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #43455A;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}
a, button{
    outline: none;
    box-shadow: none!important;
}
input:focus,input:visited,input:active{
    outline: none;
    box-shadow: none!important;
}
button:focus,button:active{
    outline: none;
    box-shadow: none!important;
}
.container-xxl{
    max-width: 1340px;
}
input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.4s ease;
}
input:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.4s ease;
}
input:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.4s ease;
}
input:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.header{
    background: #FFFFFF;
    box-shadow: 0 1px 20px -8px #BEC6E0;
}
.header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}
img{
    max-width: 100%;
    height: auto;
}
.message.error{
    background: #FF6D6D;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    margin-top: 15px;
}
.message.success{
    background: #6CD21C;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    margin-top: 15px;
}
.hidden{
    display: none;
}
.logo-link {
    display: flex;
    text-decoration: none;
    align-items: center;
    padding-top: 6px;
    width: 360px;
}
.header-title{
    margin-left: 10px;
    position: relative;
    bottom: 2px;
}
.top-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    min-width: 495px;
    justify-content: center;
}
.top-menu li a{
    font-size: 20px;
    text-decoration: none;
    color: #43455A;
}
.top-menu li{
    position: relative;
    padding: 0 10px;
    font-size: 20px;
}
.en-version .top-menu li{
    margin: 0 15px;
}
.top-menu li.active-top:after{
    content: '';
    display: block;
    background: #86EC37;
    border-radius: 30px;
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: -48px;
    left: 0;
}
.default-btn{
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5)!important;
    border-radius: 6px;
    height: 40px;
    display: flex;
    padding: 0 20px 2px 20px;
    text-decoration: none;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    border: none;
}
.default-btn:hover{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5)!important;
}
.default-blue-btn{
    background: linear-gradient(0deg, #00A9F3 0%, #06CEEA 96%);
    color: #fff;
}
.default-green-btn{
    background: #86EC37;
    color: #43455A;
}
.default-whight-btn{
    background: #fff;
    color: #43455A;
}
.default-whight-btn:hover{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5)!important;
}
.default-link-button{
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5)!important;
    border-radius: 6px;
    height: 50px;
    display: inline-flex;
    padding: 0 20px 2px 20px;
    text-decoration: none;
    align-items: center;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    border: none;
    background: linear-gradient(0deg, #00A9F3 0%, #06CEEA 96%);
    color: #fff;
}
.default-link-button:hover{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5)!important;
}
.default-link-button img{
    margin-right: 10px;
}
.enter-block{
    display: flex;
    align-items: center;
}
.ico-btn img{
    margin-right: 10px;
}
.enter-head-btn{
    margin-left: 19px;
}
.header-nav-desktop{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.open-nav-mobile{
    display: none;
}
.header-nav-mobile{
    background: #06B2ED;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: -100%;
    padding: 36px 25px 0 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header-nav-mobile-open{
    left: 0;
}
.mobile-nav-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.no-shadow{
    box-shadow: none;
}
.no-shadow:hover{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5);
}
.half-width{
    width: 49%;
}
.header-buttons-block-mobile{
    margin-top: 30px;
}
.top-menu-mobile{
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}
.top-menu-mobile li{
    margin-bottom: 15px;
    display: flex;
}
.top-menu-mobile li a{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1;
}
.top-menu-mobile li.active-top span{
    color: #80F0FF;
    font-size: 20px;
}
.top-menu-mobile li.active-top span:after{
    content: '';
    border-bottom: 1px solid #80F0FF;
    width: 100%;
    display: block;
}
.docs-index-block{
    background: #FFFFFF;
    border-radius: 15px;
    margin-top: 75px;
    padding: 30px;
    position: relative;
}
.index-preim-block{
    display: flex;
    justify-content: space-between;
    width: 760px;
    flex-wrap: wrap;
}
.docs-indx-right{
    position: relative;
}
.docs-indx-left{
    min-width: 390px;
}
.index-dop-fon{
    position: absolute;
    right: 30px;
    top: 30px;
}
h1{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 48px;
    line-height: 48px;
}
h2{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 24px;
}
.default-block-title h1{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
}
.docs-indx-title{
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}
.docs-index-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.index-preim-one{
    background: #EBEFF6;
    border-radius: 8px;
    padding: 25px 20px 25px 20px;
    position: relative;
    overflow: hidden;
    width: 240px;
    height: inherit;
}
.index-preim-number{
    background: #01B3F0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    right: -29px;
    top: 33px;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 26px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    padding-left: 11px;
}
.index-preim-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-top: 10px;
}
.index-preim-body{
    font-size: 14px;
    line-height: 18px;
    margin-top: 5px;
}
.index-search-wrapper{
    margin-top: 40px;
    position: relative;
    width: 100%;
}
.index-preim-media{
    height: 75px;
}
.top-search-form{
    display: flex;
    justify-content: space-between;
}
.search-input{
    border: 1px solid #D4D9E8;
    box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    height: 40px;
    padding: 0 25px 0 15px;
    box-sizing: border-box;
    width: calc(100% - 110px);
}
.search-ico {
    position: absolute;
    left: calc(100% - 140px);
    top: 11px;
}
.index-select-doc-title{
    background: #FFFFFF;
    border: 1px solid #D4D9E8;
    border-radius: 6px;
    display: inline-block;
    padding: 10px 25px;
    line-height: 1;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.index-select-doc-title-line{
    text-align: center;
}
.index-select-doc-title-line:before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #D4D9E8;
    position: relative;
    top: 20px;
}
.index-select-doc-block{
    margin-top: 60px;
}
.index-select-doc-wrapper{
    display: flex;
    margin: 88px auto 0 auto;
    max-width: 750px;
    flex-flow: wrap;
}
.index-select-doc-one{
    text-align: center;
    width: calc(100% / 3);
    margin-bottom: 60px;
}
.index-select-doc-media{
    background: #06B2ED;
    border: 1px solid #06B2ED;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.38);
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.index-select-doc-separator{
    margin-top: 13px;
    line-height: 1;
}
.dop-padding-left{
    padding-left: 13px;
}
.dop-padding-top{
    padding-top: 5px;
}
.index-select-doc-link{
    display: block;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: #43455A;
    max-width: 220px;
    margin: 0 auto;
}
.index-select-doc-name{
    margin-top: 10px;
    line-height: 1;
}
.index-link-line{
    display: inline-flex;
    position: relative;
    z-index: 1;
}
.index-select-doc-link:hover .index-select-doc-media{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5);
}
.margin-link{
    margin-top: 20px;
}
.sbs-wrapper{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 43px;
    text-align: center;
    height: 100%;
}
.set-promo-btn{
    border: 1px solid #43455A;
    border-radius: 6px;
    display: inline-flex;
    width: 220px;
    align-items: center;
    justify-content: center;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.set-promo-btn:hover{
    color: #00A9F3;
    border-color: #00A9F3;
}
.default-input{
    border: 1px solid #D4D9E8;
    box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    height: 40px;
    padding: 0 25px 0 15px;
    box-sizing: border-box;
    width: 100%;
}
.rate-size{
    width: 220px;
    max-width: 100%;
    margin: 30px auto 0 auto
}
.rate-separator-line{
    width: 100%;
    height: 1px;
    background: #D2D3E0;
    margin: 25px auto;
}
.sbs-list{
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
}
.new-rate-price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    font-size: 20px;
    margin-left: -1px;
    text-align: left;
    line-height: 1;
    margin-bottom: 90px;
}
.get-rate-block .new-rate-price{
    margin-bottom: 40px;
}
.sbs-sum{
    text-align: left;
}
.sbs-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 -40px;
}
.new-rate-docs-count{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 96px;
    line-height: 65px;
    color: #06B2ED;
}
.new-rate-docs{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 24px;
    color: #06B2ED;
    margin-top: 20px;
}
.sbs-list li{
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-top: 10px;
}
.sbs-list li img{
    margin-right: 15px;
}
.sbs-body{
    font-size: 20px;
    line-height: 1.2;
    margin-top: 25px;
}
.new-rate-price img{
    margin-right: 14px;
}
.sbs-sum{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 24px;
    color: #07A7DF;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
}
.new-reit-sum{
    font-size: 24px;
}
.promo-form {
    display: none;
    background: #fff;
    margin-top: 15px;
    position: absolute;
    left: -43px;
    width: calc(100% + 86px);
    padding: 5px 71px 20px 71px;
    border-radius: 0 0 15px 15px;
}
.open-promo {
    display: block;
}
.checken-open-promo {
    color: #00A9F3;
    border-color: #00A9F3;
}
.new-reit-promo-block{
    position: relative;
}
.default-block{
    padding: 25px 0 25px 0;
}
.rate-module{
    margin-top: 40px;
}
.no-limit-rate{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 64px;
    color: #06B2ED;
    height: 133px;
}
.rate-size-doc{
    margin-top: 30px;
}
.promo-btn{
    margin-top: 5px;
    cursor: pointer;
}
.news-block-wrapper{
    background: #FFFFFF;
    border-radius: 15px;
    height: 100%;
    padding: 35px 43px 70px 43px;
    position: relative;
}
.news-block-one{
    padding: 0 10px;
}
.news-index-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    color: #06B2ED;
    line-height: 24px;
}
.news-index-title a{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    color: #06B2ED;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-index-title a:hover{
    color: #6CD21C;
}
.news-link-body{
    line-height: 22px;
    margin-top: 20px;
}
.news-block-link{
    color: #009ED4;
    position: absolute;
    bottom: 40px;
    right: 43px;
}
.news-block-link:hover{
    text-decoration: none;
}
.news-slider-wrapper{
    margin: 40px -10px 0 -10px;
    position: relative;
}
.slick-list{
    display: flex;
    align-items: stretch;
}
.slick-track{
    display: flex;
    align-items: stretch;
}
.slick-arrow{
    display: block;
    width: 30px;
    height: 60px;
    overflow: hidden;
}
.prev-slider-btn{
    background: #01B3F0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 50%;
    position: relative;
    right: 100%;
    padding-right: 13px;
    cursor: pointer;
}
.next-slider-btn{
    background: #01B3F0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 50%;
    position: relative;
    padding-left: 13px;
    cursor: pointer;
}
.prev-slider{
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -30px;
    left: -5px;
}
.next-slider{
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -30px;
    right: -5px;
}



.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button::before {
    font-size: 42px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    color: #D0D8E7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button::before {
    color: #01B3F0;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    padding: 0;
    cursor: pointer;
}
.slick-dots {
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
    text-align: center;
}
.footer{
    background: linear-gradient(0deg, #00A9F3 0%, #06CEEA 99.55%);
    box-shadow: 0px -4px 6px rgba(255, 255, 255, 0.8), 0px -5px 30px rgba(102, 194, 235, 0.59), inset 0px 0px 4px rgba(0, 133, 181, 0.5);
    padding: 80px 0 30px 0;
}
.footer-info-line a{
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}
.block-last{
    padding-bottom: 50px;
}
.footer-info-line{
    margin-bottom: 10px;
}
.footer-logo a{
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}
.footer-logo a:hover{
    color: #EBEFF6;
}
.footer-title{
    margin-left: 10px;
    position: relative;
    bottom: -3px;
}
.soc-footer-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.soc-footer-list li{
    margin-right: 30px;
}
.copy-block{
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
}
.copy-block a{
    color: #fff;
    text-decoration: none;
}
.docs-indx-mobile{
    display: none;
}
.show-mobile{
    display: none;
}
.index-more-mobile a{
    width: 220px;
    max-width: 100%;
    margin: 0 auto;
}
.index-link-line a{
    width: 220px;
    max-width: 100%;
}
.mail-ico{
    background: #fff url(../img/ico-21.svg) 13px 12px no-repeat;
    background-size: 20px;
    padding-left: 45px;
}
.pas-ico {
    background: #fff url(../img/ico-20.svg) 16px 9px no-repeat;
    background-size: 16px;
    padding-left: 45px;
}
.default-field {
    border: 1px solid #CDCEE0;
    border-radius: 6px;
    font-size: 20px;
    height: 40px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}
.default-input-line{
    margin-bottom: 10px;
    position: relative;
}
.auth-form-block {
    width: 270px;
    max-width: 100%;
    margin: 40px auto 25px auto;
}
.show-pass{
    position: absolute;
    top: 7px;
    right: 12px;
    cursor: pointer;
}
.full-btn{
    width: 100%;
}
.dop-auth-links{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.blue-link{
    font-size: 20px;
    color: #01B3F0;
}
.blue-link:hover{
    text-decoration: none;
}
.black-link{
    font-size: 20px;
    color: #43455A;
}
.black-link:hover{
    text-decoration: none;
}
.terms-form-block{
    font-size: 14px;
    line-height: 17px;
}
.terms-form-block a{
    color: #43455A;
}
.terms-form-block a:hover{
    text-decoration: none;
}
.auth-wrapper{
    width: 430px;
    text-align: center;
    max-width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 60px 45px 50px 45px;
    margin: 70px auto 100px auto;
}
.reg-but-block{
    margin-top: 30px;
}
.dop-auth-links{
    margin-top: 15px;
}
.upper-text{
    text-transform: uppercase;
}
.default-search-button{
    background: #06B2ED;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    border: none;
    border-radius: 0 6px 6px 0;
}
.page-search-wrapper{
    margin-top: 60px;
    position: relative;
    width: 100%;
}
.category-single{
    margin-bottom: 20px;
}
.category-block-one{
    background: #FFFFFF;
    border-radius: 15px;
    height: 100%;
    position: relative;
}
.category-title{
    background: #06B2ED;
    border-radius: 15px 15px 0 0;
    height: 73px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.category-block-one:hover .category-title{
    background-color: #86EC37;
}
.category-link{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.category-link img{
    margin-right: 15px;
    max-width: 40px;
}
.contracts-list-block{
    padding: 25px 25px 100px 25px;
}
.contract-link{
    color: #43455A;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.1;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.contract-link::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #06B2ED;
    border-radius: 50%;
    transition: all 0.3s;
    margin-right: 15px;
    min-width: 6px;
    position: relative;
    top: 8px;
}
.contract-link:hover:before{
    background: #86EC37;
}
.contract-link:hover{
    color: #86EC37;
}
.more-contracts{
    border: 1px solid #D4D9E8;
    box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    display: inline-flex;
    margin: 0 auto;
    align-items: center;
    color: #43455A;
    text-decoration: none;
    padding: 0 30px 0 20px;
    height: 40px;
    transition: 0.3s;
}
.more-contracts img{
    margin-right: 15px;
    position: relative;
    top: 1px;
}
.more-contracts:hover{
    border: 1px solid #06B2ED;
    color: #06B2ED;
}
.category-contract-more{
    position: absolute;
    bottom: 40px;
    text-align: center;
    width: 100%;
}
.info-page-block{
    margin-top: 40px;
}
.page-module{
    margin-top: 60px;
    padding-bottom: 130px;
}
.result-promo{
    display: none;
}
.modal .btn-close {
    width: 35px;
    height: 35px;
    background: #01B3F0;
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 10;
}
.modal-header{
    border: none;
    position: relative;
}
.rotate {
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    overflow: hidden;
}
.rotate:hover {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.modal-content {
    border: none;
    border-radius: 15px;
}
.pmo-body{
    position: relative;
    flex: 1 1 auto;
    padding: 40px 25px 40px 25px;
    text-align: center;
}
.con-name{
    color: #01B3F0;
    font-size: 20px;
    margin: 20px auto 20px auto;
}
.thin-modal .modal-dialog{
    max-width: 350px;
}
.new-module{
    margin-top: 60px;
}
.news-dop .news-block-wrapper{
    margin-bottom: 30px;
    padding: 30px 30px 70px 30px;
}
.news-dop .news-block-link {
    bottom: 30px;
    right: 30px;
}
.single-new-body{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
}
.default-text h2{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #01B3F0;
}
.default-text h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #E3E4EE;
    margin-top: 20px;
    margin-bottom: 20px;
}
.default-text h3{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #01B3F0;
}
.default-text h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #E3E4EE;
    margin-top: 20px;
    margin-bottom: 20px;
}
.default-text strong{
    color: #01B3F0;
    font-weight: normal;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.block-author .default-text strong {
    color: #43455A;
}
.default-text a{
    color: #01B3F0;
}
.default-text a:hover{
    text-decoration: none;
}
.default-text img{
    border-radius: 15px;
    margin: 20px auto 20px auto;
    text-align: center;
    border: 1px solid #F2F3F5;
}
.default-text ol{
    margin: 30px 0 30px 0;
    padding: 0;
}
.default-text ol li{
    font-size: 20px;
}
.default-text ul{
    margin: 30px 0 30px 15px;
    padding: 0;
    list-style: none;
}
.default-text ul li {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    position: relative;
}
.default-text ul li:before{
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #01B3F0;
    margin-right: 10px;
    min-width: 6px;
    top: 10px;
    position: absolute;
    left: -15px;
}
.block-author .default-text ul li:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: url("../img/ico-53.svg") center center no-repeat;
    margin-right: 10px;
    min-width: 10px;
    top: 9px;
    position: absolute;
    left: -20px;
}
.block-author .default-text ul{
    margin-left: 20px;
}
.default-text ol{
    counter-reset: num;
}
.default-text ol li {
    display: flex;
    align-items: flex-start;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}
.default-text ol li:before {
    content: counter(num);
    counter-increment: num;
    display: block;
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: #41C6F4;
    color: #fff;
    text-align: center;
    line-height: 28px;
    font-size: 16px;
    border-radius: 50%;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    margin-right: 10px;
}
.default-text p{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #43455A;
    margin-bottom: 20px;
}
.default-text blockquote{
    background: #F2F3F5;
    border-radius: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    padding: 15px 25px 15px 100px;
    margin: 30px 0 30px 0;
    position: relative;
    overflow: hidden;
}
.default-text blockquote p:last-child{
    margin-bottom: 5px;
}
.default-text blockquote:before{
    content: '';
    display: block;
    height: 100%;
    width: 80px;
    background: #41C6F4 url("../img/ico-33.svg") center center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}
.title-button{
    margin-top: 35px;
    text-align: center;
}
.title-button .default-btn{
    margin: 0 auto;
    display: inline-flex;
}
.share-title{
    font-size: 20px;
}
.soc-share-block{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 35px;
}
.share-block{
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.one-soc{
    margin-left: 10px;
}
.accordion-arrow{
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06B2ED;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    min-width: 28px;
}
.acc-btn{
    display: flex;
    align-items: center;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 22px;
    cursor: pointer;
}
.accordion-one{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 17px 20px;
    margin-bottom: 10px;
}
.accordion-body{
    padding: 10px 0 0 44px;
    display: none;
}
.accordion-active .accordion-body{
    display: block;
}
.accordion-body p{
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}
.accordion-body p:last-child{
    margin-bottom: 5px;
}
.accordion-body a{
    color: #06B2ED;
}
.accordion-body a:hover{
    text-decoration: none;
}
.accordion-active .accordion-arrow{
    background: #86EC37;
}
.accordion-img{
    min-width: 8px;
    min-height: 8px;
    transition: all 0.3s ease;
}
.accordion-active .accordion-img{
    transform: rotate(90deg);
}
.podcat-block{
    background: #FFFFFF;
    border-radius: 15px;
    margin-top: 70px;
}
.podat-title{
    background: #06B2ED;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    height: 73px;
    padding: 15px 25px;
}
.podat-title h1{
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1;
}
.podat-title h3 {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1;
}
.podat-title img{
    margin-right: 11px;
    max-width: 40px;
}
.podcat-body{
    display: flex;
    justify-content: space-between;
    padding: 20px 35px 35px 60px;
}
.podcat-scrin{
    margin-bottom: 50px;
    max-width: 340px;
}
.dop-podcat-btns {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ico-doc-link{
    border: 1px solid rgba(205, 206, 224, 0.75);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    text-decoration: none;
    font-size: 15px;
    color: #43455A;
    height: 40px;
    width: 110px;
    transition: all 0.3s ease;
    justify-content: space-around;
}
.ico-doc-pay{
    width: 120px;
}
.ico-doc-link:hover{
    border: 1px solid #06B2ED;
}
.ico-doc-link img{
    margin-right: 2px;
}
.podcat-right{
    min-width: 335px;
}
.contracts-line a{
    display: flex;
    align-items: center;
    color: #43455A;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}
.contracts-line a:hover{
    color: #06B2ED;
}
.contracts-line a img{
    margin-right: 10px;
}
.contracts-line{
    margin-bottom: 11px;
}
.contracts-line a span{
    line-height: 1.1;
    text-align: left;
}
.single-page-body{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 40px 30px 40px;
}
.lower-media{
    margin-right: 20px;
    text-align: center;
}
.lower-media img {
    border-radius: 50%;
    margin: 0;
    border: none;
    width: 120px;
}
.lower-block{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.lower-name{
    font-size: 20px;
}
.lower-name a{
    text-decoration: none;
    transition: color 0.3s ease;
}
.lower-name a:hover{
    color: #86EC37;
}
.soderganie-block{
    background: #fff;
    border-radius: 15px;
    margin: 30px auto;
}
.soderganie-body{
    padding: 40px 40px 35px 40px;
}
.soderganie-body-seo{
    padding: 40px 40px 35px 40px;
}
.sod-line a{
    color: #43455A;
    text-decoration: none;
    font-size: 20px;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1;
}
.sod-line a:before{
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #43455A;
    margin-right: 10px;
    min-width: 6px;
    position: relative;
    top: 8px;
    transition: background-color 0.3s ease;
}
.sod-line a:hover:before{
    background-color: #86EC37;
}
.podcat-text h2{
    padding-top: 10px;
}
.slider-note-single{
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 144px;
    overflow: hidden;
    padding: 10px 15px 10px 40px;
}
.slider-note-single-1{
    background: linear-gradient(90deg, #06CEEA 36.69%, #00A9F3 120%);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5);
}
.slider-note-single-2{
    background: #01B3F0;
    box-shadow: 0 -2px 4px #FFFFFF, 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5);
}
.slider-note-single-3{
    background: linear-gradient(90deg, #00A9F3 -11.11%, #06CEEA 66.74%);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5);
}
.slider-note-data{
    display: flex;
    align-items: center;
    color: #fff;
}
.slider-note-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 26px;
    line-height: 24px;
}
.doc-sl-1, .doc-sl-2{
    position: relative;
}
.doc-sl-1 .slider-arrow {
    position: absolute;
    top: -31px;
    right: -43px;
}
.doc-sl-2 .slider-arrow {
    position: absolute;
    bottom: -35px;
    right: -47px;
}
.slider-note-single-1 .slider-note-ico img{
    min-width: 79px;
}
.slider-note-single-2 .slider-note-ico img{
    min-width: 79px;
}
.slider-note-single-3 .slider-note-ico img{
    min-width: 56px;
}
.doc-note-block{
    margin-top: 100px;
}
.slider-note-num{
    font-size: 28px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    width: 60px;
    height: 60px;
    background: #fff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    left: -29px;
    top: 50%;
    border-radius: 50%;
    padding-right: 11px;
    margin-top: -30px;
}
.slider-note-body{
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-top: 4px;
}
.slider-body-text{
    margin-left: 10px;
}
.new-doc-body{
    background: #fff;
    border-radius: 20px;
    margin-top: 30px;
    padding: 35px 35px 35px 35px;
    font-size: 20px;
    position: relative;
}
.ch-field {
    white-space: nowrap;
    cursor: text;
    position: relative;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #4AA3BF;
    background: #57D9EB;
    margin-top: 1px;
    margin-bottom: 1px;
}
.yes-field{
    background: #D2F2F9;
    border: 1px solid #D2F2F9;
}
.d-ico {
    position: absolute;
    right: 2px;
    top: -3px;
}
.my-dates {
    position: relative;
}
.input-load{
    position: absolute;
    z-index: 1;
    border: 1px solid #ececec;
    bottom: -2px;
    border-radius: 6px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    display: block;
    vertical-align: top;
}

.pl-note{
    position: absolute;
    top: -45px;
    left: -2px;
    width: auto;
    height: 33px;
    background: #23C0F5;
    color: #fff;
    padding: 2px 15px;
    text-align: center;
    white-space: nowrap;
    border-radius: 6px;
    font-weight: normal;
    line-height: 26px;
}
.pl-before{
    content: '';
    display: block;
    background: #23C0F5;
    height: 15px;
    width: 15px;
    position: absolute;
    left: 25px;
    top: -23px;
    -webkit-transform: rotate(45deg);
    z-index: 0;
}
.co-select{
    display: inline-block;
    font-size: 20px;
    padding: 1px 20px 1px 5px;
    box-sizing: border-box;
    margin: 0 3px;
    border: 1px solid #00D0EC;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('../img/ico-41.svg'), linear-gradient(to bottom, #00D0EC 0%,#00D0EC 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .5em top 51%, 0 0;
    background-size: .55em auto, 100%;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
}
.co-select::-ms-expand { display: none; }
.co-select:hover { border-color: #00D0EC; }
.co-select:focus {
    border-color: #00D0EC;
    color: #fff;
    outline: none!important;
}
.co-select option:focus, .co-select option:active{
    outline: none!important;
}
.co-select option { font-weight:normal;}
*[dir="rtl"] .co-select, :root:lang(ar) .co-select, :root:lang(iw) .co-select {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}
.co-select option{
    font-size: 20px;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: #D1F6FF;
}
.ui-datepicker th {
    font-weight: normal;
}
.date-f {
    cursor: text;
    position: relative;
    display: inline-block;
    width: auto;
    text-align: left;
    border: 1px solid #B3D6DE;
    background: #D1F6FF;
    border-radius: 6px;
}
.ch-color{
    background: #D2F2F9!important;
    border: 1px solid #D2F2F9!important;
}
.ui-widget.ui-widget-content {
    margin-left: -144px;
}
.ui-widget-content {
    border: 1px solid #B3D6DE;
    background: #D1F6FF;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #00D0EC;
    color: #00D0EC;
}
.ui-datepicker .ui-datepicker-title select {
    font-size: 16px;
}
.ui-datepicker .ui-datepicker-title select {
    font-size: 16px;
    margin: 0 5px;
}
.new-one-block {
    background: #F0F2F6;
    color: #07A7DF;
    text-align: center;
    padding: 25px 25px 20px 25px;
    border-radius: 10px;
    margin: 40px auto;
}
.new-one-block .radio-line2 {
    display: inline-block;
    padding: 0 15px;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
.custom-control-input ~ .custom-control-new {
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #D4D9E8;
    background: #DFE4ED;
    box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.40);
    transition: background-color 0.3s ease;
}
.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.custom-radio .custom-control-input:focus ~ .custom-control-new::before {
    background-color: #fc9 !important;
}
.custom-radio .custom-control-input:checked ~ .custom-control-new {
    border-radius: 6px;
    border: 1px solid #009CD1;
    background: #01B3F0;
    box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.50);
}
.custom-radio .custom-control-input:checked ~ .custom-control-new::after {
    display: none;
}
.custom-new-radio{
    margin: 0;
    padding: 0;
}
.custom-control-new span{
    position: relative;
    color: #43455A;
    white-space: nowrap;
    line-height: 35px;
    transition: all 0.3s;
}
.custom-control-new{
    padding: 0 15px;
    cursor: pointer;
    height: 36px;
    margin-bottom: 20px;

}
.custom-control-new:hover > span{
    color: #1e1a18;
}
.custom-radio .custom-control-input:checked ~ .custom-control-new span {
    color: #fff!important;
}
.custom-new-checkbox .custom-control-label{
    border: 2px solid #99786a;
    padding: 10px 20px 11px 30px;
    line-height: 1;
    border-radius: 25px;
}
.custom-new-checkbox .custom-control-input ~ .custom-control-label::before {
    box-shadow: none;
    top: 4px;
    left: -10px;
    display: block;
    width: 27px;
    height: 27px;
    background-color: #99786a;
    border: #99786a solid 1px;
}
.custom-new-checkbox .custom-control-label::after {
    top: 7px;
    left: -7px;
}
.custom-new-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none!important;
    border: none!important;
    background-color: #99786a!important;
}
.custom-new-checkbox .custom-control-input:active ~ .custom-control-label::before {
    box-shadow: none!important;
    border: none!important;
    background-color: #9fbf75!important;
}
.custom-new-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    box-shadow: none!important;
    border: none!important;
    background-color: #9fbf75!important;
}
.custom-new-checkbox .custom-control-input:checked ~ .custom-control-label{
    border: 2px solid #93af6e;
}
.custom-control-input:disabled ~ .custom-control-label {
    background-color: #fff;
}
.custom-control-input:disabled ~ .custom-control-label span{
    color: #43455A;
}
.new-one-block .radio-line2 {
    display: inline-block;
}
.new-podcat{
    margin-bottom: 20px;
    position: relative;
}
.easyeditor-toolbar {
    background: #F2F4F9;
    width: 100%;
    border: 1px solid #F2F4F9;
    border-radius: 10px 10px 0 0;
    padding: 5px 15px;
}
.easyeditor-toolbar li button {
    background: #fff;
    color: #fff;
    border: none;
    font-weight: normal;
    padding: 0;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 0;
    line-height: 1;
}
.easyeditor-toolbar li button img {
    position: absolute;
    left: 4px;
    top: 3px;
    transition: all 0.3s;
}
.scndbtn {
    opacity: 0;
}
.easyeditor-toolbar li button:hover{
    background: #fff;
    border: none;
}
.easyeditor-toolbar li button:hover > .scndbtn{
    opacity: 1;
}
.easyeditor-toolbar li button:hover > .firstbtn{
    opacity: 0;
}
.easyeditor {
    border: 1px solid #F2F4F9;
    border-radius: 0 0 10px 10px;
}
.selfnumber {
    float: left;
    position: relative;
    top: 69px;
}
.has-num-self {
    margin-left: 45px;
}
.easyeditor-toolbar ul{
    margin: 0;
    padding: 0;
}
.failres {
    border-radius: 6px;
    border: 1px solid #009ED4;
    background: #01B3F0;
    box-shadow: 0px -2px 4px 0px rgba(255, 255, 255, 0.50);
    display: inline-flex;
    color: #fff;
    height: 40px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 125px;
    justify-content: center;
}
.failres-wrap{
    text-align: right;
}
.saved-self{
    border: 1px solid #D4D9E8;
    background: #DFE4ED;
    color: #43455A;
}
.my-fieald {
    min-width: 100%;
    max-width: 100%;
    border: 2px solid #F2F4F9;
    border-radius: 0 0 8px 8px;
    padding: 15px;
    background: #fff;
    min-height: 100px;
}
.my-fieald p {
    margin-bottom: 0;
}
.title-container{
    margin-top: 60px;
}
.new-block-link{
    border-radius: 15px;
    border: 1px solid #CDCEE0;
    text-align: center;
    padding: 15px;
    min-height: 60px;
    font-size: 20px;
    margin-top: 5px;
}
.new-block-link a{
    color: #01B3F0;
    text-decoration: none;
}
.block-title h1{
    font-size: 36px;
    line-height: 36px;
}
.error-fields {
    position: relative;
    bottom: 10px;
    display: none;
    width: 100%;
}
.error-inside{
    background: #fff;
    border: 1px solid #f04545;
    padding: 20px 25px;
    color: #f04545;
    font-size: 18px;
    display: inline-block;
    border-radius: 10px;
}
.btns-pay {
    display: none;
    text-align: center;
}
.hideClear {
    display: none;
}
.good-rate-block{
    border-radius: 15px;
    border: 1px solid #CDCEE0;
    display: inline-flex;
    margin: 50px auto 50px auto;
    padding: 10px 10px 10px 20px;
    font-size: 20px;
    align-items: center;
}
.good-rate-link{
    border-radius: 6px;
    border: 1px solid #73E918;
    background: #86EC37;
    box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.50)!important;
    display: flex;
    width: 130px;
    padding: 6px 0 6px 7px;
    text-decoration: none;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.good-rate-link:hover{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5) !important;
}
.good-rate-btn{
    margin-left: 15px;
}
.good-rate-link img{
    margin-left: 10px;
}
.btns-free{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.free-link-btn{
    margin: 0 5px;
}
.plavaem {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.plavaem-visible{
    opacity: 1;
}
.plavaem .default-link-button{
    margin: 0 5px;
}
#slide-block{
    position: relative;
}
.close-modal{
    background: #01B3F0;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-header-free{
    padding: 50px 25px 40px 25px;
}
.real-clear{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    max-width: 170px;
    line-height: 24px;
    margin: 0 auto 50px auto;
}
.modal-block{
    text-align: center;
    width: 100%;
}
.modal-wrapper{
    width: 350px;
    margin: 0 auto;
    max-width: 95%;
}
.default-green-link-btn{
    border: 1px solid #6CD21C;
    background: #6CD21C;
    box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.50)!important;
}
.default-light-btn{
    border: 1px solid #57D9EB;
    background: #57D9EB;
    box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.50)!important;
}
.modal-block .default-link-button{
    font-weight: 400;
    font-size: 20px;
    width: 100%;
}
.modal-btns-block{
    margin-top: 40px;
}
.progress-wrapper{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    display: none;
}
.progress{
    width:100%;
    height:11px;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    border:none;
    background:#CACDDA;;
    color:#00C1EE;
    border-radius: 0;
}
.progress::-webkit-progress-bar{
    background:transparent;
    border-radius:5px;
}
.progress::-webkit-progress-value{
    background: #07A7DF url("../img/uzor.png") repeat-x;
    border-radius:5px;
    height:11px;
}
.progress::-moz-progress-bar{
    background: #07A7DF url("../img/uzor.png") repeat-x;
    border-radius:5px;
    height:11px;
}
.progress-container{
    width:100%;
    background:transparent;
    position:fixed;
    top:0;
    left:0;
    height:5px;
    display:block;
    border-radius: 0;
}
.progress-bar{
    background:#000;
    width:0;
    display:block;
    border-radius: 0;
    height:11px;
}
.progress-proz-block{
    position: absolute;
    right: 30px;
    top: 10px;
    z-index: 999;
    background: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}
.progress-proz-inside {
    border: 3px solid #00B0D9;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: #00C1EE;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.full-width{
    width: 100%;
    max-width: 100%;
}
.modal-block .small-text-btn{
    font-size: 15px;
}
.small-text-btn{
    font-size: 15px;
}
.modal-btns-podblock{
    margin-top: 20px;
}
.modal-free-note{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto 0 auto;
}
.modal-free-price{
    color: #01B3F0;
    font-size: 20px;
    margin-top: 20px;
}
.nice-rate-here {
    border-radius: 15px;
    border: 1px solid #CDCEE0;
    display: inline-flex;
    margin: 15px auto 30px auto;
    padding: 7px 8px 7px 20px;
    font-size: 16px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    max-width: 270px;
}
.nice-rate-here .good-rate-link {
    width: 100px;
    padding: 4px 0 4px 0;
}
.error-email{
    font-size: 13px;
    line-height: 1.3;
    margin-top: 2px;
    text-align: left;
    display: none;
}
.red-color{
    color: #a94442;
}
#message{
    color: #a94442;
    margin-bottom: 5px;
}
.pay-back h1{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 26px;
    line-height: 24px;
    margin: 0 auto 0 auto;
}
.pay-back{
    padding: 50px 25px 40px 25px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
}
.pay-face-wrapper{
    margin: 30px auto 20px auto;
}
.contract-title-pay{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto 0 auto;
}
.pay-created{
    margin-top: 20px;
}
.pay-order-id{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin: 0 auto 0 auto;
    color: #01B3F0;
}
.pay-price{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin: 20px auto 0 auto;
}
.pay-but-block{
    margin-top: 30px;
}
.last-doc-block {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: #fff;
    padding: 60px 30px;
    max-width: 310px;
    z-index: 10;
    border-radius: 15px;
}
.close-last{
    width: 35px;
    height: 35px;
    background: #01B3F0;
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
}
.close-last:hover{
    opacity: 1;
}
.last-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}
.last-name{
    font-size: 16px;
    color: #06B2ED;
    line-height: 1.3;
    margin-top: 15px;
}
.last-btn{
    margin-top: 20px;
}
.last-doc-block .default-btn{
    display: inline-flex;
    text-transform: uppercase;
}
.welcome-block-nav{
    border-radius: 15px;
    background: #06B2ED;
    margin-top: 40px;
    color: #fff;
    padding: 15px 15px 15px 30px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.3;
}
.private-links{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.private-links li{
    margin-left: 10px;
}
.private-links .default-link-button{
    box-shadow: none!important;
    text-transform: uppercase;
    height: 40px;
    min-width: 180px;
}
.private-links .default-whight-btn{
    border: 1px solid #fff;
    background: #06B2ED;
}
.author-filter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-af{
    border-radius: 6px;
    border: 1px solid #D4D9E8;
    background: #DFE4ED;
    height: 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 0 5px;
    font-size: 20px;
    color: #43455A;
    transition: all 0.3s ease;
}
.single-af:hover{
    border: 1px solid #009ED4;
    background: #01B3F0;
    color: #fff;
}
.single-af.active-af{
    border: 1px solid #009ED4;
    background: #01B3F0;
    color: #fff;
}
.cabinet-search-wrapper{
    position: relative;
    width: 100%;
}
.cabinet-module{
    margin-top: 30px;
    padding-bottom: 60px;
}
.lk-filter{
    margin-top: 30px;
    margin-bottom: 30px;
}
.lk-header{
    border-radius: 15px 15px 0 0;
    background: #FFF;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    line-height: 1;
    padding: 0 15px;
}
.no-info-block{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 70px;
    border-radius: 15px;
    font-size: 20px;
    color: #43455A;
    text-decoration: none;
}
.lk-body{
    margin-top: 10px;
}
.list-docs-line{
    display: flex;
    align-items: center;
    padding: 10px 15px;
}
.lk-body .list-docs-line:nth-child(odd){
    background: #EAEDF3;
}
.lk-body .list-docs-line:nth-child(even){
    background: #fff;
}
.list-docs-data{
    display: flex;
    align-items: center;
    width: 70%;
}
.list-docs-buttons{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.list-docs-buttons-head{
    justify-content: center;
}
.lk-name{
    width: 20%;
    padding: 0 5px;
    line-height: 1.3;
}
.lk-contr{
    width: 20%;
    padding: 0 5px;
    line-height: 1.3;
}
.lk-sum{
    width: 20%;
    padding: 0 5px;
    text-align: center;
}
.blue-color{
    color: #06B2ED;
}
.lk-dates-wr{
    width: 20%;
    padding: 0 5px;
}
.lk-isp{
    width: 20%;
    text-align: center;
}
.nu-res{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sign-btn{
    border-radius: 6px;
    border: 1px solid #D4D9E8;
    background: #FFF;
    box-shadow: 0 -2px 4px 0 rgba(255, 255, 255, 0.40);
    font-size: 18px;
    width: 100%;
    padding: 5px 0 6px 0;
    transition: all 0.3s ease;
    color: #43455A;
}
.sign-btn:hover{
    border: 1px solid #01B3F0;
    color: #01B3F0;
}
.lk-name a{
    color: #06B2ED;
    text-decoration: none;
}
.pagination li{
    margin: 0 3px;
}
.pagination li a {
    display: block;
    color: #06B2ED;
    font-size: 16px;
    line-height: 33px;
    border: 1px solid #06B2ED;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pagination .prev a {
    background: #06B2ED url(../img/ico-18.svg) center center no-repeat;
    border: none;
    display: block;
    height: 35px;
    text-decoration: none;
}
.pagination .next a {
    background: #06B2ED url(../img/ico-17.svg) center center no-repeat;
    border: none;
    display: block;
    height: 35px;
    text-decoration: none;
}
.pagination li a:hover{
    border: 1px solid #86EC37;
    color: #86EC37;
}
.pagination .prev a:hover{
    background: #86EC37 url(../img/ico-18.svg) center center no-repeat;
}
.pagination .next a:hover{
    background: #86EC37 url(../img/ico-17.svg) center center no-repeat;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    border: 1px solid #86EC37;
    background: #86EC37;
}
.pg-docs{
    display: flex;
}
.pag-list{
    margin: 30px auto 0 auto;
}
.pagination .disabled{
    opacity: 0;
}
.del-doc-img{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #01B3F0;
    border-radius: 50%;
    margin-left: 20px;
    min-width: 35px;
}
.ico-doc-print{
    margin-left: 5px;
}
.contract-article{
    margin-bottom: 50px;
}
.seo-text-block{
    margin-bottom: 50px;
}
.category-faq{
    margin-top: 30px;
}
.man-wrapper {
    margin: 30px auto 30px auto;
    padding: 30px 0 30px 0;
    border-top: 1px solid #E3E4EE;
    border-bottom: 1px solid #E3E4EE;
}
.man-face {
    position: relative;
    float: left;
    margin-right: 30px;
}
.man-pict {
    max-width: 133px;
}
.man-pict img {
    border-radius: 50%;
    display: block;
}
.man-q {
    position: absolute;
    width: 48px;
    right: 0;
    bottom: 5px;
}
.man-q img {
    border: none;
    box-shadow: none !important;
}
.man-text {
    color: #43455A;
    font-size: 16px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    margin-bottom: 10px;
}
.man-name p {
    font-size: 14px;
    color: #43455A;
    margin-bottom: 0;
}
.soderganie-news-block{
    margin-top: 0;
}
.sod-line{
    margin-bottom: 10px;
}
.soderganie-body .sod-line:last-child{
    margin-bottom: 0;
}
.soderganie-body-seo .sod-line:last-child{
    margin-bottom: 0;
}
.contract-faq{
    margin-bottom: 50px;
}
.urls-title{
    text-align: center;
}
.dop-url-link{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(33% - 10px);
    color: #06B2ED;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.2;
}

.url-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 30px 0 50px 0;
    flex-wrap: wrap;
}
.url-arrow{
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06B2ED;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 28px;
}
.dop-url-link:hover .url-arrow{
    background: #86EC37;
}
.new-doc-body a{
    color: #06B2ED;
}
.new-doc-body a:hover{
    text-decoration: none;
}
.search-data-result{
    position: absolute;
    left: 0;
    top: 42px;
    background: #fff;
    width: calc(100% - 110px);
    padding: 10px 15px 12px 15px;
    border: 1px solid #D4D9E8;
    box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    z-index: 999;
    display: none;
}
.search-con-line{
    margin-bottom: 3px;
}
.search-con-line a {
    color: #43455A;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}
.search-con-line a span{
    color: #06B2ED;
}
.search-con-line a:hover{
    color: #06B2ED;
}
.search-title{
    text-align: center;
    color: #06B2ED;
    font-size: 36px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    line-height: 1.3;
}
.search-media{
    display: flex;
    margin: 30px auto 0 auto;
    justify-content: center;
}
.no-info-search{
    font-size: 16px;
}
.no-info-search a{
    color: #06B2ED;
    text-decoration: none;
}
.no-info-search a:hover{
    text-decoration: underline;
}
.no-info-margin {
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}
.search-yes{
    background: #fff;
    border-radius: 15px;
    padding: 30px 35px 50px 35px;
    margin: 30px auto 0 auto;
}
.podcontr-line a{
    color: #43455A;
    position: relative;
    font-size: 20px;
}
.podcontr-line a:hover{
    text-decoration: none;
}
.podcontr-line{
    margin-bottom: 3px;
}
.search-back a{
    color: #06B2ED;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 24px;
}
.search-back a:hover{
    text-decoration: none;
}
.search-back{
    margin-top: 30px;
}
.index-search-btn{
    background: none;
}
.unic-block{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.unic-one{
    background: #EBEFF6;
    border-radius: 7px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    width: calc(100%/3 - 15px);
}
.unic-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
}
.unic-media {
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unic-body {
    font-size: 14px;
    max-width: 320px;
    line-height: 18px;
    margin-top: 10px;
    padding: 0 15px;
}
.author-media{
    max-width: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px auto;
}
.author-block-wrapper{
    text-align: center;
}
.author-index-title{
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    line-height: 1.1;
}
.author-index-title a{
    text-decoration: none;
    color: #06B2ED;
    transition: color 0.3s ease;
}
.author-index-title a:hover{
    color: #86EC37;
}
.author-link-body{
    font-size: 14px;
    margin-top: 10px;
}
.authors-about-block .news-slider-wrapper {
    margin: 40px 0 0 0;
    position: relative;
}
.authors-about-block{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 0 30px 0;
    margin-top: 30px;
}
.authors-about-block .prev-slider {
    left: 0;
}
.authors-about-block .next-slider {
    right: 0;
}
.author-block-wrapper{
    margin-bottom: 20px;
}
.authors-about-block .default-block-title{
    padding-left: 40px;
}
.reviews-block .author-block-wrapper{
    background: #EBEFF6;
    border-radius: 7px;
    margin: 0 15px;
    padding: 40px 40px 40px 40px;
    height: 100%;
}
.reviews-block .news-slider-wrapper {
    margin: 40px 20px 0 20px;
    position: relative;
}
.reviews-block .prev-slider {
    left: -20px;
}
.reviews-block .next-slider {
    right: -20px;
}
.author-info-wrap{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    text-align: center;
    height: 100%;
}
.abody-block{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    height: 100%;
}
.author-page{
    margin-bottom: 60px;
}
.author-info-media{
    width: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}
.author-name-one{
    font-size: 20px;
    color: #06B2ED;
    margin-top: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.author-name-block{
    border-bottom: 1px solid #CDCEE0;
    padding-bottom: 20px;
    margin-bottom: 15px;
}
.author-back-info{
    text-align: start;
}
.aback-line{
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.aback-line img{
    margin-right: 10px;
}
.aback-line .aimg-1{
    margin-right: 15px;
}
.abody-block h1{
    color: #06B2ED;
    font-size: 24px;
}
.vse-ravno{
    margin-top: 20px;
}
.modal-reg-note{
    line-height: 18px;
}
.modal-reg-title{
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.end-timer-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.end-timer-wrapper ul .num-timer{
    margin-top: 20px;
    color: #01B3F0;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 32px;
}
.hint-line {
    background: #86EC37;
    color: #fff;
    display: none;
    position: absolute;
    top: 25px;
    padding: 8px 20px;
    font-size: 20px;
    border-radius: 6px;
    z-index: 9999;
    line-height: 1;
}
.hint-line:before{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: #86EC37;
    position: absolute;
    left: 20px;
    top: -7px;
    transform: rotate(45deg);
}
.hint-left:before{
    left: 20px;
}
.hint-middle:before{
    left: 100px;
}
.hint-right:before{
    left: 170px;
}
.hint-show{
    display: flex;
}
.yes-ico {
    background: url(../img/ico-15.svg) center center no-repeat;
    background-size: 100% 100%;
    border: 1px solid #babeb4;
}
.w-ico {
    display: block;
    width: 20px;
    height: 20px;
    line-height: 1px;
    float: right;
    margin: 5px 3px 0 3px;
    border-radius: 50%;
}
#myModal8 .modal-wrapper {
    width: 100%;
    max-width: 95%;
}
#myModal8 .real-clear{
    width: auto;
    max-width: 100%;
}
#myModal8 .default-link-button{
    max-width: 160px;
}
.show-sample{
    text-decoration: underline;
    cursor: pointer;
}
.show-sample:hover{
    text-decoration: none;
}
.preloader-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
}
.preloader-open{
    display: flex;
}
.preloader-block {
    padding: 90px 15px 80px 15px;
    max-width: 100%;
    width: 320px;
    font-size: 20px;
    line-height: 1.3;
    background: #fff;
    border-radius: 15px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.preloader-img{
    margin-top: 57px;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.error__block{
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-page-404{
    margin-top: 10%;
    padding: 0 30px;
}
.im__block-wrapper{
    padding: 0 15px;
    text-align: center;
}
.im__title{
    font-size: 24px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    margin-top: 5%;
}
.im_error{
    font-size: 18px;
    margin-top: 25px;
}
.im_error a{
    color: #43455A;
    transition: color 0.3s ease;
}
.im_error a:hover{
    color: #06B2ED;
}
.im__back a{
    color: #06B2ED;
    font-size: 18px;
    text-decoration: none;
}
.im__back a:hover{
    text-decoration: underline;
}
.error__wrapper{
    margin-bottom: 5%;
}
.suggestions-suggestions {
    border: 1px solid #B3D6DE;
}
.suggestions-suggestions strong {
    font-weight: normal;
    color: #01B3F0;
}
.suggestions-subtext {
    color: #33251d;
    font-size: 15px;
    font-weight: normal;
    text-align: left;
    line-height: 1.3;
    margin-top: 5px;
    padding-bottom: 5px;
    display: block;
}
.suggestions-hint {
    color: #33251d;
    font-size: 16px;
    font-weight: normal;
    padding: 7px 15px;
    background: #D1F6FF;
}
.suggestions-suggestion {
    padding: 4px 15px;
    overflow: hidden;
    text-align: left;
}
.suggestions-suggestion:hover {
    background: #c4f1fc;
    cursor: pointer;
}
.suggestions-selected {
    background: #f8f8f7;
}
.suggestions-selected:hover {
    background: #f8f8f7;
}
.suggestions-promo{
    display: none!important;
}
.suggestions-suggestions {
    box-shadow: 1px 2px 11px rgba(0,0,0,0.3);
}
.bufer-block{
    width: 100%;
    height: 50px;
}
.btn-inside .default-link-button {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 26px;
}
.btn-inside img {
    max-width: 100%;
    border: none;
    position: relative;
    bottom: 1px;
    border-radius: 0;
    margin-right: 10px;
}

.alternative-doc .one-wrapper{
    display: flex;
    justify-content: flex-end;
    background: #F0F2F6;
    padding: 20px 20px 20px 0;
    margin-bottom: 20px;
    border-radius: 10px;
}
.alternative-doc .empty-one-wrapper{
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.alternative-doc .single-part{
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    max-width: 650px;
    min-width: 650px;
    overflow: hidden;
}
.alternative-doc .empty-one-wrapper .single-part{
    padding-top: 0;
    padding-bottom: 0;
}
.alternative-doc .first-part{
    max-width: 100%;
    min-width: 100%;
}
.alternative-doc .single-part:hover{
    overflow: visible;
}
.alternative-doc .new-one-block {
    text-align: left;
    margin: 0;
    padding: 0 5px 0 20px;
}
.alternative-doc .step-new-block{
    max-width: 405px;
    min-width: 405px;
}
.alternative-doc .new-one-block .text-center{
    text-align: left!important;
}
.alternative-doc .custom-control-new span {
    white-space: normal;
    line-height: 1;
    padding: 10px 15px;
    display: block;
}
.alternative-doc .custom-control-input ~ .custom-control-new {
    height: auto;
    line-height: 1.2;
    padding: 0;
    margin-bottom: 10px;
}
.alternative-doc .new-one-block .radio-line2 {
    padding: 0;
    margin-right: 10px;
}
.alternative-doc .new-podcat {
    line-height: 1.2;
}
.cookies-wrapper{
    background: #fff;
    min-height: 68px;
    border-radius: 15px;
    padding: 20px 25px 30px 25px;
    font-size: 20px;
    text-align: center;
}
.cookies-block{
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 320px;
    z-index: 999;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
.cookies-block.visible {
    opacity: 1;
    visibility: visible;
}
.cookies-btn{
    cursor: pointer;
    text-transform: uppercase;
    height: 40px;
    width: 100%;
    margin-top: 30px;
}
.cookies-text a{
    color: #06B2ED;
}
.cookies-text a:hover{
    text-decoration: none;
}
.red-sample-start{
    color: darkred;
}
.podpr-open{
    width: 20px;
    display: inline-flex;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    bottom: -1px;
    left: 7px;
    height: 20px;
    border: 1px solid #009ED4;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #01B3F0;
    min-width: 20px;
}
.podpr-open:hover{
    opacity: 1;
}
.podpr-note{
    position: relative;
}
.podpr-text {
    position: absolute;
    background: #fff;
    color: #43455A;
    z-index: 2;
    min-width: 400px;
    padding: 20px 25px;
    right: -49px;
    bottom: 46px;
    font-weight: normal;
    display: none;
    border-radius: 7px;
    border: 1px solid #DFE4ED;
    font-size: 18px;
}
.podpr-text p{
    text-align: start;
    margin-bottom: 0;
    line-height: 1.2;
}
.podpr-arr {
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    right: 39px;
    bottom: -13px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 1px solid #DFE4ED;
    border-bottom: 1px solid #DFE4ED;
}
.close-last1 {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    position: absolute;
    right: 7px;
    top: 8px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    display: flex;
}
.close-last1:hover{
    opacity: 1;
}

.second-podpr{
    position: absolute;
    left: 0;
    top: 1px;
    opacity: 0;
    transition: 0.3s;
}
.podpr-open:hover > .second-podpr{
    opacity: 1;
}
.podpr-text .close-last1{
    display: none;
}
.clear-btn-ui{
    background: #CDCEE0;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(205, 206, 224, 0.59), inset 0 0 4px rgba(205, 206, 224, 0.5) !important;
    color: #43455A;
    font-size: 20px;
}
.clear-btn-ui:hover{
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(205, 206, 224, 0.4), inset 0 0 4px rgba(205, 206, 224, 0.5) !important;
}
.error-line-ui{
    background: #FF8E8E;
    min-height: 31px;
    display: flex;
    align-items: center;
    padding: 3px 14px;
    border-radius: 5px;
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.no-valid-pass{
    display: none;
}
.error-field{
    border-color: #FF8E8E;
}
.region-select-block{
    margin-top: 20px;
}
.default-select-ui {
    position: relative;
    width: 100%;
    max-width: 300px;
    font-family: sans-serif;
    user-select: none;
}
.select-trigger {
    background-color: #9DE7F9;
    padding: 10px 40px 10px 12px;
    border-radius: 8px;
    font-size: 19px;
    cursor: pointer;
    position: relative;
    border: 1px solid #7CCBDE;
    text-align: left;
}
.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #07A7DF;
}
.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    display: none;
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}
.select-options::-webkit-scrollbar {
    width: 6px;
}
.select-options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.select-options::-webkit-scrollbar-track {
    background: transparent;
}
.select-option {
    padding: 10px 12px;
    cursor: pointer;
    text-align: left;
}
.select-option:hover {
    background-color: #f0f0f0;
}
.select-option.selected {
    background-color: #e6f7ff;
    font-weight: bold;
}
.default-select-ui.open .select-options {
    display: block;
}
.half-btn-line{
    width: calc(50% - 10px);
}
.half-btn-block{
    display: flex;
    justify-content: space-between;
}
.green-tip {
    display: inline-block;
    background-color: #86EC37;
    color: #43455A;
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: -30px;
}

.green-tip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #7ff000;
}
.search-in{
    margin-bottom: 40px;
}
.unic-index-block{
    margin-top: 80px;
}
.disc-block{
    background: #00A1E7;
    padding: 25px 30px 15px 30px;
    color: #fff;
    border-radius: 15px;
    margin: 20px 0 30px 0;
}
.price-alt-line{
    background: #D4D9E8;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(205, 206, 224, 0.59), inset 0 0 4px rgba(205, 206, 224, 0.5) !important;
}
.price-alt-line img{
    margin-right: 10px;
}
.sidebar-wrapper{
    background: #fff;
    border-radius: 15px;
    margin-top: 30px;
    padding: 30px 30px;
}
.instruction-btn{
    text-transform: capitalize;
    font-size: 22px;
    width: 100%;
    justify-content: flex-start;
    padding: 0 15px;
}
.same-documents-block{
    background: #F0F2F6;
    border-radius: 6px;
    padding: 15px 15px;
    margin-top: 20px;
}
.same-documents-title{
    display: flex;
    align-items: center;
    font-size: 20px;
    text-transform: capitalize;
}
.same-documents-title img{
    margin-right: 10px;
}
.same-documents-links{
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}
.same-documents-links li{
    margin-bottom: 10px;
}
.same-documents-links li:last-child{
    margin-bottom: 0;
}
.same-documents-links li a{
    color: #43455A;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: color 0.3s ease;
}
.same-documents-links li a:hover{
    color: #01B3F0;
}
.same-documents-links li a img{
    min-width: 10px;
    margin-right: 8px;
    position: relative;
    top: 2px;
}
.one-banner{
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}
.modal-xl {
    max-width: 870px;
}
.modal-xl .modal-wrapper{
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}
.instruction-title{
    color: #07A7DF;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(22px, 3vw, 32px);
    width: 100%;
}
.instruction-one-title{
    color: #07A7DF;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    margin-top: 20px;
    font-size: clamp(18px, 2vw, 20px);
}
.instruction-text{
    font-size: 16px;
    line-height: 1.3;
    margin-top: 5px;
}
.instruction-media{
    min-height: 165px;
}
.search-parties-form{
    display: flex;
    align-items: center;
}
.search-parties-form .input{
    width: calc(100% - 40px);
}
.os-field{
    width: 100%;
    border: 1px solid #D4D9E8;
    height: 40px;
    border-radius: 6px 0 0 6px;
    padding: 0 30px;
}
.search-obut{
    border: none;
    background: #06B2ED;
    height: 40px;
    width: 40px;
    padding: 0;
    margin: 0;
    border-radius: 0 6px 6px 0;
}
.data-text{
    background: #fff;
    border-radius: 15px;
    padding: 25px 40px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.custom-select {
    display: inline-block;
    font-family: 'Montserrat-Regular', sans-serif;
    color: #43455A;
    font-size: 16px;
    padding: 1px 20px 1px 10px;
    box-sizing: border-box;
    border: 1px solid #7CCBDE;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('../img/ico-40.svg'), linear-gradient(to bottom, #9DE7F9 0%,#9DE7F9 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .5em top 50%, 0 0;
    background-size: .55em auto, 100%;
    border-radius: 5px;
    height: 40px;
}
.custom-select:focus {
    border-color: #7CCBDE;
    color: #43455A;
    outline: none !important;
    box-shadow: none;
}
.hidden-contr-block {
    display: none;
}
.default-btn-close{
    color: #43455A;
    #background: #D4D9E8;
    background: linear-gradient(to bottom, #DFE4ED, #B6BDCB);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(212, 217, 232, 0.59), inset 0 0 4px rgba(200, 204, 217, 0.5)!important;
    transition: all 0.3s ease;
    position: relative;
}
.default-btn-close:hover{
    box-shadow: 0 4px 6px rgba(212, 217, 232, 0.2), 0 5px 10px -1px rgba(174, 180, 198, 0.4), inset 0 0 4px rgba(154, 159, 176, 0.5)!important;
}
.default-btn-close img{
    position: absolute;
    right: 0;
    top: 8px;
}
.contr-modal-btns{
    display: flex;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}
.middle-size-btn{
    width: 150px;
    max-width: 100%;
}
.contr-modal-btns .default-btn-close{
    margin-left: 30px;
}
.contr-modal-body{
    padding: 0 30px 20px 30px;
}
.contr-wrapper label{
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1;
}
.contr-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.contr-left {
    width: calc(50% - 10px);
}
.contr-right {
    width: calc(50% - 10px);
}
.grey-field{
    padding: 0 15px;
    background: #DFE4ED;
    border-color: #DFE4ED;
}
.contr-body{
    padding-top: 15px;
}
.contr-status {
    width: calc(50% - 10px);
}
.contr-select{
    width: 100%;
}
.contragent-one {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    background: #fff;
}
.have-contr-block .contragent-one:last-child {
    margin-bottom: 0;
}
.contragent-left {
    width: calc(100% - 150px);
}
.contragent-right {
    width: 150px;
    text-align: right;
}
.contragent-line {
    display: flex;
    margin-bottom: 20px;
}
.contragent-three {
    width: calc(100% / 3 - 10px);
    margin-left: 10px;
}
.contragent-line .contragent-three:first-child {
    margin-left: 0;
}
.contragent-title {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 5px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.contragent-body {
    font-size: clamp(16px, 3vw, 20px);
}
.have-contr-block{
    margin-top: 30px;
}
.edit-contragent-link {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 1.2;
    color: #06B2ED;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    text-decoration: none;
}
.edit-contragent-link img {
    min-width: 20px;
    margin-right: 7px;
    position: relative;
    top: 2px;
}
.edit-contragent-link span {
    border-bottom: 2px solid #06B2ED;
    transition: all 0.3s ease;
}
.edit-contragent-link:hover span{
    border-bottom: 2px solid #fff;
}
.delete-contragent-link {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 1.2;
    color: #43455A;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    margin-top: 5px;
    text-decoration: none;
}
.delete-contragent-link img {
    min-width: 16px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}
.delete-contragent-link span {
    border-bottom: 2px solid #43455A;
    transition: all 0.3s ease;
}
.delete-contragent-link:hover span{
    border-bottom: 2px solid #fff;
}
.all-co{
    width: 200px;
    max-width: 100%;
}
.pagination-contr{
    margin: 20px auto 15px auto;
}
.add-contragent-btn-block{
    margin-top: 30px;
}
.party-search-block{
    position: absolute;
    z-index: 2;
    margin-top: 3px;
}
.party-search-data {
    background: #F0F2F6;
    border: 1px solid #fff;
    box-shadow: 1px 2px 11px rgba(0,0,0,0.3);
    width: 350px;
    box-sizing: border-box;
    border-radius: 6px;
    padding-bottom: 10px;
}
.party-search-title{
    background: #ffffff;
    display: flex;
    align-items: center;
    line-height: 1.2;
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    box-sizing: border-box;
    margin: 7px;
    color: #43455A;
    padding: 5px;
    border: 1px solid #86EC37;
    border-radius: 6px;
}
.party-search-title img{
    margin-right: 5px;
}
.party-search-name{
    color: #33251d;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1.2;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.party-search-name span{
    color: #009CD1;
}
.party-search-inn{
    color: #33251d;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    margin-top: 5px;
}
.party-search-inn span{
    color: #009CD1;
}
.party-search-address{
    color: #33251d;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1.3;
    margin-top: 2px;
}
.party-search-address span{
    color: #009CD1;
}
.party-search-line {
    padding: 5px 10px 7px 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #D4D9E8;
}
.party-search-line:hover{
    background-color: #ffffff;
}
.party-search-data .party-search-line:last-child{
    border-bottom: none;
}
.party-data-wrapper {
    max-height: 308px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Для Chrome, Edge и Safari */
.party-data-wrapper::-webkit-scrollbar {
    display: none;
}
.show-pass-field{
    padding-right: 38px;
}
.doc-table {
    min-width: 100%;
}
.doc-table tr th {
    padding: 15px 25px;
    border: 1px solid #D4D9E8;
    font-size: 16px;
    background: #DFE4ED;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.doc-table tbody tr {
    position: relative;
}
.doc-table tr td {
    padding: 15px 25px;
    border: 1px solid #D4D9E8;
    font-size: 16px;
}
.doc-table-id-td {
    font-weight: 500;
}
.doc-table tr td.delete-cell {
    border: none;
    max-width: 30px;
    position: absolute;
    padding: 0;
    right: 10px;
    top: 50%;
    margin-top: -15px;
}
.delete-row {
    border: none;
    background: #FF6D6D;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}
.delete-row img{
    position: relative;
    left: 1px;
    top: 1px;
}
.add-buttons {
    margin-bottom: 10px;
}
.add-row {
    border: 1px solid #86EC37;
    width: 100%;
    background: #DCFEC1;
    display: flex;
    align-items: center;
    height: 50px;
    margin-top: -1px;
    color: #51BB00;
    box-sizing: border-box;
    font-size: 16px;
    padding-left: 15px;
    border-radius: 0 0 10px 10px;
}
.add-row span {
    display: flex;
    background: #86EC37;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-right: 25px;
}
.doc-table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.doc-table thead th:first-child {
    border-top-left-radius: 10px;
}

.doc-table thead th:last-child {
    border-top-right-radius: 10px;
}
.editable-tr{
    background: #F5F5F5;
    outline: none;
    box-shadow: none;
}
table.doc-table tbody tr:nth-child(even) {
    background-color: #F0F2F6;
}
.responsive-table {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}
.feature-gal {
    background: linear-gradient(135deg, #5CCE03 0%, #86EC37 100%);
    box-shadow: 0 4px 10px rgba(102, 194, 235, 0.59);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-right: 25px;
}
.feature-one{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #C7C7C7;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.container-feature{
    max-width: 900px;
}
.feature-right{
    display: flex;
    align-items: flex-start;
    order: 1;
    padding-right: 20px;
}
.feature-left{
    order: 2;
    width: 218px;
    min-width: 218px;
}
.feature-text-title{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: clamp(18px, 3vw, 20px);
}
.feature-text-body{
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.3;
    margin-top: 5px;
}
.new-h1{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    color: #06B2ED;
    font-size: clamp(24px, 3vw, 32px);
    text-transform: uppercase;
}
.features-block{
    margin-top: 50px;
}
.green-btn{
    border-radius: 6px;
    height: 50px;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    border: 1px solid #6CD21C;
    background: #6CD21C;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5) !important;
    color: #fff;
}
.green-btn:hover {
    box-shadow: 0 4px 6px rgba(0, 133, 181, 0.2), 0 5px 10px -1px rgba(0, 133, 181, 0.4), inset 0 0 4px rgba(0, 133, 181, 0.5) !important;
}
.bay-rate-block{
    text-align: center;
    margin-top: 50px;
}
.bay-rate-block .green-btn{
    width: 310px;
    max-width: 100%;
    padding-right: 30px;
}
.bay-rate-block .green-btn img{
    margin-right: 15px;
}
.can-edit-modal-btn{
    cursor: pointer;
}
.free-preim {
    margin-top: 30px;
}
.free-preim-body {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.edit-preim-one {
    width: 25%;
}
.free-preim-text {
    font-size: 18px;
    margin-top: 17px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    line-height: 1;
}
.slider-edit-arrow {
    position: absolute;
    top: 40px;
    right: -29px;
}
.free-preim-num{
    display: flex;
    background: #86EC37;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    box-sizing: border-box;
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
}
.free-preim-img{
    background: linear-gradient(to bottom, #06CEEA, #00A9F3);
    width: 90px;
    height: 90px;
    position: relative;
    border: 1px solid #00A9F3;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5);
}
.free-preim-img img{
    position: absolute;
}
.free-preim-img-1 img{
    right: -13px;
    top: 13px;
}
.free-preim-img-2 img{
    right: -25px;
}
.free-preim-img-3 img{
    right: -15px;
    top: 8px;
}
.free-preim-img-4 img{
    right: 20px;
    top: -7px;
}
.free-preim-img-5 img{
    right: -13px;
    top: 13px;
}
.free-preim-img-6 img{
    right: -13px;
    top: 13px;
}
.free-preim-img-7 img{
    right: 7px;
    top: 10px;
}
.preim-next-block{
    margin-top: 30px;
}
.edit-open-title{
    font-size: 18px;
    color: #00A9F3;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: underline;
}
.edit-open-title:hover{
    text-decoration: none;
}
.edit-open-block{
    margin-top: 20px;
}
.edit-open-body{
    display: none;
}
.preim-next-block .default-btn{
    margin: 0 auto;
}
.instruction-modal{
    padding-bottom: 40px;
}
.modal-wrapper-middle{
    width: 430px;
    max-width: calc(100% - 30px);
}
.modal-body-padding{
    padding: 60px 30px 30px 30px;
}
.vse-ravno-new{
    background: linear-gradient(to bottom, #06CEEA, #00A9F3);
    width: 90px;
    height: 90px;
    position: relative;
    border: 1px solid #00A9F3;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8), 0 5px 10px -1px rgba(102, 194, 235, 0.59), inset 0 0 4px rgba(0, 133, 181, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vse-ok{
    position: absolute;
    left: -16px;
    bottom: 8px;
}
.edit-modal-title{
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 30px;
    color: #01B3F0;
}
.free-media-new{
    background: #DCFEC1;
    font-size: 14px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 20px;
    margin-top: 20px;
}
.free-media-new img{
    min-width: 31px;
    margin-right: 20px;
}
.free-media-new-danger{
    background: #FFE2E2;
}
.free-media-new-danger img{
    min-width: 44px;
}
.modal-reg-note-brown{
    line-height: 1;
    text-align: center;
}
.default-middle-btn{
    font-size: 20px;
    height: 40px;
}
.two-button-modal{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.two-button-modal button{
    width: calc(50% - 10px);
}
.qr-title{
    text-align: center;
    margin-top: 15px;
}
#qrcode{
    margin: 15px auto 0 auto;
}
#qrcode img{
    margin: 0 auto;
    width: 120px;
    max-width: 100%;
}
.price-free-block{
    background: #DFE4ED;
    border-radius: 15px;
    padding: 15px;
    margin-top: 20px;
}
.free-cost{
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.one-button-modal{
    margin-top: 30px;
    text-align: center;
}
.one-button-modal button{
    width: 160px;
    max-width: 100%;
}
.copy-link-ico{
    background: #86EC37;
    width: 45px;
    height: 45px;
    display: flex;
    min-width: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-left: 15px;
}
.copy-link-ico img {
    min-width: 29px;
    margin-right: 0;
}
.doc-toast {
    position: fixed;
    z-index: 9999;
    right: 15px;
    top: 30px;
    width: 270px;
    max-width: calc(100% - 30px);
    background: #fff;
    box-shadow: 0 5px 9px rgba(0,0,0,.15);
    border-radius: 7px;
    overflow: hidden;
}
.doc-toast-status{
    font-family: 'Montserrat-Medium', sans-serif;
    padding: 5px 15px;
    color: #fff;
}
.doc-toast-body{
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1.3;
}
.doc-toast-ok .doc-toast-status{
    background: #86EC37;
}
.doc-toast-error .doc-toast-status{
    background: #FF6D6D;
}
.copy-edit-link {
    cursor: pointer;
}
.soglasovanie-line {
    padding: 10px 15px 10px 30px;
    background: #DCFEC1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: 20px;
}
.soglasovanie-text img {
    margin-right: 10px;
    position: relative;
    bottom: 1px;
}
.soglasovanie-text {
    margin-right: 20px;
}
.soglasovanie-line-button{
    border: none;
    background: #86EC37;
    border-radius: 6px;
    font-size: 16px;
    padding: 10px 25px;
    color: #43455A;
    text-decoration: none;
}
.edit-link-container{
    margin-top: 30px;
}
.cant-edit-block {
    position: absolute;
    width: 100%;
    height: calc(100% - 90px);
    z-index: 999;
    left: 0;
    top: 0;
}
.podscazca-doc{
    position: relative;
}
.dop-img{
    position: relative;
}
.dop-img img{
    position: absolute;
    right: 0;
}
.dop-img .dop-img-1{
    top: 8px;
}
.dop-img .dop-img-2{
    top: 10px;
}
.dop-img .dop-img-3{
    top: 8px;
}
.block-three-buttons button{
    width: 245px;
    max-width: 100%;
}
.dop-pr-45{
    padding-right: 45px;
}
.edit-more-line {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    z-index: 1000;
}
.red-color-edit{
    color: #FF6D6D;
    margin-left: 5px;
}
.edit-doc-end-with{
    background: #86EC37;
    border-radius: 15px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 30px;
}
.edit-doc-end-with .default-link-button{
    box-shadow: none!important;
}
.edit-doc-end-text{
    font-size: clamp(18px, 3vw, 20px);
    font-family: 'Carlito', sans-serif;font-weight: 700;
    display: flex;
    align-items: center;
}
.edit-doc-end-text .stop-efit-ico{
    min-width: 25px;
    margin-right: 10px;
}
.just-text-modal{
    font-family: 'Carlito', sans-serif;font-weight: 700;
    font-size: clamp(18px, 3vw, 20px);
    line-height: 1.1;
    margin-top: 25px;
}
.user-edit-field{
    background: #FFE2E2!important;
    border: 1px solid #FF6D6D!important;
}
.all-blocks-wrapper {
    display: none;
}
.hidden-blocks-wrapper {
    display: none;
}
.header-logo{
    position: relative;
    bottom: 4px;
}
.footer-email{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.radio-open-one {
    display: flex;
    align-items: center;
    margin-top: 15px;
    line-height: 1;
}
.radio-open-btn {
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #01B3F0;
    position: relative;
    cursor: pointer;
    margin-right: 7px;
    min-width: 26px;
}
.radio-open-btn-active::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: #01B3F0;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}
.add-open-btn-block{
    margin-top: 20px;
}
.checked-by-user .custom-radio .custom-control-input:checked ~ .custom-control-new {
    background-color: #FFE2E2 !important;
    border-color: #FF6D6D !important;
}
.checked-by-user .custom-radio .custom-control-input:checked ~ .custom-control-new span {
    color: #1e1a18!important;
}
.edit-doc-end-text img{
    margin-right: 10px;
}
.approval-instruction{
    width: 211px;
    max-width: 100%;
    cursor: pointer;
    font-size: 20px;
    justify-content: flex-start;
    padding: 0 15px;
}
.block-title h1{
    color: #06B2ED;
    font-size: clamp(22px, 3vw, 32px);
    font-family: 'Carlito', sans-serif;font-weight: 700;
    text-transform: uppercase;
}
.for-page-block{
    margin-top: 40px;
}
.edit-line-one {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.edit-line-title {
    width: 15%;
    line-height: 1;
}
.edit-line-link {
    width: 30%;
    line-height: 1;
}
.edit-line-date {
    width: 15%;
    line-height: 1;
}
.edit-line-status {
    width: 16%;
    line-height: 1;
}
.edit-line-action {
    width: 17%;
    text-align: end;
}
.edit-body-one {
    padding: 10px 5px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}
.edit-btn {
    display: inline-block;
    font-size: 12px;
    color: #43455A;
    text-align: center;
    text-decoration: none;
}
.edit-media {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}
.edit-close-btn .edit-media {
    background: #FF8E8E;
}
.edit-more-btn {
    margin-left: 5px;
}
.edit-more-btn .edit-media {
    background: #86EC37;
}
.del-doc-text{
    display: inline-block;
    font-size: 12px;
    color: #43455A;
    text-align: center;
    text-decoration: none;
    margin-left: 5px;
}
.del-doc-text .del-doc-img{
    margin-left: 0;
    margin-right: 2px;
    width: 30px;
    height: 30px;
    min-width: 30px;
}
.lk-body .edit-line-one:nth-child(2n) {
    background: #fff;
}
.lk-body .edit-line-one:nth-child(2n+1){
    background: #EAEDF3;
}
.approval-btn{
    background: #86EC37;
    color: #fff;
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 160px;
    margin-left: auto;
    font-size: 16px;
}
.for-page-block .lk-body .edit-line-action {
    padding-top: 5px;
}
.edit-line-link a{
    color: #06B2ED;
}
.green-color-text{
    background: #DCFEC1;
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    margin-left: auto;
    font-size: 14px;
}
.edit-line-status .red-color{
    background: #FFE2E2;
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    margin-left: auto;
    font-size: 14px;
}
.highlight-blue{
    color: #06B2ED;
}
.data-text-approval{
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.hide-btns-block .step-new-block {
    display: none;
}
.terms-form-block-app{
    padding: 0 25px;
}
.need-reg{
    line-height: 1;
    font-size: 18px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.doc-pay-weight{
    width: 200px;
}
.data-text-new{
    font-size: 20px;
    color: #01B3F0;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.data-note-new{
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.3;
}
.data-text-subscribe-block{
    background: #FFF;
    border-radius: 15px;
    margin: 0 auto 0 auto;
    text-align: center;
    width: 430px;
    max-width: 100%;
    padding: 30px 15px 30px 15px;
}
.subscribe-start-text{
    font-size: clamp(18px, 2vw, 20px);
}
.btn-add-contragent{
    display: inline-flex;
    color: #fff;
    background: #86EC37;
    text-decoration: none;
    border-radius: 6px;
    width: 220px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-top: 20px;
    text-transform: uppercase;
}
.subscribe-list-block{
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}
.subscribe-list-one{
    text-align: center;
    width: 30%;
}
.add-subscribe-block{
    background: #fff;
    border-radius: 15px;
    padding: 30px 30px 40px 30px;
}
.subscribe-btn-block{
    margin-top: 60px;
}
.add-subscribe-block form{
    margin-bottom: 0;
}
.add-subscribe-title{
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.tariff-switch{
    margin-bottom: 20px;
}
.subscribe-price{
    font-size: 20px;
    font-family: 'Carlito', sans-serif;font-weight: 700;
}
.subscribe-body .number-input{
    margin-top: 10px;
}
.number-input button{
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #D4D9E8;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.number-input .quantity{
    width: 40px;
    display: inline-flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    padding: 0;
}
.agreement-subscribe-block{
    width: 710px;
    max-width: 100%;
    margin: 0 auto;
}
.agreement-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #01B3F0;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    top: 4px;
    margin-right: 5px;
}
.agreement-checkbox:checked {
    background-color: #01B3F0;
    border-color: #01B3F0;
}
.agreement-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.sub-agreement-text{
    margin-top: 20px;
}
.sub-agreement-note{
    margin-top: 10px;
}
.error-message{
    color: darkred;
}
.error-agreement{
    position: absolute;
}
.stop-subscribe-form {
    width: 100%;
    margin-top: 20px;
    display: none;
    background: #fff;
    border-radius: 15px;
    padding: 15px 15px 15px 30px;
    align-items: center;
    justify-content: space-between;
}
.stop-subscribe-block{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-size: 20px;
}
.stop-subscribe-block .default-btn-close{
    margin-left: 20px;
}
.data-subscribe-block-stop{
    padding-bottom: 0;
}
.data-subscribe-block-stop .subscribe-start-text{
    line-height: 1;
    margin-bottom: 10px;
}
.you-create-block{
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-size: 20px;
}
.you-create-block img{
    margin-right: 20px;
    min-width: 22px;
}
.contr-field-block {
    width: 100%;
}
.employe_error{
    color: darkred;
    line-height: 1.1;
}
.edit-emloyee-link{
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 1.2;
    color: #06B2ED;
    font-family: 'Carlito', sans-serif;font-weight: 700;
    text-decoration: none;
}
.edit-emloyee-link img {
    min-width: 20px;
    margin-right: 7px;
    position: relative;
    top: 2px;
}
.edit-emloyee-link span {
    border-bottom: 2px solid #06B2ED;
    transition: all 0.3s ease;
}
.need-sub-btn{
    position: relative;
    border: 1px solid #5FDB00;
    background: #86EC37;
}
.need-sub-btn img{
    position: absolute;
    left: 10px;
    top: 11px;
}
.alternate-body .sbs-list li {
    align-items: flex-start;
}
.alternate-body .sbs-list li img {
    position: relative;
    top: 5px;
}
.one-doc-sbs-wrapper .sbs-sum{
    margin-top: 0;
}
.helper-wrapper{
    display: inline-flex;
    margin-left: 2px;
    position: relative;
    bottom: 1px;
}
.helper-show-body {
    background-color: #fff;
    border: 1px solid #DFE4ED;
    padding: 10px 20px;
    width: 250px;
    font-size: 14px;
    color: #33251d;
    position: absolute;
    bottom: 40px;
    left: -113px;
    line-height: 1.3;
    text-align: left;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-radius: 7px;
}
.helper-wrapper:hover .helper-show-body {
    display: block;
    opacity: 1;
}
.helper-show-body::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    border-width: 12px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    margin-left: -12px;
}
.helper-show-body::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    border-width: 12px;
    border-style: solid;
    border-color: #DFE4ED transparent transparent transparent;
    margin-left: -12px;
}
.sub-note {
    margin-left: 5px;
}
.new-rate-docs-umlim{
    font-size: 64px;
    margin-top: 50px;
    margin-bottom: 45px;
}
.sbs-wrapper .number-input .minus, .sbs-wrapper .number-input .plus{
    background-color: #86EC37;
}
.new-rate-price-employee img{
    margin-left: 2px;
}
.sbs-body-base{
    margin-bottom: 80px;
}
.sbs-sum-pro{
    margin-top: 39px;
}
.subscribe-one-media{
    height: 120px;
}
.rates-faq{
    margin-top: 30px;
}
.template-cost-line{
    font-size: 18px;
    position: relative;
    bottom: 30px;
}
.small-pass{
    display: none;
}
