<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.panel-tab{
    display:flex;
    flex-direction: row;
    width: 100%;
    height: 80px;
}
.panel-tab-item{
    width: 50%;
    padding: 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(255,255,255,0);
    transition: all ease .3s;
    gap: 7px;
}
.panel-tab-item:hover{
    background-color: rgba(255,255,255,1);
}
.panel-tab-item p{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 17px;
    margin: 0;
    text-align: center;
}
.panel-selected{
    border-bottom: 3px solid #0562ee;
    background-color: rgba(255,255,255,1);
}
.panel-unselected{
    border-bottom: 3px solid #c1c1c1;
    background-color: #ebebeb;
}
.panel-selected p{
    color: #0562ee;
}
.panel-unselected p{
    color: #333333;
}

.bk-mi-ns{
    width: 100%;
    min-height: 100vh;
    background-color: #00182f;
    background-image: url('../../img/NsPanel/bk-mi-ns.svg');
    background-position-y: 118px;
    background-repeat: no-repeat;
    padding-top: 128px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    position: relative;
}
.container-mi-ns{
    display: flex;
    flex-direction: column;
    background-color: #f6f6f6;
    border-radius: 4px;
    box-shadow: 0px 6px 22px rgb(0 0 0 / 27%);
    overflow: hidden;
}
.bottom{
    border-left: 4px solid #676767;
    display: flex;
    flex: 1;
}

.section-mi-ns{
    width: 1300px;
    background-color: #f6f6f6;
    padding: 30px 220px 60px;
}

.cuenta{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #202020;
    margin: 0 20px;
    font-size: 24px;
}

.specialTitles{
    margin: 0;
    width:100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #002864;
    font-size: 20px;
    text-align: center;
}

