/*ACA ESTAN LAS DEFINICIONES DE TIPO DE LETRAS*/
@import url("./fonts.css");

:root {
    --waitBg: rgba(0, 0, 0, 0.41);
    --waitColor: #FFF;
    --fstBtnColor:#FFFFFF;
    --fstBtnBg: #2951A8;
    --scndBtnBg: #FFFFFF;
    --scndBtnColor: #2951A8;
    --lblColor:#2951A8;
    --fontColor: #333333;
    --errColor: #F44336;
}

html {
    font-size: 16px;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

textarea {
    resize: none;
}

/*WAIT SCREEN*/
.waitScreen {
    z-index: 200;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--waitBg);
    color: var(--waitColor);
    display: flex;
    align-items: center;
    transition: all .3s;
    opacity: 0;
    justify-content: center;
}

/*FOOTER GLOBAL*/
footer {
    font-family: 'OpenSans';
    font-weight: 400;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    width: 100%;
}

.content {
    width: 100%;
    height: 100vh;
    background-color: #F9F9F9;
}

/*Ojito para formularios de contraseña*/
.readPwd {
    color: var(--lblColor);
    font-size: .95rem;
    cursor: pointer;
}

/*Modelos estandar de botones*/
.fstBtn {
    color: var(--fstBtnColor);
    background-color: var(--fstBtnBg);
    border:none;
    outline: none;
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-family: 'Inter';
    font-weight: bold;
    font-size: .875rem;
    cursor: pointer;
}

.scndBtn {
    color: var(--scndBtnColor);
    background-color: var(--scndBtnBg);
    border: 1px solid var(--lblColor);
    outline: none;
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-family: 'Inter';
    font-weight: bold;
    font-size: .875rem;
    cursor: pointer;
}

/*Virtual select - hook */
.vscomp-wrapper {
    font-family: 'Inter';
    font-size: .8125rem;
}

.vscomp-toggle-button {
    border: none;
}

.vscomp-wrapper.show-value-as-tags .vscomp-toggle-button {
    box-shadow: none;
    padding: 4px 22px 0 5px;
}

.vscomp-wrapper.focused .vscomp-toggle-button,
.vscomp-wrapper:focus .vscomp-toggle-button {
    box-shadow: none;
    padding: 4px 22px 0 5px;
}

.vscomp-wrapper.show-value-as-tags .vscomp-value-tag {
    background-color: #E2E2E2;
}

/*Inpt de formularios*/
.rowFrm {
    column-gap: 10px;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.inptFrmCnt {
    width: 100%;
}

.inptLbl {
    display: flex;
    font-family: 'Inter';
    color: var(--lblColor);
    font-size: .75rem;
    font-weight: bold;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1vh;
}

.inptCnt {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 0.85px solid #D3D2D2;
    border-radius: 8px;
    min-height: 40px;
    padding: 0 8px;
}

.inptFrm {
    font-family: 'Inter';
    color: var(--fontColor);
    font-size: .875rem;
    font-weight: 500;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.inptAreaFrm {
    width: 40px;
    text-align: right;
}

.inptLinePhn {
    padding: 0 5px;
}

.inptFrm::placeholder {
    opacity: 0.7;
}

.inptCnt:has(.inptFrm[disabled]) {
    background-color: #F0F0F4;
    border-color: #F0F0F4;
}

.inptFrm[disabled] {
    background: transparent;
}

.inptCnt input[type="number"] {
    text-align: right;
}

.inptCnt input[type="number"]::-webkit-inner-spin-button,
.inptCnt input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*Errores formulario*/
.inptErrCnt {
    display: flex;
    justify-content: space-between;
    color: var(--errColor);
    font-family: 'Inter';
    font-weight: 400;
    font-size: 0.65rem;
    height: auto;
    align-items: flex-end;
}

.inptErrCnt i {
    font-size: .825rem;
}

.inptFrmErr {
    border-color: var(--errColor) !important;
    margin-bottom: 0;
}

/*clases de ancho estandar*/
.cell50 {
    width: 50%;
}

.cell35 {
    width: 35%;
}

.trashIc {
    position: absolute;
    right: -35px;
    height: 40px;
    align-items: center;
    display: flex;
    bottom: 0;
    color: var(--lblColor);
    cursor: pointer;
    padding: 5px;
}

/*Popup*/
.popupBg {
    display: none;
    opacity: 0;
    transition: all .3s;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}


.popupBox {
    background-color: #FFFFFF;
    border: 0.87px solid #D3D2D2;
    border-radius: 8px;
    max-width: 420px;
    padding: 15px 20px;
    display: none;
    width: 90%;
    position: relative;
}

.popupBox#confpayFrm {
    max-width: 350px;
}

.closePopup {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 15px;
}

.popupTit {
    color: var(--lblColor);
    font-family: 'Inter';
    font-weight: bold;
    font-size: 1.125rem;
    padding-bottom: 3.5vh;
    text-align: left;
}

.popupMsg {
    padding-bottom: 2vh;
    font-family: 'Inter';
    font-weight: 400;
    font-size: .875rem;
}

.popupErrMsg {
    padding-bottom: 10px;
    width: 100%;
    text-align: left;
    font-family: 'Inter';
    font-size: .75rem;
    color: var(--errColor);
}

/*Modal general de pagos*/
.payInfo {
    background-color: rgb(41 81 168 / 15%);
    border-radius: 8px;
    padding: 5px 10px;
    display: none;
    flex-direction: column;
    margin-top: 4px;
}

.payInfTit {
    color: var(--lblColor);
    font-family: 'Inter';
    font-weight: bold;
    font-size: .75rem;
    padding-bottom: 2px;
}

.payInfDsc {
    color: var(--lblColor);
    font-family: 'Inter';
    font-weight: 400;
    font-size: .75rem;
}

span.currSym {
    color: var(--fontColor);
    font-size: .75rem;
    display: flex;
    width: 55px;
    align-items: center;
    justify-content: center;
    background-color: #F9F9F9;
    border-right: 1px solid #D3D2D2;
    font-family: 'Inter';
    font-weight: bold;
    min-height: 40px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.payBtnCnt {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    margin-top: 15px;
}

.confirmImg {
    margin-top: 1vh;
    width: 140px;
    height: 140px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/confirmpay.svg);
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
}

.confirmMsg {
    color: var(--lblColor);
    font-family: 'Inter';
    font-weight: bold;
    font-size: 1.125rem;
    padding-bottom: 0;
    padding-top: 2vh;
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.confirmAditMsg {
    color: var(--fontColor);
    font-family: 'Inter';
    font-weight: bold;
    font-size: .75rem;
    padding-bottom: 2vh;
    padding-top: .5vh;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.btnEfect {
    cursor: pointer;
}

.btnEfect:active {
    transform: translateY(1px) translateX(1px);
    box-shadow: 0 0 0 transparent;
}