:root {
  --background: #f9fafc;
  --header: rgb(32, 31, 31);
  --content: #fff;
  --hover: #fcb900;
  --text: #363c3f;
  --radius: 3px;
  --hover-btn: #f6ce60;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Quicksand", sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  color: var(--text);
}

a {
  text-decoration: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

.wp-block-table {
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: var(--hover);
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
}

.wp-block-table table td {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid var(--header);
}

.wp-block-table table td {
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  padding: 15px 0;
}
@media (min-width: 991px) {
  h1, h2, h3, h4 {
    padding: 20px 0;
  }
}

h1 {
  font-size: 26px;
}
@media (min-width: 991px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 22px;
}
@media (min-width: 991px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 20px;
}
@media (min-width: 991px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 18px;
}
@media (min-width: 991px) {
  h4 {
    font-size: 24px;
  }
}

p {
  line-height: 30px;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text);
}
@media (min-width: 991px) {
  p {
    font-size: 20px;
  }
}

a {
  font-size: 16px;
  color: var(--text);
}
@media (min-width: 991px) {
  a {
    font-size: 20px;
  }
}
a:hover {
  transition: 0.3s ease-out;
  text-decoration: none;
  color: var(--hover);
}

ul li {
  color: var(--text);
}

ol li {
  color: var(--text);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  background: var(--header);
  z-index: 5;
}
@media (min-width: 640px) {
  .header {
    padding: 8px 0;
  }
}
.header .overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.header .overlay.active {
  display: block;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__top .logo-text {
  color: #fff;
  font-weight: 700;
}
.header__top .logo img {
  width: 120px;
}
@media (min-width: 640px) {
  .header__top .logo img {
    width: 140px;
  }
}
.header .main_menu {
  display: none;
  position: relative;
}
@media (min-width: 991px) {
  .header .main_menu {
    display: flex;
  }
}
.header .main_menu .menu {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}
.header .main_menu .menu li {
  margin-left: 20px;
}
.header .main_menu .menu li:last-child {
  margin-left: 0;
}
.header .main_menu .menu li a {
  font-size: 18px;
  color: var(--content);
  font-weight: 400;
  padding: 10px 0;
}
.header .main_menu .menu li a:hover {
  color: var(--hover);
}
.header .main_menu .menu .current-menu-item a {
  color: var(--hover);
}
.header .main_menu .menu .sub-menu {
  z-index: 999;
  position: absolute;
  left: 0;
  top: 25px;
  width: 200px;
  max-width: none;
  padding: 0 0 0 0;
  border: 0;
  background: var(--content);
  border-radius: var(--radius);
  opacity: 0;
  border-bottom: 2px solid var(--hover);
  transform: translate(0, 10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}
.header .main_menu .menu .sub-menu li {
  margin-left: 0;
}
.header .main_menu .menu .sub-menu li:hover {
  background: var(--background);
}
.header .main_menu .menu .sub-menu li a {
  font-size: 16px;
  line-height: 1.2;
  padding: 10px;
  color: var(--text);
  display: block;
}
.header .main_menu .menu .sub-menu li a:hover {
  color: var(--hover);
}
.header .main_menu .menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transform: translate(0, 0);
}
.header .burger {
  display: block;
}
@media (min-width: 991px) {
  .header .burger {
    display: none;
  }
}
.header .burger img {
  width: 28px;
  height: 28px;
}

.menu_mobile, amp-sidebar {
  background: var(--header);
  width: 100%;
  padding: 0 20px;
  max-width: 250px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
  transition: right 0.8s;
}

.menu_mobile {
  z-index: 11;
}
.menu_mobile .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}
.menu_mobile .close img {
  width: 28px;
  height: 28px;
}
.menu_mobile .menu {
  list-style: none;
}
.menu_mobile .menu li {
  margin-bottom: 10px;
}
.menu_mobile .menu li:last-child {
  margin-bottom: 0;
}
.menu_mobile .menu li a {
  font-size: 15px;
  color: var(--content);
  font-weight: 400;
  padding: 10px 0;
}
.menu_mobile .menu li a:hover {
  color: var(--hover);
}
.menu_mobile .menu .current-menu-item a {
  color: var(--text-hover);
}
.menu_mobile .menu .sub-menu {
  margin-top: 10px;
}
.menu_mobile .menu .sub-menu li a {
  padding: 10px 0;
}

.menu_mobile.show {
  right: 0;
  transition: right 0.8s;
}

.wrapper {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 1250px;
}

.btn {
  padding: 0 15px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: var(--radius);
  text-transform: uppercase;
  color: var(--text);
  background: var(--hover);
  font-size: 18px;
  font-weight: 700;
}
.btn:hover {
  background: var(--hover-btn);
  transition: 0.3s ease-out;
}

