﻿.iconosLenguaje {
    cursor: pointer;
    width: 50px;
    transition: 0.2s;
}

    .iconosLenguaje:hover {
        transform: scale(1.2);
    }

.iconoLenguajeSelected {
    transform: scale(1.5);
    cursor: pointer;
    width: 50px;
}

.degradado-imagen {
    position: relative;
    width: 300px;
    height: 100px;
    overflow: hidden;
}

    .degradado-imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.degradado {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.bottom-arrow:hover {
    color: #1056B3;
}

.marcarComoLeida {
    font-size: 10px;
    color: grey;
}

.fechaNotificaciones {
    font-size: 11px;
    color: #0C2240;
}

.imageContainerModalPrincipal {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AvatarImagen {
    max-height: 40px;
    max-width: 40px;
    border-radius: 10% !important;
    align-content: center;
}

.AvatarSinImagen {
    object-fit: cover;
    border-radius: 10%;
    width: 100%;
    height: 100%;
}

#circuloTarjetas {
    background-color: #7BC4F3;
    border-radius: 20px;
    font-size: 8px;
    font-weight: bold;
    padding-left: 4px;
    padding-top: 1px;
    padding-bottom: 0.25px;
    padding-right: 4px;
    margin-top: -45px;
    margin-left: 55px;
    position: absolute;
    color: white;
}

.AvatarModalImagen {
    max-height: 80px;
    max-width: 80px;
    border-radius: 10% !important;
}

.AvatarModalSinImagen {
    font-size: 25px;
    margin-top: 20px;
    margin-left: 40px;
}

.modal-from-right .modal-dialog {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(100%);
}

.modal-from-right.show .modal-dialog {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.modal-from-right.modal-closing .modal-dialog {
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateX(100%);
}

#circuloTarjetasModal {
    background-color: #7BC4F3;
    border-radius: 20px;
    font-size: 8px;
    font-weight: bold;
    padding-left: 4px;
    padding-top: 1px;
    padding-bottom: 0.25px;
    padding-right: 4px;
    margin-top: -26px;
    margin-left: -14px;
    position: absolute;
    color: white;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .custom-select select {
        display: none;
    }

.select-styled {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

    .select-styled:after {
        content: "\f078";
        font-family: FontAwesome;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }

    .select-styled.open:after {
        content: "\f077";
    }

.select-options {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1;
}

    .select-options.open {
        display: block;
    }

.select-option {
    padding: 5px 10px;
    cursor: pointer;
}


.noSelectedItem {
    background-color: white;
    color: #1056B3;
}

    .noSelectedItem:hover {
        background-color: #1056B3;
        color: white;
    }

.selectedItem {
    background-color: #1056B3;
    color: white;
}

.wh3rem {
    width: 3rem;
    height: 3rem;
}

/* Lineas detalle transacciones */
.lineas-detalle-row td {
    padding: 0 !important;
    border: none !important;
}

.lineas-detalle-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lineas-detalle-wrapper.open {
    max-height: 500px;
    opacity: 1;
}

.lineas-detalle-container {
    background-color: #f8faff;
    border-radius: 10px;
    margin: 8px 24px 14px 24px;
    padding: 4px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8edf5;
}

.lineas-detalle-header {
    color: #1056B3;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 20px 6px 20px;
    letter-spacing: 0.3px;
}

.lineas-detalle-header i {
    margin-right: 6px;
    font-size: 12px;
}

.lineas-detalle-container table {
    font-size: 13px;
    color: #737373;
}

.lineas-detalle-container table td {
    padding: 7px 20px;
}

.lineas-detalle-container tbody tr + tr td {
    border-top: 1px solid #e8edf5;
}

.lineas-detalle-thead td {
    color: #8d8d8d;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e8edf5;
    padding-left:20px;
}

.lineas-toggle {
    color: #1056B3;
    font-size: 13px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

.lineas-toggle:hover {
    color: #1771E8;
}

.lineas-toggle.open {
    transform: rotate(180deg);
}