
/* .select-menu {
  max-width: 330px;
  margin: 50px auto;
} */
.select-menu .select-btn {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}
.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu .options {
  position: relative;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
}
.select-menu.active .options {
  display: block;
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}
.options .option {
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.options .option:hover {
  background: #f2f2f2;
}
.option i .option2 i {
  font-size: 25px;
  margin-right: 12px;
}
.option .option-text{
  font-size: 18px;
  color: #333;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Shared responsive polish for the Tailwind-powered user and auth screens. */
html {
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

main,
.flex-1,
.min-w-0 {
  min-width: 0;
}

main table {
  width: 100%;
}

main :where(.overflow-x-auto, .table-responsive) {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

main :where(input, select, textarea, button) {
  max-width: 100%;
}

main :where(.rounded-2xl, .rounded-xl) {
  overflow-wrap: anywhere;
}

[x-cloak] {
  display: none !important;
}

@media (min-width: 768px) {
  .max-w-8xl {
    max-width: 88rem;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .page-loading .text {
    font-size: 0.78rem;
  }

  .page-loading-inner {
    padding-inline: 1rem;
  }

  main {
    width: 100%;
  }

  main > div {
    padding-top: 1rem !important;
  }

  main table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  main thead,
  main tbody,
  main tr {
    width: max-content;
    min-width: 100%;
  }

  main :where(th, td) {
    white-space: nowrap;
  }

  main :where(.grid) {
    min-width: 0;
  }

  main :where(.p-8) {
    padding: 1.25rem !important;
  }

  main :where(.p-6) {
    padding: 1rem !important;
  }

  main :where(.text-4xl) {
    font-size: 2rem !important;
    line-height: 2.35rem !important;
  }

  main :where(.text-3xl) {
    font-size: 1.75rem !important;
    line-height: 2.1rem !important;
  }

  main :where(.text-2xl) {
    font-size: 1.4rem !important;
    line-height: 1.9rem !important;
  }

  main :where(.gap-6) {
    gap: 1rem !important;
  }

  main :where(.space-y-6 > :not([hidden]) ~ :not([hidden])) {
    margin-top: 1rem !important;
  }

  .fixed.bottom-0 .rounded-t-3xl {
    border-radius: 1.25rem 1.25rem 0 0 !important;
    margin-inline: 0.35rem !important;
  }

  .fixed.bottom-0 :where(.px-6) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .fixed.bottom-0 span {
    max-width: 4.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .origin-top-right.absolute {
    max-width: calc(100vw - 1.5rem);
  }

  .origin-top-right.absolute.w-80 {
    width: calc(100vw - 1.5rem) !important;
  }

  .relative.w-11\/12.max-w-md {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .grid.grid-cols-3.gap-3 {
    gap: 0.5rem !important;
  }

  .grid.grid-cols-3.gap-3 span {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  main :where(.px-4) {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  main :where(.text-lg) {
    font-size: 1rem !important;
    line-height: 1.45rem !important;
  }

  .fixed.bottom-0 span {
    font-size: 0.68rem !important;
  }

  .grid.grid-cols-3.gap-3 > a > div {
    padding: 0.35rem !important;
  }
}





.select-menu2 .select-btn2 {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.select-btn2 i{
  font-size: 25px;
  transition: 0.3s;
}
.select-menu.active2 .select-btn2 i{
  transform: rotate(-180deg);
}
.select-menu2 .options2 {
  position: relative;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
}
.select-menu.active2 .options2 {
  display: block;
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}
.options2 .option2{
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.options2 .option2:hover{
  background: #f2f2f2;
}
.option2 i {
  font-size: 25px;
  margin-right: 12px;
}
.option2 .option-text2 {
  font-size: 18px;
  color: #333;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
