:root {
  --text-color: #637585;
  --main-title-color: #004867;
}

::placeholder {
  color: rgb(211, 198, 198);
  opacity: 1;  
}

#ConDate {
    background-color: transparent;
    color: white; /* Цвет текста, когда дата уже выбрана */
}

/* Стилизация плейсхолдера для всех браузеров */
#ConDate::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1;
}

/* Специфично для Samsung/Webkit */
#ConDate::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/*
 loader
*/

.loader-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(50px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease;
}


.loader-wrapper.hidden {
  opacity: 0;
  backdrop-filter: blur(0px);
  pointer-events: none;
}

.loader-wrapper img {
  width: clamp(120px, 30vw, 400px);
}

.loaded .content {
  filter: blur(0px);
}

.modal-doc-input {
  border: 0px;
  outline: 0px;
  background-color: #1E62AD;
  border-radius: 24px;
  padding: 15px;
  font-size: clamp(12px,3vw,22px);
  color: white;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
 loader
*/

/*
 modal
*/

/* --- Кастомная логика модального окна --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none; /* Скрыто по умолчанию */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Класс .show добавляется через ваш modal.js */
.modal.show {
  display: flex; 
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1; /* Позади контента модалки */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-dialog {
  position: absolute !important;
  top: 40px !important;
  z-index: 2; /* Поверх бэкдропа */
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Отступ между основным окном и предупреждением */
}

.modal-warning {
  position: relative;
  z-index: 2; /* Поверх бэкдропа */
  width: 100%;
  max-width: 500px;
  z-index: 1000;
  background: #fff;
  border-radius: var(--modal-radius);
  color: #004867;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #536072;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
}

.btn-close:hover {
  color: #1E62AD;
}

.badge {
  padding: 1px 8px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  background-color: #1E62AD;
  border-radius: 8px;
}

.date-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.time-choose {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 20px;  
}

.form-control {
  font-size: 18px;
  padding: 6px;
}

.form-control option {
  color: black;
}

.btn-modal-apre-cont {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-modal-apre-cont .btn-main-secondary {
  outline: 1px solid black;
  color: black;
}

.btn-modal-apre-cont .btn-main-secondary:hover {
  box-shadow: 0px 0px 13.7px -2px rgba(87, 29, 23, 0.82);
}

.modal-warning-body {
    display: flex;
    flex-direction: column;
}

.warning-color {
    color: #A90000;
}

.modal-warning-list-item {
    font-size: 20px;
    font-weight: 600;
}

.con-btn {
    margin: 0 auto;

}

/*
 modal
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
}

body {
  background-image: url('../img/pattern/Pattern.png');
  background-repeat: repeat;
  background-size: 100px;
}

a {
  text-decoration: none;
}

.btn {
  transition: 0.5s;
  text-align: center;
  background-color: #DD5244;
  padding: 11px 18px;
  border-radius: 15px;
  box-shadow: 0px 4px 56.7px -1px rgba(0, 0, 0, 0.25);
  border: none;
  line-height: 150%;
  font-size: 16px;
  font-family: "Raleway" sans-serif;
  font-weight: 600;
  cursor: pointer;
  color: white;
}

.btn:hover {
  transition: 0.5s;
  box-shadow: 0px 0px 13.7px -2px rgba(87, 29, 23, 0.82);
}

.btn-secondary {
  transition: 0.5s;
  text-align: center;
  background-color: transparent;
  outline: 1px solid #CAF4FF;
  padding: 11px 18px;
  border-radius: 15px;
  box-shadow: 0px 0px 7.2px rgba(202, 244, 255, 0.78);
  border: none;
  line-height: 150%;
  font-size: 16px;
  font-family: "Raleway" sans-serif;
  font-weight: 600;
  cursor: pointer;
  color: #CAF4FF;
}

.btn-secondary:hover {
  transition: 0.5s;
  box-shadow: 0px 0px 16.4px rgba(202, 244, 255, 0.78);
}

.btn-secondary-white {
  transition: 0.5s;
  text-align: center;
  background-color: transparent;
  outline: 1px solid #FFFFFF;
  padding: 11px 18px;
  border-radius: 15px;
  box-shadow: 0px 0px 7.2px rgba(0, 72, 103, 0.78);
  border: none;
  line-height: 150%;
  font-size: 16px;
  font-family: "Raleway" sans-serif;
  font-weight: 600;
  cursor: pointer;
  color: #FFFFFF;
}

.btn-secondary-white:hover {
  transition: 0.5s;
  box-shadow: 0px 0px 16.4px rgba(0, 72, 103, 0.78);
}

.abtn {
    width: 204px;
  }

.container {
  width: 90%;
  height: 100%;
  max-width: 1125px;
  margin: 0 auto;
}

.nav-bar {
  transition: 0.3s;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 150px;
  background-color: transparent;
  z-index: 1020;
  padding: 0px 21px;
}

.nav-bar-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: start;
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  max-width: 1122px;
  max-height: 86px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 13.6px rgba(87, 29, 23, 0.25);
}

.nav-bar-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 36px;
}

.nav-bar-socials-menu {
  gap: 12px;
  margin-left: 27px;
  min-width: 126px;
  justify-content: center;
}

.nav-bar-socials-menu img {
  width: 34px;
}

.nav-bar-menu-item {
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
  text-wrap: nowrap;
}

.nav-bar-menu-item svg path {
  fill: #637585;
  fill-opacity: 0.5;
  transition: fill .3s, fill-opacity .3s;
}

.nav-bar-menu-item:hover svg path {
  fill: #1E62AD;
  fill-opacity: 1;
}

.footer-container-top-part-logo-socials-item svg path {
  fill: #dc5143;
  transition: fill .3s, fill-opacity .3s;
}

.footer-container-top-part-logo-socials-item:hover svg path {
  fill: #2162ab;
  fill-opacity: 1;
}

.nav-bar-menu-item:hover {
  transition: 0.3s;
  color: #1E62AD;
}

.nav-bar-menu-item a:hover {
  transition: 0.3s;
  color: #1E62AD;
}

.nav-bar-menu-item.active {
  transition: 0.3s;
  color: #1E62AD;
}

.nav-bar-menu-item.active a {
  transition: 0.3s;
  color: #1E62AD;
}

.nav-bar-menu-item a {
  cursor: pointer;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
}

.nav-bar-logo {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 192px;
}

.nav-bar-logo-img {
  height: 61px;
}

.nav-bar-scrolled {
  transition: 0.3s;
  background-color: #f8f9fa;
}

.section-title {
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  font-size: clamp(26px, 16vw ,62px);
  line-height: 100%;
  color: var(--main-title-color);
  text-align: center;
  margin-top: 41px;
}

.first-section {
  margin-top: 22px;
}

.main-title {
  font-family: "Rubik", sans-serif;
  font-size: 112px;
  font-weight: 800;
  line-height: 114px;
  margin-bottom: 23px;

  transform-origin: top center;
  scale: clamp(0.7, 1vw + 0.5, 1);
}

.main-title span {
  font-family: "Rubik", sans-serif;
}

.main-title-1 {
  font-size: 112px;
}

.main-title-2 {
  font-size: 100px;
}

.main-slogan-item {
  display: flex;
  flex-direction: row;
}

.main-slogan-item-img {
  margin-right: 27px;
}

.main-slogan-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(32px, 3vw ,36px);
  font-family: "Caveat", cursive;
  line-height: 36px;
}

.main-title-first-section-element {
  display: flex;
  flex-direction: column;
  width: 604px;
}

.main-title-second-section-element {
  display: flex;
  flex-direction: column;
  width: 508px;
}

.main-title-first-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-title-img-container {
  position: relative;
  width: 508px;
  height: 348px;
  border-radius: 20px;
  background: RGBA(3, 158, 225, 0.79);
  background: linear-gradient(151deg, rgba(3, 158, 225, 1) 0%, rgba(2, 86, 123, 1) 100%);
}

.main-title-second-section-img {
  position: absolute;
  top: 56px;
  right: 19px;
  width: 424px;
  height: 378px;
  box-shadow: 0px 4px 56.7px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.selfcare-img {
  margin: 56px auto;
  width: 100%;
}

.main-title-second-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.main-title-seconod-section-item {
  position: relative;
  width: 1118px;
  height: 100%;
}

.main-title-seconod-section-item-block {
  position: relative;
  background-clip: padding-box;
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  width: 572px;
  height: 331px;
  border-radius: 20px;
  background: RGBA(3, 158, 225, 0.79);
background: linear-gradient(113deg, rgba(3, 158, 225, 1) 0%, rgba(2, 86, 123, 1) 93%);
}

.main-title-seconod-section-item-block-text {
  font-family: "Rubik", sans-serif;
  line-height: 39px;
  display: block;
  width: 322px;
  padding-top: 40px;
  margin-left: 58px;
}

.main-title-seconod-section-item-block b {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  line-height: 35px;
}

.worm1 {
  position: absolute;
  top: 166px;
  left: -49px;
}

.main-title-seconod-section-item-block-img-1 {
  position: absolute;
  left: 435px;
  top: 45px;
  box-shadow: 0px 4px 56.7px rgba(0, 0, 0, 0.25);
  z-index: 5;
  border-radius: 20px;
}

.main-title-seconod-section-item-block-img-2 {
  position: absolute;
  left: 694px;
  top: 0px;
  box-shadow: 0px 4px 56.7px rgba(0, 0, 0, 0.25);
  z-index: 4;
  border-radius: 20px;
}

.second-section {
  margin-top: 214px;
  padding: 75px 0;
  height: 100%;
}

.second-section-title {
  width: 100%;
  font-family: "Rubik", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 100%; 
  text-align: center;
  color: var(--main-title-color);
}

.second-section-item {
  position: relative;
  border-radius: 20px;
  width: 1125px;
  height: 607px;
  margin: 63px auto;
  background: #CEB6FB;
  background: linear-gradient(118deg, rgba(206, 182, 251, 1) 0%, rgba(77, 135, 186, 1) 96%);
  display: flex;
  justify-content: end;
}

.worm2 {
  position: absolute;
  top: 443px;
  right: 8px;
}

.img4 {
  position: absolute;
  top: 56px;
  left: 34px;
  box-shadow: 0px 4px 56.7px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.second-section-list {
  width: 480px;
  height: 443px;
  display: flex;
  flex-direction: column;
  gap: 37px;
  margin-top: 53px;
  list-style: none;
  padding-left: 0;
  margin-right: 18px;
}

.second-section-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.second-section-list-item::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 20%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url('../img/icons/star.svg') no-repeat center / contain;
}

.second-section-list-item-title {
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: white;
}

.second-section-list-item-text {
  color: #F9F9F9;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 24px;
}

.third-section {
  height: max-content;
  margin: 0 auto;
  width: 100%;
  padding-top: 66px;
  margin-bottom: 104px;
}

.third-section-title {
  font-size: 62px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: var(--main-title-color);
  width: 100%;
  text-align: center;
}

.third-section-item-services {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 29px;
  justify-content: space-between;
  margin-top: 62px;
}

.third-section-item-services-item {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 354px;
  height: 100%;
  min-height: 576px;
  padding: 20px 20px 42px 20px;
  background: #36AEE2;
  background: linear-gradient(162deg, rgba(54, 174, 226, 1) 0%, rgba(22, 106, 142, 1) 97%); 
}

.third-section-item-services-item.last {
  position: relative;
  flex-direction: row;
  justify-content: start;
  min-height: 260px;
  background: #36AEE2 !important;
  background: linear-gradient(190deg,rgba(54, 174, 226, 1) 0%, rgba(29, 132, 177, 1) 40%, rgba(22, 106, 142, 1) 97%) !important;
}

.third-section-item-services-item:nth-child(3n+1) {
  background: #36AEE2;
  background: linear-gradient(90deg, rgba(54, 174, 226, 1) 0%, rgba(22, 106, 142, 1) 97%);
}

.third-section-item-services-item:nth-child(3n+2) {
  background: #36AEE2;
  background: linear-gradient(270deg, rgba(54, 174, 226, 1) 0%, rgba(22, 106, 142, 1) 97%);
}

.third-section-item-services-item:nth-child(3n+3) {
  background: #36AEE2;
  background: linear-gradient(90deg, rgba(54, 174, 226, 1) 0%, rgba(22, 106, 142, 1) 97%);
}

.third-section-item-services-item-disc {
  display: flex;
  flex-direction: column;
}

.third-section-item-services-item-disc.last {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 384px;
  margin-left: 38px;
  height: 100%;
  max-height: 194px;
}

.third-section-item-services-item-img-wrapper {
  width: 310px;
  height: 200px;
  position: relative;
  border-radius: 20px;
}

.third-section-item-services-item-img {
  width: 310px;
  height: 200px;
}

.third-section-item-services-item-title {
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  color: #CAF4FF;
  margin-top: 19px;
  padding:  0px 20px;
}

.third-section-item-services-item-title.last {
  margin-top: 6px;
  padding: 0px;
}

.third-section-item-services-item-text {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0%;
  line-height: 140%;
  color: #FFFFFF;
  margin-top: 10px;
  padding:  0px 20px;
}

.third-section-item-services-item-text.last {
  margin-top: 16px;
  padding: 0px;
}

.third-section-item-services-item-btn {
  padding: 0px 20px;
}

.third-section-item-services-item-btn.last {
  margin-top: 15px;
  padding: 0px;
}

.third-section-item-services-item-btn .btn-secondary {
  min-width: 204px;
}

.worm3 {
  position: absolute;
  z-index: 5;
  top: -95px;
  left: 781px;
}

.fourth-section {
  padding-top: 129px;
  height: max-content;
  margin: 0 auto;
  width: 100%;
}

.fourt-section-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  height: 100%;
}

.doctors-info-block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 50px 40px 50px;
  border-radius: 20px;
  background: #D2F280;
  background: linear-gradient(15deg, rgba(210, 242, 128, 1) 0%, rgba(98,180,230, 1) 86%);
}

.doctors-info-block.first {
  height: 890px;
}

.doctors-info-block.second {
  display: flex;
  flex-direction: column;
  gap: 23px;
  min-height: 262px;  
  height: 262px;
  padding: 36px 0px 39px 95px;
  background: #D2F280;
  background: linear-gradient(175deg, rgba(210, 242, 128, 1) 0%, rgba(98,180,230, 1) 86%);
}

.worm4 {
  position: absolute;
  z-index: 5;
  top: -167px;
  left: 26px;
}

.doctors-infor-title {
  padding: 0px 50px;
  margin-left: auto;
  width: 734px;
  font-size: clamp(40px ,7vw,52px);
  font-weight: 700;
  line-height: 113%;
  color: var(--main-title-color);
  font-family: "Rubik", sans-serif;
}

.doctors-info-disc {
  text-align: justify;
  padding: 0px 50px;
  margin-top: 25px;
  color: var(--main-title-color);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 4%;
}

.doctors-slider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 557px;
  margin: 26px auto;
}

.doctors-slider-btn {
  display: grid;
  place-items: center;
  width: 50px;
  z-index: 2;
}

.doctors-slider-btn img {
  cursor: pointer;
}

#docGalleryNext img {
  transform: rotate(180deg);
}

.doctors-slider-gallery {
  overflow: hidden;
  width: 896px;
  margin: 0px 20px;
}

.doctors-slider-wrapper {
  display: flex;
  flex-direction: row;
  gap: 37px;
  will-change: transform;
  transition: transform 0.5s ease;
}

.doctor-slider-item {
  display: flex;
  flex-direction: column;
  height: 506px;
}

.doctor-slider-item-img {
  margin: 0 auto;
  border-radius: 50%;
  width: 243px;
  /* box-shadow: 0px 4px 56.7px -1px rgba(0, 0, 0, 0.25); */
  box-shadow: 0px 4px 10.7px -1px rgba(0, 0, 0, 0.25);
}

.doctor-slider-item-disc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 31px;
  width: 273px;
  height: 164px;
  border-radius: 20px;
  padding: 18px 32px;
  background-color: #1B7BA2;
  color: white;
}

.doctor-slider-item-disc-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doctor-slider-item-btn {
  margin-top: 22px;
  
}

.doctor-slider-item-btn button {
  width: 100%;
  box-shadow: unset;
}

.doctor-slider-item-disc-name-surname {
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}

.doctor-slider-item-disc-name-firstname {
  font-size: clamp(12px, 90%, 16px);
  line-height: 26px;
  font-weight: 700;
  text-wrap: nowrap;
}

.doctor-slider-item-disc-expirience {
  font-size: 10px;
  line-height: 2%;
  font-weight: 400;
}

.doctor-slider-item-disc-speciality {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.doctors-slider-counter {
  position: absolute;
  bottom: 40px;
  left: 110px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  cursor: pointer;
  width: 85%;
}

.doctors-slider-counter-item {
  transition: 0.3s;
  border: 2px solid rgba(83, 96, 114, 0.3);
  border-radius: 40px;
  width: 100%;
  max-width: 34.95px;
  height: 0px;
}

.doctors-slider-counter-item.active {
  transition: 0.3s;
  border: 2px solid #1E62AD;
}

.worm5 {
  position: absolute;
  z-index: 5;
  top: -209px;
  left: 699px;
  pointer-events: none;
}

.doctors-infor-title-second {
  width: 638px;
  font-size: 52px;
  font-weight: 700;
  line-height: 113%;
  color: var(--main-title-color);
  font-family: "Rubik", sans-serif;
}

.doctors-info-block.second button {
  width: 204px;
}

.fifth-section {
  margin-top: 193px;
}

.fifth-section-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 26px; /* 30px по вертикали, 26px по горизонтали */
  width: 100%;
}

.fifth-section-item-contact {
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.fifth-section-item-contact.first {
  flex: 0 0 100%;
  height: 288px;
  box-shadow: 0px 0px 13.6px rgba(87, 29, 23, 0.25);
  background: #4D87BA;
  background: linear-gradient(105deg, rgba(77, 135, 186, 1) 24%, rgba(159, 165, 227, 1) 58%, rgba(77, 135, 186, 1) 92%);
}

.fifth-section-item-contact.second,
.fifth-section-item-contact.third {
  flex: 1 1 calc(50% - 13px);
  height: 308px;
  box-shadow: 0px 0px 13.6px rgba(87, 29, 23, 0.25);
  background: #9FA5E3;
  background: linear-gradient(295deg, #CEB6FB -20%, rgba(77, 135, 186, 1) 97%);  
}

.fifth-section-item-contact.third {
  background: #9FA5E3;
  background: linear-gradient(100deg, #CEB6FB -40%, rgba(77, 135, 186, 1) 97%);
}

.fifth-section-item-contact.fourth {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  background: #CEB6FB;
  background: linear-gradient(304deg, rgba(206, 182, 251, 1) 0%, rgba(77, 135, 186, 1) 97%);
}

.fifth-section-item-contact.fifth {
  position: relative;
  flex: 0 0 100%;
  height: 854px;
  background: #CEB6FB;
  background: linear-gradient(304deg, rgba(206, 182, 251, 1) 0%, rgba(77, 135, 186, 1) 97%);
}

.fifth-section-item-contact-img-1 {
  display: grid;
  place-content: center;
  margin-left: 72px;
  margin-right: 60px;
}

.fifth-section-item-contact-img-2 {
  display: grid;
  place-content: center;
  margin-left: 53px;
  margin-right: 51px;
}

.fifth-section-item-contact-img-3 {
  display: grid;
  place-content: center;
  margin-left: 59px;
  margin-right: 55px;
}

.fifth-section-item-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 0px;
  width: 90%;
  color: white;
}

.fifth-section-item-contact-info-title-1 {
  width: 530px;
  font-size: 52px;
  font-weight: 700;
  line-height: 113%;
  font-family: "Rubik", sans-serif;
}

.fifth-section-item-contact-info-disc-1 {
  width: 395px;
  line-height: 140%;
  font-size: 16px;
} 

.fifth-section-item-contact-info-title-2 {
  width: 179px;
  font-size: 33px;
  font-weight: 700;
  line-height: 113%;
  font-family: "Rubik", sans-serif;
}

.fifth-section-item-contact-info-disc-2 {
  width: 226px;
  line-height: 140%;
  font-size: 16px;
  font-variant-numeric: initial;
} 

.fifth-section-item-contact-info button {
  width: 204px;
} 

.iti__selected-country {
  width: auto !important;
}

.google-map {
  position: absolute;
  border-radius: 20px;
  top: 98px;
  right: 38px;
  width: 633px;
  height: 860px;
  box-shadow: 0px 4px 56.7px -1px rgba(0,0,0,0.25);
}

.google-map iframe {
  border-radius: 15px;
}

.fifth-section-contact-container {
  margin-left: 93px;
  margin-top: 116px;
  color: white;
}

.fifth-section-contact-container-title {
  font-size: clamp(36px,15vw,62px);
  font-weight: 700;
  line-height: 100%;
  font-family: "Rubik", sans-serif;
}

.fifth-section-contact-container-schedule {
  margin-top: 50px;
}

.fifth-section-contact-container-schedule-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  font-family: "Rubik", sans-serif;
}

.fifth-section-contact-container-scedule-disc {
  margin-top: 15px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.fifth-section-contact-container-scedule-connection {
  margin-top: 70px;
}

.fifth-section-contact-container-scedule-connection-disc {
  display: flex;
  flex-direction: row;
  width: 243px;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.fifth-section-contact-container-scedule-connection-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  font-family: "Rubik", sans-serif;
}

.fifth-section-contact-container-scedule-connection-disc-item {
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: row;
  gap: 6px;
  line-height: 24px;
}

.fifth-section-contact-container-scedule-connection-disc-item a {
  color: white;
  font-variant-numeric: normal;
}

.fifth-section-contact-container-scedule-connection-disc-item span {
  font-variant-numeric: normal;
}

.fifth-section-contact-container-scedule-connection-disc-item-img {
  display: grid;
  place-content: center;
}

.footer {
  width: 100%;
  margin: 298px auto auto auto;
  padding-bottom: 200px;
  height: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 383px;
  max-width: 1122px;
  margin: 0px auto;
  background-color: rgba(255, 255, 255, 0.50);
  border-radius: 20px;
  box-shadow: 0px 0px 13.6px 2px rgba(87, 29, 23, 0.25);
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 88px;
}

.footer-container-top-part {
  width: 975px;
  height: 247px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-container-top-part-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-container-top-part-logo-img {
  width: 223px;
  margin: 0 auto;
}

.footer-container-top-part-logo-socials {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 47px auto;
  margin-bottom: unset;
}

.footer-container-top-part-line {
  margin: 0 auto;
  border-bottom: 1px solid rgba(0,0,0,0.20);
  width: 990px;
  margin-top: 32px;
  margin-bottom: 21px;
}

.footer-container-bottom-part {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  height: max-content;
  padding: 0px 66px 0px 64px;
  color: #6F93CB;
  font-family: "Raleway", sans-serif;
}

.footer-container-bottom-part-privacy-policy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 480px;
}

.footer-container-bottom-part-privacy-policy a {
  color: #6F93CB;
}

.footer-container-bottom-part-privacy-policy a:hover {
  color: #6582b1;
}

.footer-container-top-part-nav {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}

.footer-container-top-part-nav span {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}


.footer-container-top-part-nav a {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-href {
  color: #1E62AD !important;
  line-height: 20px;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.footer-contact-adress {
  line-height: 27px;
}

.particles {
  position: absolute;
  border-radius: 20px;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  filter: blur(1px);
}

#toast-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast {
  min-width: 220px;
  max-width: 350px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: sans-serif;
  opacity: 0;
  transform: translateX(20px);
  animation: toast-in 0.3s forwards, toast-out 0.4s forwards var(--delay);
  box-shadow: 0 5px 18px rgba(0,0,0,0.2);
}

.toast.success { background: #139451; }
.toast.error   { background: #DE2630; }
.toast.info    { background: #039EE1; }
.toast.warn    { background: #E67D17; color:#333; }

.modal-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #1E62AD;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
}

.modal-input-cont {
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
  font-size: 16px;
}

.modal-label {
  font-size: 12px;
  margin-bottom: 5px;
  display: flex;
  justify-content: start;
}

.modal-textarea {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  border: 1px solid #1E62AD;
  outline: none;
  border-radius: 8px;
}

.card-statement-content-form-item {
  width: 100%;
  padding: 15px;
  border: 1px solid white;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
  background-color: transparent;
  color: white;
}

.card-statement-content-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-right: 72px;
}

.textarea-form {
  padding: 15px;
  min-height: 60px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  resize: vertical;
}


.imgDocDiv {
    position: relative;
}

#imgDocName {
    position: absolute;
    margin: auto;
    background-color: white;
    font-size: 16px;
    bottom: 10px;
    left: 0;
    right: 0;
}

.calendar-btn {
    border: 0;
    color: 0;
    background-color: transparent;
}

.calendar-btn:hover {
    cursor: pointer;
}

.con {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.con-inner {
    transition: 0.7s ease-in-out;
    display: flex;
    flex-direction: row;
    height: 500px;
    width: calc(100% * 2);
    position: absolute;
    left: 0px;
}

.item {    
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}

.text-bg-badge {
    background-color: #1E62AD;
}

.date-choice {
    height:max-content;
    padding: 0px;
}

.date-modal-content {
    border-radius: 15px;
    padding: 30px 30px 10px 30px;
    background-color: white;
}

.date-modal-title {
    display: flex;
    justify-content: center;
}

.activeBadge:hover {
    cursor: pointer;
}

.dates {
    transform: scale(1.1);
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    padding-top: 10px;
    width: 90%;
    max-height: 70%;
    height: max-content;
    justify-content: center;
    margin: 0 auto 15px auto;
}

#timeInput {
    margin: 0 auto;
    width: max-content;
}

.centered {
    display: flex;
    justify-content: center;
}

.firstStep {
    margin: 1px;
}

.disabled-badge {
    opacity: 0.5;
}

.disabled-badge:hover {
    cursor: default;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}

@media (max-width: 1254px) {
  .main-slogan-item-img {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }

  .main-slogan-item-text {
    flex-direction: column;
    justify-content: start;
  }

  .main-title-img-container {
    display: none;
  }
  
  .main-slogan-item {
    width: 100%;
  }
  .main-title {
    text-align: center;
  }

  .main-title-first-section-element {
    width: 100%;
  }

  .main-slogan {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
  }

  .main-title-first-section {
    justify-content: space-around;
  }

  .main-title-seconod-section-item {
    width: 100%;
  }

  .main-title-seconod-section-item-block {
    margin: 0 auto;
  }

  .main-title-seconod-section-item-block-img-1 {
    right: -69px;
    left: unset;
    top: 251px;
  }

  .main-title-seconod-section-item-block-img-2 {
    left: 0px;
    top: 506px;
  }

  .second-section {
    
    margin-top: 575px;
  }

  .second-section-item {
    margin: 463px auto 0px auto;
    width: 100%;
    justify-content: center;
  }

  .second-section-list {
    margin-top: 87px;
    margin-right: 0px;
    margin-left: 69px;
  }

  .img4 {
    width: 475px;
    top: -373px;
    left: 50%;
    height: 400px;
    object-fit: none;
    transform: translateX(-50%);
  }

  .third-section {
    height: max-content;
    margin: 0 auto;
    width: 100%;
    padding-top: 240px;
    margin-bottom: 104px;
  }

  .third-section-item-services-item {
    width: 354px;
    height: 100%;
    max-height: 576px;
  }

  .third-section-item-services-item-disc {
    display: grid;
    place-items: center;
  }

  .third-section-item-services-item-text {
    height: 140px;
  }

  .third-section-item-services-item-btn {
    margin-top: 30px;
  }

  .third-section-item-services-item-disc.last {
    place-items: unset;
  }

  .worm2 {
    top: 480px;
  }

  .worm3 {
    top: 158px;
    left: 59%;
  }

  .doctors-slider-gallery {
    width: 600px;
  }

  .doctors-slider-counter {
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }

  .doctors-info-block.first {
    height: 100%;
  }

  .fourt-section-item {
    gap: 26px;
  }

  .doctors-infor-title {
    padding: 0;
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .worm4 {
    display: none;
  }

  .worm5  {
    display: none;
  }

  .doctors-slider-counter {
    justify-content: center;
  }

  .doctors-infor-title-second {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 5vw;
  }

  .doctors-info-block.second {
    justify-content: center;
    padding: 0px;
  }

  .abtn {
    margin: 0 auto;
  }

  .doctors-info-block.second button {
    margin: 0 auto;
  }

  .google-map {
    top: unset;
    right: 0px;
    width: 50%;
    height: 100%;
    bottom: 0;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  right: 30px ;
}

.burger span {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: var(--text-color);
  border: 1px solid white;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1188px) {
  .nav-bar-logo {
    max-width: 62px;
    margin-left: 30px;
  }

  .burger {
    display: flex;
  }

  .nav-bar-inner {
    align-items: center;
    justify-content: space-between;
  }

  .nav-bar-menu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 350px;
    height: 350px;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
  }

  .nav-bar-socials-menu {
    position: relative;
    width: auto;
    height: auto;
    transition: right 0.4s ease;
    z-index: 1054;
    top: 100px;
    background: transparent;
    box-shadow: unset;
    backdrop-filter: unset;
    opacity: 1;
    pointer-events: all;
    min-width: unset;
  }

  .nav-bar-menu.active {
    transition: right 0.4s ease;
    opacity: 1;
    top: 0;
    border-radius: 20px;
    pointer-events: all;
  }

  .nav-bar-socials-menu.active {
    left: 0;
  }

  .nav-bar-menu-item a {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-bar-socials-menu {
    flex-direction: row;
    gap: 16px;
    z-index: 1000;
    top: 0;
    left: -18px;
    margin: 5px 0px 0px 0px;
  }

  .nav-bar-socials-menu img {
    width: 40px;
  }

  .footer {
    padding: 0px 21px 200px;
  }

  .footer-nav {
    margin: 0 auto;
    width: 90%;
    max-width: 650px;
    flex-wrap: wrap;
  }

  .footer-container {
    height: 100%;
  }

  .footer-container-top-part-logo {
    padding: 0px 21px;
  }

  .footer-container-top-part {
    flex-direction: column;
    justify-content: space-between;
    margin-top: 32px;
    width: 100%;
    height: 100%;
    gap: 32px;
  }

  .footer-container-top-part-nav {
    flex: 1;
    margin: 0 auto;
    width: 160px;
  }

  .footer-container-top-part-line {
    width: 90%;
  }

  .footer-container-top-part-logo-img {
    width: 100%;
    max-width: 223px;
    margin: 0 auto;
  }

  .footer-container-bottom-part {
    margin-bottom: 22px;
  }
}

@media (max-width: 1043px) { 
  .google-map {
    top: unset;
    right: 0px;
    width: 100%;
    height: 50%;
    bottom: -450px;
    box-shadow: unset;
  }

  .footer {
    width: 100%;
    margin: 520px auto auto auto;
    padding-bottom: 200px;
    height: 100%;
  }
}

@media (max-width: 998px) {   
  .footer-container-bottom-part {
    font-size: 2vw;
    padding: 0px;
    flex-direction: column;
    width: 90%;
    justify-content: start;
  }

  .footer-container-bottom-part-copyright {
    text-align: center;
  }
  
  .footer-container-bottom-part-privacy-policy {
    justify-content: space-evenly;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }

   .main-slogan {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: unset;
    width: 100%;
    max-width: 604px;
  }

  .main-title-first-section {
    justify-content: center;
  }

  .main-slogan-item-text {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 933px) {
  .doctors-slider {
    display: flex;
    margin: 26px 0px auto 0px;
  }
  
  .doctors-slider-gallery {
    width: 280px;
  }

  .doctors-slider-counter {
    left: 50%;
    transform: translateX(-50%);
  }

  .doctors-info-block.first {
    height: 100%;
  }

  .fourt-section-item {
    gap: 26px;
  }

  .worm3 {
     display: none;
  }

  .fifth-section-item-contact-info-title-1 {
    font-size: 33px;
    width: 90%;
  }

  .fifth-section-item-contact-info-disc-1 {
    width: 90%;
  }

  .doctors-info-disc {
    padding: 0px;
  }

  .nav-bar-menu {
    width: 40%;
  }
}

@media (max-width: 901px) {
  .modal-warning {
   padding: 30px;
  }
}

@media (max-width: 750px) {

  .main-title-seconod-section-item-block {
   width: 100%;
   height: 399px;
  }

  .main-title-seconod-section-item-block-img-1 {
    right: 55px;
  }

  .worm1 {
    top: -122px;
    left: 300px;
  }
}

@media (max-width: 696px) { 

  .card-statement-content-form {
    padding: 0px 26px;
  }

  .fifth-section-item-contact.first {
    height: 100%;
  }

  .fifth-section-item-contact.third,
  .fifth-section-item-contact.second {
    min-height: 446px;
  }

  .fifth-section-item-contact {
    flex-direction: column;
    padding: 20px 0px;
    margin: 0px;
  }

  .fifth-section-item-contact-img-3 img,
  .fifth-section-item-contact-img-2 img,
  .fifth-section-item-contact-img-1 img {
   width: 90px; 
  }

  .doctors-info-block.first {
    height: max-content;
  }
  .fifth-section-item-contact.second {
    height: max-content;
  }
  .fifth-section-item-contact.third {
    height: max-content;
  }

  .fifth-section-item-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 26px 0px;
    gap: 15px;
    color: white;
    width: 100%;
  }

  .fifth-section-item-contact-info button {
    margin: 10px auto;
  }

  .iti__selected-country {
    margin: 0px auto !important;
  }

  .fifth-section-item-contact-info-title-1 {
    margin: 0 auto;
  }

  .fifth-section-item-contact-info-disc-1 {
    margin: 0 auto;
  }

  .fifth-section-item-contact-info-title-2 {
    margin: 0 auto;
  }

  .fifth-section-item-contact-info-disc-2 {
    margin: 0 auto;
  }

  .second-section-item {
    height: max-content;
    padding: 60px 40px;
  }

  .second-section-list {
    margin-left: 14%;
    margin-top: 0;
    height: 100%;
  }

  .worm2 {
     display: none;
  }

  .img4 {
    width: 78%;
  }

  .third-section {
    padding-top: 80px;
  }
}

@media (max-width: 628px) {  
  .main-title {
    line-height: clamp(10px,18vw ,114px);
    font-size: 0;
  }

  .main-title-1 {
    font-size: clamp(10px, 17.8vw ,112px);
  }

  .main-title-2 {
    font-size: clamp(10px, 15.9vw ,100px);
  }

  .worm1 {
    display: none;
  }

  .main-title-seconod-section-item-block-img-1 {
    width: 40%;
  }

  .main-title-seconod-section-item-block-img-2 {
    left: 52px;
    top: 110%;
    width: 60%;
  }

   .second-section {
    margin-top: 404px;
  }

  #toast-container {
    padding: 20px;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .toast {
    max-width: none;
    min-width: none;
    width: 100%;
  }
}

@media (max-width: 608px) { 
  .footer-nav {
    gap: 20px;
  }

  .footer-container-top-part-nav {
    text-align: center;
  }

  .footer-container-bottom-part {
    font-size: 2.4vw;
  }

  .doctors-info-block {
    padding: 44px 20px 40px 20px;
  }

  .doctors-infor-title-second {
    font-size: 7vw;
  }

  .fifth-section-contact-container {
    margin: 90px auto;
    color: white;
  }
}

@media (max-width: 507px) { 
  .doctors-slider-gallery {
    margin: unset;
  }

  .doctors-slider-btn {
    display: none;
  }

  .doctors-slider {
    display: flex;
    justify-content: center;
    margin: 26px 0px auto 0px;
  }

  .main-slogan-item {
    display: flex;
    flex-direction: column;
  }

  .main-slogan-item img {
    margin: 0 auto;
    width: 20%;
  }

  .main-slogan-item-img {
   margin-right: unset;
  }

  .main-slogan-item-text {
    text-align: justify;
  }

  .main-title-seconod-section-item-block {
    height: 100%;
    padding: 40px;
  }

  .main-title-seconod-section-item-block-text {
    padding-top: 0px;
    margin-left: 0px;
  }
  
  .main-title-seconod-section-item-block-img-1 {
    width: 40%;
  }

  .main-title-seconod-section-item-block-img-2 {
    left: 52px;
    top: 152%;
    width: 60%;
  }

  .modal-dialog {
    top: 20px !important;
  }
}

@media (max-width: 470px) { 
  .main-title-seconod-section-item-block {
    display: none;
  }

  .second-section {
    margin-top: 0px;
    padding-top: 20px;
  }

  .img4 {
    width: 93%;
  }
}

@media (max-width: 456px) { 
  .fifth-section-contact-container-title {
    text-align: center;
  }

  .fifth-section-contact-container-scedule-connection-disc {
    justify-content: center;
    margin: 16px auto;
  }

  .fifth-section-contact-container-schedule {
    text-align: center;
  }

  .btn-modal-apre-cont { 
    flex-direction: column;
  }

}

@media (max-width: 420px) { 
  .footer-container-bottom-part {
    font-size: 2.6vw;
    padding: 0px;
    flex-direction: column;
    width: 90%;
  }

  .nav-bar-socials-menu {
    display: none;
  }
 
  .third-section-item-services-item {
    width: 90%;
    min-width: unset;
    max-height: unset;
  }

  .third-section-item-services-item-img {
    width: 100%;
    height: unset;
  }

  .third-section-item-services-item-img-wrapper {
    width: 100%;
    height: unset;
  }

   .nav-bar-menu {
    width: 70%;
  }
}

/* phone */
@media (max-width: 382px) { 
  .main-slogan-item {
    display: flex;
    flex-direction: column;
  }

  .main-slogan-item img {
    margin: 0 auto;
    width: 20%;
  }

  .main-slogan-item-img {
   margin-right: unset;
  }

  .main-slogan-item-text {
    text-align: justify;
  }
  
  .modal-body {
    padding: 0 !important;
  }
}

.iti-container, 
.iti-mobile .iti--container,
.iti__dropdown-content {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

#exampleModalDate .modal-dialog {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Тот самый отступ между блоками */
    overflow-y: auto !important; /* Включаем вертикальный скролл */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#exampleModalDate .modal-dialog::-webkit-scrollbar {
    display: none; 
}

#exampleModalDate .date-modal-content,
#exampleModalDate .modal-warning {
    background: #fff;
    border-radius: 20px; /* Как у всех остальных окон */
    box-shadow: 0 6px 30px rgba(10, 10, 10, 0.2);
    width: 100%;
    margin: 0 !important; /* Убиваем старый margin-top: 10px, так как теперь работает gap */
    flex-shrink: 0;
}

#exampleModalDate .modal-warning {
    padding: 20px 30px;
}

.hidden {
  display: none;
}

@view-transition {
  navigation: auto;
}