/*
Theme Name: Best Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Лотерейная тема для WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: best-theme
*/

/* Reset и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Arial", sans-serif;

  outline: none !important;
}

body {
  font-family: "Trebuchet MS", "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: rgb(243, 245, 247);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

/* Header стили */

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.header-content h1 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1e25;
  margin: 0;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.login-btn,
.register-btn {
  padding: 6px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Trebuchet MS", "Arial", sans-serif;
  text-transform: uppercase;
}

.login-btn {
  background: #276aa5;
  color: #fff;
  border: none;
}

.login-btn:hover {
  opacity: 0.8;
}

.register-btn {
  background: #7eac2f;
  color: white;
  border: none;
}

.register-btn:hover {
  opacity: 0.8;
}

/* Стили секций */
section {
  margin-bottom: 60px;
}

h2 {
  color: #1a1e25;
  text-align: center;
  width: 100%;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 500;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  color: #1a1e25;
  text-align: left;
}

/* Навигация слайдеров */
.swiper-navigation {
  display: flex;
  gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: static;
  margin: 0;
  margin-top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #30507652;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px;
  color: #30507652;
  font-weight: bold;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-color: #000;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: #000;
}

/* Секция Наборы лотерей */
.lottery-sets {
  background: white;
  padding: 24px;
  border-radius: 20px;
}

.lottery-sets-swiper {
  overflow: hidden;
}

.lottery-sets-swiper .swiper-slide {
  width: 315px;
  flex-shrink: 0;
}

.lottery-card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 315px;
  height: 358px;
  transition: all 0.3s ease;
}

.card-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
}

