@font-face {
  font-family: "Bahnschrift SemiBold";
  font-style: normal;
  font-weight: normal;
  src: url("https://yorkcougars.com/fonts/bschrift.woff") format("woff");
}

html,
body {
  height: 100%;
  margin: 0;
}
body.dark .button {
  padding: 10px 25px;
  border-radius: 20px;
  background-color: #191919;
  color: white;
  border: 1px solid white;
  margin: 5px;
}
body.light .button {
  padding: 10px 25px;
  border-radius: 20px;
  background-color: #969696;
  color: black;
  border: 1px solid black;
  margin: 5px;
}

navpadding {
  display: inline-block;
}

body.light {
  background-color: #c8c8c8;
}

body.light div.schedule table, body.light div.table table {
  width: 80%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-collapse: collapse;
}

body.light div.schedule table th, body.light div.table table th {
  background-color: #969696;
  padding: 5px;
}

body.light div.schedule table .col1,
body.light div.schedule table .col2,
body.light div.schedule table .col3, body.light div.table table .col1,
body.light div.table table .col2,
body.light div.table table .col3 {
  padding: 5px;
  color: black;
  text-decoration: underline;
  background-color: #969696;
}

body.light div.schedule table tr, body.light div.table table tr {
  text-align: center;
  color: black;
  font-weight: bold;
}

body.light div.schedule table tr:nth-child(2n), body.light div.table table tr:nth-child(2n) {
  background-color: #c8c8c8;
}

body.light div.schedule table tr:nth-child(2n -1), body.light div.table table tr:nth-child(2n -1) {
  background-color: #d5d5d5;
}

body.light div.schedule table tr.w, body.light div.schedule table tr.W, body.light div.table table tr.w, body.light div.table table tr.W {
  color: darkgreen;
}

body.light div.schedule table tr.l, body.light div.schedule table tr.L, body.light div.table table tr.l, body.light div.table table tr.L {
  color: darkred;
}

body.light div.schedule table tr.t, body.light div.schedule table tr.T, body.light div.table table tr.t, body.light div.table table tr.T {
  color: #ff5b00;
}

body.light div.schedule table tr.c, body.light div.schedule table tr.C, body.light div.table table tr.c, body.light div.table table tr.C {
  color: navy;
  position: relative;
}

body.light div.schedule table tr.c::after, body.light div.schedule table tr.C::after, body.light div.table table tr.c::after, body.light div.table table tr.C::after {
  content: "";
  display: block;
  background-color: navy;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

body.light div.schedule table tr.b, body.light div.schedule table tr.B, body.light div.table table tr.b, body.light div.table table tr.B {
  color: #404040;
}

body.light section.loginSection {
  padding: 25px;
}

body.light section.loginSection h2 {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 2em;
  color: black;
  position: relative;
}

body.light section.loginSection h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: black;
  height: 2px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.light section.loginSection input[type="email"],
body.light section.loginSection input[type="password"] {
  border: 0;
  padding: 15px 0px;
  width: 75%;
  text-align: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 10px;
  margin-bottom: -5px;
  border-radius: calc(1em + 15px + 15px);
  border: 1px solid black;
  background-color: #c8c8c8;
  color: black;
  font-size: 1em;
}

body.light section.loginSection input[type="email"]:focus,
body.light section.loginSection input[type="password"]:focus {
  outline: none;
  background-color: white;
}

body.light section.loginSection input[type="email"]::-webkit-input-placeholder,
body.light section.loginSection input[type="password"]::-webkit-input-placeholder {
  color: black;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.light section.loginSection input[type="email"]:-ms-input-placeholder,
body.light section.loginSection input[type="password"]:-ms-input-placeholder {
  color: black;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.light section.loginSection input[type="email"]::-ms-input-placeholder,
body.light section.loginSection input[type="password"]::-ms-input-placeholder {
  color: black;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.light section.loginSection input[type="email"]::placeholder,
body.light section.loginSection input[type="password"]::placeholder {
  color: black;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.light section.loginSection button {
  border: 0;
  padding: 15px 25px;
  width: 75%;
  text-align: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 10px;
  margin-bottom: -5px;
  border-radius: calc(1em + 15px + 15px);
  border: 1px solid black;
  background-color: #eeeeee;
  color: black;
  font-size: 1em;
}

body.light header {
  background-color: #969696;
  height: 75px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 500;
  width: 100%;
  -webkit-box-shadow: black 0px 0px 10px;
          box-shadow: black 0px 0px 10px;
}

body.light header nav {
  max-width: 1500px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.light header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  line-height: 75px;
}

body.light header nav ul li {
  display: inline;
}

body.light header nav ul li a {
  background-color: transparent;
  color: black;
  display: inline-block;
  padding: 0px 35px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
}

body.light header nav ul li a:hover {
  background-color: #c8c8c8;
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
  -webkit-box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);
}

body.light header nav ul li a#NavThemeButton {
  display: none;
}
body.light header nav ul li a#homeBtn {
  display: none;
}
body.light header nav ul li a#oldscoresBtn {
  display: none;
}

body.light header nav ul li a#ToggleSidebar:hover span.x, body.light header nav ul li a#ToggleSidebar.open span.x {
  background-color: transparent;
}

