.swal-button {
	background: #DF5B44;
	border-radius: 30px;
	border: none;
	width: 150px;
	padding: 15px 50px 15px 50px;
	color: white;
	font-size: 13px;
}
.swal-footer{
    display: flex;
    justify-content: center;
}

.swal-button:not([disabled]):hover {
	background-color: #ff8d4f;
}
.swal-button:focus {
	outline: none;
	box-shadow: none;
}
/*.swal-modal {*/
/*background: #443B53;*/
/*border-radius: 30px;*/
/*border: none;*/
/*width: 150px;*/
/*padding: 15px 50px 15px 50px;*/
/*color: white;*/
/*font-size: 13px;*/
/*margin-right: 5px;*/
/*}*/
.overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
}

.loader {
    border: 16px solid #f3f3f3; /* Color del borde del spinner */
    border-top: 16px solid #3498db; /* Color del borde superior del spinner (puedes personalizarlo) */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite; /* Animación para girar el spinner */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
