:root {
    --primary-color: #e4002b;
    --text-color-dark: #222025;
    --text-color-light: #fff;
    --text-opacity: 0.45;
    --logo-width: 300px;
    --header-height: 130px;
}

.table {
    width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Korzinka-Regular";
    background: #fff;
    display: none;
}

.wrapper {
    height: 100%;
    /* overflow-x: hidden; */
}

.container {
    width: 90%;
    margin: 0 auto;
}

header {
    width: 100%;
    height: 6rem;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: all .4s cubic-bezier(.41,.35,.02,.94) 0s;
    background-color: #fff;
    /* z-index: -1; */
}

aside {
    position: fixed;
    top: var(--header-height);
    width: var(--logo-width);
}

main {
    margin-top: var(--header-height);
    margin-left: var(--logo-width);
    padding: 0 65px 65px;
}

textarea {
    font-family: "Korzinka-Regular";
    resize: none;
    height: 5em;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: var(--logo-width);
}

.logo--mobile {
    display: none;
}

.logo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locale {
    position: relative;
}

.locale__menu {
    position: absolute;
    top: 30px;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgb(48 46 51 / 12%);
    border-radius: 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    animation: fadeTop 0.3s;
    z-index: 20000;
}

.locale__menu_active {
    visibility: visible;
    opacity: 1;
    animation: fadeBottom 0.3s;
}

.locale__menu--item {
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.4s;
}

.locale__menu--item:hover {
    background: var(--primary-color);
    color: #fff;
}

.locale__dropdown {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.locale__value--text {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color-dark);
}

.locale__value--arrow {
    margin-left: 8px;
    transition: 0.2s;
}

.locale__value--arrow_active {
    transform: rotate(180deg);
}

.info {
}

.info__title {
    font-weight: 700;
    font-size: 25.2863px;
    line-height: 27px;
    color: var(--text-color-dark);
    margin-bottom: 24px;
}

.info__subtitle {
    font-weight: 700;
    font-size: 19px;
    color: var(--text-color-dark);
    margin: 24px 0 8px;
}

.info__text {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color-dark);
    opacity: var(--text-opacity);
    margin-bottom: 8px;
}

.info__text_danger {
    color: var(--primary-color);
}

.link--default {
    text-decoration: none;
    color: inherit;
}

.form__person {
    margin-bottom: 44px;
}

.form__field {
    border: none;
    display: flex;
    align-items: center;
}

.form__field_block {
    margin-bottom: 16px;
}

.form__field_default {
    margin-bottom: 4px;
}

.form__label--container {
    width: 250px;
}

.form__field--label {
    font-size: 17px;
    color: #222025;
    position: relative;
}

.form__field--label_bold {
    font-size: 19px;
    font-weight: bold;
}

.form__field--label_transparent {
    opacity: 0.5;
}

.switch-field {
    display: flex;
    overflow: hidden;
    padding: 4px;
    background: #fff;
    border-radius: 10px;
}

.switch-field input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    display: flex;
    background: #fff;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    text-align: center;
    padding: 8px 16px;
    transition: all 0.1s ease-in-out;
    border-radius: 8px;
}

.switch-field label:not(:last-child) {
    margin-right: 10px;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background: var(--primary-color);
    color: var(--text-color-light);
}

.input {
    background: #F7F7F9;
    border-radius: 30px 15px;
    border: none;
    outline: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--text-color-dark);
    padding: 13px 16px;
    border: 1px solid #fff;
    font-family: "Korzinka-Regular";
}

.input_readonly {
    border: none;
    background: #eeeeee;
}

.input_full {
    width: 100%;
}

.input_xl {
    width: 430px;
}

.input_lg {
    width: 284px;
}

.input_md {
    width: 211px;
}

.input_sm {
    width: 138px;
}

.input_xs {
    width: 100px;
}

.form__field--wrap {
    display: flex;
    justify-content: space-between;
    width: 430px;
}

