


.input-group.mb-3 {
    margin-bottom: 0px !important;
}

/* Country Code Input */
.country1 {
    border-radius: 0;
   
}

.d-none {
    display: none;
}


.left-inner-addon {
    position: relative;
}

.left-inner-addon i {
    position: absolute;
    padding: 10px;
    pointer-events: none;
    color: black;
}

.left-inner-addon input {
    padding-left: 35px !important;
}

.set-width{
    width: 15% !important;
}
.set-border{
    border-radius: 5px 0px 0px 5px;
}
.set-border1{
border-radius: 0px 5px 5px 0px;
}

@media (max-width: 360px) {

.set-confirm-padding{
    padding-left: 0px;
    padding-right: 0px;
}

    
    ::placeholder{
        font-size:12px;
        
    }
    .set-carrier-heading{
        font-size:15px !important;
    }
    .set-carrier-margin{
        margin-top: 15px;
    }
    
    .form-control {
        font-size: 1.2rem !important;
    }
    .set-icon-size{
        margin-top: 5px;
    }
    .set-font-size{
        font-size:12px;
    }
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #45454563;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0.5;
    display: none;
}

.loading-overlay-content {
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loader {
    border: 5px solid #F3F3F3; /* Light grey */
    border-top: 5px solid #3498DB; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loadingOverlay.visible {
    display: flex;
}