.from-green-1{
    /* #3b82f6 */
}
.to-green-1{

}


.akc-d-flex-in-sm{
display: none;
}

/* media */
@media (max-width: 576px) {
    .akc-d-flex-in-sm{
        display: flex;
    }
    .logo-mobile{
        display: block !important;
    }
}

.logo-mobile{
    display: none;
}


.akc-bg-light-secondary{
    background-color: #f9f2ed;
}

.akc-text-primary{
    color:#192432;
}



.akc-loader {
  border: 0.2rem solid #f3f3f3;
  border-radius: 50%;
  border-top: 0.2rem solid #192432;
  width: 2rem;
  height: 2rem;
  -webkit-animation: akc_loader 2s linear infinite; /* Safari */
  animation: akc_loader 2s linear infinite;

  position: fixed;
  z-index: 999;  
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}



/* Safari */
@-webkit-keyframes akc_loader {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes akc_loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.akc-loader-overlay{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}


.transparent_input{
    background-color: transparent;
    border: none;    
    color: #192432;
    padding: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
    
}

.transparent_input::placeholder{
    color: #858a90;
}

.transparent_input:focus{
    outline: none;
}

.transparent_input::placeholder{
    color: #858a90;
}

.title_input{
    font-size: 1.5rem;
    font-weight: 600;
    color: #192432;
    margin-bottom: 1rem;
}



