* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1em;
  color: black;
  overflow-y: overlay;
}

a {
  text-decoration: none;
  color: black;
}

.emptyDataP {
  margin-bottom: 0;
  width: 100%;
  color: grey;
  text-align: center;
}

/* ----------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 30;
  width: 100%;
  height: 100vh;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.5s ease 0.2s;
  transform: translateX(-100%);
}
@media (min-width: 992px) {
  .navbar {
    position: initial;
    order: 2;
    transform: translate(0) !important;
    margin-left: auto;
    width: unset;
    height: 4rem;
    background: none;
  }
}

.burgerNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 4em;
  z-index: 31;
  margin: 0;
  padding: 0.9em;
  background: #E12B38 !important;
  cursor: pointer;
  transition: 0.5s ease 0.1s;
}
@media (min-width: 992px) {
  .burgerNav {
    display: none;
  }
}

.mainNavUL {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
  text-decoration: none;
  padding-left: 0;
}
@media (min-width: 992px) {
  .mainNavUL {
    flex-direction: row;
  }
}

.mainNavLi {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}
.mainNavLi:last-of-type {
  border-top: 2px solid rgba(241, 241, 241, 0.8);
  margin: 1rem auto 0;
  padding-top: 1rem;
}
.mainNavLi:last-of-type a[href="account.php"] {
  display: none;
}
@media (min-width: 992px) {
  .mainNavLi {
    margin: 0 0.3rem;
    font-size: 1rem;
  }
  .mainNavLi:first-of-type {
    margin-left: 0;
    margin-top: 0;
  }
  .mainNavLi:last-of-type {
    position: relative;
    margin: 0 0 0 2rem;
    padding: 0 6vw 0 1rem;
    border-top: none;
    border-left: 2px solid rgba(241, 241, 241, 0.8);
  }
  .mainNavLi:last-of-type:last-of-type a[href="account.php"] {
    display: flex;
  }
  .mainNavLi span {
    display: initial;
    margin-left: 0.7rem;
  }
}
@media (min-width: 1200px) {
  .mainNavLi {
    margin: 0 0.5rem;
  }
  .mainNavLi:hover {
    transform: scale(1.05);
  }
  .mainNavLi:hover .subNavUl {
    display: flex;
    opacity: 1;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 349.99px) and (orientation: portrait) {
  .mainNavLi {
    margin: 0.5rem 0;
    font-size: 1.5rem;
  }
}
@media only screen and (min-device-width: 350px) and (max-device-width: 992px) and (orientation: portrait) {
  .mainNavLi {
    margin: 0.7rem 0;
    font-size: 1.5rem;
  }
}
@media only screen and (min-device-width: 321px) and (max-device-width: 599.99px) and (orientation: landscape) {
  .mainNavLi {
    margin: 0.2rem 0;
    font-size: 1.1rem;
  }
}
@media only screen and (min-device-width: 600px) and (max-device-width: 749.99px) and (orientation: landscape) {
  .mainNavLi {
    margin: 0.3rem 0;
    font-size: 1.2rem;
  }
}
@media only screen and (min-device-width: 750px) and (max-device-width: 991.99px) and (orientation: landscape) {
  .mainNavLi {
    margin: 0.3rem 0;
    font-size: 1.2rem;
  }
}

.mainNavA {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0.5em;
  transition: 0.4s ease;
}
.mainNavA:last-of-type {
  flex-direction: row;
}

@media (min-width: 992px) {
  .logoA {
    margin-left: 6%;
  }
}

.loginImgC {
  overflow: hidden;
  margin-right: 0.6rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(26, 26, 26, 0.808);
}
@media (min-width: 992px) {
  .loginImgC {
    display: flex;
    align-items: center;
    width: 33.75px;
    height: 45px;
    margin-right: 0;
  }
}

.loginImg {
  min-width: 33.75px;
  width: auto;
  height: 100%;
  border-radius: 0.5rem;
}

.subNavUl {
  display: none;
}
@media (min-width: 992px) {
  .subNavUl {
    position: absolute;
    top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.95);
    list-style: none;
    border-top: 2px solid rgba(241, 241, 241, 0.8);
    box-shadow: 0 3px 4px rgba(133, 128, 128, 0.5);
    opacity: 0;
  }
}

.subNavLi {
  margin: 0;
  padding: 1rem 0;
}
.subNavLi:last-of-type {
  border-top: 2px solid rgba(241, 241, 241, 0.8);
}
@media (min-width: 1200px) {
  .subNavLi:hover {
    transform: scale(1.05);
  }
}

@media (min-width: 992px) {
  .subNavA {
    margin: 0;
    font-size: 0.95rem;
  }
}
.accountIcon {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  transform: translateX(103%);
  transition: transform 0.4s ease 0.6s, opacity 0.3s ease 0.6s;
}
.accountIcon svg {
  width: 3rem;
  height: 3rem;
  padding: 0.4rem;
  fill: #4e4e4e;
}
@media (min-width: 992px) {
  .accountIcon {
    display: none !important;
  }
}

.accountIconClose {
  position: fixed;
  right: calc(50% - 1.5rem);
  bottom: 0.5rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.4s ease 0.6s, opacity 0.3s ease 0.6s;
}
.accountIconClose svg {
  width: 3rem;
  height: 3rem;
  padding: 0.4rem;
  fill: #4e4e4e;
}
@media (min-width: 992px) {
  .accountIconClose {
    display: none !important;
  }
}

.mobileAccountNav {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  list-style: none;
  text-decoration: none;
  padding-left: 0;
  z-index: 35;
  width: 100%;
  height: 100vh;
  margin: 0;
  background: white;
  transform: translateY(-100%);
  transition: transform 0.5s ease 0.2s;
}
@media (min-width: 992px) {
  .mobileAccountNav {
    display: none !important;
  }
}

/* ----------------------------------------------- */
.mainHeader {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  width: 100%;
  height: 4rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 6px rgba(133, 128, 128, 0.5);
}
.mainHeader a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .mainHeader a {
    order: 1;
    flex-direction: row;
  }
}
.mainHeader h1 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .mainHeader h1 {
    font-size: 1.45rem;
    margin-left: 0.3rem;
  }
}

.clubLogo {
  width: 60px;
}
@media (min-width: 992px) {
  .clubLogo {
    width: 90px;
  }
}

