@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Regular.woff") format("woff");
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Light.woff") format("woff");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-LightItalic.woff") format("woff");
  font-weight: lighter;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/CeraPro-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
/* COLORS */
/* CONTAINER WIDTH */
:root {
  --container: 100%;
}

@media screen and (min-width: 576px) {
  :root {
    --container: 540px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --container: 720px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --container: 960px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --container: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container, .container-lg,
  .container-md, .container-sm,
  .container-xl, .container-xxl {
    max-width: 1184px;
  }
  :root {
    --container: 1184px;
  }
}
html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cera Pro";
  margin: 0;
  padding: 0;
  padding-top: 120px;
  overflow-x: hidden;
}
body.home {
  padding-top: 104px;
}
body.additional-padding {
  padding-top: 180px;
}
@media screen and (max-width: 575px) {
  body {
    padding-top: 100px;
  }
  body.home {
    padding-top: 0;
  }
  body.additional-padding {
    padding-top: 140px;
  }
}

main {
  min-height: calc(100vh - 550px);
}

@media screen and (max-width: 575px) {
  .container, .container-fluid, .row {
    --bs-gutter-x: 32px;
  }
}
.hidden {
  display: none;
}

.otgs-development-site-front-end {
  display: none;
}

a {
  text-decoration: none;
}

.grey-bg {
  background: #EEEEEE;
}

.dark-bg {
  background: #212121;
}
.dark-bg div, .dark-bg span, .dark-bg a, .dark-bg p, .dark-bg h1, .dark-bg h2, .dark-bg h3 {
  color: #FFFFFF;
}

.full-width {
  width: 100vw;
  margin-left: calc((var(--container) - 100vw) / 2 - var(--bs-gutter-x) * 0.5);
  margin-right: calc((var(--container) - 100vw) / 2 - var(--bs-gutter-x) * 0.5);
  padding-left: calc((100vw - var(--container)) / 2 + var(--bs-gutter-x) * 0.5);
  padding-right: calc((100vw - var(--container)) / 2 + var(--bs-gutter-x) * 0.5);
}
@media screen and (max-width: 575px) {
  .full-width {
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #212121;
  margin-bottom: 0;
}

.text-gold {
  color: #BA8232;
}

.text-size-12 {
  font-size: 14px;
}

.text-size-14 {
  font-size: 14px;
}

.text-weight-500 {
  font-weight: 500;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

input[type=text],
input[type=email],
input[type=search],
input[type=password] {
  border: none;
  background: transparent;
}
input[type=text]:focus, input[type=text]:focus-visible,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=search]:focus,
input[type=search]:focus-visible,
input[type=password]:focus,
input[type=password]:focus-visible {
  border: none;
  outline: none;
}

.checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 110%;
  cursor: pointer;
}
.checkbox-wrapper .check {
  position: absolute;
  top: 6px;
  left: 5px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.checkbox-wrapper input[type=checkbox] {
  appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 5px;
  background: #EEEEEE;
  transition: all 0.3s;
  cursor: pointer;
}
.checkbox-wrapper input[type=checkbox]:checked {
  background: #212121;
}
.checkbox-wrapper input[type=checkbox]:checked + .check {
  opacity: 1;
}
.checkbox-wrapper span {
  margin-top: 6px;
}
.checkbox-wrapper a {
  color: #3461FD;
}

main.default h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #212121;
  margin-bottom: 16px;
}
main.default h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  color: #212121;
  margin-bottom: 12px;
}
main.default p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #212121;
}

.img-w-100 img {
  display: block;
  margin: auto;
}

button {
  border: none;
  background: transparent;
}

.btn-gold {
  background-color: #EABE78;
  color: #212121;
}

.btn-outline {
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
  color: #212121;
}

