/* fonts */
@font-face {
    font-family: 'Lato';
    src: url(./libraries/bootstrap-5.0.2/fonts/Lato/Lato-Regular.ttf)
}

@font-face {
    font-family: 'Lato Black';
    src: url(./libraries/bootstrap-5.0.2/fonts/Lato/Lato-Black.ttf)
}

@font-face {
    font-family: 'Lato Bold';
    src: url(./libraries/bootstrap-5.0.2/fonts/Lato/Lato-Bold.ttf)
}

@font-face {
    font-family: 'Lato Medium';
    src: url(./libraries/bootstrap-5.0.2/fonts/Lato/Lato-Regular.ttf)
}

@font-face {
    font-family: 'Lato Semibold';
    src: url(./libraries/bootstrap-5.0.2/fonts/Lato/Lato-Regular.ttf)
}

.lato-bold {
    font-family: 'Lato Bold' !important;
}

.lato-black {
    font-family: 'Lato Black' !important;
}

.lato-medium {
    font-family: 'Lato Medium' !important;
}

.lato-semibold {
    font-family: 'Lato Semibold' !important;
    font-weight: 700;
}

.pointer {
    cursor: pointer;
}

/*? app-wraper */
.app-wrapper {
    display: flex;
    flex-direction: column;
    margin: 106px 40px 48px 140px;
}

.app-wrapper * {
    font-family: 'Lato';
}

@media screen and (max-width: 480px) {
    .app-wrapper {
        padding: 30px 6% 6% 6%;
        grid-template-rows: none;
        margin: 0;
        height: 100%;
    }

    .app-wrapper > input {
        width: 100%;
        height: 100% !important;
    }
}

/*? app-module-header */
.app-module-header {
    grid-area: 1 / 1 / 2 / 2;
}

.app-module-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--azul-experto);
    margin-bottom: 8px;
}

.app-module-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--azul-digital);
    line-height: 34px;
    padding-bottom: 24px;
}

.container-fluid--header {
    border-bottom: 1px solid var(--azul-experto);
}

.app-module-header__case-card {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
}

/* Desktop */
@media (min-width: 992px) {
    .app-module-header__case-card {
        margin-top: 0;
        margin-left: auto;
        max-width: 320px;
    }
}

.case-number {
    font-weight: 900;
    color: var(--azul-experto);
    margin-bottom: 4px;
    text-align: left;
}

.case-description {
    font-weight: 400;
    color: var(--azul-experto);
    line-height: 20px;
    text-align: left;
}

@media screen and (max-width: 480px) {
    .app-module-header {
        grid-area: 1 / 1 / 2 / 2;
        text-align: center;
    }
    .container-fluid--header {
        border-bottom: 0px solid var(--azul-experto);
    }

    .app-module-header h1 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .app-module-header h3 {
        font-size: 16px;
        border-bottom: none;
        padding: 0;
    }
}

.app-module-header__title {
    font-family: 'Lato Bold';
}

.app-module-header__title--only-title {
    font-family: 'Lato Black';
    text-align: center;
}

@media screen and (min-width: 768px) {
    .app-module-header__title--only-title {
        font-size: 32px !important;
    }
}

/*? custom width */

.w-input {
    width: 350px;
}

@media screen and (max-width: 480px) {
    .w-input {
        width: 304px;
    }
}

/*? footer button */

.app-btn-action {
    background: var(--amarillo-optimista);
    color: var(--azul-experto);
    font-size: 20px;
    padding: 0px 2rem!important;
    border-radius: 40px;
    border: none;
    height: 60px;
    width: 171px;
    font-weight: 400;
}

.app-btn-action:hover {
    background: var(--azul-experto);
    color: var(--blanco);
}

.app-btn-action:focus {
    background: var(--azul-experto)!important;
    color: var(--blanco);
    border: none;
    box-shadow: none;
}

.app-btn-action:disabled {
    background: #D9D8D6;
    color: #666666;
    cursor: default
}

.app-btn-action:disabled:hover {
    background: #D9D8D6 !important;
    color: #666666;
    cursor: default
}

.app-btn-action:focus(:hover) {
    background: #D9D8D6;
    color: #666666;
    cursor: default
}

.app-blue-btn-action {
    background: var(--azul-experto) !important;
    color: var(--blanco);
}

.app-blue-btn-action:hover {
    background: #2C8B9E !important;
}

@media screen and (max-width: 480px) {
    .app-btn-action {
        width: 304px;
    }
}

/* cuando el boton footer sea azul */
@media screen and (max-width: 1200px) {
    .app-blue-btn-action {
        background: var(--amarillo-optimista) !important;
        color: var(--azul-experto) !important;
    }
    .app-blue-btn-action:hover {
        background: var(--azul-experto) !important;
        color: var(--blanco) !important;
    }
}

