/* ----------------------------------------------------------------------------------
General
---------------------------------------------------------------------------------- */
body {
    font-family: 'Open Sans', 'Arial', sans-serif;
  }
  
  
  /* ----------------------------------------------------------------------------------
  Header Navigation Section
  ---------------------------------------------------------------------------------- */
  header {
    position: fixed;
    top: 0; 
    height: 70px;
    width: 100%;
    background-color: #151515;
    z-index: 20;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 2x 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
  }
  
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;
    opacity: 0.8;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  
  .logo img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
  }
  
  .logo:hover {
    opacity: 1;
  }
  
  .menuBlock {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  
  .menuRight {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .menuLeft {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  
  .menuLink {
    display: flex;
    width: auto;
    height: 70px;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
  }
  
  .langLink {
    width: 60px;
    padding: 0px;
  }
  
  .menuLink a {
    font-size: 0.825rem;
    font-weight: 600;
    text-decoration: none;
    color: #dbdbdb;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  
  .menuLink a:hover {
    color: #00c2fc;
  }
  
  .menuMobile {
    display: none;
    height: 350px;
    width: 150px;
    z-index: 25;
    padding-top: 50px;
  }
  
  .menuMobile .menuLink {
    width: 150px;
    padding: 0px;
  }
  
  .menuBurger {
    z-index: 50;
    width: 50px;
    height: 50px;
    display: none;
    background: transparent;
  }
  
  .menuBurger:before {
    content: '\2630';
    position: fixed;
    display: block;
    transform: translate(50%, -50%);
    top: 25px;
    right: 25px;
    color: white;
    cursor: pointer;
  }
  
  /* ----------------------------------------------------------------------------------
  Footer Section
  ---------------------------------------------------------------------------------- */
  footer {
    clear: both;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #444444;
    font-size: 0.85rem;
    line-height: 1rem;
    z-index: 15;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .arr {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .aRR p {
    padding: 0;
    margin: 0;
    text-align: center;
    opacity: 0.55;
    color: #FFFFFF;
    font-weight: lighter;
  }
  
  .spacer {
    display: block;
    float: left;
    width: 100%;
    height: 30px;
  }
  
  /*----------------------------------------------------------------------------------
  Main Page
  ---------------------------------------------------------------------------------- */
  .mainbody {
    width: 95%;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100vh;
  }
  
  .mainbody p{
    font-size: 22px;
    margin: 25px 0px;
    line-height: 22px;
    font-family: 'Open Sans';
    font-weight: 500;
    text-align: center;
    position: relative;
    color: #0091cf;
  }

  .mainbody--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mainbody--content--image {
    width: 100%;
    max-width: 500px;
    margin: 20px 0px 5px 0px;
  }

  .mainbody--content--image img {
      z-index: -1;
      display:block;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      max-width: 500px;
      text-align: center;
  }

  .mainbody--content--info {
    width: 100%;
    max-width: 490px;
  }

  .mainbody--content--info--topic {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    justify-content: space-between;
    position: relative;
    margin-bottom: 15px;

    &:after {
      position: absolute;
      bottom: -3px;
      content: "";
      width: 100%;
      display: block;
      background: black;
      height: 2px;
    }
  }

  .mainbody--content--info--topic--title {
    text-align: left;
    color: rgb(31 119 195);
  }

  .mainbody--content--info--topic--text {
    text-align: right;
    color: rgb(15 69 139);
    color: rgb(31 119 195);
    font-style: italic;
    font-weight: 600;
  }

  .mainbody--content--info--topic--announcement,
  .mainbody--announcement {
    font-size: 0.9rem;
    text-transform: none;
    font-style: italic;
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
    max-width: 490px;
    box-sizing: border-box;
    color: rgb(15 69 139);
  }

  .top {
    font-size: 1.075rem;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    opacity: 0.5;
  }
  
  .mainbody a {
    text-decoration: none;
    color: #0091cf;
  }
  
  p.announcement {
    line-height: 30px;
  }
  
  p.announcement:nth-of-type(2) {
    margin: 15px 0px;
  }
  
  p.announcement:nth-of-type(3) {
    margin: 0;
  }
  
  .covid-note {
    display: flex;
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align:left;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  .covid-note p {
    text-align: center;
    font-size: 1rem;
    margin: 0.75rem 0rem 0rem 0rem;
    line-height: 1.75rem;
  }
  
  .cancelled {
    opacity: 0.1;
    position: relative;
  }
  
  .box, .box2 {
    width: 280px;
    height: 170px;
    margin: 5px 5px 5px 5px;
    text-align: center;
    border-radius: 2px;
    padding: 15px 15px 15px 15px;
    display: inline-block;
    vertical-align: middle;
    background: -moz-linear-gradient(-25deg, rgba(75,126,198,1) 20%, rgba(30,87,153,1) 45%, rgba(31,75,137,1) 45%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(75,126,198,1) 20%,rgba(30,87,153,1) 45%,rgba(31,75,137,1) 45%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(75,126,198,1) 20%,rgba(30,87,153,1) 45%,rgba(31,75,137,1) 45%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b7ec6', endColorstr='#1f4b89',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  
  .box2 {
    background: -moz-linear-gradient(-25deg, rgba(96,96,96,1) 20%, rgba(38,38,38,1) 45%, rgba(25,25,25,1) 45%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(96,96,96,1) 20%,rgba(38,38,38,1) 45%,rgba(25,25,25,1) 45%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(96,96,96,1) 20%,rgba(38,38,38,1) 45%,rgba(25,25,25,1) 45%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606060', endColorstr='#191919',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  
  .box p, .box2 p, .box a, .box2 a {
    font-size: 15px;
    font-family: 'Open Sans';
    font-weight: 500;
    font-style: italic;
    color: #FFFFFF;
    text-decoration: none;
    z-index: 10;
    line-height: 115%;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  /* ----------------------------------------------------------------------------------
  Membership Page
  ---------------------------------------------------------------------------------- */
  .memberBody{
    display: block;
    width: 100%;
    position: relative;
  }
  
  .membership, .operations {
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }

  .membership--unavailable {
    opacity: 0.15;
  }

  .membership--block {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    width: 95%;
    min-width: 260px;
    max-width: 320px;
    color: #FFFFFF;
    text-align: center;
    margin: 15px;
    border-radius: 2px;
    background: -moz-linear-gradient(-25deg, rgba(75,126,198,1) 25%, rgba(30,87,153,1) 50%, rgba(31,75,137,1) 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(75,126,198,1) 25%,rgba(30,87,153,1) 50%,rgba(31,75,137,1) 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(75,126,198,1) 25%,rgba(30,87,153,1) 50%,rgba(31,75,137,1) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b7ec6', endColorstr='#1f4b89',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }

  .membership--block:nth-child(2n) {
    background: -moz-linear-gradient(-25deg, rgba(96,96,96,1) 25%, rgba(38,38,38,1) 50%, rgba(25,25,25,1) 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(96,96,96,1) 25%,rgba(38,38,38,1) 50%,rgba(25,25,25,1) 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(96,96,96,1) 25%,rgba(38,38,38,1) 50%,rgba(25,25,25,1) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606060', endColorstr='#191919',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }

  .membership--block--level {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .membership--block--level--name {
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #FFFFFF;
  }

  .membership--block--level--details {
    margin-top: 5px;
    font-style:italic;
    font-weight: 300;
    text-align: left;
  }

  .membership--block--prices {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
  }

  .membership--block--prices--price {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  .membership--block--prices--price p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: unset;
  }

  .membership--block--prices--price p:nth-child(2) {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
  }

  .membership--registration, .operations--board {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
  }

  .membership--registration--title, .operations--board--title {
    margin-top: 25px;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #0092c2;
  }

  .membership--registration--steps, .operations--board--steps {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .membership--registration--steps--step, .operations--board--steps--step {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .membership--registration--steps--step.flexStart {
    align-items: flex-start;
  }

  .membership--registration--steps--step--number, .operations--board--steps--step--number {
    background:  rgba(30, 87, 153, 1);
    color: white;
    border-radius: 50%;
    display: block;
    height: 30px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    font-size: 0.9rem;
  }

  .membership--registration--steps--step--instructions, .operations--board--steps--step--instructions {
    margin-left: 5px;
    line-height: 1.35;
    display: flex;
    flex-direction: column;
  }

  .membership--registration--steps--step--instructions p {
    margin: unset;
  }

  .membership--registration--steps--step.flexStart > .membership--registration--steps--step--instructions p {
    margin-top: 3px;
  }

  .membership--registration--steps--step--instructions span {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.65;
    margin-top: 6px;
    position: relative;
    display: flex;
    align-items: center;
  }

  .membership--registration--steps--step--instructions.unflex {
    display: block;
  }

  .membership--registration--steps--step--instructions span::before {
    display: block;
    content: "";
    height: 8px;
    background: green;
    background: linear-gradient(-30deg, rgb(15 69 139) 50%, rgb(31 119 195) 50%);
    background: rgba(30, 87, 153, 1);
    margin-right: 7px;
    margin-left: 10px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
  }  

  .membership--info {
    margin-top: 40px;
  }

  .membership--info--item {
    margin-top: 20px;
  }

  .membership--info--item--title {
    font-weight: 600;
    color: #000000;
    color: #0092c2;
  }

  .membership--info--item--details {
    margin-top: 5px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    line-height: 1.35;
  }

  .membership--info--item--details a,
  .membership--info--item--details a:visited {
    color: rgba(30, 87, 153, 1);
    color: #0092c2!important;
  }

  .unFlex {
    display: block;
    line-height: 1.5;
  }

  .memberBody a, .memberBody a:visited {
    text-decoration: none;
    color: #000000;
  }

  .memblock, .memblock2 {
    display: inline-block;
    width: 250px;
    height: 400px;
    color: #FFFFFF;
    text-align: center;
    margin: 5px;
    border-radius: 2px;
    background: -moz-linear-gradient(-25deg, rgba(75,126,198,1) 25%, rgba(30,87,153,1) 50%, rgba(31,75,137,1) 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(75,126,198,1) 25%,rgba(30,87,153,1) 50%,rgba(31,75,137,1) 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(75,126,198,1) 25%,rgba(30,87,153,1) 50%,rgba(31,75,137,1) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b7ec6', endColorstr='#1f4b89',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  
  .memblock2 {
    background: -moz-linear-gradient(-25deg, rgba(96,96,96,1) 25%, rgba(38,38,38,1) 50%, rgba(25,25,25,1) 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(96,96,96,1) 25%,rgba(38,38,38,1) 50%,rgba(25,25,25,1) 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(96,96,96,1) 25%,rgba(38,38,38,1) 50%,rgba(25,25,25,1) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606060', endColorstr='#191919',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  
  .title {
    float: left;
    width: 230px;
    height: 85px;
    padding: 0px 10px 0px 10px;
    margin-top: 5px;
    color: #FFFFFF;
  }
  
  .title h1 {
    font-size: 1.35em;
    font-weight: 500;
    line-height: 1.5em;
    vertical-align: middle;
  }
  
  .descript {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    text-align: left;
    float: left;
    width: 205px;
    height: 120px;
    padding: 0px 15px 0px 25px;
  }
  
  .descript p {
    font-size: 0.825em;
    margin-bottom: 0px;
  }
  
  .descript-time  {
    margin-top: 2px;
    text-align: right;
    font-weight: lighter;
  }
  
  .price1 {
    float: left;
    width: 235px;
    height: 80px;
    padding: 0px 10px 0px 10px;
  }
  
  .price1 h1 {
    font-size: 11px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 0px;
  }
  
  .price1 h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 55x;
    margin-top: -10px;
    margin-bottom: 0px;
  }
  
  .price2 {
    float: left;
    width: 235px;
    height: 160px;
    padding: 0px 10px 0px 10px;
  }
  
  .price2 p {
    font-size: 50px;
    font-weight: 300;
    line-height: 55px;
  }
  
  .info {
    margin-top: 15px;
    display: block;
    width: 100%;
    position: relative;
  }
  
  .notes p{
    margin: 0 auto;
    z-index: -1;
    font-size: 13px;
    font-family: 'Open Sans';
    text-decoration: none;
    color: #3f3f3f;
  }
  
  .interest h1{
    margin: 0 auto;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #0092c2;
    margin-bottom: 20px;
  }
  
  .interest p{
    margin: 0 auto;
    font-size: 15px;
    line-height: 22px;
    font-family: 'Open Sans';
    color: #3f3f3f;
    margin-bottom: 18px;
  }
  
  .interest a{
    text-decoration: none;
    color: #00c2fc;
    z-index: 10;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  /* ----------------------------------------------------------------------------------
  Club Policy Page
  ---------------------------------------------------------------------------------- */
  .clubBody {
    display: block;
    width: 100%;
    position: relative;
  }
  
  .clubBody h1 {
    margin-bottom: -10px;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #0092c2;
  }
  
  .clubBody li {
    margin: 0 auto;
    font-size: 15px;
    line-height: 25px;
    font-family: 'Open Sans';
    color: #3f3f3f;
  }
  
  .clubBody a {
    text-decoration: none;
    color: #00c2fc;
    z-index: 10;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  } 
  
  /* ----------------------------------------------------------------------------------
  About Us Page
  ---------------------------------------------------------------------------------- */
  
  .aboutBody{
    display: block;
    width: 100%;
    position: relative;
  }
  
  .aboutBody h1{
    margin: 0 auto;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #0092c2;
    margin-bottom: 20px;
  }
  
  .aboutBody p{
    margin: 0 auto;
    font-size: 15px;
    line-height: 22px;
    font-family: 'Open Sans';
    color: #3f3f3f;
    margin-bottom: 18px;
  }
  
  .aboutBody a{
    text-decoration: none;
    color: #00c2fc;
    z-index: 10;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  .adminProfile {
    top: 20px;
    width: 100%;
    position: relative;
    text-align:center;
    z-index: -1;
  }
  
  .adminPics{
    position: relative;
    display: flex;
    width: 100%;
  }
  
  .adminPics ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .adminPics li{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    margin: unset!important;
    margin-bottom: 10px!important;
  }
  
  .adminPics li img {
    border-radius: 50%;
  }
  
  .adminPics h1{
    padding: 0;
    padding-right: 10px;
    text-align: left;
    font-size: 0.9rem;
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    color: #003d53;
    margin: unset!important;
    margin-top: -5px!important;
  }
  
  .adminPics p {
    text-align: left;
    margin-top: -10px;
    padding: 0;
    font-style: normal;
    font-weight: 300;
    font-size: 0.9rem;
    font-family: 'Open Sans';
    color: #003d53;
  }
  
  
  /* ----------------------------------------------------------------------------------
  Schedule Page
  ---------------------------------------------------------------------------------- */
  
  .calendar {
    width: 100%;
    display: block;
    text-align: center;
  }
  
  .months ul {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .calendar p{
    width: 85%;
    margin: 0 auto;
    text-align: center;
    font-size: 23px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #0092c2;
  }

  .calendarLegend {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 25px 0px 10px 0px;
  }

  .calendarLegend--type {
    display: flex;
    width: 17.5%;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin: 0px 20px;
  }

  .calendarLegend--type--name {
    font-weight: bold;
    font-style:italic;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  .calendarLegend--type--box {
    display: flex;
    width: 13%;
    min-width: 20px;
    min-height: 20px;
    aspect-ratio: 1 / 1;
    margin: 0.5%;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 2px #000000;
    background: linear-gradient(-30deg, rgba(43,175,255,1) 50%, rgba(43,190,255,1) 50%);
    background: linear-gradient(-30deg, rgb(19 137 209) 50%, rgb(26 176 227) 50%);
    background: linear-gradient(-30deg, rgb(25 152 229) 50%, rgb(74 189 247) 50%);
    opacity: 0.95;
    margin-right: 7px;
  }
  
  .legend, .months {
    z-index: -1;
    position: relative;
    display: inline-block;
    width: 70%;
    text-align: center;
    margin: 0 auto;
    top: 10px;
  }
  
  .legend {
    width: 85%;
  }
  
  .legend ul, .months ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    padding: 5px 0px;
  }
  
  .legend li, .months li {
    display: inline-block;
    position: relative;
  }
  
  /* ----------------------------------------------------------------------------------
  Contact Page
  ---------------------------------------------------------------------------------- */
  
  .address {
    width: 100%;
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .address h1 {
    margin: 0 auto;
    font-size: 20px;
    line-height: 25px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #0092c2;
  }
  
  .conBody {
    z-index: -1;
    margin: 0px auto;
    display: block;
  }
  
  .conBody img{
    height: auto;
    max-width: 100%;
  }
  
  .conInfo{
    width: 100%;
    display: block;
    float: left;
    position: relative;
    margin: 0px auto;
    text-align: center;
  }
  
  .conInfo p, .contactUS p {
    margin: 0 auto;
    font-family: 'Open Sans';
    font-size: 16px;
    color: #3f3f3f;
  }
  
  .conInfo a, .contactUS a {
    text-decoration: none;
    color: #00c2fc;
    z-index: 10;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  .blockBase {
    display: flex !important;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 70px 0px 30px 0px;
  }
  
  .blockBaseContainer {
    width: 80%;
  }
  
  .blockBaseContainer h3 {
    font-size: 2rem;
    font-family: 'Open Sans';
    font-weight: 300;
    text-transform: uppercase;
    color: white;
    position: relative;
    padding: 15px;
    margin: 0px;
    background: -moz-linear-gradient(-25deg, rgba(96,96,96,1) 25%, rgba(38,38,38,1) 50%, rgba(25,25,25,1) 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-25deg, rgba(96,96,96,1) 25%,rgba(38,38,38,1) 50%,rgba(25,25,25,1) 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(155deg, rgba(96,96,96,1) 25%,rgba(38,38,38,1) 50%,rgba(25,25,25,1) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606060', endColorstr='#191919',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }

  .blockbaseContainer h3:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -15px;
    height: 15px;
    width: 100px;
    background: blue;
    left: 0px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .covidInfo {
    position: fixed;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 10000;
    background: #3f376f;
    color: #fff;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  .covidInfo--show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  
  .covidInfo::-webkit-scrollbar {
    width: 7px;
  }
  
  .covidInfo::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.25);
  }
  
  .covidInfo::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.6);
    border-radius: 7px;
  }
  
  .covidInfoClose {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 3rem;
    right: 3rem;
    height: 1.75rem;
    width: 1.75rem;
    z-index: 10500;
    cursor: pointer;
  }
  
  .covidInfoClose:before, .covidInfoClose:after {
    display: block;
    content: "";
    position: absolute;
    width: 1.75rem;
    height: 2px;
    background: rgba(255,255,255,0.6);
    transform: rotate(45deg);
  }
  
  .covidInfoClose:after {
    transform: rotate(135deg);
  }
  
  .covidInfo-title {
    color: #fff;
    opacity: 0.85;
    text-transform: uppercase;
    font-size: 1.25rem;
  }
  
  .covidInfo-rules {
    color: #fff;
    opacity: 0.85;
    padding: 0;
    margin: 0 1rem 0 0;
  }
  
  .covidInfo-rules li {
    font-size: 1.085rem;
    margin: 1.5rem;
  }
  
  .covidInfo-rules li a {
    color: #fff;
    text-decoration: none;
  }
  
  .covidAlert {
    position: fixed;
    bottom: 0;
    opacity: 0;
    height: fit-content;
    transform: scale(1, 0.1);
    visibility: hidden;
    background: #3f376f;
    width: 100%;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
    box-sizing: border-box;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  .covidAlert--show {
    opacity: 1;
    visibility: visible;
    transform: scale(1,1);
  }
  
  .covidAlert div, .covidAlert p {
    color: #fff;
    opacity: 0.75;
    text-decoration: none;
    font-size: 1rem;
    cursor:pointer;
    padding-right: 2rem;
  }
  
  .covidAlert p {
    cursor:default;
    margin: 0;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .covidAlert span {
    position: relative;
  }
  
  .covidAlert span:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    opacity: 0.85;
    background: #fff;
  }
  
  div.covidAlertClose {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  
  div.emergencyClose {
    position:absolute;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .covidAlertClose:before, .covidAlertClose:after {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: 25px;
    background: #fff;
    transform: rotate(45deg);
  }
  
  .covidAlertClose:after {
    transform: rotate(135deg);
  }
  
  #covid-menu, #covid-menu-mobile {
    cursor: pointer;
  }
  
  #covid-menu:hover, #covid-menu:focus, #covid-menu-mobile:hover, #covid-menu-mobile:focus {
    color: #8c79ff;
  }

  .registration {
    margin-bottom: 1.5rem;
  }
  
  .registration-title{
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .registration p {
    margin-bottom: 0.5rem;
  }
  
  .registration-steps p {
    margin-left: 1rem;
  }
  
  .registration-locations {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .registration-location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    padding: 0.75rem 1rem;
    line-height: 1.5rem;
  }
  
  .registration-location--one {
    position: relative;
    padding-left: 1rem;
  }
  
  .registration-location--one:after {
    display: block;
    content: '';
    position: absolute;
    height: 85%;
    right: 0;
    width: 1px;
    opacity: 0.2;
    background: grey;
  }

  .calendar--days {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .calendar--days div {
    display: flex;
    width: 13%;
    min-width: 35px;
    min-height: 35px;
    aspect-ratio: 1 / 1;
    margin: 0.5%;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 1px #002653;
    background: linear-gradient(-30deg, rgba(43,175,255,1) 50%, rgba(43,190,255,1) 50%);
    background: linear-gradient(-30deg, rgb(19 137 209) 50%, rgb(26 176 227) 50%);
    background: linear-gradient(-30deg, rgb(25 152 229) 50%, rgb(74 189 247) 50%);
    background: linear-gradient(-30deg, rgb(25 152 229) 50%, rgb(74 189 247) 50%);
    opacity: 0.95;
}

.calendar--weekdays {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -5px;
  position: relative;
}

.calendar--weekdays::after {
  position: absolute;
  display: block;
  height: 70%;
  width: 100%;
  content: "";
  border-bottom: 1px solid #080848;
  opacity: 0.25;
}

div.isFallDay {
  background: linear-gradient(-30deg, rgb(15 69 139) 50%, rgb(31 119 195) 50%);
  opacity: 1;
}

.isFall {
  color: rgb(15 69 139);
}

div.isWinterDay {
  opacity: 1;
  background: linear-gradient(-30deg, rgb(46 25 160) 50%, rgb(111 40 207) 50%);
}

.isWinter {
  color: rgb(72 55 167);
}

div.isClosedDay {
  background: linear-gradient(-30deg, rgb(255 132 43) 50%, rgb(255 163 43) 50%);
  opacity: 1;
  background: linear-gradient(-30deg, rgb(216 96 10) 50%, rgb(255 129 0) 50%);
}

.isClosed {
  color: rgb(255 132 43);
}

.calendar--weekdays div {
  width: 13%;
  margin: 0.5%;
  min-height: 35px;
  min-width: 35px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  font-style: italic;
  opacity: 0.35;
  font-size: 0.8rem!important;
}

.calendar--weekdays div:nth-of-type(3),
.calendar--weekdays div:nth-of-type(5) {
  opacity: 1;
}

#calendar, .calendar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.calendar--month {
  margin: 10px 0px 35px 0px;
  width: 30%;
  min-width: 315px;
  padding: 1.65%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calendar--month div {
  text-transform: uppercase;
  font-weight: bold;
}

.calendar--monthName {
  font-size: 1.1rem;
}

.contactUs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 25px 0px 35px 5px;
}

.contactUs--method {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.contactUs--method img {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

.contactUs--method a, .contactUs--method a:visited {
  font-size: 0.95rem;
  text-decoration: none;
  color: #0092c2;
}


.operationsBody span {
  font-size: 0.9rem;
  opacity: 0.65;
  font-style: italic;
}

.operationsBody br {
  line-height: 2rem;
}

.operations--board {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.operations--board--title {
  margin-top: 25px;
  font-size: 1.4rem;
  font-family: 'Open Sans';
  font-weight: 500;
  color: #000000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0092c2;
}

.operations--board--title--text {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 30px;
  font-family: 'Open Sans';
  font-weight: 500;
  color: #000000;
  color: #0092c2;
}

.operations--board--title--toggle {
  padding: 8px 16px;
  background: linear-gradient(155deg, rgba(75, 126, 198, 1) 25%, rgba(30, 87, 153, 1) 50%, rgba(31, 75, 137, 1) 50%);
  background: rgb(1, 43, 104);
  background: #0092c2;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.operations--board--steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 25px;
}

.operations--board--steps--step {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.operations--board--steps--step--number {
  background:  rgba(30, 87, 153, 1);
  color: white;
  border-radius: 50%;
  display: block;
  height: 30px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-top: 2px;
  font-size: 0.9rem;
}

.operations--board--steps--step--instructions {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.operations--board--steps--step--instructions p {
  font-size: 0.95rem;
  margin: unset;
  font-weight: 600;
}

.operations--board--steps--step--instructions span {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.65;
  margin-top: 6px;
  position: relative;
  display: flex;
  align-items: center;
}

.operations--board--steps--step--instructions span::before {
  display: block;
  content: "";
  height: 8px;
  background: green;
  background: linear-gradient(-30deg, rgb(15 69 139) 50%, rgb(31 119 195) 50%);
  background: rgba(30, 87, 153, 1);
  margin-right: 7px;
  margin-left: 10px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.playerRank span.yellowCircle {
  border-radius: 50%;
  display: block;
  height: 20px;
  aspect-ratio: 1 / 1;
  background: rgb(253 194 2);
  margin-top: unset !important;
  margin-left: 5px;
  opacity: 1;

  &:first-of-type {
    margin-left: 10px;
  }
}

.playerRank span.blueCircle {
  border-radius: 50%;
  display: block;
  height: 20px;
  aspect-ratio: 1 / 1;
  background: rgb(3, 64, 170);
  margin-top: unset !important;
  margin-left: 5px;
  opacity: 1;

  &:first-of-type {
    margin-left: 10px;
  }
}

.playerRank span.redCircle {
  border-radius: 50%;
  display: block;
  height: 20px;
  aspect-ratio: 1 / 1;
  background: rgb(207, 7, 7);
  margin-top: unset !important;
  margin-left: 5px;
  opacity: 1;

  &:first-of-type {
    margin-left: 10px;
  }
}

.blueCircle {
  background: rgb(3, 64, 170);
}

.redCircle {
  background: rgb(207, 7, 7);
}

.operations--board--steps--step--instructions.playerRank {
  margin-left: unset;
}

.operations--board--steps--step--instructions.playerRank p {
  display: flex;
  font-weight: bold;
  font-style: italic;
}

.operations--board--steps--step--instructions.playerRank span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.operations--board--steps--step--instructions.playerRank span:before {
  content: none;
}


.star {
  position: relative;
  
  display: inline-block;
  width: 0;
  height: 0;
  
  margin-left: .9em;
  margin-right: .9em;
  margin-bottom: 1.2em;
  
  border-right:  .3em solid transparent;
  border-bottom: .7em  solid #FC0;
  border-left:   .3em solid transparent;

  /* Controlls the size of the stars. */
  font-size: 8px;
  
  &:before, &:after {
    content: '';
    
    display: block;
    width: 0;
    height: 0;
    
    position: absolute;
    top: .6em;
    left: -1em;
  
    border-right:  1em solid transparent;
    border-bottom: .7em  solid #FC0;
    border-left:   1em solid transparent;
  
    transform: rotate(-35deg);
  }
  
  &:after {  
    transform: rotate(35deg);
  }
}

.star.black {
  border-bottom: .7em  solid rgb(0, 0, 0);
  opacity: 0.5;
  &:before, &:after {
    border-bottom: .7em  solid rgb(0, 0, 0);
  }
}

.operations--board--advanced {
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease, opacity 0.5s ease, max-height 0.2s ease;
}

.operations--board--categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.operations--board--category {
  display: flex;
  flex-direction: column;
  margin-right: 25px;
  margin-bottom: 5px;
  margin-top: 5px;
  min-width: 125px;
}

.operations--board--category--title {
  font-weight: 600;
}

.operations--board--category--list {
  display: flex;
  flex-direction: column;
}

.operations--board--category--list--item {
  display: flex;
  flex-direction: row;
  font-style: italic;
  margin-top: 3px;
  align-items: center;
  justify-content: space-between;
}

.operations--board--category--list--item--name {
  margin-right: 5px;
}

.operations--board--category--list--item--grade {
  display: flex;
  flex-direction: row;
}

.operations--board--text {
  margin: 15px 0px 10px 0px;
}

.operations--board .operations--board--text {
  margin: 5px 0px 0px 0px;
}

.operations--board--text--advanced {
  align-items: center;
  margin-bottom: 0px;
  display: flex;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease, opacity 0.5s ease, max-height 0.2s ease, margin-bottom 0.2s ease;;
}

.showAdvanced {
  transform: scaleY(1);
  opacity: 1;
  max-height: 300px;
  margin-bottom: 7px;
}

.operations--board--text--star {
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;

  &:before {
    display: block;
    content: "";
    height: 15px;
    width: 1px;
    background: black;
    margin-right: 13px;
  }
}

.memberRank .operations--board--steps--step {
  margin-top: 15px;
}

.memberRank .operations--board--steps--step--instructions span {
  margin-top: 4px;
}

.courtRules .operations--board--title {
  margin-bottom: 10px;
}

.courtRules .operations--board--steps--step--instructions p {
  font-weight: 500;
  position: relative;
  display: flex;
  margin: unset;
  align-items: center;
  margin-top: 5px;
  font-size: 0.95rem;

    &:before {
      display: block;
      content: "";
      height: 10px;
      background: green;
      background: linear-gradient(-30deg, rgb(15 69 139) 50%, rgb(31 119 195) 50%);
      background: rgba(30, 87, 153, 1);
      margin-right: 10px;
      margin-left: 0px;
      border-radius: 50%;
      aspect-ratio: 1 / 1;
    }
}

.courtRules .operations--board--steps--step--instructions span {
  margin-top: 2px;
  margin-bottom: 7px;

  &:before {
    margin-left: 25px;
  }
}

.adminTeam .operations--board--steps {
  padding-left: 5px;
}

.adminTeam .operations--board--title {
  margin-bottom: 10px;
}

.adminTeam .operations--board--steps--step--instructions {
  margin-left: 0px;
  margin-bottom: 7px; 
}
.adminTeam .operations--board--steps--step--instructions p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.9rem;

    &:before {
      content: none;
    }
}

.adminTeam .operations--board--steps--step--instructions span {
  margin: unset;
  font-style: unset;
  font-weight: 500;
  opacity: 0.75;
  font-size: 0.8rem;

  &:before {
    display: block;
    content: "";
    height: 15px;
    width: 1px;
    background: black;
    margin-right: 11px;
  }
}