.card-overlay {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.card-info {
  position: relative;
  z-index: 2;
  background: #ffffffd9;
  padding: 5px;
  border-radius: 5px;
}

.card-tickets {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.ticket-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #305076;
}

.ticket-count {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.info-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #305076;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.info-btn .content {
  display: block;
}

.card-title {
  color: #1a1e25;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}

.card-actions {
  display: flex;
  justify-content: center;
}

.pay-btn {
  background: #305076;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.pay-btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Секция Покупайте, заполняйте, побеждайте! */

.buy-fill-win h2 {
  text-align: center;
  margin-bottom: 40px;
}

.lottery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.lottery-item {
  position: relative;
}

.item-image {
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-content {
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1fr 160px;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
}

.superprize-info {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-end;
  padding: 0 15px;
}

.superprize-label {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  text-shadow: 2px 2px 0px #305076;
  color: rgb(255, 224, 64);
}

.superprize-amount {
  margin: 0;
}

.superprize-value {
  font-size: 42px;
  line-height: 49px;
  font-weight: 700;
  text-shadow: 3px 3px 0px #305076;
  color: rgb(255, 224, 64);
}

.item-footer {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.draw-info {
  flex: 1;
}

.draw-number {
  color: #000;
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 24px;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
}

.draw-date {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.buy-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.price {
  font-size: 24px;
  line-height: 24px;
  color: #1a1e25;
}

.price span {
  font-size: 24px;
  line-height: 24px;
  color: #1a1e25;
}

.lottery-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.superprize {
  font-size: 16px;
  color: #28a745;
  font-weight: bold;
  margin-bottom: 8px;
}

.draw {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.topbar {
  background-color: #205583;
  box-shadow: 0 0 0.625rem Hsla(var(--primary--40-bg), 0.5);
  display: flex;
  justify-content: center;
  padding: 10px;
}

.buy-btn {
  text-transform: uppercase;
  background: transparent;
  font-size: 24px;
  text-decoration: underline;
  border: none;
  line-height: 35px;
  font-weight: 800;
  color: rgb(26, 30, 37);
  font-family: "Trebuchet MS", "Arial", sans-serif;
}

.buy-btn:hover {
  text-decoration: none;
}

.buy-text {
  display: block;
}

/* Секция Истории наших победителей */
.winners-stories {
  background: white;
  padding: 24px;
  border-radius: 20px;
}

.winners-swiper {
  overflow: hidden;
  margin-bottom: 20px;
}

.winner-card {
  height: 100%;
  background: rgb(243, 245, 247);
  border-radius: 16px;
  padding: 16px;
}

.winner-image img {
  border-radius: 8px;
  margin-bottom: 15px;
  aspect-ratio: 1.8;
  width: 100%;
}

.winner-card h3 {
  color: rgb(26, 30, 37);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  margin-bottom: 5px;
}

.location {
  color: rgba(94, 106, 120, 0.8);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 5px;
  font-weight: normal;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
}

.amount {
  font-size: 24px;
  line-height: 1.25;
  color: #1a1e25;
  margin-bottom: 5px;
  font-weight: 600;
}

.story {
  font-size: 20px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 45px;
  padding-left: 30%;
}

.winner-btn {
  background: none;
  color: #1a1e25;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.winner-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .lottery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-header {
    gap: 20px;
  }

  .swiper-navigation {
    align-self: flex-end;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header-content h1 {
    font-size: 24px;
  }

  .buy-fill-win h2 {
    margin-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0;
  }

  .story {
    padding-left: 0;
  }

  section {
    margin-bottom: 40px;
  }

  .section-header {
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .buy-fill-win {
    padding: 0;
  }

  .lottery-sets {
    padding: 0;
    background: none;
    border-radius: 0;
  }

  .lottery-grid,
  .winners-stories {
    margin-left: 15px;
    margin-right: 15px;
  }
  .lottery-sets-swiper {
    padding: 0 15px;
  }

  header {
    padding: 15px 0;
  }

  .header-content {
    padding: 0 15px;
    margin-bottom: 10px;
  }

  .login-btn,
  .register-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
  }

  .winner-image img {
    height: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .lottery-card h3,
  .lottery-item h3,
  .winner-card h3 {
    font-size: 16px;
  }

  .superprize {
    font-size: 14px;
  }

  .amount {
    font-size: 16px;
  }

  .draw-number {
    font-size: 14px;
    line-height: 18px;
  }

  .price {
    font-size: 14px;
    line-height: 18px;
  }

  .buy-btn {
    font-size: 14px;
    line-height: 18px;
  }

  .price span {
    font-size: 14px;
    line-height: 18px;
  }

  .superprize-value {
    font-size: 14px;
    line-height: 18px;
  }

  .buy-section {
    gap: 0;
  }

  .item-content {
    grid-template-columns: 1fr auto;
  }
}

/* Popup стили */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: scaleIn 0.3s ease;
}

.popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.popup-close:hover {
  transform: rotate(90deg);
}

.popup-link {
  display: block;
  cursor: pointer;
}

.popup-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive для popup */
@media (max-width: 767px) {
  .popup-content {
    max-width: 95%;
  }

  .popup-close {
    top: -35px;
    font-size: 35px;
    width: 35px;
    height: 35px;
  }
}

.block-18 {
  width: 50px;
  height: 50px;
  background-image: url(/images/18.png);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 10px;
}
.block-18.block-left {
  left: 15px;
  /*   margin-left: -750px; */
}
.block-18.block-right {
  right: 15px;
  /*   margin-right: -750px; */
}
.translate__bar #flags {
  width: 70px;
}
.translate__bar #flags a {
  margin-left: 10px;
}
.table__events {
  width: 100%;
  background-color: #fff;
}
.table__events tr {
  /* display: grid;
  grid-template-columns: 120px 1fr 70px 1fr 40px; */
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.game__status {
  width: 120px;
}
.game__players {
  width: 250px;
}
.game__pr1,
.game__pr2 {
  width: calc(50% - 200px);
}
.table__events tr td {
  padding: 1px 15px;
  font-size: 14px;
}
.table__events #favorite {
  width: 50px;
}
.table__events tr td:nth-child(1) {
  text-align: center;
}
.table__events tr td.game__pr1 {
  text-align: right;
}
.table__events tr td:nth-child(2) {
  text-align: center;
}
.bookmakers-table tr {
  height: 75px;
  border-bottom: 1px solid #0000001f;
}
.fill-star {
  color: #faa402;
}
.bookmakers-table tr th,
.bookmakers-table tr td {
  padding: 0;
}
.bookmakers-title-wrap a {
  display: grid;
  grid-template-columns: 1fr;
}
.bookmakers-title-wrap a[href="https://winline.ru/"]
{
  display: block !important;
}
.bookmakers-title-wrap img {
  max-width: 120px;
  max-height: 100px;
}
.inner .uk-table td {
  vertical-align: middle;
}
.comments__link {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
.comments__link a {
  padding-left: 5px;
  padding-right: 5px;
}
.comments__link:hover {
  text-decoration: none;
  /* color:#333; */
}
article.uk-article {
  border-bottom: 1px solid #f5f3f3;
  padding-bottom: 15px;
  margin-top: 20px;
}
.single .entry-content,
.site-content,
.page .entry-content {
  background: #fff;
  padding: 15px 30px;
  border-radius: 5px;
}
.center__wrap .uk-article + .uk-article {
  margin-top: 20px;
}
.table__events tr td:nth-child(4) {
  text-align: left;
}

.card__events .card-header {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  padding: 5px 15px;
  border-bottom: 1px solid #eaeaeacc;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}
.inside-article .date_post small {
  font-weight: 400;
  color: #777;
}
.inside-article p.uk-text-justify {
  margin-top: 0;
}
.d-grid {
  display: grid;
}
.b-center {
  background: #fff;
  min-width: 500px;
}
.d-grid.uk-padding-small {
  /* grid-template-columns: 1fr 1132px 1fr; */
  padding: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  position: relative;
  overflow: auto;
}
.background-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.footer-title h4,
h3.widget-title {
  color: #fff;
  font-size: 18px;
  line-height: 16px;
  pointer-events: none;
  font-weight: 500;
}
.copyright {
  text-align: center;
}
.privacy-policy a {
  text-decoration: underline;
  color: #fff;
  opacity: 0.7;
  font-weight: 300;
}
.privacy-policy a:hover {
  text-decoration: none;
  opacity: 1;
}
.ws-footer__column aside,
.privacy-policy,
.copyright-link {
  font-weight: 400;
  font-size: 0.875rem;
  color: #bbb;
}
.copyright-link:hover {
  color: #bbb;
}
.nav__footer .uk-navbar-nav {
  display: grid;
  margin: 0;
  padding: 0;
}
.ws-footer hr {
  border-color: #3d3d3d;
}
.d-grid.foot-column {
  grid-template-columns: 1fr 2fr 2fr 3fr;
}
.nav__footer .uk-navbar-nav li a {
  -ms-align-items: left;
  align-items: left;
  justify-content: flex-start;
  line-height: 1.5;
  min-height: inherit;
  text-transform: none;
  color: #bbb;
  padding-left: 0;
}
.ws-footer__inform p {
  line-height: 1.25;
  min-height: inherit;
  text-transform: none;
  color: #bbb;
  font-size: 13px;
  text-align: center;
}
.nav__footer .uk-navbar-nav li a:hover {
  color: #fff;
}
body.custom-background {
  background-position: 50% 50px !important;
  background-attachment: fixed !important;
}
body.custom-background.customize-support {
  background-position: 50% 80px !important;
}
.sidebar__fixed {
}
div.uk-padding-small {
  padding-bottom: 0;
}
body.page,
body.single,
body.archive,
body.blog {
  background-color: #efefef;
  /* background-color: #dec4ef; */
}
.entry-header h1 {
  font-size: 2em;
}
body #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label {
  color: #ffb100;
}
.table__events__1 {
  width: 100%;
}
.table__events__1 tbody tr {
  display: grid;
  grid-template-columns: 120px 1fr 60px 60px 60px 60px 60px;
  align-items: center;
}

.table__events__1 tr td {
  padding: 1px 5px;
  font-size: 14px;
}
.table__events__1 tr td > div {
  position: relative;
}
.table__events__1 tr td:nth-child(2) {
  text-align: left;
}
.table__events__1 tr td {
  text-align: center;
}

span#sport__title {
  font-weight: 500;
  color: #333;
}
.not-found {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 22px;
}
/* .uk-navbar-dropdown .nav-all{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
} */

.left__sidebar::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}
.left__sidebar::-webkit-scrollbar-button {
  background-color: #fff0;
  height: 5px;
}
.left__sidebar::-webkit-scrollbar-track {
  background-color: #999;
}
.left__sidebar::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}
.left__sidebar::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #0e307bb3;
  border-radius: 3px;
}
.left__sidebar::-webkit-scrollbar-corner {
  background-color: #999;
}
.left__sidebar::-webkit-resizer {
  background-color: #666;
}
.right__sidebar::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}
.right__sidebar::-webkit-scrollbar-button {
  background-color: #fff0;
  height: 5px;
}
.right__sidebar::-webkit-scrollbar-track {
  background-color: #999;
}
.right__sidebar::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}
.right__sidebar::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #0e307bb3;
  border-radius: 3px;
}
.right__sidebar::-webkit-scrollbar-corner {
  background-color: #999;
}
.right__sidebar::-webkit-resizer {
  background-color: #666;
}
.center__wrap .tab-content {
  background-color: #fff;
  min-height: 200px;
  overflow: auto;
}
.left__sidebar {
  width: 240px;
  height: auto;
  position: fixed;
  left: 50px;
  top: 360px;

  margin-right: 5px;
  overflow: auto;
  padding: 20px 5px;
  background-color: #fff;
  border-radius: 5px;
  /* position: sticky; */
  /* top: 100px; */
}
.right__sidebar {
  margin-right: 5px;
  width: 240px;
  height: auto;
  overflow: auto;
  padding: 20px 5px;
  background-color: #fff;
  border-radius: 5px;
  position: fixed;
  right: 50px;
  top: 360px;
  /* position: sticky; */
  /* top: 100px; */
}
.banner__line_top {
  max-width: 1132px;
  margin: 0 auto;
  margin-top: -90px;
  margin-bottom: 30px;
}
.h100 {
  height: 100%;
}
/* .center__wrap{
  margin-left: 20%;
      margin-right: 30%;
} */
#node_newsletter {
  padding: 10px 0;
  background-image: linear-gradient(90deg, #015b99, #3598dc, #015b99);
  background-color: #37589b;
  width: 100%;
}
.ws-h3 {
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 0.025em;
  line-height: 1em;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}
