 
.containerLateral {
    display: flex;
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.menuLateral {
    width: 250px;
    /*min-width: 250px;
    max-width: 250px;*/
    height: auto;
    background-color: #143759;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    border-radius: 10px 0 0 10px;
}

.menuLateral ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menuLateral ul li {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}

.menuLateral ul li:hover {
    background-color: #005181;
}

.menuLateral li i {
    margin-right: 10px;
}


.menuLateral .active {
    background-color: #005181;
}

.contentOption {
    width: calc(100% - 200px);
    padding: 20px;
    overflow: hidden;
}

.contentOptionFiscal {
    width: 100%;
    /*padding: 20px;*/
    overflow: hidden;
}

.div100 { width: 100%; position: relative; display: flex;}
.mdlsContenido { padding: 0 40px;}
.mdlBttnCerrar {   position: absolute; text-align: right; width: 70%;}
.iconMdlServicios {text-align: left; }
.iconMdlServicios img {height: 100px;}
.mdlBttnCerrar .miBoton {
    position: relative;
    right: 10px;
    top: 0;
    background-color: #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0px black;
    font-style: normal;
    cursor: pointer;
}

.rotated-divTrngl {
    width: 0;
    height: 0;
    border-left: 10px solid transparent; 
    border-right: 10px solid transparent;
    border-bottom: 20px solid var(--color-seccion6_principal);
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: -46px;
    transform: translate(-50%, -50%) rotate(-90deg);
    display: none;
}
 .active .rotated-divTrngl {
    display: block;
}
.contentItem {display: none; width: 100%;}
.activeItem {display: block;}
.space80px {min-height: 80px;}
.space40px {min-height: 40px;}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .menu {
        width: 100%;
        padding-bottom: 20px;
        align-items: center;
    }

    .contentOption {
        width: 100%;
    }
    .rotated-div {
        right: -32px; /*-45px*/
    }

}


.ponrojo { border:1px red solid; width: 20px;}