.form__field--col {
    display: flex;
    flex-direction: column;
}

.form__field--col label {
    font-weight: 400;
    font-size: 13.0505px;
    color: var(--text-color-dark);
    opacity: var(--text-opacity);
    margin-top: 4px;
    position: relative;
    width: fit-content;
}

.btn {
    cursor: pointer;
    transition: 0.4s;
}

.btn_default {
    border-radius: 10px;
}

.btn_lg {
    width: 430px;
}

.btn_full {
    width: 100%;
}

.btn_primary {
    background: var(--primary-color);
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    border-radius: 40px 20px;
    border: none;
    padding: 19px 24px;
    white-space: nowrap;
}

.btn_outline {
    border: 1px solid var(--primary-color);
    padding: 13px 0;
    border-radius: 30px 15px;
    background: transparent;
    font-weight: 400;
    font-size: 19px;
    color: var(--primary-color);
}

.btn_outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.form__file--container {
    margin-top: 40px;
}

.form__file--wrap {
    width: 430px;
}

.form__file--desc {
    width: 250px;
    opacity: var(--text-opacity);
    padding: 8px 50px 8px 0;
}

.form__file--label {
    font-size: 17px;
    color: var(--text-color-dark);
    font-weight: bold;
    margin-bottom: 4px;
    width: fit-content;
    position: relative;
}

.form__file--text {
    font-weight: 400;
    font-size: 13.0505px;
    color: var(--text-color-dark);
}

.form__file--cadastre,
.form__file--identity {
    width: 430px;
    height: 100px;
    /* background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='#E4002B' stroke-width='2' stroke-dasharray='16' stroke-dashoffset='2' stroke-linecap='square'/%3e%3c/svg%3e"); */
    border-color: rgb(248, 152, 152);
    border-style: dashed;
    border-width: 2px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.form__file--cadastre_mobile {
    display: none;
}

.form__file--upload-title {
    font-weight: 400;
    font-size: 12.8378px;
    color: var(--primary-color);
    opacity: 0.5;
}

.form__list {
    list-style: none;
}

.form__file {
    position: relative;
    padding: 10px 12px;
    background: #fff;
    margin: 8px 0;
    border-radius: 12px;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color-dark);
}

.form__basket {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.form__submit {
    margin-top: 75px;
}

.underline {
    text-decoration: underline;
}

.form__field[data-person="2"] {
    display: none;
}
.form__field[data-location="2"] {
    display: none;
}

.radio-label {
    white-space: nowrap;

}
label.radio-label {
    border-radius: 30px 15px;
    padding: 13px;
}

.form__file strong {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 300px;
    overflow: hidden;
}

.popup__map--container {
    width: 90%;
    height: 75%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}

.popup__map {
    width: 100%;
    height: 100%;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 10;
    filter: drop-shadow(0px 4px 42px rgba(0, 0, 0, 0.25));
    backdrop-filter: blur(50px);
}

.is-visible {
    visibility: visible;
    opacity: 1;
}

.popup__body,
.popup__content {
    height: 100%;
    position: relative;
}

.popup__submit {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

input:read-only {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.input_invalid {
    border: 1px solid var(--primary-color);
}

.error--message {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 13px;
}

.btn-disabled {
    pointer-events: none;
    background-color: #ccc;
}

label.error {
    display: none;
}

.success--result {
    display: none;
}

.success--result__title {
    width: 592px;
    font-weight: 700;
    font-size: 46.698px;
    color: var(--text-color-dark);
}

.success--result__btn {
    margin-top: 24px;
}

.form__field--col-sm {
    width: 100px;
}

.form__field_start {
    align-items: flex-start;
}

.form__field--label_requi#E4002B::after {
    content: "*";
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 10px;
    color: #E4002B;
}

#upload {
    /* visibility: hidden; */
    /* width: 0; */
    /* height: 0; */
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    margin: 8px;
    border: 2px solid #E4002B;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #E4002B transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

#geo_changed {
    display: none;
}

.form__location--actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.form__location--col {
    width: 49%;
}

.form__file--overlay {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 90%;
    border-radius: 10px;
    background: #ef6e85;
    color: #fff;
}

#cadastre_error {
    margin-top: 10px;
}

