@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
  /* Ameer Hamza */
  --golden: #b9802a;
  --blue: #0e1e3e;
  --gray: #3c4963;
  --lightGray: #868e9d;
  --white: #ffffff;
  --lightWhite: #e3e3e5;
  --red: #e62437;
  --green: #0ead71;
  --lightGreen: #23c55e;
  --purple: #7439e8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}

body {
  font-family: var(--font-montserrat);
  /* font-family: var(--font-nunito); */
  .slick-slide {
    padding: 0 10px;
    margin: 10px 0;
  }

  .custom-dot:hover {
    background-color: #b9802a;
  }

  .custom-dot:active {
    background-color: #b9802a;
  }

  .customScrollbar::-webkit-scrollbar {
    width: 6px;
  }

  .customScrollbar::-webkit-scrollbar-track {
    background-color: #cae9fc;
    border-radius: 4px;
  }

  .customScrollbar::-webkit-scrollbar-thumb {
    background-color: #d8a32b;
    border-radius: 4px;
  }
}

.cardElem .StripeElement {
  border: 1px solid #acacac;
  padding: 15px 10px;
  border-radius: 0.75rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.notIcon span {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #d8a32b;
  position: absolute;
  top: -7px;
  right: -7px;
}

.searchIcon {
  position: absolute;
  top: 12px;
  left: 15px;
}

.slick-active .custom-dot {
  background-color: #d8a32b;
}

.ah-user-panel {
  font-family: var(--font-nunito);
}
.course-progress-slider .slick-arrow {
  width: 17px;
  height: 17px;
  padding: 15px;
  background: #d8a32b;
  z-index: 999;
  border-radius: 50rem;
  border: 2px solid #fff;
}
.course-progress-slider .slick-arrow.slick-disabled {
  background: #c7c7c7;
  pointer-events: none;
}
.course-progress-slider .slick-arrow:hover {
  background: #fff;
  border-color: #d8a32b;
}
.course-progress-slider .slick-prev {
  left: -14px;
}
.course-progress-slider .slick-next {
  right: -9px;
}
.course-progress-slider .slick-arrow path {
  fill: #fff;
}
.course-progress-slider .slick-arrow:hover path {
  fill: #d8a32b;
}
.dashboard-sidebar {
  & > div {
    &:nth-child(2) {
      height: calc(100% - 175px);
    }
  }
}
.coming-soon-page {
  background-image: url(../../public/assets/coming-soon.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  &:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    background: #000;
  }
}
.PhoneInputInput {
  background-color: transparent !important;
  outline: none !important;
}
.PhoneInputCountrySelect {
  background-color: #1a1a1a !important;
  color: #b1b3b2 !important;
  border: 1px solid #fff !important;
  border-radius: 4px !important;
}
.PhoneInputCountrySelect option {
  background-color: #1a1a1a !important;
  color: #b1b3b2 !important;
}
.PhoneInputCountrySelect:focus {
  outline: none !important;
  border-color: #b1b3b2 !important;
}
.registration-page {
  background-image: url(../../public/assets/coming-soon.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  &:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: #000;
  }
}
.registration-page-form-wrapper {
  background-color: rgba(0, 0, 0, 0.25);
}

.react-calendar {
  width: 100% !important;
}

.react-datepicker__input-container input {
  background-color: white !important;
  color: black !important;
}

/* .react-datepicker__header {
  background-color: white !important;
}
.react-datepicker__current-month,
.react-datepicker__day-name {
  color: black !important;
}

.react-datepicker__navigation-icon::before {
    border-color: black !important;
} */