.barra_ventanas_abiertas
{
    position:fixed;
    bottom:0;
    left:0;
    background: #000;
    width:45px;
    height: calc(100% - 64px);
    z-index: 200;
    border-left: 1px solid #000;
    padding-top: 23px;
}

/*Contenedor*/
.bva_ventana_con
{
    display: block;
    width: 30px;
    height: 30px;
    transition: transform 0.2s, width 0.5s, left 0.5s, height 0.5s, margin 0.7s;
    margin-bottom: 20px;
    position: relative;
    left: 6px;
    overflow: hidden;
}

.bva_ventana_con:hover
{
    transform: scale(1.05);
    overflow: inherit;
}

/*Texto del nombre*/
.bva_ventana_nombre
{
    display: flex;
    position: absolute;
    width: max-content;
    align-items: center;
    font-weight: bold;
    top: 0px;
    left: 60px;
    background: #000;
    color: #fff;
    padding: 0px 10px;
    border-radius: 5px;
    height: 32px;
}

.bva_ventana_nombre:before{
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border-bottom: 15px solid transparent;
    border-top: 17px solid transparent;
    border-right: 15px solid #000000;
    font-size: 0px;
    line-height: 0px;
    top: 0px;
    left: -12px;
}

/* Animacion de carga */
.bva_ventana_con_carga > div
{
    font-size: 4px;
    top: -30px;
    left:1px;
}

/*Con icono y forma boton*/
.bva_ventana
{
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 15%;
    /*background: #DF7401;*/
    background: #706254;
    color: #000;
    cursor: pointer;
}

.bva_ventana > span
{
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 15px;
    transform: translate(-50%, -50%);
}