/*!
* v.1.0.
* Copyright Renala, 2025
* Содержит reset и базовые стили 2025
*/

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
textarea {
  resize: vertical;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}
:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 3px;
}
button, a, input, select, textarea, svg path, svg circle {
  transition: all 0.2s ease;
}
/* @media (min-width: 1440px) {
  body {
    font-size: 18px;
  }
} */
/* @media (prefers-color-scheme: dark) {
  body {
    background-color: #111;
    color: #eee;
  }
} */

/* Мои стили */
/* Только для screen reader - для скрытых label */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Шрифты Inter */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter/static/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter/static/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter/static/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter/static/Inter-Bold.woff2') format('woff2');
}

/* Разметка страницы */
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: #373737;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 100px;
}
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content {
  flex: 1;
  min-height: 0; /* Предотвращает layout shift */
}
.container {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 15px;
    max-width: 1280px;
}

/*-- Разметка страницы --*/

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #96745D;
    text-transform: uppercase;
}
h2 {
    font-size: 36px;
    font-weight: 700;
    color: #96745D;
    text-transform: uppercase;
}
h1 span, h2 span {
    color: #262324;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 15px 20px;
  background-color: #5DAF98;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  min-height: 48px;
  min-width: 48px;
}
.btn svg {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    transition: color 0.25s ease;
}

/* Хедер */

.header {
  color: rgba(55, 55, 55, 0.6);
}
.header-top {
    height: 50px;
    line-height: 50px;
    background-color: #fff;
}
.header_top_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-address {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-search-btn,
.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
    color: rgba(55, 55, 55, 0.6);
    text-decoration: none;
}
.header-search-btn svg,
.header-cart-btn svg {
  color: #373737;
}
.header-search-btn:hover,
.header-cart-btn:hover,
.header-search-btn:hover svg,
.header-cart-btn:hover svg {
  color: #5DAF98;
}

/* Селектор языка */
.header-lang-select {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-icon {
  color: #373737;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.header-lang-select:hover .lang-icon {
  color: #5DAF98;
}

.lang-select {
  padding: 0;
  background: #fff;
  color: rgba(55, 55, 55, 0.6);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}

.lang-select:hover {
  border-color: #5DAF98;
  color: #5DAF98;
}

.lang-select:focus {
  outline: none;
  border-color: #5DAF98;
  color: #5DAF98;
}
.header-search-btn svg {
    display: inline-block;
    margin-right: 5px;
    vertical-align: text-bottom;
    transition: color 0.25s ease;
}
.header-main {
    display: block;
    padding: 20px 0;
}
.header_main_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  position: relative;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.header-logo {
    flex-shrink: 0;
}
.header-logo svg {
    display: inline-block;
    margin-bottom: 10px;
    vertical-align: middle;
}
.header-menu-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    color: #96745D;
    transition: all 0.25s ease;
}
.header-menu a:hover .header-menu-icon {
  transform: rotate(90deg);
  color: #5DAF98;
}
.header-menu {
    display: flex;
  align-items: center;
  gap: 20px;
}
.header-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0px;
}
.header-menu li {
    display: inline-block;
}
.header-menu li a {
  padding: 0 20px;
  text-decoration: none;
  color: #262324;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 78px;
  font-size: 18px;
}
.header-menu a:hover,
.header-menu a:hover svg {
    color: #5DAF98;
}
.header-menu a:hover svg {
    color: #5DAF98;
}
.header-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-contacts-telegram {
    display: inline-block;
    vertical-align: middle;
}
.header-contacts-whatsapp {
    display: inline-block;
    vertical-align: middle;
}
.header-contacts-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    padding: 12px 8px;
    min-height: 48px;
    min-width: 48px;
}
@media screen and (max-width: 1100px) {
    .header_top_inner {
        justify-content: flex-end;
    }
    .header-address {
        display: none;
    }
    .header-main .container {
        position: static;
    }
    .header_main_inner {
        position: static;
    }
    .header-contacts {
        top: 24px;
        left: 15px;
        right: auto;
    }
    .header-contacts-telegram {
        margin-right: 10px;
    }
    .header-contacts-whatsapp {
        margin-right: 10px;
    }
    .header-contacts-phone {
        margin-right: 10px;
    }
}
/* Иконка гамбургера для мобильного меню */
.header-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    color: #96745D;
    transition: color 0.25s ease;
}