/* Content */
.content-block {
  padding: 20px 0;
}
@media (min-width: 640px) {
  .content-block {
    padding: 30px 0;
  }
}
.content-block .content_page ul {
  list-style: none;
  padding-right: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
}
@media (min-width: 640px) {
  .content-block .content_page ul {
    flex-direction: row;
  }
}
.content-block .content_page ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  padding-right: 25px;
  font-size: 16px;
  line-height: 30px;
}
@media (min-width: 640px) {
  .content-block .content_page ul li {
    width: 48%;
  }
}
@media (min-width: 991px) {
  .content-block .content_page ul li {
    font-size: 20px;
  }
}
.content-block .content_page ul li::after {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/arabicsports/img/target-icon.svg) no-repeat;
  background-size: cover;
  content: "";
  right: -5px;
  top: 6px;
}
.content-block .content_page ol {
  padding-bottom: 20px;
  padding-right: 30px;
  counter-reset: myCounter;
  font-size: 16px;
}
.content-block .content_page ol li {
  padding-right: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  line-height: 30px;
}
@media (min-width: 991px) {
  .content-block .content_page ol li {
    font-size: 20px;
  }
}
.content-block .content_page ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--hover);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-block .content_page ol li::marker {
  font-size: 17px;
  color: var(--text);
}
.content-block .content_page a {
  font-size: 16px;
  color: var(--hover);
  cursor: pointer;
}
.content-block .content_page .section-block {
  padding: 10px 15px;
  background-color: var(--content);
  border-bottom: 4px solid var(--hover);
  margin-bottom: 20px;
}

/* FAQ */
.faq__item {
  background-color: var(--background);
  box-shadow: var(--shadow-content);
}
.faq__item h3 {
  color: var(--text);
}
.faq__item h3:after {
  background-image: url(/wp-content/themes/arabicsports/img/faq-icon.svg);
}
.faq__item .faq__answer p:last-child {
  padding-bottom: 0;
}

.faq__item.open h3 {
  border-bottom: 1px solid var(--header);
}

.text-content {
  margin-top: 10px;
}

/* Footer */
footer {
  background: var(--header);
}
footer .footer__contacts {
  text-align: center;
  padding-top: 20px;
}
footer .footer__contacts span {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--content);
}
footer .footer__contacts a {
  display: block;
  font-size: 16px;
  color: var(--hover);
}
footer .footer__menu {
  width: 100%;
  padding: 20px 0 0 0;
}
@media (min-width: 991px) {
  footer .footer__menu {
    width: auto;
  }
}
footer .footer__menu .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer__menu .menu li {
  margin-left: 20px;
}
footer .footer__menu .menu li:last-child {
  margin-left: 0;
}
footer .footer__menu .menu li a {
  font-size: 18px;
  color: var(--content);
  font-weight: 400;
  padding: 10px 0;
}
footer .footer__menu .menu li a:hover {
  color: var(--hover);
}
footer .footer__menu .menu .current-menu-item a {
  color: var(--text-hover);
}
footer .footer__copyright {
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer__copyright span {
  font-size: 16px;
  color: var(--content);
}
footer .footer__bga {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
footer .footer__bga .eighteen {
  color: var(--content);
  border: 2px solid var(--content);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 5px;
  margin: 5px 10px;
}
footer .footer__bga .bga-img {
  width: 200px;
  margin-left: 5px;
}
footer .footer__bga .dmca-badge {
  width: 40px;
}

/* Single page */
.single {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 991px) {
  .single {
    flex-direction: row-reverse;
  }
}
.single__content {
  width: 100%;
  max-width: 100%;
}

/* Scroll */
.scroll-top {
  opacity: 0;
  background: var(--hover);
  transition: 0.3s;
  position: fixed;
  bottom: 110px;
  right: 30px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 8;
  border-radius: var(--radius);
}
.scroll-top .scroll-top-bg {
  padding: 8px;
  position: relative;
}
.scroll-top .scroll-top-bg img {
  width: 24px;
  height: 24px;
}

/* 404 Error */
.error__block {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-direction: row;
  justify-content: flex-start;
  height: 100vh;
  padding: 20px 20px 0 20px;
}
@media (min-width: 640px) {
  .error__block {
    padding: 0 128px;
  }
}
.error__block-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  max-width: 1408px;
}
.error__block-content span {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.error__block-content p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.4;
  text-align: center;
}
.error__block-content .btn {
  background: var(--hover);
  width: 250px;
  height: 50px;
}
.error__block-content .btn:hover {
  background: var(--hover-btn);
  color: var(--text);
}

/* Cookie */
.cookie {
  position: fixed;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 95%;
  z-index: 9999999;
  background: var(--background);
  padding: 20px 26px;
  display: none;
  flex-direction: column;
}
.cookie__block {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.cookie__buttons {
  display: flex;
  flex-wrap: wrap;
}
.cookie__buttons button {
  width: 124px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  background: var(--btn-content);
  box-shadow: var(--shadow-content);
  color: var(--text);
  border: none;
}
.cookie__buttons button:hover {
  box-shadow: var(--hover-btn);
  transition: 0.3s ease-out;
}
.cookie__buttons-reject {
  background: var(--btn-content);
  box-shadow: var(--shadow-content);
  margin-right: 10px;
  font-size: 16px;
  font-weight: 400;
}
.cookie__buttons-reject:hover {
  box-shadow: var(--hover-btn);
  transition: 0.3s ease-out;
}

.cookie.show {
  display: flex;
}

.btn-content {
  text-align: center;
  margin-bottom: 20px;
}
.btn-content .banner_button {
  color: var(--content);
  background-color: #32373c;
  border-radius: 9999px;
  padding: 0px 30px;
  height: 50px;
  font-size: 14px;
  width: 300px;
}
.btn-content .banner_button:hover {
  background-color: #32373c;
  color: var(--hover);
}

.wp-block-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.page-row .content_page {
  width: 100%;
  max-width: 100%;
}

.news {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 20px;
  margin: 20px 0;
}
@media (min-width: 640px) {
  .news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 991px) {
  .news {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
  }
}
.news__item {
  background: var(--content);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--hover);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.news__item:hover {
  transform: scale(1.02);
}
.news__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
}
.news__item-text span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  height: 70px;
}
.news__item-text p {
  padding-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
}

