@charset "UTF-8";
.event-detail-wrapper h1, .event-detail-wrapper h2 {
  color: #305277 !important;
  font: 900 56px/60px "sofia-pro", sans-serif;
  margin-bottom: 3rem !important;
  margin-top: 1rem !important;
}

.event-detail-desc-wrapper {
  color: #64717F !important;
  font: 400 18px/1.6em "jubilat";
  margin-top: 1rem !important;
}

.book-hero-wrapper blockquote {
  font: italic normal 24px/142% "jubilat";
}

.book-hero-wrapper blockquote::before {
  content: '“';
  position: relative;
  font: italic normal 24px/0px "Abril Fatface";
  color: #2BA9DB;
  margin-left: -10px !important;
  right: 5px;
}

.book-hero-wrapper blockquote::after {
  content: '„';
  position: relative;
  font: italic normal 24px/0px "jubilat";
  color: #2BA9DB;
  left: 5px;
  bottom: 15px;
}

.coaches-detail-desc-wrapper h2, .coaches-detail-desc-wrapper h3, .coaches-detail-desc-wrapper h4 {
  font: 600 18px "jubilat";
  color: #305277 !important;
  margin-top: 3rem !important;
  text-align: center;
}

.coaches-detail-desc-wrapper p {
  margin-top: 1rem !important;
  font: 400 18px/1.6em "jubilat";
  color: #64717F !important;
}

@media (min-width: 576px) {
  .coaches-detail-desc-wrapper h2, .coaches-detail-desc-wrapper h3, .coaches-detail-desc-wrapper h4 {
    text-align: left !important;
  }
}

.coach-directory-wrapper .card-coach {
  height: 380px;
  background: url("../images/cards/card-coaches.png") no-repeat top center;
  background-size: contain;
}

.pl-20px {
  padding-left: 20px;
}

.freebie-wrapper ul{
  padding-left:1rem;
}

.freebie-wrapper ul li{
  margin-bottom:10px;
}

@keyframes viewCartFade {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes buyNowFade {
  from {
    transform: translateX(0px);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes cartIcon {
  0% {
    transform: translateX(-100%) rotate(-20deg);
    opacity: 0;
  }
  33% {
    transform: translateX(0px) rotate(-10deg);
    opacity: 1;
  }
  39% {
    transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
  60% {
    transform: translateX(0px) rotate(-0deg);
    opacity: 1;
  }
  66% {
    transform: translateX(0px) rotate(-10deg);
    opacity: 1;
  }

  100% {
    transform: translateX(100%) rotate(-20deg);
    opacity: 0;
  }
}
.animated-buy{
  position: relative;
  overflow: hidden;
  min-width: 135px;
}
.animated-buy .buy-now{
  position: absolute;
  width: 100%;
}
.animated-buy svg{
  width: 100%;
  transform: translateX(-100%);
  position: absolute;
}
.animated-buy .view-cart{
  width: 100%;
  transform: translateX(-100%);
  opacity: 0;
  position: absolute;
}
.animated-buy.show_cart .buy-now{
  animation: buyNowFade 500ms ease-in 0ms 1 forwards;
}
.animated-buy.show_cart svg{
  animation: cartIcon 2000ms ease-in-out 300ms 1 forwards;
}
.animated-buy.show_cart .view-cart{
  animation: viewCartFade 500ms ease-in-out 2000ms 1 forwards;
}

/*# sourceMappingURL=style-layouts.css.map */