.app-btn-return {
    background: #E6E5E5 0% 0% no-repeat padding-box;
    border-radius: 40px;
    color: #003865;
    font-size: 15px;
    height: 45px;
    width: 107px;
}

.app-btn-return img {
    width: 16px;
    height: 13px;
}

.app-btn-help {
    width: 181px;
    height: 45px;
    background: #003865 0% 0% no-repeat padding-box;
    border-radius: 23px;
    opacity: 1;
}

.app-btn-help img {
    width: 15.81px;
    height: 15.83px;
}

/* footer boton consulta */

.app-btn-print-consult {
    color: #003865;
    font-size: 20px;
    display: flex;
    gap: 8.12px;
    align-items: center;
    position: absolute;
    left: 45.7% !important;
}

.app-btn-print-consult span {
    border-bottom: solid 1px transparent;
}

.app-btn-print-consult:hover {
    filter: brightness(0) saturate(100%) invert(53%) sepia(30%) saturate(853%) hue-rotate(142deg) brightness(84%) contrast(95%);
    color: #2C8B9E;
}

.app-btn-print-consult:hover span {
    border-bottom: solid 1px #2C8B9E;
}

@media screen and (max-width: 1200px) {
    .app-btn-print-consult {
        position: static;
    }
}

.app-btn-print-consult img {
    width: 22.37px;
    height: 25.17px;
}

/*? payment type */
.payment-type-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 32px;
}

.payment-type-wrapper2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}
.payment-type-wrapper2 span {
    font-size: 25px;
    color: var(--azul-experto);
}

.payment-type-wrapper span {
    font-size: 25px;
    color: var(--azul-experto);
}

.payment-type {
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.payment-type * {
    flex: 1;
    border-radius: 60px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 25px;
    color: var(--azul-experto);
    height: 60px;
    font-weight: bold;
    cursor: pointer;
}

.payment-type-item {
    background-color: #F5F5F5;
}

.payment-type-item input[type=radio] {
    position: absolute;
    display: none;
    opacity: 0;
}

.payment-type-item input[type=radio] + .payment-type-item-label:before {
    content: "";
    background: var(--blanco);
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    height: 24px;
    width: 24px;
    position: relative;
    margin-right: 1em;
    margin-left: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.payment-type-item input[type=radio]:checked + .payment-type-item-label:before {
    background-color: var(--azul-experto);
    box-shadow: inset 0 0 0 4px var(--blanco);
}

.payment-type-item input[type=radio]:focus + .payment-type-item-label:before {
    outline: none;
    border-color: var(--azul-experto);
}

.payment-type-item input[type=radio]:active + .payment-type-item-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #F5F5F5;
    background: #F5F5F5;
}
.payment-type-item input[type="radio"]:checked + label {
    background-color: #C8DEEF !important;
}

@media screen and (max-width: 768px) {
    .payment-type {
        width: 304px;
    }

    .payment-type-item * {
        height: 50px;
    }

    .payment-type-wrapper span {
        font-size: 18px;
    }
}

@media screen and (max-width: 1200px) {
    .payment-type-item {
        background-color: #EBEBEB;
    }

    .payment-type * {
        font-size: 16px;
    }
}

/* Radios horizontales peque?itos */
.st-companie-radios-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 32px;
}

.st-companie-radios-wrapper span {
    font-size: 25px;
    color: var(--azul-experto);
}

.st-companie-radios {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24.52px;
}

.st-companie-radios * {
    flex: 1;
    background-color: var(--gris-1);
    border-radius: 40px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 16px;
    color: var(--azul-experto);
    height: 40px;
    font-weight: bold;
}

.st-companie-radios-item {
    width: 140px;
}

.st-companie-radios-item input[type='radio'] {
    position: absolute;
    display: none;
    opacity: 0;
}

.st-companie-radios-item input[type='radio'] + .st-companie-radios-item-label:before {
    content: '';
    background: var(--blanco);
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 0.7em;
    margin-left: 0.7em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.st-companie-radios-item input[type='radio']:checked + .st-companie-radios-item-label:before {
    background-color: var(--azul-experto);
    box-shadow: inset 0 0 0 4px var(--blanco);
}

.st-companie-radios-item input[type='radio']:focus + .st-companie-radios-item-label:before {
    outline: none;
    border-color: var(--azul-experto);
}

.st-companie-radios-item input[type='radio']:active + .st-companie-radios-item-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: var(--gris-1);
    background: var(--gris-1);
}

/* Checkbox CF */
.global-form-check-wrapper {
    margin-top: 8px;
}