.ws-slide-home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #fff; */
}
.ws-slide-home img {
  width: auto;
  margin-top: 140px;
  /* margin-bottom: 10px; */
  max-height: 300px;
}
.ws-slide-home:before,
.video-home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  /* background: -webkit-linear-gradient(rgba(0,0,0,1), rgba(15, 14, 14, 0.25) 50px);
    background: -o-linear-gradient(rgba(0,0,0,1), rgba(15, 14, 14, 0.25) 50px);
    background: linear-gradient(rgba(0,0,0,1), rgba(15, 14, 14, 0.25) 50px); */
  z-index: 1;
}
.ws-slide-home:after {
  width: 100%;
  height: 250px;
  content: "";
  display: block;
  z-index: 5;
  position: absolute;
  bottom: 0;
  /* background: linear-gradient(0deg, #bbb 0%, transparent 20%); */
}
/* .slider__news{ */
.ws-slider {
  overflow: hidden;
  padding-top: 15px;
  max-width: 1132px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}
.ws-slider .owl-carousel .owl-nav button.owl-next,
.ws-slider .owl-carousel .owl-nav button.owl-prev {
  padding: 0 10px !important;
}
.slider__news_item-all_news {
  /* height: 200px; */
  padding: 0 15px;
}
.slider__news {
  margin-bottom: 15px;
}
.visually-impaired-controls-enable {
  margin-top: 20px;
}
.translate__bar {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  grid-gap: 15px;
}
/* .visually-impaired-controls{
  position: fixed;
  top: 0;
} */
.bt_widget-vi-on svg {
  width: 26px;
  fill: #fff;
}
.slider__news_item-all_news a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-weight: 400;
  background: #ffffff0f;
}
.slider__news_item-all_news a:hover {
  text-decoration: none;
  color: #fff;
  background: #ffffff07;
}
.p-15 {
  padding: 15px;
}
.owl-carousel .owl-stage-outer {
  position: relative;
}
#flags li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
#option-sports {
  display: none;
  height: 50px;
  background: #36424e;
  color: #fff;
  margin-top: 30px;
  padding: 0 15px;
  border: none;
  margin: 5px 15px;
  outline: none;
}
.mobile {
  display: none;
}
.owl-nav {
  position: absolute;
  width: 100%;
  height: 0px;
  top: 50%;
  margin-top: -100px;
  z-index: 999;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.owl-nav span {
  font-size: 120px;
  color: #ec3237;
  opacity: 0.7;
}
.owl-nav span:hover {
  opacity: 1;
}
.owl-nav .owl-prev {
  margin-left: -60px;
}
.owl-nav .owl-next {
  margin-right: -60px;
}
.owl-nav .disabled span {
  opacity: 0;
  cursor: auto;
}
.owl-nav button {
  outline: none !important;
}
.slider__news_inner {
}
.slider__news_item {
  overflow: hidden;
  border: 3px solid #33c0ef;
  height: 190px;
}
.slider__news_item.img-none {
  background-color: #efefef;
}
.placeholder {
  /* width: 220px; */
}
.slider__news_item h3 {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}
.bs-top-navbar {
  background: #2a2e37;
}

.bs-top-navbar li a {
  color: #fff;
}

.bs-title-wiget,
.bs-widget h3.widget-title {
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  border-bottom: 3px solid #2a2e36;
  padding-bottom: 12px;
  color: #2a2e36;
}

.bs-navbar {
  margin-top: -32px;
  z-index: 1;
  position: relative;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #333;
  padding: 15px;
  margin-bottom: 30px;
}

#navbar-fixed-top {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

#navbar-fixed-top.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

#mask-bar {
  display: none;
  height: 61px;
  width: 100%;
  background-color: #000;
}

