.tag-list {
    margin-top: 2rem;
    font-weight: 600;
}
.tag-list input[type=checkbox] {
    margin-right: 10px;
}
.tag-list span.counter {
    color: #9e9e9e;
    font-weight: normal;
}



.cbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

/* Hide the browser's default checkbox */
.cbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cbox-container:hover input ~ .checkmark {
    background-color: #fff;
    border: 1px solid #b3b3b3;
}

/* When the checkbox is checked, add a blue background */
.cbox-container input:checked ~ .checkmark {
    background-color: #fff;
    border: 1px solid #b3b3b3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cbox-container .checkmark:after {
    right: 0;
    top: -5px;
    width: 10px;
    height: 20px;
    border: solid #f07d00;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
}


.category-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin: 0 15px;
    padding-bottom: unset!important;
}
.category-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.category-wrapper::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
}
.category-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

ul.categories {
    display: inline-flex;
    margin-bottom: 0;
}
ul.categories li {
    float: left;
    margin-right: 3rem;
}
ul.categories li a {
    color: #A3166C;
    font-size: 26px;
    font-family: 'Meta Pro Bold';
}
ul.categories li:hover a {
    color: #f07d00;
    text-decoration: none;
}
ul.categories li.active a {
    color: #f07d00;
    text-decoration: none;
    border-bottom: 5px solid #f07d00;
}
.news-top {
    top: -2px;
    position: relative;
    border-top: 3px solid #f07d00;
}

.news-wrapper .arrow {
    color: #f07d00;
}
.news-wrapper .arrow:hover {
    color: #f07d00;
    text-decoration: none;
}

.news-content p {
    margin-top: 1rem!important;
}