.global-form-check {
    position: absolute;
    opacity: 0;
}

.global-form-check + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--azul-experto);
    font-size: 16px;
    width: 60px;
    margin-bottom: 0;
    font-weight: bold;
}

.global-form-check + label:before {
    content: '';
    margin-right: 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid var(--azul-experto);
    border-radius: 4px;
}

.global-form-check:hover + label:before {
    background: var(--azul-experto);
}

.global-form-check:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.global-form-check:checked + label:before {
    background: var(--azul-experto);
}

.global-form-check:checked + label:after {
    content: '';
    position: absolute;
    left: 4.5px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}


/*? Modals */

.bia-modal {
    background-color: rgb(140, 140, 140, 0.73);
    backdrop-filter: blur(7px);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bia-modal-content-icon {
    position: absolute;
    top: -54px;
}

.bia-modal-content {
    background: var(--blanco);
    box-shadow: 0px 3px 6px #00000029;
    position: relative;
    text-align: center;
    border-radius: 25px;
    padding: 4rem;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.bia-modal-content-text{
    font-family: 'Lato';
    font-size: 24px;
    font-weight: 100;
    color: var(--azul-experto);
}

.bia-modal-content .bia-modal-content-title {
    font-size: 34px;
    font-weight: bold;
    margin-top: 28px;
    color: var(--azul-experto);
    white-space: break-spaces;
    margin-left: 5px;
    margin-right: 5px;
}

.bia-modal-content .bia-modal-content-headline {
    font-size: 24px;
    font-weight: bold;
    color: var(--azul-experto);
}

.bia-modal-content .bia-modal-content-subtitle {
    font-size: 20px;
    font-weight: normal;
    color: var(--gris-3);
}

.bia-modal-content .bia-modal-content-subtitle > span {
    font-size: 20px;
    font-weight: bold;
    color: var(--azul-experto);
    text-decoration: underline;
}

.bia-modal-content h1, h2, h3, h4 {
    margin: 0;
    font-family: 'Lato';
}

.bia-modal-content .is-label {
    color: var(--azul-digital);
    font-size: 20px;
}

.bia-modal-content .is-headline, .is-subtitle, .is-title {
    color: var(--azul-experto);
}

.bia-modal-content .is-title {
    font-size: 40px;
    font-weight: bold;
}

.bia-modal-content .is-subtitle {
    font-size: 24px;
    font-weight: bold;
}

.bia-modal-content .is-headline {
    font-size: 20px;
}

.bia-modal-content .is-action-with-cancel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bia-modal-content .is-action-with-cancel span {
    color: var(--gris-4);
    border-bottom: 1px solid var(--gris-4);
    cursor: pointer;
    font-size: 20px;
}

@media screen and (max-width: 1200px) {
    .bia-modal-content .is-action-with-cancel span {
        font-size: 16px;
    }
}

.bia-modal-content button:hover, .bia-modal-content button button:active {
    background-color: var(--azul-financiero) !important;
}

@media screen and (max-width: 1200px) {

    .bia-modal-content {
        padding: 2rem 5px !important;
    }

    .bia-modal-content .bia-modal-content-title {
        font-size: 24px !important;
    }

    .bia-modal-content .is-headline {
        margin-top: 28px;
        font-size: 16px !important;
    }
}

@media screen and (max-width: 480px) {
    .bia-modal-content {
        width: 80%;
        row-gap: 10px;
    }

    .bia-modal-content button {
        min-width: 150px !important;
        max-width: 150px !important;
    }

    .bia-modal-content button:active {
        min-width: 150px !important;
        max-width: 150px !important;
    }

    .bia-modal-content .bia-modal-content-icon img {
        width: 84px;
    }

    .bia-modal-content .bia-modal-content-icon {
        top: -42px;
    }

    .bia-modal-content .bia-modal-content-headline {
        font-size: 20px;
    }

    .bia-modal-content .bia-modal-content-subtitle, .bia-modal-content .bia-modal-content-subtitle span {
        font-size: 16px;
    }

    .bia-modal-content .is-subtitle {
        font-size: 20px;
    }

    .bia-modal-content .is-title {
        font-size: 28px;
    }

    .bia-modal-content .is-label {
        font-size: 14px;
    }

    .bia-modal-content .ee-modal-subtitle {
        font-size: 24px;
    }
}

.err-input {
    color: var(--rojo);
    font-size: 15px;
    width: 100%;
    display: none;
    text-align: right;
}

.input-err {
    border: 1px solid var(--rojo) !important;
}

.input-err:focus {
    border: 1px solid var(--rojo) !important;
}

.input-err:focus + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    border: 0px;
    background: var(--blanco);
    padding: 0 10px;
}

.err-msg {
    display: inherit !important;
    color: var(--rojo) !important;
    justify-content: flex-end !important;
}

.soft-alert {
    width: 350px;
    height: 75px;
    background: #00C1D41A 0% 0% no-repeat padding-box;
    border-radius: 16px;
    opacity: 1;
    display: flex;
    color: #003865;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    margin-bottom: 40px;
}

.soft-alert img {
    width: 36px;
    height: 37px;
    position: absolute;
    top: -25%;
}

@media screen and (max-width: 768px) {
    .soft-alert {
        width: 304px !important;
        height: 65px;
        font-size: 14px;
        padding: 24px 7px !important;
    }

    .soft-alert img {
        width: 32px;
        height: 32px;
    }
}

/*? custom clases */

.h-95 {
    height: 95px;
}

.w-424 {
    width: 424px;
}

.h-60 {
    height: 60px;
}

.m-40 {
    margin: 40px;
}

.p-40 {
    padding: 40px;
}

.p-21 {
    padding: 21px;
}

.gap-40 {
    gap: 40px;
}

.mh-420 {
    min-height: 420px;
}

.m-6 {
    margin: 4rem;
}

.m-7 {
    margin: 5rem;
}

.m-8 {
    margin: 6rem;
}

.m-9 {
    margin: 7rem;
}

.col-right-border {
    border-right: 1px solid #e6e6e6;
    height: 80%;
    top: 10%;
    right: 0;
}

.full-right-border {
    border-right: 1px solid #e6e6e6;
}

.col-top-border {
    border-top: none;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .mh-420 {
        min-height: 0;
    }

    .col-right-border {
        border-right: none;
    }

    .full-right-border {
        border-right: none;
    }
}

@media screen and (max-width: 480px) {
    .col-top-border {
        border-top: 1px solid #e6e6e6;
        top: 0;
        width: 100%;
        margin-top: 16px;
        margin-bottom: 8px;
    }
}

/*? custom fonts */

.font-1 {
    font-size: 20px;
    color: var(--azul-digital);
}

.font-2 {
    font-size: 28px;
    color: var(--azul-experto);
}

.font-3 {
    font-size: 24px;
}

.font-4 {
    font-size: 34px;
    color: var(--azul-experto);
}

.f-gris-3 {
    color: var(--gris-3);
}

@media screen and (max-width: 1200px) {
    .font-1 {
        font-size: 16px;
    }
    .font-2 {
        font-size: 24px;
    }
    .font-3 {
        font-size: 15px;
    }
    .font-4 {
        font-size: 24px;
    }
}

/* fix labels global */
@media screen and (max-width: 1199px){
    /*.
    biagentes-textfield > input:not(:placeholder-shown):not([disabled]) + label, .biagentes-textfield > select:not([disabled]) + label{
      background:  -moz-linear-gradient(90deg, var(--blanco) 45%, var(--gris-fondo) 48%);
        background: linear-gradient(0deg, var(--blanco) 45%, var(--gris-fondo) 48%);
    }
        */
}

/** Fix absolute mode in mobile footer*/

@media screen and (max-height: 400px){
    #app-mobile-footer {
        display: none !important;
    }
}