/* ----------------------------------------------- */
.banner {
  position: relative;
  z-index: 1;
}
.banner img {
  width: 100%;
  margin-top: 4rem;
}
@media (min-width: 992px) {
  .banner img {
    margin-top: 0;
  }
}
.banner h2 {
  position: absolute;
  bottom: -0.8rem;
  left: -4px;
  background: #E12B38 !important;
  z-index: 3;
  width: 200px;
  margin: 0;
  padding: 0.5rem;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: white 3px solid;
}
@media (min-width: 992px) {
  .banner h2 {
    width: 350px;
    font-size: 1.5rem;
    border: white 4px solid;
  }
}

/* ----------------------------------------------- */
.mainFooter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 70px;
  margin-top: 2rem;
  color: black;
  border-top: 0.5px rgba(77, 72, 72, 0.3) solid;
  background: #E12B38 !important;
}
.mainFooter p:first-of-type {
  margin: 1rem 0 0.4rem;
}
.mainFooter p:last-of-type {
  margin: 0 0 1rem;
  font-size: 0.8rem;
}

/* ----------------------------------------------- */
.indexStandingsC {
  order: 2;
  width: 100%;
  max-width: 350px;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin-top: 0.5rem;
  text-align: center;
}
@media (min-width: 576px) {
  .indexStandingsC {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .indexStandingsC {
    display: block;
    max-width: 300px;
    width: 40%;
    margin: 0 1px;
    padding: 0 0 0 2rem;
    border-left: 1px solid #eeeeeb;
  }
}
@media (min-width: 1200px) {
  .indexStandingsC {
    width: 25%;
    padding: 0 2rem 0 0;
    order: 1;
    border-right: 1px solid #eeeeeb;
    border-left: none;
  }
}
.indexStandingsC h3 {
  margin: 0;
  padding: 0.3rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
.indexStandingsC p {
  margin: 0.3rem 0;
  color: grey;
}
.indexStandingsC p a {
  color: grey;
}
.indexStandingsC button {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  outline: none;
}

.indexSeasonStandings {
  position: relative;
  width: 100%;
}
.indexSeasonStandings img {
  width: 100%;
}

.editStandingsForm {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: white;
}
.editStandingsForm input {
  cursor: pointer;
}
.editStandingsForm button {
  padding: 0.5rem;
}

.editStandingsBtn {
  min-height: 200px;
}

.editStandingsBackBtn {
  margin: 0.5rem auto !important;
  width: 30%;
  background: #eeeeeb !important;
}

.indexGoAsC {
  order: 2;
  width: 100%;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin-top: 0.5rem;
}
.indexGoAsC h3 {
  margin: 0;
  padding: 0.3rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
.indexGoAsC div {
  width: 100%;
}
.indexGoAsC table {
  width: 100%;
  margin-top: 0.37rem;
}
.indexGoAsC table th {
  padding-bottom: 0.3rem;
  text-align: left;
}
.indexGoAsC table td {
  padding: 0.2rem;
}
.indexGoAsC table td:first-of-type {
  width: 60px;
}
@media (min-width: 1200px) {
  .indexGoAsC table {
    font-size: 1rem;
  }
}

.indexUpcGamesC {
  order: 1;
  position: relative;
  width: 100%;
  height: fit-content;
  max-width: 600px;
}
@media (min-width: 768px) {
  .indexUpcGamesC {
    width: 60%;
    margin: 0 1px 0 0;
    padding: 0 2rem;
    border-right: #eeeeeb 1px solid;
  }
}
@media (min-width: 1200px) {
  .indexUpcGamesC {
    width: 48%;
    border-left: #eeeeeb 1px solid;
    order: 2;
  }
}
.indexUpcGamesC h3 {
  margin: 0;
  padding: 0.3rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
.indexUpcGamesC h3:nth-of-type(2) {
  margin-top: 1rem;
}

.indexSingleGameOC {
  position: relative;
  width: 100%;
  margin: 0.2rem 0 0;
}
.indexSingleGameOC:last-of-type {
  margin-bottom: 1rem;
}

.indexGamesLinksC {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.indexGamesGoAsOC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: white;
  transition: opacity 0.2s ease;
}
.indexGamesGoAsOC h5 {
  margin: 1rem 0 0;
  padding: 0 0 0.1rem;
  border-bottom: 2px solid #eeeeeb;
  text-transform: uppercase;
}

.indexGamesGoAsIC {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.indexSeasonStats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin-top: 2rem;
  order: 3;
}
.indexSeasonStats h3 {
  width: 100%;
  margin: 0;
  padding: 0.3rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
@media (min-width: 1200px) {
  .indexSeasonStats {
    width: 25%;
    margin-top: 0;
    padding: 0 0 0 2rem;
    border-left: 1px solid #eeeeeb;
  }
}

.indexSeasonGeneralStats {
  width: 50%;
}
.indexSeasonGeneralStats:first-of-type {
  margin-top: 0.2rem;
}
.indexSeasonGeneralStats:nth-of-type(2) {
  margin-top: 0.2rem;
}
.indexSeasonGeneralStats h4 {
  width: 98%;
  margin: 0 1%;
  padding: 0.3rem;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  background: #eeeeeb;
}

.indexStatsNumber {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 5rem;
}

.indexWinChanceP {
  padding-top: 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #eeeeeb;
}

.gamesOC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  flex: 1 0 auto;
  margin-top: 3rem;
}
.gamesOC h3 {
  margin: 0;
  padding: 0.3rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
@media (min-width: 768px) {
  .gamesOC {
    align-items: flex-start;
  }
}

.gamesIC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.addGameC {
  width: 100%;
  margin-bottom: 2rem;
}

.addGameBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  transition: transform 0.3s ease;
}
.addGameBtn svg {
  width: 25px;
  height: 25px;
  margin-left: 0.4rem;
  fill: #575757;
  transition: fill 0.3s ease;
}
@media (min-width: 1200px) {
  .addGameBtn:hover, .addGameBtn:focus {
    transform: scale(1.05);
  }
  .addGameBtn:hover svg, .addGameBtn:focus svg {
    fill: black;
  }
}

.upcGamesC {
  position: relative;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 768px) {
  .upcGamesC {
    width: 49%;
    margin: 0 1px 0 0;
    padding: 0 0.5rem 0 0;
    border-right: #eeeeeb 1px solid;
  }
}
@media (min-width: 992px) {
  .upcGamesC {
    padding: 0 1rem 0 0;
  }
}
@media (min-width: 1200px) {
  .upcGamesC {
    padding: 0 2rem 0 0;
  }
}

.pastGamesC {
  margin-top: 2rem;
  position: relative;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 768px) {
  .pastGamesC {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .pastGamesC {
    width: 49%;
    margin: 0 0 0 1px;
    padding: 0 0 0 0.5rem;
    border-left: #eeeeeb 1px solid;
  }
}
@media (min-width: 992px) {
  .pastGamesC {
    padding: 0 0 0 1rem;
  }
}
@media (min-width: 1200px) {
  .pastGamesC {
    padding: 0 0 0 2rem;
  }
}

.gamesSingleOC {
  position: relative;
  width: 100%;
  margin: 1rem 0 0;
}
.gamesSingleOC:first-of-type {
  margin-top: 0.2rem;
}
.gamesSingleOC:last-of-type {
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgba(241, 241, 241, 0.8);
}

.gamesDate {
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  background: #eeeeeb;
}

.gamesType {
  text-align: center;
  margin: 1rem 0 0;
  font-weight: normal;
  text-transform: capitalize;
}

.gamesSingleIC {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1.5rem;
}

.gamesHT {
  text-align: right;
  width: 30%;
  padding: 0 5px 0 0;
}
@media (min-width: 992px) {
  .gamesHT {
    width: 25%;
  }
}

.gamesAT {
  width: 30%;
  padding: 0 0 0 5px;
}
@media (min-width: 992px) {
  .gamesAT {
    width: 25%;
  }
}

.gamesLogo {
  width: 25px;
}
@media (min-width: 992px) {
  .gamesLogo {
    width: 35px;
  }
}
.gamesLogo img {
  max-width: 25px;
  height: 25px;
}
@media (min-width: 992px) {
  .gamesLogo img {
    max-width: 35px;
    height: 35px;
  }
}

.gameTimeScore {
  width: calc(50% - 80px);
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 992px) {
  .gameTimeScore {
    width: calc(50% - 80px);
    font-size: 1.8rem;
  }
}

.gamesLinksC {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gamesLinksC form {
  margin: 0;
}

.gamesIcon {
  margin: 1rem 0.7rem 0.5rem;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  transition: transform 0.3s ease;
}
.gamesIcon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #575757;
  transition: fill 0.3s ease;
}
@media (min-width: 992px) {
  .gamesIcon svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .gamesIcon:hover {
    transform: scale(1.05);
  }
  .gamesIcon:hover svg {
    fill: black;
  }
}

.gamesGoAsOC {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gamesGoAsIC {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.gamesGoAsListI {
  margin: 0.5rem 0 0;
  padding: 0;
}
.gamesGoAsListI li {
  display: flex;
  align-items: center;
  height: 1.2rem;
  margin: 0.05rem 0;
  list-style: none;
  position: relative;
  text-align: center;
  width: 1.2rem;
  margin-right: 0.5rem;
  color: #E12B38 !important;
}
.gamesGoAsListI li:last-of-type {
  margin-bottom: 1rem;
}
.gamesGoAsListI svg {
  position: absolute;
  width: 1.2rem;
  fill: #eeeeeb;
}
.gamesGoAsListI span {
  position: absolute;
  width: 1.2rem;
  font-size: 0.9rem;
  font-weight: bold;
}

.gamesGoAsListG {
  margin: 0.5rem 0 0;
  padding: 0;
}
.gamesGoAsListG li {
  display: flex;
  align-items: center;
  height: 1.2rem;
  margin: 0.05rem 0;
  list-style: none;
  padding-right: 0.5rem;
}
.gamesGoAsListG li:last-of-type {
  margin-bottom: 1rem;
}

.gamesGoAsListA {
  margin: 0.5rem 0 0;
  padding: 0;
  color: #818181;
}
.gamesGoAsListA li {
  display: flex;
  align-items: center;
  height: 1.2rem;
  margin: 0.05rem 0;
  list-style: none;
}
.gamesGoAsListA li:last-of-type {
  margin-bottom: 1rem;
}

.gamesGoAsExitBtn {
  position: absolute;
  top: 8px;
  left: 0.2px;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  cursor: pointer;
  background: none;
  text-align: left;
  transition: transform 0.3s ease;
  padding: 0;
}
.gamesGoAsExitBtn svg {
  fill: #575757;
  width: 1rem;
  height: 1rem;
  transition: fill 0.3s ease;
}
@media (min-width: 1200px) {
  .gamesGoAsExitBtn:hover, .gamesGoAsExitBtn:focus {
    transform: scale(1.05);
  }
  .gamesGoAsExitBtn:hover svg, .gamesGoAsExitBtn:focus svg {
    fill: black;
  }
}

.gamesGoAsEditBtn {
  position: absolute;
  top: 2.3rem;
  left: 0.2px;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  cursor: pointer;
  background: none;
  text-align: left;
  transition: transform 0.3s ease;
  padding: 0;
}
.gamesGoAsEditBtn svg {
  fill: #575757;
  width: 1rem;
  height: 1rem;
  transition: fill 0.3s ease;
}
@media (min-width: 1200px) {
  .gamesGoAsEditBtn:hover, .gamesGoAsEditBtn:focus {
    transform: scale(1.05);
  }
  .gamesGoAsEditBtn:hover svg, .gamesGoAsEditBtn:focus svg {
    fill: black;
  }
}

.gamesPresenceOverview {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2rem;
  text-align: center;
  color: #3f3f3f;
}
@media (min-width: 768px) {
  .gamesPresenceOverview {
    height: 1.5rem;
  }
}
.gamesPresenceOverview p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.gamesPresenceOverview p button {
  display: flex;
  align-items: center;
  padding: 0;
  text-decoration: underline;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
.gamesPresenceOverview p button:hover svg {
  transform: scale(1.05);
}
.gamesPresenceOverview p svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.2rem;
  transition: 0.2s ease;
}

.gamesIconPresence1 {
  fill: #3eb650;
}

.gamesIconPresence2 {
  fill: #e56b1f;
}

.gamesIconPresence3 {
  fill: #e12B38;
}

.gamesIconPresence0 {
  fill: #3778c2;
}

.gamesPresenceInput-c {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: white;
}
@media (min-width: 1200px) {
  .gamesPresenceInput-c {
    padding: 2rem;
  }
}
.gamesPresenceInput-c .subBtn {
  margin-top: 0.5rem;
}

.gamesPresenceChecksC {
  display: flex;
  justify-content: center;
  min-width: 80px;
  width: 100%;
  height: 40px;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .gamesPresenceChecksC {
    height: 25px;
    margin: 0.3rem 0;
  }
}

.gamesPresenceCommentC {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #eeeeeb;
}
.gamesPresenceCommentC input {
  width: 90%;
  height: 40px;
  margin: 0.3rem 0;
  padding: 0 0.5rem;
  background: white;
  border: 1px solid #eeeeeb;
}

/* ----------------------------------------------- */
.playersOC {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 0 auto;
  margin-top: 3rem;
}
.playersOC table {
  font-size: 1rem;
}
.playersOC th {
  width: 33.3%;
  border: none;
}
@media (min-width: 992px) {
  .playersOC {
    margin-top: 4rem;
  }
  .playersOC table {
    font-size: 1rem;
  }
}

.playersSubNav {
  padding: 0.15rem;
  text-align: center;
}
.playersSubNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  text-decoration: none;
  padding-left: 0;
  margin: 0;
}
.playersSubNav li {
  margin: 0.15rem 0.5rem;
  font-size: 1rem;
  transition: transform 0.2s ease;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .playersSubNav li:hover {
    transform: scale(1.05);
  }
}

.playersSubNavA {
  display: inline-block;
  width: 100%;
  padding: 0.5rem;
  border-bottom: 2px solid #eeeeeb;
}
@media (min-width: 992px) {
  .playersSubNavA {
    padding: 0.2rem 0.75rem;
  }
}

.BGCActive {
  border-bottom: 2px solid #E12B38 !important;
  transform: scale(1.05);
}

.playersIC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin: 0.5rem auto 0;
}
@media (min-width: 992px) {
  .playersIC {
    width: 85%;
    margin-top: 1rem;
  }
}
.playersIC h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  border-top: 3px white solid;
  border-radius: 0 0 2px 2px;
  background: #eeeeeb;
}
@media (min-width: 992px) {
  .playersIC h3 {
    font-size: 1rem;
  }
}

.playersCard {
  position: relative;
  margin: 1rem 0.1rem 0;
  width: 141px;
  height: 221px;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 992px) {
  .playersCard {
    width: 156px;
    height: 243px;
    margin: 1rem 0.25rem 0;
  }
}

.playersCardIC {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px white solid;
  box-shadow: 0 3px 3px rgba(24, 23, 23, 0.6);
  border-radius: 1px;
  overflow: hidden;
  z-index: 1;
}

.playersImgC {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .playersImgC:hover img {
    transform: scale(1.2);
  }
}
.playersImgC img {
  min-width: 156px;
  width: auto;
  height: 100%;
  transition: transform 0.5s ease;
}

.playersCardBackC {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.953);
  transition: transform 0.5s ease;
  z-index: 3;
  transform: translateY(100%);
}
.playersCardBackC h4 {
  width: 60%;
  margin: 0 auto 0.3rem;
  text-align: center;
  font-size: 1.3rem;
  border-bottom: 2px solid #eeeeeb;
}
@media (min-width: 992px) {
  .playersCardBackC h4 {
    margin-bottom: 0.5rem;
  }
}
.playersCardBackC h5 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
  color: rgba(24, 23, 23, 0.4);
}
.playersCardBackC p {
  margin: 0 0 0.3rem;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .playersCardBackC p {
    font-size: 1.1rem;
  }
}
.playersCardBackC p:last-of-type {
  margin-bottom: 0.4rem;
}
@media (min-width: 992px) {
  .playersCardBackC p:last-of-type {
    margin-bottom: 0.6rem;
  }
}

.playersGoAsC {
  width: 80%;
  margin: 0 auto;
}
.playersGoAsC th {
  background: #E12B38 !important;
}

/* ----------------------------------------------- */
.statisticsOC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  flex: 1 0 auto;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .statisticsOC {
    align-items: flex-start;
  }
}
.statisticsOC .playersSubNav:last-of-type {
  margin-bottom: 1rem;
}
.statisticsOC .playersSubNav:last-of-type a {
  padding: 0.5rem 0;
}
@media (min-width: 576px) {
  .statisticsOC .playersSubNav:last-of-type a {
    padding: 0.2rem 0.75rem;
  }
}
.statisticsOC .statsIndexSeasonStats {
  border: none;
  order: unset;
}

.statisticsIC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.statsGoAsGaC, .indexSeasonStats {
  width: 100%;
  max-width: 400px;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin-top: 2rem;
}
.statsGoAsGaC:first-of-type, .indexSeasonStats:first-of-type {
  margin-top: 0;
}
@media (min-width: 768px) {
  .statsGoAsGaC, .indexSeasonStats {
    width: 45%;
    max-width: 500px;
    margin: 2rem 1px 0;
    padding: 0 2rem;
  }
  .statsGoAsGaC:first-of-type, .indexSeasonStats:first-of-type {
    margin: 0;
  }
  .statsGoAsGaC:nth-of-type(2), .indexSeasonStats:nth-of-type(2) {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .statsGoAsGaC, .indexSeasonStats {
    margin-top: 2rem;
    width: 30%;
  }
  .statsGoAsGaC:first-of-type, .indexSeasonStats:first-of-type {
    margin-top: 0;
  }
  .statsGoAsGaC:nth-of-type(2), .indexSeasonStats:nth-of-type(2) {
    margin-top: 0;
  }
  .statsGoAsGaC:nth-of-type(3), .indexSeasonStats:nth-of-type(3) {
    margin-top: 0;
  }
}
.statsGoAsGaC h3, .indexSeasonStats h3 {
  margin: 0;
  padding: 0.3rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
.statsGoAsGaC h3:nth-of-type(2), .indexSeasonStats h3:nth-of-type(2) {
  margin-top: 2rem;
}
.statsGoAsGaC table, .indexSeasonStats table {
  width: 100%;
  margin-top: 0.37rem;
}
.statsGoAsGaC table th, .indexSeasonStats table th {
  padding-bottom: 0.3rem;
  text-align: left;
}
.statsGoAsGaC table td, .indexSeasonStats table td {
  padding: 0.2rem;
}
.statsGoAsGaC:first-of-type, .indexSeasonStats:first-of-type {
  margin-top: 0;
}

.statsGoAsGaRow {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.statsGoAsGaRow:nth-of-type(2n + 2) {
  background: rgba(238, 238, 235, 0.9);
}
.statsGoAsGaRow td:first-of-type {
  padding-left: 1rem;
}
.statsGoAsGaRow td:last-of-type {
  padding-right: 1rem;
  text-align: right;
}

.StatsGraphOC {
  position: relative;
  width: 100%;
  height: 200px;
}

.StatsGraphIC {
  position: absolute;
  top: 1rem;
  left: 0.75rem;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  width: calc(100% - 1.5rem);
  height: calc(100% - 2.2rem);
  border-bottom: 1px solid black;
  z-index: 12;
}

.StatsGraphBG {
  position: absolute;
  top: 1rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  width: calc(100% - 1.5rem);
  height: calc(100% - 2.2rem);
  z-index: 10;
}
.StatsGraphBG span {
  width: 100%;
  height: 10%;
}
.StatsGraphBG span:nth-of-type(2n + 1) {
  background: #f0f0f0;
}

.statsGraph0, .statsGraph100 {
  position: absolute;
  font-size: 0.6rem;
  margin: 0;
  color: #818181;
}

.statsGraph0 {
  bottom: 1.1rem;
}

.statsGraph100 {
  top: 0;
}

.statsGraphStaaf2 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 45%;
  background: #ce2029ab;
}

.statsGraphStaaf6 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 14%;
  background: rgba(135, 206, 250, 0.753);
}

.statsGraphStaafQuantity {
  position: absolute;
  top: -1rem;
  margin: 0;
  font-size: 0.8rem;
  color: #818181;
}

.statsGraphStaafLabel {
  position: absolute;
  bottom: -1.2rem;
  margin: 0;
  font-size: 0.8rem;
  color: #818181;
}

/* ----------------------------------------------- */
.accountformIC {
  width: 95%;
  max-width: 500px;
  text-align: center;
}
@media (min-width: 768px) {
  .accountformIC {
    width: 80%;
  }
}
.accountformIC div:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.accountformIC input:last-of-type {
  margin-bottom: 1rem !important;
}

.accountImgOC {
  width: 100%;
}
@media (min-width: 768px) {
  .accountImgOC {
    width: 241px;
    padding-right: 1rem;
  }
}

.accountImgIC {
  position: relative;
  width: 225px;
  height: 300px;
  margin: 0 auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(26, 26, 26, 0.808);
  overflow: hidden;
}
.accountImgIC img {
  min-width: 225px;
  width: auto;
  height: 100%;
}
.accountImgIC .subBtn:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
}

.accountUploadImgC {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.425);
}
.accountUploadImgC .subBtn {
  margin-top: 0;
}

