/**
 * APM Styles
 * SCSS
 */
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(#fff, bottomright, 3deg, topleft, 3deg);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* Pretty radio and checkboxes
* Usage: @include pretty-checkradio(label);
* Source: https://stackoverflow.com/questions/12743837/can-i-use-variables-for-selectors
*/
/**

 * CSS3 Animations
 *
*/
/**
 * Fade
*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 0;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 0;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0.2;
    transform: translate3d(8%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-8%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@-webkit-keyframes avbGradient {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
@keyframes avbGradient {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(94, 94, 94, 0.7);
  }
  30% {
    transform: scale(1.05);
    box-shadow: 0 0 0 30px rgba(94, 94, 94, 0);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(94, 94, 94, 0);
  }
}
.pulse {
  animation: pulse 3s infinite;
}
.pulse:hover {
  animation: none;
}

.is-loading, .apt-workouts .apt-workouts--stage .workout.preload ul li, .apt-workouts .apt-workouts--stage .workout.preload h2, .apt-workouts .apt-workouts--stage .workout.preload figure, .apt-filters.preloader {
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #e4eaf1;
  background: linear-gradient(to right, #e4eaf1 8%, #ebeff4 24%, #e4eaf1 33%);
  background-size: 800px 104px;
  position: relative;
}
.is-loading.dark, .apt-workouts .apt-workouts--stage .workout.preload ul li.dark, .apt-workouts .apt-workouts--stage .workout.preload h2.dark, .apt-workouts .apt-workouts--stage .workout.preload figure.dark, .dark.apt-filters.preloader {
  background: #f66591;
  background: linear-gradient(to right, #f66591 8%, #f87da2 24%, #f66591 33%);
}

/**
 * APM Filters
 * SCSS
 */
.apt-filters {
  border-right: 1px #e4eaf1 solid;
  padding: 10px 0 20px;
}
@media (max-width: 800px) {
  .apt-filters {
    border-right: none;
  }
}
.apt-filters form article {
  padding: 20px 20px 20px 0;
  border-bottom: 1px #e4eaf1 solid;
}
.apt-filters form article:last-child {
  border-bottom: 0;
}
@media (max-width: 650px) {
  .apt-filters form article {
    width: 100%;
  }
}
.apt-filters form article h5 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 20px;
}
.apt-filters form article input[type=checkbox],
.apt-filters form article input[type=radio] {
  display: none;
  width: auto;
}
.apt-filters form article input[type=checkbox] + label,
.apt-filters form article input[type=radio] + label {
  color: #5e5e5e;
  display: flex;
  cursor: pointer;
  align-items: center;
}
.apt-filters form article input[type=checkbox] + label:before,
.apt-filters form article input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: 300;
  font-size: 17px;
  color: #5e5e5e;
  content: "\f111";
  letter-spacing: 10px;
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
.apt-filters form article input[type=checkbox]:checked + label,
.apt-filters form article input[type=radio]:checked + label {
  font-weight: 800;
  background: transparent;
  color: #f54d80;
}
.apt-filters form article input[type=checkbox]:checked + label:before,
.apt-filters form article input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: 600;
  color: #2cdae1;
}
.apt-filters form article input[type=checkbox]:checked + label:before,
.apt-filters form article input[type=radio]:checked + label:before {
  letter-spacing: 10px;
}
.apt-filters form article ul li {
  margin-bottom: 5px;
}
.apt-filters form article ul li label {
  font-size: 15px;
}
.apt-filters form article.filter-all {
  padding: 0;
  width: auto;
}
@media (max-width: 650px) {
  .apt-filters form article.filter-all {
    width: 100%;
  }
}
.apt-filters form article.filter-all a {
  background: #2cdae1;
  font-weight: 700;
  text-transform: uppercase;
  color: #5e5e5e;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.apt-filters form article.filter-all a:hover {
  background: #5e5e5e;
}
@media (max-width: 650px) {
  .apt-filters form article.is-select {
    justify-content: center;
  }
}
.apt-filters form article.is-input-text {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  width: 100%;
}
@media (max-width: 650px) {
  .apt-filters form article.is-input-text {
    max-width: 100%;
  }
}
.apt-filters form article.is-input-text input {
  padding: 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  width: 100%;
}
@media (max-width: 650px) {
  .apt-filters form article.is-input-text input {
    text-align: center;
    width: 100%;
  }
}
.apt-filters form article.is-input-text input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.apt-filters form article.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.apt-filters.preloader {
  height: 67px;
}

