.hidden {display: none;}
#profile-preview {object-fit: cover; width: 100%; height: 100%;}
@media (orientation:portrait){
    .btn_blanco {padding: 4vw 0; height: auto;}
    .btn_blanco2 {padding: 4vw 0; height: auto;}
    .imagen_preview {width: 100vw;}
}
.imagen_preview {object-fit: cover;}
.w-full {width: 100%;}
.h-full {height: 100%;}
.object-cover {object-fit: cover;}
.sr-only {position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;}

.swal2-container {
    backdrop-filter: blur(10px);
}

.swal2-icon {
    scale: 0.7;
    margin: .6em auto .6em;
}

.swal2-icon.swal2-error {
    border-color: #e60303;
    color: #e60303;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    background-color: #e60303;
}

.swal2-title {
    font-size: 5vw;
}
.swal2-html-container {
    font-size: 4vw;
}

button.swal2-confirm {
    padding: 4vw 0;
    width: 60vw;
    font-size: 5vw;
    border-radius: 12vw;
    --swal2-action-button-focus-box-shadow: none!important;
}

.circulo.preview {
    background-image: url(/assets/images/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    position: relative;
    overflow: hidden;
}

.circulo.preview.loader:before{
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 5;
}
.circulo.preview.loader:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: url(/assets/images/ico.svg) center center / contain no-repeat;
    z-index: 10;
    animation: spin 10s linear infinite;
    transform-origin: 50% 50%;
    will-change: transform;
}

/* keyframes para la animación de rotación */
@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
}