* {
  padding: 0px;
  margin: 0px;
  /*direction: rtl;*/
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
}

:root {
  --text-color: #161616;
  --active-color: #00e400;
  --secondary-active-color: #1e9818;
  --main-transition: 0.4s;
}

body {
  background-image: url("../../images/img/sc_bgd.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  margin: 0;
  padding: 0;
  /*width: 1140px;*/
  /*margin: 50px auto;*/
  /*padding: 40px;*/
  /*border-radius: 5px;*/
}

.header {
  display: flex;
  justify-content: space-between;
}

.header .heading h2 {
  color: white;
}

.header .header-tabs {
  display: flex;
  gap: 0px;
}

.header .header-tabs a,
.tabs .tabs-btns a {
  padding: 7px 35px;
  text-decoration: none;
  color: var(--text-color);
  background-color: white;
  transition: var(--main-transition);
  font-size: 14px;
}

.header .header-tabs a:nth-child(1),
.tabs .tabs-btns a:nth-child(1) {
  border-radius: 0px 5px 5px 0px;
}

.header .header-tabs a:nth-child(2),
.tabs .tabs-btns a:nth-child(2) {
  border-right: 1px solid #d2d6db;
  border-left: 1px solid #d2d6db;
}

.header .header-tabs a:nth-child(2),
.tabs .tabs-btns a:nth-child(3) {
  border-radius: 5px 0px 0px 5px;
}

.header .header-tabs a:hover,
.tabs .tabs-btns a:hover {
  color: white;
  background-color: var(--active-color);
}

.header .header-tabs .btn-active,
.tabs .tabs-btns .btn-active {
  color: white;
  background-color: var(--active-color);
}

.teams {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  gap: 30px;
  position: relative;
}

.teams .teams-info {
  display: flex;
  flex-direction: row;
  gap: 60px;
  width: 75%;
  justify-content: center;
  align-items: center;
}

.teams-info .host-team,
.teams-info .guest-team {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.teams-info .guest-team {
  flex-direction: row-reverse;
}

.teams-info .host-team .host-team-info,
.teams-info .guest-team .guest-team-info,
.league-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.league-info img {
  object-fit: contain;
}

.team-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.teams-info .host-team .host-team-info h2,
.teams-info .guest-team .guest-team-info h2 {
  font-weight: 500;
  padding-bottom: 10px;
}

.teams-info .host-team .host-team-score,
.teams-info .guest-team .guest-team-score {
  color: white;
  font-size: 60px;
  padding: 20px;
}

.teams .arrow {
  color: var(--text-color);
  position: absolute;
  font-size: 13px;
  padding: 15px 12px;
  background-color: #fff;
  border-radius: 5px;
  transition: var(--main-transition);
  width: 45px;
}

.teams .arrow:hover {
  background-color: var(--active-color);
  color: white;
  cursor: pointer;
}
.teams .fa-angle-left {
  left: 0;
}

.teams .fa-angle-right {
  right: 0;
}

.teams .live {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.teams .live .live-data {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.teams .live .live-data p {
  width: 175px;
  text-align: center;
  color: white;
  direction: ltr;
}

/* ============= Tabs ============== */

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tabs {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tabs .tabs-btns {
  width: 100%;
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
}

.tabs .tabs-btns a {
  width: calc(75% / 3);
  text-align: center;
  padding: 5px 35px;
}

.tabs .tabs-btns .btn-active {
  background-color: var(--secondary-active-color);
}

.tabs .tabs-btns a:hover {
  background-color: var(--secondary-active-color);
  color: white;
}

.events {
  display: flex;
  width: 75%;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 5px;
  padding: 10px 0;
}

.events .event {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  text-align: center;
}

.events .event:not(:nth-of-type(1)) {
  border-bottom: 1px solid #0000001f;
}

.events .event .host-event,
.events .event .guest-event {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 200px;
}

.events .event .host-event img,
.events .event .guest-event img {
  object-fit: contain;
}
.events .event .guest-event {
  flex-direction: row-reverse;
}

.events .event .host-event .host-player-event,
.events .event .guest-event .guest-player-event {
  display: flex;
  align-items: center;
  justify-content: center;
}

.events .event .event-time-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
}
.more-details-container {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: white;
  width: 75%;
  padding: 20px;
  border-radius: 5px;
}
.more-details {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: px;
  grid-row-gap: 10px;
  width: 100%;
}

.more-details .line {
  display: flex;
  justify-content: space-between;
}

.league-details h4 {
  font-weight: 600;
}

.reserve-ticket{
  display: flex;
  justify-content: center;
  align-items: center;


}

.reserve-btn{
  padding: 2px 2px;
  background-color: #F7F7F8;
  width: 25%;
  text-align: center;
  border-radius: 5px;
}