#search_location {
    position: absolute!important;
    top: 9px!important;
    left: 430px!important;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeBottom {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeTop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(40px);
        opacity: 0;
    }
}

@font-face {
    font-family: "Korzinka-Regular";
    src: url(../fonts/Korzinka-Regular.otf);
}


@font-face {
    font-family: "Korzinka-Italic";
    src: url(../fonts/Korzinka-Italic.otf);
}

@font-face {
    font-family: "Korzinka-Bold-Italic";
    src: url(../fonts/Korzinka_DisplayExtraBoldItalic.otf);
}

@font-face {
    font-family: "Korzinka-Extra-Bold-Italic";
    src: url(../fonts/Korzinka_DisplayExtraBoldItalic.otf);
}

@font-face {
    font-family: "Korzinka-Light";
    src: url(../fonts/Korzinka-Light.otf);
}

@font-face {
    font-family: "Korzinka-Black";
    src: url(../fonts/Korzinka-Black.otf);
}

@font-face {
    font-family: "Korzinka-Bold";
    src: url(../fonts/Korzinka-Bold.otf);
}

.header__menu {
    display: flex;
}
.header__menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__menu-list li {
    position: relative;
    list-style-type: none;
    margin-right: 36px;
    text-align: center;
    height: 100%;
}
.header__menu-list li svg path {
    transition: .3s;
}
.header__menu-list li:hover svg path{
    fill: #E4002B;
}
.header__menu-list li:hover .stroke {
    stroke: #E4002B;
}
.header__menu-list li:hover svg {
    fill: #E4002B;
}
.header__menu-list li:hover a{
    color: #E4002B;
}

.header__menu-list .menu-more:hover svg {
    fill: #E4002B;
}

.header__menu-list .menu-more:hover {
    color: #E4002B;
    cursor: pointer;
}
.menu-more {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.menu-more p {
    transition: .3s;
}
.menu-more svg {
    width: 27px;
    height: 27px;
    margin-top: 4px;
    fill: black;
}
.header__menu-list li a {
    color: black;
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: .3s;
}

#sub-menu {
    position: absolute;
    background-color: #fff;
    padding: 20px 24px;
    box-shadow: 0 6px 20px rgb(48 46 51 / 12%);
    border-radius: 8px;
    transition: .3s;
    top: 5rem;
    right: -13rem;
    width: 17rem;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 35px;
}
#sub-menu a {
    color: #000;
    transition: .3s;
}
#sub-menu a:hover {
    color:#E4002B;
}
.menu-more:hover #sub-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-poly {
    position: absolute;
    top: -23px;
}
.dropdown-poly svg path{
    fill: #fff !important;
}

.header__mob {
    display: none;
}
#mob_more {
    display: none;
}
#mob_menu {
    display: none;
}
#sub-mob_menu {
    display: none;
}

.form__file--cadastre {
    border-radius: 60px 30px;
}

.lang-switcher {
    margin-bottom: 3px;
}

.lang-switcher:hover {
    background-color: red;
    transition: 0.4s;
    cursor: pointer;
}

.lang-switcher-a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px 20px;
}

.lang-switcher-a:hover {
    color: white;
}

.export-block {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

.card-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header-name {
    padding: 5px;
}

.datepicker {
    margin: 0 5px;
}

.custom-btn {
    margin: 0 5px;
}

#agent-form {
    display: flex;
    flex-wrap: wrap;
}

#proposal-form {
    display: flex;
    flex-wrap: wrap;
}

.modal-dialog {
    max-width: 1000px;
}

.phone_numbers {
    display: flex;
    align-items: center;
}

.remove-phone-number {
    margin-left: 10px;
}
