/*ESTILOS PARA MODAL DEL FORM*/
.modal-asesoramiento {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;

}


.modal-asesoramiento.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: scaleUp 0.35s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

@keyframes scaleUp {
    0% {
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* - - - */
.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .form-title {
        text-align: center;
        font-weight: 600;
        margin: .5rem;
        font-size: 1.1rem;
        ;
    }

    .input-info-container {
        display: flex;
        flex-direction: column;
        margin: .5rem;
    }

    .input-name-last-name {
        display: flex;
        flex-direction: row;
        gap: .5rem;
        margin: .5rem;
    }

    .btn-asesoramiento-form {
        color: white;
        width: 100%;
        background-color: #002a50;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        padding: .7rem;
        margin-top: .5rem;
    }

    input {
        width: 100%;
        height: 2rem;
        margin: .2rem;
        font-weight: 600;
    }

    textarea {
        width: 100%;
        height: 4rem;
        margin: .2rem;
        font-weight: 500;
        resize: vertical;
    }

    label {
        font-weight: 600;
        font-size: .9rem;
        margin-bottom: .2rem;
        margin-top: .2rem;
        margin-left: .2rem;
    }

    select {
        width: 100%;
        height: 2rem;
        margin: .2rem;
        background-color: white;
        border: 1px solid grey;
        font-weight: 500;
    }

    textarea {
        resize: none;
    }
}

/*funcion para el ticket PGDY-2088 (notificaciones personalizadas)*/
.notification-custom {
    position: fixed;
    top: 20px;
    right: .5rem;
    padding: 15px 20px;
    color: white;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 380px;
    animation: slideInRight 0.5s ease forwards;
}

.notification-custom.hiding {
    animation: slideOutRight 0.5s ease forwards;
}

/*Animaciones*/
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
/*fin funcion para el ticket PGDY-2088 (notificaciones personalizadas)*/