.input-radio {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 7px;
}

.input-radio input[type='radio'] {
    display: none;
}

.input-radio label {
    font-weight: normal;
    display: flex;
    align-items: center;
}
.input-radio.border-red-radio label:before {
    border-color: var(--rojo);
}

.input-radio label:before {
    content: " ";
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 2px solid var(--azul-experto);
    background-color: transparent;
    margin-right: 1rem;
}

.input-radio input[type=radio]:checked + label:after {
    border-radius: 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto;
    content: " ";
    display: block;
    background: var(--azul-experto);
}

.input-monto {
    text-align: center !important;
    font-weight: bold;
    color: var(--azul-experto) !important;
    outline: none;
    border-radius: 7px !important;
    transition: 0.1s ease-out;
    border: 1px solid var(--azul-experto) !important;
}

.input-monto::placeholder {
    text-align: center;
    font-weight: bold;
    color: var(--azul-experto) !important;
}


.input-monto-left {
    text-align: left !important;
    font-weight: bold;
    color: var(--azul-experto) !important;
    outline: none;
    border-radius: 7px !important;
    transition: 0.1s ease-out;
    border: 1px solid var(--azul-experto) !important;
}

.input-monto-left::placeholder {
    text-align: left;
    font-weight: bold;
    color: var(--azul-experto) !important;
}

/*
 deposito a cuenta

 */
.list-group-item-deposit-account {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border-bottom: none;
}