#mask-bar.fixed {
  display: block;
}

.top_bar {
  height: 30px;
  background-color: #000;
}

.bs-widget {
  margin-bottom: 50px;
}

.bs-widget p {
  font-size: 14px;
  color: #555;
  line-height: 1.25;
}

.bs-title-wiget,
.bs-widget h3.widget-title {
  text-transform: uppercase;
}

.bs-navbar .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #333;
}

.banner {
  margin-bottom: 30px;
}

.banner img {
  width: 100%;
}

.bs-footer {
  padding: 30px 0;
  background-color: #2a2e37;
}

.bs-footer a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
}

.bs-footer ul li a {
  line-height: 1.75;
}

.bs-footer a:hover {
  text-decoration: none;
}

.bs-footer p,
.bs-footer span {
  font-size: 14px;
  line-height: 1.25;
}

.bs-footer h3 {
  margin-bottom: 15px;
}

.bs-hr {
  background: #0000002b;
  height: 1px;
  border-bottom: 1px solid #569be975;
}

.bs-social img {
  width: 24px;
  margin-bottom: 10px;
}

.bs-edit-bar img {
  height: 42px;
  color: #fff;
  filter: invert(1);
  padding: 5px;
}

.bs-widget .inner {
  padding: 15px;
  margin-top: 15px;
  background: #f7f7f7;
  border-radius: 5px;
}