.accountInfo {
  width: 100%;
  padding: 2rem 0 0 0;
  text-align: left;
}
@media (min-width: 768px) {
  .accountInfo {
    width: 50%;
    padding: 0;
  }
}
.accountInfo h4 {
  width: 100%;
  max-width: 225px;
  margin: 0 auto 0.4rem;
  padding: 0.3rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: normal;
  text-transform: uppercase;
  background: #eeeeeb;
}
.accountInfo p {
  width: 100%;
  max-width: 225px;
  margin: 0 auto 0.7rem;
  padding-left: 0.4rem;
  font-size: 1.1rem;
}
.accountInfo p:last-of-type {
  text-transform: capitalize;
}

.accountList {
  width: 100%;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .accountList {
    display: flex;
  }
}
.accountList li {
  width: 100%;
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  .accountList li {
    margin: 0 0.5rem;
    width: 50%;
  }
}
.accountList .subBtn {
  width: 70%;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .accountList .subBtn {
    width: 100%;
  }
}
.accountList .subBtn a {
  display: block;
  width: 100%;
  padding: 0.5rem;
}

/* ----------------------------------------------- */
.teamSelOC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  flex: 1 0 auto;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .teamSelOC {
    align-items: flex-start;
  }
}
.teamSelOC .teamSelEditBtnC {
  width: 100%;
  text-align: center;
}
.teamSelOC .subBtn {
  display: block;
  margin: 1rem auto 0;
  width: 80%;
}
@media (min-width: 768px) {
  .teamSelOC .subBtn {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .teamSelOC .subBtn {
    width: 30%;
  }
}

.teamSelIC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.teamSelGameC {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.teamSelGameDate {
  width: 100%;
  max-width: 300px;
}
.teamSelGameDate h4 {
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  background: #eeeeeb;
}
.teamSelGameDate p {
  text-align: center;
  margin: 0.5rem 0;
}

.teamSelInfoC {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.teamSelInfoC div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0 0.25rem;
}
@media (min-width: 768px) {
  .teamSelInfoC div {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .teamSelInfoC div {
    width: 25%;
  }
}
.teamSelInfoC div span {
  margin-top: 0.2rem;
  font-size: 0.6rem;
}
.teamSelInfoC div h3 {
  width: 100%;
  margin: 0 auto;
  padding: 0.3rem;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
.teamSelInfoC div ul {
  width: 90%;
  margin: 0.5rem auto;
  padding: 0;
  list-style: none;
}
.teamSelInfoC div ul li {
  display: flex;
  padding: 0.3rem 0.5rem;
}
.teamSelInfoC div ul li:nth-of-type(2n + 2) {
  background: rgba(238, 238, 235, 0.9);
}
.teamSelInfoC div ul li:last-of-type {
  border-bottom: 0.5px solid rgba(199, 199, 199, 0.264);
}
.teamSelInfoC div ul li .teamSelPlayerName {
  width: 50%;
  margin: 0;
  font-size: 1rem;
}
.teamSelInfoC div ul li .teamSelPlayerComm {
  font-style: italic;
  width: 50%;
  margin: 0;
  font-size: 1rem;
  color: #5c5c5c;
}

.teamSelPostPresenceOC {
  width: 100%;
}

.teamSelPostPresenceIC {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 450px;
}
.teamSelPostPresenceIC p {
  margin: 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .teamSelPostPresenceIC {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ----------------------------------------------- */
.mC {
  width: 100%;
  max-width: 250px;
  padding: 0.5rem;
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  .mC {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .mC:hover svg {
    fill: black;
  }
}
.mC h3 {
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  background: #eeeeeb;
}
.mC ul {
  list-style: none;
  text-decoration: none;
  padding-left: 0;
}
.mC svg {
  max-width: 238px;
  max-height: 238px;
  margin-bottom: 0.5rem;
  fill: #aaaaaa;
  transition: fill 0.3s ease;
}

.mPLayerListC {
  width: 100%;
  margin-bottom: 1rem;
  text-align: left;
}

.mFormHeaders {
  display: flex;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 0.4rem 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #eeeeeb;
}

.mPlayerInfo {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0.4rem;
}
@media (min-width: 992px) {
  .mPlayerInfo {
    padding: 0.2rem 0.4rem;
  }
}
.mPlayerInfo:nth-of-type(2n + 1) {
  background: rgba(238, 238, 235, 0.9);
}
.mPlayerInfo .mPlayerStatusF {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}
@media (min-width: 576px) {
  .mPlayerInfo .mPlayerStatusF {
    width: 9%;
    margin: 0 0.5%;
  }
}
.mPlayerInfo .mPlayerRoleF {
  display: none;
}
@media (min-width: 576px) {
  .mPlayerInfo .mPlayerRoleF {
    width: 9%;
    margin: 0 0.5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.mPlayerName {
  display: flex;
  align-items: center;
  width: 40%;
}
@media (min-width: 576px) {
  .mPlayerName {
    width: 25%;
  }
}

.mPlayerRegisterDate {
  display: none;
}
@media (min-width: 576px) {
  .mPlayerRegisterDate {
    display: flex;
    align-items: center;
    width: 25%;
  }
}

.mPlayerLoginDate {
  display: none;
}
@media (min-width: 576px) {
  .mPlayerLoginDate {
    display: flex;
    align-items: center;
    width: 25%;
  }
}

.mPlayerStatus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  text-align: center;
}
@media (min-width: 576px) {
  .mPlayerStatus {
    width: 10%;
  }
}

.mPlayerRole {
  display: none;
}
@media (min-width: 576px) {
  .mPlayerRole {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10%;
  }
}

.mStatusActive {
  width: 100%;
  background: #0db14b;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(24, 23, 23, 0.8);
  border: none;
}
@media (min-width: 1200px) {
  .mStatusActive:hover {
    transform: scale(1.05);
  }
}

.mStatusInactive {
  width: 100%;
  background: #ed2939;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(24, 23, 23, 0.8);
  border: none;
}
@media (min-width: 1200px) {
  .mStatusInactive:hover {
    transform: scale(1.05);
  }
}

.mRoleM {
  width: 100%;
  background: #b08d57;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(24, 23, 23, 0.8);
  border: none;
}
@media (min-width: 1200px) {
  .mRoleM:hover {
    transform: scale(1.05);
  }
}

.mRoleA {
  width: 100%;
  background: #bec2cb;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(24, 23, 23, 0.8);
  border: none;
}
@media (min-width: 1200px) {
  .mRoleA:hover {
    transform: scale(1.05);
  }
}

.mRoleSA {
  background: #FABC02;
  box-shadow: 0 2px 3px rgba(24, 23, 23, 0.8);
}

.mPlayerPass {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 576px) {
  .mPlayerPass {
    width: 5%;
  }
}
.mPlayerPass a {
  height: 2rem;
}
@media (min-width: 576px) {
  .mPlayerPass a {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  .mPlayerPass a:hover svg {
    transform: scale(1.05);
    fill: black;
  }
}
.mPlayerPass svg {
  transition: 0.2s ease;
  width: 2rem;
  height: 2rem;
  fill: #aaaaaa;
}
@media (min-width: 576px) {
  .mPlayerPass svg {
    width: 1rem;
    height: 1rem;
  }
}

.backBtnC {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.mTeamName {
  display: flex;
  align-items: center;
  width: 45%;
}
@media (min-width: 576px) {
  .mTeamName {
    width: 30%;
  }
}
.mTeamName a {
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .mTeamName a:hover svg {
    transform: scale(1.05);
    fill: black;
  }
}
.mTeamName svg {
  transition: 0.2s ease;
  margin-left: 0.4rem;
  width: 1rem;
  height: 1rem;
  fill: #aaaaaa;
}

.mTeamLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  text-align: center;
}
@media (min-width: 576px) {
  .mTeamLogo {
    width: 35%;
  }
}
.mTeamLogo a {
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .mTeamLogo a:hover svg {
    transform: scale(1.05);
    fill: black;
  }
}
.mTeamLogo svg {
  transition: 0.2s ease;
  margin-left: 0.4rem;
  width: 1rem;
  height: 1rem;
  fill: #aaaaaa;
}
.mTeamLogo img {
  width: auto;
  height: 1.5rem;
}

.mTeamStatus {
  display: none;
}
@media (min-width: 576px) {
  .mTeamStatus {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 25%;
  }
}

.mDeleteTeam {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 576px) {
  .mDeleteTeam {
    width: 10%;
  }
}
.mDeleteTeam a {
  height: 1.2rem;
}
@media (min-width: 576px) {
  .mDeleteTeam a {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  .mDeleteTeam a:hover svg {
    transform: scale(1.05);
    fill: black;
  }
}
.mDeleteTeam svg {
  transition: 0.2s ease;
  width: 1.2rem;
  height: 1.2rem;
  fill: #aaaaaa;
}
@media (min-width: 576px) {
  .mDeleteTeam svg {
    width: 1rem;
    height: 1rem;
  }
}
.mDeleteTeam button {
  margin: 0;
}

.mTeamImgInfo {
  text-align: left;
  margin-bottom: 0;
}

.mOpponent {
  display: flex;
  align-items: center;
  width: 45%;
  font-weight: bold;
}
@media (min-width: 576px) {
  .mOpponent {
    width: 26%;
  }
}
@media (min-width: 768px) {
  .mOpponent {
    width: 23%;
  }
}

.mHomeAway {
  display: flex;
  align-items: center;
  width: 25%;
}
@media (min-width: 576px) {
  .mHomeAway {
    width: 12%;
  }
}
@media (min-width: 768px) {
  .mHomeAway {
    width: 8%;
  }
}

.mGameType {
  display: none;
}
@media (min-width: 768px) {
  .mGameType {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    width: 19%;
  }
}

.mGameDate {
  display: flex;
  align-items: center;
  width: 30%;
}
@media (min-width: 576px) {
  .mGameDate {
    width: 17%;
  }
}
@media (min-width: 768px) {
  .mGameDate {
    width: 14%;
  }
}

.mGameTime {
  display: none;
}
@media (min-width: 576px) {
  .mGameTime {
    display: flex;
    align-items: center;
    width: 17%;
  }
}
@media (min-width: 768px) {
  .mGameTime {
    width: 14%;
  }
}

.mGameIconsC {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1rem 0 0.5rem;
}
@media (min-width: 576px) {
  .mGameIconsC {
    justify-content: flex-end;
    width: 28%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .mGameIconsC {
    width: 20%;
  }
}

.mGameIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.7rem;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 576px) {
  .mGameIcon {
    width: 10%;
    margin: 0 0.5rem;
  }
}
.mGameIcon a {
  height: 1.7rem;
}
@media (min-width: 576px) {
  .mGameIcon a {
    height: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .mGameIcon a:hover svg {
    transform: scale(1.05);
    fill: black;
  }
}
.mGameIcon svg {
  transition: 0.2s ease;
  width: 1.7rem;
  height: 1.7rem;
  fill: #aaaaaa;
}
@media (min-width: 576px) {
  .mGameIcon svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.mGameIcon button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* ----------------------------------------------- */
.formOC {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 3rem auto 0;
  font-size: 1.1rem;
  flex: 1 0 auto;
}

.formIC {
  width: 95%;
  max-width: 450px;
  text-align: center;
}
@media (min-width: 768px) {
  .formIC {
    width: 60%;
  }
}
select {
  width: 100%;
  margin: 0.3rem 0 1rem;
  padding: 0.3rem;
  border: none;
  background: #eeeeeb;
}
@media (min-width: 1200px) {
  select:focus {
    transform: scale(1.05);
  }
}

input {
  width: 100%;
  margin: 0.3rem 0 1rem;
  padding: 0.3rem;
  background: #eeeeeb;
  border: none;
  border-radius: 0.1rem;
}
@media (min-width: 1200px) {
  input:focus {
    transform: scale(1.05);
  }
}

.errorMessage {
  width: 100%;
  color: #E12B38 !important;
  text-align: center;
}

.successMessage {
  display: none;
  width: 80%;
  margin: 0 auto 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #eeeeeb;
}
@media (min-width: 768px) {
  .successMessage {
    width: 50%;
  }
}

.error {
  background: #E12B38 !important;
  color: white;
}

.subBtn {
  width: 100%;
  margin-top: 2.5rem;
  padding: 0.5rem;
  border: none;
  background: #E12B38 !important;
  font-size: 1.3rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(24, 23, 23, 0.6);
  transition: transform 0.05s ease;
}
@media (min-width: 1200px) {
  .subBtn:hover, .subBtn:focus {
    transform: scale(1.05);
  }
}

.backBtn {
  margin: 0.7rem 0;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  background: #eeeeeb;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(80, 78, 78, 0.6);
  transition: transform 0.05s ease;
}
@media (min-width: 1200px) {
  .backBtn:hover, .backBtn:focus {
    transform: scale(1.05);
  }
}

/* ----------------------------------------------- */
.loginForm {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.loginForm input:last-of-type {
  margin-bottom: 0.1rem;
}

.forgPass {
  align-self: flex-end;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.loginStayC {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-self: flex-start;
  font-size: 0.8rem;
}
.loginStayC input {
  margin: 0.5rem 0 0;
  padding: 0;
  width: 20px;
}

/* ----------------------------------------------- */
.registerForm {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.registerForm input:last-of-type {
  margin-bottom: 0.1rem;
}

/* ----------------------------------------------- */
.goAsDate {
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  background: #eeeeeb;
}

.goAsInfoC {
  display: flex;
  justify-content: center;
  align-items: center;
}

.goAsHT {
  width: 70px;
  font-size: 0.9rem;
  margin: 0 0.3rem 0 0;
  text-align: right;
}
@media (min-width: 768px) {
  .goAsHT {
    width: 130px;
    font-size: 1rem;
    margin: 0 1rem 0 0;
  }
}
@media (min-width: 992px) {
  .goAsHT {
    font-size: 1.3rem;
  }
}

.goAsAT {
  width: 70px;
  font-size: 0.9rem;
  margin: 0 0 0 0.3rem;
  text-align: left;
}
@media (min-width: 768px) {
  .goAsAT {
    width: 130px;
    font-size: 1rem;
    margin: 0 0 0 1rem;
  }
}
@media (min-width: 992px) {
  .goAsAT {
    font-size: 1.3rem;
  }
}

.goAsLogo {
  width: 35px;
}
@media (min-width: 768px) {
  .goAsLogo {
    width: 50px;
  }
}
.goAsLogo img {
  max-width: 35px;
  height: 35px;
}
@media (min-width: 768px) {
  .goAsLogo img {
    max-width: 50px;
    height: 50px;
  }
}

.goAsResultC {
  display: flex;
  align-items: center;
  margin: 1rem 0.3rem;
}
@media (min-width: 768px) {
  .goAsResultC {
    margin: 2rem 1rem;
  }
}

.goAsNum {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.goAsscoreSep {
  margin: 0 0.5rem;
}
@media (min-width: 768px) {
  .goAsscoreSep {
    margin: 0 0.6rem;
  }
}

.goAsForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.goAsForm h4 {
  font-weight: normal;
  text-align: center;
}
.goAsForm select {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.goAsFormSingleC {
  display: flex;
  flex-wrap: wrap;
  width: 97%;
}
.goAsFormSingleC h4 {
  width: 100%;
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
  color: rgba(192, 192, 192, 0.699);
}
.goAsFormSingleC label {
  font-size: 0.9rem;
  color: #575757;
}
.goAsFormSingleC select {
  margin-top: 0.3rem;
}

.goAsFormSingleCM {
  width: 20%;
  margin-right: 1%;
}

.goAsFormSingleCG {
  width: 38%;
  margin: 0 1%;
}

.goAsFormSingleCA {
  width: 38%;
  margin-left: 1%;
}

/* ----------------------------------------------- */
.scoreDate {
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  background: #eeeeeb;
}

.scoreForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scoreFormIC {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 0;
}
@media (min-width: 576px) {
  .scoreFormIC {
    flex-direction: row;
    margin: 1.5rem 0 0;
  }
}
@media (min-width: 768px) {
  .scoreFormIC {
    margin: 3rem 0 0.5rem;
  }
}

.scoreHT {
  width: 100px;
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .scoreHT {
    width: 200px;
    font-size: 1.2rem;
    margin: 0 1rem 0 0;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .scoreHT {
    font-size: 1.3rem;
  }
}

.scoreAT {
  width: 100px;
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .scoreAT {
    width: 200px;
    font-size: 1.2rem;
    margin: 0 0 0 1rem;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .scoreAT {
    font-size: 1.3rem;
  }
}

.scoreLogo {
  width: 40px;
}
@media (min-width: 768px) {
  .scoreLogo {
    width: 90px;
  }
}
@media (min-width: 992px) {
  .scoreLogo {
    width: 100px;
  }
}
.scoreLogo img {
  max-width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .scoreLogo img {
    max-width: 90px;
    height: 90px;
  }
}
@media (min-width: 992px) {
  .scoreLogo img {
    max-width: 100px;
    height: 100px;
  }
}

.scoreResultC {
  margin: 2rem 0;
}
@media (min-width: 576px) {
  .scoreResultC {
    display: flex;
    align-items: center;
    margin: 0 2rem;
  }
}
@media (min-width: 768px) {
  .scoreResultC {
    margin: 0 3rem;
  }
}
.scoreResultC input {
  width: 70px;
  height: 70px;
  font-size: 1.9rem;
  text-align: center;
}
@media (min-width: 768px) {
  .scoreResultC input {
    width: 80px;
    height: 80px;
    font-size: 1.9rem;
    text-align: center;
  }
}

.scoreSep {
  margin: 0 2rem;
}
@media (min-width: 768px) {
  .scoreSep {
    margin: 0 0.6rem;
  }
}

/* ----------------------------------------------- */
.gameForm {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.gameForm select:last-of-type {
  margin-bottom: 0.1rem;
}
.gameForm input {
  width: 100%;
}

.formIC-W {
  width: 95%;
  max-width: 700px;
  text-align: center;
}
@media (min-width: 768px) {
  .formIC-W {
    width: 90%;
  }
}
.formHeaders {
  display: none;
  padding: 0.5rem;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #eeeeeb;
}
@media (min-width: 768px) {
  .formHeaders {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .formHeaders div:first-of-type {
    display: flex;
    width: 63%;
  }
  .formHeaders div:last-of-type {
    width: 31%;
    text-align: left;
  }
}

.presenceHeadCheck {
  width: 100%;
}

.presenceSingleGame {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 300px;
  margin: 0 auto 0.5rem;
  padding: 0.2rem 0.5rem 0.5rem;
  font-size: 1rem;
  text-align: left;
  border-bottom: 2px solid #eeeeeb;
}
@media (min-width: 768px) {
  .presenceSingleGame {
    padding: 0.2rem 0.5rem;
    border-bottom: none;
    max-width: unset;
    margin: 0;
  }
  .presenceSingleGame:nth-of-type(2n + 1) {
    background: #eeeeeb;
  }
}

.presenceGameInfo {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .presenceGameInfo {
    flex-direction: row;
    width: 63%;
  }
}

.presenceGameDateC {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .presenceGameDateC {
    width: 23%;
    margin: 0;
  }
}
.presenceGameDateC .presenceGameDateT {
  width: 130px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .presenceGameDateC .presenceGameDateT {
    display: none;
  }
}

.presenceGameTimeC {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .presenceGameTimeC {
    width: 20%;
    margin: 0;
  }
}
.presenceGameTimeC .presenceGameTimeT {
  width: 130px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .presenceGameTimeC .presenceGameTimeT {
    display: none;
  }
}

.presenceTeamC {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .presenceTeamC {
    width: 25%;
    margin: 0;
  }
}
.presenceTeamC .presenceTeamT {
  width: 130px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .presenceTeamC .presenceTeamT {
    display: none;
  }
}

.presenceHAC {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .presenceHAC {
    width: 10%;
    margin: 0;
  }
}
.presenceHAC .presenceHAT {
  width: 130px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .presenceHAC .presenceHAT {
    display: none;
  }
}

.presenceChecksC {
  display: flex;
  justify-content: center;
  min-width: 80px;
  width: 100%;
  height: 40px;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .presenceChecksC {
    justify-content: flex-end;
    width: 31%;
    height: 25px;
    margin: 0.3rem 0;
  }
}

.checkboxC {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
  margin: 0 0 0 0.6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .checkboxC {
    padding-left: 25px;
  }
}
.checkboxC input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkboxC input:checked ~ .checkmark {
  background-color: rgba(255, 0, 0, 0.656) !important;
}
.checkboxC input:checked ~ .checkmark:after {
  display: block;
}
.checkboxC:hover input ~ .checkmark {
  background-color: #ccc;
}
.checkboxC .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 0, 0, 0.256);
}
@media (min-width: 768px) {
  .checkboxC .checkmark {
    height: 25px;
    width: 25px;
  }
}
.checkboxC .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 15px;
  top: 1px;
  width: 7px;
  height: 32px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .checkboxC .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
  }
}

.presenceCommentBtn {
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
}
.presenceCommentBtn svg {
  width: 30px;
  height: 30px;
  fill: rgba(255, 0, 0, 0.256);
}
@media (min-width: 768px) {
  .presenceCommentBtn {
    position: unset;
    width: 6%;
    height: 20px;
    padding: 0 0 0 1rem;
  }
  .presenceCommentBtn svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1200px) {
  .presenceCommentBtn:hover svg {
    transform: scale(1.05);
    fill: #ccc;
  }
}

.presenceCommentC {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #eeeeeb;
}
.presenceCommentC input {
  width: 90%;
  height: 40px;
  margin: 0.3rem 0 0 0;
  padding: 0 0.5rem;
  background: white;
  border: 1px solid #eeeeeb;
}
@media (min-width: 768px) {
  .presenceCommentC input {
    margin: 0;
  }
}

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