.card-post {
  display: block;
  color: #212121;
}
.card-post .image-wrapper {
  display: block;
  overflow: hidden;
}
.card-post img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 0.5s;
}
.card-post .categories {
  font-size: 12px;
  line-height: 14px;
  margin-top: 16px;
  margin-bottom: 6px;
}
.card-post .categories a, .card-post .categories span {
  font-size: 12px;
  font-weight: 900;
  line-height: 14px;
  text-transform: uppercase;
  color: #BA8232;
  margin-right: 8px;
}
.card-post .categories span {
  color: #B6B4B3;
}
.card-post .title {
  margin-bottom: 12px;
}
.card-post h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  color: #212121;
  margin-bottom: 0;
  transition: 0.5s;
}
.card-post .excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
.card-post span {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #B6B4B3;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.card-post .date {
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: lowercase;
}
.card-post .date img {
  width: 11px;
  height: 11px;
}
.card-post .hover .image {
  scale: 1.1;
}
.card-post .hover h3 {
  text-decoration: underline;
}
.card-post.main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 40px;
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
  aspect-ratio: 570/320;
  overflow: hidden;
}
.card-post.main .image-block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-post.main .image-block .image-wrapper {
  width: 100%;
  height: 100%;
}
.card-post.main .image-block img {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
}
.card-post.main .image-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}
.card-post.main .text-block {
  position: relative;
}
.card-post.main h3 {
  font-size: 24px;
  color: #FFFFFF;
  margin: 0;
}
.card-post.main .categories a {
  color: #EABE78;
}
.card-post.main .date {
  margin-top: 20px;
  color: #B6B4B3;
}
@media screen and (max-width: 991px) {
  .card-post.main {
    aspect-ratio: 340/255;
    padding: 32px 30px;
  }
  .card-post.main h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .card-post.main {
    aspect-ratio: 4/3;
    margin-bottom: 16px;
  }
  .card-post.main h3 {
    font-size: 20px;
  }
  .card-post.main .date {
    margin-top: 0;
  }
}
.card-post.main.large {
  aspect-ratio: 1160/600;
  margin-bottom: var(--bs-gutter-x);
}
.card-post.main.large .categories {
  margin-bottom: 8px;
}
.card-post.main.large .categories a {
  font-size: 14px;
}
.card-post.main.large h3 {
  font-size: 40px;
}
.card-post.main.large .excerpt {
  max-width: 60%;
  margin: 12px 0;
}
.card-post.main.large .date {
  margin-top: 32px;
}
@media screen and (min-width: 1200px) {
  .card-post.main.large .text-block {
    max-width: 75%;
  }
}
@media screen and (max-width: 991px) {
  .card-post.main.large {
    aspect-ratio: 696/504;
  }
  .card-post.main.large h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card-post.main.large {
    aspect-ratio: 6/5;
  }
}
@media screen and (max-width: 575px) {
  .card-post.main.large {
    aspect-ratio: 390/650;
    padding: 33px 29px;
    margin: 0 calc(var(--bs-gutter-x) * -0.5) 16px calc(var(--bs-gutter-x) * -0.5);
  }
  .card-post.main.large h3 {
    font-size: 28px;
    max-width: 90%;
  }
  .card-post.main.large .date {
    margin-top: 16px;
  }
}
.card-post.big {
  height: 100%;
  padding-bottom: 32px;
}
.card-post.big > .row {
  height: 100%;
  flex-direction: column;
}
.card-post.big > .row .text-block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-post.big > .row .text-block .title {
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .card-post.big > .row .text-block h3 {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.card-post.big > .row .text-block .date {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .card-post.big.mobile-horizontal > .row {
    flex-direction: row;
  }
  .card-post.big.mobile-horizontal > .row .categories {
    margin-top: 0;
  }
  .card-post.big.mobile-horizontal > .row .text-block .title {
    margin-bottom: 20px;
  }
}
.card-post.medium {
  margin-bottom: 24px;
}
.card-post.medium .text-block {
  display: flex;
  flex-direction: column;
}
.card-post.medium .categories {
  margin-top: 0;
}
.card-post.medium h3 {
  font-size: 16px;
}
.card-post.medium .date {
  margin-top: auto;
}
.card-post.small {
  margin-bottom: 16px;
}
.card-post.small .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-post.small .categories {
  margin-top: 0;
}
.card-post.small .title {
  margin-bottom: 0;
}
.card-post.small h3 {
  font-size: 17px;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .card-post .image-block {
    display: flex;
  }
  .card-post .text-block {
    display: flex;
    flex-direction: column;
  }
  .card-post img {
    aspect-ratio: 160/120;
  }
  .card-post .categories {
    margin-top: 12px;
    margin-bottom: 4px;
  }
  .card-post h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .card-post .excerpt {
    display: none;
  }
  .card-post .date {
    margin-top: auto;
  }
  .card-post h3 {
    display: block;
    background: none !important;
  }
}
@media screen and (max-width: 575px) {
  .card-post.mobile-like-big {
    margin-bottom: 0;
  }
  .card-post.mobile-like-big .categories {
    margin-top: 12px;
  }
  .card-post.mobile-like-big .title {
    margin-bottom: 20px;
  }
  .card-post.mobile-like-big h3 {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.card-gallery {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 360/285;
  padding: 26px 20px;
  color: #FFFFFF;
  margin-bottom: 19px;
  overflow: hidden;
}
.card-gallery > * {
  position: relative;
  z-index: 1;
}
.card-gallery .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card-gallery .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.16%, rgba(0, 0, 0, 0.6) 83.4%);
  pointer-events: none;
  z-index: 1;
}
.card-gallery .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.card-gallery .gallery-count {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 26px;
  left: 20px;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
}
.card-gallery .categories {
  font-size: 14px;
  font-weight: 900;
  line-height: normal;
  color: #EABE78;
  text-transform: uppercase;
}
.card-gallery .categories span {
  margin-right: 8px;
  color: #EABE78;
}
.card-gallery h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 0;
  transition: 0.5s;
}
.card-gallery .date {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #B6B4B3;
  text-transform: uppercase;
  margin-top: 20px;
}
.card-gallery.big {
  padding: 54px 40px;
}
.card-gallery.big .gallery-count {
  top: 32px;
  left: 40px;
}
.card-gallery.big h3 {
  font-size: 28px;
}
.card-gallery:hover .image-wrapper img {
  scale: 1.1;
}
.card-gallery:hover h3 {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .card-gallery {
    padding: 20px;
    aspect-ratio: 360/270;
  }
  .card-gallery .gallery-count {
    top: 20px;
  }
  .card-gallery.big {
    padding: 25px;
    aspect-ratio: 360/530;
  }
  .card-gallery.big .gallery-count {
    top: 18px;
    left: 20px;
  }
  .card-gallery.big h3 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .wp-block-columns-is-layout-flex {
    flex-wrap: wrap !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
#popular-title {
  color: #212121;
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  padding: 6px 0;
  border-bottom: 2px solid #212121;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.popular-widget-home {
  display: flex;
}
.popular-widget h2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 120%;
  color: #212121;
  text-transform: uppercase;
  padding: 6px 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #212121;
}
.popular-widget .pop-zoom {
  display: block;
  overflow: hidden;
  max-width: none;
}
.popular-widget .pop-zoom img {
  object-fit: cover;
  aspect-ratio: 16/12;
  transition: all 0.5s;
}
.popular-widget .pop-zoom.hover img, .popular-widget a.hover img {
  transform: scale(1.1);
}
.popular-widget .pop-card {
  margin-bottom: 16px;
}
@media screen and (max-width: 991px) {
  .popular-widget .pop-card .col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .popular-widget .pop-card .col-text .pop-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .popular-widget .pop-card > .row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .popular-widget .pop-card > .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  .popular-widget .pop-card > .row > * .pop-title {
    font-size: 16px;
  }
}
.popular-widget .pop-card-home > .row {
  margin-left: -10px;
  margin-right: -10px;
}
.popular-widget .pop-card-home > .row > * {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .popular-widget .pop-card-home {
    margin-bottom: 24px;
  }
}
.popular-widget .pop-tags {
  font-size: 12px;
  line-height: normal;
  margin-bottom: 6px;
}
.popular-widget .pop-tag {
  color: #BA8232;
  font-family: "Cera Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 4px;
}
.popular-widget .pop-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: #212121;
  transition: all 0.5s;
}
.popular-widget .pop-title.hover {
  text-decoration: underline;
}
@media screen and (max-width: 575px) {
  .popular-widget .pop-card.row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .popular-widget .pop-card.row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
}

