/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none !important; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.6rem;
  font-family: "Source Sans Pro", sans-serif;
  color: #222222;
  background-color: white; }

a {
  color: #A2B9B2;
  text-decoration: none; }

/* --------------------------------

Main Components

-------------------------------- */
.cd-schedule {
  position: relative;
  margin: 2em 0; }

.cd-schedule::before {
  /* never visible - this is used in js to check the current MQ */
  content: 'mobile';
  display: none; }

@media only screen and (min-width: 800px) {
  .cd-schedule {
    width: 90%;
    max-width: 1400px;
    margin: 2em auto; }

  .cd-schedule::after {
    clear: both;
    content: "";
    display: block; }

  .cd-schedule::before {
    content: 'desktop'; } }
.cd-schedule .timeline {
  display: none; }

@media only screen and (min-width: 800px) {
  .cd-schedule .timeline {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-top: 50px; }

  .cd-schedule .timeline li {
    position: relative;
    height: 50px; }

  .cd-schedule .timeline li::after {
    /* this is used to create the table horizontal lines */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #EAEAEA; }

  .cd-schedule .timeline li:last-of-type::after {
    display: none; }

  .cd-schedule .timeline li span {
    display: none; } }
@media only screen and (min-width: 1000px) {
  .cd-schedule .timeline li::after {
    width: calc(100% - 60px);
    left: 60px; }

  .cd-schedule .timeline li span {
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

  .cd-schedule .timeline li:nth-of-type(2n) span {
    display: none; } }
.cd-schedule .events {
  position: relative;
  z-index: 1; }

.cd-schedule .events .events-group {
  margin-bottom: 30px; }

.cd-schedule .events .top-info {
  width: 100%;
  padding: 0 5%; }

.cd-schedule .events .top-info > span {
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: bold; }

.cd-schedule .events .events-group > ul {
  position: relative;
  padding: 0 5%;
  /* force its children to stay on one line */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch; }

.cd-schedule .events .events-group > ul::after {
  /* never visible - used to add a right padding to .events-group > ul */
  display: inline-block;
  content: '-';
  width: 1px;
  height: 100%;
  opacity: 0;
  color: transparent; }

.cd-schedule .events .single-event {
  /* force them to stay on one line */
  -ms-flex-negative: 0;
  flex-shrink: 0;
  float: left;
  height: 150px;
  width: 70%;
  max-width: 300px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  margin-right: 20px;
  -webkit-transition: opacity .2s, background .2s;
  transition: opacity .2s, background .2s; }

.cd-schedule .events .single-event:last-of-type {
  margin-right: 5%; }

.cd-schedule .events .single-event a {
  display: block;
  height: 100%;
  padding: .8em; }

@media only screen and (min-width: 550px) {
  .cd-schedule .events .single-event {
    width: 40%; } }
@media only screen and (min-width: 800px) {
  .cd-schedule .events {
    float: left;
    width: 100%; }

  .cd-schedule .events .events-group {
    width: 20%;
    float: left;
    /* reset style */
    margin-bottom: 0; }

  .cd-schedule .events .events-group:not(:first-of-type) {
    border-left-width: 0; }

  .cd-schedule .events .top-info {
    /* vertically center its content */
    display: table;
    height: 50px;
    border-bottom: 1px solid #EAEAEA;
    /* reset style */
    padding: 0; }

  .cd-schedule .events .top-info > span {
    /* vertically center inside its parent */
    display: table-cell;
    vertical-align: middle;
    padding: 0 .5em;
    text-align: center;
    /* reset style */
    font-weight: normal;
    margin-bottom: 0; }

  .cd-schedule .events .events-group > ul {
    height: 1500px;
    /* reset style */
    display: block;
    overflow: visible;
    padding: 0; }

  .cd-schedule .events .events-group > ul::after {
    clear: both;
    content: "";
    display: block; }

  .cd-schedule .events .events-group > ul::after {
    /* reset style */
    display: none; }

  .cd-schedule .events .single-event {
    position: absolute;
    z-index: 3;
    /* top position and height will be set using js */
    width: calc(100% + 2px);
    left: -1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    /* reset style */
    -ms-flex-negative: 1;
    flex-shrink: 1;
    height: auto;
    max-width: none;
    margin-right: 0; }

  .cd-schedule .events .single-event a {
    padding: 1.2em; }

  .cd-schedule .events .single-event:last-of-type {
    /* reset style */
    margin-right: 0; }

  .cd-schedule .events .single-event.selected-event {
    /* the .selected-event class is added when an user select the event */
    visibility: hidden; } }
@media only screen and (min-width: 1000px) {
  .cd-schedule .events {
    /* 60px is the .timeline element width */
    width: calc(100% - 60px);
    margin-left: 60px; } }
.cd-schedule.loading .events .single-event {
  /* the class .loading is added by default to the .cd-schedule element
     it is removed as soon as the single events are placed in the schedule plan (using javascript) */
  opacity: 0; }

.cd-schedule .event-name,
.cd-schedule .event-date {
  display: block;
  color: white;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.cd-schedule .event-date {
  /* they are not included in the the HTML but added using JavScript */
  font-size: 1.4rem;
  opacity: .7;
  line-height: 1.2;
  margin-bottom: .2em; }

.cd-schedule .single-event[data-event="event-1"],
.cd-schedule [data-event="event-1"] .header-bg {
  /* this is used to set a background color for the event and the modal window */
  background: #577F92; }

.cd-schedule .single-event[data-event="event-1"]:hover {
  background: #618da1; }

.cd-schedule .single-event[data-event="event-2"],
.cd-schedule [data-event="event-2"] .header-bg {
  background: #443453; }

.cd-schedule .single-event[data-event="event-2"]:hover {
  background: #513e63; }

.cd-schedule .single-event[data-event="event-3"],
.cd-schedule [data-event="event-3"] .header-bg {
  background: #A2B9B2; }

.cd-schedule .single-event[data-event="event-3"]:hover {
  background: #b1c4be; }

.cd-schedule .single-event[data-event="event-4"],
.cd-schedule [data-event="event-4"] .header-bg {
  background: #f6b067; }

.cd-schedule .single-event[data-event="event-4"]:hover {
  background: #f7bd7f; }

.cd-schedule .event-modal {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  /* Force Hardware acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: visibility .4s, -webkit-transform .4s;
  transition: visibility .4s, -webkit-transform .4s;
  transition: transform .4s, visibility .4s;
  transition: transform .4s, visibility .4s, -webkit-transform .4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
  transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1); }

.cd-schedule .event-modal .header {
  position: relative;
  height: 70px;
  /* vertically center its content */
  display: table;
  width: 100%; }

.cd-schedule .event-modal .header .content {
  position: relative;
  z-index: 3;
  /* vertically center inside its parent */
  display: table-cell;
  vertical-align: middle;
  padding: .6em 5%; }

.cd-schedule .event-modal .body {
  position: relative;
  width: 100%;
  /* 70px is the .header height */
  height: calc(100% - 70px); }

.cd-schedule .event-modal .event-info {
  position: relative;
  z-index: 2;
  line-height: 1.4;
  height: 100%;
  overflow: hidden; }

.cd-schedule .event-modal .event-info > div {
  overflow: auto;
  height: 100%;
  padding: 1.4em 5%; }

.cd-schedule .event-modal .header-bg, .cd-schedule .event-modal .body-bg {
  /* these are the morphing backgrounds - visible on desktop only */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.cd-schedule .event-modal .body-bg {
  z-index: 1;
  background: white;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left; }

.cd-schedule .event-modal .header-bg {
  z-index: 2;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center; }

.cd-schedule .event-modal .close {
  /* this is the 'X' icon */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.1);
  /* replace text with icon */
  color: transparent;
  white-space: nowrap;
  text-indent: 100%;
  height: 70px;
  width: 70px; }

.cd-schedule .event-modal .close::before, .cd-schedule .event-modal .close::after {
  /* these are the two lines of the 'X' icon */
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 22px;
  background: white;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.cd-schedule .event-modal .close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg); }

.cd-schedule .event-modal .close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg); }

.cd-schedule .event-modal .event-date {
  display: none; }

.cd-schedule .event-modal.no-transition {
  -webkit-transition: none;
  transition: none; }

.cd-schedule .event-modal.no-transition .header-bg, .cd-schedule .event-modal.no-transition .body-bg {
  -webkit-transition: none;
  transition: none; }

@media only screen and (min-width: 800px) {
  .cd-schedule .event-modal {
    /* reset style */
    right: auto;
    width: auto;
    height: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    will-change: transform, width, height;
    -webkit-transition: height .4s, width .4s, visibility .4s, -webkit-transform .4s;
    transition: height .4s, width .4s, visibility .4s, -webkit-transform .4s;
    transition: height .4s, width .4s, transform .4s, visibility .4s;
    transition: height .4s, width .4s, transform .4s, visibility .4s, -webkit-transform .4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
    transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1); }

  .cd-schedule .event-modal .header {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%; }

  .cd-schedule .event-modal .header .content {
    /* reset style */
    display: block;
    padding: .8em; }

  .cd-schedule .event-modal .event-info > div {
    padding: 2em 3em 2em 2em; }

  .cd-schedule .event-modal .body {
    height: 100%;
    width: auto; }

  .cd-schedule .event-modal .header-bg, .cd-schedule .event-modal .body-bg {
    /* Force Hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

  .cd-schedule .event-modal .header-bg {
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
    transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1); }

  .cd-schedule .event-modal .body-bg {
    opacity: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }

  .cd-schedule .event-modal .event-date {
    display: block; }

  .cd-schedule .event-modal .close, .cd-schedule .event-modal .event-info {
    opacity: 0; }

  .cd-schedule .event-modal .close {
    width: 40px;
    height: 40px;
    background: transparent; }

  .cd-schedule .event-modal .close::after, .cd-schedule .event-modal .close::before {
    background: #222222;
    height: 16px; } }
@media only screen and (min-width: 1000px) {
  .cd-schedule .event-modal .header .content {
    padding: 1.2em; } }
.cd-schedule.modal-is-open .event-modal {
  /* .modal-is-open class is added as soon as an event is selected */
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible; }

.cd-schedule.modal-is-open .event-modal .event-info > div {
  /* smooth scroll on iOS touch devices */
  -webkit-overflow-scrolling: touch; }

@media only screen and (min-width: 800px) {
  .cd-schedule.animation-completed .event-modal .close,
  .cd-schedule.content-loaded.animation-completed .event-modal .event-info {
    /*  the .animation-completed class is added when the modal animation is completed
      the .content-loaded class is added when the modal content has been loaded (using ajax) */
    opacity: 1;
    -webkit-transition: opacity .2s;
    transition: opacity .2s; }

  .cd-schedule.modal-is-open .body-bg {
    opacity: 1;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
    transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1); } }
.cd-schedule .cover-layer {
  /* layer between the content and the modal window */
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s; }

.cd-schedule.modal-is-open .cover-layer {
  opacity: 1;
  visibility: visible; }

.timetable_wrapper {
  width: 100vw;
  margin-left: -8rem;
  padding: 50px;
  background-image: linear-gradient(145deg, rgba(0, 0, 0, 0.85) 45%, rgba(255, 255, 255, 0.25)), url(../img/bxr/alex-profile-1.png);
  background-size: contain;
  background-repeat: no-repeat; }
  .timetable_wrapper .week_filter {
    height: 36px; }
  .timetable_wrapper #reset {
    float: right;
    margin-left: 5px; }
  .timetable_wrapper .left__select span {
    width: 130px; }
  .timetable_wrapper .left__select select {
    width: 130px; }

.sweat__timetable {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  font-family: "Arial" !important;
  transition: all 1s; }
  .sweat__timetable .day__view {
    display: flex;
    flex-direction: column;
    width: 14.28%; }
    .sweat__timetable .day__view .day_title_box {
      height: 40px;
      text-align: center;
      border: 1px solid white;
      padding: 12px;
      margin-bottom: 20px;
      font-family: 'gotham' !important;
    }
      .sweat__timetable .day__view .day_title_box h4 {
        font-size: 1.1em; 
        text-transform: uppercase;
      }
      .sweat__timetable .day__view .day_title_box span {
        font-weight: 200;
        color: #979797; }
    .sweat__timetable .day__view .day_class_box p {
      margin-bottom: 0;
      line-height: 1.1; }
    .sweat__timetable .day__view .day_class_box .each_class {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 20px;
      transition: display 1s;
      background: #161616;
      margin-bottom: 20px;
      border-left: 2px white solid;
    }
      .sweat__timetable .day__view .day_class_box .each_class:hover .book_overlay {
        display: block; }
      .sweat__timetable .day__view .day_class_box .each_class .info_container {
        height: 175px;
        position: relative; }
        .sweat__timetable .day__view .day_class_box .each_class .info_container .class_name {
          text-transform: uppercase; }
        .sweat__timetable .day__view .day_class_box .each_class .info_container .class__details {
          margin-top: 5px; }
      .sweat__timetable .day__view .day_class_box .each_class .book_overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        background-color: rgba(0, 0, 0, 0.85);
        display: none; }
        .sweat__timetable .day__view .day_class_box .each_class .book_overlay button {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: auto;
          height: 50px;
          width: 150px; }

.book_class_btn {
  border: none;
  background: transparent;
  border-radius: 5px;
  width: 100px;
  color: #66B4CE; }

  .book_class_btn:hover {
    background: white; 
  }

.bxr_grey {
  color: #979797 !important; }
  .bxr_grey p {
    color: #979797 !important; }

.bxr_blue {
  color: #66B4CE !important; }

@media screen and (min-width: 926px) {
  .small_screen_timetable {
    display: none !important; }

  .each_class {
    height: 230px; } }

@media screen and (min-width: 600px) {
    #btn_small{
      display: none;
    }
}
@media screen and (max-width: 600px) {
    .book_class_btn{
      width: 100% !important;
      height: 40px;
      margin-top: 10px;
    }
    .waitlist_class_btn{
      width: 100% !important;
      height: 40px;
      margin-top: 10px;
    }
    .book_class_btn_{
      width: 100% !important;
      height: 40px;
      margin-top: 10px;
    }
}
@media screen and (max-width: 925px) {
  #over_none{
    display: none;
  }
  #filters_array {
    margin-bottom: 40px;
    background: black;
    /* padding: 20px; */
    /* background: rgba(255, 255, 255, 0.31); */
    border-radius: 5px;
    flex-wrap: wrap; }
    #filters_array #reset {
      flex-shrink: 0;
      margin-top: 15px; }

  .sweat__timetable {
    flex-direction: column; 
    margin-top: -130px;
  }
    .sweat__timetable .day__view {
      width: 100% !important; }
      .sweat__timetable .day__view:nth-child(n+2) {
        display: none; }
    .sweat__timetable .each_class {
      cursor: pointer; }
      .sweat__timetable .each_class .info_container {
        height: 210px !important; }
      .sweat__timetable .each_class .trainer_name, .sweat__timetable .each_class .time_start, .sweat__timetable .each_class .class_length {
        /* position: absolute;  */
      }
      .sweat__timetable .each_class .trainer_name {
        bottom: 0; }
      .sweat__timetable .each_class .class_length {
        bottom: 0;
        /* right: 20px;  */
      }
      .sweat__timetable .each_class .time_start {
        /* right: 20px; */
        top: 90; }
    .sweat__timetable .class_name {
      max-width: 60%; }

  .mobile_slidedown {
    display: none;
    height: 50px;
    position: relative; }
    .mobile_slidedown .class_location, .mobile_slidedown .book_class_btn {
      position: absolute; }
    .mobile_slidedown .class_location {
      left: 0;
      top: 20px; }
    .mobile_slidedown .book_class_btn {
      right: 20px;
      bottom: 0; } }
.stick-to-top {
  margin-top: 60px;
  background: black;
  z-index: 2000; }

@media (max-width: 1600px) and (min-width: 1000px) {
  .book_overlay button {
    width: 95% !important; } }
@media (max-width: 1600px) {
  .info_container p {
    font-size: 14px; }
  .info_container .class_name {
    font-size: 12px; }

  .timetable_wrapper {
    margin-left: -3rem !important; }
    .timetable_wrapper .each_class {
      padding: 1vmin !important; } }
.filter_reveal {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px white solid;
}
  .filter_reveal .filters_expand {
    /* float: right; */
    cursor: pointer; }
    .filter_reveal .filters_expand p {
      font-family: 'bebasneueregular';
      font-size: 24px;
      margin-bottom: 0; }

@media (max-width: 1093px) {
  .left__select, .right__select {
    display: flex;
    flex-direction: column; }
    .left__select span, .right__select span {
      margin: 2px 0 !important; }
    .left__select .day_phase, .right__select .day_phase {
      margin: 5px 0 !important; } }
@media (max-width: 768px) {
  .timetable_wrapper {
    margin-left: -1rem !important; } }
@media (max-width: 563px) {
  #reset {
    margin-left: 0 !important;
    margin: auto; } }
@media (max-width: 422px) {
  #filters_array .left__select, #filters_array .right__select {
    width: 100%; }
    #filters_array .left__select span, #filters_array .right__select span {
      width: 100%; }
    #filters_array .left__select .select2, #filters_array .left__select .select2-selection__rendered, #filters_array .right__select .select2, #filters_array .right__select .select2-selection__rendered {
      width: 100% !important; }
      #filters_array .left__select .select2 .dropdown-wrapper, #filters_array .left__select .select2-selection__rendered .dropdown-wrapper, #filters_array .right__select .select2 .dropdown-wrapper, #filters_array .right__select .select2-selection__rendered .dropdown-wrapper {
        width: 100% !important; }
    #filters_array .left__select select, #filters_array .right__select select {
      width: 100%; } }