.tab-pane {
  border-left: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 15px;
}

.transitions-25 {
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.28s ease-in-out;
}

.rotate-90:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.bs-tabs-info .nav-tabs {
  display: grid;
  grid-template-columns: 10% 13% 20% 14% 13% 15% 15%;
}

.nav-tabs .nav-link {
  text-align: center;
  color: #000;
}

.bs-date-set {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #000;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  background: #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.bs-tabs-info .nav-tabs {
  border-bottom: 3px solid #e8e8e8;
}

.bs-change-date {
  display: flex;
  background: #e8e8e8;
  align-items: center;
}

.bs-change-date .date-prev,
.bs-change-date .date-next {
  padding: 4px 0px;
  background: #ccc;
  color: #000;
  font-size: 24px;
}

.bs-change-date .date-prev:hover,
.bs-change-date .date-next:hover {
  background-color: #ddd;
  cursor: pointer;
}

.data_curr {
  padding: 0 5px;
  font-weight: 500;
  font-size: 18px;
}

/* NAVIGATION */
nav.fill {
  background: #000;
  background: #1f262d !important;
  margin-bottom: 0;
  border-bottom: 2px solid #2065a5;
}
nav.fill ul {
  list-style: none;
  text-align: center;
}
nav.fill ul li {
  width: 100%;
}
nav.fill ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #aaa;
  font-weight: 800;
  text-transform: uppercase;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all 0.5s;
}
nav > ul > li > a:hover {
  color: #555;
  text-decoration: none;
}
nav.fill .uk-open {
  color: #fff !important;
}

nav.fill .uk-navbar-dropdown {
  background-color: #344653;
  padding: 0;
  width: auto;
  right: 0;
  left: auto !important;
}
nav.fill .uk-navbar-dropdown a {
  padding: 5px 15px;
  font-weight: 300;
  text-transform: inherit;
}

/* stroke */
.ws-navigation nav ul li a,
nav.fill ul li a {
  position: relative;
}
.ws-navigation nav li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: #aaa;
  height: 1px;
}

nav.fill ul li a,
.ws-navigation nav a {
  transition: all 0.5s;
}

nav.fill ul li a:after,
.ws-navigation nav ul li a:after {
  text-align: left;
  content: ".";
  margin: 0;
  opacity: 0;
}
nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}
nav.fill > ul > li > a:not(.active):hover:after {
  z-index: -10;
  animation: fill 0.75s forwards;
  -webkit-animation: fill 0.75s forwards;
  -moz-animation: fill 0.75s forwards;
  opacity: 1;
}
.ws-nav-sports__inner li a.active {
  background: #2065a5;
  color: #fff;
}
.ws-navigation nav ul li a:not(.active):hover:after {
  z-index: -10;
  animation: stroke 0.75s forwards;
  -webkit-animation: stroke 0.75s forwards;
  -moz-animation: stroke 0.75s forwards;
  opacity: 1;
}
.hr-section {
  height: 52px;
}
.ws-navigation nav ul li.current-menu-item a:after {
  height: 3px;
  background: #2065a5;
  opacity: 1;
  width: calc(100% - 6px);
  margin-left: 3px;
  margin-right: 3px;
}
.sup {
  vertical-align: baseline;
  position: absolute;
  font-size: 80%;
  line-height: 0;
  top: 0.5em;
}
.tab__ul {
  border-bottom: 3px solid #2065a5;
  background: #f5f5f5;
}
.tab__ul .nav-tabs .nav-link {
  border: 2px solid #efefef;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  background: #e8e8e8;
  border-bottom: none;
}
.tab__ul .nav-tabs .nav-link:hover {
  background: #d3d3d3;
}
#myTab .nav-item.show .nav-link,
#myTab .nav-link.active {
  color: #ffffff;
  background-color: #2065a5;
  border-color: #dee2e6 #dee2e6 #2065a5;
}
#datepicker {
  height: 42px;
  outline: none;
  border: none;
}
.owl-carousel .owl-item img {
  display: block;
}
.slider__news_item-link {
  border-radius: 3px;
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
}
.slider__news_item-link .title {
  position: absolute;
  z-index: 99;
  bottom: auto;
  bottom: 0;
  color: #fff;
  text-transform: none;
  font-family:
    Open Sans,
    sans-serif;
  font-weight: lighter;
  font-size: 14px;
  background: #1f262dd1;
  padding: 4px 5px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px #000;
  margin-bottom: 0;
  min-height: 60px;
}

