/*
 * EmporiaFC SportsPress widgets base styles.
 *
 * This stylesheet defines a handful of CSS custom properties (variables) and
 * minimal pagination styles used by the EmporiaFC SportsPress widgets.  It is
 * intentionally lightweight to avoid conflicts with your theme.  You are
 * encouraged to adjust the variables below to match your own brand colours
 * and typography.  The widgets themselves rely heavily on the global CSS
 * variables defined by your theme (such as `--primary`, `--border`, etc.).
 */

/*
 * IMPORTANT
 * ---------
 * The previous version declared colour variables on :root. That can override
 * theme-level CSS variables (especially common names like --primary, --border)
 * and made Elementor style controls feel "broken".
 *
 * We now scope defaults to widget wrappers only. Widgets add the
 * .emporiafc-sp-scope class in their markup.
 */
.emporiafc-sp-scope {
    /* Neutral defaults — let the theme / Elementor controls drive the look */
    --primary: var(--e-global-color-primary, var(--e-global-color-accent, currentColor));
    --secondary: var(--e-global-color-secondary, currentColor);
    --highlight: var(--e-global-color-accent, currentColor);
    --light: inherit;
    --border: rgba(0, 0, 0, 0.12);
    --heading: inherit;
    --text: inherit;
    --background2: transparent;

    /* Typography */
    --primary-font: inherit;
    --secondary-font: inherit;
}

/* Basic styling for the pagination output by emporiafc_sp_event_pagination(). */
.emporiafc-sp-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.emporiafc-sp-pagination .page-numbers {
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--heading);
    border-radius: 4px;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.emporiafc-sp-pagination .page-numbers.current {
    background: var(--primary);
    color: #fff;
}

.emporiafc-sp-pagination .page-numbers:hover {
    background: var(--primary);
    color: #fff;
}

/* ------------------------------------------------------------------
 *  Imported styles from the original Spoclub theme
 *  The following CSS has been extracted verbatim from the Spoclub
 *  theme’s `style.css` file for the SportsPress widget layouts.
 *  It defines the visual styles for the Latest Results, Upcoming Events,
 *  slider variations and Club Player widgets.  By including these
 *  styles directly in the plugin we ensure that the EmporiaFC
 *  SportsPress widgets render identically to the original theme
 *  without requiring any additional CSS from the parent theme.  If
 *  you need to customise colours or typography you can override the
 *  `:root` variables above or add further selectors below this block.
 *
 *  Note: any references to `.ova-*` classes have been preserved to
 *  maintain compatibility with the markup generated by the widget
 *  templates.  These class names are not displayed anywhere on your
 *  site and do not affect branding.
 */









