body {
  font-family: "Poppins", sans-serif;
}

button {
  cursor: pointer;
}
.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar::-webkit-scrollbar-track {
  border-radius: 100vh;
  background: #e4e8ee;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #0e2337;
  border-radius: 100vh;
}

.active-menu-item {
  background-color: #183048 !important;
  color: white !important;
  border-color: #183048 !important;
}

.iti__selected-dial-code {
  font-size: 14px;
}
.iti__search-input {
  height: 48px;
  font-size: 14px;
}
.iti__search-input:focus {
  outline-color: #00b7e9;
}
.iti__country-name {
  font-size: 14px;
}
.iti__dial-code {
  color: #00b7e9 !important;
  font-weight: 600;
}

@keyframes select {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Parçacık animasyonu */
@keyframes particles {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(var(--direction));
  }
}

/* Parçacıkların kendisi */
.radio-pill::before,
.radio-pill::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: #00b7e9;
  opacity: 0;
}

.radio-pill::before {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.radio-pill::after {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Checked olduğu anda parçacıkları çalıştır */
.peer:checked + .radio-pill::before {
  --direction: -10px;
  animation: particles 0.5s ease forwards;
}

.peer:checked + .radio-pill::after {
  --direction: 10px;
  animation: particles 0.5s ease forwards;
}

.tab-panel {
  min-height: 60vh;
}


/* Select2 */
.select2-container .select2-selection--single {
    height: 3rem !important;
    border-color: #e4e8ee !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    background-color: #fff;
    transition: all 0.3s;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #94a4b4 transparent transparent transparent !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0.75rem !important;
    padding-right: 1.5rem !important;
    color: #183048 !important;
    font-size: 13px !important;
    line-height: normal !important;
}
@media (min-width: 1024px) {
    .select2-container .select2-selection--single {
        height: 3.5rem !important;
        padding-left: 0.5rem;
    }

    .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1024px) {
    .select2-container--default .select2-selection--single .select2-selection__clear {
        margin-left: 1rem !important;
    }
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #00b7e9 !important;
    box-shadow: 0 0 0 3px rgba(0, 183, 233, 0.2) !important;
}

.select2-dropdown {
    border-color: var(--color-gray, #e4e8ee) !important;
    border-radius: 0.5rem !important;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--color-gray, #e4e8ee) !important;
    border-radius: 0.375rem;
    padding: 6px 12px;
    outline: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #00b7e9!important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #00b7e9 !important;
    color: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 0 !important;
}