.slider__news_item-link .hover {
  position: absolute;
  background: rgb(236 50 55 / 40%);
  width: 500px;
  height: 500px;
  top: 220px;
  left: 110px;
  transform: rotate(45deg);
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.slider__news_item:hover .slider__news_item-link .title {
  /* top: inherit;
  bottom: 0;
  transition: 3s; */
}

.slider__news_item-link .hover i {
  color: #fff;
  font-size: 40px;
  text-decoration: none;
  position: absolute;
  top: 100px;
  left: 10px;
  transform: rotate(-45deg);
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.slider__news_item-link:hover .image {
  transition: 0.25s;
}
.slider__news_item-link:hover .hover {
  top: -135px;
  left: -80px;
}
.slider__news_item-link:hover .hover i {
  font-size: 90px;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translateY(-50%) translateX(-50%);
}

.gamestat-2 {
  background: #ff000015;
}
.gamestat-2 td {
  font-weight: 500;
}
.table__events__1.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff;
}
.table__events__1.table-striped tbody tr:nth-of-type(even) {
  background-color: rgb(247 247 247 / 70%);
}
.thumb-post {
  max-width: 260px;
}
.banner__top {
  display: none;
}
.social__link {
}
.social__link img {
  max-width: 32px;
}
/* Keyframes */
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 3px;
  }
  50% {
    width: 100%;
    height: 3px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #2065a5;
  }
}

@-webkit-keyframes stroke {
  0% {
    width: 0%;
    height: 3px;
  }
  50% {
    width: calc(100% - 6px);
    height: 3px;
  }
  100% {
    width: calc(100% - 6px);
    height: 3px;
    background: #2065a5;
  }
}

.card__events .card-header {
  -webkit-background-color: #fff;
  background-color: #fff;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card__events .card-header .info_block {
  width: 100%;
}

@media (max-width: 1400px) {
  .slider__news_item-link .title {
    bottom: 0;
    margin-bottom: 0;
    left: 0;
    text-transform: initial;
    font-size: 13px;
    padding: 5px 10px;
    width: 100%;
    line-height: 1.25;
    letter-spacing: 0.5px;
  }
}

/*
Theme Name: WorldSports
Author: chromov52
Version: 1.0
*/

.tab-content .tab-pane,
.tab-content .card-body {
  padding: 0;
}
.preloader-tab {
  height: 40px;
  width: 100%;
  border-radius: 15px;
  background-color: #333;
}
.ws-topbar {
  background: #000;
}

