.nav-main-menu {
  justify-content: center;
}
.btn-gray-default {
  cursor: pointer;
}
.btn {
  border-radius: 50px;
}
.hover-card-arrow .hover-arrow {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  line-height: 24px;
}
.hover-card-arrow:hover .hover-arrow {
  background-color: var(--main-color);
}
.hover-card-arrow:hover .hover-arrow svg {
  stroke: white !important;
}
.su-hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}

.su-content-area {
  flex: 1;
  padding-right: 50px;
}

.su-main-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.su-subtitle {
  font-size: 1.1rem;
  color: var(--bs-neutral-500);
  line-height: 1.6;
  margin-bottom: 40px;
}

.su-stats-group {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.su-stat-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.su-stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.su-stat-number::after {
  content: " +";
  color: #1266b0;
}

.su-stat-label {
  font-size: 0.9rem;
  color: var(--bs-neutral-500);
}

.su-media-area {
  flex-shrink: 0;
  width: 600px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.su-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.su-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding-left: 5px;
}

.su-play-button:hover {
  background-color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.su-play-button svg {
  width: 30px;
  height: 30px;
  fill: var(--main-color);
}

.su-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.su-header-content-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

:root {
  --su-color-dark-blue: #0d2c48;
  --su-color-light-blue: #e6f3f7;
  --su-color-bg-light: #f8f9fa;
  --su-color-text-dark: #343a40;
  --su-color-text-neutral: #6c757d;

  --su-color-dark-blue: #0d2c48;
  --su-color-text-neutral: #6c757d;
  --su-color-map-bg: #1c2b4d;
  --su-color-map-dots: #48c0e2;
}

.su-section {
  padding: 120px 0;
}
.su-content-grid {
  position: relative;
}

.su-pre-title {
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 5px;
  text-align: start;
}

.su-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--su-color-dark-blue);
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 400px;
}

.su-description {
  font-size: 1rem;
  color: var(--su-color-text-neutral);
  line-height: 1.6;
  max-width: 400px;
}

.su-why-us {
  background: url("Background.png") no-repeat center center / cover;
  padding-top: 100px;
}

.su-header-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.su-factory-img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  z-index: 0;
  max-height: 650px;
}

.su-cards-area {
  width: fit-content;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  top: 75px;
  right: 20px;
  max-height: 560px;
  overflow-y: auto;
}

.su-card {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  max-width: 300px;
}

.su-card:hover {
  transform: translateY(-5px);
}

.su-card-blue-light {
  background-color: #fff;
  border: 1px solid #ddd;
}

.su-card-blue-dark {
  background-color: var(--su-color-dark-blue);
  color: white;
}
.su-card-blue-dark .su-card-text {
  color: white;
}

.su-card-blue-dark .su-card-link {
  color: white;
}

.su-card-icon {
  margin-bottom: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.su-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--main-color);
}

.su-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 12px;
}

.su-card-text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--bs-neutral-500);
}

.su-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
}

.su-faq-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.su-faq-title {
  font-weight: 500;
}
.su-faq-title-area {
  max-width: 50%;
}

.su-faq-description-area {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.su-faq-desc {
  margin-bottom: 20px;
}

.su-accordion-group {
}

.su-accordion-item {
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
}

.su-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
}

.su-accordion-question {
  font-size: 1.1rem;
  color: var(--su-color-text-dark);
}

.su-accordion-icon {
  transition: transform 0.3s ease;
}

.su-accordion-item.su-active .su-accordion-icon {
  transform: rotate(180deg);
}

.su-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 0;
}

.su-accordion-content p {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--su-color-text-neutral);
  line-height: 1.5;
  font-size: 0.95rem;
}

.su-accordion-item.su-active .su-accordion-content {
  max-height: 200px;
}

.su-pre-title {
  position: relative;

  padding-left: 50px;

  display: inline-block;
}

.su-pre-title:after {
  content: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8bGluZSB4MT0iMCIgeTE9IjEwIiB4Mj0iMjUwIiB5Mj0iMTAiIHN0eWxlPSJzdHJva2U6cmVkO3N0cm9rZS13aWR0aDoxMiIgLz4KPC9zdmc+");
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  display: block;
  background: var(--main-color);
}

.su-products-section {
  background-color: #e6f3f7;
  background-size: cover;
  padding-bottom: 80px;
}

.su-products-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  align-items: center;
}

.su-products-text-area {
  text-align: left;
}

.su-products-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--su-color-dark-blue);
  line-height: 1.1;
  max-width: 500px;
}