.gallery-section {
  padding-top: 90px;
  padding-bottom: 72px;
}
.gallery-section .section-header {
  padding: 13px 0;
  margin-bottom: 36px;
  border-bottom: 2px solid #FFFFFF;
}
.gallery-section .section-header h2 {
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media screen and (max-width: 345px) {
  .gallery-section .section-header h2 {
    font-size: 20px;
  }
}
.gallery-section .section-header a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  text-transform: uppercase;
}
.gallery-section .section-header a img {
  filter: invert(1);
}
@media screen and (max-width: 345px) {
  .gallery-section .section-header a {
    gap: 6px;
    font-size: 14px;
  }
}
.gallery-section .scrollable {
  overflow: scroll;
  flex-wrap: nowrap;
  padding-left: calc((100vw - var(--container)) / 2);
  padding-right: calc((100vw - var(--container)) / 2);
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.gallery-section .scrollable::-webkit-scrollbar {
  display: none;
}
.gallery-section .scrollable::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.gallery-section .card-gallery {
  aspect-ratio: 370/500;
}
@media screen and (max-width: 575px) {
  .gallery-section .card-gallery {
    aspect-ratio: 280/460;
  }
}
.gallery-section .gallery-indicators {
  margin-top: 32px;
  position: relative;
}
.gallery-section .gallery-indicators .progress {
  width: 200px;
  height: 3px;
  background: #7F7F7F;
  margin: auto;
}
.gallery-section .gallery-indicators .progress .line {
  width: 80px;
  height: 3px;
  background: #EABE78;
}
.gallery-section .gallery-indicators .arrows {
  display: flex;
  gap: 60px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-section .gallery-indicators .arrows button {
  padding: 2px 8px;
  margin: 0 -8px;
  transition: all 0.3s;
}
.gallery-section .gallery-indicators .arrows button.disabled {
  opacity: 0.3;
}
@media screen and (max-width: 991px) {
  .gallery-section {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}
@media screen and (max-width: 575px) {
  .gallery-section .scrollable {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  .gallery-section .scrollable > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
}

.archive .gallery-section {
  padding-top: 48px;
}
.archive .gallery-section .section-header a {
  display: none;
}
@media screen and (min-width: 992px) {
  .archive .gallery-section {
    padding-top: 90px;
  }
  .archive .gallery-section .section-header {
    display: none !important;
  }
}

.show-more-wrapper {
  text-align: center;
  margin: 42px auto 24px auto;
}
.show-more-wrapper .loader {
  display: none;
  margin: 0 auto 16px auto;
  border: 6px solid #EEEEEE;
  border-top: 6px solid #212121;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}
.show-more-wrapper .progress {
  width: 200px;
  height: 3px;
  border-radius: 2px;
  background: #B6B4B3;
  margin: 12px auto 26px auto;
}
.show-more-wrapper .progress .line {
  height: 3px;
  border-radius: 2px;
  background: #212121;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .show-more-wrapper {
    margin: 32px auto 64px auto;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.other-sports {
  margin: 32px 0;
}
.other-sports h2 {
  color: #212121;
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  padding: 6px 0;
  border-bottom: 2px solid #212121;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.other-sports .card-post h3 {
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  .other-sports .grid .card-post > .row {
    margin-left: -9px;
    margin-right: -9px;
  }
  .other-sports .grid .card-post > .row > * {
    padding-left: 9px;
    padding-right: 9px;
  }
  .other-sports .list > div:nth-child(4) {
    display: none;
  }
  .other-sports .list .card-post {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .other-sports .card-post .row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .other-sports .card-post .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  .other-sports .card-post .text-block {
    justify-content: center;
  }
  .other-sports .card-post .text-block .categories {
    margin-bottom: 10px;
  }
  .other-sports .card-post .text-block h3 {
    font-size: 17px !important;
    margin-bottom: 0;
  }
  .other-sports .card-post .date {
    display: none;
  }
}

.fantasy-banner img,
.newsletter-banner img {
  width: 100%;
  max-width: 300px;
}

footer {
  margin-top: 66px;
  padding-top: 64px;
  background: #212121;
  color: #FFFFFF;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .logo {
  margin-bottom: 36px;
}
footer .logo img {
  width: 130px;
}
footer .socials {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}
footer .socials img {
  width: 32px;
  height: 32px;
}
footer h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
footer .links li, footer .links a {
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
}
footer .links li {
  padding-top: 2px;
  padding-bottom: 2px;
}
footer .newsletter p {
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
}
footer .newsletter input[type=email] {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #B6B4B3;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(245, 249, 254, 0.1);
}
footer .newsletter .checkbox-wrapper {
  gap: 8px;
  align-items: flex-start;
  margin-top: 16px;
}
footer .newsletter .checkbox-wrapper input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: #D9D9D9;
}
footer .newsletter .checkbox-wrapper input[type=checkbox]:checked {
  background: #FFFFFF;
}
footer .newsletter .checkbox-wrapper .check {
  top: 4px;
  left: 2px;
  width: 12px;
  filter: invert(1);
}
footer .newsletter .checkbox-wrapper span {
  font-size: 11px;
  font-weight: 300;
  line-height: 120%;
  margin-top: 0;
}
footer .newsletter button[type=submit] {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  color: #212121;
  letter-spacing: -0.32px;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 14px;
  background: #EABE78;
}
footer .disclaimer {
  font-size: 12px;
  font-style: italic;
  line-height: 120%;
  color: #B6B4B3;
  margin-bottom: 0;
}
footer .copyright {
  border-top: 1px solid #FFFFFF;
  padding-top: 18px;
  padding-bottom: 26px;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  footer .newsletter,
  footer .links,
  footer .disclaimer-col {
    order: -1;
  }
  footer .newsletter {
    margin-bottom: 22px;
  }
  footer .links .wrapper {
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding-top: 23px;
    padding-bottom: 26px;
  }
  footer .logo-social-col {
    display: flex;
    flex-direction: column-reverse;
  }
  footer .disclaimer {
    margin-top: 18px;
    margin-bottom: 26px;
  }
  footer .socials {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) and (max-width: 992px) {
  footer .socials {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 992px) {
  footer .logo {
    margin-bottom: 0;
    margin-top: 26px;
  }
  footer .copyright {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .logo {
    margin-top: 0;
  }
  footer .socials {
    margin-top: 30px;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.5s;
}
header .header-wrapper {
  background: #212121;
}
header .header-black {
  position: relative;
  background: #212121;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 576px) {
  header .header-black {
    padding: 22px 24px;
  }
}
@media screen and (min-width: 1400px) {
  header .header-black {
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
header .hamburger {
  padding: 0;
  margin-right: 24px;
}
header .hamburger .line {
  width: 30px;
  height: 2px;
  border-radius: 1px;
  background: #FFFFFF;
  transition: all 0.3s;
}
header .hamburger .line.top {
  width: 24px;
  margin-bottom: 12px;
}
header .hamburger.show .top {
  width: 30px;
  transform: translateY(7px) rotate(45deg);
}
header .hamburger.show .bottom {
  transform: translateY(-7px) rotate(-45deg);
}
header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 500px;
  overflow: scroll;
  padding: 90px 24px 42px 24px;
  background: #212121;
  transform: translateX(-100%);
  transition: all 0.5s;
  z-index: 11;
}
@media screen and (min-width: 1199px) {
  header .mobile-menu {
    display: none;
  }
}
header .mobile-menu.show {
  transform: translateX(0);
}
header .mobile-menu .close-menu {
  position: absolute;
  top: 30px;
  left: 16px;
  padding: 0;
}
header .mobile-menu .close-menu .line {
  width: 30px;
  height: 2px;
  border-radius: 1px;
  background: #FFFFFF;
}
header .mobile-menu .close-menu .line.top {
  margin-bottom: 12px;
  transform: translateY(7px) rotate(45deg);
}
header .mobile-menu .close-menu .line.bottom {
  transform: translateY(-7px) rotate(-45deg);
}
header .mobile-menu .links {
  padding: 52px 20px 0 20px;
}
header .mobile-menu .links .categories {
  margin-bottom: 60px;
}
header .mobile-menu .links .categories .accordion-button {
  padding: 8px 0;
  box-shadow: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: #FFFFFF;
  text-transform: uppercase;
}
header .mobile-menu .links .categories .accordion-button::after {
  content: "";
  background: transparent;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  transform: rotate(225deg);
  width: 12px;
  height: 12px;
}
header .mobile-menu .links .categories .accordion-button.collapsed::after {
  transform: rotate(45deg);
}
header .mobile-menu .links .categories .accordion-button:focus {
  box-shadow: none;
}
header .mobile-menu .links .categories .accordion-collapse {
  list-style: none;
  padding-left: 24px;
}
header .mobile-menu .links .categories .accordion-collapse a {
  display: block;
  font-size: 16px;
  line-height: 120%;
  color: #B6B4B3;
  text-transform: uppercase;
  padding: 3px 0;
}
header .mobile-menu .links .categories .accordion-collapse .divider {
  height: 16px;
}
header .mobile-menu .links .other-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .mobile-menu .links .other-links ul li {
  line-height: 0;
}
header .mobile-menu .links .other-links ul li a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 8px 0;
}
header .mobile-menu .links .label {
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  color: #B6B4B3;
  text-transform: uppercase;
}
header .mobile-menu .links .mobile-link {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  text-transform: uppercase;
}
header .mobile-menu .user {
  padding: 20px 0;
  margin: 40px 0 50px 0;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
header .mobile-menu .language .label {
  font-size: 17px;
  font-weight: 300;
  line-height: 120%;
  color: #FFFFFF;
  text-transform: none;
}
header .mobile-menu .language .wpml-ls-legacy-list-horizontal {
  border: none;
  padding: 0;
}
header .mobile-menu .language .wpml-ls-legacy-list-horizontal li:not(:last-of-type) {
  position: relative;
}
header .mobile-menu .language .wpml-ls-legacy-list-horizontal li:not(:last-of-type)::after {
  content: "|";
  position: absolute;
  top: 6px;
  right: -3px;
  font-size: 17px;
  font-weight: 300;
  line-height: 120%;
  color: #FFFFFF;
}
header .mobile-menu .language .wpml-ls-legacy-list-horizontal a {
  padding: 6px 12px;
}
header .mobile-menu .language .wpml-ls-legacy-list-horizontal a span {
  font-size: 17px;
  font-weight: 300;
  line-height: 120%;
  color: #FFFFFF;
  text-transform: uppercase;
}
header .mobile-menu .language .wpml-ls-legacy-list-horizontal a span.wpml-ls-native {
  font-weight: 700;
  text-decoration: underline;
}
header .logo img {
  width: 138px;
}
@media screen and (max-width: 375px) {
  header .logo img {
    width: 118px;
  }
}
@media screen and (max-width: 320px) {
  header .logo img {
    width: 98px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .logo {
    margin-right: 34px;
  }
  header .logo img {
    width: 102px;
  }
}
@media screen and (min-width: 1200px) {
  header .logo {
    margin-right: 74px;
  }
}
header .main-menu {
  gap: 16px;
}
header .main-menu ul {
  margin: 0;
  padding: 0;
}
header .main-menu ul li {
  line-height: 0;
}
header .main-menu ul li.current-menu-item {
  position: relative;
}
header .main-menu ul li.current-menu-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -36px;
  left: 0;
  background: #EEEEEE;
}
header .main-menu .menu {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 34px;
  list-style: none;
}
header .main-menu .menu a {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s;
}
header .main-menu .menu a:hover {
  color: #7F7F7F;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .main-menu {
    gap: 10px;
  }
  header .main-menu .menu {
    gap: 10px;
  }
  header .main-menu .menu a {
    font-size: 12px;
  }
}
header .main-menu .divider-vertical {
  height: 34px;
  border-left: 1px solid #FFFFFF;
}
header .right {
  gap: 18px;
}
@media screen and (max-width: 1199px) {
  header .right {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  header .right {
    gap: 14px;
  }
}
@media screen and (max-width: 320px) {
  header .right {
    gap: 10px;
  }
}
header .user {
  gap: 16px;
}
header .user a {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.28px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
}
header .user a.register {
  padding: 12px 24px;
  border-radius: 14px;
  color: #212121;
}
header .language {
  position: relative;
}
header .language .language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 40px;
  transition: all 0.3s;
}
header .language .language-switch .globe {
  width: 18px;
  height: 18px;
}
header .language .language-switch .current {
  margin-left: 2px;
}
header .language .language-switch .arrow {
  transition: all 0.3s;
}
header .language .language-switch.open .arrow {
  transform: rotate(180deg);
}
@media screen and (max-width: 1199px) {
  header .language .language-switch.open {
    background: rgba(238, 238, 238, 0.2);
  }
}
header .language .language-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  header .language .language-list {
    width: 100%;
    background: #212121;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
  }
  header .language .language-list li .wrapper-padding {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  header .language .language-list li img {
    width: 18px;
    height: 18px;
  }
  header .language .language-list li span {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;
    color: #FFFFFF;
  }
  header .language .language-list li.current {
    background: #3F3F3F;
  }
}
@media screen and (max-width: 1199px) {
  header .language .language-list {
    left: 50%;
    top: calc(100% + 24px);
    transform: translateX(-50%);
  }
  header .language .language-list li {
    margin-bottom: 4px;
  }
  header .language .language-list li .wrapper-padding {
    border-radius: 40px;
    background: #212121;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
  }
  header .language .language-list li img {
    display: none;
  }
  header .language .language-list li a, header .language .language-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 7px;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #FFFFFF;
  }
  header .language .language-list li.current .wrapper-padding {
    background: #FFFFFF;
  }
  header .language .language-list li.current span {
    color: #212121;
  }
}
header .search .toggle-search {
  background: transparent;
  padding: 0;
  border: 0;
}
header .search-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
header .search-wrapper input {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
header .search-wrapper input::placeholder {
  color: #B6B4B3;
}
header .search-wrapper button {
  line-height: 0;
}
header .search-wrapper .close-search img {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  header .search-wrapper {
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(245, 249, 254, 0.1);
    flex-direction: row-reverse;
  }
  header .search-wrapper .close-search {
    position: fixed;
    top: 26px;
    right: 16px;
    height: 30px;
    padding: 4px;
    background: #212121;
  }
}
@media screen and (max-width: 575px) {
  header .search-wrapper .close-search {
    top: 22px;
    right: 12px;
  }
}
header .search-container {
  display: none;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: calc(100% - 250px);
  background: #212121;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .search-container {
    right: 22px;
    width: calc(100% - 176px);
  }
}
@media screen and (max-width: 767px) {
  header .search-container {
    position: fixed;
    top: 68px;
    left: 0;
    transform: none;
    width: 100%;
    padding: 20px 20px 38px 20px;
  }
}
@media screen and (min-width: 1400px) {
  header .search-container {
    right: 40px;
    width: calc(100% - 280px);
  }
}
header .search-container button {
  padding: 0;
}
header .header-grey {
  background: #EEEEEE;
}
header .header-grey.overflow {
  position: relative;
}
header .header-grey.overflow::before, header .header-grey.overflow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s;
}
header .header-grey.overflow::before {
  left: 0;
  background: linear-gradient(90deg, #eeeeee 50%, rgba(238, 238, 238, 0) 100%);
}
header .header-grey.overflow::after {
  right: 0;
  background: linear-gradient(90deg, rgba(238, 238, 238, 0) 0%, #eeeeee 50%);
}
header .header-grey.overflow:not(.is-scroll-start)::before {
  opacity: 1;
}
header .header-grey.overflow:not(.is-scroll-end)::after {
  opacity: 1;
}
header .header-grey ul {
  margin: 0 calc(var(--bs-gutter-x) * -0.5);
  padding: 14px calc(var(--bs-gutter-x) * 0.5);
  display: flex;
  list-style: none;
  overflow: scroll;
  width: auto;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
header .header-grey ul::-webkit-scrollbar {
  display: none;
}
header .header-grey ul::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
header .header-grey ul li {
  display: inline-block;
  position: relative;
}
header .header-grey ul li a {
  padding: 10px;
  font-size: 13px;
  line-height: normal;
  text-transform: uppercase;
  color: #212121;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .header-grey ul li a {
    font-size: 12px;
  }
}
header .header-grey ul li:first-of-type {
  border-right: 1px solid #212121;
}
header .header-grey ul li:first-of-type a {
  padding-left: 0;
  font-size: 14px;
  font-weight: 700;
}
header .header-grey ul li:first-of-type::after {
  left: 0 !important;
  width: calc(100% - 10px) !important;
}
@media screen and (max-width: 767px) {
  header .header-grey ul li:first-of-type {
    border-right: none;
  }
}
header .header-grey ul li:last-of-type a {
  padding-right: 0;
}
header .header-grey ul li:last-of-type::after {
  left: 10px !important;
  width: calc(100% - 10px) !important;
}
header .header-grey ul li::after, header .header-grey ul li.current-menu-item::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 10px;
  height: 4px;
  width: calc(100% - 20px);
  background: #212121;
}
header .header-grey ul li::after {
  opacity: 0;
  background: #B6B4B3;
  transition: all 0.3s;
}
header .header-grey ul li:hover::after {
  opacity: 1;
}
header .header-grey ul li.current-menu-item::after {
  background: #212121;
  opacity: 1 !important;
}
header .header-grey .scroll-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  z-index: 2;
}
header .header-grey .scroll-arrow.back {
  left: 10px;
}
header .header-grey .scroll-arrow.back img {
  transform: rotate(180deg);
}
header .header-grey .scroll-arrow.forward {
  right: 10px;
}
@media screen and (min-width: 576px) {
  header .header-grey {
    padding: 0 20px;
  }
  header .header-grey ul {
    margin: 0 -20px;
    padding: 14px 20px;
    list-style: none;
  }
}
@media screen and (min-width: 1400px) {
  header .header-grey {
    padding-left: 0;
    padding-right: 0;
  }
  header .header-grey ul {
    margin-left: 0;
    margin-right: 0;
    padding: 14px 40px;
  }
}
@media screen and (min-width: 1440px) {
  header .header-grey ul {
    padding: 14px calc((100vw - 1440px) / 2 + 40px);
  }
}

.page-404 h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 110%;
}
.page-404 p {
  font-size: 28px;
  font-weight: 300;
  line-height: 110%;
  margin-bottom: 28px;
}
.page-404 .btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
  padding: 12px 24px;
  border-radius: 14px;
}
.page-404 .btn:hover {
  background: #EABE78;
}
@media screen and (max-width: 767px) {
  .page-404 h1 {
    font-size: 46px;
  }
  .page-404 p {
    font-size: 24px;
  }
}

.post-type-archive-gallery:not(.search) {
  background: #212121;
}
.post-type-archive-gallery:not(.search) h1 {
  color: #FFFFFF;
  margin-bottom: 14px;
}
.post-type-archive-gallery .show-more-wrapper .loader {
  border: 6px solid #3F3F3F;
  border-top: 6px solid #EEEEEE;
}
.post-type-archive-gallery .show-more-wrapper .text {
  color: #FFFFFF;
}
.post-type-archive-gallery .show-more-wrapper .line {
  background: #FFFFFF;
}
.post-type-archive-gallery .show-more-wrapper .show-more {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.authentication {
  text-align: center;
  color: #212121;
}
.authentication h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 16px;
}
.authentication .auth-info,
.authentication .auth-error {
  font-size: 16px;
  line-height: 150%;
  max-width: 370px;
  margin: auto;
}
.authentication .auth-info a,
.authentication .auth-error a {
  color: #3461FD;
}
@media screen and (max-width: 767px) {
  .authentication .auth-info,
  .authentication .auth-error {
    max-width: unset;
    text-align: start;
  }
}
.authentication .auth-error {
  color: #D42A2B;
}
.authentication form {
  max-width: 370px;
  margin: 38px auto;
}
.authentication form input[type=text], .authentication form input[type=email], .authentication form input[type=password] {
  width: 100%;
  border-radius: 14px;
  padding: 18px 52px 18px 24px;
  background: #EEEEEE;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #212121;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.authentication form input[type=text]:focus, .authentication form input[type=text].focus-visible, .authentication form input[type=email]:focus, .authentication form input[type=email].focus-visible, .authentication form input[type=password]:focus, .authentication form input[type=password].focus-visible {
  border: 1px solid #3461FD;
}
.authentication form input[type=checkbox] {
  transition: none;
}
.authentication form input[type=checkbox].highlight {
  border: 2px solid #D42A2B;
}
.authentication form input[type=submit],
.authentication form button[type=submit] {
  position: relative;
  width: 100%;
  border: none;
  margin-top: 30px;
  padding: 18px 24px;
  border-radius: 14px;
  background: #EABE78;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #212121;
  transition: all 0.3s;
}
.authentication form input[type=submit]::before,
.authentication form button[type=submit]::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 14px;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  background: #EABE78;
  filter: blur(22px);
  z-index: -1;
}
.authentication form input[type=submit]:disabled,
.authentication form button[type=submit]:disabled {
  background: rgba(234, 190, 120, 0.5);
  cursor: not-allowed;
}
.authentication form .error-text {
  margin-top: 12px;
  font-size: 12px;
  line-height: 120%;
  text-align: start;
  color: #D42A2B;
}
.authentication form .form-row {
  position: relative;
}
.authentication form .form-row span {
  text-align: left;
}
.authentication form .form-row .togglePassword {
  position: absolute;
  left: 85%;
  top: 18px;
  cursor: pointer;
}
.authentication form .form-row .togglePassword:not(.show) .eye-open {
  display: none;
}
.authentication form .form-row .togglePassword:not(.show) .eye-closed {
  display: block;
}
.authentication form .form-row .togglePassword.show .eye-open {
  display: block;
}
.authentication form .form-row .togglePassword.show .eye-closed {
  display: none;
}
.authentication form .form-info {
  text-align: left;
  font-size: 14px;
  line-height: 130%;
}
.authentication form .form-info-r {
  text-align: right;
}
.authentication form .form-info-r a {
  color: #B6B4B3;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .authentication form {
    max-width: unset;
  }
}
.authentication .have-account {
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
.authentication .have-account a {
  color: #3461FD;
}
@media screen and (max-width: 767px) {
  .authentication h1 {
    text-align: start;
    margin-bottom: 12px;
  }
}

#register-form button[type=submit] {
  margin-top: 14px;
}

#form-errors {
  margin-top: 16px;
  font-size: 14px;
  line-height: 120%;
  color: #D42A2B;
}

.page-template-template-profile {
  padding-top: 68px;
}
@media only screen and (min-width: 768px) {
  .page-template-template-profile {
    padding-top: 80px;
  }
}

#user-profile {
  padding-bottom: 48px;
}
#user-profile .profile-main {
  padding-top: 48px;
}
#user-profile .d-nomob {
  display: none;
}
@media only screen and (min-width: 768px) {
  #user-profile .d-nomob {
    display: block;
  }
}
#user-profile .d-nodskt {
  display: block;
}
@media only screen and (min-width: 768px) {
  #user-profile .d-nodskt {
    display: none;
  }
}
#user-profile .header-profile {
  background: #EEEEEE;
  padding-top: 36px;
  padding-bottom: 36px;
  color: #212121;
  font-size: 24px;
  font-weight: 500;
}
#user-profile .header-profile .profile-logout {
  margin-top: 16px;
  color: #4874B8;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