body.light header nav ul li a#ToggleSidebar:hover span.x::before, body.light header nav ul li a#ToggleSidebar.open span.x::before {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  top: 0;
}

body.light header nav ul li a#ToggleSidebar:hover span.x::after, body.light header nav ul li a#ToggleSidebar.open span.x::after {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  top: 0;
}

body.light header nav ul li a#ToggleSidebar div {
  position: relative;
  height: 75px;
  width: 35px;
}

body.light header nav ul li a#ToggleSidebar div span.x {
  background-color: black;
  display: block;
  width: 35px;
  border-radius: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body.light header nav ul li a#ToggleSidebar div span.x::before, body.light header nav ul li a#ToggleSidebar div span.x::after {
  content: "";
  position: absolute;
  left: 0px;
  background-color: black;
  display: block;
  width: 35px;
  border-radius: 5px;
  height: 5px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.light header nav ul li a#ToggleSidebar div span.x::before {
  top: -10px;
}

body.light header nav ul li a#ToggleSidebar div span.x::after {
  top: 10px;
}

body.light header nav img.logo {
  height: 75px;
  width: 75px;
}

body.light header nav h1 {
  line-height: 75px;
  margin: 0;
  margin-left: 1em;
  padding: 0;
  display: inline;
  color: black;
}

body.light #footer {
  margin-top: 25px;
  position: -webkit-sticky;
  position: sticky;
  top: 100%;
  background-color: #969696;
  height: 75px;
  z-index: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: black 0px 0px 10px;
          box-shadow: black 0px 0px 10px;
}

body.light #footer #line1 {
  color: black;
}

body.light #footer #line2,
body.light #footer #line2 a,
body.light #footer #line2 a:active,
body.light #footer #line2 a:hover {
  color: black;
  text-decoration: none;
}

body.light .store {
  position: fixed;
  bottom: 0;
  padding: 35px;
  left: 0;
  width: calc(100% - 35px - 35px);
  z-index: 501;
  display: block;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 5px -5px 10px;
          box-shadow: rgba(0, 0, 0, 0.5) 5px -5px 10px;
  background-color: #969696;
}

body.light .store.hide {
  left: -110%;
}

body.light .store a:not(.storeATag) {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.light .store .storeATag {
  position: absolute;
  height: 25px;
  width: 25px;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-weight: bold;
}

body.light .store .storeATag .x2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
          transform: translate(-50%, -50%) rotateZ(-45deg);
  width: 25px;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: black;
}

body.light .store .storeATag .x1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
          transform: translate(-50%, -50%) rotateZ(45deg);
  width: 25px;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: black;
}

body.dark {
  background-color: #323232;
}

body.dark div.schedule table, body.dark div.table table {
  width: 80%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-collapse: collapse;
}

body.dark div.schedule table th, body.dark div.table table th {
  background-color: #191919;
  padding: 5px;
}

body.dark div.schedule table .col1,
body.dark div.schedule table .col2,
body.dark div.schedule table .col3, body.dark div.table table .col1,
body.dark div.table table .col2,
body.dark div.table table .col3 {
  padding: 5px;
  color: white;
  text-decoration: underline;
  background-color: #191919;
}

body.dark div.schedule table tr, body.dark div.table table tr {
  text-align: center;
  color: white;
  font-weight: bold;
}

body.dark div.schedule table tr:nth-child(2n), body.dark div.table table tr:nth-child(2n) {
  background-color: #323232;
}

body.dark div.schedule table tr:nth-child(2n -1), body.dark div.table table tr:nth-child(2n -1) {
  background-color: #3f3f3f;
}

body.dark div.schedule table tr.w, body.dark div.schedule table tr.W, body.dark div.table table tr.w, body.dark div.table table tr.W {
  color: lime;
}

body.dark div.schedule table tr.l, body.dark div.schedule table tr.L, body.dark div.table table tr.l, body.dark div.table table tr.L {
  color: red;
}

body.dark div.schedule table tr.t, body.dark div.schedule table tr.T, body.dark div.table table tr.t, body.dark div.table table tr.T {
  color: orange;
}

body.dark div.schedule table tr.c, body.dark div.schedule table tr.C, body.dark div.table table tr.c, body.dark div.table table tr.C {
  color: #4baac8;
  position: relative;
}

