

#loadingblur{
    /*display: flex;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    backdrop-filter: blur(3px);
    background-color: rgb(1,15,42,0.75);
    justify-content: center;
    align-items: center;
}

#loadingmodal,#responsemodal,#paymentsmodal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    backdrop-filter: blur(3px);
    background-color: rgb(1,15,42,0.75);
    justify-content: center;
    align-items: center;
}

.textcenter{
    text-align: center;
}
.otpgroup{
    display: flex;
    flex-direction: row;
}
.otpinput{
    width: 63px;
    height: 100px;
    margin: 4px;
    font-size: 3rem!important;
    text-align: center;
}
.btn-renov:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity));
    color: white;
}
.btn-cancelrenov:hover{
    filter: opacity(0.6);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.loba{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.btn-renov,.btn-cancelrenov{
    margin: 5px;
    /*font-size: 9px!important;*/
}

.complogo{
    width: 8%;
    aspect-ratio: 3/2;
    object-fit: contain;
    margin: 5px;
}

.stripe-field {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    font-size: 12px;
}

.loading-dot-container{
    display: flex;
    justify-content: center;
  }
  
  .loading-dot {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 2px;
    animation: bouncedots 1s infinite;
  }
  .loading-dot:nth-child(2) {
    animation-delay: 0.1s;
  }
  
  .loading-dot:nth-child(3) {
    animation-delay: 0.5s;
  }
  
  @keyframes bouncedots {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px); /* Increased vertical movement */
    }
  }

.ordereditems{
    height: 80px;
    overflow-y: scroll;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 12px;
    text-align: center;
}