@charset "UTF-8";

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Italic'), local('GothamPro-Italic'),
        url('../fonts/GothamPro-Italic.woff2') format('woff2'),
        url('../fonts/GothamPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Black Italic'), local('GothamPro-BlackItalic'),
        url('../fonts/GothamPro-BlackItalic.woff2') format('woff2'),
        url('../fonts/GothamPro-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Medium'), local('GothamPro-Medium'),
        url('../fonts/GothamPro-Medium.woff2') format('woff2'),
        url('../fonts/GothamPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Medium Italic'), local('GothamPro-MediumItalic'),
        url('../fonts/GothamPro-MediumItalic.woff2') format('woff2'),
        url('../fonts/GothamPro-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Light'), local('GothamPro-Light'),
        url('../fonts/GothamPro-Light.woff2') format('woff2'),
        url('../fonts/GothamPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Black Regular'), local('GothamPro-Black'),
        url('../fonts/GothamPro-Black.woff2') format('woff2'),
        url('../fonts/GothamPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Bold Italic'), local('GothamPro-BoldItalic'),
        url('../fonts/GothamPro-BoldItalic.woff2') format('woff2'),
        url('../fonts/GothamPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Black'), local('GothamPro-Black'),
        url('../fonts/GothamPro-Black.woff2') format('woff2'),
        url('../fonts/GothamPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro'), local('GothamPro'),
        url('../fonts/GothamPro.woff2') format('woff2'),
        url('../fonts/GothamPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Light Italic'), local('GothamPro-LightItalic'),
        url('../fonts/GothamPro-LightItalic.woff2') format('woff2'),
        url('../fonts/GothamPro-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('Gotham Pro Bold'), local('GothamPro-Bold'),
        url('../fonts/GothamPro-Bold.woff2') format('woff2'),
        url('../fonts/GothamPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-bg: #201630;
    --white-color: #fff;
    --card-bg: #271D37;
    --form-text-grey: #9A9A9A;
    --acc-text-violet: #D1C7E1;
    --main-green-color: #23C063;
    --error-color: #EF1414;
    --star-color: #3B314B;
    --burger-color: #D4D2D2;
    --filter-btn-color: #D1CEE1;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-decoration: none;
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
}

body {
    width: 100%;
    height: 100%;
    background-color: var(--main-bg);
    color: var(--white-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
}

section,
footer {
    margin-bottom: 60px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: var(--white-color);
}

span {
    display: inline-block;
}

.inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

/*---------- button ----------*/

button {
    border: none;
    cursor: pointer;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    gap: 10px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 15px;
    font-weight: 500;
    flex: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn__widht-100 {
    width: 100%;
    max-width: 360px;
}

.btn__green {
    margin: 0 auto;
    background: #23C063;
    color: var(--white-color);
    cursor: pointer;
}

.btn__green:hover {
    background-color: #41DE81;
    color: var(--white-color);
}

.btn__green:disabled {
    background-color: #21383A;
    color: rgba(255, 255, 255, 0.2);
}

.btn__green:focus {
    background: #94FFBF;
    color: var(--white-color);
}

.btn__green:active {
    background: #94FFBF;
    color: var(--white-color);
}

.btn__violet {
    background: #3E344E;
    color: #7169EF;
    padding: 12px 30px;
    font-size: 13px;
    line-height: 12px;
    letter-spacing: -0.03em;
}

.btn__violet:disabled {
    background: #2A203A;
    color: #483E58;
}

.btn__violet:focus {
    background: #2A203A;
    color: #8F87FF;
}

.btn__violet:hover {
    background: #524862;
    color: var(--white-color);
}

.btn__violet:active {
    background: #2A203A;
    color: #8F87FF;
}

.btn__transparent {
    padding: 16px 20px;
    color: #AAA1B7;
    box-shadow: 0px 0px 0px 1.5px #AAA1B7 inset;
    background-color: transparent;
}

.btn__transparent:hover {
    box-shadow: 0px 0px 0px 1.5px var(--white-color) inset;
    color: var(--white-color);
}

.btn__transparent:disabled {
    box-shadow: 0px 0px 0px 1.5px #483E58 inset;
    color: #483E58;
}

.btn__transparent:focus {
    box-shadow: 0px 0px 0px 1.5px #786F85 inset;
    color: #786F85;
}

.btn__transparent:active {
    box-shadow: 0px 0px 0px 1.5px #786F85 inset;
    color: #786F85;
}

.btn__nav-scroll {
    display: none;
    width: 87px;
    padding: 8px 16px;
    background: var(--white-color);
    color: var(--main-bg);
    font-size: 12px;
    line-height: 11px;
}

.btn__nav-scroll:hover {
    background: #D8D8D8;
    color: var(--white-color);
}

.btn__nav-scroll:disabled {
    background: #3E344E;
    color: var(--main-bg);
}

.btn__nav-scroll:focus {
    background: #94FFBF;
    color: var(--white-color);
}

.btn__nav-scroll:active {
    background: #94FFBF;
    color: var(--white-color);
}

/*---------- title & text ----------*/

.heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.title {
    text-align: center;
    text-transform: uppercase;
    line-height: 115%;
}

.h1 {
    font-size: 30px;
    line-height: 29px;
    font-weight: 700;
}

.h2 {
    font-size: 22px;
    line-height: 136%;
}

.h2-bold {
    font-weight: 700;
    font-size: 22px;
    line-height: 110%;
}

.h4 {
    font-size: 18px;
    line-height: 17px;
    text-transform: none;
}

.h4-bold {
    font-weight: 700;
    text-transform: uppercase;
}

.h5 {
    font-size: 14px;
    line-height: 16px;
    text-transform: none;
}

.h5-bold,
.h5-bold>.price-icon {
    font-size: 16px;
}

.h6 {
    font-size: 11px;
    font-weight: 300;
}

.subtitle {
    font-size: 15px;
    line-height: 17px;
    font-weight: 300;
    text-align: center;
}

.text-green {
    color: var(--main-green-color);
}

.text-violet {
    color: #706AED;
}

.text-violet-light {
    color: #E0DCE7;
}

.heading-violet {
    color: #6D6DE8;
    margin-bottom: 30px;
}

.heading-violet:hover {
    color: #4F4FCA;
}

.heading-violet:focus,
.heading-violet:active {
    color: #696981;
}

.card-text-grey {
    color: #988EA8;
}

.text-weight-regular {
    font-weight: 300;
}

.text-center {
    align-self: center;
}

/*==================== Hero section ====================*/
.hero {
    width: 100%;
    height: 352px;
    background-image: url(../img/main-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.hero-heading {
    gap: 16px;
}

/*==================== Advantages section ====================*/
.advantages__wrapper {
    width: 340px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin: 0 auto;
}

.advantages__card {
    width: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
    background-color: var(--card-bg);
    border-radius: 10px;
}

.advantages__card>.h5 {
    color: #E2DEE8;
}

/*==================== Discount section ====================*/
.discount {
    width: 100%;
    padding: 73px 10px;
    background-image: url(../img/discount-bg-mob.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.discount__heading {
    margin-bottom: 40px;
}

.discount__h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 110%;
    margin-bottom: 2px;
}

.discount__h2>.text-violet {
    font-weight: 700;
}

.discount__subtitle {
    font-size: 20px;
    line-height: 19px;
    font-weight: 300;
    text-align: center;
}

.discount__btn {
    padding: 16px 50px 16px;
    width: 183px;
}

/*==================== Features section ====================*/
.features__content {
    width: 100%;
}

.features__left-block {
    display: none;
}

.features__card {
    width: 340px;
    height: 303px;
    padding: 40px 10px 0 10px;
    background-color: var(--card-bg);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.list__wrapper {
    margin: 0 16px 0 20px;
}

.list-item {
    font-size: 15px;
    line-height: 120%;
    color: #FFECFF;
    margin-bottom: 20px;
    padding-inline-start: 1ch;
}

.list-item::marker {
    font-weight: bold;
    content: '—'
}

.features__card__img {
    position: absolute;
    right: 10px;
    bottom: 15px;
}

/*==================== Book section =====================*/

.form-submit {
    width: 330px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 10px;
    margin: 0 auto;
}

.form-submit__item {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--card-bg);
    color: var(--form-text-grey);
    border-radius: 8px;
    border: none;
}

.form-submit__item::placeholder {
    font-family: 'Gotham Pro';
    font-style: normal;
    color: var(--form-text-grey);
    opacity: 1;
    font-size: 13px;
    line-height: 12px;
    font-weight: 300;
}

.form-submit__item:focus {
    outline: none;
    box-shadow: 0px 0px 0px 1px #715FA6 inset;
    color: var(--white-color);
    caret-color: var(--white-color);
    background-color: #312741;
}

input[type="submit"] {
    border: none;
    width: 100%;
}

.input-error {
    outline: 1px solid var(--error-color);
    background-color: #312741;
}

.form__error {
    font-size: 13px;
    line-height: 12px;
    font-weight: 300;
    color: var(--error-color);
    margin-top: 5px;
    display: none;
}

/*---------- checkbox ----------*/

.privacy-checked {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox {
    width: 14px;
    height: 14px;
    background-color: #4F455F;
    border-radius: 2px;
    margin-right: 8px;
    flex: none;
}

.checkbox:checked {
    content: url(../img/svg/checked.svg);
    width: 14px;
    height: 14px;
    padding: 3px;
}

.privacy-link {
    font-size: 11px;
    line-height: 14px;
    color: #887D99;
}

.privacy-border {
    border-bottom: 0.5px solid rgba(136, 125, 153, 0.2);
    display: inline;
}

/*--------- custom select ---------*/
.custom-select {
    position: relative;
    width: 100%;
    padding: 18px 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: none;
}

.custom-select select {
    display: none;
}

.select-selected:after {
    position: absolute;
    content: url(../img/svg/chevron-down-for-select.svg);
    right: 20px;
    width: 10px;
    height: 9px;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
    top: 20px;
}

.select-selected {
    color: var(--white-color);
    font-family: 'Gotham Pro';
    font-style: normal;
    font-size: 13px;
    line-height: 12px;
    font-weight: 300;
    cursor: pointer;
}

.select-placeholder {
    color: var(--form-text-grey);
}

.select-items div {
    padding: 10px 16px;
    color: var(--white-color);
    font-size: 13px;
    line-height: 120%;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: #312741;
    border-radius: 8px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 10px 0;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.select-items div:focus,
.same-as-selected {
    background-color: #3B314B;
    color: var(--white-color);
}

/*==================== Our-works section ====================*/
.filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.filter-type__btn {
    padding: 12px 12px;
    background-color: var(--card-bg);
    flex: none;
    font-size: 15px;
    line-height: 14px;
    font-weight: 300;
    color: var(--filter-btn-color);
}

.filter-type__btn.active {
    background: #3B314B;
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4) inset;
    color: var(--white-color);
}

.our-works__card {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}

.photo-img {
    border-radius: 14px;
    align-self: center;
    order: 1;
}

.our-works__card-content {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 152px;
}

.card__h2 {
    font-size: 22px;
    line-height: 110%;
    margin-bottom: 10px;
    font-weight: 500;
}

.card__subtitle {
    font-size: 15px;
    line-height: 120%;
}

.buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.our-works__btn {
    width: 45% !important;
    min-width: 165px;
    max-width: 206px;
    flex: none;
}

/*==================== Our-partners section ====================*/
.partners-label__wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-self: stretch;
    gap: 20px;
}

.partner-label {
    width: auto;
    height: 25px;
}

/*==================== Catalog section ====================*/

.filters-breadcrumb__wrapper {
    margin-bottom: 18px;
}

.breadcrumb-btns {
    width: 100%;
    overflow: hidden;
}

.filters-swipe {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.no-scrollbar {
    scrollbar-color: transparent transparent;
}

.no-scrollbar::-webkit-scrollbar {
    height: 0px;
}

.no-scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.no-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.no-scrollbar::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, 0);
}

.filter-material {
    gap: 0;
}

.filter-material__btn {
    color: var(--filter-btn-color);
    font-size: 13px;
    line-height: 12px;
    padding: 12px 12px 11px;
    cursor: pointer;
    background-color: transparent;
}

.filter-material__btn.active,
.filter-material__btn:focus,
.filter-material__btn:active {
    color: #7169EF;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 165px;
}

.catalog-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: none;
}

.truncate-line-2 {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.truncate-line-3 {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.card__option {
    font-size: 12px;
    line-height: 120%;
}

.card__price,
.card__price>.price-icon {
    font-weight: 700;
    font-size: 18px;
    line-height: 17px;
    letter-spacing: -0.05em;
}

.price-icon,
.old-price-icon {
    font-family: Arial, Helvetica, sans-serif;
}

.card__price-old,
.card__price-old.old-price-icon {
    font-size: 12px;
    line-height: 11px;
    text-decoration-line: line-through;
    color: #B6ACC6;
    margin-left: 6px;
}

/*==================== Catalog-color section ====================*/
.catalog-color__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 340px;
    margin: 0 auto;
}

.palette-color__wrapper {
    width: 100%;
    margin: 20px auto;
}

.color__cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.color-card {
    margin: 0 5px;
    width: 23%;
    text-align: center;
    cursor: initial;
}

.color {
    min-width: 77.5px;
    width: 100%;
    max-width: 180px;
    min-height: 104px;
    max-height: 180px;
    border-radius: 10px;
    margin: 0 auto 10px;
    flex: none;
}

.color__white {
    background-color: var(--white-color);
}

.color__brown {
    background-color: #613B26;
}

.color__grey {
    background-color: #8A8888;
}

.color__other {
    background: linear-gradient(206.37deg, #FFB9AA -5.46%, #F0D2A6 11.37%, #DBE4A3 24.27%, #B2D7A0 38.86%, #9ECDAE 48.96%, #9DC2BE 60.74%, #9CACBA 70.28%, #AC91CD 88.23%, #E283C2 106.75%);
}

.color__img {
    display: none;
}

/*==================== Order-glazing section ====================*/
.order__slider {
    margin-bottom: 60px;
}

.order__card {
    width: 340px;
    min-height: 454px;
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
    border-radius: 14px;
    padding-bottom: 30px;
    margin: 0 auto;
}

.order__card-img {
    margin-bottom: 20px;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.order-list__wrapper {
    margin: 20px 0 6px 30px;
}

.more-btn__open,
.more-btn__close {
    background-color: var(--card-bg);
    color: #F7F2FF;
    font-size: 15px;
    line-height: 14px;
    font-family: 'Gotham Pro';
    justify-content: center;
    gap: 5px;
}

.more-btn__open>img {
    transform: rotate(180deg);
    margin-top: 5px;
}

.more-btn__open,
.more-btn__close {
    display: none;
}

.btn-visible {
    display: flex;
}

.hidden {
    display: none;
}

/*==================== Calculator section ====================*/
.calculator__inner {
    padding: 40px 10px;
    background-color: var(--card-bg);
}

.calc__content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 6px;
}

.calc-form {
    width: 312px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0;
    margin: 0 auto;
    order: 2;
}

.calc__img {
    width: auto;
    height: 206px;
    margin: 0 auto;
    order: 1;
    display: flex;
    align-items: center;
}

.calc__img>img {
    width: 100%;
    height: 100%;
}

.form__label {
    font-size: 13px;
    line-height: 12px;
    color: #EBE6F5;
}

.calc-form__item {
    width: 100%;
    padding: 17px 17px 16px 16px;
    background: #3B314B;
    border-radius: 8px;
    align-self: stretch;
    border: none;
    margin-bottom: 10px;
}

.calc-form__item>.select-placeholder {
    color: var(--filter-btn-color) !important;
}

.last__item {
    margin-bottom: 26px;
}

.privacy-checked {
    margin-top: 12px;
}

.btn-for-calc {
    width: 312px;
    padding: 16px 30px;
}

/*==================== Faq section ====================*/
.accordion {
    width: 340px;
    margin: 0 auto;
}

.accordion-item {
    width: 100%;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background-color: transparent;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.accordion-item.open {
    background-color: var(--card-bg);
    transition: all 0.2s ease-in-out;
}

.faq__title {
    font-size: 16px;
    line-height: 120%;
    color: #DED4EE;
    width: 80%;
}

.accordion__more-btn {
    position: absolute;
    right: 20px;
    top: 24px;
    cursor: pointer;
}

.accordion__more-btn::before {
    content: url(../img/svg/plus.svg);
    width: 16px;
    height: 16px;
    display: flex;
    flex: none;
}

.accordion-item.open>.accordion__more-btn {
    content: url(../img/svg/minus.svg);
    width: 16px;
    height: 16px;
}

.faq__subtitle {
    font-size: 13px;
    line-height: 130%;
    font-weight: 300;
    color: var(--acc-text-violet);
    transition: all 0.3s ease-in-out;
    display: none;
}

.accordion-item.open>.faq__subtitle {
    display: flex;
}

/*==================== Accessories section =====================*/

/*===================== Repair-services section ====================*/
.repair__list-close {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 10px;
}

.repair__title {
    display: flex;
    justify-content: center;
    position: relative;
}

.repair {
    width: 350px;
    padding: 20px 16px;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 10px;
    margin: 0 auto;
}

.repair__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.repair__btn {
    width: 112px;
    padding: 12px 0 12px;
    background: rgba(49, 39, 65, 0.65);
    font-size: 15px;
    line-height: 14px;
    font-weight: 300;
    color: rgba(209, 206, 225, 0.6);
    flex: none;
}

.repair__btn-active {
    background: #3B314B;
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4) inset;
    color: var(--white-color);
}


.repair__list-window {
    display: flex;
    flex-direction: column;
}

.repair__list-door {
    display: none;
    flex-direction: column;
}

.repair__list-item {
    width: 308px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0px;
    margin: 0 auto;
    border-bottom: 1px solid #524862;
}

.list-item__label {
    font-size: 16px;
    line-height: 15px;
}

.repair__list-open {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 10px;
    font-size: 15px;
    line-height: 110%;
    cursor: pointer;
    margin: 24px 0 0;
}

.chevron-down {
    transform: rotate(90deg);
    width: 10px;
    height: 9px;
    margin-top: 6px;
}

.repair__check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: var(--white-color);
}

.repair__check:checked {
    content: url(../img/svg/checked.svg);
    width: 18px;
    height: 18px;
    padding: 2px;
    background-color: var(--main-green-color);
}

.repair__list>.repair__list-item:nth-child(n+9) {
    border: none;
}

.repair__list>.repair__list-item:nth-child(n+4) {
    display: none;
}

.repair__list.open>.repair__list-item:nth-child(n+4) {
    display: flex;
}

.repair__list-input {
    padding: 0 !important;
}

.form_input_other {
    width: 100%;
    border-radius: 8px;
    background-color: #3B314B;
    padding: 16px 14px;
}

/*==================== Reviews section =====================*/
.review__card,
.modal-review__card {
    width: 312px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    background: var(--card-bg);
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.review__paragraph {
    font-size: 14px;
    line-height: 110%;
    color: #B4ABC2;
}

.review__rating {
    display: flex;
    gap: 4px;
}

.star-yellow {
    --star-color: #EBEF11;
}

.review__date {
    font-size: 14px;
    line-height: 13px;
    color: #776D87;
}

.review_more {
    display: block;
    width: 150px;
    font-family: 'Gotham Pro';
    font-size: 13px;
    line-height: 11px;
    text-align: left;
    color: #A7A2F8;
    background: transparent;
    visibility: hidden;
}

.review_more:hover {
    color: var(--white-color);
}

/*======================== Services section =========================*/
.services__wrapper {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.services__card {
    width: 100%;
    padding: 26px 20px;
    display: flex;
    gap: 20px;
    border-radius: 10px;
    background-color: var(--card-bg);
    cursor: pointer;
}

.services__card:hover {
    background-color: #3B314B;
}

.services__card:focus {
    background-color: var(--main-bg);
    box-shadow: 0px 0px 0px 1px var(--main-green-color) inset;
}

.services__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/*======================== Feedback section =========================*/

.feedback_img {
    display: none;
}

/*====================== Footer ==========================*/
.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.footer__content-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 22px;
}

.menu-links__wrapper {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.menu-links__left-block,
.menu-links__right-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.menu-link {
    font-size: 16px;
    line-height: 115%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.menu-link:focus,
.menu-link:active {
    color: #706AED;
}

.social-link {
    cursor: pointer;
    width: 32px;
    height: 32px;
}

.social-links__wrapper {
    display: flex;
    gap: 20px;
    align-self: center;
    padding: 3px;
}

.social-link__vk>svg:hover path {
    fill: #0077FF;
}

.social-link__tg>svg:hover path {
    fill: #24A1DE;
}

.contacts {
    align-self: center;
}

.footer__phone-number {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 19px;
    color: #EEF1F5;
}

.footer__mail {
    font-size: 18px;
    line-height: 17px;
    color: var(--white-color);
}

.footer__logo {
    width: 199px;
}

.privacy-policy {
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 10px;
}

.copyright {
    font-size: 8px;
    line-height: 110%;
    padding-top: 12px;
}

.footer__phone-number:hover,
.footer__mail:hover,
.privacy-policy:hover {
    color: var(--acc-text-violet);
}

.footer__map {
    width: 340px;
    height: 271px;
    overflow: hidden;
    border-radius: 10px;
}

.ymaps-2-1-79-copyright {
    top: -35px !important;
}

/*====================== modals ==========================*/
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
}

.modal__overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    background: rgba(32, 22, 48, 0.85);
}

.modal__content {
    width: 350px;
    height: auto;
    padding: 20px 10px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(209, 199, 225, 0.4);
    border-radius: 10px;
    position: relative;
    z-index: 150;
}

.modal__close {
    width: 100%;
    display: flex;
    justify-content: end;
    flex: none;
    padding: 0 5px 20px 0;
    cursor: pointer;
}

.modal__heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-h2 {
    font-size: 22px;
    line-height: 120%;
}

.modal__subtitle {
    font-size: 15px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 10px;
}

.modal-form__item {
    background-color: #312741 !important;
}

.success__content {
    padding: 20px 20px 40px !important;
}

.success__modal__close {
    padding: 0 0 20px 0;
}

.success__modal-img {
    margin: 0 auto;
    width: 96px;
    height: 96px;
}

.review__modal__close {
    padding: 0 0;
}

.modal-review__card {
    padding: 0 0;
}