body.dark div.schedule table tr.c::after, body.dark div.schedule table tr.C::after, body.dark div.table table tr.c::after, body.dark div.table table tr.C::after {
  content: "";
  display: block;
  background-color: #4baac8;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

body.dark div.schedule table tr.b, body.dark div.schedule table tr.B, body.dark div.table table tr.b, body.dark div.table table tr.B {
  color: #bfbfbf;
}

body.dark section.loginSection {
  padding: 25px;
}

body.dark section.loginSection h2 {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 2em;
  color: white;
  position: relative;
}

body.dark section.loginSection h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  height: 2px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.dark section.loginSection input[type="email"],
body.dark section.loginSection input[type="password"] {
  border: 0;
  padding: 15px 0px;
  width: 75%;
  text-align: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 10px;
  margin-bottom: -5px;
  border-radius: calc(1em + 15px + 15px);
  border: 1px solid white;
  background-color: #323232;
  color: white;
  font-size: 1em;
}

body.dark section.loginSection input[type="email"]:focus,
body.dark section.loginSection input[type="password"]:focus {
  outline: none;
  background-color: #727272;
}

body.dark section.loginSection input[type="email"]::-webkit-input-placeholder,
body.dark section.loginSection input[type="password"]::-webkit-input-placeholder {
  color: white;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.dark section.loginSection input[type="email"]:-ms-input-placeholder,
body.dark section.loginSection input[type="password"]:-ms-input-placeholder {
  color: white;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.dark section.loginSection input[type="email"]::-ms-input-placeholder,
body.dark section.loginSection input[type="password"]::-ms-input-placeholder {
  color: white;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.dark section.loginSection input[type="email"]::placeholder,
body.dark section.loginSection input[type="password"]::placeholder {
  color: white;
  font-weight: bold;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.dark section.loginSection button {
  border: 0;
  padding: 15px 25px;
  width: 75%;
  text-align: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 10px;
  margin-bottom: -5px;
  border-radius: calc(1em + 15px + 15px);
  border: 1px solid white;
  background-color: #585858;
  color: white;
  font-size: 1em;
}

body.dark header {
  background-color: #191919;
  height: 75px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 500;
  width: 100%;
  -webkit-box-shadow: black 0px 0px 10px;
          box-shadow: black 0px 0px 10px;
}

body.dark header nav {
  max-width: 1500px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.dark header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  line-height: 75px;
}

body.dark header nav ul li {
  display: inline;
}

body.dark header nav ul li a {
  background-color: transparent;
  color: white;
  display: inline-block;
  padding: 0px 35px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
}

body.dark header nav ul li a:hover {
  background-color: #323232;
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
  -webkit-box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);
}

body.dark header nav ul li a#NavThemeButton {
  display: none;
}
body.dark header nav ul li a#homeBtn {
  display: none;
}
body.dark header nav ul li a#oldscoresBtn {
  display: none;
}

body.dark header nav ul li a#ToggleSidebar:hover span.x, body.dark header nav ul li a#ToggleSidebar.open span.x {
  background-color: transparent;
}

body.dark header nav ul li a#ToggleSidebar:hover span.x::before, body.dark header nav ul li a#ToggleSidebar.open span.x::before {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  top: 0;
}

body.dark header nav ul li a#ToggleSidebar:hover span.x::after, body.dark header nav ul li a#ToggleSidebar.open span.x::after {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  top: 0;
}

body.dark header nav ul li a#ToggleSidebar div {
  position: relative;
  height: 75px;
  width: 35px;
}

body.dark header nav ul li a#ToggleSidebar div span.x {
  background-color: white;
  display: block;
  width: 35px;
  border-radius: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body.dark header nav ul li a#ToggleSidebar div span.x::before, body.dark header nav ul li a#ToggleSidebar div span.x::after {
  content: "";
  position: absolute;
  left: 0px;
  background-color: white;
  display: block;
  width: 35px;
  border-radius: 5px;
  height: 5px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

body.dark header nav ul li a#ToggleSidebar div span.x::before {
  top: -10px;
}

body.dark header nav ul li a#ToggleSidebar div span.x::after {
  top: 10px;
}

body.dark header nav img.logo {
  height: 75px;
  width: 75px;
}

body.dark header nav h1 {
  line-height: 75px;
  margin: 0;
  margin-left: 1em;
  padding: 0;
  display: inline;
  color: white;
}

body.dark #footer {
  margin-top: 25px;
  position: -webkit-sticky;
  position: sticky;
  top: 100%;
  background-color: #191919;
  height: 75px;
  z-index: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: black 0px 0px 10px;
          box-shadow: black 0px 0px 10px;
}

body.dark #footer #line1 {
  color: white;
}

body.dark #footer #line2,
body.dark #footer #line2 a,
body.dark #footer #line2 a:active,
body.dark #footer #line2 a:hover {
  color: white;
  text-decoration: none;
}

body.dark .store {
  position: fixed;
  bottom: 0;
  padding: 35px;
  left: 0;
  width: calc(100% - 35px - 35px);
  z-index: 501;
  display: block;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 5px -5px 10px;
          box-shadow: rgba(0, 0, 0, 0.5) 5px -5px 10px;
  background-color: #191919;
}

body.dark .store.hide {
  left: -110%;
}

body.dark .store a:not(.storeATag) {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.dark .store .storeATag {
  position: absolute;
  height: 25px;
  width: 25px;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-weight: bold;
}

body.dark .store .storeATag .x2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
          transform: translate(-50%, -50%) rotateZ(-45deg);
  width: 25px;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: white;
}

body.dark .store .storeATag .x1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
          transform: translate(-50%, -50%) rotateZ(45deg);
  width: 25px;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: white;
}
/*# sourceMappingURL=globalmobile.css.map */