.tags {
    position: relative;
    display: block;
}

.tags--list {
    position: relative;
    display: block;
    margin: 5px 5px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    /*border: 1px solid red;*/
}


.tags--tag {
    display: inline-block;
    float: left;
    background: rgba(65,65,66,0.05);
    padding: 10px 10px 10px 10px;
    margin: 10px;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #fff;
    transition: all .3s ease-in-out;

}

.tags--tag .active {
    color: rgb(232, 88, 17);
}

.tags--tag:hover {
    background: #fff;
    border: 1px solid rgba(65,65,66,0.05);
}

.content_page ul.tags--list { list-style: none }
.content_page li.tags--tag { list-style: none }
.content_page ul.list-unstyled li {
    padding-left: 10px;

}