@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    --primary-orange: #E9551B;
    --primary-orange-t10: rgba(233, 85, 27, 0.1);
    --text-on-primary: #FFFFFF;
    --text-color: #353C41;
    --page-background: #F5F5F5;
    --footer-background: #353C41;
    --background: #FFFFFF;
    --form-control-color: #e55518;
    --form-control-disabled: #959495;
}

.form-control {
    margin-top: 2rem;
    font-weight: normal;
    font-size: 18px;
    line-height: 1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 15px;
    background-color: transparent;
    border: none;
    color: #FFFFFF;
}

.form-control + .form-control {
    margin-top: 1em;
}

.form-control--disabled {
    color: var(--form-control-disabled);
    cursor: not-allowed;
}

input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: #FFFFFF;
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #FFFFFF;
    border-radius: 0.15em;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);

    color: var(--form-control-disabled);
    cursor: not-allowed;
}

body {
    background: var(--page-background);
    font-family: 'Open Sans', Verdana, Helvetica, Arial, serif;
    color: var(--text-color);
}

.container-xl {
    /*min-width: 1320px !important;*/
    margin: 0 auto;
    padding: 0;
}

.section-container {
    width: 100%;
    background-color: var(--background);
}
.section-container-top-menu {
    background-color: transparent;
}

section {
    max-width: 1712px;
    margin: 0 auto;
}

section.top-menu {
    height: 109px;
}

section.top-menu {
    height: 109px;
    padding-left: 12px;
    padding-right: 12px;
}

section.top-menu img {
    height: 40px;
}

a.menu-register {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-on-primary);
    font-size: 18px;
    font-weight: lighter;
    background-color: var(--primary-orange);
    border-radius: 25px;
    height: 50px;
    padding-left: 25px;
    padding-right: 25px;
    text-decoration: none;
}

a.menu-enter {
    margin-left: 16px;
    font-size: 18px;
    font-weight: lighter;
    border: var(--primary-orange) solid 2px;
    border-radius: 25px;
    height: 50px;
    padding-left: 25px;
    padding-right: 25px;
    text-decoration: none;
    color: var(--text-color);
}

