.historyChange__item__value/*color bg t�tulo*/
.bg-title{
    background-color: #333;
}
/*color texto t�tulo e icono*/
.title-text{
    font-size: 0.95rem; /*15px*/
    color: #fff;
}
/*** estilos historial cambios ***/
/*t�tulo*/
.history-wrapper{
    font-size: 1rem;
    margin-top: 2.6em;
}
.history-wrapper__title{
    padding: 0.8em 0;
    background-color: #ededed;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
}
.history-wrapper__title__ico{
    width: 55px;
    margin: 0 auto;
}
.history-wrapper__title__ico::before{
    content: '';
    width: 60px;
    height: 50px;
    position: absolute;
    top: -28px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 50% 50% 0 0;
    background-color: #ededed;
}
.history-wrapper__title__ico .fa{
    margin-top: -1.2em;
    font-size: 1.2em;
    color: #64286c;
}
.history-wrapper__title__text{
    margin-top: 0.5em;
    margin-bottom: 0;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}
/*listado*/
.history-list{
    font-size: 1rem;
}
.historyItem{
    padding: 0.75em 0;
    font-size: 0.9em;
    color: #000;
    border-bottom: 1px solid #ededed;
}
.historyItem > .row{
    cursor: pointer;
}
.historyItem__changes{
    color: #a7a7a7;
}
.historyItem__bold{
    font-weight: 800;
}
/*sublistado (despliega)*/
.historyChange{
    width: 100%;
    margin-top: 1em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 1rem;
    background-color: transparent !important; /*hay que pisar el !important de la clase .bg-secondary*/
}
.historyItem-selected,
.historyItem-selected .historyItem__changes{
    color: #5f2167;
}
.historyItem-selected .historyItem__changes .fa{
    transform: rotate(90deg);
}
.historyChange__col{
    width: calc(50% - 1.8rem);
    margin: 0 0.9rem;
}
.historyChange__col.previous{
    background-color: #faeceb;
}
.historyChange__col.modified{
    background-color: #e4f1e6;
}
.historyChange__col__title,
.historyChange__col__content__block{
    border-bottom: 1px dotted #212529;
}
.historyChange__col__content__block:last-child{
    border-bottom: 0;
}
.historyChange__col__title,
.historyChange__item{
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-size: 0.9em;
}
.historyChange__item.arrow-right{

}
.historyChange__col__title{
    margin: 0;
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
}
.historyChange__col.previous .historyChange__col__title{
    color: #d63535;
}
.historyChange__col.modified .historyChange__col__title{
    color: #51a85f;
}
.historyChange__col__content{
    width: 100%;
    margin: 0;
    padding: 0;
}
.historyChange__col__content__block{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    padding: 0 0.8em;
}
.historyChange__item{
    font-size: 0.8em;
    color: #000;
}
.historyChange__item.name,
.historyChange__item__value{
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    font-weight: 600;
}
.historyChange__item__value{
    margin-left: 0.5em;
    line-height: 100%;
}
.historyChange__item__1n_old,
.historyChange__item__1n_new{
    padding-top: 1em;
    padding-bottom: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 0.7em;
    font-size: 0.9em;
    color: #000;
}

.historyChange__item__1n_old span{
    background-color: #f9a8a2;
    padding: 5px;
    border-radius: .25rem;
    color: #000;
}

.historyChange__item__1n_new span{
    background-color: #6bb978;
    padding: 5px;
    border-radius: .25rem;
    color: #000;
}
/*media querie*/
@media screen and (max-width: 575px){
    .history-wrapper,
    .history-list,
    .historyChange{
        font-size: 0.85rem;
    }
    .historyChange{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .historyChange__col{
        width: 100%;
        margin: 0.4em auto;
    }
}