
.loader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 1000;
      
  }
  /* Creating the dots */
.loader  span{
    height: 25px;
    width: 25px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #F0D200;
    animation: loading 1s linear infinite;
  }
  /* Creating the loading animation*/
  @keyframes loading {
    0%{
     transform: translateX(0);
    }
    25%{
     transform: translateX(15px);
    }
    50%{
     transform: translateX(-15px);
    }
    100%{
     transform: translateX(0);
    }
      
  }

.loader span:nth-child(1){
    animation-delay: 0.1s;
}
.loader span:nth-child(2){
    animation-delay: 0.2s;
  }
.loader span:nth-child(3){
    animation-delay: 0.3s;
  }

  .inputs input {
    width: 45px;
    height: 40px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

#otp .rounded{
    margin: 0.2rem !important;
}
#otp{
    flex-wrap: wrap;
}

.form-control:focus {
    box-shadow: none;
    border: 2px solid red
}

.selected {
    background-color: aliceblue !important;
}

@media only screen and (max-width: 500px){
    .sub_categories .nav-item{
        justify-content: center;
    }

    .sub_categories .nav-item img{
        margin-right: 0;
    }

}

.cart_empty{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    justify-content: space-between;
}


.button-current-location{
    padding: 10px;
    background-color: rgb(58, 136, 22);
    border-radius: 25px;
    color: white;
    bottom: 10px !important;
    right: 10px !important;
}


.cart_msg{
    border-top-right-radius: 10px !important; 
    border-top-left-radius: 10px !important;

    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius:  10px !important;
}

.cart_savings{
    width: 90%;
    margin : 0 auto;
}

/* loader wrapper */
.wrapper{
    display: flex;
    flex-direction: column;
    background-color: #c3e7fe21;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 10000;
    position: absolute;
    width: 100%;
}
.wrapper .loader1{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

#wrapper_message {
    padding-top: 8px;
}
.loader1 .loading{
    background: #1254b7;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    margin: 0 10px;
    animation: load 0.7s ease infinite;
}
.loader1 .loading.one{
    animation-delay: 0.3s;
}
.loader1 .loading.two{
    animation-delay: 0.4s;
}
.loader1 .loading.three{
    animation-delay: 0.5s;
}
@keyframes load{
    0%{
        width: 20px;
        height: 20px;
    }
    50%{
        width: 10px;
        height: 10px;

    }
}