.title-user-account {
    color: var(--azul-experto);
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.title-user-account-label {
    margin-bottom: 15px;
    margin-top: 15px;
}

.title-name {
    color: var(--azul-digital);
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.title-available {
    color: var(--gris-3);
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}

.dep-account-amount {
    color: var(--azul-experto);
    font-size: 32px;
    font-weight: bold;
}

.dep-account-username,
.dep-account-last-name {
    color: var(--azul-experto);
    font-size: 25px;
    font-weight: bold;
}

.list-account-data {
    margin-top: 20px;
    margin-bottom: 10px;
}

.deposit-account {
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.deposit-account * {
    flex: 1;
    border-radius: 60px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 25px;
    color: var(--gris-3);
    height: 60px;
    font-weight: bold;
    cursor: pointer;
}

.deposit-account-item {
    background-color: var(--blanco);
}

.deposit-account-item input[type=radio] {
    position: absolute;
    display: none;
    opacity: 0;
    top: 15px;
}

.deposit-account-item input[type=radio] + .deposit-account-item-label:before {
    content: "";
    background: var(--blanco);
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    height: 24px;
    width: 24px;
    position: relative;
    margin-right: 5px;
    margin-left: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.deposit-account-item-label {
    display: block;
    line-height: 0.5;
    margin-top: 15px;
    font-size: 24px;
}


.deposit-account-item-label-small {
    margin-left: 54px;
    display: block;
    line-height: 0.5;
    font-size: 18px;
}

.deposit-account-item input[type=radio]:checked + .deposit-account-item-label:before {
    background-color: var(--azul-experto);
    border: 1px solid var(--azul-experto);
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px var(--blanco);
}


.deposit-account-item input[type=radio]:not(:checked) + .deposit-account-item-label:before {
    border: 1px solid var(--azul-experto);
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px var(--blanco);
}

.deposit-account-item input[type=radio]:focus + .deposit-account-item-label:before {
    outline: none;
    border-color: var(--azul-experto);
}


.deposit-account-item input[type="radio"]:checked + label {
    color: var(--azul-experto) !important;
    background-color: var(--blanco);
}

.deposit-account-item input[type="radio"]:checked + label > small {
    color: var(--azul-digital) !important;
}

.deposit-account-header-title {
    position: relative;
    top: 25%;
}
.remesa-header-title {
    margin-top: 3rem;
    margin-left: 20px;

}
.dep-account-amount{
    font-size: 32px;
}


    @media screen and (width < 767), screen and (max-height: 512px){
        .list-group-item-deposit-account {
            position: relative;
            display: block;
            padding: .5rem 1rem;
            color: #212529;
            text-decoration: none;
            background-color: #fff;
            border-bottom: 1px solid rgba(0, 0, 0, .125);
        }
    }

@media screen and (width < 767), screen and (max-height: 640px){
    .list-group-item-deposit-account {
        position: relative;
        display: block;
        padding: .5rem 1rem;
        color: #212529;
        text-decoration: none;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .125);
    }
}

@media screen and (max-width: 360px), screen and (max-height: 640px) {

    .deposit-account-header-title {
        position: relative;
        margin-top: 0;
        margin-left: 20px;
        padding-bottom: 50px;
    }

    .title-user-account {
        font-size: 18px;
    }

    .title-name {
        font-size: 14px;
    }

    .dep-account-amount {
        font-size: 20px;
    }

    .title-available {
        font-size: 18px;
    }

    .dep-account-username,
    .dep-account-last-name {
        font-size: 20px;
    }

    .deposit-account {
        width: 300px;
    }

    .deposit-account * {
        font-size: 18px;
        height: 50px;
        font-weight: 500;
    }

    .deposit-account-item input[type=radio] {
        position: absolute;
        display: none;
        opacity: 0;
        top: 15px;
        left: 2px;
    }
}

@media screen and (max-width: 360px), screen and (max-height: 512px) {


    .title-user-account {
        font-size: 18px;
    }

    .title-name {
        font-size: 14px;
    }

    .dep-account-username,
    .dep-account-last-name {
        font-size: 20px;
    }

    .deposit-account {
        width: 280px;
    }

    .deposit-account * {
        height: 45px;

    }
    .deposit-account-item-label-small {
        margin-left: 54px;
        display: block;
        line-height: 0.5;
        font-size: 13px;
        font-weight: 600;
    }

    .deposit-account-item-label {
        display: block;
        line-height: 0.5;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 600;
    }

}

@media screen and (max-height: 512px) {
    #app-modal-validate-deposit-account-content {
        max-height: 328px;
        overflow-y: scroll;
    }
    #app-modal-validate-deposit-accountapp-modal-validate-deposit-account-button {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        border: none;
        font-family: Lato, Regular;
        padding: 20px!important;
        margin-bottom: 0;
        width: 150px;
    }
    #app-modal-validate-deposit-accountapp-modal-validate-deposit-account-button2 {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        border: none;
        font-family: Lato, Regular;
        padding: 20px!important;
        margin-bottom: 0;
        width: 150px;
    }
    #app-modal-validate-cancel-button {
        margin-top: 0;
    }


}