.containerServicios{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.containerCardServicio{
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    box-shadow: 3px 4px 8px 0px rgb(0 0 0 / 11%);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.cardServicioDescription{
    width:100%;
    padding:20px 18px;
    display: flex;
    flex-direction: column;
}
.titleCardServicio {
    width: 100%;
    color: #0562EE;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0
}
.subtitleCardServicio {
    width: 100%;
    color: #202020;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 0;
}
.showMoreContainer{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 15px;
    border-top: 1px solid #ECECEC;
}
.showMoreText{
    color: #202020;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}
.keyboard{
    width:22px;
    height:22px;
}

.sectionFacturas{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 26px 20px;
    gap: 15px;
    box-shadow: 3px 4px 8px 0px rgb(0 0 0 / 11%);
}
.containerFacturas{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.containerCardFactura {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #64A2FF;
    overflow: hidden;
}
.cardFacturaTop{
    width: 100%;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.cardFacturaDescription{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.date{
    display: flex;
    flex-direction: column;
}
.month {
    width: 100%;
    color: #002864; 
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0
}
.expiration {
    width: 100%;
    color: #002864;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}
.amount{
    color: #002864;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 0;
}
.actionsContainer{
    display: flex;
    flex-direction: row;
    gap: 8PX;
    flex-wrap: wrap;
}
.greenButton{
    background-color: #039400;
    border: 1px solid #039400;
    border-radius: 4px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.greenButton:hover{
    background-color: #038900;
    border: 1px solid #038900;
}
.primaryButton{
    background-color: #0562ee;
    border: 1px solid #0562ee;
    border-radius: 4px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.primaryButton:hover{
    background-color: #0056d7;
    border: 1px solid #0056d7;
}
.greenButton{
    background-color: #039400;
    border: 1px solid #039400;
    border-radius: 4px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.secondaryButton{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    padding: 15px 10px 13px;
    align-items: center;
    justify-content: center;
    border: 1px solid #0562EE;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #0562ee;
}
.secondaryButton:hover{
    background: #f5f9ff;
}
.tertiaryButton {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    color: #0562ee;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0);
    border: none;
}
.tertiaryButton:hover{
    color: #0056d7;
    text-decoration: underline;
}
.showMoreContainerFactura{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 15px;
    border-top: 1px solid #64A2FF;
    cursor: pointer;
}
.showMoreContainerFactura:hover{
    background-color: rgba(0, 0, 0, 0.05);
}
.showMoreTextFactura{
    color: #002864;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

.containerCardFacturaIsVencida {
    display: flex;
    flex-direction: column;
    background-color: #FFF5F5;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #A76C6C;
}
.monthIsVencida {
    width: 100%;
    color: #490000; 
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0
}
.expirationIsVencida {
    width: 100%;
    color: #490000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}
.amountIsVencida{
    color: #490000;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 0;
}
.warningMenssage{
    display: flex;
    flex-direction: row;
    width:100%;
    gap:5px;
    padding: 4px 0;
    align-items: center;
}
.warning{
    width: 24px;
    height: 24px;
}
.textAlert{
    width: 100%;
    color: #490000;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}
.showMoreContainerFacturaIsVencida{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 15px;
    border-top: 1px solid #A76C6C;
    cursor: pointer;
}
.showMoreContainerFacturaIsVencida:hover{
    background-color: rgba(0, 0, 0, 0.05);
}
.showMoreTextFacturaIsVencida{
    color: #490000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

.containerCardFacturaIsPaga {
    display: flex;
    flex-direction: column;
    background-color: #EDF7ED;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #039400;
}
.monthIsPaga {
    width: 100%;
    color: #013E00; 
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0
}
.amountIsPaga{
    color: #013E00;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 0;
}
.greatMenssage{
    display: flex;
    flex-direction: row;
    width:100%;
    gap:5px;
    padding: 14px 0 4px;
    align-items: center;
}
.warning{
    width: 24px;
    height: 24px;
}
.textGreat{
    width: 100%;
    color: #013E00;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}
.showMoreContainerFacturaIsPaga{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 15px;
    border-top: 1px solid #039400;
    cursor: pointer;
}
.showMoreContainerFacturaIsPaga:hover{
    background-color: rgba(0, 0, 0, 0.05);
}
.showMoreTextFacturaIsPaga{
    color: #013E00;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

.sectionReclamos{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 26px 20px;
    gap: 34px;
    box-shadow: 3px 4px 8px 0px rgb(0 0 0 / 11%);
}

.btnFormsContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
}

.btnReclamo{
    flex:1;
    max-width: 240px;
    margin: 0;
}

.btnReclamo:disabled,
.btnReclamo[disabled]{
    background-color: #0445A6;
    border: 1px solid #0445A6;
}

.formReclamos {
    display:flex;
    flex-direction:column;
    width:100%;
    gap:20px;
}
.formContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px 18px 0;
    gap: 20px;
}
.txtReclamos {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
    color: #202020;
}
.txtRestantes {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 14px;
    color: #202020;
}
.comentsContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}
.radioButtonsContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap:20px;
    flex-wrap: wrap;
}
.radioButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
}
.radioButton label{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
    color: #202020;
    padding-top: 4px;
}
.containerFormButton{
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

.customInput{
    display: flex;
    flex-direction: column;
    border: 1px solid #888888;
    border-radius: 4px;
    padding: 12px 20px;
    align-items: center;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #202020;
    height: auto;
}

.modalOverlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
}
.containerModals{
    background-color: #fff;
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    border-radius: 10px;
    width: 80%;
    box-shadow: 3px 4px 8px 0px rgb(0 0 0 / 11%);
    max-width: 400px;
    position: fixed;
    top: 142px;
    z-index: 90;
}
.txtModal{
    display: flex;
    flex-direction: column;
    width:100%;
    gap:20px;
}
.modalTitle{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 22px;
    color: #0562EE;
    margin: 0;
}
.modalDescripcion{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #202020;
    margin: 0;
    font-size: 16px;
    text-align: center;
    width: 100%;
}
.modalDescripcionBold{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #202020;
    width: 100%;
    text-align: center;
}

.sectionPlatforms{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    gap: 38px;
    padding: 36px 16px;
    align-items: center;
    box-shadow: 3px 4px 8px 0px rgb(0 0 0 / 11%);
}
.platformList{
    display: flex;
    flex-direction: row;
    width:100%;
    gap:6px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.containerPlatform{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 94px;
}
.imgPlatform{
    width:60px;
    height:60px;
}
.textPlatform{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #202020;
    text-align: center;
}



@media(max-width: 1440px){
    .bk-mi-ns{
        padding-top: 118px;
        background-position-y: 108px;
    }
}

@media(max-width: 1366px){
    .bk-mi-ns{
        padding-top: 114px;
        background-position-y: 104px;
    }
    .section-mi-ns {
        width: 1000px;
        padding: 30px 124px 60px;
    }
    .containerModals{
        top: 114px;
        max-width: 510px;
        max-height: 74vh;
    }
}

@media(max-width: 1350px){
    .bk-mi-ns{
        padding-top: 104px;
        background-position-y: 94px;
    }
}

@media(max-width: 1280px){
    .sub-items{
        padding: 10px 0;
    }
    .section-title{
        font-size: 22px;
    }
    .specialTitles{
        font-size: 18px;
    }
    .titleCardServicio{
        font-size: 18px;
    }
    .subtitleCardServicio{
        font-size: 18px;
    }
    .showMoreText{
        font-size: 14px;
    }
    .month{
        font-size: 18px;
    }
    .expiration{
        font-size: 14px;
    }
    .amount{
        font-size: 18px;
    }
    .greenButton,
    .primaryButton,
    .secondaryButton,
    .tertiaryButton{
        font-size: 12px;
    }
    .showMoreTextFactura{
        font-size:14px;
    }
    .monthIsVencida{
        font-size:18px;
    }
    .expirationIsVencida{
        font-size:14px;
    }
    .amountIsVencida{
        font-size:18px;
    }
    .textAlert{
        font-size:13px;
    }
    .showMoreTextFacturaIsVencida{
        font-size:14px;
    }
    .monthIsPaga{
        font-size:18px;
    }
    .amountIsPaga{
        font-size:18px;
    }
    .textGreat{
        font-size:13px;
    }
    .showMoreTextFacturaIsPaga{
        font-size:14px;
    }
    .customInput{
        font-size:14px;
    }
    .modalTitle{
        font-size:20px;
    }
    .modalDescripcion{
        font-size:14px;
    }
}

@media(max-width: 1080px) {
    .container-mi-ns{
        width: 100%;
        border-radius: 0px;
    }
    .section-mi-ns {
        width: 100%;
        flex: 1;
        padding: 32px 16px 60px;
    }
}

@media(max-width: 980px){
    .panel-tab-item p{
        font-size: 14px;
    }
}

@media(max-width: 800px) {
    
    .sub-items {
        display: none;
    }

    .bk-mi-ns{
        padding-top: 94px;
        background-position-y: 110px;
        padding-bottom: 0;
    }
    .unselected {
        border-left: none;
        border-bottom: 4px solid #e9e9e9;
    }
    .unselected:hover {
        border-left: none;
        border-bottom: 4px solid #e9e9e9;
    }
    .selected {
        border-left: none;
        border-bottom: 4px solid #0562EE;
    }
    .selected:hover {
        border-left: none;
        border-bottom: 4px solid #0562EE;
    }
    .bottom {
        display: none;
    }
    .containerModals{
        width: 90%;
    }
}

@media(max-width: 700px){
    .bk-mi-ns{
        padding-top: 110px;
        background-position-y: 110px;
    }
}

@media(max-width: 530px){
    .formContainer{
        padding: 0;
    }
    .formReclamos .section-title{
        margin: 0 !important;
    }
    .containerServicios{
        padding: 0 20px;
    }
    .section-mi-ns{
        padding: 32px 0px 60px;
    }
    .section-title {
        font-size: 18px;
    }
    .titleCardServicio {
        font-size: 16px;
    }
    .subtitleCardServicio {
        font-size: 16px;
    }
    .month{
        font-size: 16px;
    }
    .amount{
        font-size: 16px;
    }
    .monthIsVencida{
        font-size:16px;
    }
    .amountIsVencida{
        font-size:16px;
    }
    .monthIsPaga{
        font-size:16px;
    }
    .amountIsPaga{
        font-size:16px;
    }
    .modalTitle{
        font-size:18px;
    }
}

@media(max-width: 465px){
    .panel-tab-item {
        padding: 16px;
    }
}

@media(max-width: 450px){
    .containerServicios {
        padding: 0 10px;
    }
    .sectionFacturas{
        padding: 26px 10px;
    }
    .sectionReclamos{
        padding: 26px 10px;
    }
    .containerModals {
        width: 96%;
    }
}

@media(max-width: 420px){
    .bk-mi-ns{
        padding-top: 66px;
        background-position-y: 66px;
    }
    .containerModals{
        padding: 32px 20px 24px;
    }
}
</pre></body></html>