.form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.form__group .form__control {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    color: #5b5b5c;
    outline: none;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 0.375rem;
    padding: 0.75rem;
}
.form__group label {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.form__control::placeholder{
    color: #ababab;
}
input:disabled, select:disabled {
    background: #e8e8e8 !important;
    cursor: not-allowed;
}
.text-sm{
    font-size: 14px;
}
.text-md{
    font-size: 16px;
}

.loading {
    --speed-of-animation: 0.9s;
    --gap: 6px;
    --first-color: #4c86f9;
    --second-color: #49a84c;
    --third-color: #f6bb02;
    --fourth-color: #f66002;
    --fifth-color: #2196f3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    gap: 6px;
    height: 100px;
    margin-top: 20px;
  }
  
  .loading span {
    width: 4px;
    height: 50px;
    background: var(--first-color);
    animation: scale var(--speed-of-animation) ease-in-out infinite;
  }
  
  .loading span:nth-child(2) {
    background: var(--second-color);
    animation-delay: -0.8s;
  }
  
  .loading span:nth-child(3) {
    background: var(--third-color);
    animation-delay: -0.7s;
  }
  
  .loading span:nth-child(4) {
    background: var(--fourth-color);
    animation-delay: -0.6s;
  }
  
  .loading span:nth-child(5) {
    background: var(--fifth-color);
    animation-delay: -0.5s;
  }
  .loading span:nth-child(6) {
    background: var(--second-color);
    animation-delay: -0.8s;
  }
  .loading span:nth-child(7) {
    background: var(--fourth-color);
    animation-delay: -1s;
  }
  
  @keyframes scale {
    0%,
    40%,
    100% {
      transform: scaleY(0.05);
    }
  
    20% {
      transform: scaleY(1);
    }
  }


  
  /* Action Preloader */
  
  .action_preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* background: #3d073d; */
    background: #ffffffb4;
    /* background-image: linear-gradient(55deg, rgba(253, 110, 0, 1), rgb(12 202 47)); */
    justify-content: center;
  }
  .action_preloader-inner .cancel-preloader a:hover {
    background-color: #00aeff;
    color: #fff;
  }
  .hidden{
    display: none;
  }
  