.fa-spinner-new {
    width: 30px;
    height: 30px;
    content: url("/templates/default/icons/spinner-solid.svg");
}

/*
fin estilo deposito a cuenta
 */




/* Estilo del contenedor del checkbox */
.app-checkbox-box {
    display: inline-block;
    border: 2px solid var(--azul-experto);
    position: relative;
    width: 24px;
    height: 24px;
    color: var(--azul-experto);
    accent-color: var(--azul-experto);
    cursor: pointer;
    border-radius: 12%;
}

/* Estilo del estado checked */
input[type="checkbox"]:checked + .app-checkbox-box::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 6px;
    width: 9px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    border-radius: 3px 1px 1px 1px;
}

/* Modificar el borde del contenedor del checkbox cuando est� marcado */
input[type="checkbox"]:checked + .app-checkbox-box{
    border-color: var(--azul-experto);
    background-color: var(--azul-experto);
    accent-color: var(--azul-experto);
}

.app-checkbox-box.border-red-checkbox {
    border-color: var(--rojo);
}

.searcher-options-box {
    background: var(--gris-1);
    border-radius: 40px;
    height: 44px;
    width: 330px;
}

.searcher-options-item {
    background: var(--gris-1);
    border-radius: 40px;
    color: var(--azul-experto);
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

.searcher-selected-option {
    background: var(--azul-experto);
    color: var(--blanco);
}



.searcher::placeholder {
    font-weight: 500;
}

/*
 deposito a cuenta

 */
.list-group-item-deposit-account {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border-bottom: none;
}

.title-user-account {
    color: var(--azul-experto);
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.title-user-account-label {
    margin-bottom: 15px;
    margin-top: 15px;
}

.title-name {
    color: var(--azul-digital);
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.title-available {
    color: var(--gris-3);
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}

.dep-account-amount {
    color: var(--azul-experto);
    font-size: 32px;
    font-weight: bold;
}

.dep-account-username,
.dep-account-last-name {
    color: var(--azul-experto);
    font-size: 25px;
    font-weight: bold;
}

.list-account-data {
    margin-top: 20px;
    margin-bottom: 10px;
}

.deposit-account {
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.deposit-account * {
    flex: 1;
    border-radius: 60px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 25px;
    color: var(--gris-3);
    height: 60px;
    font-weight: bold;
    cursor: pointer;
}

.deposit-account-item {
    background-color: var(--blanco);
}

.deposit-account-item input[type=radio] {
    position: absolute;
    display: none;
    opacity: 0;
    top: 15px;
}

.deposit-account-item input[type=radio] + .deposit-account-item-label:before {
    content: "";
    background: var(--blanco);
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    height: 24px;
    width: 24px;
    position: relative;
    margin-right: 5px;
    margin-left: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.deposit-account-item-label {
    display: block;
    line-height: 0.5;
    margin-top: 15px;
    font-size: 24px;
}


.deposit-account-item-label-small {
    margin-left: 54px;
    display: block;
    line-height: 0.5;
    font-size: 18px;
}

.deposit-account-item input[type=radio]:checked + .deposit-account-item-label:before {
    background-color: var(--azul-experto);
    border: 1px solid var(--azul-experto);
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px var(--blanco);
}


.deposit-account-item input[type=radio]:not(:checked) + .deposit-account-item-label:before {
    border: 1px solid var(--azul-experto);
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px var(--blanco);
}

.deposit-account-item input[type=radio]:focus + .deposit-account-item-label:before {
    outline: none;
    border-color: var(--azul-experto);
}


.deposit-account-item input[type="radio"]:checked + label {
    color: var(--azul-experto) !important;
    background-color: var(--blanco);
}

.deposit-account-item input[type="radio"]:checked + label > small {
    color: var(--azul-digital) !important;
}

.deposit-account-header-title {
    position: relative;
    top: 25%;
}
.dep-account-amount{
    font-size: 32px;
}


    @media screen and (width < 767), screen and (max-height: 512px){
        .list-group-item-deposit-account {
            position: relative;
            display: block;
            padding: .5rem 1rem;
            color: #212529;
            text-decoration: none;
            background-color: #fff;
            border-bottom: 1px solid rgba(0, 0, 0, .125);
        }
    }

@media screen and (width < 767), screen and (max-height: 640px){
    .list-group-item-deposit-account {
        position: relative;
        display: block;
        padding: .5rem 1rem;
        color: #212529;
        text-decoration: none;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .125);
    }
}

@media screen and (max-width: 360px), screen and (max-height: 640px) {

    .deposit-account-header-title {
        position: relative;
        margin-top: 0;
        margin-left: 20px;
        padding-bottom: 50px;
    }

    .title-user-account {
        font-size: 18px;
    }

    .title-name {
        font-size: 14px;
    }

    .dep-account-amount {
        font-size: 20px;
    }

    .title-available {
        font-size: 18px;
    }

    .dep-account-username,
    .dep-account-last-name {
        font-size: 20px;
    }

    .deposit-account {
        width: 300px;
    }

    .deposit-account * {
        font-size: 18px;
        height: 50px;
        font-weight: 500;
    }

    .deposit-account-item input[type=radio] {
        position: absolute;
        display: none;
        opacity: 0;
        top: 15px;
        left: 2px;
    }
}

@media screen and (max-width: 360px), screen and (max-height: 512px) {


    .title-user-account {
        font-size: 18px;
    }

    .title-name {
        font-size: 14px;
    }

    .dep-account-username,
    .dep-account-last-name {
        font-size: 20px;
    }

    .deposit-account {
        width: 280px;
    }

    .deposit-account * {
        height: 45px;

    }
    .deposit-account-item-label-small {
        margin-left: 54px;
        display: block;
        line-height: 0.5;
        font-size: 13px;
        font-weight: 600;
    }

    .deposit-account-item-label {
        display: block;
        line-height: 0.5;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 600;
    }

}

@media screen and (max-height: 512px) {
    #app-modal-validate-deposit-account-content {
        max-height: 328px;
        overflow-y: scroll;
    }
    #app-modal-validate-deposit-account-button {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        border: none;
        font-family: Lato, Regular;
        padding: 20px;
        margin-bottom: 0;
        width: 150px;
    }
    #app-modal-validate-deposit-account-button2 {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        border: none;
        font-family: Lato, Regular;
        padding: 20px;
        margin-bottom: 0;
        width: 150px;
    }
    #app-modal-validate-cancel-button {
        margin-top: 0;
    }
}