#apm_response {
  margin-bottom: 20px;
}

/**
 * APT Workouts
 * SCSS
 */
.apt-workouts .apt-workouts--venue {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 800px) {
  .apt-workouts .apt-workouts--venue {
    flex-direction: column;
  }
}
.apt-workouts .apt-filters-mobile {
  display: none;
  flex: 1 0 100%;
}
@media (max-width: 900px) {
  .apt-workouts .apt-filters-mobile {
    display: flex;
    padding: 30px 20px 0;
  }
}
.apt-workouts .apt-filters-mobile a {
  width: 100%;
}
.apt-workouts aside {
  width: 20%;
  min-width: 220px;
}
.apt-workouts aside h4 {
  display: none;
  font-size: 31px;
  font-weight: 600;
  color: #f54d80;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .apt-workouts aside h4 {
    display: block;
  }
}
.apt-workouts aside a.button {
  display: none;
}
@media (max-width: 900px) {
  .apt-workouts aside a.button {
    display: block;
  }
}
@media (max-width: 900px) {
  .apt-workouts aside {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100;
    padding: 40px;
  }
  .apt-workouts aside.pop {
    display: block;
  }
  .apt-workouts aside select {
    width: 100%;
    padding: 10px;
    background: #e4eaf1;
    color: #5e5e5e;
    font-size: 15px;
  }
}
.apt-workouts .apt-workouts--stage {
  flex: 1;
  padding: 20px;
}
@media (max-width: 800px) {
  .apt-workouts .apt-workouts--stage {
    width: 100%;
  }
}
.apt-workouts .apt-workouts--stage .workout .card__inner {
  overflow: hidden;
}
.apt-workouts .apt-workouts--stage .workout--image {
  position: relative;
}
.apt-workouts .apt-workouts--stage .workout--image .workout-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.apt-workouts .apt-workouts--stage .workout--image .workout-fav i {
  color: #c9d5e3;
  font-size: 19px;
  transition: all 0.3s ease-in-out;
  animation-duration: 0.5s;
}
.apt-workouts .apt-workouts--stage .workout--image .workout-fav i.fa-spin {
  color: #f54d80;
}
.apt-workouts .apt-workouts--stage .workout--image .workout-fav:hover {
  transform: scale(1.08);
}
.apt-workouts .apt-workouts--stage .workout--image .workout-fav:hover i {
  color: #f54d80;
}
.apt-workouts .apt-workouts--stage .workout--image .workout-fav.saved i {
  color: #f54d80;
}
.apt-workouts .apt-workouts--stage .workout figure {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  filter: grayscale(0.3);
}
@media (max-width: 650px) {
  .apt-workouts .apt-workouts--stage .workout figure {
    height: 300px;
  }
}
.apt-workouts .apt-workouts--stage .workout figure:hover {
  filter: grayscale(0);
}
.apt-workouts .apt-workouts--stage .workout--info h2 {
  font-size: 19px;
  font-weight: 800;
  color: #5e5e5e;
}
.apt-workouts .apt-workouts--stage .workout--info h2 a {
  color: #5e5e5e;
}
.apt-workouts .apt-workouts--stage .workout--info h2 a:hover {
  color: #f54d80;
}
.apt-workouts .apt-workouts--stage .workout--info ul {
  margin: 10px 0 0;
}
.apt-workouts .apt-workouts--stage .workout--info ul li {
  display: flex;
  color: #5e5e5e;
  font-size: 14px;
  padding: 10px 0;
}
.apt-workouts .apt-workouts--stage .workout--info ul li i {
  min-width: 25px;
  font-size: 19px;
  color: #f54d80;
  margin-right: 10px;
}
.apt-workouts .apt-workouts--stage .workout--footer {
  padding: 0 20px 20px;
}
.apt-workouts .apt-workouts--stage .workout.preload h2 {
  height: 20px;
  width: 70%;
}
.apt-workouts .apt-workouts--stage .workout.preload ul {
  margin: 20px 0;
}
.apt-workouts .apt-workouts--stage .workout.preload ul li {
  height: 10px;
  padding: 0;
  width: 30%;
  margin-bottom: 8px;
}
.apt-workouts .apt-workouts--stage .workout.preload ul li:first-child {
  width: 60%;
}
.apt-workouts .apt-workouts--stage .workout.preload ul li:last-child {
  width: 40%;
}
.apt-workouts .apt-workouts--stage .apt-workouts--not-found {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1 0 100%;
  width: 100%;
  padding: 60px;
  font-size: 18px;
}
.apt-workouts .apt-workouts--stage .apt-workouts--not-found i {
  font-size: 60px;
  margin-bottom: 20px;
  color: #f54d80;
}
.apt-workouts .apt-workouts--stage .apt-workouts--not-found h2 {
  font-size: 21px;
  font-weight: 900;
  color: #5e5e5e;
  margin-bottom: 10px;
}
.apt-workouts .apt-workouts--stage .apt-workouts--not-found p {
  font-size: 15px;
}