#user-profile .header-profile .profile-logout a {
  color: #4874B8;
}
#user-profile h1 {
  color: #161336;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
#user-profile .profile-sect-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #AAA;
  padding: 8px 0;
  margin-top: 26px;
}
#user-profile .profile-sect-head div {
  width: auto;
  color: #4874B8;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
#user-profile .profile-sect-head a, #user-profile .profile-sect-head button {
  color: #4874B8;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding: 0;
}
#user-profile .profile-sect-head a.edit-preferences-btn .no-clicked, #user-profile .profile-sect-head button.edit-preferences-btn .no-clicked {
  display: inline;
}
#user-profile .profile-sect-head a.edit-preferences-btn .clicked, #user-profile .profile-sect-head button.edit-preferences-btn .clicked {
  display: none;
}
#user-profile .profile-sect-head a.edit-preferences-btn.clicked .no-clicked, #user-profile .profile-sect-head button.edit-preferences-btn.clicked .no-clicked {
  display: none;
}
#user-profile .profile-sect-head a.edit-preferences-btn.clicked .clicked, #user-profile .profile-sect-head button.edit-preferences-btn.clicked .clicked {
  display: inline;
}
#user-profile .profile-label {
  color: #212121;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
}
#user-profile .profile-info {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
#user-profile .profile-info .to-select {
  color: #B6B4B3;
}
#user-profile .save-success, #user-profile .save-error {
  display: none;
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}
#user-profile .save-error {
  color: #D42A2B;
}
#user-profile #edit-preferences {
  display: none;
}
#user-profile #edit-preferences .profile-info select {
  appearance: none;
  width: 100%;
  border-radius: 14px;
  padding: 14px 36px 14px 18px;
  background: #EEEEEE;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #212121;
  white-space: nowrap;
  text-overflow: ellipsis;
  border: 1px solid transparent;
  background-image: url("../images/select-arrow.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  transition: all 0.3s;
  cursor: pointer;
}
#user-profile #edit-preferences .profile-info select:focus, #user-profile #edit-preferences .profile-info select:focus-visible {
  outline: none;
  border: 1px solid #3461FD;
}
#user-profile #edit-preferences .submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
#user-profile #edit-preferences button[type=submit] {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #212121;
  padding: 16px 48px;
  border-radius: 14px;
  background: #EABE78;
}
#user-profile #edit-preferences .loader {
  display: none;
  border: 6px solid #EEEEEE;
  border-top: 6px solid #212121;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}
