.componente_acordeon_vertical {

    display: flex;
    width: 100%;
    overflow: hidden;
    font-family: sans-serif;

}

.ul_figma {
    font-weight: bold;
    list-style: none;
    padding-left: 0;
}

.ul_figma li {
    position: relative;
    padding-left: 1.2em; /* espacio para el asterisco */
    margin-bottom: 12px;
}

.ul_figma li:last-child {
    margin-bottom: 0px;
}

.ul_figma li::before {
    content: "*";
    color: #1F5BFF;
    font-size: 32px;
    position: absolute;
    left: 0;
    font-weight: normal;
    top: -3px;
}

.panel_izquierdo_cav {

    width: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;

}

.option_cav {

    width: 100%;
    border: 1px solid #5685FF;
    border-radius: 10px;
    margin-top: 10px;
    background: #fff;
    padding: 1em;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: flex-grow 0.3s ease, background 0.3s;
    overflow: hidden;
    flex-grow: 0;
    position: relative;
    color: #5685FF;

}

.option_cav:first-child {

    margin-top: 0;

}

.option_cav:hover {
    background: #DEF1FD;
}

.option_cav.seleccionado {

    background: #B0D9FF;
    color: white;
    flex-grow: 1;
    border: 0;

}

.panel_derecho_cav {

    width: 100%;
    border-radius: 10px;
    padding: 1em;
    margin-left: 10px;
    position: relative;
    background-color: #EBF3FF;

}

.contenido_cav {

    display: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.contenido_cav.activo {

    display: block;
    opacity: 1;

}

.option_cav.seleccionado .numero {

    color: #1D5CFF;
    font-size: 100px;
    font-family: 'Switzer', Arial;
    font-weight: 200;
    margin-top: -16px;
    position: absolute;
    top: 0px;
    left: 21px;
    z-index: 2;

}

.option_cav.seleccionado .titulo_apartado {

    color: black;
    font-size: 21px;
    font-family: "Helvetica Neue", Arial;
    bottom: 18px;
    right: 24px;
    line-height: 25px;
    width: 200px;
    background-color: transparent;
    text-align: right;
    z-index: 2;
    white-space: normal;
    padding-bottom: 4px;
    margin-top: 112px;

}

.option_cav .numero {

    color: #1D5CFF;
    font-size: 18px;
    font-family: "Helvetica Light", Arial;
    display: block;
    float: left;

}

.option_cav .titulo_apartado {

    color: #1D5CFF;
    font-size: 18px;
    font-family: "Helvetica Neue", Arial;
    text-align: right;
    width: 200px;
    display: block;
    margin-left: 50px;
    white-space: normal;

}

.titulo_derecha{

    background-color: #D9E8FF;
    display: inline-block;
    font-size: 21px;
    margin-top: 30px;
    margin-left: 30px;
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;

}

.descripcion{

    font-size: 18px;
    position: absolute;
    bottom: 30px;
    z-index: 2;

}

.descripcion_derecha_con_imagen{

    width: calc(100% - 370px);
    height: calc(100% - 130px);
    display: flex;
    flex-direction: column;
    left: 80px;

}

.descripcion_derecha_sin_imagen{

    left: 100px;
    width: calc(100% - 130px);
    height: calc(100% - 130px);
    display: flex;
    flex-direction: column;

}

.div_interno_descripcion{

    padding-right: 30px;
    margin-top: auto;
    overflow-y: auto;
    max-height: 100%;

}

/* WebKit */
.div_interno_descripcion::-webkit-scrollbar {
    width: 8px;
    background: transparent; /* fondo transparente */
}

.div_interno_descripcion::-webkit-scrollbar-thumb {
    background-color: #B0D9FF; /* la barrita */
    border-radius: 4px;
}

.div_interno_descripcion::-webkit-scrollbar-track {
    background: transparent; /* el canal */
}

.imagen_derecha_cav
{

    width: 240px;
    height: calc(100% - 60px);
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    overflow: hidden;

}

.imagen_derecha_cav img
{

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;

}