.tabbed-content ul{
  list-style: disc;
}
.tabbed-content ol{
    list-style: auto;
}
.tabs {
    overflow: auto;
    padding: 10px 0px;
    position: relative;
    width: 100%;
}
.tabs::-webkit-scrollbar {
    height: 5px;
    background-color: #F5F5F5;
}
.tabs::-webkit-scrollbar-thumb {
    background-color: #cf1628;
}
.tabbed-content{
    margin-bottom: 30px;
}
.tabbed-top{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10px;
    margin-bottom: 30px;
}
.cfg-desc{
    margin-bottom: 10px;
}
.tabs ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row;
    width:100%;
    justify-content: space-between;
}
.tabs ul li {
    background: transparent;
    margin-right: 10px;
    display: block;
    min-width: 190px;
    list-style: none;
}
.tabs ul li a {
    outline: 0;
    cursor: pointer;
    width: 100%;
    padding: 21px 0;
    transition: .3s;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    background: #ccc;
    border: 2px solid #FFF;
    text-align: center;
    display: block;
    text-transform: uppercase;
}
.tabs ul li a:hover,
.tabs ul li a.active {
    background: #cf1628;
    color: #FFF;
    border: 2px solid #cf1628;
}
.tabbed-content .item {
    min-height: 2em;
    display: none;
    transition: .3s;
}
.tabbed-content .item.active{
    display: block;
}
.item-title{
    font-size: 22px;
    color: #cf1628;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
}
.item-content .row-item{
    padding: 15px;
    border: 2px solid #ddd;
    margin-bottom: 10px;
}
.row-item .row-content{
    display: none;
    transition: .3s;
}
.row-item.active .row-content{
    display: block;
}
.row-item .row-title{
    font-size: 20px;
    cursor: pointer;
}
.row-item .row-title:before {
    content: "\f105";
    font-family: FontAwesome;
}
.row-item.active .row-title:before {
    content: "\f107";
}
.row-item.active .row-title{
    color: #cf1628;
}
