/* ARCHIVE */
.content {
  position: relative;
}
.sw-hide {
  display: none;
}

/* Filter Category */
.category-filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 20px;
  /*    flex-wrap: wrap;*/
}
.cf-item {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #b8b8b6;
  background-color: transparent;
  border: 1px solid #e8e8e1;
  box-sizing: border-box;
  border-radius: 5px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  margin-right: 10px;
}
.cf-item.sport-icon {
  width: 40px;
  padding: 0;
}
.cf-item:hover,
.cf-item.active {
  color: #303030;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0px 4px 17px rgba(201, 201, 201, 0.3);
}
.cf-item::before {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  font-size: 20px;
  font-weight: normal;
}
.cf-item:hover:before,
.cf-item.active::before {
  color: #fdd71c;
}
.sort-term {
  position: relative;
  margin-left: auto;
  flex: none;
}
.st-select {
  width: 100%;
  padding: 11px 15px;
  background-color: #ffffff;
  border: 1px solid #e8e8e1;
  box-sizing: border-box;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #303030;
  cursor: pointer;
}
.st-select span {
  color: #7f7f7f;
  font-weight: normal;
}
.st-select::after {
  font-family: "Sportbet";
  content: "\e900";
  font-size: 12px;
  color: #d2d2ca;
  margin-left: 20px;
  font-weight: normal;
}
.st-select.opened::after {
  content: "\e903";
}
.st-hide {
  width: 100%;
  left: 0;
  z-index: 1;
  position: absolute;
  top: 35px;
  display: none;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.st-hide ul {
  padding: 0;
  margin: 0;
  border: 1px #e8e8e1 solid;
  background-color: #fff;
  border-radius: 0px 0px 5px 5px;
  border-top: 0;
}
.st-hide ul > li {
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  color: #303030;
  list-style: none;
  padding: 7px 15px;
  cursor: pointer;
  border-top: 1px #f7f7f7 solid;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.st-hide ul > li:hover {
  background-color: #fdd71c;
}
.st-hide ul > li span {
  color: #7f7f7f;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .category-filter {
    flex-wrap: wrap;
  }
  .sort-term {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media screen and (max-width: 650px) {
  .category-filter {
    padding: 0 15px;
  }
}
@media screen and (max-width: 550px) {
  .cf-item {
    flex: 1 0 auto;
    margin-bottom: 10px;
  }
  .sort-term {
    margin-top: 0;
  }
}

/* Posts Area */
.content-block {
  background-color: transparent;
  border-radius: 5px;
  margin-bottom: 20px;
}
.content-block.white {
  padding: 24px 0;
  background-color: #fff;
}
.white .cb-title {
  padding: 0 24px;
}
.cb-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.white .cb-posts {
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .sw-hide {
    display: block;
  }
  .content-block {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 650px) {
  .content-block {
    border-radius: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 425px) {
  .content-block {
    overflow: hidden;
  }
  .side-widget.search-widget.sw-hide {
    height: 40px;
  }
}

/* Pagination */
.load-more.hide {
  display: none;
}
.load-more.show {
  display: block;
}

@media screen and (max-width: 950px) {
  .top-widgets {
    height: auto;
  }
}

@media screen and (max-width: 500px) {
  .top-widgets {
    height: 887px;
  }
}

/* Searching */
.search-title {
  color: #7f7f7f;
}
.search-title span {
  color: #303030;
}
.search-value {
  color: #ffc700;
  background-color: #fffae0;
}
.cancel-search {
  color: #b8b8b6;
  background-color: transparent;
  border: 1px solid #e8e8e1;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 7px 15px;
  line-height: 17px;
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
}
.cancel-search::before {
  font-family: "Sportbet";
  content: "\e904";
  margin-right: 5px;
  color: #ffafaf;
  font-weight: normal;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.cancel-search:hover {
  color: #303030;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0px 4px 17px rgba(201, 201, 201, 0.3);
}
.cancel-search:hover:before {
  color: #f75a5a;
}