@media screen and (max-width: 767px) {
  #user-profile .header-profile {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #user-profile .header-profile .big {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    display: block;
  }
  #user-profile .profile-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.page-template-template-profile-edit .auth-error {
  margin-bottom: 0;
  font-weight: bold;
  color: #D42A2B;
}

.profile-updated-success {
  font-weight: bold;
}

#user-profile-edit .profile-main {
  padding-top: 32px;
  padding-bottom: 32px;
}
#user-profile-edit h1 {
  color: #161336;
  font-family: "Cera Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 32px;
  margin-bottom: 16px;
}
#user-profile-edit .profile-sect-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #AAA;
  padding: 8px 0;
}
#user-profile-edit .profile-sect-head div {
  width: auto;
  color: #4874B8;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
#user-profile-edit .profile-label {
  color: #212121;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 12px;
}
#user-profile-edit #accountform label {
  width: 100%;
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #7F7F7F;
}
#user-profile-edit #accountform label .info {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
  margin-left: 8px;
}
#user-profile-edit #accountform .pw-field {
  position: relative;
}
#user-profile-edit #accountform input[type=text],
#user-profile-edit #accountform input[type=email],
#user-profile-edit #accountform input[type=password],
#user-profile-edit #accountform .input-non-editable {
  width: 100%;
  border-radius: 14px;
  padding: 18px 52px 18px 24px;
  background: #EEEEEE;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #212121;
}
#user-profile-edit #accountform input:disabled,
#user-profile-edit #accountform .input-non-editable {
  color: rgba(33, 33, 33, 0.4);
  cursor: not-allowed;
}
#user-profile-edit #accountform .togglePassword {
  position: absolute;
  right: 38px;
  top: 74px;
  cursor: pointer;
}
#user-profile-edit #accountform .togglePassword:not(.show) .eye-open {
  display: none;
}
#user-profile-edit #accountform .togglePassword:not(.show) .eye-closed {
  display: block;
}
#user-profile-edit #accountform .togglePassword.show .eye-open {
  display: block;
}
#user-profile-edit #accountform .togglePassword.show .eye-closed {
  display: none;
}
#user-profile-edit #accountform input[type=submit],
#user-profile-edit #accountform button[type=submit] {
  position: relative;
  display: block;
  border: none;
  margin: 30px auto 0 auto;
  padding: 18px 64px;
  border-radius: 14px;
  background: #EABE78;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #212121;
}
#user-profile-edit #accountform input[type=submit]::before,
#user-profile-edit #accountform button[type=submit]::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 14px;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  background: #EABE78;
  filter: blur(22px);
  z-index: -1;
}
#user-profile-edit #accountform input[type=submit]:disabled,
#user-profile-edit #accountform button[type=submit]:disabled {
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  #user-profile-edit #accountform input[type=submit],
  #user-profile-edit #accountform button[type=submit] {
    padding: 12px 24px;
    margin-left: 0;
  }
}
#user-profile-edit #accountform .error-message {
  margin-top: 4px;
  font-size: 14px;
  color: #D42A2B;
}