.su-products-description {
  max-width: 350px;
  font-size: 0.9rem;
  color: var(--su-color-text-neutral);
  font-weight: 500;
}

.su-product-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.su-product-image-area {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.su-product-img {
  max-height: auto;
  width: 100%;
  object-fit: contain;
}

.su-product-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--su-color-dark-blue);
  padding: 8px 20px 4px 20px;
}

.su-product-meta-group {
  display: flex;
  padding: 16px;
}

.su-product-meta-item {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  font-size: 0.9rem;
  color: var(--su-color-text-neutral);
  background-color: #f7f9fa;
  font-weight: 500;
}

.su-product-meta-item:first-child {
  border-right: 1px solid #f0f0f0;
}

.su-products-slider-wrap {
  position: relative;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  color: black;
  width: 24px;
  height: 24px;
}

.swiper-button-next:hover svg,
.swiper-button-prev:hover svg {
  color: white;
}

.urun-category-filter-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.tab-button {
  font-size: 14px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 8px;
  cursor: pointer;
  color: #444;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 100px;
  border: 1px solid var(--bs-neutral-200);
}

.tab-button.active {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}
.tab-button:hover:not(.active) {
  background-color: rgba(31, 125, 193, 0.2);
  transition: all 0.2s ease;
}

.sticky-bar.stick {
  z-index: 999 !important;
}

.product-gallery {
  display: flex;
  align-items: center;
  gap: 15px;
}

.thumbnails-column {
  width: 80px;
  flex-shrink: 0;
  max-height: 500px;
  overflow-y: auto;
}
.thumbnail-item {
  cursor: pointer;
  border: 1px solid var(--color-neutral-300);
  border-radius: 6px;
  transition: all 0.2s;
  opacity: 0.7;
}
.thumbnail-item.active,
.thumbnail-item:hover {
  border-color: var(--color-primary);
  opacity: 1;
}
.thumbnail-item img {
  display: block;
  width: 100%;
  height: auto;
}

.main-image-area img {
  object-fit: contain;
  max-height: 500px;
  border-radius: 12px;
}

.product-info-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-background-100);
}
.product-info-list li:last-child {
  border-bottom: none;
}

.box-list-products {
  overflow: hidden;
}

.hizmet-container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

/* ======================== */
/* Bayi Kartı CSS Stilleri */
/* ======================== */

:root {
  --card-bg: #ffffff;
  --card-border-radius: 12px;
  --text-primary: #1a1a1a;
  --text-secondary: #333333;
  --text-label: #555555;
  --shadow-color: rgba(0, 0, 0, 0.08);
}

.bayi-card {
  /* Kartın dış görünümü */
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: 20px;
  padding-bottom: 44px;
  border: 1px solid #f0f0f0;
  position: relative; /* Harita ikonu için */
}

.bayi-isim {
  /* Bayi Adı stili (Büyük ve Kalın) */
  font-size: 1.5rem; /* ~28px */
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 25px;
}

.bayi-meta-item {
  /* Her bir bilgi satırı için genel düzen */
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.bayi-meta-item:last-child {
  /* Son öğenin alt boşluğunu kaldırma */
  margin-bottom: 0;
}

.bayi-meta-label {
  /* Etiket metinlerinin stili (Telefon Numarası, İl:, İlçe:, Adres:) */
  font-weight: 500; /* Kalın */
  color: var(--text-secondary);
  line-height: 1.5; /* Metinler arası boşluk */
}

/* Telefon Numarası, İl, İlçe ve Adres içeriği */
.bayi-meta-value {
  font-weight: 400; /* Normal */
  color: var(--text-secondary);
  line-height: 1.5;
}

/* İl/İlçe/Adres Satırları için Etiket ve Değerin Yan Yana Gelmesi */
.bayi-meta-item:not(.bayi-meta-item:nth-child(2)) {
  flex-direction: row; /* İl, İlçe ve Adres için yan yana */
  gap: 5px;
}

.bayi-meta-item:not(.bayi-meta-item:nth-child(2)) .bayi-meta-label {
  /* İl, İlçe ve Adres etiketleri */
  flex-shrink: 0; /* Daralmayı engeller */
}

/* Telefon Numarası Link Stili */
.telefon-link {
  text-decoration: none;
  color: var(--text-secondary); /* Link rengini metin rengiyle aynı tutar */
  transition: color 0.2s;
}
.telefon-link:hover {
  color: var(--main-color); /* Hover rengi (Opsiyonel) */
}

/* Haritada Aç Butonu (Sağ Alttaki İkon) */
.map-link-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f4f6;
  border-radius: 50%;
  transition: all 0.2s;
}
.map-link-icon:hover {
  background-color: var(--main-color);
}
.map-link-icon:hover * {
  stroke: white !important;
}

