.ui-d-none { display: none !important; }

.hero .slide-container {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding-top: 0;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .hero .slide-container {
    padding-bottom: 35px;
  }
}

.hero .slide-content {
  width: auto;
  max-width: calc(100% - 480px);
}

@media (max-width: 1199px) {
  .hero .slide-content {
    max-width: 100%;
  }
}

.hero .slide-content .border {
  margin-left: 0;
  margin-right: auto;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1010;
  background-color: rgba(1, 33, 85, 0.85);
  backdrop-filter: blur(2px);
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal.ui-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.modal-wrapper {
  background-color: #fff;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
}

.modal-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal-search .modal-wrapper {
  width: 800px;
  height: 700px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 20px;
}

.modal-search__row {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.modal-search__nav {
  flex: 0 0 270px;
  max-width: 270px;
  height: 100%;
  background-color: rgba(0, 80, 138, 0.08);
}

@media (max-width: 767px) {
  .modal-search__nav { display: none; }
}

.modal-search__nav .heading {
  display: flex;
  align-items: center;
  height: 66px;
  padding: 0 25px;
  color: #00508a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-search__nav .heading .icon svg { fill: #00508a; width: 20px; }

.modal-search__nav .heading .text {
  padding-left: 10px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-search__nav ul { padding: 10px 0; }

.modal-search__nav ul li a {
  display: flex;
  align-items: center;
  padding: 13px 25px;
  color: #00508a;
  position: relative;
  z-index: 1;
}

.modal-search__nav ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 7px;
  bottom: 0;
  left: 7px;
  background-color: #00508a;
  border-radius: 11px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.modal-search__nav ul li a:hover { color: #fff; }
.modal-search__nav ul li a:hover::after { opacity: 1; visibility: visible; }
.modal-search__nav ul li a .icon { opacity: 0.5; width: 24px; font-size: 22px; }
.modal-search__nav ul li a .text { flex: 1; font-size: 14px; font-weight: 600; padding-left: 12px; }

.modal-search__container {
  height: 100%;
  flex: 0 0 calc(100% - 270px);
  max-width: calc(100% - 270px);
}

@media (max-width: 767px) {
  .modal-search__container { flex: 0 0 100%; max-width: 100%; }
}

.modal-search__input {
  height: 66px;
  display: flex;
  align-items: center;
  position: relative;
}

.modal-search__input > .icon {
  position: absolute;
  left: 20px;
  color: #7a93a9;
  opacity: 0.3;
}

.modal-search__input input {
  width: 100%;
  height: 100%;
  color: #7a93a9;
  padding-left: 65px;
  padding-right: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
}

.modal-search__input input:focus + .border { width: 100%; }

.modal-search__input .border {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, #00508a, #4a9fd4);
  width: 0;
  transition: width 0.4s;
}

.modal-search__input .btn-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
}

.modal-search__input .btn-close .icon { color: #00508a; font-size: 22px; opacity: 0.5; }
.modal-search__input .btn-close:hover .icon { opacity: 1; }

.modal-search__content {
  padding: 10px 25px 25px;
  height: calc(100% - 66px);
  overflow-y: auto;
}

.list-links > ul > li:not(:last-child) { margin-bottom: 8px; }

.list-links > ul > li > a {
  display: flex;
  align-items: flex-start;
  color: #5e788f;
  background-color: rgba(219, 226, 231, 0.4);
  padding: 18px 15px;
  border-radius: 11px;
  transition: 0.3s;
}

.list-links > ul > li > a:hover { background-color: #7a93a9; color: #fff; }
.list-links > ul > li > a > .icon { opacity: 0.3; font-size: 20px; }
.list-links > ul > li > a .desc { padding-left: 12px; }
.list-links > ul > li > a .desc > .title { font-size: 13px; font-weight: 600; }

.list-common ul li:not(:last-child) { margin-bottom: 8px; }

.list-common .list-common__item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 11px;
  background-color: rgba(219, 226, 231, 0.35);
  color: #5e788f;
  transition: 0.3s;
}

.list-common .list-common__item:hover {
  background-color: #00508a;
  color: #fff;
}

.list-common .list-common__description .title {
  font-size: 14px;
  font-weight: 600;
}

.hero-tab {
  top: calc(50% + 75px);
  transform: translateY(-50%);
}

.hero-tab__nav {
  position: relative;
  z-index: 2;
}

.hero-tab__container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-tab__content {
  position: absolute;
  top: 15px;
  right: 0;
  bottom: 15px;
  left: 0;
  height: auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-tab__activities {
  min-height: 100%;
}

.days-nav__row {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 -5px;
}

.days-nav__row > [class*="col-"] {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 5px;
}

.days-nav .item {
  position: relative;
}

.days-nav .item.is-current a { color: #00508a; }

.days-nav .item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
  line-height: 1;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  color: #7a93a9;
  position: relative;
  z-index: 1;
  background-color: rgba(219, 226, 231, 0.3);
  border-radius: 11px;
  width: 100%;
}

.days-nav .item a span {
  display: block;
  line-height: 1.2;
}

.days-nav.ui-size-1 .item a .title { font-size: 20px; font-weight: 800; letter-spacing: -1px; }
.days-nav.ui-size-1 .item a .text { font-size: 13px; opacity: 0.7; }

.hero-tab__content .activities {
  margin-top: 10px;
}

.hero-tab__content .activities > ul:empty::before {
  content: "Bu tarih için etkinlik bulunamadı.";
  display: block;
  padding: 20px 0;
  color: #7a93a9;
  font-size: 14px;
  text-align: center;
}

.activity-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.activity-photo {
  flex: 0 0 150px;
  max-width: 150px;
  padding: 11px;
  height: 220px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 0 30px rgba(94, 120, 143, 0.2);
}

.activity-photo img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 11px;
}

.activity-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 10px 15px 15px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 11px 11px 0;
}

.activity-description .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.activity-description .title a { color: inherit; }

.activity-description .more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: #00508a;
}