.workout--membership {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  font-weight: 800;
  border-radius: 4px;
}
.workout--membership i {
  margin-left: 3px;
}
.workout--membership.free {
  background: #64c82d;
}
.workout--membership.free i {
  color: #fff;
}
.workout--membership.member {
  background: #5e5e5e;
  padding-right: 7px;
}
.workout--membership.member i {
  color: #ebc000;
}

/**
 * APT Workout - Single
 * SCSS
 */
.apt-workout-single--banner .avb-banners .avb-banner .avb-banner__caption .max__width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .apt-workout-single--banner .avb-banners .avb-banner .avb-banner__caption .max__width {
    flex-direction: column;
    align-items: flex-start;
  }
  .apt-workout-single--banner .avb-banners .avb-banner .avb-banner__caption .max__width .avb-banner__caption-wrap {
    padding: 0 0 10px 0;
  }
}
.apt-workout-single--venue {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px auto;
}
@media (max-width: 1024px) {
  .apt-workout-single--venue {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.apt-workout-single--stage {
  flex: 1;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .apt-workout-single--stage {
    padding-right: 0;
  }
}
.apt-workout-single--img {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}
.apt-workout-single--img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
  padding: 20px;
}
.apt-workout-single--img-overlay h4 {
  font-size: 21px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.apt-workout-single--img-blur {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.apt-workout-single--bar {
  width: 35%;
  min-width: 350px;
}
@media (max-width: 1024px) {
  .apt-workout-single--bar {
    width: 100%;
  }
}
.apt-workout-single--bar p {
  padding: 0 5px;
}
.apt-workout-single--bar p:last-of-type {
  margin-bottom: 40px;
}
.apt-workout-single--bar-meta {
  display: flex;
  justify-content: center;
  border-bottom: 1px #e4eaf1 solid;
  padding: 30px 0;
  margin-bottom: 30px;
}
.apt-workout-single--bar-meta li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.apt-workout-single--bar-meta li i {
  font-size: 23px;
  color: #f54d80;
  margin-bottom: 5px;
}
.apt-workout-single--bar-meta li strong {
  font-size: 19px;
  font-weight: 800;
}
.apt-workout-single--bar-meta li span {
  font-size: 13px;
  color: #5e5e5e;
  text-transform: uppercase;
}
.apt-workout-single--bar-meta-more li {
  display: flex;
  padding: 5px;
}
.apt-workout-single--bar-meta-more li strong {
  font-size: 15px;
  font-weight: 800;
  min-width: 140px;
}
.apt-workout-single--bar-meta-more li span {
  font-size: 14px;
  line-height: 22px;
}

/**
 * APT WC My Account
 * SCSS
 */
.apt-wc-my-account h2 {
  color: #f54d80 !important;
}
.apt-wc-my-account--blog {
  flex-direction: column;
  flex: 1;
}
.apt-wc-my-account--blog button {
  display: none;
}
.apt-wc-my-account--blog-inner {
  margin: 5px;
  background: #2cdae1;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.apt-wc-my-account--blog-top {
  padding: 5px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
}
.apt-wc-my-account--blog-top date {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.apt-wc-my-account--blog-top date i {
  font-size: 14px;
  margin-right: 5px;
}
.apt-wc-my-account--blog-content {
  padding: 8px 0;
}
.apt-wc-my-account--blog-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.apt-wc-my-account--blog-content h4 a {
  color: #fff;
}
.apt-wc-my-account--blog-content p {
  font-size: 14px;
  color: #fff;
}
.apt-wc-my-account--workouts {
  margin-top: 40px;
}
.apt-wc-my-account--workouts .apt-workouts .apt-workouts--stage {
  padding: 0;
}