.map-link-icon svg {
  width: 32px;
  height: 32px;
}

.footer-col-1,
.footer-col-3 {
  width: 100% !important;
}
@media (max-width: 1200px) {
  .hizmet-container {
    flex-direction: column;
    align-items: normal;
  }
  .footer-col-1,
  .footer-col-3 {
    width: 100% !important;
  }

  .urun-category-filter-container {
    flex-direction: column;
    align-items: end;
  }
  .su-water-splash-image {
    width: 300px !important;
    height: 300px !important;
  }
  .su-minerals-map-section {
    background-color: var(--su-color-map-bg);
    padding: 40px 0;
  }

  .su-hero-container {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .su-content-area {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .su-main-title {
    font-size: 2rem;
    text-align: center;
  }

  .su-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .su-subtitle br {
    display: none;
  }

  .su-stats-group {
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
  }

  .su-stat-number {
    font-size: 2rem;
  }

  .su-stat-label {
    font-size: 0.8rem;
  }

  .su-media-area {
    width: 100%;
    height: 280px;
    flex-shrink: 1;
  }

  .su-play-button {
    width: 60px;
    height: 60px;
  }

  .su-play-button svg {
    width: 20px;
    height: 20px;
  }
}

.su-minerals-map-section {
  background-color: var(--su-color-map-bg);
  padding: 100px 0;
}

.su-minerals-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.su-minerals-text-card {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.75);
  max-width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.su-minerals-text-card .su-pre-title {
  color: var(--main-color);
  margin-bottom: 5px;
}

.su-minerals-text-card .su-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.su-minerals-text-card .su-card-text {
  font-size: 1rem;
  color: var(--su-color-text-neutral);
  margin-bottom: 30px;
}

.su-minerals-data-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 30px;
  border-radius: 10px;
  flex-grow: 1;
  min-height: 400px;
  max-width: 650px;
}

.su-mineral-data-group {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.su-mineral-item {
  position: absolute;
  text-align: center;
  padding: 5px 10px;
}

.su-mineral-label {
  font-size: 0.9rem;
  text-align: center;

  display: block;
  font-weight: 500;
}

.su-mineral-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-color);
  display: block;
  text-align: center;
}

.su-top-left {
  top: 30px;
  left: 30px;
}
.su-top-right {
  top: 30px;
  right: 30px;
}
.su-center-left {
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.su-center-right {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.su-bottom-left {
  bottom: 30px;
  left: 30px;
}
.su-bottom-right {
  bottom: 30px;
  right: 30px;
}

.su-water-splash-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
}

.su-splash-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.su-map-container {
  color: white;
  padding-top: 50px;
  position: relative;
}

.su-map-pre-title {
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
  font-size: 2.4rem;
}

.su-world-map-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.1;
  margin-bottom: 40px;
  overflow: hidden;
}

.su-world-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}