.select2-container .select2-selection--single .select2-selection__rendered {
    background-color: #000000;
    color: white;
    font-family: 'bebas-neue', arial;
    border-radius: 4px;
    border: 2px #ccc solid !important;
}

.select2-container--open .select2-selection--single {
  border: 0 !important; }
.btn-timetable{
  background-color: #000000;
    color: white;
    font-family: 'bebas-neue', arial;
    border-radius: 4px;
    border: 2px #ccc solid !important;
}
.select2-container--default .select2-selection--single {
  border: 0 !important;
  background: transparent !important; }

.select2 .select2-container .select2-container--default {
  width: 150px !important; }

.select2-dropdown {
  border: 0 !important;
  font-family: 'bebas-neue', arial;
  padding: 5px;
  border-bottom-left-radius: 3px !important;
  border-bottom-right-radius: 3px !important; }

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

.btn-timetable {
  background-color: #3A3A3A;
  color: white;
  font-size: 16px !important;
  font-weight: normal !important;
  text-transform: lowercase !important;
  border: 1px solid #3A3A3A !important; }
  .btn-timetable:hover {
    background-color: transparent;
    border: 1px solid #3A3A3A; }

/*# sourceMappingURL=sweat-timetable.css.map */

.waitlist_class_btn {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #ff5733;
    border-radius: 5px;
    color: #ff5733;
}
