@charset "UTF-8";
@font-face {
    font-family: "Gilroy";
    font-display: swap;
    src: url("../fonts/Bold.woff2") format("woff2"), url("../fonts/Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    font-display: swap;
    src: url("../fonts/Medium.woff2") format("woff2"), url("../fonts/Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    font-display: swap;
    src: url("../fonts/SemiBold.woff2") format("woff2"), url("../fonts/SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    font-display: swap;
    src: url("../fonts/Regular.woff2") format("woff2"), url("../fonts/Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

.qs-datepicker-container {
    margin: 5px;
    font-size: 1rem;
    font-family: sans-serif;
    color: #000;
    position: absolute;
    width: 15.625em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 9001;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    background: #000;
    -webkit-box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
    box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
    border-right: 1px solid #fff;
    border-left: 1px solid #f1ad70;
    padding: 5px;
}

.qs-datepicker-container:before,
.qs-datepicker-container:after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    z-index: 2;
    position: absolute;
    background-image: linear-gradient(to right, #f1ad70 0%, #fffdf2 100%);
}

.qs-datepicker-container:before {
    top: 0;
}

.qs-datepicker-container:after {
    bottom: 0;
}

.qs-datepicker-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.qs-datepicker-container.qs-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.qs-datepicker-container.qs-hidden {
    display: none;
}

.qs-datepicker .qs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0.5em;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.qs-datepicker .qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1;
}

.qs-datepicker .qs-overlay .qs-overlay-year {
    background: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 0.875em;
    padding: 0.25em 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.qs-datepicker .qs-overlay .qs-close {
    padding: 0.5em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.qs-datepicker .qs-overlay .qs-submit {
    border: 1px solid #fff;
    border-radius: 0.26392em;
    padding: 0.5em;
    margin: 0 auto auto;
    cursor: pointer;
    background: rgba(128, 128, 128, 0.4);
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
    color: grey;
    border-color: grey;
    cursor: not-allowed;
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.qs-datepicker .qs-overlay .qs-overlay-month {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.33333%;
    cursor: pointer;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s;
}

.qs-datepicker .qs-overlay .qs-overlay-month.active,
.qs-datepicker .qs-overlay .qs-overlay-month:hover {
    opacity: 1;
}

.qs-datepicker .qs-controls {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #000;
    color: #fff;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-controls.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.qs-datepicker .qs-arrow {
    height: 1.5625em;
    width: 1.5625em;
    position: relative;
    cursor: pointer;
    border-radius: 0.26392em;
    -webkit-transition: background 0.15s;
    transition: background 0.15s;
}

.qs-datepicker .qs-arrow:hover {
    background: rgba(0, 0, 0, 0.1);
}

.qs-datepicker .qs-arrow:hover.qs-left:after {
    border-right-color: #000;
}

.qs-datepicker .qs-arrow:hover.qs-right:after {
    border-left-color: #000;
}

.qs-datepicker .qs-arrow:after {
    content: "";
    border: 0.39062em solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    -webkit-transition: border 0.2s;
    transition: border 0.2s;
}

.qs-datepicker .qs-arrow.qs-left:after {
    border-right-color: grey;
    right: 50%;
    -webkit-transform: translate(25%, -50%);
    -ms-transform: translate(25%, -50%);
    transform: translate(25%, -50%);
}

.qs-datepicker .qs-arrow.qs-right:after {
    border-left-color: grey;
    left: 50%;
    -webkit-transform: translate(-25%, -50%);
    -ms-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
}

.qs-datepicker .qs-month-year {
    font-weight: 700;
    -webkit-transition: border 0.2s;
    transition: border 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
}

.qs-datepicker .qs-month-year:hover {
    border-bottom: 1px solid grey;
}

.qs-datepicker .qs-month-year:active:focus,
.qs-datepicker .qs-month-year:focus {
    outline: none;
}

.qs-datepicker .qs-month {
    padding-right: 0.5ex;
}

.qs-datepicker .qs-year {
    padding-left: 0.5ex;
}

.qs-datepicker .qs-squares {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.3125em;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-squares.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.qs-datepicker .qs-square {
    width: 14.28571%;
    height: 1.5625em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background 0.1s;
    transition: background 0.1s;
    border-radius: 0.26392em;
}

.qs-datepicker .qs-square.qs-current {
    font-weight: 700;
}

.qs-datepicker .qs-square.qs-current span {
    text-decoration: underline;
}

.qs-datepicker .qs-square.qs-active {
    background: #fff;
    color: #000;
}

.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle {
    background: #d4ebf2;
}

.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6) {
    border-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),
.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.qs-datepicker .qs-square.qs-disabled span {
    opacity: 0.2;
}

.qs-datepicker .qs-square.qs-empty {
    cursor: default;
}

.qs-datepicker .qs-square.qs-disabled {
    cursor: not-allowed;
}

.qs-datepicker .qs-square.qs-day {
    cursor: default;
    font-weight: 700;
    color: grey;
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: orange;
}

.qs-datepicker .qs-event {
    position: relative;
}

.qs-datepicker .qs-event:after {
    content: "";
    position: absolute;
    width: 0.46875em;
    height: 0.46875em;
    border-radius: 50%;
    background: #07f;
    bottom: 0;
    right: 0;
}

.qs-datepicker .qs-event.qs-disabled:after,
.qs-datepicker .qs-event.qs-empty:after {
    background: #cce4ff;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

html {
    font-size: 16px;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    line-height: 1;
    font-family: inherit;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
    background-color: inherit;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}


/*
&::-webkit-scrollbar {
	display: none;
}
*/

body {
    color: #000;
    position: relative;
}

body._lock {
    overflow: hidden;
}

body._lock::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #131313;
    opacity: 0.7;
    backdrop-filter: blur(40px);
    z-index: 25;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

._container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.button {
    display: inline-flex;
    padding: 0px 0px;
}

.button._fw {
    width: 100%;
}

.select {
    position: relative;
}

.select__item {
    position: relative;
}

.select__title {
    color: #000;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

@media (max-width: 991.98px) {
    .select__title {
        font-size: 18px;
    }
}

.select__value {
    display: flex;
    font-size: 14px;
    height: 30px;
    padding: 0px 15px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.select__value span {
    height: 1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.select__value:before {
    content: "";
    display: inline-block;
    transition: all 0.3s ease 0s;
    width: 11px;
    height: 7px;
    background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}

.select__options {
    color: #000;
    position: absolute;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    font-size: 14px;
    padding: 10px 0px 5px 0px;
}

@media (max-width: 991.98px) {
    .select__options {
        font-size: 18px;
    }
}

.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0px 0px 0px 0px;
}

@media (min-width: 992px) {
    .select__option:hover {
        background: #d9d9d9;
    }
}

.select._active {
    z-index: 5;
}

.select._active .select__value:before {
    transform: rotate(-180deg);
}

.select._active .select__options {
    display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
    outline: none;
}

.input {
    width: 100%;
}

textarea.input {
    resize: none;
    padding: 0px 0px;
}

.checkbox {
    position: relative;
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.checkbox__input:checked+.checkbox__text:before {
    background: #fff url("../img/icons/check.svg") center no-repeat;
}

.checkbox__text {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.25;
    cursor: pointer;
}

.checkbox__text:before {
    content: "";
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}

.checkbox a {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .checkbox a:hover {
        text-decoration: none;
    }
}

.checkbox._error .checkbox__text:before {
    border: 1px solid #ee1212;
}

.options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.options__item {
    position: relative;
    cursor: pointer;
}

.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0;
    top: 0;
    visibility: hidden;
}

.options__input:checked+.options__text:after {
    transform: scale(1);
}

.options__text {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.options__text:before {
    content: "";
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}

.options__text:after {
    content: "";
    transition: all 0.3s ease 0s;
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #77243a;
    position: absolute;
    left: 5px;
    top: 4px;
}

.rating {
    display: flex;
    align-items: flex-end;
    font-size: 40px;
    line-height: 0.75;
    transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
    opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
    cursor: pointer;
}

.rating__body {
    position: relative;
}

.rating__body::before {
    content: "★★★★★";
    display: block;
}

.rating__active {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.rating__active::before {
    content: "★★★★★";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #ffd300;
}

.rating__items {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.rating__item {
    flex: 0 0 20%;
    height: 100%;
    opacity: 0;
}

.rating__value {
    font-size: 50%;
    line-height: 1;
    padding: 0px 0px 0px 10px;
}

.quantity {
    width: 88px;
    height: 40px;
    display: flex;
    border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
    flex: 0 0 30px;
    position: relative;
    cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease 0s;
    margin: 0px 0px 0px -4.5px;
    background-color: #a6a6a6;
    width: 9px;
    height: 1px;
}

@media (min-width: 991.98px) {
    .quantity__button:hover::before,
    .quantity__button:hover::after {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

.quantity__button_plus::before {
    transform: rotate(-90deg);
}

.quantity__input {
    flex: 1 1 auto;
}

.quantity__input input {
    height: 100%;
    color: #a6a6a6;
    font-size: 12px;
    width: 100%;
    text-align: center;
}

._tabs-block {
    display: none;
}

._tabs-block._active {
    display: block;
}

.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 30px 10px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
}

.popup::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
}

.popup.show {
    visibility: visible;
    overflow: auto;
}

.popup.show::before {
    opacity: 1;
}

.popup.show .popup__body {
    transform: scale(1);
}

.popup._active {
    overflow: auto;
    visibility: visible;
}

.popup._active::before {
    opacity: 1;
}

.popup._active .popup__body {
    transition: all 0.3s ease 0.2s;
    transform: scale(1);
}

.popup__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup__body {
    transform: scale(0);
    transition: all 0.3s ease 0s;
    width: 100%;
    max-width: 270px;
}

.popup__block {
    background-color: #fff;
    padding: 21px 21px 18px 21px;
    width: 100%;
    border-radius: 5px;
    position: relative;
}

.popup__block:not(:last-child) {
    margin: 0px 0px 5px 0px;
}

.popup__block .form-documents__file {
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.popup__block .form-documents__file a {
    display: block;
    width: 100%;
    height: 100%;
}

.popup__block .form-documents__file:hover {
    background-color: #ba181b18;
}

.popup__close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: -25px;
    right: -32px;
    cursor: pointer;
    z-index: 30;
}

.popup__close:hover svg line {
    stroke: red;
}

@media (max-width: 400px) {
    .popup__close {
        right: 0;
    }
}


/*
//Burger
.icon-menu {
	display: none;
	@media (max-width: $md3+px) {
		display: block;
		position: absolute;
		top: 18px;
		right: 10px;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span {
			transition: all 0.3s ease 0s;
			top: calc(50% - 1px);
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
			&:first-child {
				top: 0px;
			}
			&:last-child {
				top: auto;
				bottom: 0px;
			}
		}
		&._active {
			span {
				transform: scale(0);
				&:first-child {
					transform: rotate(-45deg);
					top: calc(50% - 1px);
				}
				&:last-child {
					transform: rotate(45deg);
					bottom: calc(50% - 1px);
				}
			}
		}
	}
}
*/

.page {
    flex: 1 1 auto;
}

.page {
    font-family: "Gilroy", sans-serif;
    font-style: normal;
    display: flex;
}

.page__sidebar {
    flex: 0 1 200px;
    position: relative;
}

.page__main {
    flex: 1 1 auto;
}

@media (max-width: 768px) {
    .entrance {
        flex-direction: column;
    }
    .entrance .sidebar {
        flex: unset;
    }
    .entrance .sidebar__bg {
        height: 83px;
        width: 100%;
    }
    .entrance .form-main {
        padding: 20px 0;
    }
}

.sidebar__bg {
    background-color: #000;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sidebar__main {
    margin: 84px 0px 0px 0px;
}

.sidebar__container {
    padding: 0 15px 32px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar__block {
    padding: 26px 16px 16px 18px;
    font-weight: 600;
    font-size: 32px;
    line-height: 18px;
    color: #272727;
    background: #ffe9b3;
    border-radius: 5px;
    margin: 0px 0px 10px 0px;
}

.sidebar__block--green {
    background: #d9ffb2;
}

.sidebar__block div {
    max-width: 100px;
}

.sidebar__block div:not(:last-child) {
    margin: 0px 0px 12px 0px;
}

.sidebar__block div:last-child {
    font-size: 15px;
    line-height: 22px;
}

.sidebar__row {
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    color: #ffffff;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    display: block;
}

.sidebar__row:not(:last-child) {
    margin: 0px 0px 10px 0px;
}

.sidebar__row:last-child {
    width: max-content;
    display: flex;
    align-items: center;
}

.sidebar__row:last-child svg {
    transition: all 0.3s ease 0s;
}

.sidebar__row:last-child:hover svg {
    transform: rotate(360deg);
}

.sidebar__footer a {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin: 0px 0px 0px 18px;
    cursor: pointer;
}

.sidebar__footer span {
    display: inline-block;
    margin: 0px 18px 0px 0px;
}

.logo {
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translate(-50%, 0);
}

.page__main {
    background: #f5f3f4;
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.res .form-main__top {
    padding: 0;
}

.form-main {
    max-width: 435px;
    width: 100%;
}

.form-main__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0px 15px 0px 0px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.5px;
    color: #272727;
    font-size: calc(21px + 11 * ((100vw - 320px) / 880));
    margin-bottom: calc(15px + 25 * ((100vw - 320px) / 880));
}

@media (min-width: 1200px) {
    .form-main__top {
        font-size: 32px;
        margin: 0px 0px 40px 0px;
    }
}

.form-main__top a {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
    color: #ba181b;
}

.form-main input {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: #8b8b8b;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #e5e0e0;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
}

.form-main input._focus {
    color: #272727;
    outline: none;
}

.form-main input._error {
    border-color: #ba181b;
    color: #ba181b;
}

.form-main__input {
    margin-bottom: calc(20px + 10 * ((100vw - 320px) / 880));
}

.form-main__input input:not(:last-child) {
    margin: 0px 0px 15px 0px;
}

.btn {
    padding: 15px 58.5px;
    background: #ba181b;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.btn--min {
    padding: 15px 35px;
}

.main-tabs {
    letter-spacing: 0.5px;
}

.main-tabs__close {
    margin: 0px 0px 0px 10px;
    height: max-content;
    display: flex;
    padding: 13px;
    background: #F6F6F6;
    transition: all 0.3s ease 0s;
    border-radius: 3px;
    display: flex;
}

.main-tabs__close svg {
    transition: all 0.3s ease 0s;
}

.main-tabs__close:hover {
    background: #ba181b1a;
}

.main-tabs__close:hover svg {
    transform: rotate(360deg);
}

@media (max-width: 900px) {
    .main-tabs__close {
        padding: 0;
        background: transparent;
    }
    .main-tabs__close:hover {
        background: transparent;
    }
}

.main-tabs__menu {
    position: relative;
    display: flex;
    z-index: 50;
    margin: 0px 0px 0px 10px;
    cursor: pointer;
}

.main-tabs__menu svg {
    transition: all 0.3s ease 0s;
}

.main-tabs__menu:hover svg {
    transform: rotate(360deg);
}

.main-tabs__menu:hover svg path {
    transition: all 0.3s ease 0s;
}

.main-tabs__menu._active svg path {
    fill: #fff;
}

@media (min-width: 1200px) {
    .main-tabs__menu {
        display: none;
    }
}

.main-tabs__top {
    display: flex;
    flex-direction: column;
    padding: 21px 37px 21px 35px;
    background: #fff;
    margin: 0px 0px 36px 0px;
    position: relative;
    padding-top: calc(15px + 6 * ((100vw - 320px) / 880));
    padding-right: calc(20px + 17 * ((100vw - 320px) / 880));
    padding-bottom: calc(15px + 6 * ((100vw - 320px) / 880));
    padding-left: calc(20px + 15 * ((100vw - 320px) / 880));
}

@media (min-width: 900px) {
    .main-tabs__top {
        flex-direction: row;
        justify-content: space-between;
        min-height: 82px;
    }
}

@media (min-width: 1200px) {
    .main-tabs__top {
        padding: 21px 45px;
    }
}

.main-tabs__title {
    font-weight: bold;
    font-size: calc(22px + 6 * ((100vw - 320px) / 880));
    line-height: 18px;
    color: #272727;
    margin: 0px 44.5px 0px 0px;
}

@media (min-width: 940px) {
    .main-tabs__title {
        margin: 0px 44.5px 0px 0px;
    }
}

.main-tabs__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
}

.main-tabs__left .main-tabs__block {
    display: flex;
    align-items: center;
    margin: 0;
}

@media (min-width: 900px) {
    .main-tabs__left {
        margin: 0;
    }
    .main-tabs__left .main-tabs__block-not {
        display: none;
    }
}

.main-tabs__nav {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .main-tabs__nav {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        width: max-content;
    }
}

.main-tabs__item {
    font-weight: 500;
    cursor: pointer;
    font-size: calc(12px + 2 * ((100vw - 320px) / 880));
    line-height: 18px;
    color: #8b8b8b;
    padding: 11px 18px;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
}

.main-tabs__item._active {
    color: #272727;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .main-tabs__right {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .main-tabs__right .main-tabs__block-not {
        display: none;
    }
}

@media (min-width: 768px) {
    .main-tabs__right {
        flex-direction: row;
    }
}

.main-tabs__id {
    margin-right: calc(10px + 25 * ((100vw - 320px) / 880));
    font-size: calc(12px + 2 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .main-tabs__id {
        margin: 0px 35px 0px 0px;
        font-size: 14px;
    }
}

.main-tabs__notification {
    display: flex;
    position: relative;
    cursor: pointer;
}

.main-tabs__notification div {
    position: absolute;
    top: 0;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #BA181B;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    z-index: 5;
    user-select: none;
}

.main-tabs__block {
    padding: 0 85px 0 45px;
    margin: 0px 0px 21px 0px;
}

@media (max-width: 900px) {
    .main-tabs__block {
        padding: 0 45px;
    }
}

@media (max-width: 768px) {
    .main-tabs__block {
        padding: 0 20px;
    }
}

.main-tabs__block-not {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .main-tabs__block-not {
        margin: 0;
    }
}

.tabs-form__install {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 100%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    z-index: 10;
}

.tabs-form__install:hover {
    background-color: #ba181b18;
}

.tabs-form__block:not(:last-child) {
    margin: 0px 0px 35px 0px;
}

.tabs-form__block {
    width: 100%;
    max-width: 570px;
}

.tabs-form__block:last-of-type {
    margin: 0px 0px 40px 0px;
}

.tabs-form__block--big {
    max-width: 578px;
}

.tabs-form__block--row {
    max-width: unset;
}

.tabs-form__search {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    z-index: 10;
}

.tabs-form__search:hover {
    background-color: #ba181b18;
}

.tabs-form__subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #272727;
    margin-bottom: calc(20px + 25 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .tabs-form__subtitle {
        margin: 0px 0px 45px 0px;
    }
}

.tabs-form__subtitle--mini {
    margin-bottom: calc(20px + 5 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .tabs-form__subtitle--mini {
        margin: 0px 0px 25px 0px;
    }
}

.tabs-form__label {
    display: inline-block;
    padding: 14px 18px;
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e0e0;
    border-radius: 5px;
    flex: 0 1 50%;
}

.tabs-form__label--search {
    padding-left: 54px;
}

.tabs-form__label--search span {
    left: 54px;
}

.tabs-form__label--search input {
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #272727;
    font-size: calc(16px + 2 * ((100vw - 320px) / 880));
    line-height: calc(18px + 4 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .tabs-form__label--search input {
        font-size: 18px;
        line-height: 22px;
    }
}

.tabs-form__label:first-child:last-child:not(.tabs-form__label--big) {
    flex: 0 1 calc(50% - 15px);
}

.tabs-form__label._focus .tabs-form__placeholder {
    top: -20px;
    left: 0;
    font-size: 12px;
    cursor: default;
}

@media (max-width: 600px) {
    .tabs-form__label._focus .tabs-form__placeholder {
        top: -12px;
    }
}

.tabs-form__label.tabs-form__label--big {
    flex: 1 1 auto;
}

.tabs-form .tabs-form__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs-form .tabs-form__file {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.tabs-form .tabs-form__file:hover {
    background-color: #ba181b18;
}

.tabs-form .tabs-form__file input {
    visibility: hidden;
    opacity: 0;
}

.tabs-form__row {
    display: flex;
    gap: 30px;
}

.tabs-form__row:not(:last-child) {
    margin: 0px 0px 35px 0px;
}

@media (max-width: 600px) {
    .tabs-form__row {
        flex-direction: column;
        gap: 25px;
    }
    .tabs-form__row:not(:last-child) {
        margin: 0px 0px 25px 0px;
    }
}

.tabs-form__placeholder {
    z-index: 15;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #5b5454;
    position: absolute;
    transition: all 0.3s ease 0s;
    cursor: text;
    top: 50%;
    transform: translate(0, -50%);
    left: 20px;
    font-size: 16px;
}

.registered .sidebar {
    background: #ba181b;
    position: fixed;
    width: 200px;
    flex: 0 0 200px;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(-100%, 0);
    transition: all 0.3s ease 0s;
    z-index: 25;
}

.registered .sidebar._active {
    transform: translate(0, 0);
}

@media (min-width: 1200px) {
    .registered .sidebar {
        position: relative;
        height: 100vh;
        transform: translate(0, 0);
    }
}

@media (max-width: 900px) {
    .profile .main-tabs__title {
        margin: 0px 0px 20px 0px;
    }
    .profile .main-tabs__top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .profile .main-tabs__left {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .profile .main-tabs__left {
        margin: 0 0 20px 0;
    }
}

.profile .main-tabs__right {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .profile .main-tabs__title {
        margin: 0;
    }
    .profile .main-tabs__top {
        margin: 0px 0px 50px 0px;
    }
}

.form-documents__document {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    flex: 0 1 33%;
    padding: 23px 23px 18px 23px;
    transition: all 0.3s ease 0s;
}

.form-documents__document a {
    display: block;
    width: 100%;
    height: 100%;
}

.form-documents__document:hover {
    background-color: #ba181b18;
}

.form-documents__document label {
    cursor: pointer;
}

@media (max-width: 600px) {
    .form-documents__document {
        flex: 1 1 auto;
    }
}

.form-documents__content svg {
    margin: 0px 0px 32px 0px;
}

.form-documents__file {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.form-documents__file input {
    visibility: hidden;
    opacity: 0;
}

.form-documents__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.form-documents__name--last {
    font-size: 12px;
}

.bargain .main-tabs__title {
    margin: 0px;
}

.dates {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #272727;
    margin: 0px;
}

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

@media (max-width: 600px) {
    .dates__block {
        flex-direction: column;
        align-items: unset;
    }
}

@media (max-width: 768px) {
    .dates {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .dates {
        margin: 0px 40px 0px 0px;
    }
}

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

@media (max-width: 600px) {
    .dates__inputs {
        margin: 0px 0px 20px 0px;
    }
    .dates__inputs input:last-of-type {
        margin: 0;
    }
}

.dates__text {
    margin: 0px 15px 0px 0px;
    color: #8b8b8b;
}

.dates__date {
    max-width: 117px;
    padding: 11px 18px;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    position: relative;
    margin: 0px 10px 0px 0px;
    color: #8b8b8b;
    text-align: center;
    font-size: calc(12px + 2 * ((100vw - 320px) / 880));
    padding-left: calc(5px + 13 * ((100vw - 320px) / 880));
    padding-right: calc(5px + 13 * ((100vw - 320px) / 880));
    padding-top: calc(7px + 3 * ((100vw - 320px) / 880));
    padding-bottom: calc(7px + 3 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .dates__date {
        padding: 10px 18px 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .dates__date {
        max-width: 100px;
    }
}

@media (max-width: 600px) {
    .dates__date {
        max-width: 80px;
    }
}

.dates__btn {
    padding: 11px 18px;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    color: #8b8b8b;
}

.bargain .main-tabs__top {
    margin: 0;
}

.separator {
    display: flex;
    align-items: center;
    margin: 0px 10px 0px 0px;
}

.table {
    display: flex;
}

.table__content {
    overflow-x: auto;
    display: flex;
    max-width: 100vw;
    background-color: #fff;
}

@media (min-width: 515px) {
    .table__content {
        max-width: calc(100vw - 187px);
    }
}

@media (min-width: 940px) {
    .table__content {
        display: block;
        max-width: unset;
        overflow-x: hidden;
        height: calc(100vh - 149px);
        overflow-y: auto;
        margin: 0 0 0 -15px;
        padding: 15px 0px 0px 15px;
        position: relative;
    }
    .table__content::before {
        content: "";
        position: absolute;
        height: 100vh;
        width: 15px;
        left: 0;
        z-index: 1;
        background: #ba181b;
    }
}

@media (min-width: 940px) {
    .table {
        display: unset;
    }
}

.table__name {
    color: #272727;
}

.table__row {
    display: flex;
    gap: 30px;
    background: #f6f6f6;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #5b5454;
    padding: 12px 45px;
    position: relative;
    transition: all 0.3s ease 0s;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .table__row {
        z-index: 50;
    }
}

@media (min-width: 940px) {
    .table__row {
        flex-direction: row;
    }
    .table__row:not(:first-child) {
        padding: 15px 45px;
    }
}

.table__row:nth-child(even) {
    background: #fff;
}

.table div.table__row {
    background: #fff;
    border-right: 2px solid #f6f6f6;
    padding-bottom: 0;
    display: none;
}

@media (min-width: 515px) {
    .table div.table__row {
        display: flex;
    }
}

@media (min-width: 940px) {
    .table div.table__row {
        border: none;
    }
}

@media (max-width: 940px) {
    .table div.table__row {
        padding: 12px 20px;
    }
}

.table__col {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

@media (min-width: 940px) {
    .table__col--1 {
        width: 9.1991341991%;
    }
    .table__col--2 {
        width: 23.8095238095%;
    }
    .table__col--3 {
        width: 24.8917748918%;
    }
    .table__col--4 {
        width: 17.316017316%;
    }
    .table__col--5 {
        width: 12.987012987%;
    }
}

.table__line {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.table__line--strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #272727;
}

.table__line--phone {
    font-weight: normal;
}

.table__line:first-child {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0px 0px 7px 0px;
    line-height: 18px;
}

.table__line>span:first-child {
    margin: 0px 10px 0px 0px;
}

.table__line div {
    display: flex;
    align-items: center;
}

.table__line div svg {
    margin: 0px 0px 0px 10px;
}

@media (min-width: 940px) {
    a.table__row:hover {
        margin: -15px 0px 0px -10px;
        filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.1));
    }
}

@media (max-width: 940px) {
    div.table__row .table__col--5 {
        margin: 25px 0px 0px 0px;
    }
}

.table-status {
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    color: #ffffff;
    padding: 3.5px 8px;
    border-radius: 3px;
    margin: 0px 7px 0px 0px;
}

.table-status--yellow {
    background: #e9b226;
}

.table-status--green {
    background: #ba181b;
}

.table-status--red {
    background: #18ba59;
}

.order .tabs-form__block {
    max-width: unset;
}

@media (max-width: 768px) {
    .order .tabs-form__block:nth-child(2) .tabs-form__row {
        flex-direction: row;
    }
}

.order .tabs-form__block .form-documents {
    flex-wrap: wrap;
}

.order .tabs-form__block .form-documents__document {
    flex: 0 1 calc(33.33% - 20px);
}

@media (max-width: 768px) {
    .order .tabs-form__block .form-documents__document {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .order .tabs-form__block .form-documents__document {
        flex: 0 1 100%;
    }
}

.order .tabs-form__block .form-documents__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: #000000;
    max-width: 220px;
}

@media (max-width: 768px) {
    .order .tabs-form__block .tabs-form__row {
        flex-direction: column;
    }
}

.order .tabs-form__label {
    flex: 0 1 calc(33.3333333% - 20px);
}

.last .page__main {
    background-color: #fff;
}

.last .page__main .main-tabs__top {
    border-bottom: 2px solid #F6F6F6;
    margin: 0;
}

@media (max-width: 900px) {
    .last .page__main .main-tabs__title,
    .last .page__main .main-tabs__left {
        margin: 0;
    }
}

.last .page__main .main-tabs__top {
    align-items: center;
}

.information {
    height: calc(100vh - 82px);
    overflow-y: auto;
    padding-top: calc(20px + 22 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .information {
        padding: 42px 0px 0px 0px;
    }
}

.information__container {
    padding: 0 37px 0 45px;
    display: flex;
    gap: 66px;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .information__container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .information__container {
        padding: 0 20px;
    }
}

.information__column:last-child {
    border-radius: 2px;
    flex: 0 0 216px;
}

@media (max-width: 900px) {
    .information__column:last-child {
        display: none;
    }
}

.information__block {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: calc(15px + 15 * ((100vw - 320px) / 880));
    font-size: calc(12px + 2 * ((100vw - 320px) / 880));
    line-height: calc(14px + 4 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .information__block {
        font-size: 14px;
        line-height: 18px;
        margin: 0px 0px 30px 0px;
    }
}

.information__block>svg {
    margin-bottom: calc(8px + 4 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .information__block>svg {
        margin: 0px 0px 12px 0px;
    }
}

.information__title {
    margin-bottom: calc(8px + 4 * ((100vw - 320px) / 880));
    font-size: calc(18px + 2 * ((100vw - 320px) / 880));
    line-height: calc(21px + 3 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .information__title {
        font-size: 20px;
        line-height: 24px;
        margin: 0px 0px 12px 0px;
    }
}

.information__text {
    margin-bottom: calc(8px + 4 * ((100vw - 320px) / 880));
}

@media (min-width: 1210px) {
    .information__text {
        margin: 0px 0px 12px 0px;
    }
}

.information__download {
    display: flex;
    align-items: center;
    color: #8B8B8B;
}

.information__download:hover {
    color: #ba181b;
}

.information__download:hover svg path {
    fill: #ba181b;
}

.information__download svg {
    transition: all 0.3s ease 0s;
    margin: 0px 10px 0px 0px;
}

.information__img {
    border-radius: 2px;
    position: fixed;
}

.information__img img {
    border-radius: 2px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-status-red {
    background-color: #ba181b;
}

.table-status-blue {
    background-color: #4018ba;
}

.table-status-yellow {
    background-color: #e9b226;
}

.table-status-black {
    background-color: black;
    color: white;
}

.table-status-light-sea-green {
    background-color: #28b1b8;
}

.table-status-green {
    background-color: #18b959;
}

.name {
    margin-bottom: 25%;
    margin-top: 30%;
    padding: 0px 20px;
    text-align: center;
}

.name h1 {
    font-size: 32px;
    font-weight: 600;
    color: #ba181b;
}

.form-main__container p {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.support_name {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin: 30px 0px 10px 18px;
    cursor: pointer;
}

.support_message {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin: 0px 0px 10px 18px;
    cursor: pointer;
}

.support_message img {
    width: 21px;
    padding-right: 5px;
}

.support_line {
    font-size: 20px;
    background: #c13032;
    text-align: center;
    font-family: Gilroy, sans-serif;
    font-style: normal;
    padding: 5px 0px;
    color: #ffffff;
}

.anketa {
    margin-bottom: 36px;
    margin-left: auto;
    margin-right: auto;
}