


/*ESTILOS DEL LOADING...*/
#spinner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



/* Estilos para los campos de entrada */
#nombre-titular,
#correo-titular {
    font-size: 16px;
    color: #32325d;
    border: none;
    width: 100%;
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    background: transparent;
    opacity: 0;
    transition: opacity 1.5s;
    display: block ;
    user-select: none ;
    height: 19.2px;
}

/* Estilos para el icono en el campo de entrada */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #ccc;
    opacity: 0;
    transition: opacity 1.5s;
}

.step {
    height: 400px;
    overflow-y: auto;
}


/* Estilos para hacer la imagen del prestador circular y ajustar su tamaño */
.prestador-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    /* Ajustar estilos para pantallas más pequeñas */
    .sucursal-card {
        min-height: 200px;
    }
    .prestador-img {
        width: 80px;
        height: 80px;
    }
}

/* Agrega estilos personalizados para el formulario multipasos */
.multi-step-form {
    position: relative;
}

.multi-step-form .step {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.multi-step-form h3 {
    margin-top: 0;
}

.multi-step-form input,
.multi-step-form textarea,
.multi-step-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.multi-step-form .progress-bar {
    margin-top: 20px;
    background-color: #f0f0f0;
    height: 20px;
    border-radius: 10px;
    position: relative;
}

.multi-step-form .progress {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    border-radius: 10px;
}

.multi-step-form button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.multi-step-form button.prev-step {
    background-color: #ccc;
}

.multi-step-form button[type="submit"] {
    background-color: #007bff;
}

.multi-step-form button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilos generales del datepicker */
.datepicker {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.datepicker-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow i {
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
}

.dates {
    margin: 0 auto;
    overflow-x: auto;
}

.date {
    min-width: 40px;
    height: 85px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 50px;
    overflow: hidden;
}

.date:hover,
.btn-check + .btn:hover {
    background-color: #f0f0f0;
}
/* Estilos para las fechas no seleccionables */
.date.no-select {
    cursor: not-allowed;
    background-color: #ccc; /* Cambia el color de fondo a uno deshabilitado */
    color: #666; /* Cambia el color del texto a uno deshabilitado */
}

/* Evita la selección de elementos con la clase "no-select" */
.date.no-select {
    pointer-events: none;
}


/* Estilo para el nombre del día */
.day-name {
    font-weight: bold;
}

/* Estilo para el número de día */
.day-number {
    font-size: 20px; /* Tamaño de fuente más grande para el número de día */
}

/* Estilo para el nombre del mes */
.month-name {
    font-weight: bold;
}

/*.btn-check:checked + .btn {
    color: #fff;
}*/
