/* WIDGETS */

/* Search widget */
.side-widget.search-widget {
  padding: 22px;
  background-color: #fdd71c;
  border-radius: 5px 5px 0px 0px;
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
}
#search-widget {
  position: relative;
}
#search-widget input[type="submit"] {
  display: none;
}
#search-widget .search-submit {
  position: absolute;
  height: 16px;
  width: 16px;
  text-align: center;
  line-height: 16px;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  cursor: pointer;
}
#search-widget .search-submit::before {
  font-family: "Sportbet";
  content: "\e90a";
}
@media screen and (max-width: 768px) {
  /*
    .top-widgets {
        flex-wrap: wrap;
    }
*/
  .side-widget.search-widget {
    width: auto;
    height: auto;
    border-radius: 0;
    margin-bottom: 15px;
  }
  .top-widgets .side-widget:last-child {
    position: relative;
    overflow: scroll;
  }
  /*
    .top-widgets .side-widget:last-child::before {
        content: '';
        position: absolute;
        bottom: 0;
        height: 30px;
        width: 100%;
    }
*/
}
@media screen and (max-width: 500px) {
  .side-widget.search-widget {
    margin-bottom: 0;
  }
}
/* Recent News */
.recent-news {
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}
.recent-news::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e8e8e1;
  bottom: 0;
  left: 0;
  position: absolute;
}
.rn-nav {
  border-bottom: 1px solid #e8e8e1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0 22px;
}
.rn-nav a {
  font-weight: 600;
  padding-bottom: 13px;
  font-size: 12px;
  line-height: 15px;
  color: #d6d6d0;
  position: relative;
  margin: 0 3%;
}
.rn-nav a:first-child {
  margin-left: 0;
}
.rn-nav a:last-child {
  margin-right: 0;
}
.rn-nav a:hover,
.rn-nav a.active {
  color: #303030;
}
.rn-nav a:hover:before,
.rn-nav a.active::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #ffc700;
  bottom: -1px;
}
.rn-posts {
  padding: 20px 22px;
}
.rn-post {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  flex-direction: row;
}
.rn-post:last-child {
  margin-bottom: 0;
}
.rn-image {
  margin-right: 13px;
}
.rn-image img {
  border-radius: 5px;
}
.rn-content {
  margin: auto 0;
}
.rn-meta {
  font-weight: 600;
  font-size: 10px;
  line-height: 19px;
  text-transform: uppercase;
  color: #d6d6d0;
}
.rn-title {
  line-height: 20px;
}
.rn-title a {
  font-weight: bold;
  font-size: 13px;
  color: #303030;
}

.socials-widget {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 35px;
  padding-bottom: 24px;
  background-color: #fffdf2;
  border: 1px solid #fdd71c;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 0 22px;
}
.sw-text {
  width: 100%;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 15px;
}
.socials-widget a {
  width: 32px;
  height: 32px;
  position: relative;
  line-height: 32px;
  text-align: center;
  margin: 0 4px;
}
.socials-widget a::before {
  font-family: "Sportbet";
  color: #fff;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-weight: normal;
}
.socials-widget a.facebook::before {
  content: "\e906";
  background-color: #3b5997;
}
.socials-widget a.twitter::before {
  content: "\e90c";
  background-color: #20a1f1;
}
.socials-widget a.whatsapp::before {
  content: "\e91f";
  background-color: #77ca6a;
}
.socials-widget a.telegram::before {
  content: "\e91e";
  background-color: #28a0da;
}
.socials-widget a.viber::before {
  content: "\e920";
  background-color: #7e3daf;
}
@media screen and (max-width: 1024px) {
  .socials-widget {
    margin: 0 10px;
    padding: 20px 15px;
  }
  .rn-posts {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 850px) and (min-width: 769px) {
  .cf-item,
  .sort-term {
    margin-top: 5px;
  }
}
@media screen and (max-width: 810px) and (min-width: 769px) {
  .socials-widget {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .recent-news::before {
    opacity: 0;
  }
}

/* Popular News */
.popular-news {
  display: flex;
}
.popular-news .rn-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0;
}
.rn-post.big {
  flex-wrap: wrap;
  width: 48%;
  max-width: 158px;
  flex-direction: column;
  justify-content: flex-start;
}
.rn-post.big .rn-image {
  margin: 0;
}
.rn-post.big .rn-image img {
  width: 100%;
  height: auto;
}
.rn-post.big .rn-meta {
}
.rn-post.big .rn-content {
  margin: 0;
}
@media screen and (max-width: 650px) {
  .rn-post.big {
    width: 100%;
    max-width: 100%;
  }
  .popular-news .rn-post {
    flex-wrap: wrap;
  }
  .popular-news .rn-image {
    display: none;
  }
  .rn-post.big .rn-image {
    display: flex;
  }
  .rn-image a {
    display: flex;
    width: auto;
    margin: auto;
  }
  .rn-post.big .rn-image a img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media screen and (max-width: 550px) {
  .rn-post.big {
    width: 50%;
  }
}