#cookie-block {
  position: fixed;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 95%;
  z-index: 9999999;
  border-radius: var(--radius);
  background: var(--header);
  padding: 20px 26px;
  display: none;
  flex-direction: column;
}
#cookie-block .cookie__block-text {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--content);
  margin-bottom: 10px;
  padding-bottom: 0;
}
#cookie-block .cookie__block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#cookie-block .cookie__block-buttons .cookie__block-accept {
  margin-left: 15px;
}
#cookie-block .cookie__block-buttons .cookie__block-reject {
  font-size: 15px;
  font-weight: 500;
  color: var(--content);
}
#cookie-block .cookie__block-buttons .cookie__block-reject:hover {
  color: var(--hover);
}

#cookie-block.show {
  display: flex;
}

.breadcrumbs {
  margin-bottom: 15px;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 16px;
}
.breadcrumbs a {
  color: var(--hover);
}

.public__date {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.public__date-icon {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/arabicsports/img/date-icon.svg);
}
.public__date-text {
  font-size: 13px !important;
  color: var(--text);
  height: auto !important;
}

/* Cards */
.cards {
  margin-bottom: 20px;
  padding: 40px 0;
  background-repeat: no-repeat;
  background-image: url(/wp-content/uploads/2024/02/background.webp);
  background-color: rgb(32, 31, 31);
}
@media (min-width: 991px) {
  .cards {
    padding: 50px 0;
    margin-bottom: 30px;
  }
}
.cards__items-item {
  margin-bottom: 15px;
  background: var(--content);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--hover);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
@media (min-width: 640px) {
  .cards__items-item {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    padding: 15px 10px;
  }
}
@media (min-width: 991px) {
  .cards__items-item {
    height: 90px;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 10px;
    padding: 0 10px;
  }
}
.cards__items-item:last-child {
  margin-bottom: 0;
}
.cards__items-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  height: 75px;
  position: relative;
}
@media (min-width: 640px) {
  .cards__items-img {
    margin-bottom: 0;
  }
}
.cards__items-img .number {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards__items-img .number span {
  font-weight: 700;
  color: var(--content);
  font-size: 14px;
}
.cards__items-img .number.first {
  background: rgba(255, 191, 0, 0.7);
}
.cards__items-img img {
  width: 150px;
}
.cards__items-rating {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  .cards__items-rating {
    margin-bottom: 0;
  }
}
.cards__items-title {
  margin-bottom: 10px;
  font-weight: 700;
}
.cards__items-bonus {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .cards__items-bonus {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0;
  }
}
@media (min-width: 991px) {
  .cards__items-bonus {
    margin-top: 0;
  }
}
.cards__items-bonus span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 991px) {
  .cards__items-bonus span {
    font-size: 18px;
  }
}
.cards__items-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  .cards__items-buttons {
    margin-bottom: 0;
  }
}
@media (min-width: 991px) {
  .cards__items-buttons {
    flex-direction: column;
  }
}
.cards__items-buttons .btn {
  margin-left: 10px;
  margin-bottom: 0;
  width: 150px;
}
@media (min-width: 991px) {
  .cards__items-buttons .btn {
    margin-left: 0;
    margin-bottom: 5px;
  }
}
@media (min-width: 991px) {
  .cards__items-buttons .btn {
    width: 200px;
  }
}

.stars {
  position: relative;
  display: inline-block;
  letter-spacing: -0.2em;
}

.star-item {
  font-size: 15px;
  color: var(--hover);
  padding: 0 3px;
}

.stars-color {
  display: block;
  right: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  white-space: nowrap;
}


.pagination {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
    gap: 10px;
}
.pagination .page-numbers {
	background: var(--content);
	border-radius: var(--radius);
	font-size: 14px !important;
	font-weight: 700;
	padding: 8px;
}/*# sourceMappingURL=style.css.map */