.su-map-info-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.su-map-main-title {
  color: white;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.su-map-description {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  max-width: 450px;
  margin-bottom: 20px;
}

.su-map-stats-group {
  display: flex;
  gap: 40px;
}

.su-map-stats-group .su-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.su-map-btn {
  align-self: flex-end;
}

@media (max-width: 992px) {
  .product-gallery {
    flex-direction: column;
  }
  .thumbnails-column {
    width: 100%;
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
  }
  .thumbnail-item {
    width: 60px;
  }
  .su-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .su-products-title {
    font-size: 2.2rem;
  }

  .su-products-title br {
    display: none;
  }

  .su-minerals-container {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }

  .su-minerals-text-card {
    max-width: 100%;
  }

  .su-minerals-data-card {
    min-height: 350px;
  }

  .su-map-stats-group {
    margin-top: 20px;
  }

  .su-top-left {
    top: 15px;
    left: 15px;
  }
  .su-top-right {
    top: 15px;
    right: 15px;
  }
  .su-center-left {
    left: 15px;
  }
  .su-center-right {
    right: 15px;
  }
  .su-bottom-left {
    bottom: 15px;
    left: 15px;
  }
  .su-bottom-right {
    bottom: 15px;
    right: 15px;
  }

  .su-map-info-block {
    flex-direction: column;
    gap: 20px;
  }

  .su-map-main-title {
    font-size: 2rem;
  }

  .su-card {
    max-width: 100%;
  }
  .su-cards-area {
    padding: 20px;
    right: auto;
    max-height: 560px;
    overflow-y: auto;
    top: 20px;
  }
  .su-header-content-flex {
    flex-direction: column;
  }

  .su-faq-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .su-faq-title-area,
  .su-faq-description-area {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .su-faq-description-area .su-btn {
    margin-top: 10px;
  }

  #chartdiv {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .su-minerals-text-card {
    padding: 30px;
  }

  .su-map-stats-group {
    flex-wrap: wrap;
    gap: 10px;
  }

  .su-map-btn {
    width: 100%;
    text-align: center;
  }
  .su-section {
    padding: 80px 0;
  }
  .su-title {
    font-size: 2rem;
  }
  .su-cards-area {
    grid-template-columns: 1fr;
  }
  .su-accordion-question {
    font-size: 1rem;
  }
}
select {
  border-radius: 50px !important;
}

/* new footer */
.footer {
  padding: 0;
}

.footer img {
  border-radius: 0 !important;
}

.footer h6,
.footer .footer-link {
  font-weight: 500;
  color: #737373 !important;
}
.footer a:hover {
  color: lightgray !important;
}
.footer h6 {
  font-size: 16px;
}
.footer .menu-footer li a {
  font-size: 14px !important;
}
.footer.footer-white a.icon-socials {
  border: 1px solid #e4e6e8;
}

a.icon-socials svg {
  fill: inherit !important;
}

.footer-bottom {
  border-top: 1px solid rgb(228, 230, 232, 0.3) !important;
  border-bottom: 1px solid rgb(228, 230, 232, 0.3) !important;
  margin-top: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .footer-col-1,
  .footer-col-2,
  .footer-col-3 {
    padding: 16px !important;
  }
}

.footer .footer-bottom {
  padding: 12px 0px 12px 0px;
}

.right-social {
  border-radius: 28px 0 0 28px;
  padding: 12px 8px 12px 10px;
}
.right-social a {
  border-radius: 50px;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-social a:hover {
  transform: scale(1);
  background-color: var(--main-color);
}
.right-social a:hover svg * {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(81deg) brightness(110%)
    contrast(103%) !important;
}

.box-footer-col-3 {
  margin: 0px 0 20px 0 !important;
}

/* .footer .icon-hover path {
  fill: var(--main-color);
} */
a.icon-socials:hover {
  transform: translateY(0);
  transition-duration: 0.2s;
}

.footer .icon-hover:hover {
  fill: var(--main-color);
  stroke: inherit;
}

.icon-hover:hover svg {
  transform: scale(1);
}

.nav-main-menu {
  justify-content: center !important;
}

/* new footer */

/* weather */
.rightbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(58, 134, 255);
  background: radial-gradient(circle, rgba(58, 134, 255, 1) 0%, rgba(0, 83, 216, 1) 100%);
  color: white;
  padding: 12px 20px;
  margin: 20px 0;
  border-radius: 16px;
}

.rightbar-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rightbar-date {
  font-size: 14px;
  font-weight: 500;
}
.rightbar-time {
  font-size: 32px;
  font-weight: 700;
  margin: 4px 0;
}
.rightbar-location {
  font-size: 12px;
  font-weight: 400;
}

.rightbar-weather {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.rightbar-temperature {
  font-size: 2em;
}

.sidebar-canvas-wrapper .sidebar-canvas-container .sidebar-canvas-content {
  padding: 20px;
}

.right-social-drawer a {
  background-color: var(--bs-neutral-100);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--bs-border-color);
}

.mikro-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.mikro-item a {
  border: 1px solid var(--bs-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 16px;
}

.mikro-item a img {
  width: 50%;
}
.right-social-drawer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.card-info * {
  text-align: start !important;
  gap: 8px;
}
/* weather */

.grayscale * {
  filter: grayscale(100%);
}

#chartdiv g path {
  stroke: white !important;
}

.map-container {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.marker {
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  outline: 5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marker:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: white;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.marker:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px 0 rgba(102, 179, 255, 0.7);
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #313131;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.marker:hover > .tooltip {
  opacity: 1;
  visibility: visible;
}

.flag-icon {
  width: 24px;
  height: 24px;
}
.flag-icon {
  object-fit: contain;
  border-radius: 0 !important;
}

.su-hero-container {
  margin-top: -95px;
  padding-top: 160px;
  z-index: 10;
}

.box-banner-home3 img,
.box-banner-home3 .swiper-container {
  border-radius: 0 !important;
}