section.sport .section-header {
  padding: 6px 0;
  margin-bottom: 36px;
  border-bottom: 2px solid #212121;
}
section.sport .section-header h2 {
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  color: #212121;
  text-transform: uppercase;
  margin-bottom: 0;
}
section.sport .section-header a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #212121;
  text-transform: uppercase;
}
section.sport.dark-bg {
  padding-top: 52px;
  padding-bottom: 52px;
}
section.sport.dark-bg .section-header {
  border-bottom: 2px solid #FFFFFF;
}
section.sport.dark-bg .section-header h2, section.sport.dark-bg .section-header a {
  color: #FFFFFF;
}
section.sport.dark-bg .section-header h2 img, section.sport.dark-bg .section-header a img {
  filter: invert(1);
}
section.sport.dark-bg .card-post h3 {
  color: #FFFFFF;
}
section.sport.grey-bg {
  padding-top: 92px;
  padding-bottom: 92px;
}
@media screen and (max-width: 575px) {
  section.sport .section-cards {
    overflow: scroll;
    flex-wrap: nowrap;
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
  }
  section.sport .section-cards::-webkit-scrollbar {
    display: none;
  }
  section.sport .section-cards::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
  }
  section.sport .section-cards > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .section-cards .mobile-nowrap {
    flex-wrap: nowrap;
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .section-cards .mobile-nowrap > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .section-cards .mobile-nowrap .card-post .row {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .section-cards .mobile-nowrap .card-post .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .grouped:not(.section-cards) .group-right {
    margin-top: 24px;
  }
  section.sport .grouped:not(.section-cards) .mobile-nowrap .card-post .row {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .grouped:not(.section-cards) .mobile-nowrap .card-post .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  section.sport .grouped:not(.section-cards) .card-post.big {
    padding-bottom: 0;
  }
  section.sport.grey-bg {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  section.sport.grey-bg .card-post.big {
    padding-bottom: 0;
  }
}

.home .wp-block-columns {
  margin-bottom: 36px;
}
.home main > .container > .wp-block-columns:last-of-type {
  margin-bottom: 0;
}
.home .sticky-column > * {
  position: sticky;
  top: 110px;
}
.home footer {
  margin-top: 0;
}
@media screen and (max-width: 575px) {
  .home .highlights .row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .home .highlights .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
}

.container-category h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .container-category h1 {
    font-size: 22px;
  }
}
.container-category #popular-title {
  padding-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .container-category #popular-title {
    margin-top: 36px;
  }
}
.container-category .category-header {
  padding: 6px 0;
  margin-top: 55px;
  margin-bottom: 36px;
  border-bottom: 2px solid #212121;
}
.container-category .category-header h2 {
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  color: #212121;
  text-transform: uppercase;
  margin-bottom: 0;
}
.container-category .pagination-grid {
  margin-top: 24px;
}
.container-category .no-articles {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .container-category .no-articles {
    margin-bottom: 56px;
  }
}
.container-category .card-post.main {
  padding: 38px 32px;
}
.container-category .card-post.main .categories {
  margin-bottom: 8px;
}
.container-category .card-post.main h3 {
  font-size: 28px;
}
@media screen and (min-width: 992px) {
  .container-category .card-post.main {
    min-height: calc(100% - 16px);
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container-category .card-post.main {
    aspect-ratio: 360/480;
  }
}
@media screen and (max-width: 767px) {
  .container-category .card-post.big h3 {
    font-size: 16px !important;
    margin-bottom: 0;
  }
  .container-category .other-sports .card-post.medium {
    margin-bottom: 16px;
  }
  .container-category .other-sports > .row > *:nth-of-type(5), .container-category .other-sports > .row > *:nth-of-type(6) {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .container-category .pagination-grid .card-post.big .row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .container-category .pagination-grid .card-post.big .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
}

.container-author h1 {
  color: #212121;
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  color: #212121;
  margin-top: 12px;
  margin-bottom: 16px;
}
.container-author h2#latest-articles {
  font-size: 24px;
  font-weight: 900;
  color: #212121;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid #212121;
  text-transform: uppercase;
}
.container-author .pagination-grid > * {
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .container-author .pagination-grid > * {
    margin-bottom: 24px;
  }
  .container-author .pagination-grid > * .card-post.big {
    padding-bottom: 0;
  }
}
.container-author .card-tags a {
  color: #BA8232;
  font-family: "Cera Pro";
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 12px;
}
.container-author #author-info {
  margin-bottom: 24px;
  position: sticky;
  top: 120px;
}
.container-author #author-info #title {
  color: #BA8232;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.container-author #author-info #author-avatar img {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  object-fit: cover;
}
.container-author #author-info #post-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #212121;
}
.container-author #author-info #author-name a {
  color: #BA8232;
}
.container-author #author-info #author-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #212121;
}
.container-author #author-info #author-description .read-more {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  color: #212121;
  letter-spacing: -0.32px;
  padding: 12px 24px;
  border-radius: 14px;
  margin-top: 12px;
  background: #EEEEEE;
}
@media screen and (min-width: 992px) {
  .container-author #author-info #author-description .read-more {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .container-author #author-info {
    margin-bottom: 36px;
  }
  .container-author #author-info #author-description p {
    position: relative;
    max-height: 120px;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.3s;
  }
  .container-author #author-info #author-description p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #FFF 100%);
  }
  .container-author #author-info #author-description p.read-all {
    max-height: unset;
  }
  .container-author #author-info #author-description p.read-all::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .container-author .card-post .row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .container-author .card-post .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
  .container-author .card-post .row h3 {
    font-size: 16px !important;
    margin-bottom: 0 !important;
  }
}