.header-menu-toggle:hover {
    color: #5DAF98;
}

.header-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.header-menu-toggle-icon {
    display: block;
}

.header-menu-toggle-icon-close {
    display: none;
}

.header-menu-toggle.active .header-menu-toggle-icon {
    display: none;
}

.header-menu-toggle.active .header-menu-toggle-icon-close {
    display: block;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #262324;
    margin: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #262324;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    color: #5DAF98;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    text-decoration: none;
    color: #262324;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.25s ease;
}

.mobile-menu li a:hover,
.mobile-menu li a:hover svg {
    color: #5DAF98;
}

.mobile-menu li a svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media screen and (max-width: 900px) {
    .header-menu {
        display: none;
    }
    
    .header-menu-toggle {
        display: flex;
    }
    
    .header_main_inner {
        justify-content: space-between;
    }
    .mobile-menu li a svg {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .header-logo svg {
        width: 100px;
        height: auto;
    }
    .header-contacts-telegram, 
    .header-contacts-whatsapp {
        margin-right: 0;
    }
    .header-actions span {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .header-cart-btn {
        position: absolute;
        top: 80px;
        right: 115px;
        background: transparent;
    }
    .header-search-btn {
        position: absolute;
        top: 80px;
        right: 67px;
        margin: 0;
        background: transparent;
    }
}
/*--Хедер--*/

/* Футер */
.footer-top {
  margin-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}
.footer-address {
    max-width: 320px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #373737;
    line-height: 100%;
    letter-spacing: 0px;
    opacity: 0.6;
}


.footer-transfer-btn {
    margin-left: 20px;
}
.footer-nav {
    padding: 30px 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin: 0;
    padding: 0;
}

.footer-nav ul li a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    opacity: 0.6;
}

@media screen and (max-width: 1100px) {
    .footer-nav ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .footer-top {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-address {
        max-width: 100%;
    }
    .footer-contacts {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .footer-contacts .header-contacts-telegram svg,
    .footer-contacts .header-contacts-whatsapp svg {
        width: 50px;
        height: 50px;
    }
    .footer-transfer-btn {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
}
@media screen and (max-width: 640px) {
    .footer-nav {
        display: none;
    }
}
/*--Футер--*/



/* Стили для Datepicker */
.datepicker-input {
    cursor: pointer;
}

.datepicker-input:focus {
    cursor: text;
}

/* Кастомизация jQuery UI Datepicker */
.ui-datepicker {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ui-datepicker .ui-datepicker-header {
    background-color: #5DAF98;
    border-radius: 10px 10px 0 0;
    color: #fff;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    cursor: pointer;
}

.ui-datepicker .ui-state-disabled {
    opacity: 0.3;
    cursor: default;
}

.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month {
    opacity: 0.3;
}

.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-unselectable {
    opacity: 0.3;
    cursor: not-allowed;
}





/* Форма резервации */
.reservation h2 {
    margin-bottom: 10px;
    color: #fff;
}
.reservation h2 span {
    color: rgba(222, 198, 183, 1);
}
.reservation-subtitle {
    margin-bottom: 40px;
    color: #fff;
    line-height: 28px;
    letter-spacing: 0px;
    opacity: 0.6;
}
.reservation {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding-bottom: 110px;
    overflow-x: hidden;
}

.reservation-bg {
    width: 60%;
    padding: 30px;
    background: linear-gradient(103.37deg, #312D2E 0%, #484848 100%);
    flex-shrink: 0;
}

.reservation-lady {
    width: 40%;
    background: rgba(242, 225, 215, 1);
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

@media screen and (max-width: 1023px) {
    .reservation {
        flex-direction: column;
        padding-bottom: 0;
    }

    .reservation-bg {
        width: 100%;
        order: 2; /* Блок с формой идет вторым (внизу) */
    }

    .reservation-lady {
        width: 100%;
        order: 1; /* Блок с изображением идет первым (сверху) */
    }
}

@media screen and (max-width: 767px) {
    .reservation-bg {
        padding: 40px 20px;
    }
    .reservation-subtitle {
        margin-bottom: 20px;
    }
}

.reservation-lady__image {
    position: absolute;
    bottom: -59px;
    right: -80px;
    width: 790px;
    max-width: unset;
}

.reservation-lady__img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

@media screen and (max-width: 1024px) {
    .reservation-lady__image {
        width: 740px;
        right: -175px;
        bottom: -56px;
    }
}

@media screen and (max-width: 1023px) {
    .reservation-lady__image {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
    }

    .reservation-lady__img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }
}
.reservation-form {
    position: relative;
    max-width: 640px;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 1023px) {
    .reservation-form {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .reservation-form {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
    }
}

.reservation-form .form-group {
    margin-bottom: 0;
}

.reservation-form .form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.reservation-form .form-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #373737;
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.reservation-form .form-input:focus {
    outline: none;
    border-color: #5DAF98;
}

.reservation-form .form-input.error {
    border-color: #dc3545;
}

.reservation-form .form-error {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #dc3545;
    min-height: 20px;
}

.reservation-form .form-error:empty {
    display: none;
}

.reservation-btn {
    width: 100%;
    margin-top: 26px;
}

/* Обертка для поля контакта */
.contact-input-wrapper {
    display: flex;
    gap: 3px;
    align-items: stretch;
}


.contact-type-select {
    width: 150px;
    flex-shrink: 0;
    padding: 10px 35px 10px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #373737;
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23373737' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 8px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.contact-type-select:focus {
    outline: none;
    border-color: #5DAF98;
}

.contact-type-select.error {
    border-color: #dc3545;
}

.contact-input {
    flex: 1;
}

/* Кастомный select с иконками */
.custom-select-wrapper {
    position: relative;
    width: 150px;
    flex-shrink: 0;
}

.custom-select {
    width: 100%;
    padding: 10px 35px 10px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #373737;
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    min-height: 44px;
}

.custom-select:focus {
    outline: none;
    border-color: #5DAF98;
}

.custom-select-wrapper.open .custom-select {
    border-color: #5DAF98;
}

.custom-select-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.custom-select-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-select-text {
    flex: 1;
}

.custom-select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    pointer-events: none;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.custom-select-wrapper.open .custom-select-dropdown {
    display: block;
}

.custom-select-option {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-select-option:hover {
    background-color: #f5f5f5;
}

.custom-select-option:first-child {
    border-radius: 10px 10px 0 0;
}

.custom-select-option:last-child {
    border-radius: 0 0 10px 10px;
}

/* Иконки для опций select через псевдоэлементы (для кастомного стиля) */
.contact-type-select option[value="whatsapp"] {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='10' fill='%2340A45A'/%3E%3Cpath d='M27.9268 12.0625C25.9512 10.0937 23.3171 9 20.5366 9C14.7561 9 10.0732 13.6667 10.0732 19.4271C10.0732 21.25 10.5854 23.0729 11.4634 24.6042L10 30L15.561 28.5417C17.0976 29.3438 18.7805 29.7812 20.5366 29.7812C26.3171 29.7812 31 25.1146 31 19.3542C30.9268 16.6563 29.9024 14.0312 27.9268 12.0625Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
}

/* Breadcrumbs */
.bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 60px;
    font-size: 14px;
    color: rgba(150, 116, 93, 1);
}

.bc a {
    color: rgba(150, 116, 93, 1);
    text-decoration: none;
    transition: opacity 0.2s;
}

.bc a:hover {
    opacity: 0.7;
}

.bc span:last-child {
    color: #373737;
}

/* Медиа запросы для мобильных устройств */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 20px;
    }
    .btn {
        font-size: 14px;
    }
    .bc {
        margin: 10px 0 20px;
    }
}