/*
fin estilo deposito a cuenta
 */


/*
 deposito a cuenta

 */
.list-group-item-deposit-account {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border-bottom: none;
}

.title-user-account {
    color: var(--azul-experto);
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.title-user-account-label {
    margin-bottom: 15px;
    margin-top: 15px;
}

.title-name {
    color: var(--azul-digital);
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.title-available {
    color: var(--gris-3);
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}

.dep-account-amount {
    color: var(--azul-experto);
    font-size: 32px;
    font-weight: bold;
}

.dep-account-username,
.dep-account-last-name {
    color: var(--azul-experto);
    font-size: 25px;
    font-weight: bold;
}

.list-account-data {
    margin-top: 20px;
    margin-bottom: 10px;
}

.deposit-account {
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.deposit-account * {
    flex: 1;
    border-radius: 60px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 25px;
    color: var(--gris-3);
    height: 60px;
    font-weight: bold;
    cursor: pointer;
}

.deposit-account-item {
    background-color: var(--blanco);
}

.deposit-account-item input[type=radio] {
    position: absolute;
    display: none;
    opacity: 0;
    top: 15px;
}

.deposit-account-item input[type=radio] + .deposit-account-item-label:before {
    content: "";
    background: var(--blanco);
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    height: 24px;
    width: 24px;
    position: relative;
    margin-right: 5px;
    margin-left: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.deposit-account-item-label {
    display: block;
    line-height: 0.5;
    margin-top: 15px;
    font-size: 24px;
}


.deposit-account-item-label-small {
    margin-left: 54px;
    display: block;
    line-height: 0.5;
    font-size: 18px;
}

.deposit-account-item input[type=radio]:checked + .deposit-account-item-label:before {
    background-color: var(--azul-experto);
    border: 1px solid var(--azul-experto);
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px var(--blanco);
}


.deposit-account-item input[type=radio]:not(:checked) + .deposit-account-item-label:before {
    border: 1px solid var(--azul-experto);
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px var(--blanco);
}

.deposit-account-item input[type=radio]:focus + .deposit-account-item-label:before {
    outline: none;
    border-color: var(--azul-experto);
}


.deposit-account-item input[type="radio"]:checked + label {
    color: var(--azul-experto) !important;
    background-color: var(--blanco);
}

.deposit-account-item input[type="radio"]:checked + label > small {
    color: var(--azul-digital) !important;
}

.deposit-account-header-title {
    position: relative;
    top: 25%;
}
.dep-account-amount{
    font-size: 32px;
}


    @media screen and (width < 767), screen and (max-height: 512px){
        .list-group-item-deposit-account {
            position: relative;
            display: block;
            padding: .5rem 1rem;
            color: #212529;
            text-decoration: none;
            background-color: #fff;
            border-bottom: 1px solid rgba(0, 0, 0, .125);
        }
    }

@media screen and (width < 767), screen and (max-height: 640px){
    .list-group-item-deposit-account {
        position: relative;
        display: block;
        padding: .5rem 1rem;
        color: #212529;
        text-decoration: none;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .125);
    }
}

@media screen and (max-width: 360px), screen and (max-height: 640px) {

    .deposit-account-header-title {
        position: relative;
        margin-top: 0;
        margin-left: 20px;
        padding-bottom: 50px;
    }
    .remesa-header-title {
        position: relative;
        margin-top: 3rem;
        margin-left: 20px;
        padding-bottom: 10px;
    }
    .title-user-account {
        font-size: 18px;
    }

    .title-name {
        font-size: 14px;
    }

    .dep-account-amount {
        font-size: 20px;
    }

    .title-available {
        font-size: 18px;
    }

    .dep-account-username,
    .dep-account-last-name {
        font-size: 20px;
    }

    .deposit-account {
        width: 300px;
    }

    .deposit-account * {
        font-size: 18px;
        height: 50px;
        font-weight: 500;
    }

    .deposit-account-item input[type=radio] {
        position: absolute;
        display: none;
        opacity: 0;
        top: 15px;
        left: 2px;
    }
}

@media screen and (max-width: 360px), screen and (max-height: 512px) {


    .title-user-account {
        font-size: 18px;
    }

    .title-name {
        font-size: 14px;
    }

    .dep-account-username,
    .dep-account-last-name {
        font-size: 20px;
    }

    .deposit-account {
        width: 280px;
    }

    .deposit-account * {
        height: 45px;

    }
    .deposit-account-item-label-small {
        margin-left: 54px;
        display: block;
        line-height: 0.5;
        font-size: 13px;
        font-weight: 600;
    }

    .deposit-account-item-label {
        display: block;
        line-height: 0.5;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 600;
    }

}

@media screen and (max-height: 512px) {
    #app-modal-validate-deposit-account-content {
        max-height: 328px;
        overflow-y: scroll;
    }
    #app-modal-validate-deposit-account-button {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        border: none;
        font-family: Lato, Regular;
        padding: 20px;
        margin-bottom: 0;
        width: 150px;
    }
    #app-modal-validate-deposit-account-button2 {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        border: none;
        font-family: Lato, Regular;
        padding: 20px;
        margin-bottom: 0;
        width: 150px;
    }
    #app-modal-validate-cancel-button {
        margin-top: 0;
    }
}