.results-found {
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
}

.search-header h1 {
  word-break: break-word;
}

.search-types {
  gap: 16px;
  margin-bottom: 36px;
}
.search-types .btn-type {
  display: block;
  width: fit-content;
  padding: 12px 24px;
  border-radius: 14px;
  background: #B6B4B3;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
  color: #FFFFFF;
}
.search-types .btn-type.current {
  background: #212121;
}

.search-grid {
  row-gap: 26px;
}
@media screen and (max-width: 575px) {
  .search-grid .card-gallery {
    margin-bottom: 0;
  }
  .search-grid .card-post.big {
    padding-bottom: 0;
  }
  .search-grid .card-post.big h3 {
    font-size: 16px !important;
    margin-bottom: 0;
  }
  .search-grid .card-post.big > .row {
    margin-left: calc(var(--bs-gutter-x) * -0.25);
    margin-right: calc(var(--bs-gutter-x) * -0.25);
  }
  .search-grid .card-post.big > .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.25);
    padding-right: calc(var(--bs-gutter-x) * 0.25);
  }
}

.single-gallery .gallery-top {
  margin-bottom: 58px;
}
.single-gallery .gallery-top .breadcrumbs {
  margin-bottom: 12px;
}
.single-gallery .gallery-top .breadcrumbs a {
  font-size: 14px;
  font-weight: 900;
  line-height: normal;
  color: #BA8232;
  text-transform: uppercase;
  margin-right: 8px;
}
.single-gallery .gallery-top h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 26px;
}
.single-gallery .gallery-top .content {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 38px;
}
.single-gallery .gallery-top .metadata {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #B6B4B3;
  border-bottom: 1px solid #B6B4B3;
}
.single-gallery .gallery-top .metadata .data {
  width: 33%;
  font-size: 14px;
  line-height: 150%;
}
.single-gallery .gallery-top .metadata .data strong {
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .single-gallery .gallery-top .metadata .data strong {
    display: block;
  }
}
.single-gallery .gallery-top .metadata .data a {
  color: #BA8232;
  text-decoration: underline;
}
.single-gallery .gallery-grid {
  margin-left: -5px;
  margin-right: -5px;
}
.single-gallery .gallery-grid > * {
  padding-left: 5px;
  padding-right: 5px;
}
.single-gallery .gallery-grid img {
  width: 100%;
  margin-bottom: 10px;
  aspect-ratio: 380/250;
  object-fit: cover;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .single-gallery .gallery-grid .col-4 img {
    aspect-ratio: 1;
  }
}
.single-gallery .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: none;
  background: #212121;
  overflow: hidden;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.single-gallery .lightbox::-webkit-scrollbar {
  display: none;
}
.single-gallery .lightbox::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.single-gallery .lightbox .lightbox-header {
  padding: 35px 20px;
}
.single-gallery .lightbox .lightbox-header .logo {
  width: 138px;
}
@media screen and (max-width: 767px) {
  .single-gallery .lightbox .lightbox-header {
    padding: 24px 24px 16px 24px;
  }
}
.single-gallery .lightbox .slick-gallery,
.single-gallery .lightbox .slick-list,
.single-gallery .lightbox .slick-track,
.single-gallery .lightbox .slick-slide {
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .single-gallery .lightbox .slick-gallery,
  .single-gallery .lightbox .slick-list,
  .single-gallery .lightbox .slick-track,
  .single-gallery .lightbox .slick-slide {
    max-height: unset;
    height: calc(100vh - 208px);
  }
}
.single-gallery .lightbox .slide .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .single-gallery .lightbox .slide .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (min-width: 768px) and (min-height: 576px) {
  .single-gallery .lightbox .slide .container {
    height: calc(100vh - 190px);
  }
}
.single-gallery .lightbox .slide img {
  max-width: 100%;
  max-height: calc(100vh - 270px);
  margin: 35px auto 16px auto;
}
@media screen and (max-width: 767px) {
  .single-gallery .lightbox .slide img {
    margin-top: 0;
  }
}
.single-gallery .lightbox .slide .caption {
  margin: 0 auto;
  max-width: calc(100vw - 500px);
  font-size: 12px;
  line-height: 110%;
  text-align: center;
  color: #B6B4B3;
}
@media screen and (max-width: 767px) {
  .single-gallery .lightbox .slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .single-gallery .lightbox .slide img {
    height: auto;
  }
  .single-gallery .lightbox .slide .caption {
    max-width: calc(100vw - 48px);
  }
}
.single-gallery .lightbox .gallery-arrows {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.single-gallery .lightbox .gallery-arrows button {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .single-gallery .lightbox .gallery-arrows {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.single-gallery .lightbox .gallery-dots-wrapper {
  display: flex;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
}
.single-gallery .lightbox .slick-dots {
  margin: 0;
  padding: 0;
}
.single-gallery .lightbox .slick-dots li {
  list-style: none;
}
.single-gallery .lightbox .slick-dots li:not(.slick-active) {
  display: none;
}
.single-gallery .lightbox .slick-dots li button {
  padding: 0;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
}
@media screen and (max-width: 991px) and (max-height: 575px) {
  .single-gallery .lightbox .lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    justify-content: space-between;
    z-index: 1;
  }
  .single-gallery .lightbox .lightbox-header .col-logo {
    display: none !important;
  }
  .single-gallery .lightbox .lightbox-header .col-dots {
    justify-content: start !important;
  }
  .single-gallery .lightbox .slide img {
    max-height: calc(100vh - 70px);
    margin-bottom: 12px;
  }
}

.container-post h1 {
  color: #212121;
  font-family: "Cera Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-top: 8px;
  margin-bottom: 20px;
}
.container-post .back {
  padding: 8px 0 16px 0;
}
.container-post .card-tags a {
  color: #BA8232;
  font-family: "Cera Pro";
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 12px;
}
.container-post #author-info {
  align-items: center;
  gap: 16px;
}
.container-post #author-info #author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.container-post #author-info #post-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #7F7F7F;
}
.container-post #author-info #post-info img {
  width: 14px;
  height: 14px;
  filter: brightness(0.7);
}
.container-post #author-info #post-info .date {
  display: flex;
  gap: 4px;
}
.container-post #author-info #author-name a {
  color: #BA8232;
}
.container-post .article-excerpt {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  margin-top: 20px;
}
.container-post .featured-image img {
  width: 100%;
}
.container-post .featured-image .caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
  margin-top: 14px;
}
.container-post .article-content {
  margin: 40px 0;
}
.container-post .article-content h2 {
  font-size: 26px;
  margin-top: 24px;
}
.container-post .article-content p {
  color: #212121;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.container-post .article-content figcaption {
  margin: 16px 0;
  font-size: 12px;
  line-height: 110%;
  color: #212121;
}
.container-post .share {
  color: #212121;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
}
.container-post .share .title {
  margin-bottom: 13px;
}
.container-post .share .share-icons {
  display: flex;
  gap: 16px;
}
.container-post .banner-wrapper {
  position: sticky;
  top: 160px;
  margin-top: 16px;
  transition: all 0.5s;
}
.container-post .banner-wrapper.sticky-header {
  top: 80px;
}
.container-post .banner-wrapper img {
  display: block;
  margin: auto;
}
.container-post .other-sports {
  margin-top: 56px;
}
@media screen and (min-width: 992px) {
  .container-post .other-sports h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 13px;
  }
}
.container-post .other-sports .card-post h3 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .container-post .other-sports {
    display: none;
  }
}
.container-post .related {
  margin: 50px 0;
}
.container-post .related .image {
  aspect-ratio: 175/130;
}
.container-post .related .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container-post .related .date {
  display: none;
}
@media screen and (min-width: 768px) {
  .container-post .popular-widget.col-md-4 {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .container-post #popular-title {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .container-post .article-excerpt {
    font-size: 18px;
  }
  .container-post .article-content p {
    font-size: 18px;
  }
  .container-post .article-content .wp-block-media-text__content {
    padding: 0;
    margin-top: 1rem;
  }
  .container-post .article-content figcaption {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .container-post .related {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #B6B4B3;
    border-bottom: 1px solid #B6B4B3;
  }
  .container-post .related .categories {
    margin-top: 0;
  }
  .container-post .related .date {
    display: flex;
  }
  .container-post .share .title,
  .container-post #popular-title {
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid #212121;
  }
}

.progress-scroll-wrapper {
  width: 100%;
}
.progress-scroll-wrapper .progress-scroll {
  width: 0;
  height: 10px;
  background: #EABE78;
  transition: all 0.1s;
}

/*# sourceMappingURL=style.css.map */