.ova-club-player .club-player-content {
  display: grid;
  gap: 40px;
}
.ova-club-player .club-player-content.two_column {
  grid-template-columns: 1fr 1fr;
}
.ova-club-player .club-player-content.three_column {
  grid-template-columns: 1fr 1fr 1fr;
}
.ova-club-player .club-player-content.four_column {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .ova-club-player .club-player-content.four_column {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.ova-club-player .club-player-content.five_column {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .ova-club-player .club-player-content.five_column {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .ova-club-player .club-player-content {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 767px) {
  .ova-club-player .club-player-content {
    grid-template-columns: 1fr !important;
  }
}
.ova-club-player .item .media {
  position: relative;
  overflow: hidden;
}
.ova-club-player .item .media img {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  width: 100%;
  min-height: 308px;
  display: block;
  object-fit: cover;
}
.ova-club-player .item .media .view-profile {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: absolute;
  bottom: -20px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background: var(--primary);
  color: #fff;
  width: 100%;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 28px 13px 32px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .ova-club-player .item .media .view-profile {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }
}
.ova-club-player .item .media .view-profile i {
  font-size: 20px;
  padding-left: 6px;
}
/*
 * Override hard‑coded light backgrounds in the imported Spoclub CSS.  The
 * original theme specified fixed white backgrounds on various cards,
 * rows and panels which prevented the user from changing colours via
 * Elementor.  Replace these values with the `--background2` custom
 * property so that picking a new background colour in the widget
 * settings updates every element consistently.  Where the imported
 * styles used semi‑transparent greys (e.g. rgba(226, 230, 232, 0.4)) we
 * reference the `--border` variable instead for a subtle tinted
 * background.
 */
.ova-club-player .item .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--background2);
  padding: 20px 30px;
}
.ova-club-player .item .info .name-position .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}
.ova-club-player .item .info .name-position .name a {
  color: var(--heading);
}
.ova-club-player .item .info .name-position .name a:hover {
  color: var(--primary);
}
.ova-club-player .item .info .name-position .position {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 21px;
}
.ova-club-player .item .info .name-position span {
  display: block;
}
.ova-club-player .item .info .squad-number {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading);
}
.ova-club-player .item .info .squad-number:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  content: "\e917";
  margin-right: 8px;
}
.ova-club-player .item:hover .media .view-profile {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.ova-club-player .item:hover .media img {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-club-player .button-view-all {
  text-align: center;
  margin-top: 60px;
}
.ova-club-player .button-view-all .view-all {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 32px;
  border: 1px solid var(--primary);
}
.ova-club-player .button-view-all .view-all i {
  margin-left: 6px;
  font-size: 20px;
}
.ova-club-player .button-view-all .view-all:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: var(--primary);
  color: #fff;
}
.ova-club-player .no-data {
  font-size: 32px;
  text-align: center;
}

.ova-custom-events {
  text-align: center;
  /* template 2*/
  /* template 3*/
}
.ova-custom-events .item-event {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  position: relative;
  background: var(--background2);
  border: 1px solid var(--border);
}
.ova-custom-events .item-event:hover {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  border: 1px solid var(--primary);
}
.ova-custom-events .item-event:hover .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.ova-custom-events .item-event:hover .venue-date-hover {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.ova-custom-events .item-event .result {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .ova-custom-events .item-event .result {
    flex-direction: column;
    padding: 30px 15px;
  }
}
.ova-custom-events .item-event .event-league-name {
  margin: 0 0 10px 0;
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: var(--light);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ova-custom-events .item-event .event-league-name {
    margin: 0 0 20px 0;
  }
}
.ova-custom-events .item-event .item-club {
  width: 40%;
}
@media (max-width: 600px) {
  .ova-custom-events .item-event .item-club {
    width: 100%;
  }
}
.ova-custom-events .item-event .item-club .info .goals-logo {
  min-width: 80px;
}
.ova-custom-events .item-event .item-club .info .goals-logo img {
  display: inline-block;
  width: 80px;
  object-fit: cover;
}
.ova-custom-events .item-event .item-club .info .name-club {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  text-transform: capitalize;
  font-family: var(--primary-font);
}
.ova-custom-events .item-event .item-club .info .outcome {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.ova-custom-events .item-event .item-club .info .outcome.win {
  color: var(--primary);
}
.ova-custom-events .item-event .item-club .info .value-performance {
  color: #3BC158;
}
.ova-custom-events .item-event .item-club.club-2 {
  order: 3;
}
.ova-custom-events .item-event .match {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px;
}
.ova-custom-events .item-event .match h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.ova-custom-events .item-event .match h6 {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  font-family: var(--primary-font);
  margin: 0 30px;
}
.ova-custom-events .item-event .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  border-top: 1px solid var(--border);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ova-custom-events .item-event .venue-date .venue, .ova-custom-events .item-event .venue-date .date-time {
  margin-right: 20px;
}
.ova-custom-events .item-event .venue-date i {
  color: var(--secondary);
  margin-right: 4px;
}
.ova-custom-events .item-event .venue-date .view-event {
  font-family: var(--secondary-font);
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.ova-custom-events .item-event .venue-date-hover {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-color: var(--primary);
  background-color: var(--primary);
}
.ova-custom-events .item-event .venue-date-hover span {
  color: #fff;
}
.ova-custom-events .item-event .venue-date-hover i {
  color: #fff;
}
.ova-custom-events .item-event.item-event-paginate {
  display: none;
}
.ova-custom-events .item-event.item-event-paginate.page_1 {
  display: block;
}
.ova-custom-events .button-view-all {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: 1px solid var(--border);
  background-color: transparent;
}
.ova-custom-events .button-view-all:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-color: var(--primary);
  background-color: var(--primary);
}
.ova-custom-events .button-view-all:hover a {
  color: #fff;
}
.ova-custom-events .button-view-all a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 18px 33px;
  text-transform: uppercase;
}
.ova-custom-events .button-view-all a i {
  margin-left: 6px;
}
.ova-custom-events.template_2 .item-event {
  border: none;
}
.ova-custom-events.template_2 .item-event .item-club {
  text-align: left;
}
.ova-custom-events.template_2 .item-event .item-club .info {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 845px) {
  .ova-custom-events.template_2 .item-event .item-club .info {
    flex-direction: column !important;
  }
}
@media (max-width: 600px) {
  .ova-custom-events.template_2 .item-event .item-club .info {
    text-align: center !important;
  }
}
.ova-custom-events.template_2 .item-event .item-club .info .goals-logo {
  min-width: 120px;
  margin: 0 30px 0 0;
}
@media (max-width: 600px) {
  .ova-custom-events.template_2 .item-event .item-club .info .goals-logo {
    margin: 0 !important;
  }
}
.ova-custom-events.template_2 .item-event .item-club .info .goals-logo img {
  display: inline-block;
  width: 120px;
  object-fit: cover;
}
.ova-custom-events.template_2 .item-event .item-club .info .name-club {
  margin: 0 0 8px 0;
  padding-bottom: 8px;
  font-size: 32px;
}
@media (max-width: 767px) {
  .ova-custom-events.template_2 .item-event .item-club .info .name-club {
    font-size: 24px;
  }
}
.ova-custom-events.template_2 .item-event .item-club .info .name-club:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--border);
}
.ova-custom-events.template_2 .item-event .item-club.club-1 {
  text-align: right;
}
.ova-custom-events.template_2 .item-event .item-club.club-1 .info {
  flex-direction: row-reverse;
}
.ova-custom-events.template_2 .item-event .item-club.club-1 .info .goals-logo {
  margin: 0 0 0 30px;
}
.ova-custom-events.template_2 .item-event .result {
  padding: 20px 0;
  justify-content: space-between;
}
.ova-custom-events.template_2 .item-event .result .match h4 {
  font-size: 48px;
  color: var(--secondary);
}
.ova-custom-events.template_2 .item-event .result .match h6 {
  color: var(--secondary);
}
.ova-custom-events.template_2 .item-event .venue-date {
  border-top: none;
  padding: 10px;
}
.ova-custom-events.template_2 .button-view-all {
  margin: 24px 0 0 0;
  display: inline-block;
  border: 1px solid var(--primary);
}
.ova-custom-events.template_3 .item-event:hover .view-event {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.ova-custom-events.template_3 .item-event .result {
  padding: 30px 30px 10px 30px;
}
.ova-custom-events.template_3 .item-event .event-league-name {
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.ova-custom-events.template_3 .item-event .match h6 {
  width: 30px;
  height: 30px;
  font-size: 12px;
}
.ova-custom-events.template_3 .item-event .venue-date {
  border: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ova-custom-events.template_3 .item-event .venue-date .event-league-name, .ova-custom-events.template_3 .item-event .venue-date .venue, .ova-custom-events.template_3 .item-event .venue-date .date-time {
  margin-right: 12px;
}
.ova-custom-events.template_3 .item-event .venue-date i {
  color: var(--secondary);
  margin-right: 4px;
}
.ova-custom-events.template_3 .item-event .view-event {
  position: absolute;
  display: inline-block;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-color: var(--primary);
  background-color: var(--primary);
  padding: 8px 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ova-custom-events.template_3 .item-event .view-event {
    position: static;
    opacity: 1;
    visibility: visible;
    margin-bottom: 24px;
  }
}

.ova-custom-events-slider {
  text-align: center;
}
.ova-custom-events-slider .item-event {
  position: relative;
  background: transparent;
  border: 1px solid var(--border);
}
.ova-custom-events-slider .item-event:hover {
  border: 1px solid var(--primary);
}
.ova-custom-events-slider .item-event:hover .view-event {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.ova-custom-events-slider .item-event .result {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 767px) {
  .ova-custom-events-slider .item-event .result {
    padding: 30px 15px 10px 15px;
  }
}
.ova-custom-events-slider .item-event .event-league-name {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: var(--light);
  text-transform: uppercase;
}
.ova-custom-events-slider .item-event .item-club {
  width: 34%;
}
@media (max-width: 600px) {
  .ova-custom-events-slider .item-event .item-club {
    width: 100%;
  }
}
.ova-custom-events-slider .item-event .item-club .info .goals-logo {
  min-width: 80px;
}
.ova-custom-events-slider .item-event .item-club .info .goals-logo img {
  display: inline-block;
  width: 80px;
}
.ova-custom-events-slider .item-event .item-club .info .name-club {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  text-transform: capitalize;
  font-family: var(--primary-font);
}
.ova-custom-events-slider .item-event .item-club .info .outcome {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.ova-custom-events-slider .item-event .item-club .info .outcome.win {
  color: var(--primary);
}
.ova-custom-events-slider .item-event .item-club .info .value-performance {
  color: #3BC158;
}
.ova-custom-events-slider .item-event .item-club.club-2 {
  order: 3;
}
.ova-custom-events-slider .item-event .match {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.ova-custom-events-slider .item-event .match h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.ova-custom-events-slider .item-event .match h6 {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  font-family: var(--primary-font);
  margin: 0 20px;
}
.ova-custom-events-slider .item-event .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  margin: 0 0 24px 0;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ova-custom-events-slider .item-event .venue-date .event-league-name, .ova-custom-events-slider .item-event .venue-date .venue, .ova-custom-events-slider .item-event .venue-date .date-time {
  margin-right: 12px;
}
.ova-custom-events-slider .item-event .venue-date i {
  color: var(--secondary);
  margin-right: 4px;
}
.ova-custom-events-slider .item-event .view-event {
  position: absolute;
  display: inline-block;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-color: var(--primary);
  background-color: var(--primary);
  padding: 8px 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ova-custom-events-slider .item-event .view-event {
    position: static;
    opacity: 1;
    visibility: visible;
    margin-bottom: 24px;
  }
}
.ova-custom-events-slider.owl-carousel .owl-nav button {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 0;
  top: -100px;
  right: 0;
  width: 40px;
  height: 40px;
}
.ova-custom-events-slider.owl-carousel .owl-nav button.owl-prev, .ova-custom-events-slider.owl-carousel .owl-nav button.owl-next {
  background: transparent;
}
.ova-custom-events-slider.owl-carousel .owl-nav button.owl-prev:hover, .ova-custom-events-slider.owl-carousel .owl-nav button.owl-next:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: var(--primary);
}
.ova-custom-events-slider.owl-carousel .owl-nav button.owl-prev:hover i, .ova-custom-events-slider.owl-carousel .owl-nav button.owl-next:hover i {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: #fff;
}
.ova-custom-events-slider.owl-carousel .owl-nav button.owl-prev {
  margin-right: 56px;
}
.ova-custom-events-slider.owl-carousel .owl-nav button i {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-flex;
}
.ova-custom-events-slider .owl-dots {
  margin-top: 30px;
  text-align: center;
}
.ova-custom-events-slider .owl-dots .owl-dot {
  outline: none;
}
.ova-custom-events-slider .owl-dots .owl-dot span {
  width: 15px;
  height: 5px;
  margin: 0 3px;
  background: var(--border);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 2px;
}
.ova-custom-events-slider .owl-dots .owl-dot.active span {
  background: var(--primary);
  width: 30px;
}

.ova-upcoming-events {
  text-align: center;
}
.ova-upcoming-events .item-event {
  position: relative;
  background: transparent;
  border: 1px solid var(--border);
}
.ova-upcoming-events .item-event:hover .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.ova-upcoming-events .item-event:hover .venue-date-league-with-hover-button {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.ova-upcoming-events .item-event .result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 767px) {
  .ova-upcoming-events .item-event .result {
    padding: 30px 15px 10px 15px;
  }
}
.ova-upcoming-events .item-event .event-league-name {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 12px;
  text-align: center;
  color: var(--light);
  text-transform: uppercase;
}
.ova-upcoming-events .item-event .item-club {
  width: 34%;
}
@media (max-width: 600px) {
  .ova-upcoming-events .item-event .item-club {
    width: 100%;
  }
}
.ova-upcoming-events .item-event .item-club .info .goals-logo {
  min-width: 80px;
}
.ova-upcoming-events .item-event .item-club .info .goals-logo img {
  display: inline-block;
  width: 80px;
}
.ova-upcoming-events .item-event .item-club .info .name-club {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  text-transform: capitalize;
  font-family: var(--primary-font);
}
.ova-upcoming-events .item-event .item-club .info .outcome {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.ova-upcoming-events .item-event .item-club .info .outcome.win {
  color: var(--primary);
}
.ova-upcoming-events .item-event .item-club .info .value-performance {
  color: #3BC158;
}
.ova-upcoming-events .item-event .item-club.club-2 {
  order: 3;
}
.ova-upcoming-events .item-event .match {
  display: flex;
  justify-content: center;
  margin: 10px;
}
.ova-upcoming-events .item-event .match h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.ova-upcoming-events .item-event .match h6 {
  margin: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  font-family: var(--primary-font);
}
.ova-upcoming-events .item-event .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  font-size: 12px;
  padding: 12px;
}
.ova-upcoming-events .item-event .venue-date .venue, .ova-upcoming-events .item-event .venue-date .date-time {
  display: inline-block;
  margin-right: 12px;
}
.ova-upcoming-events .item-event .venue-date i {
  color: var(--secondary);
  margin-right: 4px;
}
.ova-upcoming-events .item-event .venue-date-league-with-hover-button {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  bottom: -20px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-color: var(--primary);
  background-color: var(--primary);
}
.ova-upcoming-events .item-event .venue-date-league-with-hover-button .event-league-name {
  display: inline-block;
  margin-right: 12px;
}
.ova-upcoming-events .item-event .venue-date-league-with-hover-button span, .ova-upcoming-events .item-event .venue-date-league-with-hover-button i, .ova-upcoming-events .item-event .venue-date-league-with-hover-button .event-league-name {
  color: #fff;
}
.ova-upcoming-events .item-event .view-event {
  display: block;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}
.ova-upcoming-events .item-event .view-event span {
  color: #fff;
}
@media (max-width: 460px) {
  .ova-upcoming-events .item-event .view-event {
    display: inline-block;
  }
}
.ova-upcoming-events .item-event .sp-template-countdown .sp-event-name {
  display: none;
}
.ova-upcoming-events .item-event.item-event-paginate {
  display: none;
}
.ova-upcoming-events .item-event.item-event-paginate.page_1 {
  display: block;
}
.ova-upcoming-events.template_2 .item-event .result {
  padding: 10px 20px;
}
.ova-upcoming-events.template_2 .item-event .event-league-name {
  margin: 24px 0 0 0;
}
.ova-upcoming-events.template_2 .item-event .item-club .info .goals-logo {
  min-width: 40px;
}
.ova-upcoming-events.template_2 .item-event .item-club .info .goals-logo img {
  display: inline-block;
  width: 40px;
}
.ova-upcoming-events.template_2 .item-event .item-club .info .name-club {
  font-size: 16px;
}
.ova-upcoming-events.template_2 .item-event .match {
  align-items: center;
}
.ova-upcoming-events.template_2 .item-event .venue-date {
  padding: 6px;
}

.ova-upcoming-event-slider {
  text-align: center;
}
.ova-upcoming-event-slider .item-event {
  position: relative;
  background: transparent;
  border: 1px solid #fff;
}
.ova-upcoming-event-slider .item-event:hover .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.ova-upcoming-event-slider .item-event:hover .venue-date-league-with-hover-button {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.ova-upcoming-event-slider .item-event .result {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  padding: 30px 30px 20px 30px;
}
@media (max-width: 767px) {
  .ova-upcoming-event-slider .item-event .result {
    padding: 30px 15px 15px 15px;
  }
}
.ova-upcoming-event-slider .item-event .event-league-name {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 13px;
  text-align: center;
  color: var(--light);
  text-transform: uppercase;
}
.ova-upcoming-event-slider .item-event .item-club {
  width: 34%;
}
@media (max-width: 600px) {
  .ova-upcoming-event-slider .item-event .item-club {
    width: 100%;
  }
}
.ova-upcoming-event-slider .item-event .item-club .info .goals-logo {
  min-width: 80px;
}
.ova-upcoming-event-slider .item-event .item-club .info .goals-logo img {
  display: inline-block;
  width: 80px;
}
.ova-upcoming-event-slider .item-event .item-club .info .name-club {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  text-transform: capitalize;
  font-family: var(--primary-font);
}
.ova-upcoming-event-slider .item-event .item-club .info .outcome {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.ova-upcoming-event-slider .item-event .item-club .info .outcome.win {
  color: var(--primary);
}
.ova-upcoming-event-slider .item-event .item-club .info .value-performance {
  color: #3BC158;
}
.ova-upcoming-event-slider .item-event .item-club.club-2 {
  order: 3;
}
.ova-upcoming-event-slider .item-event .match {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}
.ova-upcoming-event-slider .item-event .match h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.ova-upcoming-event-slider .item-event .match h6 {
  margin: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  font-family: var(--primary-font);
}
.ova-upcoming-event-slider .item-event .venue-date {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  font-size: 13px;
  padding: 13px;
}
.ova-upcoming-event-slider .item-event .venue-date .venue, .ova-upcoming-event-slider .item-event .venue-date .date-time {
  display: inline-block;
  margin-right: 12px;
}
.ova-upcoming-event-slider .item-event .venue-date i {
  color: var(--secondary);
  margin-right: 4px;
}
.ova-upcoming-event-slider .item-event .venue-date-league-with-hover-button {
  position: absolute;
  z-index: 1;
  display: block;
  line-height: 1.8;
  width: 100%;
  bottom: -20px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-color: var(--primary);
  background-color: var(--primary);
}
.ova-upcoming-event-slider .item-event .venue-date-league-with-hover-button .event-league-name {
  display: inline-block;
  margin-right: 12px;
}
.ova-upcoming-event-slider .item-event .venue-date-league-with-hover-button span, .ova-upcoming-event-slider .item-event .venue-date-league-with-hover-button i, .ova-upcoming-event-slider .item-event .venue-date-league-with-hover-button .event-league-name {
  color: #fff;
}
.ova-upcoming-event-slider .item-event .view-event {
  display: block;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.ova-upcoming-event-slider .item-event .view-event span {
  color: #fff;
}
@media (max-width: 460px) {
  .ova-upcoming-event-slider .item-event .view-event {
    display: inline-block;
  }
}
.ova-upcoming-event-slider .item-event .sp-template-countdown .sp-event-name {
  display: none;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .owl-item {
  opacity: 0.5;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .owl-item.active.center {
  opacity: 1;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event {
  background: transparent;
  border: 0;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .result {
  padding: 0;
  align-items: center;
}
@media (max-width: 767px) {
  .ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .result {
    margin-bottom: 25px;
  }
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .event-league-name {
  font-size: 16px;
  color: #EBEBEB;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .item-club .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .item-club .info .goals-logo {
  min-width: 80px;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .item-club .info .goals-logo img {
  width: 80px;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .item-club .info .name-club {
  margin: 0 20px;
  font-size: 24px;
  color: #fff;
}
@media (max-width: 600px) {
  .ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .item-club .info .name-club {
    font-size: 20px;
  }
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .item-club.club-2 .info {
  flex-direction: row-reverse;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .match {
  margin: 0;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .match h6 {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
  color: #fff;
  font-family: var(--secondary-font);
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .venue-date {
  font-size: 16px;
  color: #EBEBEB;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .venue-date .venue, .ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .venue-date .date-time {
  margin-right: 20px;
}
.ova-upcoming-event-slider.upcoming-event-slider-template_2 .item-event .venue-date i {
  color: #fff;
}
.ova-upcoming-event-slider.owl-carousel .owl-nav button {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 0;
  top: -100px;
  right: 0;
  width: 40px;
  height: 40px;
}
.ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-prev, .ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-next {
  background: transparent;
}
.ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-prev:hover, .ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-next:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: var(--primary);
}
.ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-prev:hover i, .ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-next:hover i {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: #fff;
}
.ova-upcoming-event-slider.owl-carousel .owl-nav button.owl-prev {
  margin-right: 56px;
}
.ova-upcoming-event-slider.owl-carousel .owl-nav button i {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-flex;
}
.ova-upcoming-event-slider .owl-dots {
  margin-top: 30px;
  text-align: center;
}
.ova-upcoming-event-slider .owl-dots .owl-dot {
  outline: none;
}
.ova-upcoming-event-slider .owl-dots .owl-dot span {
  transform: skew(-10deg);
  width: 9px;
  height: 10px;
  margin: 0 3px;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
}
.ova-upcoming-event-slider .owl-dots .owl-dot.active span {
  background: transparent;
}

.ova-scopress-player {
  display: grid;
  grid-template-columns: 76% 24%;
  background-color: var(--background2);
  border: 1px solid var(--border);
}
@media (max-width: 1280px) {
  .ova-scopress-player {
    grid-template-columns: 100%;
  }
}
.ova-scopress-player .scopress-player .item-player .info {
  position: relative;
  padding-right: 25px;
  /* next prev control slider*/
}
.ova-scopress-player .scopress-player .item-player .info .squad-number {
  margin: 0 0 12px 0;
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 40px;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 500;
}
.ova-scopress-player .scopress-player .item-player .info .squad-number:before {
  content: "#";
  font-size: 20px;
  vertical-align: top;
}
.ova-scopress-player .scopress-player .item-player .info .name {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 30px;
  line-height: 1.3;
}
.ova-scopress-player .scopress-player .item-player .info .name a {
  color: var(--heading);
}
.ova-scopress-player .scopress-player .item-player .info .name a:hover {
  color: var(--primary);
}
.ova-scopress-player .scopress-player .item-player .info .position {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ova-scopress-player .scopress-player .item-player .info .view-profile {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--primary);
  border: 1px solid var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 4px 20px;
  text-transform: uppercase;
}
.ova-scopress-player .scopress-player .item-player .info .view-profile i {
  padding-left: 6px;
}
.ova-scopress-player .scopress-player .item-player .info .view-profile:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: var(--primary);
  color: #fff;
}
.ova-scopress-player .scopress-player .item-player .info .arrow-next-prev-control button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin: 0 8px 0 0;
  padding: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.ova-scopress-player .scopress-player .item-player .info .arrow-next-prev-control button:before {
  opacity: 1;
  color: var(--text);
  font-family: ovaicon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.ova-scopress-player .scopress-player .item-player .info .arrow-next-prev-control button:hover {
  background-color: var(--primary);
}
.ova-scopress-player .scopress-player .item-player .info .arrow-next-prev-control button:hover:before {
  color: #fff;
}
.ova-scopress-player .scopress-player .item-player .info .arrow-next-prev-control button.custom-slick-prev:before {
  content: "\f101";
}
.ova-scopress-player .scopress-player .item-player .info .arrow-next-prev-control button.custom-slick-next:before {
  content: "\f102";
}
.ova-scopress-player .scopress-player .item-player .details {
  position: relative;
  padding: 0 0 0 35px;
  border-left: 1px solid var(--border);
}
@media (max-width: 1200px) {
  .ova-scopress-player .scopress-player .item-player .details {
    border-left: none;
    padding: 35px 0 0 0;
  }
}
.ova-scopress-player .scopress-player .item-player .details .club-name {
  margin: 20px 0;
  font-size: 24px;
  text-transform: uppercase;
}
.ova-scopress-player .scopress-player .sp-player-name, .ova-scopress-player .scopress-player .sp-player-squad-number {
  display: none;
}
.ova-scopress-player .scopress-player-single {
  display: grid;
  padding: 35px;
  border-right: 1px solid var(--border);
}
.ova-scopress-player .scopress-player-single .item-player {
  display: grid;
  align-items: center;
  grid-template-columns: auto 0.9fr 1.1fr;
}
@media (max-width: 1200px) {
  .ova-scopress-player .scopress-player-single .item-player {
    grid-template-columns: 1fr;
    border-right: none;
  }
}
.ova-scopress-player .scopress-player-single .item-player .media {
  position: relative;
  overflow: hidden;
}
.ova-scopress-player .scopress-player-single .item-player .media img {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: 450px;
  max-width: 320px;
  display: block;
  object-fit: cover;
  margin: 0 35px 0 0;
}
@media (max-width: 1200px) {
  .ova-scopress-player .scopress-player-single .item-player .media img {
    margin: 0 0 35px 0;
  }
}
@media (max-width: 767px) {
  .ova-scopress-player .scopress-player-single .item-player .media img {
    height: auto;
    max-width: 100%;
  }
}
.ova-scopress-player .scopress-player-list {
  padding: 35px;
  padding-right: 0;
}
.ova-scopress-player .scopress-player-list .slick-current.slick-active .item-player-list:before {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transform: scaleY(1);
}
.ova-scopress-player .scopress-player-list .slick-current.slick-active .item-player-list .name a {
  color: var(--primary);
}
.ova-scopress-player .scopress-player-list .item-player-list {
  position: relative;
  display: flex;
  align-items: center;
}
.ova-scopress-player .scopress-player-list .item-player-list:before {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 4px;
  height: 130px;
  background: var(--primary);
}
.ova-scopress-player .scopress-player-list .item-player-list:hover .name a {
  color: var(--primary);
}
.ova-scopress-player .scopress-player-list .item-player-list .name {
  margin: 0;
  font-size: 18px;
}
.ova-scopress-player .scopress-player-list .item-player-list .name a {
  color: var(--heading);
}
.ova-scopress-player .scopress-player-list .item-player-list .media {
  margin-right: 20px;
}
.ova-scopress-player .scopress-player-list .item-player-list .media img {
  object-fit: cover;
  width: 80px;
  height: 80px;
}
.ova-scopress-player .scopress-player-list .item-player-list .squad-number {
  margin-right: 30px;
}
.ova-scopress-player .scopress-player-list .item-player-list .squad-number:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e917";
  margin-right: 4px;
}
.ova-scopress-player .scopress-player-list .item-player-list .position {
  text-transform: uppercase;
  overflow: hidden;
}
.ova-scopress-player .no-data {
  font-size: 32px;
}

/*20.0 Sportspress*/
.sportspress .sp-template-league-table {
  background-color: transparent;
  margin-bottom: 0;
}
.sportspress .sp-template-league-table .sp-table-caption {
  display: none;
}
.sportspress .sp-template-league-table .sp-table-wrapper table thead tr {
  background-color: var(--background2);
}
.sportspress .sp-template-league-table .sp-table-wrapper table thead tr th {
  border: none;
}
.sportspress .sp-template-league-table .sp-table-wrapper table tbody tr {
  border-bottom: 1px solid #E2E6E8;
}
.sportspress .sp-template-league-table .sp-table-wrapper table tbody tr:hover {
  background-color: var(--primary);
}
.sportspress .sp-template-league-table .sp-table-wrapper table tbody tr:hover td {
  color: #fff;
}
.sportspress .sp-template-league-table .sp-table-wrapper table tbody tr td, .sportspress .sp-template-league-table .sp-table-wrapper table tbody tr th {
  border: unset;
  padding-top: 17px;
  padding-bottom: 17px;
}
.sportspress .sp-template-league-table .sp-table-wrapper table .data-rank {
  padding-left: 35px;
  padding-right: 35px;
}
@media (max-width: 767px) {
  .sportspress .sp-template-league-table .sp-table-wrapper table .data-rank {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.sportspress .sp-template-league-table .sp-table-wrapper table .data-name {
  font-weight: 700;
  padding-left: 35px;
}
@media (max-width: 767px) {
  .sportspress .sp-template-league-table .sp-table-wrapper table .data-name {
    padding-left: 10px;
  }
}
.sportspress .sp-template-league-table .sp-table-wrapper table .data-pts {
  font-weight: 700;
}

.ova-custom-league-tables .sportspress .sp-template-league-table .sp-table-wrapper table thead tr {
  background-color: transparent;
}
.ova-custom-league-tables .sportspress .sp-template-league-table .sp-table-wrapper table tbody tr {
  border-bottom: 0;
}

.ova-custom-league-tables-2 .sportspress .sp-template-league-table .sp-table-wrapper table thead tr {
  border-bottom: 1px solid var(--border);
  background-color: transparent;
}

article.sp_player {
  margin-bottom: 0;
  background: transparent;
  padding: 60px 40px 0 40px;
}
@media (max-width: 1023px) {
  article.sp_player {
    padding: 40px 20px 0 20px;
  }
}
@media (max-width: 767px) {
  article.sp_player .sp-section-content-details {
    text-align: center;
  }
}
article.sp_player .sp-section-content-excerpt {
  padding-bottom: 25px;
}
article.sp_player .sp-template {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  article.sp_player .sp-template.sp-template-photo {
    float: none;
    margin: 0 auto;
  }
}
article.sp_player .sp-post-content {
  padding-bottom: 20px;
}
article.sp_player .sp-post-content h4 {
  position: relative;
  margin: 0 0 32px 0;
  padding: 0 0 20px 24px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  border-bottom: 1px solid var(--border);
}
article.sp_player .sp-post-content h4:before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--primary);
}

.sp-player-name {
  display: inline-block;
  margin: 0 0 12px 0;
  font-size: 45px;
  line-height: 1.2;
}

.sp-player-squad-number {
  display: block;
  color: var(--heading);
  font-size: 20px;
  font-weight: 500;
}
.sp-player-squad-number:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e917";
  color: var(--primary);
  margin-right: 4px;
}

@media (min-width: 768px) {
  .sp-event-blocks .team-logo {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

article.sp_team {
  margin-bottom: 0;
}
article.sp_team .post-content {
  margin-bottom: 0 !important;
}
article.sp_team .sp-section-content {
  clear: both;
}
article.sp_team .sp-section-content .sp-template {
  margin-bottom: 50px;
}
article.sp_team .sp-section-content .sp-template.sp-template-team-logo {
  margin-bottom: 20px;
  max-width: 100%;
}
article.sp_team .sp-section-content .sp-template.sp-template-team-logo .sp-team-title {
  display: inline-block;
  position: relative;
  top: -15px;
  margin: 0 0 0 30px;
  font-size: 48px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  article.sp_team .sp-section-content .sp-template.sp-template-team-logo .sp-team-title {
    top: 0;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  article.sp_team .sp-section-content .sp-template.sp-template-photo {
    float: none;
    margin: 0 auto;
  }
}
article.sp_team .sp-section-content .sp-template-details .sp-team-details {
  padding-bottom: 30px;
}

body.sportspress-page {
  background: var(--background1);
}
body.sportspress, body .sportspress {
  /* table */
}
body.sportspress .sp-data-table tbody a, body .sportspress .sp-data-table tbody a {
  border-bottom: none;
}
body.sportspress .sp-event-matchday, body .sportspress .sp-event-matchday {
  text-align: center;
}
body.sportspress table tbody tr td, body .sportspress table tbody tr td {
  color: var(--heading);
}

/* select dropdown*/
.sp-section-content-selector {
  margin-bottom: 30px;
}
.sp-section-content-selector select:not([size]):not([multiple]) {
  border: 1px solid var(--heading);
  color: var(--heading);
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: 600;
}

/* remove statistics caption */
.sp-section-content-statistics h3.sp-post-caption {
  display: none;
}

/* sp post content p margin*/
.sp-post-content p:not(:last-child) {
  margin: 0 0 20px 0;
}

/* table scrollbar */
.sp-scrollable-table-wrapper::-webkit-scrollbar {
  height: 6px;
  background: var(--background2);
}
.sp-scrollable-table-wrapper::-webkit-scrollbar-thumb {
  height: 6px;
  background: var(--primary);
}

/* template details dl dt dd*/
.sp-template-details dl {
  margin: 20px 0;
}
.sp-template-details dl dd, .sp-template-details dl dt {
  line-height: 1.5;
  padding: 11px 0;
}
.sp-template-details dl dd {
  margin: 0;
  text-align: right;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
}
.sp-template-details dl dd img {
  display: inline-block;
  margin-right: 4px;
}
.sp-template-details dl dd:last-child {
  border-bottom: none;
}
.sp-template-details dl dd:hover {
  color: var(--primary);
}
.sp-template-details dl dt {
  float: left;
}

/* pagination sp default */
.sp-table-wrapper .dataTables_paginate {
  margin: 30px 0 20px 0;
}
.sp-table-wrapper .dataTables_paginate .next, .sp-table-wrapper .dataTables_paginate .previous {
  float: none;
}
.sp-table-wrapper .dataTables_paginate .paginate_button {
  margin: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--background2);
  color: var(--text);
  font-weight: 700;
  width: auto;
  height: 40px;
  padding: 0 16px;
}
.sp-table-wrapper .dataTables_paginate .paginate_button.current {
  opacity: 1;
  background-color: var(--primary);
  color: #fff;
}
.sp-table-wrapper .dataTables_paginate .paginate_button:hover {
  background-color: var(--primary);
  color: #fff;
}

/* sp pagination in elementor*/
.spoclub-sp-pagination {
  margin: 40px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.spoclub-sp-pagination .page-numbers {
  cursor: pointer;
  margin: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--background2);
  color: var(--text);
  font-weight: 700;
  width: auto;
  height: 40px;
  width: 40px;
}
.spoclub-sp-pagination .page-numbers i {
  font-size: 24px;
}
.spoclub-sp-pagination .page-numbers.current {
  opacity: 1;
  background-color: var(--primary);
  color: #fff;
}
.spoclub-sp-pagination .page-numbers.prev, .spoclub-sp-pagination .page-numbers.next {
  display: none;
}
.spoclub-sp-pagination .page-numbers:hover {
  background-color: var(--primary);
  color: #fff;
}

/* heading */
.sp-table-caption, .sp-staff-name, .sp-post-caption {
  position: relative;
  margin: 0 0 32px 0;
  padding: 0 0 20px 24px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  border-bottom: 1px solid var(--border);
}
.sp-table-caption:before, .sp-staff-name:before, .sp-post-caption:before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--primary);
}

.sp-event-calendar .sp-table-caption {
  font-size: 18px;
  margin: 0;
  padding: 10px 0;
  text-transform: capitalize;
  border-bottom: none;
}
.sp-event-calendar .sp-table-caption:before {
  content: none;
}

/* width iframe video */
.sp-event-video iframe {
  width: 100%;
}
@media (max-width: 767px) {
  .sp-event-video iframe {
    height: 360px;
  }
}

/* shortcode countdown template */
.sp-template-countdown {
  text-align: center;
}
.sp-template-countdown .team-logo {
  width: auto;
}
.sp-template-countdown .event-name {
  margin: 0 0 36px 0;
  font-size: 36px;
  overflow: unset;
  clear: none;
}
.sp-template-countdown .sp-countdown {
  margin: 0;
  clear: none;
}
.sp-template-countdown .sp-countdown span {
  overflow: hidden;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  background-color: var(--secondary);
  color: #fff;
  padding: 8px;
}
.sp-template-countdown .sp-countdown span small {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  padding-left: 6px;
}
.sp-template-countdown .sp-countdown span small:before {
  position: absolute;
  content: "";
  left: 0;
  top: -12px;
  height: calc(100% + 24px);
  width: 1px;
  background: transparent;
}
@media (max-width: 430px) {
  .sp-template-countdown .sp-countdown span {
    padding: 6px;
    font-size: 18px;
  }
}

/* sp view all link button */
.sp-view-all-link {
  margin-top: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--primary);
  padding: 16px 32px;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.sp-view-all-link a {
  transition: all 0.3s ease;
  color: #fff;
}
.sp-view-all-link:hover {
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid var(--primary);
}
.sp-view-all-link:hover a {
  transition: all 0.3s ease;
  color: var(--primary);
}

/* vertical align icon in sp*/
.sportspress [class^=sp-icon-], .sportspress [class*=" sp-icon-"], .sportspress .dashicons {
  vertical-align: text-bottom;
}

/* player gallery */
.gallery.gallery-columns-2 .sp-player-gallery-wrapper {
  grid-template-columns: 1fr 1fr;
}
.gallery.gallery-columns-3 .sp-player-gallery-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}
.gallery.gallery-columns-4 .sp-player-gallery-wrapper {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .gallery.gallery-columns-4 .sp-player-gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.gallery.gallery-columns-5 .sp-player-gallery-wrapper {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .gallery.gallery-columns-5 .sp-player-gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.gallery .sp-player-gallery-wrapper {
  display: grid;
  gap: 30px;
}
@media (max-width: 768px) {
  .gallery .sp-player-gallery-wrapper {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 420px) {
  .gallery .sp-player-gallery-wrapper {
    grid-template-columns: 1fr !important;
  }
}
.gallery .sp-player-gallery-wrapper dl.gallery-item {
  margin: 0;
  display: inline-block;
}
.gallery .sp-player-gallery-wrapper dl.gallery-item img {
  display: block;
  width: 100%;
}
.gallery .sp-player-gallery-wrapper dl.gallery-item dd {
  margin: 0;
  padding: 20px 30px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  font-family: var(--secondary-font);
  font-size: 20px;
  color: var(--heading);
  font-weight: 700;
}
.gallery .sp-player-gallery-wrapper dl.gallery-item dd.gallery-caption strong {
  font-size: 24px;
  font-weight: 500;
}
.gallery .sp-player-gallery-wrapper dl.gallery-item dd.gallery-caption strong:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 20px;
  line-height: 1;
  content: "\e917";
  color: var(--primary);
  margin-right: 4px;
}
.gallery .sp-player-gallery-wrapper dl.gallery-item dd.gallery-caption .positions {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  font-family: var(--primary-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
}

/* tab menu */
.sp-tab-menu {
  text-align: center;
  margin-bottom: 35px;
}
.sp-tab-menu .sp-tab-menu-item a {
  opacity: 1;
  font-weight: 500;
  border: 1px solid var(--border);
  padding: 6px 15px;
  margin: 0 5px;
}
.sp-tab-menu .sp-tab-menu-item.sp-tab-menu-item-active a {
  color: var(--primary);
}

/* general event detail*/
article.sp_event {
  background: transparent;
  padding: 60px 40px 0 40px;
  /* event squad table */
}
@media (max-width: 1023px) {
  article.sp_event {
    padding: 40px 20px 0 20px;
  }
}
article.sp_event .sp-template {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  article.sp_event .sp-template.sp-template-photo {
    float: none;
    margin: 0 auto;
  }
}
article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons, article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons:nth-child(2n) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons, article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons:nth-child(2n) {
    float: none;
    width: 100%;
    padding: 0;
  }
}
article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons .sp-table-caption, article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons:nth-child(2n) .sp-table-caption {
  padding: 0;
  margin: 0 0 12px 0;
  text-transform: capitalize;
  border-bottom: none;
}
article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons .sp-table-caption:before, article.sp_event .sp-event-performance-teams .sp-template-event-performance-icons:nth-child(2n) .sp-table-caption:before {
  content: none;
}

/* event calendar */
.ova-sp-calendar-style1 .sp-template-event-calendar .sp-event-calendar {
  border: none;
}
.ova-sp-calendar-style1 .sp-template-event-calendar .sp-event-calendar .sp-table-caption {
  border: none;
  font-size: 24px;
  padding: 0 0 20px 0;
}
.ova-sp-calendar-style1 .sp-template-event-calendar .sp-event-calendar thead {
  background: transparent;
}
.ova-sp-calendar-style1 .sp-template-event-calendar .sp-event-calendar thead tr th {
  border: none;
}
.ova-sp-calendar-style1 .sp-template-event-calendar .sp-event-calendar tbody tr td {
  height: auto;
  border: none;
}

.sp-template-event-calendar {
  background: transparent;
  padding: 40px 30px 30px 30px;
}
@media (max-width: 767px) {
  .sp-template-event-calendar {
    padding: 30px 18px 18px 18px;
  }
}
.sp-template-event-calendar .sp-event-calendar {
  margin: 0;
}
.sp-template-event-calendar .sp-event-calendar .sp-table-caption {
  padding: 25px 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  border: 1px solid var(--border);
  border-bottom: 0;
}
.sp-template-event-calendar .sp-event-calendar thead {
  background: var(--background2);
}
.sp-template-event-calendar .sp-event-calendar tfoot tr td {
  padding: 10px;
}
.sp-template-event-calendar .sp-event-calendar tbody tr td {
  height: 82px;
}
@media (max-width: 767px) {
  .sp-template-event-calendar .sp-event-calendar tbody tr td {
    height: auto;
  }
}
.sp-template-event-calendar .sp-event-calendar tbody tr td.match_day {
  background-color: var(--primary);
}
.sp-template-event-calendar .sp-event-calendar tbody tr td.match_day a {
  font-weight: 700;
  color: #fff;
}
.sp-template-event-calendar .sp-event-calendar tbody tr td.sp-highlight {
  background-color: var(--secondary);
  color: #fff;
}

/* end event calendar */
/* event list ( calendar ) */
.sp-template-event-list {
  background: transparent;
  padding: 40px 30px;
}
@media (max-width: 767px) {
  .sp-template-event-list {
    padding: 30px 18px;
  }
}
.sp-template-event-list table.sp-event-list thead {
  background-color: var(--background2);
}
.sp-template-event-list table.sp-event-list thead tr th {
  padding: 12px 16px;
}
.sp-template-event-list table.sp-event-list tbody tr:hover {
  background: var(--primary);
}
.sp-template-event-list table.sp-event-list tbody tr:hover td {
  color: #fff;
}
.sp-template-event-list table.sp-event-list tbody tr:hover td a {
  color: #fff;
}
.sp-template-event-list table.sp-event-list tbody tr td {
  border: none;
  padding: 12px 16px;
}
.sp-template-event-list table.sp-event-list tbody tr td a:hover {
  color: #fff;
}

/* event logo blocks */
.sp-template-event-logos-block {
  /* event blocks table */
}
.sp-template-event-logos-block table.sp-event-blocks {
  position: relative;
  border: none;
}
.sp-template-event-logos-block table.sp-event-blocks:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -60px;
  width: calc(100% + 120px);
  height: 1px;
  background: var(--background2);
}
.sp-template-event-logos-block table.sp-event-blocks td {
  border: none;
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-league-name {
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
@media (max-width: 600px) {
  .sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result {
    flex-direction: column;
  }
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .team-logo {
  margin: 0;
  width: 35%;
}
@media (max-width: 600px) {
  .sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .team-logo {
    width: 100%;
  }
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .logo-even {
  order: 2;
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .logo-even .sp-team-name .text-result {
  right: 0;
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .sp-event-results {
  margin: 10px 18px;
  font-size: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .sp-event-results {
    font-size: 32px;
  }
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .sp-event-results span.vs {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  font-family: var(--primary-font);
  margin: 0 30px;
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .sp-team-name {
  position: relative;
  display: inline-block;
  margin: 10px;
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .sp-team-name {
    display: block;
    font-size: 18px;
  }
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .text-result {
  position: absolute;
  bottom: -25px;
  left: 0;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 600px) {
  .sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .text-result {
    position: static;
  }
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-logo-result .text-result.result-win {
  color: var(--primary);
}
.sp-template-event-logos-block table.sp-event-blocks td.sp-event-venue-date {
  padding: 0 0 40px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sp-template-event-logos-block table.sp-event-blocks td.sp-event-venue-date {
    flex-direction: column;
  }
}
.sp-template-event-logos-block table.sp-event-blocks .sp-event-date, .sp-template-event-logos-block table.sp-event-blocks .sp-event-venue-board {
  width: 50%;
  display: inline-block;
  margin: 0 10px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .sp-template-event-logos-block table.sp-event-blocks .sp-event-date, .sp-template-event-logos-block table.sp-event-blocks .sp-event-venue-board {
    width: 100%;
    text-align: center !important;
  }
}
.sp-template-event-logos-block table.sp-event-blocks .sp-event-date:before, .sp-template-event-logos-block table.sp-event-blocks .sp-event-venue-board:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.sp-template-event-logos-block table.sp-event-blocks .sp-event-date {
  text-align: left;
}
.sp-template-event-logos-block table.sp-event-blocks .sp-event-date:before {
  content: "\e905";
}
.sp-template-event-logos-block table.sp-event-blocks .sp-event-venue-board {
  text-align: right;
}
.sp-template-event-logos-block table.sp-event-blocks .sp-event-venue-board:before {
  content: "\e91d";
}

/* event blog */

/* ------------------------------------------------------------------
 *  Premium overrides for EmporiaFC
 *
 *  The rules below customise the default Spoclub styling to better match
 *  the EmporiaFC brand.  They rely on CSS variables declared in the
 *  :root selector to control colours, fonts and spacings.  You can
 *  further adjust these variables to refine the look and feel across
 *  all widgets.  These overrides are appended after the original
 *  Spoclub styles so they take precedence without modifying the
 *  extracted CSS above.
 */


/*
 * NOTE
 * ----
 * A previous build appended a large "premium override" block here that:
 *  - imported Google Fonts,
 *  - declared :root variables,
 *  - forced backgrounds using !important on many nested elements.
 *
 * That prevented Elementor controls from changing colours/backgrounds.
 * This plugin intentionally avoids opinionated styling.
 */
