@font-face {
  font-family: "TTCommons";
  src: local("TTCommons"),
    url("../fonts/TTCommons-Regular.otf") format("opentype");
  font-display: swap;
}

::selection {
  color: #fff;
  background-color: #c7589a;
}

body {
  font-family: "TTCommons";
  font-size: var(--pFontSize);
}

.form-control {
  border-color: #ebebeb;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

.img-thumbnail {
  border: none;
}

figure {
  margin: 0;
  padding: 0;
}

.form-check-input,
.form-check-label {
  cursor: pointer;
}

/* Alt scrollbar'ı için özel stillendirme */
::-webkit-scrollbar {
  width: 3px;
  /* scrollbar'ın genişliği */
  border-radius: 6px;
  display: none;
}

.destinations-section ::-webkit-scrollbar,
.check-availability .long-term-side .row ::-webkit-scrollbar {
  display: block;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
  /* scrollbar çubuğunun rengi */
  border-radius: 6px;
  /* scrollbar çubuğunun kenar yarıçapı */
  border: 0px solid #ccc;
  /* çubuğun etrafında beyaz bir kenar oluşturur */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primaryColor);
  /* hover durumunda scrollbar çubuğunun rengi */
}

::-webkit-scrollbar-track {
  border-radius: 6px;
  /* scrollbar çubuğunun kenar yarıçapı */
  background-color: #ebebeb;
  /* scrollbar'ın arkaplan rengi */
}

::-webkit-scrollbar-track:hover {
  background-color: #ebebeb;
  /* hover durumunda scrollbar'ın arkaplan rengi */
}

/*############# google grecaptcha-badge ###################*/
.grecaptcha-badge {
  display: none;
}

.eyes-side {
  width: 100%;
}

.eyes-img {
  width: 15px;
  height: 15px;
  position: absolute;
  margin: -28px;
  cursor: pointer;
  z-index: 999;
  opacity: 0.4;
}

.cursor-p {
  cursor: pointer;
}

.custom-tooltip {
  position: relative;
  cursor: pointer;
}

.custom-tooltip::after {
  content: attr(data-title);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondaryColor);
  color: white;
  padding: 5px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.custom-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

.price-symbol {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 14px
}

/*##########################################*/
@media(max-width:996px) {
  .custom-tooltip::after {
    bottom: 140%;
    left: 125px;
  }
}