#contenedorModuloCondicionesGen{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 100px;
    border-radius: var(--border-radius-none) var(--border-radius-none);
    background: var(--Color-Surface-General-3);
}

.contenedorWidthLimitado{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 1280px;
}

.tituloCondiciones{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.contenedorTextoCondiciones{
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.imagenIcoDocumento{
    width: 24px;
    height: 24px;
}

#contenedorModuloCondicionesGen .enlaceDocumento{
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
    text-decoration-line: underline;
    color: #2F6852 !important;
    text-overflow: ellipsis;
    margin-top:2px
}

.contenedorDocumentosPdf{
    display: flex;
    flex-direction: row;
    gap:4px;
}

.textoCondiciones{
    width: 100%;
    column-count: 2;
    column-gap: 40px;
    color: #707070;
}

.pdfCondiciones{
    display: flex;
}

#periodo-punta {
    color: #2c2c2c !important;
}

@media (min-width: 993px) and (max-width: 1199px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 83px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 40px;
    }

    .contenedorWidthLimitado{
        width: 100%;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 40px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .contenedorTextoCondiciones{
        gap:0px;
        flex-direction: column;
    }
}

@media (min-width: 0px) and (max-width: 360px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 16px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .contenedorTextoCondiciones{
        gap:0px;
        flex-direction: column;
    }
}