.fa-spinner-new {
    width: 30px;
    height: 30px;
    content: url("/templates/default/icons/spinner-solid.svg");
}

/*
fin estilo deposito a cuenta
 */

/*PRE-CALIFICACION*/
.precalifiacion-visor__pdf-container {
    width: 100%;
    height: 60vh; /* Altura fija para el contenedor */
    overflow-y: auto; /* Permite desplazamiento vertical */
    overflow-x: hidden; /* Desactiva desplazamiento horizontal */
    display: flex;
    flex-direction: column; /* Para apilar las páginas verticalmente */
    align-items: center; /* Centra el contenido */
    margin-bottom: 3%;
    border: 8px solid #F7F7F7;
    border-radius: 8px;
}

/**FIRMA DIGITAL**/
.card-container{
    box-shadow: 0px 4px 4px 0px #00000026;
    font-size: 14px;
    font-weight: 800;
    color:#003865;
 }
.card-container span{
    font-weight: 400;
}
/**CLIENTE **/
.header__remesa-cliente{
    font-size: 16px !important;
    color: var(--azul-experto) !important;

}

.titulo__remesa-confirmacion-datos{
    font-size: 16px;
    font-weight: 700;
    color:var(--azul-digital);
}
.texto__remesa-confirmacion-datos{
    font-size: 20px;
    font-weight: 400;
    color:var(--azul-experto);
}
.custom-margin-btn-action__cliente-frecuente{
    margin-top: 2.1rem !important;
    margin-bottom: 1rem !important;
}
.custom-margin-btn-action__cliente-frecuente-actualizacion{
    margin-top: 3.1rem !important;
    margin-bottom: -1rem !important;
}
