@tailwind base;
@tailwind components;
@tailwind utilities;

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

html {
  font-family: outfit;
}

.input-form-control {
  display: flex;
  gap: 8px;
  flex-direction: column;
  width: 100%;
}

.input-content {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #e0e0e0;
  color: #1a0631;
  border-radius: 8px;
  height: 48px;
}

.input-content:focus {
  outline-color: #ff4d9d;
}

.button-content {
  color: white;
  display: flex;
  border-radius: 6px;
  padding: 14px 16px;
  align-items: center;
  justify-content: center;
}

.button-content:not(:disabled):hover {
  opacity: 70%;
}

.button-content:disabled {
  cursor: not-allowed;
  color: #828282;
  background-color: #e0e0e0;
}

.return-button-content {
  text-align: center;
  position: absolute;
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 16px;
  color: #585858;
}

.return-button-content:hover {
  opacity: 70%;
}

.input_form_control::placeholder {
  color: #1a063180;
}

.card-content {
  z-index: 10;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: justify;
  border-radius: 16px;
  width: fit-content;
}

.card-header-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.doom-input-range {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ededed;
  border: 1px solid #d5d5d5;
  height: 20px;
  width: 100%;
  border-radius: 100px;
}
.doom-input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: #682fa8;
  height: 28px;
  width: 28px;
  border: 5px solid #b595eb;
  border-radius: 50%;
}
[data-growl="container"] {
  border-radius: 5px;
  border: 1px solid rgb(255, 162, 162);
  background-color: #fff;
  color: rgb(244, 78, 78);
  text-align: center;
  padding: 10px 14px;
}

@media (max-width: 768px) {
  .return-button-content {
    background-color: transparent;
    font-size: 24px;
  }

  .card-content {
    justify-content: start;
    background-color: #fbfbfb;
    width: 100%;
    height: 100%;
    position: fixed;
    border-radius: 0px;
    overflow: auto;
  }

  .card-header-content {
    padding-top: 65px;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: start;
    border: none;
    justify-content: start;
  }
}

.home {
  box-sizing: content-box !important;
}