﻿.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}

.isDisabled2 {
    color: currentColor;
    cursor: not-allowed;
  /*  opacity: 0.5;*/
    text-decoration: none;
    pointer-events: none;
}


#spinner {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url("css/ajax-loader.gif") 50% 50% no-repeat #ede9df;
    opacity: .7;
}

.isLoading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* Fondo oscuro y opaco */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Se superpone a todo */
    cursor: wait; /* Indica al usuario que espere */
    /* Prevención de interacción: Aunque el JS lo controla, el CSS ayuda */
    pointer-events: all;
}

.hideLoading {
    display: none;
}

.input-validation-error {
    border-color: #E5102F;
}

.error label {
    display: block;
    text-align: left;
    /*font-family: "alpina_sans_regularregular";*/
    /* font-family: "AlpinaSans-Bold";*/
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    /*background-image: url(../content/img/vectors/alert-circle.svg);*/
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    padding-left: 22px;
    margin-top: 5px;
    color: #E5102F;
}

.error2 {
    display: block;
    text-align: left;
    /*font-family: "alpina_sans_regularregular";*/
    /* font-family: "AlpinaSans-Bold";*/
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    /*background-image: url(../content/img/vectors/alert-circle.svg);*/
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    padding-left: 22px;
    margin-top: 5px;
    color: #E5102F;
}

.img-container {
    border-radius: 50%; /* Aplica el radio al contenedor */
    width: 100px;
    height: 100px;
    overflow: hidden; /* Oculta cualquier parte de la imagen que sobresalga */
}

.img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Asegura que la imagen cubra el área sin deformarse */
}

@media (max-width: 768px) {
    .editPerfilMediaTab {
        display: block;
        font-size: 10px;
        justify-content: left;
    }
}

/* csscontrola cuando el elemento es mul largo y se baja. Lo deja en una sola linea */
.pointsSameLine {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

