:root {
    --black: #072431;
    --green: #115056;
    --orange: #eb5d1f;
    --ohover: #ce5420;
    --biruse: #44b8b0;
    --light: #eef4f3;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.form-container-wrap {
    min-height: 600px;
    width: 450px;
    margin: auto;

}

[disabled] {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

.loaded {
    position: relative;
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.6);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.loaded::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;

    border-radius: 1000px;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--green);
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    -webkit-animation: rotate-center 1s linear infinite both;
    animation: rotate-center 1s linear infinite both;
    z-index: 3;
}

.title-form,
.logo-container {
    text-align: center;
}

.form-container-wrap .title-form {
    font-size: 1.6rem;
    color: var(--green);
}

.input-block label {
    color: var(--black);
}

.form-container {
    padding: 20px 50px;
    border: 2px solid var(--light);
    background: #fff;
}

.input-block input:not([type="hidden"]):focus,
.input-block input:not([type="hidden"]) {
    color: #fff;
    background: var(--green);
    border-radius: 0;
}

.text-center {
    text-align: center;
}

.access-text {
    font-size: .8rem;
    color: var(--green);
}

.access-text a {
    color: var(--green);
    text-decoration: underline;
}

.btn {
    padding: 0px 40px;

    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.form-container .btn-orange {
    border: 2px solid var(--orange);
    background: var(--orange);
    color: #fff;


    font-size: 1.4rem;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}


.btn:hover {
    border: 2px solid var(--ohover);
    background: var(--ohover);
}

.form-container .btn-orange {
    width: 100%;

}

.form-container .btn-orange[disabled] {
    background: #fff;
    border: 2px solid var(--light);
    cursor: default;
    pointer-events: none;
    color: var(--green);
    opacity: 1;
}

.bg-page {
    background: url(../images/lines_adviros_blue.svg) no-repeat right bottom;
    background-size: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.logo-container img {
    width: 220px;
}



.overflow {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: 0.5s;
    display: none;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
}

.overflow.fade {
    display: block;
}

.overflow.fade.in {
    visibility: visible;
    opacity: 1;
}

.overflow .modal-container {
    width: max-content;

    background: #fff;
    margin: auto;
    margin-top: 10vh;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s;
    border: 2px solid var(--light);
}

.overflow .body-modal {
    padding: 20px;
}

.overflow .close {
    width: 30px;
    display: block;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    color: #072431;
}

.overflow.fade.in .modal-container {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    box-shadow: 0px 0px 13px 0px rgba(34, 60, 80, 0.3);
}

.overflow .modal-container.alert {
    width: 350px;
}

.input-block.error input,
.input-block.error label,
.input-block.error {
    color: red;
}

.body-lk {
    background: var(--light);

}

.container {
    max-width: 1200px;
    margin: auto;
    width: 90%;

}

.aside-wrap {
    min-height: 60vh;
}

.aside-wrap .left {
    background: #fff;
    padding: 20px;
    width: 250px;
}

.aside-wrap .content-block {
    width: calc(100% - 280px);
}

.aside-wrap .title {
    text-align: center;
    font-size: 1.4rem;
    color: var(--green);
    font-weight: bold;
}

.arrow-right::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    position: relative;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 13L11 8L6 3' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
    transform: translateY(6px);
}

.btn-orange[type="submit"],
.btn-orange {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 20px;
    text-decoration: none;
    color: #fff;
    background: var(--orange);
    border: 2px solid var(--orange);
    transition: all .3s ease-in-out;
}

.form-container .btn-orange[type="submit"] {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-orange[type="submit"]:hover,
.btn-orange[type="submit"].active,
.btn-orange.active,
.btn-orange:hover {
    background: var(--ohover);
    color: #fff;
    border: 2px solid var(--ohover)
}

.btn-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 20px;
    text-decoration: none;
    color: var(--orange);
    background: #fff;
    border: 2px solid var(--orange);
    transition: all .3s ease-in-out;
}

.btn-white:hover {
    background: var(--ohover);
    color: #fff;
    border: 2px solid var(--ohover)
}

.btn-white.arrow-right::after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 13L11 8L6 3' stroke='%23c4460d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
}

.btn-white.arrow-right:hover::after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 13L11 8L6 3' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
}

.aside-flex.flex-betwen.flex-collumn {
    height: 100%;
}

.profil-wrap {
    gap: 30px;
}

.profil-wrap .item-data {
    background: #fff;
    padding: 45px;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    font-size: 28px;
    color: var(--green);
    width: calc(100% / 2 - 15px);
}

.content-block .tab-content.active,
.content-block .tab-collumn,
.content-block .tab-content,
.content-block .tab-contents {
    min-height: 100%;
}

.tab-collumn {
    padding-top: 40px;
}

.content-block .tab-contents {
    position: relative;
    overflow: hidden;
}

.content-block .tab-contents .tab-content {
    position: absolute;
    top: 0;
    left: 100%;

    opacity: 0;

}

.content-block .tab-contents .tab-content.active {
    opacity: 1;
    left: 0;
    transition: all .5s ease-in-out;
    position: relative;
}

.loaded {
    position: relative;
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(2px);
    z-index: 3;
}

.loaded::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;

    border-radius: 1000px;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--orange);
    border-top: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);

    -webkit-animation: rotate-center 1s linear infinite both;
    animation: rotate-center 1s linear infinite both;
    z-index: 3;
}

.body-modal .loaded {
    min-height: 60vh;
}

.modal-container.otchet {
    min-width: 100%;
    margin-top: 10px;
}

.modal-container iframe {
    border: none;
}

.modal-container .list-pages .active:not(button) {
    margin-top: 10px;
    padding: 5px;
    background: #f5f4f4;
    gap: 10px;
}

.modal-container .list-pages {
    max-width: 90vw;
    overflow-x: auto;
}

.modal-container .list-pages .active button {
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: all .3s ease-in-out;
    background: #fff;
    white-space: nowrap;
}

.modal-container .list-pages .active button.active,
.modal-container .list-pages .active button:hover {
    background: var(--orange);
    color: #fff;
}

.overflow .body-modal {
    width: 100%;
}

.overflow {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-y: auto;
}

.form-support {
    padding: 20px;
    background: #fff;
}

.form-support .input-block+.input-block {
    margin-top: 30px;
}

.form-support .input-block textarea {
    height: 200px;
}

.date-stop {
    padding: 20px;
    font-size: 14px;
    background: #44b8b0;
    color: #fff;
}