.ws-navigation {
  background: none;
  z-index: 6;
  position: relative;
  position: fixed;
  width: 100%;
}
.ws-dropdown-item {
  min-height: 50px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.ws-transition {
  -webkit-transition: all 0.4s ease-in-out !important;
  -o-transition: all 0.4s ease-in-out !important;
  transition: all 0.4s ease-in-out !important;
  background: #1f262d;
}
/* .ws-navigation.uk-sticky-below .logo-site{
  min-height: 60px;
} */
.ws-widget.ws-banner {
  text-align: center;
}
.ws-widget.ws-banner img {
  width: 75%;
}
body {
  /* background-color: #f5f7f9; */
}
.uk-article-title a {
  text-decoration: none;
}
.s-panel .uk-tab > .uk-active > a {
  color: #333;
  border-color: #1e87f0;
  background: #1e87f0;
  color: #fff;
}
.s-panel .favorites {
  min-width: 20px;
}
.s-panel .uk-table-hover tbody tr:hover,
.s-panel .uk-table-hover > tr:hover {
  background: #fbfbfb;
}
.s-active svg {
  color: #c3a600;
}
.s-active svg polygon {
  fill: #ffd905;
}
.s-tv-on {
  cursor: pointer;
}
.s-panel [uk-icon="star"] {
  cursor: pointer;
}
.s-tv-off {
  color: #ccc;
}
.pagination {
  margin-bottom: 20px;
}
.pagination .nav-links a,
.pagination .nav-links span {
  padding: 5px 15px;
  background: #fff;
  border-radius: 5px;
  color: #1f262d;
  font-size: 22px;
  line-height: 1;
}
.ws-footer {
}
.ws-footer__inner {
  color: #fff;
  padding: 15px 50px;
  background-color: #262626;
}
.ws-footer__column h3 {
  color: #fff;
  font-weight: 500;
}
.ws-footer__contacts ul li a {
  color: #fff;
  display: flex;
}
.ws-footer__contacts ul li a span {
  padding-right: 5px;
}
.ws-slider-page .ws-nav-main {
  z-index: 100;
}
.ws-slider-page .ws-slide-home {
  height: 180px;
  background-position: top;
  background: #2a2e37;
  background-image: none !important;
}
.ws-page-title {
  padding-top: 15px;
}
.ws-slider-page .ws-slide-home:after {
  height: 100px;
  background: linear-gradient(0deg, #000 10%, transparent 100%);
}
.ws-slider-page .ws-nav-sports nav.uk-navbar-container {
  margin-top: 0;
  background: #000;
  padding-left: 15px;
  padding-right: 15px;
}

.ws-page-title {
  margin-bottom: 0;
}
footer .uk-navbar-container:not(.uk-navbar-transparent) {
  background: #292929;
  box-shadow: rgb(0 0 0 / 25%) 0px 2px 4px 0px;
}

.ws-navigation.uk-sticky-below,
body:not(.home) .ws-navigation {
  background: #2a2e37;
  background: #2065a5;
  background: #22252a;
  background: #1f262d;
}

.bg-gray {
  background-color: #ccc;
}

.mb-15 {
  margin-bottom: 15px;
}

.align-right {
  text-align: right;
}

.ws-navbar .uk-navbar-item,
.ws-navbar .uk-navbar-nav > li > a,
.ws-navbar .uk-navbar-nav > li > span,
.ws-navbar .uk-navbar-toggle {
  min-height: auto;
}

.ws-navigation nav.uk-navbar-container {
  background: initial;
}

.ws-navigation .uk-navbar-nav > li > a,
.ws-navigation .uk-navbar-nav > li > span {
  min-height: 32px;
  text-transform: inherit;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
}

.customize-support .ws-navbar.uk-sticky {
  top: 30px !important;
}

.h5000 {
  height: 5000px !important;
}

.logo {
  margin-bottom: 0;
  line-height: 1;
  color: #0056b3;
  text-transform: uppercase;
  font-size: 18px;
}

.ws-nav-sports {
  /* border-top: 1px solid #000000a6; */
  position: relative;
  z-index: 10;
}

.ws-nav-sports__inner {
  /* margin-top: -25px; */
}

/* .ws-nav-sports__inner nav {
  box-shadow: 0 2px 5px rgb(0 0 0 / 75%);
} */

.ws-nav-sports .uk-navbar-nav {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .ws-nav-sports .uk-navbar-nav {
    flex-direction: column;
  }
}
.ws-nav-sports nav.uk-navbar-container {
  /* background-color: transparent;
  margin-top: -52px; */
}

.ws-nav-sports .uk-navbar-nav > li > a,
.ws-nav-sports .uk-navbar-nav > li > span {
  min-height: 50px;
  font-weight: 400;
  color: #fff;
}

.ws-nav-sports [class*="uk-navbar-dropdown-bottom"] {
  margin-top: 2px;
  z-index: 0;
  background: #2a2e37;
}

.uk-navbar-nav > li > a {
  color: #555;
}

.uk-navbar-nav > li.uk-active > a,
.uk-navbar-nav > li > a,
.uk-navbar-nav > li > span,
.uk-navbar-nav > li > a:hover {
  color: #fff;
  font-weight: 400;
}

.ws-nav-sports .uk-navbar-dropdown-nav a,
.ws-nav-sports .uk-navbar-dropdown-nav a:hover,
.uk-navbar-dropdown-nav > li.uk-active > a {
  color: #fff;
}

.ws-nav-sports .uk-navbar-dropdown-nav a:hover,
.uk-navbar-dropdown-nav > li.uk-active > a {
  text-decoration: underline;
}

.ws-nav-sports__inner li.uk-active a img {
  opacity: 1;
}

.ws-nav-sports__inner li a:hover img {
  opacity: 1;
}

.ws-nav-sports__inner img {
  width: 32px;
  margin-right: 15px;
  opacity: 0.85;
  display: none;
  /* -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; */
}

.logo-site {
  color: #fff;
}

.switch-btn {
  display: inline-block;
  width: 42px;
  /* ÑˆÐ¸Ñ€Ð¸Ð½Ð° */
  height: 22px;
  /* Ð²Ñ‹ÑÐ¾Ñ‚Ð° */
  border-radius: 19px;
  /* Ñ€Ð°Ð´Ð¸ÑƒÑ ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ñ */
  background: #bfbfbf;
  /* Ñ†Ð²ÐµÑ‚ Ñ„Ð¾Ð½Ð° */
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  position: relative;
  transition-duration: 300ms;
  /* Ð°Ð½Ð¸Ð¼Ð°Ñ†Ð¸Ñ */
}

.switch-btn::after {
  content: "";
  height: 16px;
  /* Ð²Ñ‹ÑÐ¾Ñ‚Ð° ÐºÐ½Ð¾Ð¿ÐºÐ¸ */
  width: 16px;
  /* ÑˆÐ¸Ñ€Ð¸Ð½Ð° ÐºÐ½Ð¾Ð¿ÐºÐ¸ */
  border-radius: 17px;
  background: #fff;
  /* Ñ†Ð²ÐµÑ‚ ÐºÐ½Ð¾Ð¿ÐºÐ¸ */
  top: 3px;
  /* Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ðµ ÐºÐ½Ð¾Ð¿ÐºÐ¸ Ð¿Ð¾ Ð²ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»Ð¸ Ð¾Ñ‚Ð½Ð¾ÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾ Ð¾ÑÐ½Ð¾Ð²Ñ‹ */
  left: 3px;
  /* Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ðµ ÐºÐ½Ð¾Ð¿ÐºÐ¸ Ð¿Ð¾ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»Ð¸ Ð¾Ñ‚Ð½Ð¾ÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾ Ð¾ÑÐ½Ð¾Ð²Ñ‹ */
  transition-duration: 300ms;
  /* Ð°Ð½Ð¸Ð¼Ð°Ñ†Ð¸Ñ */
  position: absolute;
  z-index: 1;
}

.switch-on {
  background: #118c4e;
}

.switch-on::after {
  left: 23px;
}
.logo-site {
  /* max-width: 160px; */
  height: inherit;
  min-height: inherit;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-site img {
  max-height: 32px;
}
.ws-slider {
  background: #1f262d;
  /* margin-top: -140px; */
}

.star-rating {
  position: relative;
}
.star-rating__bg {
  color: #e0e0e0; /* Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ð¹ Ñ†Ð²ÐµÑ‚ Ð·Ð²Ñ‘Ð·Ð´Ð¾Ñ‡ÐµÐº */
  display: flex;
}

.star-rating_active:hover .star-rating__live {
  overflow: auto;
  width: 100% !important;
  color: #e0e0e0; /* Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ð¹ Ñ†Ð²ÐµÑ‚ Ð·Ð²Ñ‘Ð·Ð´Ð¾Ñ‡ÐµÐº */
}

.star-rating__live {
  display: flex;
  color: #ffb74d; /* Ñ†Ð²ÐµÑ‚ Ð·Ð²Ñ‘Ð·Ð´Ð¾Ñ‡ÐµÐº Ð´Ð»Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ³Ð¾ Ñ€ÐµÐ¹Ñ‚Ð¸Ð½Ð³Ð° */
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.star-rating__item_active {
  color: #fb8c00; /* Ñ†Ð²ÐµÑ‚ Ð·Ð²ÐµÐ·Ð´Ð¾Ñ‡ÐµÐº Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ Ð½Ð° Ð½Ð¸Ñ… */
  cursor: pointer;
  transition: color 0.1s ease-in-out;
}

.bk-rating-stars i:before {
  color: #dddddd;
}
.star-rating__container {
  display: inline-block;
}

.star-rating__wrapper {
  position: relative;
}

.star-rating {
  display: inline-block;
  position: relative;
  user-select: none;
}

.star-rating__bg {
  color: #e0e0e0;
  display: flex;
}

.star-rating__live {
  display: flex;
  color: #ffb74d;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.star-rating_active:hover .star-rating__live {
  overflow: auto;
  width: 100% !important;
  color: #e0e0e0;
}

.star-rating__item_active {
  color: #fb8c00;
  cursor: pointer;
  transition: color 0.1s ease-in-out;
}

.star-rating__item {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.star-rating__avg {
  font-weight: bold;
}

.star-rating__votes {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  font-size: 0.875em;
}
.not-found__title {
  font-size: 3em;
  text-align: center;
  font-weight: bold;
  color: #34c0ee80;
}
.not-found__text {
  text-align: center;
  color: #222;
}
.not-found__nav .uk-navbar-nav {
  justify-content: center;
}
.not-found__nav .uk-navbar-nav li a,
.not-found__text a {
  color: #333;
  text-decoration: underline;
}
.not-found__nav .uk-navbar-nav li a:hover,
.not-found__text a:hover {
  text-decoration: none;
}
.not-found-body {
  text-align: center;
}
.not-found-body img {
  max-width: 120px;
}
.date_post {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  color: #939cb0;
}
.privacy-policy .uk-breadcrumb a {
  color: initial;
  opacity: 1;
  font-weight: 300;
}
.breadcrumb {
  margin-bottom: 10px;
}
.breadcrumb > * > * {
  font-size: 0.875rem;
}
.ws-navigation .archive-sports .uk-navbar-nav > li > a {
  font-size: 16px;
  /* /font-weight: 400; */
  padding-left: 10px;
  padding-right: 10px;
}

.uk-navbar-nav {
  display: flex;
  margin-bottom: 0;
}
.uk-navbar-dropdown {
  display: none;
  position: absolute;
}

.uk-navbar-dropdown {
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.moreBtn.disabled {
  opacity: 0.7;
}

.moreBtn {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