a.menu-enter img {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.banner {
    background-image: url("../images/site/map-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.banner h1 {
    font-weight: bold;
    font-size: 48px;
}

.banner h2 {
    font-weight: normal;
    font-size: 32px;
}

.middle-menu {
    margin-top: 40px;
}


.middle-menu a.menu-enter {
    background-color: var(--background);
}


.eagle-top-container {
    position: relative;
    width: 371px;
}

.eagle-top-container img.eagle {
    display: block;
    margin-top: -29px;
}

.eagle-top-container img.flags {
    display: block;
    margin-right: -29px;
    width: 132px;
    height: 350px;
}

.facts div {
    background-color: var(--primary-orange-t10);
    margin-right: 28px;
    border-radius: 8px;
    padding: 0 10px;
}

.facts div:last-child {
    margin-right: 0;
}

.facts div img {
    display: block;
    width: 100px;
    height: 100px;
}

.facts div span {
    display: block;
    font-weight: normal;
    font-size: 22px;
}

.strengths {
    padding: 80px 0;
}

.strengths section {
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    background-image: url("../images/site/strengths-eagle.svg");
    background-position: left center;
    background-repeat: no-repeat;
    padding: 40px 40px 40px 387px;
}

.strengths section .items-container {
    width: 100%;
}

.strengths .header {
    font-weight: 800;
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.strengths .header span {
    color: var(--primary-orange);
}

.strengths .item {
    border-radius: 8px;
    background-color: var(--page-background);
    margin-bottom: 20px;
    margin-right: 292px;
}

.strengths .item:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

.strengths .item b {
    border-radius: 8px 0 0 8px;
    display: block;
    width: 60px;
    text-align: center;
    background-color: var(--primary-orange);
    color: var(--text-on-primary);
    font-size: 80px;
    line-height: 80px;
    font-weight: bold;
    padding: 13px 0;
}

.strengths .item div {
    margin-left: 16px;
}

.strengths .item div span {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.strengths .item div i {
    display: block;
    font-style: normal;
    font-size: 18px;
    font-weight: normal;
}

.strengths .tariffs-cont {
    width: 269px;
    height: 355px;
    margin-left: -269px;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    background-color: var(--page-background);
    padding: 20px;
}

.strengths .tariffs-cont .head {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.strengths .tariffs-cont .sub-head {
    text-align: center;
    font-weight: normal;
    font-size: 15px;
}

.strengths .tariffs-cont table {
    margin-top: 20px;
    border-top: 1px solid var(--primary-orange);
    width: 100%;
    border-spacing: 0;
}

.strengths .tariffs-cont td {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 20px;
}

.strengths .tariffs-cont .tariff-description {
    font-weight: lighter;
    font-size: 10px;
}
.telegram  {
    padding-bottom: 42px;
}

.telegram section {
    background-image: url("../images/site/telegram.png");
    background-size: 620px 230px;
    background-repeat: no-repeat;
    background-position: right center;
}

.telegram section .header{
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 80px;
}

.telegram section .header a{
    color: var(--primary-orange);
    text-decoration: none;
}

.telegram section .header span{
    color: var(--primary-orange);
    text-decoration: none;
}

.telegram section .scheme{
    margin-right: 320px;
}

.telegram section .scheme div{
    background-color: var(--page-background);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}

.telegram section .scheme a{
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.telegram section .scheme b{
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.telegram section .scheme span{
    display: block;
    width: 88px;
    height: 88px;
    background-image: url("../images/site/icon-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

.form-section {
    background-color: var(--page-background);
    background-image: url("../images/site/map-offices.svg");
    background-position: -50px 70px;
    background-repeat: no-repeat;
}

.form-section .map  {
    padding-top: 40px;
    height: 935px;

}

.form-section .map .header  {
    min-width: 600px;
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 80px;
}

.form-section .map .header span  {
    color: var(--primary-orange);
}

.form-section .form  {
    padding-top: 40px;
    height: 935px;
    background-color: var(--primary-orange);
    border-radius: 20px 0 0 20px;
}

.form-section .form .container {
    width: 600px
}

.form-section .form .header {
    min-width: 600px;
    font-weight: bold;
    font-size: 42px;
    color: var(--text-on-primary);
    margin-bottom: 30px;
}

.form-section .form .hd2 {
    font-weight: 600;
    font-size: 22px;
    color: var(--text-on-primary);
}

.footer {
    background-color: var(--footer-background);
}

.footer section {
    padding: 40px 0;
}

.footer a.button {
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
    background-color: var(--background);
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
}

.footer a.button img {
    margin-left: 15px;
    width: 30px;
    height: 30px;
}

.footer .filial-address {
    color: var(--text-on-primary);
    margin-right: 30px;
    font-size: 16px;
}

.footer .filial-address:last-child {
    margin-right: 0;
}

.footer .filial-address b {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.footer .pd {
    flex-grow: 1;
    text-align: right;
}

.footer .pd a {
    font-size: 14px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}


.input-container {
    margin-top: 10px;
    position: relative;
}

.input-container input {
    height: 48px;
    width: 100%;
    border: 2px solid #FFFFFF;
    background: #E9551B;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 16px;
}

.input-container .label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.input-container input, .input-container .label .text {
    font-size: 16px;
}

.input-container .label .text {
    transition: all 0.15s ease-out;
    color: #FFFFFF;
}

.input-container input:focus {
    outline: none;
    border: 2px solid #FFFFFF;
}

.input-container input:focus + .label .text, :not(input[value=""]) + .label .text {
    font-size: 12px;
    transform: translate(0, -130%);
    background-color: #E9551B;
    padding-left: 4px;
    padding-right: 4px;
}

.input-container input:focus + .input-container .label .text {
    color: #FFFFFF;
}

.input-container button {
    color: var(--text-on-primary);
    border: 2px solid #FFFFFF;
    background-color: var(--primary-orange);
    border-radius: 8px;
    font-size: 16px;
    font-weight: bolder;
    height: 48px;
    width: 100%;
}

.input-container button:active {
    background-color: #dc7e59;

}
button.primary {
    padding: 22px 50px;
    background-color: var(--background);
    border-radius: 30px;
    border: none;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 18px;
}

button.primary:active{
    background-color: rgba(255, 255, 255, 0.75);
}
.middle-mobile-menu{
    display: none;
    background-color: var(--background);
    padding: 15px 15px 100px;
}
.middle-mobile-menu a{
    margin-top: 15px;
    text-align: center;
    height: 65px;
}
.middle-mobile-menu a.menu-enter{
    margin-left: 0;
    height: 65px;
    justify-content: center;
}
.footer a.button.footer-mob-button{
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer-logo{
    height: 30px
}
.telegram-bot-images{
    display: none;
}
.telegram-bot-image-left{
    width: 204px;
    height: 112px;
    background-image: url("../images/site/chat-bubble.png");
    background-repeat: no-repeat;
    background-position: center center;
}
.telegram-bot-image-right{
    width: 130px;
    height: 148px;
    background-image: url("../images/site/bird-tg.png");
    background-repeat: no-repeat;
    background-position: center center;
}
.container-fluid{
    margin: 0 !important;
    padding: 0 !important;
}
.pa-office-map > ymaps{
    border-top-right-radius: 20px!important;
    border-bottom-right-radius: 20px!important;
}
@media (max-width: 1740px) {
    section{
        max-width: 1320px;
    }
}
@media (max-width: 1400px) {
    section{
        max-width: 1290px;
    }
    .telegram section{
        background-size: 434px 164px;
    }
    .section-container {
        padding: 0 15px;
    }
}
@media (max-width: 1290px) {
    section{
        max-width: 992px;
    }
    .section-container.strengths{
        padding-bottom: 80px;
    }
    .facts div{
        margin-right: 0;
        margin-bottom: 15px;
    }
    .pa-office-map > ymaps{
        border-top-right-radius: unset!important;
        border-bottom-right-radius: 20px!important;
        border-bottom-left-radius: 20px!important;
    }
}
@media (max-width: 992px) {
    .top-menu .menu-register{
        display: none;
    }
    .middle-menu{
        display: none !important;
    }
    .middle-mobile-menu{
        display: block;
    }
    .strengths{
        padding-bottom: 100px;
    }
    .strengths section{
        display: block !important;
        padding: 20px 20px 403px;
        background-size: 403px 403px;
        background-position: left bottom;
    }
    .facts-section{
        padding-bottom: 100px;
    }
    .strengths .header{
        font-weight: 700;
        text-align: center;
        font-size: 20px;
    }
    .strengths-items{
        display: block !important;
    }
    .strengths .item{
        margin-right: 0;
    }
    .strengths .tariffs-cont{
        margin-top: 30px;
        margin-left: 0;
        width: 100%;
    }
    .telegram section .scheme{
        flex-direction: column;
        margin-right: 0;
    }
    .telegram section .scheme span{
        margin: 0 auto;
        transform: rotate(90deg);
    }
    .telegram section .header{
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .footer-adaptive{
        text-align: center;
    }
    .footer-logo{
        height: 40px;
    }
    .footer .filial-address{
        margin-top: 15px;
        max-width: 155px;
    }
    .footer .filial-address b{
        margin-bottom: 5px;
    }
    .filial-addresses{
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        flex-direction: column;
    }
    .footer .pd {
        text-align: center;
    }
    .footer a.button.footer-desk-button{
        display: none;
    }
    .footer a.button.footer-mob-button{
        display: block;
    }
    .telegram section{
        background: none;
    }
    .telegram-bot-images{
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}
@media (max-width: 576px) {
    section.top-menu img{
        height: 25px;
    }
    section.top-menu a.menu-enter{
        height: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    section.top-menu a.menu-enter img{
        width: 20px;
        height: 20px;
        margin-left: 0;
    }
    .eagle-top-container{
        position: absolute;
        right: 20px;
        top: 76px;
        height: 252px;
    }
    .eagle-top-container img.flags{
        display: block;
        margin-right: -8px;
        width: unset;
        height: 100%;
    }
    .eagle-top-container img{
        height: 100%;
    }
    .banner{
        position: relative;
        min-height: 330px;
    }
    .banner h1 {
        font-weight: 700;
        font-size: 30px;
        max-width: 300px;
    }
    .banner h2 {
        font-weight: 400;
        font-size: 20px;
        max-width: 150px;
    }
    .strengths .tariffs-cont td{
        padding: 5px 15px;
    }
    .telegram-bot-image-left{
        width: 49%;
        background-size: contain;
    }
    .telegram-bot-image-right{
        width: 49%;
        background-size: contain;
    }
    .top-menu .menu-enter span{
        display: none;
    }
}
.marker-class{
    width: 20px;
    height: 20px;
    background: #0000ff;
    border-radius: 50%;
}
#app main {
    min-height: calc(100vh - 239px);
}
/* parcels-filters date range*/
.parcels-filters-block .dp__main{
    font-family: Open Sans,serif !important;
    margin-right: 20px;
    min-width: 240px
}
.parcels-filters-block .dp__input_wrap{
    height: 50px!important;
}
.parcels-filters-block .dp__input{
    height: 50px!important;
    color: #353C41 !important;
    border: 1px solid #353C4199 !important;
    border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
}
.lk-container .dp__calendar_header{
    color: #fe5300!important;
}
.lk-container .dp__calendar_header_item{
    color: #fe5300!important;
}
.lk-container .dp__action{
    font-weight: normal !important;
}
.lk-container .dp__action_buttons{
    font-family: Open Sans,serif !important;
    width: 100%!important;
}
.lk-container .dp__select{
    color: #ffffff !important;
    background: #fe5300 !important;
}
.lk-container .dp__icon {
    stroke: #fe5300 !important;
    fill: #fe5300 !important;
}
.lk-container .dp__range_start,
.lk-container .dp__range_end{
    background: #fe5300 !important;
}
.lk-container .dp__today {
    border: 1px solid #fe5300 !important;
}
.lk-container .dp__button,
.lk-container .dp__input_icon{
    display: none !important;
}
.lk-container .dp__input_icon_pad{
    padding-left: 20px !important;
    padding-right: 35px !important;
}
@media (max-width: 1340px) {
    .parcels-filters-block .dp__main{
        margin-right: 0 !important;
    }
}
@media (max-width: 425px) {
    .parcels-filters-block .dp__main{
        margin-right: 0 !important;
        margin-top: 20px !important;
    }
}
.v-popper--theme-tooltip .v-popper__inner {
    background: rgba(222, 0, 0, .8) !important;
    color: white;
    border-radius: 6px;
    padding: 7px 12px 6px;
}
.v-popper--theme-tooltip .v-popper__arrow-outer {
    border-color: #DE0000CC !important;
}
