/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.awesomplete {
    display: inline-block;
    position: relative;
}

.awesomplete > input {
    display: block;
}

.awesomplete > ul {
    position: absolute;
    left: 0;
    z-index: 1;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.awesomplete > ul:empty {
    display: none;
}

.awesomplete > ul {
	border-radius: .3em;
	margin: .2em 0 0;
	background: hsla(0,0%,100%,.9);
	background: -webkit-linear-gradient(top left, white, hsla(0,0%,100%,.8));
	background: -o-linear-gradient(top left, white, hsla(0,0%,100%,.8));
	background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
	border: 1px solid rgba(0,0,0,.3);
	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
	text-shadow: none;
}

@supports (transform: scale(0)) {
	.awesomplete > ul {
		-webkit-transition: .3s cubic-bezier(.4,.2,.5,1.4);
		-o-transition: .3s cubic-bezier(.4,.2,.5,1.4);
		transition: .3s cubic-bezier(.4,.2,.5,1.4);
		-webkit-transform-origin: 1.43em -.43em;
		     -o-transform-origin: 1.43em -.43em;
		        transform-origin: 1.43em -.43em;
	}
	
	.awesomplete > ul[hidden],
	.awesomplete > ul:empty {
		opacity: 0;
		-webkit-transform: scale(0);
		     -o-transform: scale(0);
		        transform: scale(0);
		display: block;
		-webkit-transition-timing-function: ease;
		     -o-transition-timing-function: ease;
		        transition-timing-function: ease;
	}
}

	/* Pointer */
	.awesomplete > ul:before {
		content: "";
		position: absolute;
		top: -.43em;
		left: 1em;
		width: 0; height: 0;
		padding: .4em;
		background: white;
		border: inherit;
		border-right: 0;
		border-bottom: 0;
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		   transform: rotate(45deg);
	}

	.awesomplete > ul > li {
		position: relative;
		padding: .2em .5em;
		cursor: pointer;
	}
	
	.awesomplete > ul > li:hover {
		background: hsl(200, 40%, 80%);
		color: black;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: hsl(205, 40%, 40%);
		color: white;
	}
	
		.awesomplete mark {
			background: hsl(65, 100%, 50%);
		}
		
		.awesomplete li:hover mark {
			background: hsl(68, 100%, 41%);
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: hsl(86, 100%, 21%);
			color: inherit;
		}

.flatpickr-calendar {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding: 0;
  -webkit-animation: none;
          -o-animation: none;
     animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 315px;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  max-height: 640px;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.hasWeeks {
  width: auto;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-month {
  background: transparent;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
}
.flatpickr-prev-month,
.flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  line-height: 16px;
  height: 28px;
  padding: 10px calc(3.57% - 1.5px);
  z-index: 3;
}
.flatpickr-prev-month i,
.flatpickr-next-month i {
  position: relative;
}
.flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-next-month.flatpickr-prev-month {
/*
        /*rtl:begin:ignore*/
/*
        */
  left: 0;
/*
        /*rtl:end:ignore*/
/*
        */
}
/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month.flatpickr-next-month,
.flatpickr-next-month.flatpickr-next-month {
/*
        /*rtl:begin:ignore*/
/*
        */
  right: 0;
/*
        /*rtl:end:ignore*/
/*
        */
}
/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 14px;
}
.flatpickr-prev-month svg path,
.flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  -o-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57,57,57,0.05);
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
  top: 33%;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57,57,57,0.6);
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57,57,57,0.6);
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 4.2px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month.slideLeft {
  -webkit-transform: translate3d(-100%, 0px, 0px);
          transform: translate3d(-100%, 0px, 0px);
  -webkit-animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-current-month.slideLeftNew {
  -webkit-transform: translate3d(100%, 0px, 0px);
          transform: translate3d(100%, 0px, 0px);
  -webkit-animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-current-month.slideRight {
  -webkit-transform: translate3d(100%, 0px, 0px);
          transform: translate3d(100%, 0px, 0px);
  -webkit-animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-current-month.slideRightNew {
  -webkit-transform: translate3d(0, 0, 0px);
          transform: translate3d(0, 0, 0px);
  -webkit-animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: default;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: initial;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 315px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
      -webkit-box-align: center;
          align-items: center;
  height: 28px;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -ms-flex: 1;
      -webkit-box-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 315px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 315px;
  min-width: 315px;
  max-width: 315px;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
          justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.flatpickr-calendar.animate .dayContainer.slideLeft {
  -webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.animate .dayContainer.slideLeft,
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
  -webkit-transform: translate3d(-100%, 0px, 0px);
          transform: translate3d(-100%, 0px, 0px);
}
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
  -webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.animate .dayContainer.slideRight {
  -webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(100%, 0px, 0px);
          transform: translate3d(100%, 0px, 0px);
}
.flatpickr-calendar.animate .dayContainer.slideRightNew {
  -webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
          -o-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
     animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
      flex-basis: 14.2857143%;
  max-width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  display: inline-block;
  position: relative;
  -ms-flex-pack: center;
      -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange,
.flatpickr-day.startRange.startRange + .endRange,
.flatpickr-day.endRange.startRange + .endRange {
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  pointer-events: none;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57,57,57,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day {
  display: block;
  width: 100%;
  max-width: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -ms-flex: 1;
      -webkit-box-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  cursor: pointer;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f0f0f0;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(-100%, 0px, 0px);
            transform: translate3d(-100%, 0px, 0px);
  }
}
@-o-keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(-100%, 0px, 0px);
            transform: translate3d(-100%, 0px, 0px);
  }
}
@keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(-100%, 0px, 0px);
            transform: translate3d(-100%, 0px, 0px);
  }
}
@-webkit-keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0px, 0px);
            transform: translate3d(100%, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
}
@-o-keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0px, 0px);
            transform: translate3d(100%, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
}
@keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0px, 0px);
            transform: translate3d(100%, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
}
@-webkit-keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0px);
            transform: translate3d(0, 0, 0px);
  }
  to {
    -webkit-transform: translate3d(100%, 0px, 0px);
            transform: translate3d(100%, 0px, 0px);
  }
}
@-o-keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0px);
            transform: translate3d(0, 0, 0px);
  }
  to {
    -webkit-transform: translate3d(100%, 0px, 0px);
            transform: translate3d(100%, 0px, 0px);
  }
}
@keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0px);
            transform: translate3d(0, 0, 0px);
  }
  to {
    -webkit-transform: translate3d(100%, 0px, 0px);
            transform: translate3d(100%, 0px, 0px);
  }
}
@-webkit-keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0px);
            transform: translate3d(-100%, 0, 0px);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0px);
            transform: translate3d(0, 0, 0px);
  }
}
@-o-keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0px);
            transform: translate3d(-100%, 0, 0px);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0px);
            transform: translate3d(0, 0, 0px);
  }
}
@keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0px);
            transform: translate3d(-100%, 0, 0px);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0px);
            transform: translate3d(0, 0, 0px);
  }
}
@-webkit-keyframes fpFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-o-keyframes fpFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fpFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fpFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fpFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fpFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*!
 * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */

select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #999;
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
@charset "UTF-8";
/*
primary ( purple) #5E3190
red #EA252B
orange #F45C0B
yellow #FDBF56aqua #1FBAB0
green #78B713
Barre pink: #FF80FF
https://matchboxlondon.atlassian.net/secure/attachment/17617/Screen%20Shot%202017-03-22%20at%2014.04.20.png
 */
/*!
 * Bootstrap v4.0.0-alpha.6 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
footer,
header,
nav,
section {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

figcaption,
figure,
main {
  display: block; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active,
a:hover {
  outline-width: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

dfn {
  font-style: italic; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

audio,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  display: inline-block;
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details,
menu {
  display: block; }

summary {
  display: list-item; }

canvas {
  display: inline-block; }

template {
  display: none; }

[hidden] {
  display: none; }

@media print {
  *,
  *::before,
  *::after,
  p::first-letter,
  div::first-letter,
  blockquote::first-letter,
  li::first-letter,
  p::first-line,
  div::first-line,
  blockquote::first-line,
  li::first-line {
    text-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .badge {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

@-ms-viewport {
  width: device-width; }

html {
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #292b2c;
  background-color: #fff; }

[tabindex="-1"]:focus {
  outline: none !important; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  cursor: help; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

a {
  color: #0275d8;
  text-decoration: none; }
  a:focus, a:hover {
    color: #014c8c;
    text-decoration: underline; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none; }
  a:not([href]):not([tabindex]):focus {
    outline: 0; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

table {
  border-collapse: collapse;
  background-color: transparent; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #636c72;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: left; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
textarea {
  line-height: inherit; }

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed; }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }

input[type="search"] {
  -webkit-appearance: none; }

output {
  display: inline-block; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

h1, .h1 {
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

h3, .h3 {
  font-size: 1.75rem; }

h4, .h4 {
  font-size: 1.5rem; }

h5, .h5 {
  font-size: 1.25rem; }

h6, .h6 {
  font-size: 1rem; }

.lead {
  font-size: 1.25rem;
  font-weight: 300; }

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1; }

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1; }

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1; }

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: normal; }

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

.list-unstyled, .comment-list {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 5px; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #636c72; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0; }

.blockquote-reverse .blockquote-footer::before {
  content: ""; }

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014"; }

.img-fluid, .wp-caption {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img, .wp-caption {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption, .wp-caption-text {
  font-size: 90%;
  color: #636c72; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

code {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  border-radius: 0.25rem; }
  a > code {
    padding: 0;
    color: inherit;
    background-color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #fff;
  background-color: #292b2c;
  border-radius: 0.2rem; }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  color: #292b2c; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px; }
  @media (min-width: 576px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 768px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 992px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1200px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 576px) {
    .container {
      width: 540px;
      max-width: 100%; } }
  @media (min-width: 768px) {
    .container {
      width: 720px;
      max-width: 100%; } }
  @media (min-width: 992px) {
    .container {
      width: 960px;
      max-width: 100%; } }
  @media (min-width: 1200px) {
    .container {
      width: 1140px;
      max-width: 100%; } }

.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px; }
  @media (min-width: 576px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 768px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 992px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1200px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 576px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 768px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 992px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 1200px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }
  @media (min-width: 576px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 992px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1200px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto; }

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%; }

.pull-0 {
  right: auto; }

.pull-1 {
  right: 8.3333333333%; }

.pull-2 {
  right: 16.6666666667%; }

.pull-3 {
  right: 25%; }

.pull-4 {
  right: 33.3333333333%; }

.pull-5 {
  right: 41.6666666667%; }

.pull-6 {
  right: 50%; }

.pull-7 {
  right: 58.3333333333%; }

.pull-8 {
  right: 66.6666666667%; }

.pull-9 {
  right: 75%; }

.pull-10 {
  right: 83.3333333333%; }

.pull-11 {
  right: 91.6666666667%; }

.pull-12 {
  right: 100%; }

.push-0 {
  left: auto; }

.push-1 {
  left: 8.3333333333%; }

.push-2 {
  left: 16.6666666667%; }

.push-3 {
  left: 25%; }

.push-4 {
  left: 33.3333333333%; }

.push-5 {
  left: 41.6666666667%; }

.push-6 {
  left: 50%; }

.push-7 {
  left: 58.3333333333%; }

.push-8 {
  left: 66.6666666667%; }

.push-9 {
  left: 75%; }

.push-10 {
  left: 83.3333333333%; }

.push-11 {
  left: 91.6666666667%; }

.push-12 {
  left: 100%; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .pull-sm-0 {
    right: auto; }
  .pull-sm-1 {
    right: 8.3333333333%; }
  .pull-sm-2 {
    right: 16.6666666667%; }
  .pull-sm-3 {
    right: 25%; }
  .pull-sm-4 {
    right: 33.3333333333%; }
  .pull-sm-5 {
    right: 41.6666666667%; }
  .pull-sm-6 {
    right: 50%; }
  .pull-sm-7 {
    right: 58.3333333333%; }
  .pull-sm-8 {
    right: 66.6666666667%; }
  .pull-sm-9 {
    right: 75%; }
  .pull-sm-10 {
    right: 83.3333333333%; }
  .pull-sm-11 {
    right: 91.6666666667%; }
  .pull-sm-12 {
    right: 100%; }
  .push-sm-0 {
    left: auto; }
  .push-sm-1 {
    left: 8.3333333333%; }
  .push-sm-2 {
    left: 16.6666666667%; }
  .push-sm-3 {
    left: 25%; }
  .push-sm-4 {
    left: 33.3333333333%; }
  .push-sm-5 {
    left: 41.6666666667%; }
  .push-sm-6 {
    left: 50%; }
  .push-sm-7 {
    left: 58.3333333333%; }
  .push-sm-8 {
    left: 66.6666666667%; }
  .push-sm-9 {
    left: 75%; }
  .push-sm-10 {
    left: 83.3333333333%; }
  .push-sm-11 {
    left: 91.6666666667%; }
  .push-sm-12 {
    left: 100%; }
  .offset-sm-0 {
    margin-left: 0%; }
  .offset-sm-1 {
    margin-left: 8.3333333333%; }
  .offset-sm-2 {
    margin-left: 16.6666666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.3333333333%; }
  .offset-sm-5 {
    margin-left: 41.6666666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.3333333333%; }
  .offset-sm-8 {
    margin-left: 66.6666666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.3333333333%; }
  .offset-sm-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .pull-md-0 {
    right: auto; }
  .pull-md-1 {
    right: 8.3333333333%; }
  .pull-md-2 {
    right: 16.6666666667%; }
  .pull-md-3 {
    right: 25%; }
  .pull-md-4 {
    right: 33.3333333333%; }
  .pull-md-5 {
    right: 41.6666666667%; }
  .pull-md-6 {
    right: 50%; }
  .pull-md-7 {
    right: 58.3333333333%; }
  .pull-md-8 {
    right: 66.6666666667%; }
  .pull-md-9 {
    right: 75%; }
  .pull-md-10 {
    right: 83.3333333333%; }
  .pull-md-11 {
    right: 91.6666666667%; }
  .pull-md-12 {
    right: 100%; }
  .push-md-0 {
    left: auto; }
  .push-md-1 {
    left: 8.3333333333%; }
  .push-md-2 {
    left: 16.6666666667%; }
  .push-md-3 {
    left: 25%; }
  .push-md-4 {
    left: 33.3333333333%; }
  .push-md-5 {
    left: 41.6666666667%; }
  .push-md-6 {
    left: 50%; }
  .push-md-7 {
    left: 58.3333333333%; }
  .push-md-8 {
    left: 66.6666666667%; }
  .push-md-9 {
    left: 75%; }
  .push-md-10 {
    left: 83.3333333333%; }
  .push-md-11 {
    left: 91.6666666667%; }
  .push-md-12 {
    left: 100%; }
  .offset-md-0 {
    margin-left: 0%; }
  .offset-md-1 {
    margin-left: 8.3333333333%; }
  .offset-md-2 {
    margin-left: 16.6666666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.3333333333%; }
  .offset-md-5 {
    margin-left: 41.6666666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.3333333333%; }
  .offset-md-8 {
    margin-left: 66.6666666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.3333333333%; }
  .offset-md-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .pull-lg-0 {
    right: auto; }
  .pull-lg-1 {
    right: 8.3333333333%; }
  .pull-lg-2 {
    right: 16.6666666667%; }
  .pull-lg-3 {
    right: 25%; }
  .pull-lg-4 {
    right: 33.3333333333%; }
  .pull-lg-5 {
    right: 41.6666666667%; }
  .pull-lg-6 {
    right: 50%; }
  .pull-lg-7 {
    right: 58.3333333333%; }
  .pull-lg-8 {
    right: 66.6666666667%; }
  .pull-lg-9 {
    right: 75%; }
  .pull-lg-10 {
    right: 83.3333333333%; }
  .pull-lg-11 {
    right: 91.6666666667%; }
  .pull-lg-12 {
    right: 100%; }
  .push-lg-0 {
    left: auto; }
  .push-lg-1 {
    left: 8.3333333333%; }
  .push-lg-2 {
    left: 16.6666666667%; }
  .push-lg-3 {
    left: 25%; }
  .push-lg-4 {
    left: 33.3333333333%; }
  .push-lg-5 {
    left: 41.6666666667%; }
  .push-lg-6 {
    left: 50%; }
  .push-lg-7 {
    left: 58.3333333333%; }
  .push-lg-8 {
    left: 66.6666666667%; }
  .push-lg-9 {
    left: 75%; }
  .push-lg-10 {
    left: 83.3333333333%; }
  .push-lg-11 {
    left: 91.6666666667%; }
  .push-lg-12 {
    left: 100%; }
  .offset-lg-0 {
    margin-left: 0%; }
  .offset-lg-1 {
    margin-left: 8.3333333333%; }
  .offset-lg-2 {
    margin-left: 16.6666666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.3333333333%; }
  .offset-lg-5 {
    margin-left: 41.6666666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.3333333333%; }
  .offset-lg-8 {
    margin-left: 66.6666666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.3333333333%; }
  .offset-lg-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .pull-xl-0 {
    right: auto; }
  .pull-xl-1 {
    right: 8.3333333333%; }
  .pull-xl-2 {
    right: 16.6666666667%; }
  .pull-xl-3 {
    right: 25%; }
  .pull-xl-4 {
    right: 33.3333333333%; }
  .pull-xl-5 {
    right: 41.6666666667%; }
  .pull-xl-6 {
    right: 50%; }
  .pull-xl-7 {
    right: 58.3333333333%; }
  .pull-xl-8 {
    right: 66.6666666667%; }
  .pull-xl-9 {
    right: 75%; }
  .pull-xl-10 {
    right: 83.3333333333%; }
  .pull-xl-11 {
    right: 91.6666666667%; }
  .pull-xl-12 {
    right: 100%; }
  .push-xl-0 {
    left: auto; }
  .push-xl-1 {
    left: 8.3333333333%; }
  .push-xl-2 {
    left: 16.6666666667%; }
  .push-xl-3 {
    left: 25%; }
  .push-xl-4 {
    left: 33.3333333333%; }
  .push-xl-5 {
    left: 41.6666666667%; }
  .push-xl-6 {
    left: 50%; }
  .push-xl-7 {
    left: 58.3333333333%; }
  .push-xl-8 {
    left: 66.6666666667%; }
  .push-xl-9 {
    left: 75%; }
  .push-xl-10 {
    left: 83.3333333333%; }
  .push-xl-11 {
    left: 91.6666666667%; }
  .push-xl-12 {
    left: 100%; }
  .offset-xl-0 {
    margin-left: 0%; }
  .offset-xl-1 {
    margin-left: 8.3333333333%; }
  .offset-xl-2 {
    margin-left: 16.6666666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.3333333333%; }
  .offset-xl-5 {
    margin-left: 41.6666666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.3333333333%; }
  .offset-xl-8 {
    margin-left: 66.6666666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.3333333333%; }
  .offset-xl-11 {
    margin-left: 91.6666666667%; } }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .table tbody + tbody {
    border-top: 2px solid #eceeef; }
  .table .table {
    background-color: #fff; }

.table-sm th,
.table-sm td {
  padding: 0.3rem; }

.table-bordered {
  border: 1px solid #eceeef; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #eceeef; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05); }

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075); }

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075); }

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075); }
  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075); }

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8; }

.table-hover .table-success:hover {
  background-color: #d0e9c6; }
  .table-hover .table-success:hover > td,
  .table-hover .table-success:hover > th {
    background-color: #d0e9c6; }

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7; }

.table-hover .table-info:hover {
  background-color: #c4e3f3; }
  .table-hover .table-info:hover > td,
  .table-hover .table-info:hover > th {
    background-color: #c4e3f3; }

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3; }

.table-hover .table-warning:hover {
  background-color: #faf2cc; }
  .table-hover .table-warning:hover > td,
  .table-hover .table-warning:hover > th {
    background-color: #faf2cc; }

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede; }

.table-hover .table-danger:hover {
  background-color: #ebcccc; }
  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #ebcccc; }

.thead-inverse th {
  color: #fff;
  background-color: #292b2c; }

.thead-default th {
  color: #464a4c;
  background-color: #eceeef; }

.table-inverse {
  color: #fff;
  background-color: #292b2c; }
  .table-inverse th,
  .table-inverse td,
  .table-inverse thead th {
    border-color: #fff; }
  .table-inverse.table-bordered {
    border: 0; }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive.table-bordered {
    border: 0; }

.form-control, .comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea, .search-form .search-field {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #464a4c;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control::-ms-expand, .comment-form input[type="text"]::-ms-expand,
  .comment-form input[type="email"]::-ms-expand,
  .comment-form input[type="url"]::-ms-expand,
  .comment-form textarea::-ms-expand, .search-form .search-field::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus, .comment-form input:focus[type="text"],
  .comment-form input:focus[type="email"],
  .comment-form input:focus[type="url"],
  .comment-form textarea:focus, .search-form .search-field:focus {
    color: #464a4c;
    background-color: #fff;
    border-color: #5cb3fd;
    outline: none; }
  .form-control::-webkit-input-placeholder, .comment-form input[type="text"]::-webkit-input-placeholder,
  .comment-form input[type="email"]::-webkit-input-placeholder,
  .comment-form input[type="url"]::-webkit-input-placeholder,
  .comment-form textarea::-webkit-input-placeholder, .search-form .search-field::-webkit-input-placeholder {
    color: #636c72;
    opacity: 1; }
  .form-control:-ms-input-placeholder, .comment-form input[type="text"]:-ms-input-placeholder,
  .comment-form input[type="email"]:-ms-input-placeholder,
  .comment-form input[type="url"]:-ms-input-placeholder,
  .comment-form textarea:-ms-input-placeholder, .search-form .search-field:-ms-input-placeholder {
    color: #636c72;
    opacity: 1; }
  .form-control::placeholder, .comment-form input[type="text"]::placeholder,
  .comment-form input[type="email"]::placeholder,
  .comment-form input[type="url"]::placeholder,
  .comment-form textarea::placeholder, .search-form .search-field::placeholder {
    color: #636c72;
    opacity: 1; }
  .form-control:disabled, .comment-form input:disabled[type="text"],
  .comment-form input:disabled[type="email"],
  .comment-form input:disabled[type="url"],
  .comment-form textarea:disabled, .search-form .search-field:disabled, .form-control[readonly], .comment-form input[readonly][type="text"],
  .comment-form input[readonly][type="email"],
  .comment-form input[readonly][type="url"],
  .comment-form textarea[readonly], .search-form .search-field[readonly] {
    background-color: #eceeef;
    opacity: 1; }
  .form-control:disabled, .comment-form input:disabled[type="text"],
  .comment-form input:disabled[type="email"],
  .comment-form input:disabled[type="url"],
  .comment-form textarea:disabled, .search-form .search-field:disabled {
    cursor: not-allowed; }

select.form-control:not([size]):not([multiple]), .search-form select.search-field:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px); }

select.form-control:focus::-ms-value, .search-form select.search-field:focus::-ms-value {
  color: #464a4c;
  background-color: #fff; }

.form-control-file,
.form-control-range {
  display: block; }

.col-form-label {
  padding-top: calc(0.5rem - 1px * 2);
  padding-bottom: calc(0.5rem - 1px * 2);
  margin-bottom: 0; }

.col-form-label-lg {
  padding-top: calc(0.75rem - 1px * 2);
  padding-bottom: calc(0.75rem - 1px * 2);
  font-size: 1.25rem; }

.col-form-label-sm {
  padding-top: calc(0.25rem - 1px * 2);
  padding-bottom: calc(0.25rem - 1px * 2);
  font-size: 0.875rem; }

.col-form-legend {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem; }

.form-control-static {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  line-height: 1.25;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-static.form-control-sm, .input-group-sm > .form-control-static.form-control, .comment-form .input-group-sm > input.form-control-static[type="text"],
  .comment-form .input-group-sm > input.form-control-static[type="email"],
  .comment-form .input-group-sm > input.form-control-static[type="url"],
  .comment-form .input-group-sm > textarea.form-control-static, .search-form .input-group-sm > .form-control-static.search-field,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn, .comment-form .input-group-sm > .input-group-btn > input.form-control-static[type="submit"], .search-form .input-group-sm > .input-group-btn > .form-control-static.search-submit, .form-control-static.form-control-lg, .input-group-lg > .form-control-static.form-control, .comment-form .input-group-lg > input.form-control-static[type="text"],
  .comment-form .input-group-lg > input.form-control-static[type="email"],
  .comment-form .input-group-lg > input.form-control-static[type="url"],
  .comment-form .input-group-lg > textarea.form-control-static, .search-form .input-group-lg > .form-control-static.search-field,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .comment-form .input-group-lg > .input-group-btn > input.form-control-static[type="submit"], .search-form .input-group-lg > .input-group-btn > .form-control-static.search-submit {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control, .comment-form .input-group-sm > input[type="text"],
.comment-form .input-group-sm > input[type="email"],
.comment-form .input-group-sm > input[type="url"],
.comment-form .input-group-sm > textarea, .search-form .input-group-sm > .search-field,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn, .comment-form .input-group-sm > .input-group-btn > input[type="submit"], .search-form .input-group-sm > .input-group-btn > .search-submit {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), .search-form .input-group-sm > select.search-field:not([size]):not([multiple]),
.input-group-sm > select.input-group-addon:not([size]):not([multiple]),
.input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]), .search-form .input-group-sm > .input-group-btn > select.search-submit:not([size]):not([multiple]) {
  height: 1.8125rem; }

.form-control-lg, .input-group-lg > .form-control, .comment-form .input-group-lg > input[type="text"],
.comment-form .input-group-lg > input[type="email"],
.comment-form .input-group-lg > input[type="url"],
.comment-form .input-group-lg > textarea, .search-form .input-group-lg > .search-field,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn, .comment-form .input-group-lg > .input-group-btn > input[type="submit"], .search-form .input-group-lg > .input-group-btn > .search-submit {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.3rem; }

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), .search-form .input-group-lg > select.search-field:not([size]):not([multiple]),
.input-group-lg > select.input-group-addon:not([size]):not([multiple]),
.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]), .search-form .input-group-lg > .input-group-btn > select.search-submit:not([size]):not([multiple]) {
  height: 3.1666666667rem; }

.form-group, .comment-form p, .search-form label {
  margin-bottom: 1rem; }

.form-text {
  display: block;
  margin-top: 0.25rem; }

.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.5rem; }
  .form-check.disabled .form-check-label {
    color: #636c72;
    cursor: not-allowed; }

.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0;
  cursor: pointer; }

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.25rem; }
  .form-check-input:only-child {
    position: static; }

.form-check-inline {
  display: inline-block; }
  .form-check-inline .form-check-label {
    vertical-align: middle; }
  .form-check-inline + .form-check-inline {
    margin-left: 0.75rem; }

.form-control-feedback {
  margin-top: 0.25rem; }

.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  background-size: 1.125rem 1.125rem; }

.has-success .form-control-feedback,
.has-success .form-control-label,
.has-success .col-form-label,
.has-success .form-check-label,
.has-success .custom-control {
  color: #5cb85c; }

.has-success .form-control, .has-success .comment-form input[type="text"], .comment-form .has-success input[type="text"],
.has-success .comment-form input[type="email"], .comment-form .has-success input[type="email"],
.has-success .comment-form input[type="url"], .comment-form .has-success input[type="url"],
.has-success .comment-form textarea, .comment-form .has-success textarea, .has-success .search-form .search-field, .search-form .has-success .search-field {
  border-color: #5cb85c; }

.has-success .input-group-addon {
  color: #5cb85c;
  border-color: #5cb85c;
  background-color: #eaf6ea; }

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); }

.has-warning .form-control-feedback,
.has-warning .form-control-label,
.has-warning .col-form-label,
.has-warning .form-check-label,
.has-warning .custom-control {
  color: #f0ad4e; }

.has-warning .form-control, .has-warning .comment-form input[type="text"], .comment-form .has-warning input[type="text"],
.has-warning .comment-form input[type="email"], .comment-form .has-warning input[type="email"],
.has-warning .comment-form input[type="url"], .comment-form .has-warning input[type="url"],
.has-warning .comment-form textarea, .comment-form .has-warning textarea, .has-warning .search-form .search-field, .search-form .has-warning .search-field {
  border-color: #f0ad4e; }

.has-warning .input-group-addon {
  color: #f0ad4e;
  border-color: #f0ad4e;
  background-color: white; }

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); }

.has-danger .form-control-feedback,
.has-danger .form-control-label,
.has-danger .col-form-label,
.has-danger .form-check-label,
.has-danger .custom-control {
  color: #d9534f; }

.has-danger .form-control, .has-danger .comment-form input[type="text"], .comment-form .has-danger input[type="text"],
.has-danger .comment-form input[type="email"], .comment-form .has-danger input[type="email"],
.has-danger .comment-form input[type="url"], .comment-form .has-danger input[type="url"],
.has-danger .comment-form textarea, .comment-form .has-danger textarea, .has-danger .search-form .search-field, .search-form .has-danger .search-field {
  border-color: #d9534f; }

.has-danger .input-group-addon {
  color: #d9534f;
  border-color: #d9534f;
  background-color: #fdf7f7; }

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); }

.form-inline, .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .form-inline .form-check, .search-form .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .form-inline label, .search-form label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 0; }
    .form-inline .form-group, .search-form .form-group, .form-inline .comment-form p, .comment-form .form-inline p, .search-form .comment-form p, .comment-form .search-form p, .form-inline .search-form label, .search-form .form-inline label, .search-form label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 0; }
    .form-inline .form-control, .search-form .form-control, .form-inline .comment-form input[type="text"], .comment-form .form-inline input[type="text"], .search-form .comment-form input[type="text"], .comment-form .search-form input[type="text"],
    .form-inline .comment-form input[type="email"], .comment-form .form-inline input[type="email"],
    .search-form .comment-form input[type="email"], .comment-form .search-form input[type="email"],
    .form-inline .comment-form input[type="url"], .comment-form .form-inline input[type="url"],
    .search-form .comment-form input[type="url"], .comment-form .search-form input[type="url"],
    .form-inline .comment-form textarea, .comment-form .form-inline textarea,
    .search-form .comment-form textarea, .comment-form .search-form textarea, .search-form .search-field {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .form-inline .form-control-static, .search-form .form-control-static {
      display: inline-block; }
    .form-inline .input-group, .search-form .input-group {
      width: auto; }
    .form-inline .form-control-label, .search-form .form-control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .form-inline .form-check, .search-form .form-check {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: auto;
      margin-top: 0;
      margin-bottom: 0; }
    .form-inline .form-check-label, .search-form .form-check-label {
      padding-left: 0; }
    .form-inline .form-check-input, .search-form .form-check-input {
      position: relative;
      margin-top: 0;
      margin-right: 0.25rem;
      margin-left: 0; }
    .form-inline .custom-control, .search-form .custom-control {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-left: 0; }
    .form-inline .custom-control-indicator, .search-form .custom-control-indicator {
      position: static;
      display: inline-block;
      margin-right: 0.25rem;
      vertical-align: text-bottom; }
    .form-inline .has-feedback .form-control-feedback, .search-form .has-feedback .form-control-feedback {
      top: 0; } }

.btn, .comment-form input[type="submit"], .search-form .search-submit {
  display: inline-block;
  font-weight: normal;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .btn:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn:hover, .comment-form input:hover[type="submit"], .search-form .search-submit:hover {
    text-decoration: none; }
  .btn:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn.focus, .comment-form input.focus[type="submit"], .search-form .focus.search-submit {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25); }
  .btn.disabled, .comment-form input.disabled[type="submit"], .search-form .disabled.search-submit, .btn:disabled, .comment-form input:disabled[type="submit"], .search-form .search-submit:disabled {
    cursor: not-allowed;
    opacity: .65; }
  .btn:active, .comment-form input:active[type="submit"], .search-form .search-submit:active, .btn.active, .comment-form input.active[type="submit"], .search-form .active.search-submit {
    background-image: none; }

a.btn.disabled, .search-form a.disabled.search-submit,
fieldset[disabled] a.btn,
fieldset[disabled] .search-form a.search-submit,
.search-form fieldset[disabled] a.search-submit {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8; }
  .btn-primary:hover {
    color: #fff;
    background-color: #025aa5;
    border-color: #01549b; }
  .btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    background-color: #0275d8;
    border-color: #0275d8; }
  .btn-primary:active, .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #025aa5;
    background-image: none;
    border-color: #01549b; }

.btn-secondary, .comment-form input[type="submit"], .search-form .search-submit {
  color: #292b2c;
  background-color: #fff;
  border-color: #ccc; }
  .btn-secondary:hover, .comment-form input:hover[type="submit"], .search-form .search-submit:hover {
    color: #292b2c;
    background-color: #e6e5e5;
    border-color: #adadad; }
  .btn-secondary:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn-secondary.focus, .comment-form input.focus[type="submit"], .search-form .focus.search-submit {
    box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); }
  .btn-secondary.disabled, .comment-form input.disabled[type="submit"], .search-form .disabled.search-submit, .btn-secondary:disabled, .comment-form input:disabled[type="submit"], .search-form .search-submit:disabled {
    background-color: #fff;
    border-color: #ccc; }
  .btn-secondary:active, .comment-form input:active[type="submit"], .search-form .search-submit:active, .btn-secondary.active, .comment-form input.active[type="submit"], .search-form .active.search-submit,
  .show > .btn-secondary.dropdown-toggle,
  .comment-form .show > input.dropdown-toggle[type="submit"],
  .search-form .show > .dropdown-toggle.search-submit {
    color: #292b2c;
    background-color: #e6e5e5;
    background-image: none;
    border-color: #adadad; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); }
  .btn-info.disabled, .btn-info:disabled {
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info:active, .btn-info.active,
  .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    background-image: none;
    border-color: #2aabd2; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); }
  .btn-success.disabled, .btn-success:disabled {
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success:active, .btn-success.active,
  .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    background-image: none;
    border-color: #419641; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); }
  .btn-warning.disabled, .btn-warning:disabled {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning:active, .btn-warning.active,
  .show > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #eb9316; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); }
  .btn-danger.disabled, .btn-danger:disabled {
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger:active, .btn-danger.active,
  .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    background-image: none;
    border-color: #c12e2a; }

.btn-outline-primary {
  color: #0275d8;
  background-image: none;
  background-color: transparent;
  border-color: #0275d8; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #0275d8;
    background-color: transparent; }
  .btn-outline-primary:active, .btn-outline-primary.active,
  .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8; }

.btn-outline-secondary {
  color: #ccc;
  background-image: none;
  background-color: transparent;
  border-color: #ccc; }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #ccc;
    background-color: transparent; }
  .btn-outline-secondary:active, .btn-outline-secondary.active,
  .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }

.btn-outline-info {
  color: #5bc0de;
  background-image: none;
  background-color: transparent;
  border-color: #5bc0de; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #5bc0de;
    background-color: transparent; }
  .btn-outline-info:active, .btn-outline-info.active,
  .show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }

.btn-outline-success {
  color: #5cb85c;
  background-image: none;
  background-color: transparent;
  border-color: #5cb85c; }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #5cb85c;
    background-color: transparent; }
  .btn-outline-success:active, .btn-outline-success.active,
  .show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }

.btn-outline-warning {
  color: #f0ad4e;
  background-image: none;
  background-color: transparent;
  border-color: #f0ad4e; }
  .btn-outline-warning:hover {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #f0ad4e;
    background-color: transparent; }
  .btn-outline-warning:active, .btn-outline-warning.active,
  .show > .btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }

.btn-outline-danger {
  color: #d9534f;
  background-image: none;
  background-color: transparent;
  border-color: #d9534f; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #d9534f;
    background-color: transparent; }
  .btn-outline-danger:active, .btn-outline-danger.active,
  .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }

.btn-link {
  font-weight: normal;
  color: #0275d8;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
    background-color: transparent; }
  .btn-link, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover {
    border-color: transparent; }
  .btn-link:focus, .btn-link:hover {
    color: #014c8c;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link:disabled {
    color: #636c72; }
    .btn-link:disabled:focus, .btn-link:disabled:hover {
      text-decoration: none; }

.btn-lg, .btn-group-lg > .btn, .comment-form .btn-group-lg > input[type="submit"], .search-form .btn-group-lg > .search-submit {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.3rem; }

.btn-sm, .btn-group-sm > .btn, .comment-form .btn-group-sm > input[type="submit"], .search-form .btn-group-sm > .search-submit {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 0.5rem; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.show {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.show {
    display: block; }

tr.collapse.show {
  display: table-row; }

tbody.collapse.show {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent; }

.dropdown-toggle:focus {
  outline: 0; }

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #292b2c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #eceeef; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: normal;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0; }
  .dropdown-item:focus, .dropdown-item:hover {
    color: #1d1e1f;
    text-decoration: none;
    background-color: #f7f7f9; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0275d8; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #636c72;
    cursor: not-allowed;
    background-color: transparent; }

.show > .dropdown-menu {
  display: block; }

.show > a {
  outline: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #636c72;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 0.125rem; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn, .comment-form .btn-group > input[type="submit"], .search-form .btn-group > .search-submit,
  .btn-group-vertical > .btn,
  .comment-form .btn-group-vertical > input[type="submit"],
  .search-form .btn-group-vertical > .search-submit {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }
    .btn-group > .btn:hover, .comment-form .btn-group > input:hover[type="submit"], .search-form .btn-group > .search-submit:hover,
    .btn-group-vertical > .btn:hover,
    .comment-form .btn-group-vertical > input:hover[type="submit"],
    .search-form .btn-group-vertical > .search-submit:hover {
      z-index: 2; }
    .btn-group > .btn:focus, .comment-form .btn-group > input:focus[type="submit"], .search-form .btn-group > .search-submit:focus, .btn-group > .btn:active, .comment-form .btn-group > input:active[type="submit"], .search-form .btn-group > .search-submit:active, .btn-group > .btn.active, .comment-form .btn-group > input.active[type="submit"], .search-form .btn-group > .active.search-submit,
    .btn-group-vertical > .btn:focus,
    .comment-form .btn-group-vertical > input:focus[type="submit"],
    .search-form .btn-group-vertical > .search-submit:focus,
    .btn-group-vertical > .btn:active,
    .comment-form .btn-group-vertical > input:active[type="submit"],
    .search-form .btn-group-vertical > .search-submit:active,
    .btn-group-vertical > .btn.active,
    .comment-form .btn-group-vertical > input.active[type="submit"],
    .search-form .btn-group-vertical > .active.search-submit {
      z-index: 2; }
  .btn-group .btn + .btn, .btn-group .comment-form input[type="submit"] + .btn, .comment-form .btn-group input[type="submit"] + .btn, .btn-group .search-form .search-submit + .btn, .search-form .btn-group .search-submit + .btn, .btn-group .comment-form .btn + input[type="submit"], .comment-form .btn-group .btn + input[type="submit"], .btn-group .comment-form input[type="submit"] + input[type="submit"], .comment-form .btn-group input[type="submit"] + input[type="submit"], .btn-group .search-form .comment-form .search-submit + input[type="submit"], .comment-form .btn-group .search-form .search-submit + input[type="submit"], .search-form .btn-group .comment-form .search-submit + input[type="submit"], .comment-form .search-form .btn-group .search-submit + input[type="submit"], .btn-group .search-form .btn + .search-submit, .search-form .btn-group .btn + .search-submit, .btn-group .comment-form .search-form input[type="submit"] + .search-submit, .search-form .btn-group .comment-form input[type="submit"] + .search-submit, .comment-form .btn-group .search-form input[type="submit"] + .search-submit, .search-form .comment-form .btn-group input[type="submit"] + .search-submit, .btn-group .search-form .search-submit + .search-submit, .search-form .btn-group .search-submit + .search-submit,
  .btn-group .btn + .btn-group,
  .btn-group .comment-form input[type="submit"] + .btn-group,
  .comment-form .btn-group input[type="submit"] + .btn-group,
  .btn-group .search-form .search-submit + .btn-group,
  .search-form .btn-group .search-submit + .btn-group,
  .btn-group .btn-group + .btn,
  .btn-group .comment-form .btn-group + input[type="submit"],
  .comment-form .btn-group .btn-group + input[type="submit"],
  .btn-group .search-form .btn-group + .search-submit,
  .search-form .btn-group .btn-group + .search-submit,
  .btn-group .btn-group + .btn-group,
  .btn-group-vertical .btn + .btn,
  .btn-group-vertical .comment-form input[type="submit"] + .btn,
  .comment-form .btn-group-vertical input[type="submit"] + .btn,
  .btn-group-vertical .search-form .search-submit + .btn,
  .search-form .btn-group-vertical .search-submit + .btn,
  .btn-group-vertical .comment-form .btn + input[type="submit"],
  .comment-form .btn-group-vertical .btn + input[type="submit"],
  .btn-group-vertical .comment-form input[type="submit"] + input[type="submit"],
  .comment-form .btn-group-vertical input[type="submit"] + input[type="submit"],
  .btn-group-vertical .search-form .comment-form .search-submit + input[type="submit"],
  .comment-form .btn-group-vertical .search-form .search-submit + input[type="submit"],
  .search-form .btn-group-vertical .comment-form .search-submit + input[type="submit"],
  .comment-form .search-form .btn-group-vertical .search-submit + input[type="submit"],
  .btn-group-vertical .search-form .btn + .search-submit,
  .search-form .btn-group-vertical .btn + .search-submit,
  .btn-group-vertical .comment-form .search-form input[type="submit"] + .search-submit,
  .search-form .btn-group-vertical .comment-form input[type="submit"] + .search-submit,
  .comment-form .btn-group-vertical .search-form input[type="submit"] + .search-submit,
  .search-form .comment-form .btn-group-vertical input[type="submit"] + .search-submit,
  .btn-group-vertical .search-form .search-submit + .search-submit,
  .search-form .btn-group-vertical .search-submit + .search-submit,
  .btn-group-vertical .btn + .btn-group,
  .btn-group-vertical .comment-form input[type="submit"] + .btn-group,
  .comment-form .btn-group-vertical input[type="submit"] + .btn-group,
  .btn-group-vertical .search-form .search-submit + .btn-group,
  .search-form .btn-group-vertical .search-submit + .btn-group,
  .btn-group-vertical .btn-group + .btn,
  .btn-group-vertical .comment-form .btn-group + input[type="submit"],
  .comment-form .btn-group-vertical .btn-group + input[type="submit"],
  .btn-group-vertical .search-form .btn-group + .search-submit,
  .search-form .btn-group-vertical .btn-group + .search-submit,
  .btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px; }

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), .comment-form .btn-group > input:not(:first-child):not(:last-child):not(.dropdown-toggle)[type="submit"], .search-form .btn-group > .search-submit:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child, .comment-form .btn-group > input:first-child[type="submit"], .search-form .btn-group > .search-submit:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), .comment-form .btn-group > input:first-child:not(:last-child):not(.dropdown-toggle)[type="submit"], .search-form .btn-group > .search-submit:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child), .comment-form .btn-group > input:last-child:not(:first-child)[type="submit"], .search-form .btn-group > .search-submit:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .comment-form .btn-group > .btn-group:not(:first-child):not(:last-child) > input[type="submit"], .search-form .btn-group > .btn-group:not(:first-child):not(:last-child) > .search-submit {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .comment-form .btn-group > .btn-group:first-child:not(:last-child) > input:last-child[type="submit"], .search-form .btn-group > .btn-group:first-child:not(:last-child) > .search-submit:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child, .comment-form .btn-group > .btn-group:last-child:not(:first-child) > input:first-child[type="submit"], .search-form .btn-group > .btn-group:last-child:not(:first-child) > .search-submit:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn + .dropdown-toggle-split, .comment-form input[type="submit"] + .dropdown-toggle-split, .search-form .search-submit + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }
  .btn + .dropdown-toggle-split::after, .comment-form input[type="submit"] + .dropdown-toggle-split::after, .search-form .search-submit + .dropdown-toggle-split::after {
    margin-left: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .comment-form .btn-group-sm > input[type="submit"] + .dropdown-toggle-split, .search-form .btn-group-sm > .search-submit + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .comment-form .btn-group-lg > input[type="submit"] + .dropdown-toggle-split, .search-form .btn-group-lg > .search-submit + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem; }

.btn-group-vertical {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .btn-group-vertical .btn, .btn-group-vertical .comment-form input[type="submit"], .comment-form .btn-group-vertical input[type="submit"], .btn-group-vertical .search-form .search-submit, .search-form .btn-group-vertical .search-submit,
  .btn-group-vertical .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn + .btn, .comment-form .btn-group-vertical > input[type="submit"] + .btn, .search-form .btn-group-vertical > .search-submit + .btn, .comment-form .btn-group-vertical > .btn + input[type="submit"], .comment-form .btn-group-vertical > input[type="submit"] + input[type="submit"], .search-form .comment-form .btn-group-vertical > .search-submit + input[type="submit"], .comment-form .search-form .btn-group-vertical > .search-submit + input[type="submit"], .search-form .btn-group-vertical > .btn + .search-submit, .comment-form .search-form .btn-group-vertical > input[type="submit"] + .search-submit, .search-form .comment-form .btn-group-vertical > input[type="submit"] + .search-submit, .search-form .btn-group-vertical > .search-submit + .search-submit,
  .btn-group-vertical > .btn + .btn-group,
  .comment-form .btn-group-vertical > input[type="submit"] + .btn-group,
  .search-form .btn-group-vertical > .search-submit + .btn-group,
  .btn-group-vertical > .btn-group + .btn,
  .comment-form .btn-group-vertical > .btn-group + input[type="submit"],
  .search-form .btn-group-vertical > .btn-group + .search-submit,
  .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child), .comment-form .btn-group-vertical > input:not(:first-child):not(:last-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child), .comment-form .btn-group-vertical > input:first-child:not(:last-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child), .comment-form .btn-group-vertical > input:last-child:not(:first-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, .comment-form .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > input[type="submit"], .search-form .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .search-submit {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .comment-form .btn-group-vertical > .btn-group:first-child:not(:last-child) > input:last-child[type="submit"], .search-form .btn-group-vertical > .btn-group:first-child:not(:last-child) > .search-submit:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child, .comment-form .btn-group-vertical > .btn-group:last-child:not(:first-child) > input:first-child[type="submit"], .search-form .btn-group-vertical > .btn-group:last-child:not(:first-child) > .search-submit:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

[data-toggle="buttons"] > .btn input[type="radio"], .comment-form [data-toggle="buttons"] > input[type="submit"] input[type="radio"], .search-form [data-toggle="buttons"] > .search-submit input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
.comment-form [data-toggle="buttons"] > input[type="submit"] input[type="checkbox"],
.search-form [data-toggle="buttons"] > .search-submit input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
.comment-form [data-toggle="buttons"] > .btn-group > input[type="submit"] input[type="radio"],
.search-form [data-toggle="buttons"] > .btn-group > .search-submit input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
.comment-form [data-toggle="buttons"] > .btn-group > input[type="submit"] input[type="checkbox"],
.search-form [data-toggle="buttons"] > .btn-group > .search-submit input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .input-group .form-control, .input-group .comment-form input[type="text"], .comment-form .input-group input[type="text"],
  .input-group .comment-form input[type="email"], .comment-form .input-group input[type="email"],
  .input-group .comment-form input[type="url"], .comment-form .input-group input[type="url"],
  .input-group .comment-form textarea, .comment-form .input-group textarea, .input-group .search-form .search-field, .search-form .input-group .search-field {
    position: relative;
    z-index: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group .comment-form input:focus[type="text"], .comment-form .input-group input:focus[type="text"],
    .input-group .comment-form input:focus[type="email"], .comment-form .input-group input:focus[type="email"],
    .input-group .comment-form input:focus[type="url"], .comment-form .input-group input:focus[type="url"],
    .input-group .comment-form textarea:focus, .comment-form .input-group textarea:focus, .input-group .search-form .search-field:focus, .search-form .input-group .search-field:focus, .input-group .form-control:active, .input-group .comment-form input:active[type="text"], .comment-form .input-group input:active[type="text"],
    .input-group .comment-form input:active[type="email"], .comment-form .input-group input:active[type="email"],
    .input-group .comment-form input:active[type="url"], .comment-form .input-group input:active[type="url"],
    .input-group .comment-form textarea:active, .comment-form .input-group textarea:active, .input-group .search-form .search-field:active, .search-form .input-group .search-field:active, .input-group .form-control:hover, .input-group .comment-form input:hover[type="text"], .comment-form .input-group input:hover[type="text"],
    .input-group .comment-form input:hover[type="email"], .comment-form .input-group input:hover[type="email"],
    .input-group .comment-form input:hover[type="url"], .comment-form .input-group input:hover[type="url"],
    .input-group .comment-form textarea:hover, .comment-form .input-group textarea:hover, .input-group .search-form .search-field:hover, .search-form .input-group .search-field:hover {
      z-index: 3; }

.input-group-addon,
.input-group-btn, .input-group .form-control, .input-group .comment-form input[type="text"], .comment-form .input-group input[type="text"],
.input-group .comment-form input[type="email"], .comment-form .input-group input[type="email"],
.input-group .comment-form input[type="url"], .comment-form .input-group input[type="url"],
.input-group .comment-form textarea, .comment-form .input-group textarea, .input-group .search-form .search-field, .search-form .input-group .search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child),
  .input-group .comment-form input:not(:first-child):not(:last-child)[type="text"],
  .comment-form .input-group input:not(:first-child):not(:last-child)[type="text"],
  .input-group .comment-form input:not(:first-child):not(:last-child)[type="email"],
  .comment-form .input-group input:not(:first-child):not(:last-child)[type="email"],
  .input-group .comment-form input:not(:first-child):not(:last-child)[type="url"],
  .comment-form .input-group input:not(:first-child):not(:last-child)[type="url"],
  .input-group .comment-form textarea:not(:first-child):not(:last-child),
  .comment-form .input-group textarea:not(:first-child):not(:last-child),
  .input-group .search-form .search-field:not(:first-child):not(:last-child),
  .search-form .input-group .search-field:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  color: #464a4c;
  text-align: center;
  background-color: #eceeef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .input-group-addon.form-control-sm, .comment-form .input-group-sm > input.input-group-addon[type="text"],
  .comment-form .input-group-sm > input.input-group-addon[type="email"],
  .comment-form .input-group-sm > input.input-group-addon[type="url"],
  .comment-form .input-group-sm > textarea.input-group-addon, .search-form .input-group-sm > .input-group-addon.search-field,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn, .comment-form .input-group-sm > .input-group-btn > input.input-group-addon[type="submit"], .search-form .input-group-sm > .input-group-btn > .input-group-addon.search-submit {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem; }
  .input-group-addon.form-control-lg, .comment-form .input-group-lg > input.input-group-addon[type="text"],
  .comment-form .input-group-lg > input.input-group-addon[type="email"],
  .comment-form .input-group-lg > input.input-group-addon[type="url"],
  .comment-form .input-group-lg > textarea.input-group-addon, .search-form .input-group-lg > .input-group-addon.search-field,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn, .comment-form .input-group-lg > .input-group-btn > input.input-group-addon[type="submit"], .search-form .input-group-lg > .input-group-btn > .input-group-addon.search-submit {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 0.3rem; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:not(:last-child), .input-group .comment-form input:not(:last-child)[type="text"], .comment-form .input-group input:not(:last-child)[type="text"],
.input-group .comment-form input:not(:last-child)[type="email"], .comment-form .input-group input:not(:last-child)[type="email"],
.input-group .comment-form input:not(:last-child)[type="url"], .comment-form .input-group input:not(:last-child)[type="url"],
.input-group .comment-form textarea:not(:last-child), .comment-form .input-group textarea:not(:last-child), .input-group .search-form .search-field:not(:last-child), .search-form .input-group .search-field:not(:last-child),
.input-group-addon:not(:last-child),
.input-group-btn:not(:last-child) > .btn,
.comment-form .input-group-btn:not(:last-child) > input[type="submit"],
.search-form .input-group-btn:not(:last-child) > .search-submit,
.input-group-btn:not(:last-child) > .btn-group > .btn,
.comment-form .input-group-btn:not(:last-child) > .btn-group > input[type="submit"],
.search-form .input-group-btn:not(:last-child) > .btn-group > .search-submit,
.input-group-btn:not(:last-child) > .dropdown-toggle,
.input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .input-group-btn:not(:first-child) > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.search-form .input-group-btn:not(:first-child) > .search-submit:not(:last-child):not(.dropdown-toggle),
.input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn,
.comment-form .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > input[type="submit"],
.search-form .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .search-submit {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:not(:last-child) {
  border-right: 0; }

.input-group .form-control:not(:first-child), .input-group .comment-form input:not(:first-child)[type="text"], .comment-form .input-group input:not(:first-child)[type="text"],
.input-group .comment-form input:not(:first-child)[type="email"], .comment-form .input-group input:not(:first-child)[type="email"],
.input-group .comment-form input:not(:first-child)[type="url"], .comment-form .input-group input:not(:first-child)[type="url"],
.input-group .comment-form textarea:not(:first-child), .comment-form .input-group textarea:not(:first-child), .input-group .search-form .search-field:not(:first-child), .search-form .input-group .search-field:not(:first-child),
.input-group-addon:not(:first-child),
.input-group-btn:not(:first-child) > .btn,
.comment-form .input-group-btn:not(:first-child) > input[type="submit"],
.search-form .input-group-btn:not(:first-child) > .search-submit,
.input-group-btn:not(:first-child) > .btn-group > .btn,
.comment-form .input-group-btn:not(:first-child) > .btn-group > input[type="submit"],
.search-form .input-group-btn:not(:first-child) > .btn-group > .search-submit,
.input-group-btn:not(:first-child) > .dropdown-toggle,
.input-group-btn:not(:last-child) > .btn:not(:first-child),
.comment-form .input-group-btn:not(:last-child) > input:not(:first-child)[type="submit"],
.search-form .input-group-btn:not(:last-child) > .search-submit:not(:first-child),
.input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn,
.comment-form .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > input[type="submit"],
.search-form .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .search-submit {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.form-control + .input-group-addon:not(:first-child), .comment-form input[type="text"] + .input-group-addon:not(:first-child), .comment-form input[type="email"] + .input-group-addon:not(:first-child), .comment-form input[type="url"] + .input-group-addon:not(:first-child), .comment-form textarea + .input-group-addon:not(:first-child), .search-form .search-field + .input-group-addon:not(:first-child) {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn, .comment-form .input-group-btn > input[type="submit"], .search-form .input-group-btn > .search-submit {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .input-group-btn > .btn + .btn, .comment-form .input-group-btn > input[type="submit"] + .btn, .search-form .input-group-btn > .search-submit + .btn, .comment-form .input-group-btn > .btn + input[type="submit"], .comment-form .input-group-btn > input[type="submit"] + input[type="submit"], .search-form .comment-form .input-group-btn > .search-submit + input[type="submit"], .comment-form .search-form .input-group-btn > .search-submit + input[type="submit"], .search-form .input-group-btn > .btn + .search-submit, .comment-form .search-form .input-group-btn > input[type="submit"] + .search-submit, .search-form .comment-form .input-group-btn > input[type="submit"] + .search-submit, .search-form .input-group-btn > .search-submit + .search-submit {
      margin-left: -1px; }
    .input-group-btn > .btn:focus, .comment-form .input-group-btn > input:focus[type="submit"], .search-form .input-group-btn > .search-submit:focus, .input-group-btn > .btn:active, .comment-form .input-group-btn > input:active[type="submit"], .search-form .input-group-btn > .search-submit:active, .input-group-btn > .btn:hover, .comment-form .input-group-btn > input:hover[type="submit"], .search-form .input-group-btn > .search-submit:hover {
      z-index: 3; }
  
  .input-group-btn:not(:last-child) > .btn,
  .comment-form .input-group-btn:not(:last-child) > input[type="submit"],
  .search-form .input-group-btn:not(:last-child) > .search-submit,
  .input-group-btn:not(:last-child) > .btn-group {
    margin-right: -1px; }
  
  .input-group-btn:not(:first-child) > .btn,
  .comment-form .input-group-btn:not(:first-child) > input[type="submit"],
  .search-form .input-group-btn:not(:first-child) > .search-submit,
  .input-group-btn:not(:first-child) > .btn-group {
    z-index: 2;
    margin-left: -1px; }
    .input-group-btn:not(:first-child) > .btn:focus, .comment-form .input-group-btn:not(:first-child) > input:focus[type="submit"], .search-form .input-group-btn:not(:first-child) > .search-submit:focus, .input-group-btn:not(:first-child) > .btn:active, .comment-form .input-group-btn:not(:first-child) > input:active[type="submit"], .search-form .input-group-btn:not(:first-child) > .search-submit:active, .input-group-btn:not(:first-child) > .btn:hover, .comment-form .input-group-btn:not(:first-child) > input:hover[type="submit"], .search-form .input-group-btn:not(:first-child) > .search-submit:hover,
    .input-group-btn:not(:first-child) > .btn-group:focus,
    .input-group-btn:not(:first-child) > .btn-group:active,
    .input-group-btn:not(:first-child) > .btn-group:hover {
      z-index: 3; }

.custom-control {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-right: 1rem;
  cursor: pointer; }

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }
  .custom-control-input:checked ~ .custom-control-indicator {
    color: #fff;
    background-color: #0275d8; }
  .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8; }
  .custom-control-input:active ~ .custom-control-indicator {
    color: #fff;
    background-color: #8fcafe; }
  .custom-control-input:disabled ~ .custom-control-indicator {
    cursor: not-allowed;
    background-color: #eceeef; }
  .custom-control-input:disabled ~ .custom-control-description {
    color: #636c72;
    cursor: not-allowed; }

.custom-control-indicator {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%; }

.custom-checkbox .custom-control-indicator {
  border-radius: 0.25rem; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background-color: #0275d8;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }

.custom-radio .custom-control-indicator {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }

.custom-controls-stacked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .custom-controls-stacked .custom-control {
    margin-bottom: 0.25rem; }
    .custom-controls-stacked .custom-control + .custom-control {
      margin-left: 0; }

.custom-select {
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.25;
  color: #464a4c;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -moz-appearance: none;
  -webkit-appearance: none; }
  .custom-select:focus {
    border-color: #5cb3fd;
    outline: none; }
    .custom-select:focus::-ms-value {
      color: #464a4c;
      background-color: #fff; }
  .custom-select:disabled {
    color: #636c72;
    cursor: not-allowed;
    background-color: #eceeef; }
  .custom-select::-ms-expand {
    opacity: 0; }

.custom-select-sm {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%; }

.custom-file {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 2.5rem;
  margin-bottom: 0;
  cursor: pointer; }

.custom-file-input {
  min-width: 14rem;
  max-width: 100%;
  height: 2.5rem;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0; }

.custom-file-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  color: #464a4c;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .custom-file-control:lang(en)::after {
    content: "Choose file..."; }
  .custom-file-control::before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #464a4c;
    background-color: #eceeef;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 0.25rem 0.25rem 0; }
  .custom-file-control:lang(en)::before {
    content: "Browse"; }

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5em 1em; }
  .nav-link:focus, .nav-link:hover {
    text-decoration: none; }
  .nav-link.disabled {
    color: #636c72;
    cursor: not-allowed; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs .nav-item {
    margin-bottom: -1px; }
  .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem; }
    .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
      border-color: #eceeef #eceeef #ddd; }
    .nav-tabs .nav-link.disabled {
      color: #636c72;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #464a4c;
    background-color: #fff;
    border-color: #ddd #ddd #fff; }
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }

.nav-pills .nav-link {
  border-radius: 0.25rem; }

.nav-pills .nav-link.active,
.nav-pills .nav-item.show .nav-link {
  color: #fff;
  cursor: default;
  background-color: #0275d8; }

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center; }

.nav-justified .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-align: center; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 1rem; }

.navbar-brand {
  display: inline-block;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none; }

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }

.navbar-text {
  display: inline-block;
  padding-top: .425rem;
  padding-bottom: .425rem; }

.navbar-toggler {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%; }

.navbar-toggler-left {
  position: absolute;
  left: 1rem; }

.navbar-toggler-right {
  position: absolute;
  right: 1rem; }

@media (max-width: 575px) {
  .navbar-toggleable .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
  .navbar-toggleable > .container {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 576px) {
  .navbar-toggleable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .navbar-toggleable .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .navbar-toggleable .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem; }
    .navbar-toggleable > .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .navbar-toggleable .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: 100%; }
    .navbar-toggleable .navbar-toggler {
      display: none; } }

@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
  .navbar-toggleable-sm > .container {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 768px) {
  .navbar-toggleable-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .navbar-toggleable-sm .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .navbar-toggleable-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem; }
    .navbar-toggleable-sm > .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .navbar-toggleable-sm .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: 100%; }
    .navbar-toggleable-sm .navbar-toggler {
      display: none; } }

@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
  .navbar-toggleable-md > .container {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-toggleable-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .navbar-toggleable-md .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .navbar-toggleable-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem; }
    .navbar-toggleable-md > .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .navbar-toggleable-md .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: 100%; }
    .navbar-toggleable-md .navbar-toggler {
      display: none; } }

@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
  .navbar-toggleable-lg > .container {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1200px) {
  .navbar-toggleable-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .navbar-toggleable-lg .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .navbar-toggleable-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem; }
    .navbar-toggleable-lg > .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .navbar-toggleable-lg .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: 100%; }
    .navbar-toggleable-lg .navbar-toggler {
      display: none; } }

.navbar-toggleable-xl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .navbar-toggleable-xl .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
  .navbar-toggleable-xl > .container {
    padding-right: 0;
    padding-left: 0; }
  .navbar-toggleable-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    .navbar-toggleable-xl .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem; }
  .navbar-toggleable-xl > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .navbar-toggleable-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%; }
  .navbar-toggleable-xl .navbar-toggler {
    display: none; }

.navbar-light .navbar-brand,
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover,
  .navbar-light .navbar-toggler:focus,
  .navbar-light .navbar-toggler:hover {
    color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }

.navbar-light .navbar-nav .open > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5); }

.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-toggler {
  color: white; }
  .navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover,
  .navbar-inverse .navbar-toggler:focus,
  .navbar-inverse .navbar-toggler:hover {
    color: white; }

.navbar-inverse .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-inverse .navbar-nav .nav-link:focus, .navbar-inverse .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-inverse .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-inverse .navbar-nav .open > .nav-link,
.navbar-inverse .navbar-nav .active > .nav-link,
.navbar-inverse .navbar-nav .nav-link.open,
.navbar-inverse .navbar-nav .nav-link.active {
  color: white; }

.navbar-inverse .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-inverse .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }

.navbar-inverse .navbar-text {
  color: rgba(255, 255, 255, 0.5); }

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }

.card-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem; }

.card-title {
  margin-bottom: 0.75rem; }

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: none; }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card > .list-group:first-child .list-group-item:first-child {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem; }

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f7f7f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f7f7f9;
  border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }

.card-primary {
  background-color: #0275d8;
  border-color: #0275d8; }
  .card-primary .card-header,
  .card-primary .card-footer {
    background-color: transparent; }

.card-success {
  background-color: #5cb85c;
  border-color: #5cb85c; }
  .card-success .card-header,
  .card-success .card-footer {
    background-color: transparent; }

.card-info {
  background-color: #5bc0de;
  border-color: #5bc0de; }
  .card-info .card-header,
  .card-info .card-footer {
    background-color: transparent; }

.card-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
  .card-warning .card-header,
  .card-warning .card-footer {
    background-color: transparent; }

.card-danger {
  background-color: #d9534f;
  border-color: #d9534f; }
  .card-danger .card-header,
  .card-danger .card-footer {
    background-color: transparent; }

.card-outline-primary {
  background-color: transparent;
  border-color: #0275d8; }

.card-outline-secondary {
  background-color: transparent;
  border-color: #ccc; }

.card-outline-info {
  background-color: transparent;
  border-color: #5bc0de; }

.card-outline-success {
  background-color: transparent;
  border-color: #5cb85c; }

.card-outline-warning {
  background-color: transparent;
  border-color: #f0ad4e; }

.card-outline-danger {
  background-color: transparent;
  border-color: #d9534f; }

.card-inverse {
  color: rgba(255, 255, 255, 0.65); }
  .card-inverse .card-header,
  .card-inverse .card-footer {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2); }
  .card-inverse .card-header,
  .card-inverse .card-footer,
  .card-inverse .card-title,
  .card-inverse .card-blockquote {
    color: #fff; }
  .card-inverse .card-link,
  .card-inverse .card-text,
  .card-inverse .card-subtitle,
  .card-inverse .card-blockquote .blockquote-footer {
    color: rgba(255, 255, 255, 0.65); }
  .card-inverse .card-link:focus, .card-inverse .card-link:hover {
    color: #fff; }

.card-blockquote {
  padding: 0;
  margin-bottom: 0;
  border-left: 0; }

.card-img {
  border-radius: calc(0.25rem - 1px); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem; }

.card-img-top {
  border-top-right-radius: calc(0.25rem - 1px);
  border-top-left-radius: calc(0.25rem - 1px); }

.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px); }

@media (min-width: 576px) {
  .card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .card-deck .card {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0px;
              flex: 1 0 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .card-deck .card:not(:first-child) {
        margin-left: 15px; }
      .card-deck .card:not(:last-child) {
        margin-right: 15px; } }

@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .card-group .card {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0px;
              flex: 1 0 0; }
      .card-group .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group .card:first-child {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0; }
        .card-group .card:first-child .card-img-top {
          border-top-right-radius: 0; }
        .card-group .card:first-child .card-img-bottom {
          border-bottom-right-radius: 0; }
      .card-group .card:last-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0; }
        .card-group .card:last-child .card-img-top {
          border-top-left-radius: 0; }
        .card-group .card:last-child .card-img-bottom {
          border-bottom-left-radius: 0; }
      .card-group .card:not(:first-child):not(:last-child) {
        border-radius: 0; }
        .card-group .card:not(:first-child):not(:last-child) .card-img-top,
        .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
          border-radius: 0; } }

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem; }
    .card-columns .card {
      display: inline-block;
      width: 100%;
      margin-bottom: 0.75rem; } }

.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eceeef;
  border-radius: 0.25rem; }
  .breadcrumb::after {
    display: block;
    content: "";
    clear: both; }

.breadcrumb-item {
  float: left; }
  .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #636c72;
    content: "/"; }
  .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline; }
  .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none; }
  .breadcrumb-item.active {
    color: #636c72; }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem; }

.page-item:first-child .page-link {
  margin-left: 0;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem; }

.page-item:last-child .page-link {
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem; }

.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8; }

.page-item.disabled .page-link {
  color: #636c72;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd; }

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #0275d8;
  background-color: #fff;
  border: 1px solid #ddd; }
  .page-link:focus, .page-link:hover {
    color: #014c8c;
    text-decoration: none;
    background-color: #eceeef;
    border-color: #ddd; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem; }

.pagination-lg .page-item:first-child .page-link {
  border-bottom-left-radius: 0.3rem;
  border-top-left-radius: 0.3rem; }

.pagination-lg .page-item:last-child .page-link {
  border-bottom-right-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem; }

.pagination-sm .page-item:first-child .page-link {
  border-bottom-left-radius: 0.2rem;
  border-top-left-radius: 0.2rem; }

.pagination-sm .page-item:last-child .page-link {
  border-bottom-right-radius: 0.2rem;
  border-top-right-radius: 0.2rem; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem; }
  .badge:empty {
    display: none; }

.btn .badge, .comment-form input[type="submit"] .badge, .search-form .search-submit .badge {
  position: relative;
  top: -1px; }

a.badge:focus, a.badge:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-default {
  background-color: #636c72; }
  .badge-default[href]:focus, .badge-default[href]:hover {
    background-color: #4b5257; }

.badge-primary {
  background-color: #0275d8; }
  .badge-primary[href]:focus, .badge-primary[href]:hover {
    background-color: #025aa5; }

.badge-success {
  background-color: #5cb85c; }
  .badge-success[href]:focus, .badge-success[href]:hover {
    background-color: #449d44; }

.badge-info {
  background-color: #5bc0de; }
  .badge-info[href]:focus, .badge-info[href]:hover {
    background-color: #31b0d5; }

.badge-warning {
  background-color: #f0ad4e; }
  .badge-warning[href]:focus, .badge-warning[href]:hover {
    background-color: #ec971f; }

.badge-danger {
  background-color: #d9534f; }
  .badge-danger[href]:focus, .badge-danger[href]:hover {
    background-color: #c9302c; }

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eceeef;
  border-radius: 0.3rem; }
  @media (min-width: 576px) {
    .jumbotron {
      padding: 4rem 2rem; } }

.jumbotron-hr {
  border-top-color: #d0d5d8; }

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: bold; }

.alert-dismissible .close {
  position: relative;
  top: -0.75rem;
  right: -1.25rem;
  padding: 0.75rem 1.25rem;
  color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c1e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6d5ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7ecb5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9b9; }
  .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: #eceeef;
  border-radius: 0.25rem; }

.progress-bar {
  height: 1rem;
  color: #fff;
  background-color: #0275d8; }

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
       -o-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite; }

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item-action {
  width: 100%;
  color: #464a4c;
  text-align: inherit; }
  .list-group-item-action .list-group-item-heading {
    color: #292b2c; }
  .list-group-item-action:focus, .list-group-item-action:hover {
    color: #464a4c;
    text-decoration: none;
    background-color: #f7f7f9; }
  .list-group-item-action:active {
    color: #292b2c;
    background-color: #eceeef; }

.list-group-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .list-group-item:focus, .list-group-item:hover {
    text-decoration: none; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #636c72;
    cursor: not-allowed;
    background-color: #fff; }
    .list-group-item.disabled .list-group-item-heading, .list-group-item:disabled .list-group-item-heading {
      color: inherit; }
    .list-group-item.disabled .list-group-item-text, .list-group-item:disabled .list-group-item-text {
      color: #636c72; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8; }
    .list-group-item.active .list-group-item-heading,
    .list-group-item.active .list-group-item-heading > small,
    .list-group-item.active .list-group-item-heading > .small {
      color: inherit; }
    .list-group-item.active .list-group-item-text {
      color: #daeeff; }

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0; }

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:focus, a.list-group-item-success:hover,
  button.list-group-item-success:focus,
  button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active,
  button.list-group-item-success.active {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:focus, a.list-group-item-info:hover,
  button.list-group-item-info:focus,
  button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active,
  button.list-group-item-info.active {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:focus, a.list-group-item-warning:hover,
  button.list-group-item-warning:focus,
  button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active,
  button.list-group-item-warning.active {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:focus, a.list-group-item-danger:hover,
  button.list-group-item-danger:focus,
  button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active,
  button.list-group-item-danger.active {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive::before {
    display: block;
    content: ""; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  .close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
         -o-transform: translate(0, -25%);
            transform: translate(0, -25%); }
  .modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eceeef; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 15px; }

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #eceeef; }
  .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal-footer > :not(:last-child) {
    margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto; }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
    padding: 5px 0;
    margin-top: -3px; }
    .tooltip.tooltip-top .tooltip-inner::before, .tooltip.bs-tether-element-attached-bottom .tooltip-inner::before {
      bottom: 0;
      left: 50%;
      margin-left: -5px;
      content: "";
      border-width: 5px 5px 0;
      border-top-color: #000; }
  .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
    padding: 0 5px;
    margin-left: 3px; }
    .tooltip.tooltip-right .tooltip-inner::before, .tooltip.bs-tether-element-attached-left .tooltip-inner::before {
      top: 50%;
      left: 0;
      margin-top: -5px;
      content: "";
      border-width: 5px 5px 5px 0;
      border-right-color: #000; }
  .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
    padding: 5px 0;
    margin-top: 3px; }
    .tooltip.tooltip-bottom .tooltip-inner::before, .tooltip.bs-tether-element-attached-top .tooltip-inner::before {
      top: 0;
      left: 50%;
      margin-left: -5px;
      content: "";
      border-width: 0 5px 5px;
      border-bottom-color: #000; }
  .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
    padding: 0 5px;
    margin-left: -3px; }
    .tooltip.tooltip-left .tooltip-inner::before, .tooltip.bs-tether-element-attached-right .tooltip-inner::before {
      top: 50%;
      right: 0;
      margin-top: -5px;
      content: "";
      border-width: 5px 0 5px 5px;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }
  .tooltip-inner::before {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  .popover.popover-top, .popover.bs-tether-element-attached-bottom {
    margin-top: -10px; }
    .popover.popover-top::before, .popover.popover-top::after, .popover.bs-tether-element-attached-bottom::before, .popover.bs-tether-element-attached-bottom::after {
      left: 50%;
      border-bottom-width: 0; }
    .popover.popover-top::before, .popover.bs-tether-element-attached-bottom::before {
      bottom: -11px;
      margin-left: -11px;
      border-top-color: rgba(0, 0, 0, 0.25); }
    .popover.popover-top::after, .popover.bs-tether-element-attached-bottom::after {
      bottom: -10px;
      margin-left: -10px;
      border-top-color: #fff; }
  .popover.popover-right, .popover.bs-tether-element-attached-left {
    margin-left: 10px; }
    .popover.popover-right::before, .popover.popover-right::after, .popover.bs-tether-element-attached-left::before, .popover.bs-tether-element-attached-left::after {
      top: 50%;
      border-left-width: 0; }
    .popover.popover-right::before, .popover.bs-tether-element-attached-left::before {
      left: -11px;
      margin-top: -11px;
      border-right-color: rgba(0, 0, 0, 0.25); }
    .popover.popover-right::after, .popover.bs-tether-element-attached-left::after {
      left: -10px;
      margin-top: -10px;
      border-right-color: #fff; }
  .popover.popover-bottom, .popover.bs-tether-element-attached-top {
    margin-top: 10px; }
    .popover.popover-bottom::before, .popover.popover-bottom::after, .popover.bs-tether-element-attached-top::before, .popover.bs-tether-element-attached-top::after {
      left: 50%;
      border-top-width: 0; }
    .popover.popover-bottom::before, .popover.bs-tether-element-attached-top::before {
      top: -11px;
      margin-left: -11px;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
    .popover.popover-bottom::after, .popover.bs-tether-element-attached-top::after {
      top: -10px;
      margin-left: -10px;
      border-bottom-color: #f7f7f7; }
    .popover.popover-bottom .popover-title::before, .popover.bs-tether-element-attached-top .popover-title::before {
      position: absolute;
      top: 0;
      left: 50%;
      display: block;
      width: 20px;
      margin-left: -10px;
      content: "";
      border-bottom: 1px solid #f7f7f7; }
  .popover.popover-left, .popover.bs-tether-element-attached-right {
    margin-left: -10px; }
    .popover.popover-left::before, .popover.popover-left::after, .popover.bs-tether-element-attached-right::before, .popover.bs-tether-element-attached-right::after {
      top: 50%;
      border-right-width: 0; }
    .popover.popover-left::before, .popover.bs-tether-element-attached-right::before {
      right: -11px;
      margin-top: -11px;
      border-left-color: rgba(0, 0, 0, 0.25); }
    .popover.popover-left::after, .popover.bs-tether-element-attached-right::after {
      right: -10px;
      margin-top: -10px;
      border-left-color: #fff; }

.popover-title {
  padding: 8px 14px;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-right-radius: calc(0.3rem - 1px);
  border-top-left-radius: calc(0.3rem - 1px); }
  .popover-title:empty {
    display: none; }

.popover-content {
  padding: 9px 14px; }

.popover::before,
.popover::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover::before {
  content: "";
  border-width: 11px; }

.popover::after {
  content: "";
  border-width: 10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.carousel-item {
  position: relative;
  display: none;
  width: 100%; }
  @media (-webkit-transform-3d) {
    .carousel-item {
      -webkit-transition: -webkit-transform 0.6s ease-in-out;
      transition: -webkit-transform 0.6s ease-in-out;
      -o-transition: -o-transform 0.6s ease-in-out;
      transition: transform 0.6s ease-in-out;
      transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      -webkit-perspective: 1000px;
              perspective: 1000px; } }
  @supports (transform: translate3d(0, 0, 0)) {
    .carousel-item {
      -webkit-transition: -webkit-transform 0.6s ease-in-out;
      transition: -webkit-transform 0.6s ease-in-out;
      -o-transition: -o-transform 0.6s ease-in-out;
      transition: transform 0.6s ease-in-out;
      transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      -webkit-perspective: 1000px;
              perspective: 1000px; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0; }

@media (-webkit-transform-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

@supports (transform: translate3d(0, 0, 0)) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5; }
  .carousel-control-prev:focus, .carousel-control-prev:hover,
  .carousel-control-next:focus,
  .carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators li {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    max-width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5); }
    .carousel-indicators li::before {
      position: absolute;
      top: -10px;
      left: 0;
      display: inline-block;
      width: 100%;
      height: 10px;
      content: ""; }
    .carousel-indicators li::after {
      position: absolute;
      bottom: -10px;
      left: 0;
      display: inline-block;
      width: 100%;
      height: 10px;
      content: ""; }
  .carousel-indicators .active {
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-faded {
  background-color: #f7f7f7; }

.bg-primary {
  background-color: #0275d8 !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #025aa5 !important; }

.bg-success {
  background-color: #5cb85c !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44 !important; }

.bg-info {
  background-color: #5bc0de !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5 !important; }

.bg-warning {
  background-color: #f0ad4e !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f !important; }

.bg-danger {
  background-color: #d9534f !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c !important; }

.bg-inverse {
  background-color: #292b2c !important; }

a.bg-inverse:focus, a.bg-inverse:hover {
  background-color: #101112 !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.rounded {
  border-radius: 0.25rem; }

.rounded-top {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem; }

.rounded-right {
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.rounded-left {
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem; }

.rounded-circle {
  border-radius: 50%; }

.rounded-0 {
  border-radius: 0; }

.clearfix::after {
  display: block;
  content: "";
  clear: both; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

.flex-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1; }

.flex-last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

.flex-unordered {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0; }

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important; }

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important; }

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important; }

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important; }

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important; }

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important; }

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important; }

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important; }

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important; }

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important; }

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important; }

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  .flex-sm-last {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .flex-sm-unordered {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  .flex-md-last {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .flex-md-unordered {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  .flex-lg-last {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .flex-lg-unordered {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  .flex-xl-last {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .flex-xl-unordered {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030; }

.sr-only, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .screen-reader-text:active, .sr-only-focusable:focus, .screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.m-0 {
  margin: 0 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.mr-0 {
  margin-right: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.ml-0 {
  margin-left: 0 !important; }

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-1 {
  margin: 0.25rem 0.25rem !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mr-1 {
  margin-right: 0.25rem !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.ml-1 {
  margin-left: 0.25rem !important; }

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.m-2 {
  margin: 0.5rem 0.5rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.ml-2 {
  margin-left: 0.5rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.m-3 {
  margin: 1rem 1rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mr-3 {
  margin-right: 1rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.ml-3 {
  margin-left: 1rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-4 {
  margin: 1.5rem 1.5rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mr-4 {
  margin-right: 1.5rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.ml-4 {
  margin-left: 1.5rem !important; }

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-5 {
  margin: 3rem 3rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.mr-5 {
  margin-right: 3rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

.ml-5 {
  margin-left: 3rem !important; }

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-0 {
  padding: 0 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-1 {
  padding: 0.25rem 0.25rem !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pr-1 {
  padding-right: 0.25rem !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pl-1 {
  padding-left: 0.25rem !important; }

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.p-2 {
  padding: 0.5rem 0.5rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pr-2 {
  padding-right: 0.5rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pl-2 {
  padding-left: 0.5rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.p-3 {
  padding: 1rem 1rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pr-3 {
  padding-right: 1rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pl-3 {
  padding-left: 1rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-4 {
  padding: 1.5rem 1.5rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pr-4 {
  padding-right: 1.5rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pl-4 {
  padding-left: 1.5rem !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-5 {
  padding: 3rem 3rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

.pr-5 {
  padding-right: 3rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

.pl-5 {
  padding-left: 3rem !important; }

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto {
  margin-top: auto !important; }

.mr-auto {
  margin-right: auto !important; }

.mb-auto {
  margin-bottom: auto !important; }

.ml-auto {
  margin-left: auto !important; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 0 !important; }
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0 {
    margin-left: 0 !important; }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1 {
    margin-left: 0.25rem !important; }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2 {
    margin-left: 0.5rem !important; }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem 1rem !important; }
  .mt-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3 {
    margin-left: 1rem !important; }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4 {
    margin-left: 1.5rem !important; }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem 3rem !important; }
  .mt-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5 {
    margin-left: 3rem !important; }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .p-sm-0 {
    padding: 0 0 !important; }
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0 {
    padding-left: 0 !important; }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1 {
    padding-left: 0.25rem !important; }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2 {
    padding-left: 0.5rem !important; }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem 1rem !important; }
  .pt-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3 {
    padding-left: 1rem !important; }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4 {
    padding-left: 1.5rem !important; }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem 3rem !important; }
  .pt-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5 {
    padding-left: 3rem !important; }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto {
    margin-left: auto !important; }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 0 !important; }
  .mt-md-0 {
    margin-top: 0 !important; }
  .mr-md-0 {
    margin-right: 0 !important; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0 {
    margin-left: 0 !important; }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .m-md-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1 {
    margin-left: 0.25rem !important; }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2 {
    margin-left: 0.5rem !important; }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem 1rem !important; }
  .mt-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3 {
    margin-left: 1rem !important; }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4 {
    margin-left: 1.5rem !important; }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem 3rem !important; }
  .mt-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5 {
    margin-left: 3rem !important; }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .p-md-0 {
    padding: 0 0 !important; }
  .pt-md-0 {
    padding-top: 0 !important; }
  .pr-md-0 {
    padding-right: 0 !important; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0 {
    padding-left: 0 !important; }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .p-md-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1 {
    padding-left: 0.25rem !important; }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2 {
    padding-left: 0.5rem !important; }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem 1rem !important; }
  .pt-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3 {
    padding-left: 1rem !important; }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4 {
    padding-left: 1.5rem !important; }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem 3rem !important; }
  .pt-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5 {
    padding-left: 3rem !important; }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto {
    margin-top: auto !important; }
  .mr-md-auto {
    margin-right: auto !important; }
  .mb-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto {
    margin-left: auto !important; }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 0 !important; }
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0 {
    margin-left: 0 !important; }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1 {
    margin-left: 0.25rem !important; }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2 {
    margin-left: 0.5rem !important; }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem 1rem !important; }
  .mt-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3 {
    margin-left: 1rem !important; }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4 {
    margin-left: 1.5rem !important; }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem 3rem !important; }
  .mt-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5 {
    margin-left: 3rem !important; }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .p-lg-0 {
    padding: 0 0 !important; }
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0 {
    padding-left: 0 !important; }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1 {
    padding-left: 0.25rem !important; }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2 {
    padding-left: 0.5rem !important; }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem 1rem !important; }
  .pt-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3 {
    padding-left: 1rem !important; }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4 {
    padding-left: 1.5rem !important; }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem 3rem !important; }
  .pt-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5 {
    padding-left: 3rem !important; }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto {
    margin-left: auto !important; }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 0 !important; }
  .mt-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0 {
    margin-left: 0 !important; }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1 {
    margin-left: 0.25rem !important; }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2 {
    margin-left: 0.5rem !important; }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem 1rem !important; }
  .mt-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3 {
    margin-left: 1rem !important; }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4 {
    margin-left: 1.5rem !important; }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem 3rem !important; }
  .mt-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5 {
    margin-left: 3rem !important; }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .p-xl-0 {
    padding: 0 0 !important; }
  .pt-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0 {
    padding-left: 0 !important; }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1 {
    padding-left: 0.25rem !important; }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2 {
    padding-left: 0.5rem !important; }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem 1rem !important; }
  .pt-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3 {
    padding-left: 1rem !important; }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4 {
    padding-left: 1.5rem !important; }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem 3rem !important; }
  .pt-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5 {
    padding-left: 3rem !important; }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto {
    margin-left: auto !important; }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.text-white {
  color: #fff !important; }

.text-muted {
  color: #636c72 !important; }

a.text-muted:focus, a.text-muted:hover {
  color: #4b5257 !important; }

.text-primary {
  color: #0275d8 !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #025aa5 !important; }

.text-success {
  color: #5cb85c !important; }

a.text-success:focus, a.text-success:hover {
  color: #449d44 !important; }

.text-info {
  color: #5bc0de !important; }

a.text-info:focus, a.text-info:hover {
  color: #31b0d5 !important; }

.text-warning {
  color: #f0ad4e !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f !important; }

.text-danger {
  color: #d9534f !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c !important; }

.text-gray-dark {
  color: #292b2c !important; }

a.text-gray-dark:focus, a.text-gray-dark:hover {
  color: #101112 !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.invisible {
  visibility: hidden !important; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.2857142857em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.8571428571em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  -o-animation: fa-spin 2s infinite linear;
     animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  -o-animation: fa-spin 1s infinite steps(8);
     animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@-o-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
     transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
     transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
     transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
     transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -o-transform: scale(1, -1);
     transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

.fa-envelope-open:before {
  content: ""; }

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

.fa-address-book:before {
  content: ""; }

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

.fa-free-code-camp:before {
  content: ""; }

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .screen-reader-text:active, .sr-only-focusable:focus, .screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

img {
  width: 100%;
  height: auto; }

body {
  background: #fff;
  color: #666666;
  font-family: aktiv-grotesk, sans-serif;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased; }

body.noscroll {
  overflow: hidden;
  position: fixed; }

#site-wrapper {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5, h6 {
  color: #666666; }

h3 {
  line-height: 30px; }

input[type=text], select, input[type=email], textarea, input[type=password] {
  border: none !important;
  width: 100%;
  color: #5e3190;
  background: #ffffff;
  color: #5E3190;
  outline: none;
  /* Firefox 19+ */
  /* Firefox 18- */ }
  input[type=text]:focus, select:focus, input[type=email]:focus, textarea:focus, input[type=password]:focus {
    border: none !important;
    box-shadow: inset 0px 0px 0px 1px #5e3190 !important;
    color: #5E3190; }
  input[type=text].error, select.error, input[type=email].error, textarea.error, input[type=password].error {
    border: 0.25px solid #EC008B; }
  input[type=text]::-webkit-input-placeholder, select::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder {
    color: #666666; }
  input[type=text]::-moz-placeholder, select::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder, input[type=password]::-moz-placeholder {
    color: #666666; }
  input[type=text]:-moz-placeholder, select:-moz-placeholder, input[type=email]:-moz-placeholder, textarea:-moz-placeholder, input[type=password]:-moz-placeholder {
    color: #666666; }
  input[type=text]:-ms-input-placeholder, select:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type=password]:-ms-input-placeholder {
    color: #666666; }

input[type=submit]:hover {
  opacity: 0.6; }

select option:first-child {
  color: #666666; }

.img-holder:before {
  content: "";
  display: block;
  height: 7px;
  margin-bottom: 6px;
  background: #5e3190;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s; }

.img-holder img {
  width: 100%; }

.aqua-color .img-holder:before {
  background: #1fbab0; }

.aqua-color input[type=text], .aqua-color select, .aqua-color input[type=email], .aqua-color textarea {
  color: #1fbab0; }
  .aqua-color input[type=text]:focus, .aqua-color select:focus, .aqua-color input[type=email]:focus, .aqua-color textarea:focus {
    border: none !important;
    box-shadow: inset 0px 0px 0px 1px #1fbab0 !important; }

.orange-color .img-holder:before {
  background: #f45c0b; }

.orange-color input[type=text], .orange-color select, .orange-color input[type=email], .orange-color textarea {
  color: #f45c0b; }
  .orange-color input[type=text]:focus, .orange-color select:focus, .orange-color input[type=email]:focus, .orange-color textarea:focus {
    border: none !important;
    box-shadow: inset 0px 0px 0px 1px #f45c0b !important; }

.red-color .img-holder:before {
  background: #ea252b; }

.red-color input[type=text]:focus, .red-color select:focus, .red-color input[type=email]:focus, .red-color textarea:focus {
  outline: 0;
  border: none !important;
  box-shadow: inset 0px 0px 0px 1px #ea252b !important; }

.pink-color .img-holder:before {
  background: #ff80ff; }

.pink-color input[type=text], .pink-color select, .pink-color input[type=email], .pink-color textarea {
  color: #ff80ff; }
  .pink-color input[type=text]:focus, .pink-color select:focus, .pink-color input[type=email]:focus, .pink-color textarea:focus {
    border: none !important;
    box-shadow: inset 0px 0px 0px 1px #ff80ff !important; }

.yellow-color .img-holder:before {
  background: #fdbf56; }

.yellow-color input[type=text], .yellow-color select, .yellow-color input[type=email], .yellow-color textarea {
  color: #fdbf56; }
  .yellow-color input[type=text]:focus, .yellow-color select:focus, .yellow-color input[type=email]:focus, .yellow-color textarea:focus {
    border: none !important;
    box-shadow: inset 0px 0px 0px 1px #fdbf56 !important; }

.copyright-section {
  font-size: 14px; }

header.banner {
  box-shadow: 0 3px 0.3em #666666;
  top: 0; }

h1, h2 {
  font-weight: normal; }

section.article-image {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

section.article-image:hover {
  opacity: 0.6; }

.article-meta .article-location h6 {
  display: inline-block;
  font-size: 18px; }

h1 {
  font-size: 44px; }

h2 {
  font-size: 28px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 20px; }

h7 {
  font-size: 18px; }

.heading-sm {
  font-size: 20px;
  font-weight: 500; }

#successPopup {
  display: none; }

#thankYou {
  position: fixed;
  border-radius: 18px;
  text-align: center;
  z-index: 9999;
  width: 440px;
  background-color: #FFFFFF;
  height: 170px;
  left: 50%;
  top: 50%;
  margin-left: -170px;
  margin-top: -85px; }

#thankYou h3 {
  line-height: 170px;
  border-radius: 40px;
  color: #666666; }

#thankYou h3 span {
  position: absolute;
  top: -66px;
  right: 6px;
  font-size: 36px;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer; }

#overlayForm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  background: #666666;
  opacity: 0.5; }

h1, h2, h3, h4, h5, h6 {
  color: #666666; }

h1, h2 {
  font-weight: normal; }

.heading-std {
  font-size: 28px;
  line-height: 30px;
  font-weight: 500; }

.alert-warning {
  background-color: transparent;
  border-color: transparent;
  color: #666666;
  font-size: 16px; }

#successPopup {
  display: none; }

#thankYou {
  position: fixed;
  border-radius: 37px;
  text-align: center;
  z-index: 9999;
  width: 440px;
  background-color: white;
  height: 170px;
  left: 50%;
  top: 50%;
  margin-left: -170px;
  margin-top: -85px; }

#thankYou h3 {
  line-height: 170px;
  border-radius: 18px;
  color: #5e3190; }

#thankYou h3 span {
  color: #5e3190; }

#thankYou h3 span.closse {
  position: absolute;
  top: -53px;
  right: 15px;
  font-size: 36px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
  cursor: pointer; }

#overlayForm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  background: #666666;
  opacity: 0.5; }

#thankYou h3 span#close {
  font-size: 36px;
  padding: 12px;
  position: absolute;
  border-radius: 100%;
  border: 1px solid;
  top: 22px;
  right: 18px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
  cursor: pointer; }

a:focus {
  text-decoration: none; }

/*Backgrounds*/
.o-bg-std {
  background: #ffffff; }

.o-bg-1 {
  background: #f6f6f6; }

/*Helpers*/
.o-rel {
  position: relative; }

.o-table {
  display: table;
  height: 100%;
  width: 100%; }

.o-table-cell {
  display: table-cell; }

.o-table-vm {
  vertical-align: middle; }

.o-table-vt {
  vertical-align: top; }

.o-cursor {
  cursor: pointer; }

.o-unlist {
  list-style: none;
  padding: 0;
  margin: 0; }

.o-flL {
  float: left; }

.o-flR {
  float: right; }

/*Margin*/
.o-mrg-btm-15px {
  margin-bottom: 15px !important; }

.o-mrg-top-1 {
  margin-top: 80px; }

.o-mrg-top-2 {
  margin-top: 30px !important; }

.o-mrg-btm-1 {
  margin-bottom: 80px !important; }

.o-mrg-btm-2 {
  margin-bottom: 30px !important; }

.o-mrg-right-1 {
  margin-right: 20px; }

/*Padding*/
.o-padding-btm-10px {
  padding-bottom: 10px; }

.o-padding-std {
  padding-top: 50px;
  padding-bottom: 50px; }

.o-padding-top-btm-std {
  padding-top: 50px !important;
  padding-bottom: 80px !important; }

.o-padding-top-btm-1 {
  padding-top: 50px !important;
  padding-bottom: 40px !important; }

.o-padding-top-btm-2 {
  padding-top: 80px !important;
  padding-bottom: 80px !important; }

.o-padding-btm-0 {
  padding-bottom: 30px !important; }

.o-padding-btm-1 {
  padding-bottom: 50px !important; }

.o-padding-top-1 {
  padding-top: 30px !important; }

.no__hover {
  cursor: default;
  pointer-events: none; }

.no__border {
  border: none !important;
  box-shadow: none !important; }

.view-loc-classes {
  display: inline-block;
  cursor: pointer;
  margin: 20px 10px 10px 10px; }

.view-loc-pilates {
  display: inline-block;
  cursor: pointer;
  margin: 20px 10px 10px 10px; }

.view-loc-treatments {
  display: inline-block;
  cursor: pointer;
  margin: 20px 10px 10px 10px; }

.view-loc-workshops {
  display: inline-block;
  cursor: pointer;
  margin: 20px 10px 10px 10px; }

.staffclick {
  cursor: pointer; }

.locationclick {
  cursor: pointer; }

.treatmentclick {
  cursor: pointer; }

.pilatesclick {
  cursor: pointer; }

.col-lg-1_5 {
  width: 11.49995%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  position: relative; }

@media (min-width: 1280px) {
  .col-xxl-3 {
    max-width: 30%; } }

@media (min-width: 1600px) {
  .col-xxl-3 {
    max-width: 25%; } }

@media (min-width: 1280px) {
  .offset-xxl-0_5 {
    margin-left: 1.0833333334%; } }

@media (min-width: 1600px) {
  .offset-xxl-0_5 {
    margin-left: 4.1666666667%; } }

.col-centered {
  float: none;
  margin: 0 auto;
  padding: 0; }

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 22px !important;
  padding-left: 22px !important; }

.col-xs-5ths {
  width: 20%;
  float: left; }

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left; } }

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left; } }

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left; } }

.after-angle-up::after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  speak: none;
  pointer-events: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  padding-right: .4em;
  text-align: center;
  color: #999;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  line-height: 0.1em;
  font-size: 120%;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f107';
  content: '\f106'; }

.after-angle-down::after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  speak: none;
  pointer-events: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  padding-right: .4em;
  text-align: center;
  color: #999;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  line-height: 0.1em;
  font-size: 120%;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f107'; }

.input__selected-purple::after {
  color: #5e3190 !important; }

.input__selected-purple input, .input__selected-purple a, .input__selected-purple select {
  color: #5e3190 !important; }

.defaultText {
  color: #999 !important; }

@media (max-width: 767px) {
  .no-padding-tablet-down {
    padding: 0 !important; } }

.filters_pane__clear-holder {
  margin: 5px 0 0;
  text-align: center; }
  .filters_pane__clear-holder .filters_pane__clear {
    font-size: 13px;
    text-decoration: underline;
    color: #999; }
    .filters_pane__clear-holder .filters_pane__clear:hover {
      color: #5e3190; }

.primary-btn {
  color: #ffffff !important;
  background: #5e3190 !important;
  padding: 2px 20px 2px;
  display: inline-block;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  outline: none;
  border: none;
  white-space: nowrap;
  font-size: 18px;
  text-align: center; }
  .primary-btn:hover, .primary-btn:focus {
    color: #ffffff !important;
    background: rgba(94, 49, 144, 0.6) !important;
    text-decoration: none;
    outline: none; }

.primary-btn.small-btn, .primary-link.small-btn {
  padding: 0 15px 3px; }

.primary-outline-btn {
  color: #5e3190 !important;
  background: transparent;
  padding: 1px 25px;
  font-size: 18px;
  display: inline-block;
  border: 1px solid #5e3190 !important;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  max-width: auto;
  width: auto; }
  .primary-outline-btn:hover {
    color: #ffffff !important;
    border-color: rgba(94, 49, 144, 0.1) !important;
    text-decoration: none;
    outline: none;
    background: rgba(94, 49, 144, 0.6); }

.btn-wider, .btn-long {
  margin-left: 15px;
  margin-right: 15px; }

.btn-wider {
  padding-left: 50px;
  padding-right: 50px; }

.btn-long {
  padding-left: 80px;
  padding-right: 80px; }

.btn-info {
  border: none; }

.btn-smaller {
  width: 160px !important; }

.btn-info, .btn-info.focus, .btn-info:focus, .btn-info:hover {
  background: white;
  color: #666666;
  outline: none; }

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important; }

.btn-info.focus, .btn-info:focus, .btn-info:hover {
  border: 1px solid #5e3190; }

.open > .btn-info.dropdown-toggle {
  background: white;
  border-color: #5e3190; }

.open > .btn-info.dropdown-toggle {
  background: white;
  border-color: #5e3190;
  color: #5e3190; }

.open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: #5e3190;
  color: #5e3190; }

.open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: #5e3190;
  color: #5e3190; }

.show > .btn-info.dropdown-toggle {
  background-color: white;
  background-image: none; }

.show > .btn-info {
  border: 1px solid #5e3190; }

.aqua-color .primary-btn {
  background: #1fbab0 !important; }
  .aqua-color .primary-btn:hover, .aqua-color .primary-btn:focus {
    background: rgba(31, 186, 176, 0.6) !important; }

.aqua-color .primary-outline-btn {
  color: #1fbab0 !important;
  border: 1px solid #1fbab0 !important; }
  .aqua-color .primary-outline-btn:hover, .aqua-color .primary-outline-btn:focus {
    color: rgba(31, 186, 176, 0.6) !important;
    border: 1px solid rgba(31, 186, 176, 0.6) !important;
    text-decoration: none;
    outline: none; }

.aqua-color .btn-info.focus, .aqua-color .btn-info:focus, .aqua-color .btn-info:hover {
  border: 1px solid rgba(31, 186, 176, 0.6); }

.aqua-color .show > .btn-info {
  border: 1px solid rgba(31, 186, 176, 0.6); }

.aqua-color .open > .btn-info.dropdown-toggle {
  border-color: #1fbab0;
  color: #1fbab0; }

.aqua-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(31, 186, 176, 0.6);
  color: #1fbab0; }

.aqua-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(31, 186, 176, 0.6);
  color: #1fbab0; }

.aqua-color .primary-link {
  color: #1fbab0; }

.aqua-color .primary-link:focus, .aqua-color .primary-link:hover {
  color: rgba(31, 186, 176, 0.6); }

.orange-color .primary-btn {
  background: #f45c0b !important; }
  .orange-color .primary-btn:hover, .orange-color .primary-btn:focus {
    background: rgba(244, 92, 11, 0.6) !important; }

.orange-color .primary-outline-btn {
  color: #f45c0b !important;
  border: 1px solid #f45c0b !important; }
  .orange-color .primary-outline-btn:hover, .orange-color .primary-outline-btn:focus {
    color: rgba(244, 92, 11, 0.6) !important;
    border: 1px solid rgba(244, 92, 11, 0.6) !important;
    text-decoration: none;
    outline: none; }

.orange-color .btn-info.focus, .orange-color .btn-info:focus, .orange-color .btn-info:hover {
  border: 1px solid rgba(244, 92, 11, 0.6); }

.orange-color .show > .btn-info {
  border: 1px solid rgba(244, 92, 11, 0.6); }

.orange-color .open > .btn-info.dropdown-toggle {
  border-color: #f45c0b;
  color: #f45c0b; }

.orange-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(244, 92, 11, 0.6);
  color: #f45c0b; }

.orange-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(244, 92, 11, 0.6);
  color: #f45c0b; }

.orange-color .primary-link {
  color: #f45c0b; }

.orange-color .primary-link:focus, .orange-color .primary-link:hover {
  color: rgba(244, 92, 11, 0.6); }

.red-color .primary-btn {
  background: #ea252b !important; }
  .red-color .primary-btn:hover, .red-color .primary-btn:focus {
    background: rgba(234, 37, 43, 0.6) !important; }

.red-color .primary-outline-btn {
  color: #ea252b !important;
  border: 1px solid #ea252b !important; }
  .red-color .primary-outline-btn:hover, .red-color .primary-outline-btn:focus {
    color: rgba(234, 37, 43, 0.6) !important;
    border: 1px solid rgba(234, 37, 43, 0.6) !important;
    text-decoration: none;
    outline: none; }

.red-color .btn-info.focus, .red-color .btn-info:focus, .red-color .btn-info:hover {
  border: 1px solid rgba(234, 37, 43, 0.6); }

.red-color .show > .btn-info {
  border: 1px solid rgba(234, 37, 43, 0.6); }

.red-color .open > .btn-info.dropdown-toggle {
  border-color: #ea252b;
  color: #ea252b; }

.red-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(234, 37, 43, 0.6);
  color: #ea252b; }

.red-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(234, 37, 43, 0.6);
  color: #ea252b; }

.red-color .primary-link {
  color: #ea252b; }

.red-color .primary-link:focus, .red-color .primary-link:hover {
  color: rgba(234, 37, 43, 0.6); }

.pink-color .primary-btn {
  background: #ff80ff !important; }
  .pink-color .primary-btn:hover, .pink-color .primary-btn:focus {
    background: rgba(255, 128, 255, 0.6) !important; }

.pink-color .primary-outline-btn {
  color: #ff80ff !important;
  border: 1px solid #ff80ff !important; }
  .pink-color .primary-outline-btn:hover, .pink-color .primary-outline-btn:focus {
    color: rgba(255, 128, 255, 0.6) !important;
    border: 1px solid rgba(255, 128, 255, 0.6) !important;
    text-decoration: none;
    outline: none; }

.pink-color .btn-info.focus, .pink-color .btn-info:focus, .pink-color .btn-info:hover {
  border: 1px solid rgba(255, 128, 255, 0.6); }

.pink-color .show > .btn-info {
  border: 1px solid rgba(255, 128, 255, 0.6); }

.pink-color .open > .btn-info.dropdown-toggle {
  border-color: #ff80ff;
  color: #ff80ff; }

.pink-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(255, 128, 255, 0.6);
  color: #ff80ff; }

.pink-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(255, 128, 255, 0.6);
  color: #ff80ff; }

.pink-color .primary-link {
  color: #ff80ff; }

.pink-color .primary-link:focus, .pink-color .primary-link:hover {
  color: rgba(255, 128, 255, 0.6); }

.yellow-color .primary-btn {
  background: #fdbf56 !important; }
  .yellow-color .primary-btn:hover, .yellow-color .primary-btn:focus {
    background: rgba(253, 191, 86, 0.6) !important; }

.yellow-color .primary-outline-btn {
  color: #fdbf56 !important;
  border: 1px solid #fdbf56 !important; }
  .yellow-color .primary-outline-btn:hover, .yellow-color .primary-outline-btn:focus {
    color: rgba(253, 191, 86, 0.6) !important;
    border: 1px solid rgba(253, 191, 86, 0.6) !important;
    text-decoration: none;
    outline: none; }

.yellow-color .btn-info.focus, .yellow-color .btn-info:focus, .yellow-color .btn-info:hover {
  border: 1px solid rgba(253, 191, 86, 0.6); }

.yellow-color .show > .btn-info {
  border: 1px solid rgba(253, 191, 86, 0.6); }

.yellow-color .open > .btn-info.dropdown-toggle {
  border-color: #fdbf56;
  color: #fdbf56; }

.yellow-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(253, 191, 86, 0.6);
  color: #fdbf56; }

.yellow-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(253, 191, 86, 0.6);
  color: #fdbf56; }

.yellow-color .primary-link {
  color: #fdbf56; }

.yellow-color .primary-link:focus, .yellow-color .primary-link:hover {
  color: rgba(255, 128, 255, 0.6); }

.b-pink-color .primary-btn {
  background: #ec008b !important; }
  .b-pink-color .primary-btn:hover, .b-pink-color .primary-btn:focus {
    background: rgba(236, 0, 139, 0.6) !important; }

.b-pink-color .primary-outline-btn {
  color: #ec008b !important;
  border: 1px solid #ec008b !important; }
  .b-pink-color .primary-outline-btn:hover, .b-pink-color .primary-outline-btn:focus {
    color: rgba(236, 0, 139, 0.6) !important;
    border: 1px solid rgba(236, 0, 139, 0.6) !important;
    text-decoration: none;
    outline: none; }

.b-pink-color .btn-info.focus, .b-pink-color .btn-info:focus, .b-pink-color .btn-info:hover {
  border: 1px solid rgba(236, 0, 139, 0.6); }

.b-pink-color .show > .btn-info {
  border: 1px solid rgba(236, 0, 139, 0.6); }

.b-pink-color .open > .btn-info.dropdown-toggle {
  border-color: #ec008b;
  color: #ec008b; }

.b-pink-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(236, 0, 139, 0.6);
  color: #ec008b; }

.b-pink-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(236, 0, 139, 0.6);
  color: #ec008b; }

.b-pink-color .primary-link {
  color: #ec008b; }

.b-pink-color .primary-link:focus, .b-pink-color .primary-link:hover {
  color: rgba(236, 0, 139, 0.6); }

.l-purple-color .primary-btn {
  background: #797dbb !important; }
  .l-purple-color .primary-btn:hover, .l-purple-color .primary-btn:focus {
    background: rgba(121, 125, 187, 0.6) !important; }

.l-purple-color .primary-outline-btn {
  color: #797dbb !important;
  border: 1px solid #797dbb !important; }
  .l-purple-color .primary-outline-btn:hover, .l-purple-color .primary-outline-btn:focus {
    color: rgba(121, 125, 187, 0.6) !important;
    border: 1px solid rgba(121, 125, 187, 0.6) !important;
    text-decoration: none;
    outline: none; }

.l-purple-color .btn-info.focus, .l-purple-color .btn-info:focus, .l-purple-color .btn-info:hover {
  border: 1px solid rgba(121, 125, 187, 0.6); }

.l-purple-color .show > .btn-info {
  border: 1px solid rgba(121, 125, 187, 0.6); }

.l-purple-color .open > .btn-info.dropdown-toggle {
  border-color: #797dbb;
  color: #797dbb; }

.l-purple-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(121, 125, 187, 0.6);
  color: #797dbb; }

.l-purple-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(121, 125, 187, 0.6);
  color: #797dbb; }

.l-purple-color .primary-link {
  color: #797dbb; }

.l-purple-color .primary-link:focus, .l-purple-color .primary-link:hover {
  color: rgba(121, 125, 187, 0.6); }

.blue-color .primary-btn {
  background: #1b8de3 !important; }
  .blue-color .primary-btn:hover, .blue-color .primary-btn:focus {
    background: rgba(27, 141, 227, 0.6) !important; }

.blue-color .primary-outline-btn {
  color: #1b8de3 !important;
  border: 1px solid #1b8de3 !important; }
  .blue-color .primary-outline-btn:hover, .blue-color .primary-outline-btn:focus {
    color: rgba(27, 141, 227, 0.6) !important;
    border: 1px solid rgba(27, 141, 227, 0.6) !important;
    text-decoration: none;
    outline: none; }

.blue-color .btn-info.focus, .blue-color .btn-info:focus, .blue-color .btn-info:hover {
  border: 1px solid rgba(27, 141, 227, 0.6); }

.blue-color .show > .btn-info {
  border: 1px solid rgba(27, 141, 227, 0.6); }

.blue-color .open > .btn-info.dropdown-toggle {
  border-color: #1b8de3;
  color: #1b8de3; }

.blue-color .open > .btn-info.dropdown-toggle:focus {
  background: white;
  border-color: rgba(27, 141, 227, 0.6);
  color: #1b8de3; }

.blue-color .open > .btn-info.dropdown-toggle:hover {
  background: white;
  border-color: rgba(27, 141, 227, 0.6);
  color: #1b8de3; }

.blue-color .primary-link {
  color: #1b8de3; }

.blue-color .primary-link:focus, .blue-color .primary-link:hover {
  color: rgba(27, 141, 227, 0.6); }

.o-link-alt {
  color: #666666;
  text-decoration: none;
  border-bottom: 1px solid #666666;
  padding-bottom: 3px;
  line-height: 18px; }
  .o-link-alt:hover, .o-link-alt:active, .o-link-alt:focus {
    color: #666666;
    opacity: 0.6; }

.primary-btn-static {
  color: #ffffff !important;
  background: #5e3190 !important;
  padding: 2px 25px 2px;
  display: inline-block;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: default;
  outline: none;
  border: none;
  white-space: nowrap;
  font-size: 18px;
  text-align: center; }

.primary-link, a {
  color: #5e3190;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }
  .primary-link:hover, a:hover {
    color: rgba(94, 49, 144, 0.6);
    text-decoration: none; }

.o-link-txt {
  padding-bottom: 4px;
  border-bottom: 2px solid #666666; }
  .o-link-txt:hover, .o-link-txt:active, .o-link-txt:focus {
    opacity: 0.6; }

.comment-list ol {
  list-style: none; }

.search-form label {
  font-weight: normal; }

.primary-input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 5px 20px;
  outline: none;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  color: #5e3190; }
  .primary-input:focus {
    border: 1px solid #5e3190; }

#loginEmail, #loginPassword {
  outline: none; }

.section-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 20px; }

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto; }

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto; }

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto; }

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 0.5rem; }
  .alignright {
    float: right;
    margin-left: 0.5rem; } }

@media (max-width: 575px) {
  #wpadminbar #wp-admin-bar-customize > .ab-item,
  #wpadminbar #wp-admin-bar-edit > .ab-item,
  #wpadminbar #wp-admin-bar-my-account > .ab-item,
  #wpadminbar #wp-admin-bar-my-sites > .ab-item,
  #wpadminbar #wp-admin-bar-site-name > .ab-item {
    width: 40px; }
    #wpadminbar #wp-admin-bar-customize > .ab-item:before,
    #wpadminbar #wp-admin-bar-edit > .ab-item:before,
    #wpadminbar #wp-admin-bar-my-account > .ab-item:before,
    #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
    #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
      width: 40px; } }

header.banner {
  position: fixed;
  padding: 10px 0 10px 20px;
  margin-bottom: 10px;
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 999999;
  background-color: white;
  height: 97px; }
  @media (max-width: 991px) {
    header.banner {
      height: 75px;
      top: 0; } }
  @media (max-width: 575px) {
    header.banner {
      padding-left: 0; } }
  header.banner .book-now_mobile {
    display: none; }
  header.banner .brand {
    display: block;
    float: left; }
    @media (max-width: 575px) {
      header.banner .brand {
        width: 50px; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .brand {
    width: 50px; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .brand {
    width: 50px; } }
  header.banner .menus-holder {
    float: left;
    width: calc(100% - 75px); }
    @media (max-width: 575px) {
      header.banner .menus-holder {
        text-align: center;
        width: calc(100% - 50px); } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder {
    text-align: center;
    width: calc(100% - 50px); } }
    header.banner .menus-holder .nav-top {
      text-align: right; }
      @media (max-width: 575px) {
        header.banner .menus-holder .nav-top {
          text-align: left;
          width: calc(100% - 115px);
          float: left;
          padding: 15px 10px; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-top {
    text-align: left;
    width: calc(100% - 145px);
    float: left;
    padding: 15px 10px; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-top {
    text-align: left;
    width: calc(100% - 145px);
    float: left;
    padding: 15px 10px; } }
      header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children {
        position: relative; }
        @media (min-width: 992px) {
          header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children:hover .sub-menu {
            display: block; } }
        header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu {
          border: 0;
          position: absolute;
          top: 100%;
          -webkit-padding-start: 0;
                  padding-inline-start: 0;
          opacity: 1;
          background: white;
          z-index: 999;
          font-size: 85%;
          padding-top: 15px;
          display: none;
          right: 0;
          text-align: left;
          width: 220%; }
          header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu .menu-item {
            display: block;
            padding: 0 15px; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu .menu-item a {
              line-height: 24px;
              font-size: 14px;
              font-weight: normal; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu .menu-item:last-child a {
              display: block;
              border-bottom: 4px solid #5e3190;
              padding-bottom: 10px;
              color: #5e3190; }
      @media (min-width: 768px) {
        header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children:hover .sub-menu {
          display: block; } }
      header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu {
        position: absolute;
        -webkit-padding-start: 0;
                padding-inline-start: 0;
        opacity: 1;
        background: white;
        z-index: 999;
        font-size: 85%;
        padding-top: 15px;
        display: none; }
        header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu .menu-item {
          display: block; }
          header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu .menu-item a {
            line-height: 24px;
            font-size: 14px;
            color: #666666; }
          header.banner .menus-holder .nav-top .menu-top-menu-container .menu-item-has-children .sub-menu .menu-item:last-child a {
            border-bottom: 3px solid #5e3190;
            padding-bottom: 10px; }
      header.banner .menus-holder .nav-top .menu-top-menu-container .nav {
        font-size: 0; }
        header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item {
          border-left: 1px solid #bbbbbb;
          padding: 0 15px; }
          @media (max-width: 575px) {
            header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item {
              padding: 0px 10px;
              border: none; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item {
    padding: 0px 10px;
    border: none; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item {
    padding: 0px 10px;
    border: none; } }
          header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item:first-child {
            border-left: none; }
          header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.search-item a {
            font-size: 0; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.search-item a:before {
              content: "\f002";
              display: inline-block;
              font-family: FontAwesome;
              font-size: 14px;
              line-height: 21px;
              color: #bbbbbb;
              text-rendering: auto;
              -webkit-font-smoothing: antialiased;
              -webkit-transition: 0.4s;
              -o-transition: 0.4s;
              transition: 0.4s; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.search-item a:hover:before {
              color: #5e3190; }
          header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.cart-item a {
            font-size: 0; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.cart-item a:before {
              content: "\f07a";
              display: inline-block;
              font-family: FontAwesome;
              font-size: 14px;
              line-height: 21px;
              color: #bbbbbb;
              text-rendering: auto;
              -webkit-font-smoothing: antialiased;
              -webkit-transition: 0.4s;
              -o-transition: 0.4s;
              transition: 0.4s; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.cart-item a:hover:before {
              color: #5e3190; }
          header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item a {
            font-size: 14px;
            color: #999999;
            -webkit-transition: 0.4s;
            -o-transition: 0.4s;
            transition: 0.4s; }
            header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item a:hover {
              text-decoration: none;
              color: #5e3190; }
    header.banner .menus-holder .nav-primary {
      padding: 12px 0;
      position: relative; }
      @media (max-width: 575px) {
        header.banner .menus-holder .nav-primary {
          width: 115px;
          float: right; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-primary {
    width: 135px;
    float: left; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-primary {
    width: 135px;
    float: left; } }
      header.banner .menus-holder .nav-primary .left-part {
        float: left;
        line-height: 10px;
        margin-right: 10px; }
        header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn {
          color: #ffffff;
          background: #5e3190;
          padding: 5px 20px;
          display: inline-block;
          border: none;
          border-radius: 10px;
          -webkit-transition: .4s;
          -o-transition: .4s;
          transition: .4s;
          cursor: pointer;
          outline: none;
          height: 34px;
          position: relative;
          margin-left: 15px;
          -webkit-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .5s ease-in-out;
          -o-transition: .5s ease-in-out;
          transition: .5s ease-in-out; }
          @media (max-width: 575px) {
            header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn {
              margin-left: 0;
              background: none;
              padding: 0;
              width: 20px;
              height: 24px; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn {
    margin-left: 0;
    background: none;
    padding: 0;
    width: 20px;
    height: 24px; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn {
    margin-left: 0;
    background: none;
    padding: 0;
    width: 20px;
    height: 24px; } }
          header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span {
            display: block;
            position: absolute;
            height: 3px;
            width: 20px;
            background: #ffffff;
            border-radius: 9px;
            opacity: 1;
            left: 10px;
            -webkit-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out; }
            header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(1) {
              top: 9px; }
            header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(2) {
              top: 16px; }
            header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(3) {
              top: 16px; }
            header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(4) {
              top: 23px; }
            @media (max-width: 575px) {
              header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span {
                left: 0;
                background: #bbb; }
                header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(1) {
                  top: 5px; }
                header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(2) {
                  top: 11px; }
                header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(3) {
                  top: 11px; }
                header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(4) {
                  top: 17px; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span {
    left: 0;
    background: #bbb; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(1) {
      top: 5px; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(2) {
      top: 11px; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(3) {
      top: 11px; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(4) {
      top: 17px; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span {
    left: 0;
    background: #bbb; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(1) {
      top: 5px; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(2) {
      top: 11px; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(3) {
      top: 11px; }
    header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn span:nth-child(4) {
      top: 17px; } }
          header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn.open span:nth-child(1) {
            top: 18px;
            width: 0%;
            left: 50%; }
          header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn.open span:nth-child(2) {
            -webkit-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            background: #5e3198; }
          header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            background: #5e3198; }
          header.banner .menus-holder .nav-primary .left-part .primary-nav-mobile-btn.open span:nth-child(4) {
            top: 18px;
            width: 0%;
            left: 50%; }
        header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container #menu-main-menu .menu-item-has-children:hover .sub-menu {
          display: block; }
        header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container #menu-main-menu .menu-item-has-children .sub-menu {
          position: absolute;
          -webkit-padding-start: 0;
                  padding-inline-start: 0;
          padding-left: 25px;
          padding-right: 24px;
          margin-left: -22px;
          padding-top: 15px;
          background: white;
          z-index: 999;
          display: none;
          opacity: 0.97; }
          header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container #menu-main-menu .menu-item-has-children .sub-menu .menu-item {
            display: block; }
            header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container #menu-main-menu .menu-item-has-children .sub-menu .menu-item a {
              text-indent: 10px;
              line-height: 24px;
              font-size: 14px;
              color: #999; }
            header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container #menu-main-menu .menu-item-has-children .sub-menu .menu-item:last-child a {
              border-bottom: 4px solid #5e3190;
              padding-bottom: 10px; }
        @media (max-width: 991px) {
          header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container {
            position: fixed;
            display: none;
            top: 80px;
            z-index: 3;
            background: #ffffff;
            width: 100%;
            box-shadow: 0px 5px 5px 2px #666666; } }
        header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .menu-item {
          display: inline-block;
          padding: 0 15px;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          @media (max-width: 991px) {
            header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .menu-item {
              display: block; }
              header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .menu-item:last-child a {
                border-bottom: none; } }
          header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .menu-item a {
            color: #666666;
            line-height: 34px;
            display: block; }
            header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .menu-item a:hover {
              text-decoration: none;
              color: #5e3190; }
            @media (max-width: 991px) {
              header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .menu-item a {
                border-bottom: 1px solid #666666; } }
      header.banner .menus-holder .nav-primary .right-part {
        float: right;
        margin-right: 13px; }
        @media (max-width: 575px) {
          header.banner .menus-holder .nav-primary .right-part {
            margin-right: 0; } }
        header.banner .menus-holder .nav-primary .right-part .sub-menu {
          display: none; }
        header.banner .menus-holder .nav-primary .right-part .primary-btn {
          position: relative;
          max-width: 130px;
          max-height: 32px;
          text-align: center;
          width: 130px;
          height: 32px;
          padding: 2px 0; }
          header.banner .menus-holder .nav-primary .right-part .primary-btn:hover {
            border: #5e3190;
            background-color: rgba(94, 49, 144, 0.6) !important; }
            header.banner .menus-holder .nav-primary .right-part .primary-btn:hover .sub-menu {
              display: block; }
          @media (max-width: 575px) {
            header.banner .menus-holder .nav-primary .right-part .primary-btn {
              font-size: 13px;
              padding: 1px 0;
              width: 82px;
              height: 28px; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-primary .right-part .primary-btn {
    font-size: 13px;
    padding: 1px 0;
    width: 90px;
    height: 28px; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-primary .right-part .primary-btn {
    font-size: 13px;
    padding: 1px 0;
    width: 90px;
    height: 28px; } }
          header.banner .menus-holder .nav-primary .right-part .primary-btn .sub-menu {
            left: 0;
            position: absolute;
            -webkit-padding-start: 0;
                    padding-inline-start: 0;
            opacity: 1;
            background: white;
            z-index: 999;
            font-size: 85%;
            padding-top: 21px;
            display: none;
            margin-top: 3px;
            padding-bottom: 9px;
            text-align: left;
            padding-left: 10px;
            padding-right: 10px;
            color: #999999;
            font-size: 14px;
            opacity: 0.97; }
            @media (max-width: 575px) {
              header.banner .menus-holder .nav-primary .right-part .primary-btn .sub-menu {
                display: none !important; } }
            header.banner .menus-holder .nav-primary .right-part .primary-btn .sub-menu .menu-item {
              display: block; }
              header.banner .menus-holder .nav-primary .right-part .primary-btn .sub-menu .menu-item a {
                line-height: 24px;
                font-size: 14px;
                color: #999; }
              header.banner .menus-holder .nav-primary .right-part .primary-btn .sub-menu .menu-item:last-child a {
                border-bottom: 3px solid #5e3190;
                padding-bottom: 10px; }
        header.banner .menus-holder .nav-primary .right-part a {
          margin: 0 15px;
          color: #666666; }
          @media (max-width: 575px) {
            header.banner .menus-holder .nav-primary .right-part a:first-child {
              margin: auto;
              font-size: 13px;
              line-height: 26px;
              text-align: center; } }

@media (min-width: 576px) and (max-width: 767px) {
  header.banner .menus-holder .nav-primary .right-part a:first-child {
    margin: auto;
    font-size: 13px;
    line-height: 26px;
    text-align: center; } }

@media (min-width: 768px) and (max-width: 991px) {
  header.banner .menus-holder .nav-primary .right-part a:first-child {
    margin: auto;
    font-size: 13px;
    line-height: 26px;
    text-align: center; } }
          header.banner .menus-holder .nav-primary .right-part a:hover {
            text-decoration: none;
            color: #5e3190; }
  header.banner .mobile-menu-holder {
    position: fixed;
    top: 73px;
    display: none;
    background: #fff;
    z-index: 99999999;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    opacity: 0.97;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; }
    header.banner .mobile-menu-holder .menu-main-menu-container .mobile-nav {
      padding: 20px 0px;
      list-style: none; }
      header.banner .mobile-menu-holder .menu-main-menu-container .mobile-nav .menu-item-has-children > a::before {
        content: "\f067";
        display: inline-block;
        font-family: FontAwesome;
        font-size: 16px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        margin-right: 10px;
        margin-left: -22px; }
      header.banner .mobile-menu-holder .menu-main-menu-container .mobile-nav .menu-item.open a {
        color: #5e3190; }
      header.banner .mobile-menu-holder .menu-main-menu-container .mobile-nav .menu-item a {
        display: block;
        font-size: 22px;
        padding: 5px 0;
        line-height: 28px;
        color: #666666; }
      header.banner .mobile-menu-holder .menu-main-menu-container .mobile-nav .menu-item .sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        background-color: #F5F5F5; }
        header.banner .mobile-menu-holder .menu-main-menu-container .mobile-nav .menu-item .sub-menu .menu-item a {
          font-size: 16px;
          color: #666666; }
  header.banner .search-box-holder {
    position: absolute;
    top: 100%;
    display: none;
    z-index: 3;
    left: 0;
    width: 100%;
    background: #f6f6f6;
    opacity: 0.97; }
    header.banner .search-box-holder .search-box {
      margin: 0 auto;
      margin-top: 27px;
      padding: 0 0 10px;
      position: relative; }
      header.banner .search-box-holder .search-box .close-search-box {
        position: absolute;
        right: 0;
        margin-top: -25px;
        font-size: 150%;
        color: #5e3190; }
      header.banner .search-box-holder .search-box .search-box-title {
        padding: 0 15px;
        font-size: 22px;
        color: #5e3190; }
      header.banner .search-box-holder .search-box .primary-btn {
        border: none; }
  header.banner .book-now-box-holder, header.banner .my-account-box-holder {
    position: fixed;
    top: 73px;
    display: none;
    background: #fff;
    z-index: 1;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.97;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #666666;
    border-top: 1px solid #666666; }
    @media (min-width: 992px) {
      header.banner .book-now-box-holder, header.banner .my-account-box-holder {
        display: none !important; } }
    header.banner .book-now-box-holder .book-now-box, header.banner .book-now-box-holder .my-account-box, header.banner .my-account-box-holder .book-now-box, header.banner .my-account-box-holder .my-account-box {
      padding: 20px 15px;
      position: fixed;
      background: #fff;
      z-index: 1;
      left: 0;
      width: 100%;
      height: 100%; }
      header.banner .book-now-box-holder .book-now-box .close-book-now-box, header.banner .book-now-box-holder .my-account-box .close-book-now-box, header.banner .my-account-box-holder .book-now-box .close-book-now-box, header.banner .my-account-box-holder .my-account-box .close-book-now-box {
        position: absolute;
        right: 15px;
        margin-top: -25px;
        font-size: 150%;
        color: #5e3190; }
      header.banner .book-now-box-holder .book-now-box .book-now-box-title, header.banner .book-now-box-holder .my-account-box .book-now-box-title, header.banner .my-account-box-holder .book-now-box .book-now-box-title, header.banner .my-account-box-holder .my-account-box .book-now-box-title {
        margin-bottom: 10px;
        font-size: 22px;
        color: #5e3190; }
      header.banner .book-now-box-holder .book-now-box .book-now-nav, header.banner .book-now-box-holder .my-account-box .book-now-nav, header.banner .my-account-box-holder .book-now-box .book-now-nav, header.banner .my-account-box-holder .my-account-box .book-now-nav {
        list-style: none;
        padding: 0; }
        header.banner .book-now-box-holder .book-now-box .book-now-nav a, header.banner .book-now-box-holder .my-account-box .book-now-nav a, header.banner .my-account-box-holder .book-now-box .book-now-nav a, header.banner .my-account-box-holder .my-account-box .book-now-nav a {
          font-size: 22px;
          color: #666666;
          padding: 10px 0; }

.close-search-box-furi-furi {
  display: none; }

.mobile-tabs.my-account-light-menu {
  position: fixed;
  top: 80px;
  display: none;
  z-index: 40;
  left: 0;
  width: 100%;
  background: #f6f6f6;
  padding: 30px 50px; }

.mobile-tabs.my-account-light-menu .mobile-menu-list {
  padding-top: 20px; }

.mobile-tabs.my-account-light-menu .mobile-menu-list a {
  width: 100%;
  font-size: 22px; }

@media screen and (max-width: 575px) {
  .close-search-box-furi-furi {
    display: block; }
  form.search-form {
    margin-top: 50px; }
  .search-box .search-form .primary-btn {
    margin-left: 0 !important; } }

.close-mobile-menu-furi,
.primary-btn.close-book-now-furi,
.primary-btn.close-my-account-furi,
.close-search-box-furi-furi,
.close-my-account-light-menu-furi-furi {
  float: right;
  margin-right: 17px;
  border: 1px solid #5e3190;
  border-radius: 10px;
  width: 60px;
  height: 20px;
  font-size: 12px;
  text-align: center;
  color: #5e3190;
  padding: 0; }

.primary-btn.close-mobile-menu-furi,
.primary-btn.close-book-now-furi,
.primary-btn.close-my-account-furi {
  margin-right: 2px !important;
  background: none !important;
  color: #5e3190 !important;
  border: 1px solid #5e3190;
  padding: 2px 25px;
  text-align: center;
  padding: 0; }

@media (max-width: 575px) {
  .search-furi {
    max-width: 85%;
    padding-bottom: 30px; }
    .search-furi .close-search-box-furi-furi {
      margin-right: 0;
      margin-top: -40px; } }

.close-my-account-light-menu-furi-furi {
  margin-right: 0; }

.book-now-box .menu-main-menu-container, .my-account-box .menu-main-menu-container {
  padding-top: 20px; }

.wrap {
  padding-top: 115px; }

body.page-template-login .wrap {
  padding-top: 76px; }

@media (max-width: 991px) {
  body[class*="schedule"] .wrap {
    padding-top: 75px; } }

.menu-right-menu-container .new-to-triyoga {
  padding-top: 5px; }

.header-book-now-button > a {
  color: #ffffff !important;
  font-size: 16px; }

@media screen and (max-width: 1024px) {
  .nav .teachertraining {
    display: none !important; } }

.nav .what-we-offer a:hover {
  color: #5e3190 !important; }

.nav .schedules .menu-item:last-child a {
  border-bottom: 4px solid #F45C0B !important; }

.nav .schedules a:hover {
  color: #F45C0B !important; }

.nav .treatments .menu-item:last-child a {
  border-bottom: 4px solid #1FBAB0 !important; }

.nav .treatments a:hover {
  color: #1FBAB0 !important; }

.nav .workshopsevents .menu-item:last-child a {
  border-bottom: 4px solid #EC008B !important; }

.nav .workshopevents a:hover {
  color: #EC008B !important; }

.nav .teachertraining .menu-item:last-child a {
  border-bottom: 4px solid #EA252B !important; }

.nav .teachertraining a:hover {
  color: #EA252B !important; }

.nav .locations .menu-item:last-child a {
  border-bottom: 4px solid #78B713 !important; }

.nav .locations a:hover {
  color: #78B713 !important; }

.nav .pricing .menu-item:last-child a {
  border-bottom: 4px solid #FDBF56 !important; }

.nav .pricing a:hover {
  color: #FDBF56 !important; }

.nav .blog .menu-item:last-child a {
  border-bottom: 4px solid #1B8DE3 !important; }

.nav .blog a:hover {
  color: #1B8DE3 !important; }

header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item.my-acc-button {
  border: none; }

@media screen and (max-width: 1329px) {
  .nav .teachertraining,
  .nav .workshopevents,
  .nav .treatments {
    display: none !important; } }

@media screen and (max-width: 992px) {
  .header-book-now-button, .my-acc-button .sub-menu {
    display: none !important; }
  .book-now_mobile {
    display: block !important; } }

@media screen and (max-width: 992px) {
  header.banner {
    height: auto; } }

.mobile-nav .menu-item a {
  margin-left: 70px; }

header.banner .menus-holder .nav-primary .right-part .primary-btn .sub-menu .menu-item:hover a {
  color: #5e3190; }

.search-furi .primary-btn.btn-block.ta-center:hover {
  background-color: rgba(94, 49, 144, 0.6) !important; }

@media screen and (max-width: 768px) {
  header.banner .search-box-holder {
    height: auto; }
  header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item a {
    font-size: 13px; } }

@media screen and (max-width: 410px) {
  header.banner .menus-holder .nav-top .menu-top-menu-container .nav > .menu-item {
    padding: 0 7px; } }

header.banner .menus-holder .nav-primary .left-part .menu-main-menu-container .nav .sub-menu .menu-item {
  padding: 0; }

html.mobile-view,
body.mobile-view {
  height: 100%;
  overflow: hidden;
  position: fixed; }

html.touchevents body.user-logged-in .book-now_mobile {
  margin-top: 13px; }

#wpadminbar {
  z-index: 999999999999; }

footer.content-info {
  padding: 40px 0 20px; }
  @media (min-width: 992px) {
    footer.content-info .widgets-area {
      margin-bottom: 50px; } }
  footer.content-info .widgets-area .left-part {
    width: 70%;
    padding: 0 15px; }
    footer.content-info .widgets-area .left-part .footer-widget .widget-title {
      color: #666666;
      margin-bottom: 30px;
      margin-bottom: 10px; }
    footer.content-info .widgets-area .left-part .footer-widget ul {
      list-style: none;
      padding: 0; }
      footer.content-info .widgets-area .left-part .footer-widget ul li a {
        color: #666666;
        line-height: 29px;
        font-size: 14px; }
        footer.content-info .widgets-area .left-part .footer-widget ul li a:hover {
          color: #5e3190; }
    @media (max-width: 991px) {
      footer.content-info .widgets-area .left-part {
        width: 100%; } }
  footer.content-info .widgets-area .right-part {
    width: 30%;
    padding: 0 15px;
    text-align: right; }
    @media (max-width: 991px) {
      footer.content-info .widgets-area .right-part {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important; }
        footer.content-info .widgets-area .right-part .footer-logo {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 40%;
          flex: 0 0 40%;
          max-width: 40%;
          margin-bottom: 0 !important;
          left: 60%;
          position: relative;
          width: 100%;
          text-align: right; }
        footer.content-info .widgets-area .right-part .footer-social {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 60%;
          flex: 0 0 60%;
          max-width: 60%;
          right: 40%;
          position: relative;
          width: 100%;
          text-align: left; }
          footer.content-info .widgets-area .right-part .footer-social a {
            margin-left: 0 !important;
            margin-right: 10px; } }
    footer.content-info .widgets-area .right-part .footer-logo {
      margin-bottom: 40px;
      overflow: hidden; }
      footer.content-info .widgets-area .right-part .footer-logo img {
        max-width: 165px !important; }
    footer.content-info .widgets-area .right-part .footer-social a {
      font-size: 16px;
      display: inline-block;
      color: #5e3190;
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 38px;
      border: 1px solid #5e3190;
      border-radius: 50%;
      margin-left: 10px;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      outline: none; }
      footer.content-info .widgets-area .right-part .footer-social a:hover {
        color: rgba(94, 49, 144, 0.6);
        border: 1px solid rgba(94, 49, 144, 0.6); }
    @media (max-width: 991px) {
      footer.content-info .widgets-area .right-part {
        width: 100%;
        text-align: center; } }
  footer.content-info .copyright-section {
    font-size: 12px; }
    @media (max-width: 991px) {
      footer.content-info .copyright-section {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important; } }
    footer.content-info .copyright-section .left-part {
      padding: 0 15px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
      flex: 0 0 70%;
      max-width: 70%;
      width: 100%; }
      @media (max-width: 991px) {
        footer.content-info .copyright-section .left-part {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 35%;
          flex: 0 0 35%;
          max-width: 50%;
          width: 50%;
          margin-top: -70px; } }
      @media (max-width: 767px) {
        footer.content-info .copyright-section .left-part {
          margin-top: 45px; } }
      @media (max-width: 575px) {
        footer.content-info .copyright-section .left-part {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          max-width: 100%;
          width: 100%; } }
      footer.content-info .copyright-section .left-part .menu-footer-menu-container {
        display: inline-block; }
        footer.content-info .copyright-section .left-part .menu-footer-menu-container .copyright-menu {
          display: inline-block;
          list-style: none;
          padding: 0;
          margin: 0; }
          footer.content-info .copyright-section .left-part .menu-footer-menu-container .copyright-menu li {
            display: inline-block;
            border-right: 1px solid #666666;
            padding-right: 5px;
            line-height: 1; }
            footer.content-info .copyright-section .left-part .menu-footer-menu-container .copyright-menu li a {
              color: #666666; }
      footer.content-info .copyright-section .left-part .copyright {
        display: inline-block;
        color: #C2C2C2; }
    footer.content-info .copyright-section .right-part {
      padding: 0 15px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
      flex: 0 0 30%;
      max-width: 30%;
      width: 100%;
      text-align: right; }
      @media (max-width: 991px) {
        footer.content-info .copyright-section .right-part {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
          flex: 0 0 50%;
          max-width: 50%;
          width: 50%;
          text-align: left; } }
      @media (max-width: 575px) {
        footer.content-info .copyright-section .right-part {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
          flex: 0 0 50%;
          max-width: 50%;
          width: 50%;
          text-align: left; } }
      footer.content-info .copyright-section .right-part a {
        color: #666666; }
    footer.content-info .copyright-section .right-part-s {
      width: 100%;
      padding: 0 15px;
      text-align: right; }
      @media (max-width: 991px) {
        footer.content-info .copyright-section .right-part-s {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: center !important;
          -ms-flex-align: center !important;
          align-items: center !important; }
          footer.content-info .copyright-section .right-part-s .footer-logo {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 40%;
            flex: 0 0 40%;
            max-width: 40%;
            margin-bottom: 0 !important;
            left: 50%;
            position: relative;
            width: 100%;
            text-align: right; }
            footer.content-info .copyright-section .right-part-s .footer-logo img {
              width: auto;
              max-height: 94px; }
          footer.content-info .copyright-section .right-part-s .footer-social {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 60%;
            flex: 0 0 60%;
            max-width: 60%;
            right: 0;
            position: relative;
            width: 100%;
            text-align: left; }
            footer.content-info .copyright-section .right-part-s .footer-social a {
              margin-left: 0 !important;
              margin-right: 0; } }
    @media (max-width: 991px) and (max-width: 575px) {
      footer.content-info .copyright-section .right-part-s .footer-social {
        right: 40%; } }
      @media (max-width: 575px) {
        footer.content-info .copyright-section .right-part-s .footer-logo {
          left: 60%; } }
      footer.content-info .copyright-section .right-part-s .footer-logo {
        margin-bottom: 40px; }
      footer.content-info .copyright-section .right-part-s .footer-social {
        margin-bottom: 0;
        margin-left: 0; }
        footer.content-info .copyright-section .right-part-s .footer-social a {
          font-size: 16px;
          display: inline-block;
          color: #5e3190;
          width: 40px;
          height: 40px;
          text-align: center;
          line-height: 38px;
          border: 1px solid #5e3190;
          border-radius: 50%;
          margin-left: 10px;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s;
          outline: none; }
          footer.content-info .copyright-section .right-part-s .footer-social a:hover {
            color: rgba(94, 49, 144, 0.6);
            border: 1px solid rgba(94, 49, 144, 0.6); }
      @media (max-width: 991px) {
        footer.content-info .copyright-section .right-part-s {
          width: 100%;
          text-align: center; } }

@media (max-width: 575px) {
  .why-iam-here {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .why-iam-here:nth-child(3), .why-iam-here:nth-child(4) {
    margin-top: 20px; } }

@media (min-width: 992px) and (max-width: 1199px) {
  footer.content-info .widgets-area .left-part {
    width: 100%;
    padding-left: 75px; }
  .copyright-section {
    width: 50%;
    margin-left: 47px; }
  footer.content-info .copyright-section .left-part {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
    width: 100%; }
  .footer-social {
    position: absolute;
    bottom: 0;
    right: 32%; }
  .footer-logo {
    position: absolute;
    margin-right: 130px;
    right: 0;
    bottom: -65px; }
  footer.content-info .copyright-section .right-part {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    text-align: left; } }

@media only screen and (min-width: 576px) and (max-width: 690px) {
  .footer-social {
    margin-bottom: -70px !important;
    margin-left: -20px !important; } }

@media (min-width: 1200px) and (max-width: 1599px) {
  .hidden-lg {
    display: none !important; } }

.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block,
.visible-xl {
  display: none !important; }

@media (min-width: 1600px) {
  .container {
    width: 1570px; }
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left; }
  .col-xl-12 {
    width: 100%; }
  .col-xl-11 {
    width: 91.66666667%; }
  .col-xl-10 {
    width: 83.33333333%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-8 {
    width: 66.66666667%; }
  .col-xl-7 {
    width: 58.33333333%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-5 {
    width: 41.66666667%; }
  .col-xl-4 {
    width: 33.33333333%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-2 {
    width: 16.66666667%; }
  .col-xl-1 {
    width: 8.33333333%; }
  .col-xl-pull-12 {
    right: 100%; }
  .col-xl-pull-11 {
    right: 91.66666667%; }
  .col-xl-pull-10 {
    right: 83.33333333%; }
  .col-xl-pull-9 {
    right: 75%; }
  .col-xl-pull-8 {
    right: 66.66666667%; }
  .col-xl-pull-7 {
    right: 58.33333333%; }
  .col-xl-pull-6 {
    right: 50%; }
  .col-xl-pull-5 {
    right: 41.66666667%; }
  .col-xl-pull-4 {
    right: 33.33333333%; }
  .col-xl-pull-3 {
    right: 25%; }
  .col-xl-pull-2 {
    right: 16.66666667%; }
  .col-xl-pull-1 {
    right: 8.33333333%; }
  .col-xl-pull-0 {
    right: auto; }
  .col-xl-push-12 {
    left: 100%; }
  .col-xl-push-11 {
    left: 91.66666667%; }
  .col-xl-push-10 {
    left: 83.33333333%; }
  .col-xl-push-9 {
    left: 75%; }
  .col-xl-push-8 {
    left: 66.66666667%; }
  .col-xl-push-7 {
    left: 58.33333333%; }
  .col-xl-push-6 {
    left: 50%; }
  .col-xl-push-5 {
    left: 41.66666667%; }
  .col-xl-push-4 {
    left: 33.33333333%; }
  .col-xl-push-3 {
    left: 25%; }
  .col-xl-push-2 {
    left: 16.66666667%; }
  .col-xl-push-1 {
    left: 8.33333333%; }
  .col-xl-push-0 {
    left: auto; }
  .col-xl-offset-12 {
    margin-left: 100%; }
  .col-xl-offset-11 {
    margin-left: 91.66666667%; }
  .col-xl-offset-10 {
    margin-left: 83.33333333%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-8 {
    margin-left: 66.66666667%; }
  .col-xl-offset-7 {
    margin-left: 58.33333333%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-5 {
    margin-left: 41.66666667%; }
  .col-xl-offset-4 {
    margin-left: 33.33333333%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-2 {
    margin-left: 16.66666667%; }
  .col-xl-offset-1 {
    margin-left: 8.33333333%; }
  .col-xl-offset-0 {
    margin-left: 0; }
  .visible-xl {
    display: block !important; }
  table.visible-xl {
    display: table; }
  tr.visible-xl {
    display: table-row !important; }
  th.visible-xl, td.visible-xl {
    display: table-cell !important; }
  .visible-xl-block {
    display: block !important; }
  .visible-xl-inline {
    display: inline !important; }
  .visible-xl-inline-block {
    display: inline-block !important; }
  .hidden-xl {
    display: none !important; } }

body#tinymce {
  margin: 12px !important; }

.hero-slider-holder {
  margin-bottom: 35px;
  padding: 0 30px; }
  @media (max-width: 575px) {
    .hero-slider-holder {
      padding: 0; } }
  .hero-slider-holder .slide {
    position: relative; }
    .hero-slider-holder .slide .slide-description-holder {
      position: absolute;
      top: 0;
      right: 0;
      padding: 0 25px;
      width: 400px;
      height: 100%;
      background: rgba(232, 233, 235, 0.8); }
      @media (max-width: 991px) {
        .hero-slider-holder .slide .slide-description-holder {
          width: calc(100% - 30px);
          position: relative;
          margin: 0 auto;
          margin-top: -60px;
          background: #e8e9eb; } }
      @media (max-width: 575px) {
        .hero-slider-holder .slide .slide-description-holder {
          margin-top: -30px; } }
      .hero-slider-holder .slide .slide-description-holder .slide-description {
        border-top: 7px solid #5e3190;
        padding: 30px 0; }
        @media (max-width: 1199px) {
          .hero-slider-holder .slide .slide-description-holder .slide-description {
            padding: 15px 0;
            margin: 0 auto; } }
        .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
          opacity: 0.7; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.primary-color {
          border-color: #5e3190; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.primary-color .slide-title {
            color: #5e3190; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.primary-color .slide-btn {
            background: #5e3190; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.aqua-color {
          border-color: #1fbab0; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.aqua-color .slide-title {
            color: #1fbab0; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.aqua-color .slide-btn {
            background: #1fbab0; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.orange-color {
          border-color: #f45c0b; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.orange-color .slide-title {
            color: #f45c0b; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.orange-color .slide-btn {
            background: #f45c0b; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.red-color {
          border-color: #ea252b; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.red-color .slide-title {
            color: #ea252b; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.red-color .slide-btn {
            background: #ea252b; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.pink-color {
          border-color: #ff80ff; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.pink-color .slide-title {
            color: #ff80ff; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.pink-color .slide-btn {
            background: #ff80ff; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.b-pink-color {
          border-color: #ec008b; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.b-pink-color .slide-title {
            color: #ec008b; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.b-pink-color .slide-btn {
            background: #ec008b; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.yellow-color {
          border-color: #fdbf56; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.yellow-color .slide-title {
            color: #fdbf56; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.yellow-color .slide-btn {
            background: #fdbf56; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.green-color {
          border-color: #78b713; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.green-color .slide-title {
            color: #78b713; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.green-color .slide-btn {
            background: #78b713; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.l-purple-color {
          border-color: #797dbb; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.l-purple-color .slide-title {
            color: #797dbb; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.l-purple-color .slide-btn {
            background: #797dbb; }
        .hero-slider-holder .slide .slide-description-holder .slide-description.blue-color {
          border-color: #1b8de3; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.blue-color .slide-title {
            color: #1b8de3; }
          .hero-slider-holder .slide .slide-description-holder .slide-description.blue-color .slide-btn {
            background: #1b8de3; }
        .hero-slider-holder .slide .slide-description-holder .slide-description .slide-date {
          font-size: 16px;
          color: #606060; }
          @media (max-width: 575px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-date {
              font-size: 14px !important;
              line-height: 1em !important; } }
        .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location {
          font-size: 18px;
          line-height: 22px;
          color: #666666;
          margin-bottom: 43px; }
          @media (max-width: 1199px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location {
              margin-bottom: 25px; } }
          @media (max-width: 575px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location {
              font-size: 14px !important;
              line-height: 1em !important; } }
        .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
          color: #5e3190;
          font-size: 44px;
          line-height: 50px;
          font-weight: 500; }
          @media (max-width: 1199px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
              font-size: 30px;
              line-height: 35px; } }
          @media (max-width: 575px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
              font-size: 20px !important;
              line-height: 1em !important; } }
        .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-title {
          color: #666666;
          font-size: 38px;
          line-height: 44px;
          font-weight: 500; }
          @media (max-width: 1199px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-title {
              font-size: 30px;
              line-height: 35px; } }
          @media (max-width: 575px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-title {
              font-size: 17px !important;
              line-height: 1em !important; } }
        .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-sub-title {
          color: #666666;
          font-size: 30px;
          line-height: 36px;
          font-weight: 500;
          margin-bottom: 50px; }
          @media (max-width: 1199px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-sub-title {
              margin-bottom: 25px;
              font-size: 30px;
              line-height: 35px; } }
          @media (max-width: 575px) {
            .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-sub-title {
              font-size: 14px !important;
              line-height: 1em !important; } }

.whats-on {
  margin-bottom: 45px; }
  .whats-on .wo-item {
    display: block;
    margin-bottom: 30px; }
    @media (max-width: 575px) {
      .whats-on .wo-item {
        margin-bottom: 0; } }
    .whats-on .wo-item:hover {
      opacity: 0.6; }
    .whats-on .wo-item .article-image {
      margin-bottom: 20px; }
      .whats-on .wo-item .article-image:before {
        content: "";
        display: block;
        height: 7px;
        margin-bottom: 7px;
        background: #5e3190;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
    .whats-on .wo-item .article-title {
      color: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .whats-on .wo-item .article-sub-title, .whats-on .wo-item .article-title {
      font-weight: 500;
      line-height: 32px;
      margin-bottom: 0; }
    .whats-on .wo-item .article-sub-title {
      margin-bottom: 20px;
      font-size: 22px; }
    .whats-on .wo-item .article-sub-title, .whats-on .wo-item .article-date, .whats-on .wo-item .article-location {
      color: #666666; }
    .whats-on .wo-item .article-date, .whats-on .wo-item .article-location {
      font-size: 18px;
      line-height: 22px;
      font-weight: normal;
      margin-bottom: 0; }
    .whats-on .wo-item .article-location span {
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .whats-on .wo-item.primary-color .article-image:before {
      background: #5e3190; }
    .whats-on .wo-item.primary-color .article-meta .article-title {
      color: #5e3190; }
      @media (max-width: 575px) {
        .whats-on .wo-item.primary-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.primary-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.primary-color .article-meta .article-date, .whats-on .wo-item.primary-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.aqua-color .article-image:before {
      background: #1fbab0; }
    .whats-on .wo-item.aqua-color .article-meta .article-title {
      color: #1fbab0; }
      @media (max-width: 575px) {
        .whats-on .wo-item.aqua-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.aqua-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.aqua-color .article-meta .article-date, .whats-on .wo-item.aqua-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.orange-color .article-image:before {
      background: #f45c0b; }
    .whats-on .wo-item.orange-color .article-meta .article-title {
      color: #f45c0b; }
      @media (max-width: 575px) {
        .whats-on .wo-item.orange-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.orange-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.orange-color .article-meta .article-date, .whats-on .wo-item.orange-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.red-color .article-image:before {
      background: #ea252b; }
    .whats-on .wo-item.red-color .article-meta .article-title {
      color: #ea252b; }
      @media (max-width: 575px) {
        .whats-on .wo-item.red-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.red-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.red-color .article-meta .article-date, .whats-on .wo-item.red-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.pink-color .article-image:before {
      background: #ff80ff; }
    .whats-on .wo-item.pink-color .article-meta .article-title {
      color: #ff80ff; }
      @media (max-width: 575px) {
        .whats-on .wo-item.pink-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.pink-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.pink-color .article-meta .article-date, .whats-on .wo-item.pink-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.b-pink-color .article-image:before {
      background: #ec008b; }
    .whats-on .wo-item.b-pink-color .article-meta .article-title {
      color: #ec008b; }
      @media (max-width: 575px) {
        .whats-on .wo-item.b-pink-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.b-pink-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.b-pink-color .article-meta .article-date, .whats-on .wo-item.b-pink-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.yellow-color .article-image:before {
      background: #fdbf56; }
    .whats-on .wo-item.yellow-color .article-meta .article-title {
      color: #fdbf56; }
      @media (max-width: 575px) {
        .whats-on .wo-item.yellow-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.yellow-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.yellow-color .article-meta .article-date, .whats-on .wo-item.yellow-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.green-color .article-image:before {
      background: #78b713; }
    .whats-on .wo-item.green-color .article-meta .article-title {
      color: #78b713; }
      @media (max-width: 575px) {
        .whats-on .wo-item.green-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.green-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.green-color .article-meta .article-date, .whats-on .wo-item.green-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.l-purple-color .article-image:before {
      background: #797dbb; }
    .whats-on .wo-item.l-purple-color .article-meta .article-title {
      color: #797dbb; }
      @media (max-width: 575px) {
        .whats-on .wo-item.l-purple-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.l-purple-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.l-purple-color .article-meta .article-date, .whats-on .wo-item.l-purple-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    .whats-on .wo-item.blue-color .article-image:before {
      background: #1b8de3; }
    .whats-on .wo-item.blue-color .article-meta .article-title {
      color: #1b8de3; }
      @media (max-width: 575px) {
        .whats-on .wo-item.blue-color .article-meta .article-title {
          font-size: 17px;
          line-height: 1em; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.blue-color .article-meta .article-sub-title {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 10px; } }
    @media (max-width: 575px) {
      .whats-on .wo-item.blue-color .article-meta .article-date, .whats-on .wo-item.blue-color .article-meta .article-location {
        font-size: 12px;
        line-height: 1em; } }
    @media (max-width: 767px) {
      .whats-on .wo-item.test-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .whats-on .wo-item.test-mobile .article-image {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 50%;
          max-width: 50%;
          padding-right: 5px; }
          .whats-on .wo-item.test-mobile .article-image:before {
            height: 5px; }
        .whats-on .wo-item.test-mobile .article-meta {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 50%;
          max-width: 50%;
          padding-left: 10px; }
          .whats-on .wo-item.test-mobile .article-meta .article-title {
            margin-bottom: 0; } }

.testimonials-slider-holder {
  background: #f6f6f6;
  padding: 50px 0;
  margin-left: -15px;
  margin-right: -15px; }
  .testimonials-slider-holder .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .testimonials-slider-holder .slick-track .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .testimonials-slider-holder .slide-btn-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    display: block; }
  .testimonials-slider-holder .slide-inner-wrapper {
    margin-top: 60px; }
  .testimonials-slider-holder .testimonials-slider .slide {
    text-align: center;
    padding: 0 45px; }
    .testimonials-slider-holder .testimonials-slider .slide .slide-cat {
      color: #666666;
      font-size: 20px;
      font-weight: 500;
      position: absolute;
      top: 0;
      left: 0;
      right: 0; }
      .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
        content: "";
        display: block;
        margin: 16px auto 35px;
        width: 80px;
        height: 4px;
        background: #5e3190; }
    .testimonials-slider-holder .testimonials-slider .slide .slide-title {
      color: #5e3190;
      font-weight: 500;
      font-size: 44px;
      line-height: 50px; }
    .testimonials-slider-holder .testimonials-slider .slide .slide-text {
      color: #666666;
      margin-bottom: 50px;
      text-align: center;
      font-size: 44px;
      line-height: 50px;
      font-weight: 500;
      padding: 0 30px; }
    .testimonials-slider-holder .testimonials-slider .slide .primary-btn {
      padding: 2px 40px; }
  .testimonials-slider-holder .testimonials-slider .slick-prev, .testimonials-slider-holder .testimonials-slider .slick-next {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    margin-top: -18px;
    font-size: 0;
    padding: 0;
    background: none;
    border: 1pt solid #5e3190;
    border-radius: 50%;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 1; }
    .testimonials-slider-holder .testimonials-slider .slick-prev:hover, .testimonials-slider-holder .testimonials-slider .slick-next:hover {
      border: 1pt solid rgba(94, 49, 144, 0.6); }
      .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before, .testimonials-slider-holder .testimonials-slider .slick-next:hover:before {
        color: rgba(94, 49, 144, 0.6); }
    .testimonials-slider-holder .testimonials-slider .slick-prev:before, .testimonials-slider-holder .testimonials-slider .slick-next:before {
      display: block;
      height: 32px;
      width: 32px;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 25px;
      line-height: 29px;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
  .testimonials-slider-holder .testimonials-slider .slick-prev {
    left: -15px; }
    .testimonials-slider-holder .testimonials-slider .slick-prev:before {
      content: "\f104";
      text-align: left;
      padding-left: 9px; }
    @media (max-width: 1199px) {
      .testimonials-slider-holder .testimonials-slider .slick-prev {
        left: 30px; } }
    @media (max-width: 575px) {
      .testimonials-slider-holder .testimonials-slider .slick-prev {
        left: 15px; } }
  .testimonials-slider-holder .testimonials-slider .slick-next {
    right: -15px; }
    .testimonials-slider-holder .testimonials-slider .slick-next:before {
      content: "\f105";
      text-align: right;
      padding-right: 10px; }
    @media (max-width: 1199px) {
      .testimonials-slider-holder .testimonials-slider .slick-next {
        right: 30px; } }
    @media (max-width: 767px) {
      .testimonials-slider-holder .testimonials-slider .slick-next {
        right: 15px; } }
  @media (max-width: 767px) {
    .testimonials-slider-holder .testimonials-slider .slide {
      padding: 0 50px; }
      .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
        margin: 10px auto 15px; }
      .testimonials-slider-holder .testimonials-slider .slide .slide-title {
        font-size: 24px;
        line-height: 30px; }
      .testimonials-slider-holder .testimonials-slider .slide .slide-text {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 46px; } }
  .testimonials-slider-holder .primary-link {
    font-size: 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center; }
  @media (max-width: 767px) {
    .testimonials-slider-holder {
      padding: 20px 0; } }

.latest-articles {
  padding: 48px 0 80px; }
  .latest-articles .right-part .col-md-6 {
    max-width: 49.5%; }
  .latest-articles article {
    margin-bottom: 30px; }
    .latest-articles article:hover .article-image:before {
      background: rgba(94, 49, 144, 0.6); }
    .latest-articles article .article-image {
      margin-bottom: 15px; }
      .latest-articles article .article-image:before {
        content: "";
        display: block;
        height: 7px;
        margin-bottom: 6px;
        background: #5e3190;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
      .latest-articles article .article-image a {
        display: inline-block; }
    .latest-articles article .article-title, .latest-articles article .article-title a {
      color: #666666;
      font-weight: 500;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      line-height: 24px; }
    .latest-articles article .article-date, .latest-articles article .article-location {
      font-size: 14px; }
    .latest-articles article .article-sub-title, .latest-articles article .article-date, .latest-articles article .article-location {
      color: #606060; }
    .latest-articles article .article-location span {
      color: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .latest-articles article:hover .article-location span {
      color: rgba(94, 49, 144, 0.6); }
    .latest-articles article footer {
      height: 48px;
      overflow: hidden;
      margin-top: 13px; }
    .latest-articles article.primary-color .article-image:before {
      background: #5e3190; }
    .latest-articles article.aqua-color .article-image:before {
      background: #1fbab0; }
    .latest-articles article.orange-color .article-image:before {
      background: #f45c0b; }
    .latest-articles article.red-color .article-image:before {
      background: #ea252b; }
    .latest-articles article.pink-color .article-image:before {
      background: #ff80ff; }
    .latest-articles article.b-pink-color .article-image:before {
      background: #ec008b; }
    .latest-articles article.yellow-color .article-image:before {
      background: #fdbf56; }
    .latest-articles article.green-color .article-image:before {
      background: #78b713; }
    .latest-articles article.l-purple-color .article-image:before {
      background: #797dbb; }
    .latest-articles article.blue-color .article-image:before {
      background: #1b8de3; }
    @media (max-width: 767px) {
      .latest-articles article.mobile-view {
        display: block;
        width: 100%;
        max-width: 100%; }
        .latest-articles article.mobile-view .article-image {
          width: 100%;
          display: block;
          max-width: 100%;
          padding-right: 5px;
          float: left;
          margin-bottom: 20px; }
          .latest-articles article.mobile-view .article-image:before {
            width: 50%; }
          .latest-articles article.mobile-view .article-image a img {
            width: 50%; }
        .latest-articles article.mobile-view footer {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 50%;
          max-width: 50%;
          float: right;
          padding-left: 10px;
          padding-top: 0;
          margin-top: 0;
          height: auto; }
          .latest-articles article.mobile-view footer h6 {
            font-size: 17px;
            line-height: 1.1em; } }

.home-third-slider-holder {
  background: #f6f6f6;
  padding: 30px 0; }
  .home-third-slider-holder .home-third-slider .slide {
    text-align: center;
    padding: 0 45px; }
    .home-third-slider-holder .home-third-slider .slide .slide-cat {
      color: #606060;
      font-size: 16px; }
      .home-third-slider-holder .home-third-slider .slide .slide-cat:after {
        content: "";
        display: block;
        margin: 16px auto 35px;
        width: 80px;
        height: 4px;
        background: #5e3190; }
    .home-third-slider-holder .home-third-slider .slide .slide-text {
      color: #666666;
      font-size: 30px;
      margin-bottom: 50px; }
  .home-third-slider-holder .home-third-slider .slick-prev, .home-third-slider-holder .home-third-slider .slick-next {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    font-size: 0;
    padding: 0;
    background: none;
    border: 3px solid #5e3190;
    border-radius: 50%;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 1; }
    .home-third-slider-holder .home-third-slider .slick-prev:hover, .home-third-slider-holder .home-third-slider .slick-next:hover {
      border: 3px solid rgba(94, 49, 144, 0.6); }
      .home-third-slider-holder .home-third-slider .slick-prev:hover:before, .home-third-slider-holder .home-third-slider .slick-next:hover:before {
        color: rgba(94, 49, 144, 0.6); }
    .home-third-slider-holder .home-third-slider .slick-prev:before, .home-third-slider-holder .home-third-slider .slick-next:before {
      display: block;
      height: 36px;
      width: 36px;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 36px;
      line-height: 32px;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
  .home-third-slider-holder .home-third-slider .slick-prev {
    left: -15px; }
    .home-third-slider-holder .home-third-slider .slick-prev:before {
      content: "\f104";
      text-align: left;
      padding-left: 9px; }
  .home-third-slider-holder .home-third-slider .slick-next {
    right: -15px; }
    .home-third-slider-holder .home-third-slider .slick-next:before {
      content: "\f105";
      text-align: right;
      padding-right: 9px; }

.instagram-section {
  padding: 50px 0 0; }

#sb_instagram, #sb_instagram #sbi_images {
  padding-bottom: 0 !important; }

@media (max-width: 640px) {
  #sb_instagram #sbi_images .sbi_item:last-child {
    display: none; } }

.subscribe-section {
  background: #f6f6f6;
  padding: 45px 0;
  margin-top: 80px; }
  @media (max-width: 575px) {
    .subscribe-section {
      padding: 25px 0;
      margin-top: 20px; } }
  .subscribe-section .row .left-part {
    padding: 0 15px;
    width: 40%; }
    .subscribe-section .row .left-part .left-part-title {
      font-size: 29px;
      color: #5e3190;
      font-weight: 500;
      padding-bottom: 15px;
      line-height: 27px; }
      @media (max-width: 575px) {
        .subscribe-section .row .left-part .left-part-title {
          font-size: 14px; } }
    .subscribe-section .row .left-part .left-part-text {
      font-size: 16px;
      color: #666666; }
      @media (max-width: 575px) {
        .subscribe-section .row .left-part .left-part-text {
          font-size: 12px; } }
    @media (max-width: 575px) {
      .subscribe-section .row .left-part {
        width: 100%;
        margin-bottom: 30px;
        text-align: left; } }
  .subscribe-section .row .right-part {
    padding: 0 15px;
    width: 60%; }
    .subscribe-section .row .right-part input[type=text] {
      width: 100%;
      border-radius: 15px;
      margin-bottom: 20px;
      padding: 5px 20px;
      outline: none;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      box-shadow: none; }
    .subscribe-section .row .right-part input[type=submit] {
      width: 100%;
      border: 1px solid transparent;
      margin-bottom: 20px;
      opacity: 1 !important; }
    @media (max-width: 575px) {
      .subscribe-section .row .right-part {
        width: 100%; } }

.location-slider-holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 30px;
  padding-left: 30px; }
  .location-slider-holder .location-slider-description {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    max-width: 400px;
    width: 100%;
    background: #f6f6f6;
    padding: 0 30px 30px; }
    @media (max-width: 1199px) {
      .location-slider-holder .location-slider-description {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
    .location-slider-holder .location-slider-description .slider-description {
      border-top: 7px solid #5e3190;
      padding-top: 25px; }
      .location-slider-holder .location-slider-description .slider-description .slider-title {
        font-size: 30px;
        color: #606060;
        margin-bottom: 25px; }
        .location-slider-holder .location-slider-description .slider-description .slider-title span {
          color: #5e3190; }
      .location-slider-holder .location-slider-description .slider-description .slider-section {
        margin-bottom: 15px; }
        .location-slider-holder .location-slider-description .slider-description .slider-section .slider-section-title {
          color: #666666;
          font-weight: 500; }
        .location-slider-holder .location-slider-description .slider-description .slider-section .slider-section-text {
          color: #666666; }
  .location-slider-holder .top-right-part {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 400px);
    flex: 0 0 calc(100% - 400px);
    max-width: calc(100% - 400px);
    width: 100%;
    overflow: hidden; }
    .location-slider-holder .top-right-part.loading:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.8);
      background-image: url("../wp-content/uploads/2016/12/loading_spinner.gif");
      background-repeat: no-repeat;
      background-position: center;
      z-index: 2; }
    @media (max-width: 1199px) {
      .location-slider-holder .top-right-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
    .location-slider-holder .top-right-part .location-slider {
      overflow: hidden; }
      .location-slider-holder .top-right-part .location-slider.slick-initialized .slide img {
        opacity: 1;
        display: block; }
      .location-slider-holder .top-right-part .location-slider .slide img {
        display: none;
        width: 100%;
        opacity: 0; }
      .location-slider-holder .top-right-part .location-slider .slick-prev, .location-slider-holder .top-right-part .location-slider .slick-next {
        position: absolute;
        top: 50%;
        margin-top: -18px;
        font-size: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.6);
        border: 3px solid #5e3190;
        border-radius: 50%;
        outline: none;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        z-index: 1; }
        .location-slider-holder .top-right-part .location-slider .slick-prev:hover, .location-slider-holder .top-right-part .location-slider .slick-next:hover {
          border: 3px solid rgba(94, 49, 144, 0.6); }
          .location-slider-holder .top-right-part .location-slider .slick-prev:hover:before, .location-slider-holder .top-right-part .location-slider .slick-next:hover:before {
            color: rgba(94, 49, 144, 0.6); }
        .location-slider-holder .top-right-part .location-slider .slick-prev:before, .location-slider-holder .top-right-part .location-slider .slick-next:before {
          display: block;
          height: 36px;
          width: 36px;
          font: normal normal normal 14px/1 FontAwesome;
          font-size: 36px;
          line-height: 32px;
          text-rendering: auto;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          color: #5e3190;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
      .location-slider-holder .top-right-part .location-slider .slick-prev {
        left: 50px; }
        .location-slider-holder .top-right-part .location-slider .slick-prev:before {
          content: "\f104";
          text-align: left;
          padding-left: 9px; }
      .location-slider-holder .top-right-part .location-slider .slick-next {
        right: 50px; }
        .location-slider-holder .top-right-part .location-slider .slick-next:before {
          content: "\f105";
          text-align: right;
          padding-right: 9px; }
    .location-slider-holder .top-right-part #location-map-top {
      width: 100%;
      height: 100%; }
  .location-slider-holder .gallery-and-tour-section {
    padding: 20px 15px 30px;
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%; }
    @media (max-width: 767px) {
      .location-slider-holder .gallery-and-tour-section .primary-outline-btn:first-child {
        margin-bottom: 10px; } }

.location-parking-options {
  display: none;
  position: absolute;
  padding: 15px;
  border: 1px solid #5e3190;
  color: #5e3190;
  background: #f6f6f6;
  margin-top: 10px;
  border-radius: 15px;
  z-index: 999; }
  .location-parking-options .fa-close {
    cursor: pointer;
    border: 1px solid #5e3190;
    float: right;
    margin-right: 5px;
    margin-top: -10px;
    border-radius: 20px;
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    text-align: center; }
  .location-parking-options .parking-option {
    width: 100%;
    padding: 5px 0; }

.slider-description-inner {
  max-width: 285px;
  width: 100%; }
  .slider-description-inner .btn-block {
    display: block; }

#show-location-map {
  margin-top: 30px; }

.btn-wide {
  padding: 2px 50px 2px; }

.location-content-holder .location-content-title {
  font-size: 30px;
  color: #5e3190;
  margin-bottom: 20px; }

.location-content-holder .location-content {
  color: #666666;
  font-size: 18px;
  line-height: 26px; }
  .location-content-holder .location-content p {
    margin-bottom: 30px; }
  .location-content-holder .location-content ul {
    padding-left: 20px; }

.location-content-holder .sidebar-team article {
  margin-bottom: 30px; }
  .location-content-holder .sidebar-team article:before {
    content: "";
    display: block;
    height: 7px;
    margin-bottom: 6px;
    background: #5e3190;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .location-content-holder .sidebar-team article:hover:before {
    background: rgba(94, 49, 144, 0.6); }
  .location-content-holder .sidebar-team article:hover .article-title {
    color: rgba(94, 49, 144, 0.6); }
  .location-content-holder .sidebar-team article .article-image {
    margin-bottom: 15px; }
  .location-content-holder .sidebar-team article .article-title {
    color: #5e3190;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .location-content-holder .sidebar-team article.primary-color:before {
    background: #5e3190; }
  .location-content-holder .sidebar-team article.primary-color .article-title {
    color: #5e3190; }
  .location-content-holder .sidebar-team article.primary-color:hover:before {
    background: rgba(94, 49, 144, 0.6); }
  .location-content-holder .sidebar-team article.primary-color:hover .article-title {
    color: rgba(94, 49, 144, 0.6); }
  .location-content-holder .sidebar-team article.yellow-color:before {
    background: #fdbf56; }
  .location-content-holder .sidebar-team article.yellow-color .article-title {
    color: #fdbf56; }
  .location-content-holder .sidebar-team article.yellow-color:hover:before {
    background: rgba(253, 191, 86, 0.6); }
  .location-content-holder .sidebar-team article.yellow-color:hover .article-title {
    color: rgba(253, 191, 86, 0.6); }
  .location-content-holder .sidebar-team article.pink-color:before {
    background: #ff80ff; }
  .location-content-holder .sidebar-team article.pink-color .article-title {
    color: #ff80ff; }
  .location-content-holder .sidebar-team article.pink-color:hover:before {
    background: rgba(255, 128, 255, 0.6); }
  .location-content-holder .sidebar-team article.pink-color:hover .article-title {
    color: rgba(255, 128, 255, 0.6); }
  .location-content-holder .sidebar-team article.aqua-color:before {
    background: #1fbab0; }
  .location-content-holder .sidebar-team article.aqua-color .article-title {
    color: #1fbab0; }
  .location-content-holder .sidebar-team article.aqua-color:hover:before {
    background: rgba(31, 186, 176, 0.6); }
  .location-content-holder .sidebar-team article.aqua-color:hover .article-title {
    color: rgba(31, 186, 176, 0.6); }
  .location-content-holder .sidebar-team article.orange-color:before {
    background: #f45c0b; }
  .location-content-holder .sidebar-team article.orange-color .article-title {
    color: #f45c0b; }
  .location-content-holder .sidebar-team article.orange-color:hover:before {
    background: rgba(244, 92, 11, 0.6); }
  .location-content-holder .sidebar-team article.orange-color:hover .article-title {
    color: rgba(244, 92, 11, 0.6); }
  .location-content-holder .sidebar-team article.red-color:before {
    background: #ea252b; }
  .location-content-holder .sidebar-team article.red-color .article-title {
    color: #ea252b; }
  .location-content-holder .sidebar-team article.red-color:hover:before {
    background: rgba(234, 37, 43, 0.6); }
  .location-content-holder .sidebar-team article.red-color:hover .article-title {
    color: rgba(234, 37, 43, 0.6); }

.position {
  color: #666666;
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.location-schedule {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px; }
  .location-schedule:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 90px;
    left: 0;
    position: absolute;
    background: #f6f6f6;
    z-index: 1; }
  .location-schedule .container-fluid {
    position: relative;
    z-index: 2; }
    .location-schedule .container-fluid .nav {
      border: none; }
      .location-schedule .container-fluid .nav .nav-item {
        width: calc((100% - 30px) / 4);
        text-align: center; }
        .location-schedule .container-fluid .nav .nav-item + .nav-item {
          margin-left: 10px; }
        .location-schedule .container-fluid .nav .nav-item .nav-link {
          background: #eaeaea;
          color: #606060;
          border: none; }
          .location-schedule .container-fluid .nav .nav-item .nav-link.active {
            background: #f6f6f6;
            color: #5e3190; }
    .location-schedule .container-fluid .tab-content .tab-pane .booking-table {
      padding: 30px 0; }
      .location-schedule .container-fluid .tab-content .tab-pane .booking-table table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px; }
        .location-schedule .container-fluid .tab-content .tab-pane .booking-table table thead tr th {
          padding: 5px 25px;
          background: #5e308f;
          color: #ffffff; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table thead tr th:first-child {
            -moz-border-radius: 25px 0 0 25px;
            -webkit-border-radius: 25px 0 0 25px; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table thead tr th:last-child {
            -moz-border-radius: 0 25px 25px 0;
            -webkit-border-radius: 0 25px 25px 0; }
        .location-schedule .container-fluid .tab-content .tab-pane .booking-table table tbody tr td {
          padding: 10px 25px;
          background: #ffffff;
          color: #5e3190; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table tbody tr td:first-child {
            -moz-border-radius: 25px 0 0 25px;
            -webkit-border-radius: 25px 0 0 25px; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table tbody tr td:last-child {
            -moz-border-radius: 0 25px 25px 0;
            -webkit-border-radius: 0 25px 25px 0; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table tbody tr td.date {
            color: #666666;
            font-weight: 500; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table tbody tr td.time {
            color: #666666; }
          .location-schedule .container-fluid .tab-content .tab-pane .booking-table table tbody tr td.location {
            color: #666666; }

.location-whats-on {
  padding: 30px 0 0; }

.location-map-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #f6f6f6; }
  .location-map-section .left-part {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%; }
    .location-map-section .left-part #location-map {
      width: 100%;
      height: 100%; }
    @media (max-width: 991px) {
      .location-map-section .left-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; }
        .location-map-section .left-part #location-map {
          height: 500px; } }
  .location-map-section .right-part {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    text-align: center;
    padding: 50px; }
    @media (max-width: 991px) {
      .location-map-section .right-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
    .location-map-section .right-part .right-part-cat {
      color: #606060;
      font-size: 16px; }
      .location-map-section .right-part .right-part-cat:after {
        content: "";
        display: block;
        margin: 16px auto 35px;
        width: 80px;
        height: 4px;
        background: #5e3190; }
    .location-map-section .right-part .right-part-title {
      color: #5e3190;
      font-size: 30px; }
    .location-map-section .right-part .right-part-sub-title {
      color: #666666;
      font-size: 30px;
      margin-bottom: 50px; }

.location-team {
  padding: 50px 0 80px; }
  .location-team article {
    margin-bottom: 50px; }
    .location-team article:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .location-team article .article-image {
      margin-bottom: 15px; }
    .location-team article .article-title {
      color: #5e3190;
      font-size: 20px;
      line-height: 24px;
      margin-bottom: 0;
      font-weight: 500;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .location-team article:hover:before {
      background: rgba(94, 49, 144, 0.6); }
    .location-team article:hover .article-title {
      color: rgba(94, 49, 144, 0.6); }
    .location-team article .article-sub-title {
      font-size: 20px; }
    .location-team article.primary-color:before {
      background: #5e3190; }
    .location-team article.primary-color .article-title {
      color: #5e3190; }
    .location-team article.primary-color:hover:before {
      background: rgba(94, 49, 144, 0.6); }
    .location-team article.primary-color:hover .article-title {
      color: rgba(94, 49, 144, 0.6); }
    .location-team article.yellow-color:before {
      background: #fdbf56; }
    .location-team article.yellow-color .article-title {
      color: #fdbf56; }
    .location-team article.yellow-color:hover:before {
      background: rgba(253, 191, 86, 0.6); }
    .location-team article.yellow-color:hover .article-title {
      color: rgba(253, 191, 86, 0.6); }
    .location-team article.pink-color:before {
      background: #ff80ff; }
    .location-team article.pink-color .article-title {
      color: #ff80ff; }
    .location-team article.pink-color:hover:before {
      background: rgba(255, 128, 255, 0.6); }
    .location-team article.pink-color:hover .article-title {
      color: rgba(255, 128, 255, 0.6); }
    .location-team article.aqua-color:before {
      background: #1fbab0; }
    .location-team article.aqua-color .article-title {
      color: #1fbab0; }
    .location-team article.aqua-color:hover:before {
      background: rgba(31, 186, 176, 0.6); }
    .location-team article.aqua-color:hover .article-title {
      color: rgba(31, 186, 176, 0.6); }
    .location-team article.orange-color:before {
      background: #f45c0b; }
    .location-team article.orange-color .article-title {
      color: #f45c0b; }
    .location-team article.orange-color:hover:before {
      background: rgba(244, 92, 11, 0.6); }
    .location-team article.orange-color:hover .article-title {
      color: rgba(244, 92, 11, 0.6); }
    .location-team article.red-color:before {
      background: #ea252b; }
    .location-team article.red-color .article-title {
      color: #ea252b; }
    .location-team article.red-color:hover:before {
      background: rgba(234, 37, 43, 0.6); }
    .location-team article.red-color:hover .article-title {
      color: rgba(234, 37, 43, 0.6); }

.banner-section {
  position: relative;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media (max-width: 575px) {
    .banner-section {
      padding: 0; } }
  .banner-section .banner-left-part {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%; }
    @media (max-width: 1199px) {
      .banner-section .banner-left-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
  .banner-section .banner-right-part {
    position: absolute;
    height: 100%;
    right: 30px;
    top: 0;
    opacity: 0.9;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 425px;
    flex: 0 0 425px;
    max-width: 425px;
    width: 100%;
    background: #f6f6f6;
    padding: 0 30px; }
    @media (max-width: 1199px) {
      .banner-section .banner-right-part {
        position: inherit;
        top: auto;
        right: auto;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
    .banner-section .banner-right-part .banner-right-part-inner {
      padding-bottom: 30px; }
      .banner-section .banner-right-part .banner-right-part-inner:before {
        content: "";
        display: block;
        height: 7px;
        margin-bottom: 35px;
        background: #5e3190; }
        @media (max-width: 575px) {
          .banner-section .banner-right-part .banner-right-part-inner:before {
            margin-bottom: 15px; } }
      .banner-section .banner-right-part .banner-right-part-inner .right-part-title {
        font-size: 44px;
        line-height: 50px;
        font-weight: 500;
        color: #5e3190; }
        @media (max-width: 575px) {
          .banner-section .banner-right-part .banner-right-part-inner .right-part-title {
            font-size: 20px !important;
            line-height: 1em !important; } }
      .banner-section .banner-right-part .banner-right-part-inner .right-part-sub-title {
        font-size: 44px;
        line-height: 50px;
        font-weight: 500;
        color: #666666; }
        @media (max-width: 575px) {
          .banner-section .banner-right-part .banner-right-part-inner .right-part-sub-title {
            font-size: 17px !important;
            line-height: 1em !important; } }
      .banner-section .banner-right-part .banner-right-part-inner .right-part-text {
        margin-top: 50px;
        font-size: 22px;
        line-height: 28px;
        color: #666666; }
        @media (max-width: 575px) {
          .banner-section .banner-right-part .banner-right-part-inner .right-part-text {
            margin-top: 20px;
            font-size: 14px !important;
            line-height: 1em !important; } }

.content-section {
  padding: 50px 0; }
  .content-section h3.story {
    font-size: 28px;
    color: #5e3190;
    margin-bottom: 39px; }
  .content-section h3 {
    font-size: 16px;
    color: #606060;
    margin: 24px 0; }
  .content-section p {
    color: #666666;
    line-height: 24px;
    margin-bottom: 21px; }
    .content-section p.storyP {
      color: #606060; }
    .content-section p span {
      color: #606060; }
  .content-section strong {
    color: #606060; }
  .content-section .image-holder {
    margin-bottom: 50px; }
    .content-section .image-holder:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190; }
  .content-section .image-holder-float-left {
    width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 30px; }
    .content-section .image-holder-float-left:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190; }
    @media (max-width: 575px) {
      .content-section .image-holder-float-left {
        width: 100%;
        margin-right: 0; } }
  .content-section .thanks {
    font-family: Marydale;
    font-size: 25px;
    line-height: 44px; }

.about-us .testimonials-slider-holder .testimonials-slider .slide .slide-text {
  font-size: 32px;
  font-weight: 500;
  line-height: 38px; }

.about-us blockquote {
  font-size: 24px;
  line-height: 27px; }

.about-us h4 {
  font-size: 18px;
  padding-top: 15px; }

.section-wrapper p:last-child {
  margin-bottom: 0;
  padding-bottom: 0; }

.section-wrapper ol,
.section-wrapper ul {
  margin-bottom: 0;
  padding-bottom: 0; }

blockquote {
  margin: -4px 0 45px 50px;
  border-left: 7px solid #5e3190;
  font-size: 24px !important;
  line-height: 27px;
  font-weight: 500;
  padding: 5px 0 5px 20px;
  font-size: 20px;
  color: #666666; }
  .red-color blockquote {
    border-left: 7px solid #ea252b; }
  .pink-color blockquote {
    border-left: 7px solid #ff80ff; }
  .aqua-color blockquote {
    border-left: 7px solid #1fbab0; }
  .orange-color blockquote {
    border-left: 7px solid #f45c0b; }
  .yellow-color blockquote {
    border-left: 7px solid #fdbf56; }

.about-us-testimonial-slider .testimonials-slider-holder .testimonials-slider .slide .slide-cat {
  font-weight: 300; }
  .about-us-testimonial-slider .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
    width: 70px; }

.contact-map-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding-right: 30px;
  padding-left: 30px;
  height: 500px; }
  .contact-map-section .left-part {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 425px;
    flex: 0 0 425px;
    max-width: 425px;
    width: 100%;
    background: #f6f6f6;
    padding: 0 30px 60px; }
    @media (max-width: 991px) {
      .contact-map-section .left-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
        max-width: 300px; } }
    @media (max-width: 767px) {
      .contact-map-section .left-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
    .contact-map-section .left-part .map-section-info {
      border-top: 7px solid #5e3190;
      padding-top: 20px; }
      .contact-map-section .left-part .map-section-info .map-section-info-title {
        font-size: 30px;
        font-weight: 500;
        color: #5e3190;
        margin-bottom: 25px;
        text-transform: lowercase; }
      .contact-map-section .left-part .map-section-info .map-section-email-title {
        font-weight: 500;
        color: #5e3190; }
      .contact-map-section .left-part .map-section-info .map-section-email-link {
        margin-bottom: 25px; }
        .contact-map-section .left-part .map-section-info .map-section-email-link a {
          color: #666666; }
  .contact-map-section .right-part {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 425px);
    flex: 0 0 calc(100% - 425px);
    max-width: calc(100% - 425px);
    width: 100%;
    overflow: hidden; }
    @media (max-width: 991px) {
      .contact-map-section .right-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 300px);
        flex: 0 0 calc(100% - 300px);
        max-width: calc(100% - 300px);
        width: 100%; } }
    @media (max-width: 767px) {
      .contact-map-section .right-part {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 500px; } }

.gm-style-iw {
  top: auto !important;
  bottom: -20px;
  left: 0 !important;
  width: 100% !important;
  padding: 10px 40px 10px 20px;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(178, 178, 178, 0.6);
  border: 1px solid #e5e5e5;
  border-radius: 15px; }
  .gm-style-iw .infowindow-content {
    min-width: 265px; }
    .gm-style-iw .infowindow-content .infowindow-title {
      font-size: 20px;
      color: #5e3190;
      font-weight: 500;
      padding-bottom: 10px;
      font-family: aktiv-grotesk; }
    .gm-style-iw .infowindow-content .infowindow-address {
      color: #666666;
      line-height: 1.5;
      font-size: 16px;
      padding-bottom: 5px;
      font-family: aktiv-grotesk; }
    .gm-style-iw .infowindow-content .infowindow-link {
      margin-bottom: 15px;
      font-size: 14px;
      font-family: aktiv-grotesk; }
      .gm-style-iw .infowindow-content .infowindow-link a {
        color: #666666;
        text-decoration: underline;
        font-size: 16px;
        font-family: aktiv-grotesk; }
        .gm-style-iw .infowindow-content .infowindow-link a:hover {
          text-decoration: none;
          color: #5e3190; }
    .gm-style-iw .infowindow-content .infowindow-btn a {
      font-size: 18px;
      font-family: aktiv-grotesk; }
  .gm-style-iw + div {
    width: 25px !important;
    height: 25px !important;
    right: 10px !important;
    top: 48px !important;
    background: #ffffff url(/wp-content/themes/triyoga/assets/images/close_button@2x.png) center center no-repeat;
    opacity: 1 !important;
    background-size: 100%; }
    .gm-style-iw + div img {
      display: none; }

.max-width-image-block {
  max-width: 527px; }

.location-buttons .schedule-button a,
.location-buttons .more-info-button a {
  width: 160px;
  height: 32px; }

.schedule-button .primary-btn {
  padding: 3px 0; }

.infowindow-link:hover a {
  color: #5e3190; }

.infowindow-btn {
  width: 160px;
  height: 32px; }

@media screen and (max-width: 1024px) {
  .contact-map-section {
    height: 100%; }
  .locations-holder-section .location {
    margin-bottom: 35px; } }

.infowindow-btn .primary-outline-btn:hover {
  opacity: .6;
  background: #763dbf !important;
  border: 1px solid #763dbf !important;
  text-decoration: none;
  outline: none;
  color: #ffffff !important; }

.locations-holder-section .location {
  margin-bottom: 95px; }
  .locations-holder-section .location.coming-soon {
    position: relative; }
    .locations-holder-section .location.coming-soon .location-image-holder:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.6); }
    .locations-holder-section .location.coming-soon .location-title {
      position: absolute;
      width: 100%;
      top: 50%;
      -webkit-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%);
      text-align: center;
      padding: 0 15px;
      margin: 0; }
  .locations-holder-section .location .location-image-holder {
    margin-bottom: 20px; }
  .locations-holder-section .location .location-title {
    color: #5e3190;
    font-size: 25px;
    margin-bottom: 20px; }
  .locations-holder-section .location .location-address {
    color: #666666;
    font-size: 18px; }
  .locations-holder-section .location .location-map {
    margin-bottom: 20px;
    font-size: 18px; }
    .locations-holder-section .location .location-map a {
      color: #666666;
      font-size: 18px;
      text-decoration: underline;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .locations-holder-section .location .location-map a:hover {
        text-decoration: none; }
  .locations-holder-section .location .location-phone {
    color: #666666;
    font-size: 18px; }
  .locations-holder-section .location .location-email {
    margin-bottom: 25px;
    font-size: 18px; }
    .locations-holder-section .location .location-email a {
      color: #666666;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
  @media (max-width: 1199px) {
    .locations-holder-section .location .location-buttons .btn-block {
      margin-bottom: 15px; } }

.location-title > h3 {
  color: #5e3190; }

.location-buttons .primary-outline-btn {
  font-size: 18px;
  padding: 2px 20px;
  width: 160px;
  height: 32px; }

.location-buttons .more-info-button {
  max-width: 160px;
  height: 32px;
  margin-right: 18px;
  padding-bottom: 40px; }

.should-hover.do-hover {
  opacity: .6; }

.location-map a:hover .should-hover {
  opacity: .6; }

.locations-holder-section .location .location-map a:hover {
  color: #5e3190; }

.location-buttons .more-info-button .primary-outline-btn:hover {
  opacity: 0.6;
  background: #5e3190 !important;
  border: 1px solid #5e3190 !important;
  text-decoration: none;
  outline: none;
  color: white !important; }

.location-buttons .schedule-button .primary-btn:hover {
  opacity: 0.6;
  color: #ffffff !important;
  background: #5e3190 !important;
  height: 32px; }

.location-buttons .schedule-button {
  width: 160px;
  max-width: 160px; }

@media screen and (max-width: 1024px) {
  .locations-holder-section .location {
    margin-bottom: 35px; } }

@media (min-width: 576px) and (max-width: 768px) {
  .location-buttons .schedule-button {
    max-width: 100%; }
  .location-buttons .more-info-button {
    max-width: 100%;
    height: 32px;
    padding-bottom: 40px; } }

@media screen and (max-width: 372px) {
  .location-buttons .schedule-button {
    max-width: 100%; }
  .location-buttons .more-info-button {
    max-width: 100%;
    height: 32px;
    padding-bottom: 40px; } }

.should-hover:before {
  content: "";
  display: block;
  height: 7px;
  margin-bottom: 6px;
  background: #5e3198; }

.full-info-block {
  min-height: 60px; }

@media (min-width: 1014px) and (max-width: 1124px) {
  .location-buttons .schedule-button {
    max-width: 100%; } }

#login, #login-overlay, #forgotten-your-password, #registration {
  background-color: #F5F5F5;
  margin: 1% 2%;
  padding: 5% 15% 15% 15%; }
  #login .button1, #login-overlay .button1, #forgotten-your-password .button1, #registration .button1 {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    #login .button1:hover, #login-overlay .button1:hover, #forgotten-your-password .button1:hover, #registration .button1:hover {
      background-color: rgba(94, 49, 144, 0.6) !important; }
  @media (max-width: 575px) {
    #login, #login-overlay, #forgotten-your-password, #registration {
      padding: 5%;
      margin: 0; } }
  #login #loginPage, #login #findPage, #login #registerPage, #login-overlay #loginPage, #login-overlay #findPage, #login-overlay #registerPage, #forgotten-your-password #loginPage, #forgotten-your-password #findPage, #forgotten-your-password #registerPage, #registration #loginPage, #registration #findPage, #registration #registerPage {
    padding-bottom: 20px; }
  #login #loginPage, #login-overlay #loginPage, #forgotten-your-password #loginPage, #registration #loginPage {
    border-right: 1px solid #5e3190;
    padding-right: 6%; }
    @media (max-width: 575px) {
      #login #loginPage, #login-overlay #loginPage, #forgotten-your-password #loginPage, #registration #loginPage {
        border: none; }
        #login #loginPage p.title, #login-overlay #loginPage p.title, #forgotten-your-password #loginPage p.title, #registration #loginPage p.title {
          font-size: 14px;
          margin-top: 0;
          margin-bottom: 10px; }
        #login #loginPage p.under-title, #login-overlay #loginPage p.under-title, #forgotten-your-password #loginPage p.under-title, #registration #loginPage p.under-title {
          font-size: 12px;
          min-height: 0;
          margin-bottom: 10px; } }
  #login #findPage, #login-overlay #findPage, #forgotten-your-password #findPage, #registration #findPage {
    padding-left: 6%; }
    @media (max-width: 575px) {
      #login #findPage, #login-overlay #findPage, #forgotten-your-password #findPage, #registration #findPage {
        border-top: 1px solid #666666; }
        #login #findPage p.title, #login-overlay #findPage p.title, #forgotten-your-password #findPage p.title, #registration #findPage p.title {
          font-size: 14px;
          margin-bottom: 10px; }
        #login #findPage p.under-title, #login-overlay #findPage p.under-title, #forgotten-your-password #findPage p.under-title, #registration #findPage p.under-title {
          font-size: 12px;
          min-height: 0;
          margin-bottom: 10px; } }
  #login #forgotPage, #login-overlay #forgotPage, #forgotten-your-password #forgotPage, #registration #forgotPage {
    margin: 0 auto; }
    @media (max-width: 575px) {
      #login #forgotPage p.title, #login-overlay #forgotPage p.title, #forgotten-your-password #forgotPage p.title, #registration #forgotPage p.title {
        font-size: 14px !important;
        margin-top: 0;
        margin-bottom: 10px; }
      #login #forgotPage p.under-title, #login-overlay #forgotPage p.under-title, #forgotten-your-password #forgotPage p.under-title, #registration #forgotPage p.under-title {
        font-size: 12px !important;
        min-height: 0;
        margin-bottom: 10px; } }
  #login .title, #login-overlay .title, #forgotten-your-password .title, #registration .title {
    margin-top: 10%;
    font-size: 170%;
    color: #5e3190; }
  #login .under-title, #login-overlay .under-title, #forgotten-your-password .under-title, #registration .under-title {
    min-height: 70px;
    line-height: 120%; }
    #login .under-title a, #login-overlay .under-title a, #forgotten-your-password .under-title a, #registration .under-title a {
      font-size: 105%; }
  #login .section-title, #login-overlay .section-title, #forgotten-your-password .section-title, #registration .section-title {
    width: 100%;
    font-size: 110%;
    margin-bottom: 10px; }
  #login p, #login-overlay p, #forgotten-your-password p, #registration p {
    font-size: 80%;
    color: #9C9C9C; }
  #login .terms, #login-overlay .terms, #forgotten-your-password .terms, #registration .terms {
    clear: both;
    min-height: 100px;
    padding-top: 20px;
    color: #9C9C9C;
    font-size: 1rem; }
    @media (max-width: 575px) {
      #login .terms, #login-overlay .terms, #forgotten-your-password .terms, #registration .terms {
        font-size: 12px; } }
  #login .or, #login-overlay .or, #forgotten-your-password .or, #registration .or {
    text-align: center; }
  #login .link1, #login-overlay .link1, #forgotten-your-password .link1, #registration .link1 {
    margin-top: 20px; }
    #login .link1 a, #login-overlay .link1 a, #forgotten-your-password .link1 a, #registration .link1 a {
      color: #9C9C9C;
      font-size: 105%;
      text-decoration: underline; }
  #login input, #login .button1, #login textarea, #login select, #login-overlay input, #login-overlay .button1, #login-overlay textarea, #login-overlay select, #forgotten-your-password input, #forgotten-your-password .button1, #forgotten-your-password textarea, #forgotten-your-password select, #registration input, #registration .button1, #registration textarea, #registration select {
    width: 100%;
    padding: 3px;
    border-radius: 15px;
    border: none;
    margin: 10px 0; }
  #login select, #login-overlay select, #forgotten-your-password select, #registration select {
    background: white;
    text-align: left;
    color: #666666;
    text-indent: 1%; }
  #login input, #login-overlay input, #forgotten-your-password input, #registration input {
    text-indent: 5%; }
  #login input[type=checkbox], #login-overlay input[type=checkbox], #forgotten-your-password input[type=checkbox], #registration input[type=checkbox] {
    width: auto !important;
    margin: 0 1% !important; }
    @media (max-width: 575px) {
      #login input[type=checkbox], #login-overlay input[type=checkbox], #forgotten-your-password input[type=checkbox], #registration input[type=checkbox] {
        margin: 2% 1% !important; } }
  #login p, #login-overlay p, #forgotten-your-password p, #registration p {
    margin: 0; }
  #login .button1, #login-overlay .button1, #forgotten-your-password .button1, #registration .button1 {
    background-color: #5e3190;
    color: white;
    text-align: center;
    cursor: pointer; }

#registration .title {
  margin-top: 0; }

#registration .section-title {
  margin-top: 5%;
  float: left;
  padding-left: 1%; }

@media (max-width: 575px) {
  #registration p.title {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px; }
  #registration p.under-title {
    font-size: 12px;
    min-height: 0;
    margin-bottom: 10px; }
  #registration .section-title {
    font-size: 14px; } }

#registration #registerPage #regGenderContainer, #registration #registerPage #regReferredByContainer, #registration #registerPage #regCountryContainer, #registration #registerPage #regPreferredLocationContainer {
  display: inline-block;
  width: 49%;
  padding: 0; }
  #registration #registerPage #regGenderContainer::after, #registration #registerPage #regReferredByContainer::after, #registration #registerPage #regCountryContainer::after, #registration #registerPage #regPreferredLocationContainer::after {
    position: absolute;
    top: 20px;
    right: 2px; }
  @media (max-width: 991px) {
    #registration #registerPage #regGenderContainer, #registration #registerPage #regReferredByContainer, #registration #registerPage #regCountryContainer, #registration #registerPage #regPreferredLocationContainer {
      width: 100%; } }
  #registration #registerPage #regGenderContainer select, #registration #registerPage #regReferredByContainer select, #registration #registerPage #regCountryContainer select, #registration #registerPage #regPreferredLocationContainer select {
    width: 100%;
    padding-left: 25px; }

#registration #registerPage select {
  padding-left: 20px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important; }

#registration #registerPage #regPreferredLocationContainer, #registration #registerPage #regCountryContainer {
  padding-left: 1%; }

@media (max-width: 991px) {
  #registration #registerPage #regPreferredLocationContainer {
    padding-left: 0; } }

#registration #registerPage > input, #registration #registerPage .under-password-field, #registration #registerPage select {
  box-shadow: none;
  outline: none;
  width: 48%;
  margin: 1%;
  float: left; }
  @media (max-width: 575px) {
    #registration #registerPage > input, #registration #registerPage .under-password-field, #registration #registerPage select {
      width: 100%;
      margin: 2% 0; } }

#registration #registerPage > #regDOB {
  width: 34%; }
  @media (max-width: 575px) {
    #registration #registerPage > #regDOB {
      width: 68%; } }

#registration #registerPage > #regDate, #registration #registerPage #regMonth, #registration #registerPage #regYear {
  width: 10%;
  text-indent: 20%; }
  @media (max-width: 575px) {
    #registration #registerPage > #regDate, #registration #registerPage #regMonth, #registration #registerPage #regYear {
      width: 21%;
      margin-right: 1%;
      text-indent: 20%;
      font-size: 12px;
      line-height: 2.3em; } }

#registration .under-password-field {
  padding: 0 15px;
  color: #5e3190; }

#registration .date-of-birth {
  width: 12%;
  float: left;
  margin: 1%;
  padding-left: 1%;
  padding-top: 0.5%; }
  @media (max-width: 575px) {
    #registration .date-of-birth {
      width: 30%;
      padding-top: 2.5%;
      font-size: 12px; } }

#registration .button1 {
  margin: 0 auto;
  margin-top: 5%; }

.login .page-header, .forgotten-your-password .page-header, .registration .page-header {
  display: none; }

.login-lightbox-background, .lightbox-book-now {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 998;
  top: 98px; }
  @media (max-width: 991px) {
    .login-lightbox-background, .lightbox-book-now {
      top: 75px; } }

.login-lightbox, .book-lightbox {
  padding: 10px 30px;
  border-radius: 15px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 30px auto;
  width: 80%;
  max-width: 1100px;
  max-height: 750px;
  background-color: #F5F5F5;
  z-index: 999; }
  @media (max-width: 991px) {
    .login-lightbox, .book-lightbox {
      padding: 0;
      top: 30px;
      margin: 0 auto;
      width: 97%; } }
  @media (max-width: 767px) {
    .login-lightbox, .book-lightbox {
      top: 0;
      margin: 0 !important;
      width: 100% !important;
      border-radius: 0;
      height: 100%;
      background: white;
      padding: 20px 0 0 0; } }
  .login-lightbox.drop_in-dialog, .book-lightbox.drop_in-dialog {
    background: white; }
  .login-lightbox .show-buttons, .book-lightbox .show-buttons {
    display: none;
    padding: 5px;
    margin-top: 10%;
    font-size: 120%;
    text-decoration: underline;
    color: #5e3190;
    text-align: center; }
    @media (max-width: 767px) {
      .login-lightbox .show-buttons, .book-lightbox .show-buttons {
        display: block; } }
  .login-lightbox #login, .book-lightbox #login {
    padding: 5%; }
  .login-lightbox #login-overlay, .book-lightbox #login-overlay {
    padding: 5%; }
  .login-lightbox #bookNow, .book-lightbox #bookNow {
    padding: 2% 0; }
    @media (max-width: 991px) {
      .login-lightbox #bookNow, .book-lightbox #bookNow {
        padding: 2% 1%; } }
    @media (max-width: 767px) {
      .login-lightbox #bookNow, .book-lightbox #bookNow {
        padding: 0; } }
    @media (max-width: 767px) {
      .login-lightbox #bookNow .container-fluid, .book-lightbox #bookNow .container-fluid {
        padding: 0 15px; } }
    .login-lightbox #bookNow .container-fluid > div.col-md-12:nth-child(2), .book-lightbox #bookNow .container-fluid > div.col-md-12:nth-child(2) {
      padding: 0; }
    @media (max-width: 767px) {
      .login-lightbox #bookNow .container-fluid .t-body.inner__pane, .book-lightbox #bookNow .container-fluid .t-body.inner__pane {
        padding-left: 0;
        padding-top: 5px; } }
    @media (max-width: 767px) {
      .login-lightbox #bookNow .container-fluid .t-body.inner__pane .title, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .title {
        margin-bottom: 20px; } }
    @media (max-width: 767px) {
      .login-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name {
        margin-bottom: 15px; } }
    .login-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .name, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .name {
      font-size: 14px; }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .name, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .name {
          display: inline-block;
          width: 100%;
          line-height: 1em;
          font-size: 12px; } }
    .login-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .description, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .description {
      font-size: 14px;
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .description, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .row__item-name .description {
          display: inline-block;
          line-height: 1em;
          font-size: 12px;
          width: 100%;
          vertical-align: top;
          margin-left: 0; } }
    .login-lightbox #bookNow .container-fluid .t-body.inner__pane .inner__scroll-pane, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .inner__scroll-pane {
      max-height: 300px;
      overflow-y: scroll;
      margin-top: 5px; }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .container-fluid .t-body.inner__pane .inner__scroll-pane, .book-lightbox #bookNow .container-fluid .t-body.inner__pane .inner__scroll-pane {
          max-height: 32vh;
          overflow-x: hidden !important; } }
    .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-name-description, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-name-description {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 60%;
              flex: 0 0 60%; }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-name-description, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-name-description {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 100%;
                  flex: 0 0 100%;
          margin-bottom: 5px; }
          .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-name-description .name, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-name-description .name {
            max-width: 90%; } }
    .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button {
      text-align: right;
      font-size: 16px;
      width: 100px; }
      .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button div, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button div {
        font-size: 16px; }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button {
          font-size: 13px;
          margin-right: 10px;
          text-align: left; }
          .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button div, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button div {
            font-size: 13px;
            padding: 6px 5px 7px 5px;
            float: right;
            line-height: 13px; }
          .login-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button span, .book-lightbox #bookNow .container-fluid .t-body .col.inner__col-price-button span {
            float: left;
            padding-top: 4px; } }
    .login-lightbox #bookNow .container-fluid .t-body .col .name, .book-lightbox #bookNow .container-fluid .t-body .col .name {
      color: #606060;
      font-size: 90%;
      font-weight: bold;
      padding-bottom: 10px; }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .container-fluid .t-body .col .name, .book-lightbox #bookNow .container-fluid .t-body .col .name {
          font-size: 13px;
          line-height: 1em; } }
      .login-lightbox #bookNow .container-fluid .t-body .col .name .show__more, .book-lightbox #bookNow .container-fluid .t-body .col .name .show__more {
        display: inline-block;
        z-index: 999;
        cursor: pointer;
        font-size: 12px;
        line-height: 18px;
        border: 1px solid;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        padding-left: 7px;
        margin-left: 10px;
        vertical-align: text-bottom; }
        @media (max-width: 767px) {
          .login-lightbox #bookNow .container-fluid .t-body .col .name .show__more, .book-lightbox #bookNow .container-fluid .t-body .col .name .show__more {
            width: 20px;
            height: 20px;
            border-width: 2px;
            font-size: 12px;
            padding: 0px 0 0 6px;
            top: 8px;
            right: 0px;
            z-index: 999; } }
    .login-lightbox #bookNow .update-cart, .book-lightbox #bookNow .update-cart {
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        .login-lightbox #bookNow .update-cart, .book-lightbox #bookNow .update-cart {
          padding-right: 25px; } }
      .login-lightbox #bookNow .update-cart #bookMore, .book-lightbox #bookNow .update-cart #bookMore {
        font-size: 16px;
        float: right; }
        @media (max-width: 991px) {
          .login-lightbox #bookNow .update-cart #bookMore, .book-lightbox #bookNow .update-cart #bookMore {
            font-size: 14px; } }
        @media (max-width: 767px) {
          .login-lightbox #bookNow .update-cart #bookMore, .book-lightbox #bookNow .update-cart #bookMore {
            width: 100%;
            text-align: center; } }
    @media (min-width: 768px) {
      .login-lightbox #bookNow .checkout, .book-lightbox #bookNow .checkout {
        padding-right: 0;
        margin-right: 0; } }
    .login-lightbox #bookNow .checkout .gocheckout, .book-lightbox #bookNow .checkout .gocheckout {
      font-size: 16px !important;
      line-height: 28px; }
      @media (min-width: 768px) {
        .login-lightbox #bookNow .checkout .gocheckout, .book-lightbox #bookNow .checkout .gocheckout {
          margin-left: 30px;
          margin: 0;
          float: right;
          margin-right: 55px;
          width: 140px; } }
      @media (max-width: 991px) {
        .login-lightbox #bookNow .checkout .gocheckout, .book-lightbox #bookNow .checkout .gocheckout {
          font-size: 14px !important; } }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .checkout .gocheckout, .book-lightbox #bookNow .checkout .gocheckout {
          width: 100%; } }
    .login-lightbox #bookNow .checkout .gobookings, .book-lightbox #bookNow .checkout .gobookings {
      font-size: 16px !important;
      line-height: 28px;
      min-width: 200px; }
      @media (min-width: 768px) {
        .login-lightbox #bookNow .checkout .gobookings, .book-lightbox #bookNow .checkout .gobookings {
          margin-left: -40px; } }
      @media (max-width: 991px) {
        .login-lightbox #bookNow .checkout .gobookings, .book-lightbox #bookNow .checkout .gobookings {
          font-size: 14px !important; } }
      @media (max-width: 767px) {
        .login-lightbox #bookNow .checkout .gobookings, .book-lightbox #bookNow .checkout .gobookings {
          width: 100%; } }
  .login-lightbox .close-button, .book-lightbox .close-button {
    position: absolute;
    right: 50px;
    top: 24px;
    font-size: 25px;
    color: #5e3190;
    cursor: pointer;
    z-index: 2;
    line-height: 20px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    @media (max-width: 767px) {
      .login-lightbox .close-button, .book-lightbox .close-button {
        top: 14px;
        right: 20px; } }
  .login-lightbox .title, .book-lightbox .title {
    font-size: 27px;
    color: #5e3190; }
  .login-lightbox .description, .book-lightbox .description {
    font-size: 90%;
    color: #666666;
    padding-bottom: 10px; }
    @media (max-width: 767px) {
      .login-lightbox .description, .book-lightbox .description {
        font-size: 12px;
        line-height: 1em; } }
  .login-lightbox .this-but, .book-lightbox .this-but {
    color: #5e3190;
    font-size: 115%;
    cursor: pointer; }
  .login-lightbox .t-head, .book-lightbox .t-head {
    font-size: 90% !important; }
    @media (max-width: 767px) {
      .login-lightbox .t-head, .book-lightbox .t-head {
        padding-bottom: 0; } }
    .login-lightbox .t-head div, .book-lightbox .t-head div {
      font-size: 104%;
      color: #9C9C9C;
      font-weight: bold; }
      @media (max-width: 767px) {
        .login-lightbox .t-head div.title, .book-lightbox .t-head div.title {
          padding-left: 15px; } }
      @media (max-width: 767px) {
        .login-lightbox .t-head div, .book-lightbox .t-head div {
          padding: 0; } }
  .login-lightbox .t-body, .book-lightbox .t-body {
    padding: 0 15px 15px; }
    .login-lightbox .t-body.inner__t-body, .book-lightbox .t-body.inner__t-body {
      padding: 7px 40px 0 40px;
      margin-bottom: 5px;
      background: #fff;
      border-radius: 15px; }
      @media (max-width: 767px) {
        .login-lightbox .t-body.inner__t-body, .book-lightbox .t-body.inner__t-body {
          padding: 15px 0;
          border-bottom: 1px solid #e5e5e5;
          border-radius: 0; }
          .login-lightbox .t-body.inner__t-body:first-child, .book-lightbox .t-body.inner__t-body:first-child {
            padding-top: 0; } }
  .login-lightbox hr, .book-lightbox hr {
    width: 100%;
    height: 1px; }
  @media (max-width: 767px) {
    .login-lightbox .col-sm-2, .book-lightbox .col-sm-2 {
      padding: 0;
      text-align: center; } }
  .login-lightbox-row, .book-lightbox-row {
    padding: 10px 15px;
    background: white;
    border-radius: 25px; }
    .login-lightbox-row .price, .login-lightbox-row .subtotal, .book-lightbox-row .price, .book-lightbox-row .subtotal {
      color: #666666;
      font-size: 110%; }
    .login-lightbox-row > .subtotal, .book-lightbox-row > .subtotal {
      font-weight: bold; }

.ui-datepicker {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px; }
  .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    width: 50%;
    float: left;
    text-align: center; }
    .ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
      background-color: #ebebeb; }
  .ui-datepicker .ui-datepicker-title {
    text-align: center; }

.login-box {
  display: none; }

#log-out {
  display: inline-block;
  cursor: pointer; }
  #log-out:hover {
    color: #cdcdcd; }

body.page-template-registration input#regEmail {
  margin-right: 50% !important; }

body.page-template-registration input#regOffers {
  float: left; }

body.page-template-registration label[for=regOffers] {
  width: 95%;
  float: left;
  margin-top: -4px; }
  @media (max-width: 767px) {
    body.page-template-registration label[for=regOffers] {
      width: 92%;
      margin-top: 1px; } }

.classes-page {
  padding-top: 2%;
  padding-bottom: 2%; }
  .classes-page .title {
    margin-top: 10px;
    font-size: 170%;
    color: #5e3190; }
  .classes-page .under-title {
    font-size: 90%;
    margin-bottom: 26px; }
  .classes-page .class-schedule {
    position: relative;
    z-index: 2; }
    .classes-page .class-schedule .nav {
      margin: 0 25px;
      border: none; }
      .classes-page .class-schedule .nav .nav-item {
        width: calc((100% - 30px) / 4);
        text-align: center; }
        @media (max-width: 991px) {
          .classes-page .class-schedule .nav .nav-item {
            width: calc((100% - 10px) / 2);
            margin-left: 0; }
            .classes-page .class-schedule .nav .nav-item:nth-of-type(2n+2) {
              margin-left: 10px; } }
        @media (max-width: 575px) {
          .classes-page .class-schedule .nav .nav-item {
            width: 100%;
            margin-left: 0 !important; } }
        @media (min-width: 992px) {
          .classes-page .class-schedule .nav .nav-item + .nav-item {
            margin-left: 6px; } }
        .classes-page .class-schedule .nav .nav-item .nav-link {
          background: #eaeaea;
          color: #606060;
          border: none;
          border-radius: 15px 15px 0 0;
          font-size: 14px;
          line-height: 21px;
          padding: 10px; }
          .classes-page .class-schedule .nav .nav-item .nav-link.active {
            background: #f6f6f6;
            color: #5e3190; }
    .classes-page .class-schedule .tab-content .tab-pane {
      padding-bottom: 50px; }
      .classes-page .class-schedule .tab-content .tab-pane .booking-table {
        padding: 30px 0; }
        .classes-page .class-schedule .tab-content .tab-pane .booking-table table {
          width: 100%;
          border-collapse: collapse;
          border-spacing: 0 10px; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table table thead {
            color: #ffffff; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table table thead th {
              background: #5e3190;
              padding: 7px 25px;
              font-size: 15px;
              line-height: 20px;
              -webkit-font-smoothing: antialiased; }
              .classes-page .class-schedule .tab-content .tab-pane .booking-table table thead th:first-child {
                -moz-border-radius: 15px 0 0 15px;
                -webkit-border-radius: 15px 0 0 15px; }
              .classes-page .class-schedule .tab-content .tab-pane .booking-table table thead th:last-child {
                -moz-border-radius: 0 15px 15px 0;
                -webkit-border-radius: 0 15px 15px 0;
                text-align: center; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table table tr.thead td {
            padding: 5px 25px;
            background: #5e308f;
            color: #ffffff;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            font-size: 15px;
            line-height: 29px;
            font-weight: bold; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table table tr.thead td:first-child {
              -moz-border-radius: 15px 0 0 15px;
              -webkit-border-radius: 15px 0 0 15px; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table table tr.thead td:last-child {
              -moz-border-radius: 0 15px 15px 0;
              -webkit-border-radius: 0 15px 15px 0; }
        .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody:before {
          content: "\200C";
          display: block;
          line-height: 0.5em; }
        .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr {
          border-bottom: 2px solid rgba(153, 153, 153, 0.4); }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:first-child td:first-child {
            -moz-border-radius: 15px 0 0 0;
            -webkit-border-radius: 15px 0 0 0; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:first-child td:last-child {
            -moz-border-radius: 0 15px 0 0;
            -webkit-border-radius: 0 15px 0 0; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:last-child {
            border-bottom: none; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:last-child td:first-child {
              -moz-border-radius: 0 0 0 15px;
              -webkit-border-radius: 0 0 0 15px; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:last-child td:last-child {
              -moz-border-radius: 0 0 15px 0;
              -webkit-border-radius: 0 0 15px 0; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:only-child td:first-child {
            -moz-border-radius: 15px 0 0 15px;
            -webkit-border-radius: 15px 0 0 15px; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:only-child td:last-child {
            -moz-border-radius: 0 15px 15px 0;
            -webkit-border-radius: 0 15px 15px 0; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:nth-child(odd) td {
            background: #f5f5f5; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr:nth-child(even) td {
            background: #ebebeb; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td {
            padding: 6px 10px 6px 24px;
            color: #5e3190;
            font-size: 14px; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.date {
              color: #666666;
              font-weight: 500; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.time {
              color: #666666; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td div[class^="button"] {
              font-size: 16px;
              padding: 1px 0; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.no-background {
              background: transparent;
              padding: 35px 25px 15px; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.timeLength select, .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.timeStart select {
              padding: 5px 10px;
              border-radius: 15px;
              box-shadow: none;
              text-align: center;
              color: #666666; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.timeLength {
              color: #666666; }
            .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr td.price {
              color: #666666; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr .classDate {
            color: #666666;
            font-weight: 800; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr .classTime {
            color: #666666; }
          .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody tr .classLocation {
            color: #666666; }
        .classes-page .class-schedule .tab-content .tab-pane .booking-table tbody .load-more td {
          background: transparent; }

.button2, .button3, .button4, .load-more-button, .hide-more-button {
  text-align: center;
  border-radius: 15px;
  padding: 2px 5px;
  font-size: 120%;
  cursor: pointer; }

.button2 {
  background: #5e3190;
  color: white; }

#classes .row .load-more-button, #classes .row .hide-more-button {
  background: #5e3190;
  color: white; }

.class-date-heading-newclasses {
  font-size: 14px;
  color: #5e3190;
  padding: 20px 25px 8px;
  font-weight: bold; }
  .class-date-heading-newclasses:first-child {
    padding-top: 0;
    margin-top: -5px; }

.class-date-heading {
  font-size: 14px;
  padding: 20px 25px 8px;
  font-weight: bold; }
  .class-date-heading:first-child {
    padding-top: 0;
    margin-top: -5px; }

.load-more td {
  background: transparent; }

.button3 {
  background: #5e3190;
  color: white;
  opacity: 0.4; }

.button4 {
  color: #5e3190;
  background: white;
  border: 1px solid #5e3190; }

.highlighted-element {
  color: #5e3190 !important; }

.filters, .filter-part {
  background-color: #F6F6F6;
  height: auto;
  width: 100%;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 15px; }
  .filters div[class^="col-"], .filter-part div[class^="col-"] {
    padding-left: 0; }
    .filters div[class^="col-"]:last-child, .filter-part div[class^="col-"]:last-child {
      padding-right: 0px; }
    .filters div[class^="col-"] .filter-title, .filter-part div[class^="col-"] .filter-title {
      color: #5e3190;
      height: 35px;
      font-size: 18px;
      line-height: 24px;
      width: 100%;
      padding: 0 0 7px; }
    .filters div[class^="col-"] input, .filters div[class^="col-"] select, .filter-part div[class^="col-"] input, .filter-part div[class^="col-"] select {
      -webkit-appearance: none !important;
      -moz-appearance: none !important;
      border: 0;
      background: white;
      color: #9C9C9C;
      border-radius: 15px;
      font-size: 14px;
      line-height: 20px;
      width: 100%;
      text-indent: 5px;
      box-shadow: none;
      padding: 6px;
      cursor: pointer;
      padding-right: 35px; }
    .filters div[class^="col-"] .btn-info, .filter-part div[class^="col-"] .btn-info {
      padding: 1px 5px 1px 15px;
      height: 32px;
      font-size: 15px;
      border-radius: 15px; }
      @media (max-width: 991px) {
        .filters div[class^="col-"] .btn-info, .filter-part div[class^="col-"] .btn-info {
          height: 40px;
          border-radius: 10px; } }
    .filters div[class^="col-"] .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn), .filter-part div[class^="col-"] .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
      width: 100%;
      border-radius: 15px; }
      @media (max-width: 991px) {
        .filters div[class^="col-"] .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn), .filter-part div[class^="col-"] .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
          width: 75%; } }
    .filters div[class^="col-"] .dropdown-toggle .filter-option, .filter-part div[class^="col-"] .dropdown-toggle .filter-option {
      width: 85%; }
    .filters div[class^="col-"] .dropdown-toggle::after, .filter-part div[class^="col-"] .dropdown-toggle::after {
      border: none; }
    .filters div[class^="col-"] input, .filter-part div[class^="col-"] input {
      box-shadow: none;
      outline: none; }
    .filters div[class^="col-"] .unset, .filter-part div[class^="col-"] .unset {
      display: none;
      border: none !important;
      color: #5e3190;
      font-style: normal;
      font-weight: normal;
      speak: none;
      margin-top: -30px;
      position: absolute;
      z-index: 999999999;
      margin-left: 80%;
      font-size: 120%;
      cursor: pointer;
      width: 1em; }
      .filters div[class^="col-"] .unset i, .filter-part div[class^="col-"] .unset i {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: #ffffff; }
    .filters div[class^="col-"] .when-inputs, .filters div[class^="col-"] .time-inputs, .filter-part div[class^="col-"] .when-inputs, .filter-part div[class^="col-"] .time-inputs {
      background: white;
      border-radius: 15px;
      border: none;
      height: 32px; }
      .filters div[class^="col-"] .when-inputs > i, .filters div[class^="col-"] .time-inputs > i, .filter-part div[class^="col-"] .when-inputs > i, .filter-part div[class^="col-"] .time-inputs > i {
        border: 1px solid #666;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        line-height: 15px;
        position: absolute;
        top: 8px;
        cursor: pointer; }
        .filters div[class^="col-"] .when-inputs > i.when-arrow-disabled, .filters div[class^="col-"] .time-inputs > i.when-arrow-disabled, .filter-part div[class^="col-"] .when-inputs > i.when-arrow-disabled, .filter-part div[class^="col-"] .time-inputs > i.when-arrow-disabled {
          opacity: 0.6;
          cursor: default; }
        @media (max-width: 991px) {
          .filters div[class^="col-"] .when-inputs > i, .filters div[class^="col-"] .time-inputs > i, .filter-part div[class^="col-"] .when-inputs > i, .filter-part div[class^="col-"] .time-inputs > i {
            height: 22px;
            width: 22px;
            font-size: 1.3em;
            line-height: 19px;
            top: 5px; } }
        .filters div[class^="col-"] .when-inputs > i.fa-angle-left, .filters div[class^="col-"] .time-inputs > i.fa-angle-left, .filter-part div[class^="col-"] .when-inputs > i.fa-angle-left, .filter-part div[class^="col-"] .time-inputs > i.fa-angle-left {
          padding-left: 0.25em;
          left: 0; }
          @media (max-width: 991px) {
            .filters div[class^="col-"] .when-inputs > i.fa-angle-left, .filters div[class^="col-"] .time-inputs > i.fa-angle-left, .filter-part div[class^="col-"] .when-inputs > i.fa-angle-left, .filter-part div[class^="col-"] .time-inputs > i.fa-angle-left {
              left: 17%; } }
          @media (max-width: 575px) {
            .filters div[class^="col-"] .when-inputs > i.fa-angle-left, .filters div[class^="col-"] .time-inputs > i.fa-angle-left, .filter-part div[class^="col-"] .when-inputs > i.fa-angle-left, .filter-part div[class^="col-"] .time-inputs > i.fa-angle-left {
              left: 10px; } }
        .filters div[class^="col-"] .when-inputs > i.fa-angle-right, .filters div[class^="col-"] .time-inputs > i.fa-angle-right, .filter-part div[class^="col-"] .when-inputs > i.fa-angle-right, .filter-part div[class^="col-"] .time-inputs > i.fa-angle-right {
          right: 10px;
          padding-left: 0.35em; }
          @media (max-width: 991px) {
            .filters div[class^="col-"] .when-inputs > i.fa-angle-right, .filters div[class^="col-"] .time-inputs > i.fa-angle-right, .filter-part div[class^="col-"] .when-inputs > i.fa-angle-right, .filter-part div[class^="col-"] .time-inputs > i.fa-angle-right {
              right: 17%; } }
          @media (max-width: 575px) {
            .filters div[class^="col-"] .when-inputs > i.fa-angle-right, .filters div[class^="col-"] .time-inputs > i.fa-angle-right, .filter-part div[class^="col-"] .when-inputs > i.fa-angle-right, .filter-part div[class^="col-"] .time-inputs > i.fa-angle-right {
              right: 10px; } }
      .filters div[class^="col-"] .when-inputs input, .filters div[class^="col-"] .time-inputs input, .filter-part div[class^="col-"] .when-inputs input, .filter-part div[class^="col-"] .time-inputs input {
        width: 44%;
        margin-top: 5px;
        display: inline-block;
        font-size: 15px;
        line-height: 20px;
        padding: 5px 7px; }
        .filters div[class^="col-"] .when-inputs input#inputWhenFrom, .filters div[class^="col-"] .time-inputs input#inputWhenFrom, .filter-part div[class^="col-"] .when-inputs input#inputWhenFrom, .filter-part div[class^="col-"] .time-inputs input#inputWhenFrom {
          text-align: right;
          background: transparent; }
        .filters div[class^="col-"] .when-inputs input#inputWhenTo, .filters div[class^="col-"] .time-inputs input#inputWhenTo, .filter-part div[class^="col-"] .when-inputs input#inputWhenTo, .filter-part div[class^="col-"] .time-inputs input#inputWhenTo {
          text-align: left;
          background: transparent; }
      .filters div[class^="col-"] .when-inputs span, .filters div[class^="col-"] .time-inputs span, .filter-part div[class^="col-"] .when-inputs span, .filter-part div[class^="col-"] .time-inputs span {
        color: #9C9C9C; }
      .filters div[class^="col-"] .when-inputs .bootstrap-select select, .filters div[class^="col-"] .time-inputs .bootstrap-select select, .filter-part div[class^="col-"] .when-inputs .bootstrap-select select, .filter-part div[class^="col-"] .time-inputs .bootstrap-select select {
        text-align: center; }
      .filters div[class^="col-"] .when-inputs .bootstrap-select .caret, .filters div[class^="col-"] .time-inputs .bootstrap-select .caret, .filter-part div[class^="col-"] .when-inputs .bootstrap-select .caret, .filter-part div[class^="col-"] .time-inputs .bootstrap-select .caret {
        display: none; }
      .filters div[class^="col-"] .when-inputs .bootstrap-select .disabled, .filters div[class^="col-"] .time-inputs .bootstrap-select .disabled, .filter-part div[class^="col-"] .when-inputs .bootstrap-select .disabled, .filter-part div[class^="col-"] .time-inputs .bootstrap-select .disabled {
        background: transparent; }
    .filters div[class^="col-"] .calendar-holder, .filter-part div[class^="col-"] .calendar-holder {
      position: absolute;
      display: none; }
      .filters div[class^="col-"] .calendar-holder .flatpickr-calendar, .filter-part div[class^="col-"] .calendar-holder .flatpickr-calendar {
        padding: 10px 0; }
      .filters div[class^="col-"] .calendar-holder .flatpickr-day, .filter-part div[class^="col-"] .calendar-holder .flatpickr-day {
        background: #F5F5F5;
        border-radius: 0;
        color: #666666; }
        .filters div[class^="col-"] .calendar-holder .flatpickr-day.endRange:hover, .filters div[class^="col-"] .calendar-holder .flatpickr-day.startRange:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-day.endRange:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-day.startRange:hover {
          color: #666666; }
        .filters div[class^="col-"] .calendar-holder .flatpickr-day:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-day:hover {
          color: white;
          background: #5e3190; }
      .filters div[class^="col-"] .calendar-holder .flatpickr-month, .filter-part div[class^="col-"] .calendar-holder .flatpickr-month {
        height: 40px; }
        .filters div[class^="col-"] .calendar-holder .flatpickr-month .flatpickr-current-month, .filter-part div[class^="col-"] .calendar-holder .flatpickr-month .flatpickr-current-month {
          top: 10px; }
      .filters div[class^="col-"] .calendar-holder .cur-month, .filters div[class^="col-"] .calendar-holder .cur-year, .filter-part div[class^="col-"] .calendar-holder .cur-month, .filter-part div[class^="col-"] .calendar-holder .cur-year {
        font-size: 13px;
        font-weight: 500;
        color: #666666; }
        .filters div[class^="col-"] .calendar-holder .cur-month:hover, .filters div[class^="col-"] .calendar-holder .cur-year:hover, .filter-part div[class^="col-"] .calendar-holder .cur-month:hover, .filter-part div[class^="col-"] .calendar-holder .cur-year:hover {
          background: none; }
      .filters div[class^="col-"] .calendar-holder .flatpickr-day.inRange, .filter-part div[class^="col-"] .calendar-holder .flatpickr-day.inRange {
        color: white;
        background: rgba(94, 49, 144, 0.1);
        border-radius: 0;
        box-shadow: none; }
        .filters div[class^="col-"] .calendar-holder .flatpickr-day.inRange.selected, .filter-part div[class^="col-"] .calendar-holder .flatpickr-day.inRange.selected {
          background: #5e3190;
          border: none; }
      .filters div[class^="col-"] .calendar-holder .selected, .filter-part div[class^="col-"] .calendar-holder .selected {
        background: #5e3190;
        border: none;
        color: white; }
      .filters div[class^="col-"] .calendar-holder .prevMonthDay, .filter-part div[class^="col-"] .calendar-holder .prevMonthDay {
        color: #666666; }
        .filters div[class^="col-"] .calendar-holder .prevMonthDay.selected, .filter-part div[class^="col-"] .calendar-holder .prevMonthDay.selected {
          background: #5e3190;
          border: none;
          color: white; }
      .filters div[class^="col-"] .calendar-holder .flatpickr-weekday, .filter-part div[class^="col-"] .calendar-holder .flatpickr-weekday {
        font-size: 11px;
        text-transform: lowercase;
        color: #666666; }
      .filters div[class^="col-"] .calendar-holder .startRange, .filters div[class^="col-"] .calendar-holder .endRange, .filter-part div[class^="col-"] .calendar-holder .startRange, .filter-part div[class^="col-"] .calendar-holder .endRange {
        background: #5e3190;
        color: white; }
      .filters div[class^="col-"] .calendar-holder .flatpickr-next-month, .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month, .filter-part div[class^="col-"] .calendar-holder .flatpickr-next-month, .filter-part div[class^="col-"] .calendar-holder .flatpickr-prev-month {
        fill: #5e3190;
        border-radius: 150px;
        border: 1px solid #5e3190;
        padding: 11px 11px; }
        .filters div[class^="col-"] .calendar-holder .flatpickr-next-month:hover, .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-next-month:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-prev-month:hover {
          border: 1px solid rgba(94, 49, 144, 0.1); }
          .filters div[class^="col-"] .calendar-holder .flatpickr-next-month:hover svg, .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month:hover svg, .filter-part div[class^="col-"] .calendar-holder .flatpickr-next-month:hover svg, .filter-part div[class^="col-"] .calendar-holder .flatpickr-prev-month:hover svg {
            fill: rgba(94, 49, 144, 0.1); }
        .filters div[class^="col-"] .calendar-holder .flatpickr-next-month svg, .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month svg, .filter-part div[class^="col-"] .calendar-holder .flatpickr-next-month svg, .filter-part div[class^="col-"] .calendar-holder .flatpickr-prev-month svg {
          position: absolute;
          margin-top: -7px;
          margin-left: -7px; }
          .filters div[class^="col-"] .calendar-holder .flatpickr-next-month svg:hover, .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month svg:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-next-month svg:hover, .filter-part div[class^="col-"] .calendar-holder .flatpickr-prev-month svg:hover {
            fill: rgba(94, 49, 144, 0.1); }
    .filters div[class^="col-"] .awesomplete, .filter-part div[class^="col-"] .awesomplete {
      width: 100%; }
    .filters div[class^="col-"] .inputWhatpopup, .filter-part div[class^="col-"] .inputWhatpopup {
      display: none;
      position: absolute;
      padding: 5% 10%;
      margin-top: 20px;
      border-radius: 15px;
      background: #F6F6F6;
      width: 100%;
      z-index: 999;
      margin-left: -15px; }
      .filters div[class^="col-"] .inputWhatpopup a, .filter-part div[class^="col-"] .inputWhatpopup a {
        color: #9C9C9C;
        font-size: 55%;
        text-decoration: underline; }
      .filters div[class^="col-"] .inputWhatpopup ul, .filter-part div[class^="col-"] .inputWhatpopup ul {
        padding-left: 0; }
        .filters div[class^="col-"] .inputWhatpopup ul dl, .filter-part div[class^="col-"] .inputWhatpopup ul dl {
          margin-bottom: 0; }
          .filters div[class^="col-"] .inputWhatpopup ul dl a, .filter-part div[class^="col-"] .inputWhatpopup ul dl a {
            font-size: 65%;
            color: #9C9C9C;
            text-decoration: none; }
    .filters div[class^="col-"] .dropdown-menu, .filter-part div[class^="col-"] .dropdown-menu {
      list-style: inside;
      padding: 10px 5px 10px 10px;
      border-radius: 15px; }
      .filters div[class^="col-"] .dropdown-menu li, .filter-part div[class^="col-"] .dropdown-menu li {
        list-style-image: url("../images/list-unchecked.png");
        font-size: 12px;
        line-height: 1em;
        margin-bottom: 4px; }
        .filters div[class^="col-"] .dropdown-menu li a, .filter-part div[class^="col-"] .dropdown-menu li a {
          color: #666666;
          padding-left: 20px;
          margin-left: -20px; }
        .filters div[class^="col-"] .dropdown-menu li.selected, .filter-part div[class^="col-"] .dropdown-menu li.selected {
          list-style-image: url("../images/list-checked.png"); }
      .filters div[class^="col-"] .dropdown-menu > .dropdown-menu, .filter-part div[class^="col-"] .dropdown-menu > .dropdown-menu {
        display: block; }

.aqua-color .title {
  color: #1fbab0; }

.aqua-color .class-schedule .nav .nav-item .nav-link.active {
  color: #1fbab0; }

.aqua-color .class-schedule .tab-content .tab-pane .booking-table table tr.thead td {
  background: #1fbab0; }

.aqua-color .class-schedule .tab-content .tab-pane .booking-table table tbody tr td {
  color: #1fbab0; }

.aqua-color .button2 {
  background: #1fbab0; }

.aqua-color #treatments .row .load-more-button, .aqua-color #treatments .row .hide-more-button {
  background: #1fbab0; }

.aqua-color .button3 {
  background: #1fbab0; }

.aqua-color .button4 {
  color: #1fbab0;
  border: 1px solid #1fbab0; }

.aqua-color .filters div[class^="col-"] .filter-title {
  color: #1fbab0; }

.aqua-color .filters div[class^="col-"] .unset {
  border: 1px solid #1fbab0;
  color: #1fbab0; }

.aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-day:hover {
  background: #1fbab0; }

.aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-day.inRange {
  background: rgba(31, 186, 176, 0.1); }
  .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-day.inRange.selected {
    background: #1fbab0; }

.aqua-color .filters div[class^="col-"] .calendar-holder .selected {
  background: #1fbab0; }

.aqua-color .filters div[class^="col-"] .calendar-holder .prevMonthDay.selected {
  background: #1fbab0; }

.aqua-color .filters div[class^="col-"] .calendar-holder .startRange, .aqua-color .filters div[class^="col-"] .calendar-holder .endRange {
  background: #1fbab0; }

.aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-next-month, .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month {
  fill: #1fbab0;
  border: 1px solid #1fbab0; }
  .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-next-month:hover, .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month:hover {
    border: 1px solid rgba(31, 186, 176, 0.1); }
    .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-next-month:hover svg, .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month:hover svg {
      fill: rgba(31, 186, 176, 0.1); }
  .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-next-month svg:hover, .aqua-color .filters div[class^="col-"] .calendar-holder .flatpickr-prev-month svg:hover {
    fill: rgba(31, 186, 176, 0.1); }

#classes_c .filters select,
#classes_c .filters button.ui-state-selected {
  color: #5e3190; }

.filters > div:not(:last-child)::after, .filter-part > div:not(:last-child)::after {
  position: absolute;
  top: 52px;
  right: 15px; }

.filters > div:not(:last-child).col-lg-1_5::after, .filter-part > div:not(:last-child).col-lg-1_5::after {
  right: 5px; }

.filters.classes__filters, .filter-part.classes__filters {
  border-radius: 15px;
  padding-bottom: 15px; }
  .filters.classes__filters > div:not(.when__filter):first-child::after, .filter-part.classes__filters > div:not(.when__filter):first-child::after {
    content: ''; }
  .filters.classes__filters > div:not(.when__filter):not(:last-child)::after, .filter-part.classes__filters > div:not(.when__filter):not(:last-child)::after {
    top: 16px; }
  .filters.classes__filters .with__filter .dropdown-menu, .filter-part.classes__filters .with__filter .dropdown-menu {
    width: 150%; }
  .filters.classes__filters .filters_pane__switch.angle-up::after, .filter-part.classes__filters .filters_pane__switch.angle-up::after {
    content: '\f106';
    color: #5e3190; }
  .filters.classes__filters .filters_pane__switch.angle-up a, .filter-part.classes__filters .filters_pane__switch.angle-up a {
    box-shadow: 0 0 0 1px #5e3190;
    color: #5e3190; }
  .filters.classes__filters .filters_pane__switch .filters_pane__switch-button, .filter-part.classes__filters .filters_pane__switch .filters_pane__switch-button {
    color: #999;
    display: block;
    background: #ffffff;
    padding: 6px;
    padding-left: 12px;
    font-size: 14px;
    border-radius: 15px;
    width: 100%; }

.filters#filter__toggle_pane, .filter-part#filter__toggle_pane {
  padding: 10px 0 15px;
  top: -10px;
  border-radius: 0 0 15px 15px;
  background: #ebebeb;
  border-top: 2px solid rgba(153, 153, 153, 0.4); }
  .filters#filter__toggle_pane > div:first-child::after, .filter-part#filter__toggle_pane > div:first-child::after {
    content: ''; }
  .filters#filter__toggle_pane > div::after, .filter-part#filter__toggle_pane > div::after {
    position: absolute;
    top: 36px;
    right: 20px; }
  .filters#filter__toggle_pane > div:last-child::after, .filter-part#filter__toggle_pane > div:last-child::after {
    right: 5px; }
  .filters#filter__toggle_pane .filter-title, .filter-part#filter__toggle_pane .filter-title {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    height: auto;
    line-height: 1em;
    padding-left: 10px; }

.filters.pilates__filters .what__filter .dropdown-menu, .filter-part.pilates__filters .what__filter .dropdown-menu {
  width: 105%; }

.filters.pilates__filters .with__filter .dropdown-menu, .filter-part.pilates__filters .with__filter .dropdown-menu {
  width: 150%; }

.filters.treatments__filters .with__filter .dropdown-menu, .filter-part.treatments__filters .with__filter .dropdown-menu {
  width: 150%; }

.filters.workshops__filters .with__filter .dropdown-menu, .filter-part.workshops__filters .with__filter .dropdown-menu {
  width: 150%; }

#error {
  text-align: center; }

@media (max-width: 575px) {
  .days__switch {
    max-width: 80%; } }

.days__switch .days__switch_button {
  background: #ebebeb;
  box-shadow: 1px 1px 3px 0 #999999;
  font-size: 14px;
  line-height: 20px;
  width: 50%;
  text-indent: 5px;
  padding: 6px;
  color: #666666 !important;
  display: block;
  float: left;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 20; }
  .days__switch .days__switch_button:hover, .days__switch .days__switch_button.selected {
    background: #666;
    color: #fff !important; }
  .days__switch .days__switch_button.button_one_day {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px; }
  .days__switch .days__switch_button.button_seven_days {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 0; }

body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes {
  margin-left: -10px; }
  body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes .multi-column-wrapper .ui-multiselect-optgroup {
    width: 50%; }
    body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes .multi-column-wrapper .ui-multiselect-optgroup > a {
      display: none; }
    body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes .multi-column-wrapper .ui-multiselect-optgroup a.active {
      color: #5e3190; }
      body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes .multi-column-wrapper .ui-multiselect-optgroup a.active:before {
        background: #666666; }
  body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes .multi-column-wrapper li input:checked + span {
    color: #5e3190; }
    body.page-template-schedule-classes .ui-multiselect-menu ul.ui-multiselect-checkboxes .multi-column-wrapper li input:checked + span::after {
      background: #666666;
      color: #5e3190; }

body.page-template-schedule-classes .booking-table thead th:nth-child(1) {
  width: 14%; }

body.page-template-schedule-classes .booking-table thead th:nth-child(2) {
  width: 30%; }

body.page-template-schedule-classes .booking-table thead th:nth-child(3) {
  width: 28%; }

body.page-template-schedule-classes .classes-page-header {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    body.page-template-schedule-classes .classes-page-header {
      margin-bottom: 0; } }
  body.page-template-schedule-classes .classes-page-header h2.title {
    color: #5e3190;
    font-size: 170%;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 16px; }
  body.page-template-schedule-classes .classes-page-header .under-title {
    padding: 10px 0 0;
    margin-bottom: 7px;
    font-size: 90%; }

body.page-template-schedule-classes #classes_schedule_faq_button {
  float: right;
  margin-right: 30px;
  font-size: 14px;
  line-height: 1.5em;
  padding: 5px 31px 5px 36px;
  color: #5e3190 !important;
  background: transparent !important;
  border: 1px solid #5e3190 !important; }
  body.page-template-schedule-classes #classes_schedule_faq_button::after {
    right: 0;
    margin-left: 5px;
    color: #5e3190; }
  @media (max-width: 991px) {
    body.page-template-schedule-classes #classes_schedule_faq_button {
      margin-right: 0; } }
  @media (max-width: 575px) {
    body.page-template-schedule-classes #classes_schedule_faq_button {
      padding: 5px 18px 5px 28px; } }

body.page-template-schedule-classes #classes_schedule_close_faq_button {
  font-size: 14px;
  padding: 5px 33px 5px 35px;
  line-height: 1.5em; }

body.page-template-schedule-classes #classes_schedule_faq_content {
  display: none;
  border-bottom: 2px solid rgba(153, 153, 153, 0.1);
  padding-top: 10px;
  margin-bottom: 20px;
  font-size: 90%; }
  body.page-template-schedule-classes #classes_schedule_faq_content .col-md-1 {
    text-align: center; }

body.page-template-schedule-classes .filters .when-inputs, body.page-template-schedule-classes .filters .time-inputs, body.page-template-schedule-classes .filter-part .when-inputs, body.page-template-schedule-classes .filter-part .time-inputs {
  background: transparent;
  border-radius: 0; }

body.page-template-schedule-classes .filters .date-and-calendar, body.page-template-schedule-classes .filter-part .date-and-calendar {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 30px; }

body.page-template-schedule-classes .filters .icon-calendar, body.page-template-schedule-classes .filter-part .icon-calendar {
  font-family: FontAwesome;
  display: inline-block;
  color: #666666;
  cursor: pointer;
  position: absolute;
  right: 35px;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  cursor: pointer;
  margin-top: 3px; }
  @media (max-width: 991px) {
    body.page-template-schedule-classes .filters .icon-calendar, body.page-template-schedule-classes .filter-part .icon-calendar {
      right: 22%; } }
  @media (max-width: 575px) {
    body.page-template-schedule-classes .filters .icon-calendar, body.page-template-schedule-classes .filter-part .icon-calendar {
      right: 40px; } }

body.page-template-schedule-classes .filters #inputWhenSimple, body.page-template-schedule-classes .filter-part #inputWhenSimple {
  width: 80%;
  padding-top: 6px;
  padding-left: 0;
  background: transparent;
  text-align: center;
  color: #666666;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -50px; }

body.page-template-schedule-classes .filters #inputWhenSimplemobile, body.page-template-schedule-classes .filter-part #inputWhenSimplemobile {
  width: 80%;
  padding-top: 6px;
  padding-left: 30px;
  background: transparent;
  text-align: center;
  color: #666666;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -50px; }

@media screen and (max-width: 1084px) {
  body.page-template-schedule-classes .filters #inputWhenSimple, body.page-template-schedule-classes .filter-part #inputWhenSimple {
    font-size: 14px !important; } }

@media (max-width: 767px) {
  body.page-template-schedule-classes .filters #class_types_content, body.page-template-schedule-classes .filter-part #class_types_content {
    margin-left: -10px;
    margin-right: -10px; } }

body.page-template-schedule-classes .filters .searchButtonClasses, body.page-template-schedule-classes .filter-part .searchButtonClasses {
  font-size: 16px; }

body.page-template-schedule-classes #treatmentFiltersMobile .searchButtonClasses {
  padding-top: 4px;
  padding-bottom: 4px; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(1) {
  width: 17%; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(2) {
  width: 26%; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(3) {
  width: 10%; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(4) {
  width: 10%; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(5) {
  width: 11%; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(6) {
  width: 14%; }

body.page-template-schedule-pillates .booking-table thead th:nth-child(7) {
  width: 12%; }

body.page-template-schedule-pillates .filter-part #accordion .search-btn-holder {
  padding: 0 5px; }
  @media (max-width: 575px) {
    body.page-template-schedule-pillates .filter-part #accordion .search-btn-holder {
      padding: 0 15px; } }

@media (max-width: 575px) {
  body.page-template-schedule-pillates .filter-part #accordion .filters-item .filters-item-title {
    padding: 0 15px; } }

body.page-template-schedule-pillates .content-part .content-part-item {
  border-bottom: none; }
  body.page-template-schedule-pillates .content-part .content-part-item:nth-child(odd) .content-part-item-description {
    background: #f5f5f5; }
  body.page-template-schedule-pillates .content-part .content-part-item .content-part-item-description .item-left-part {
    max-width: 40%; }

body.page-template-schedule-pillates .content-part .content-part-item .content-part-item-description .item-right-part {
  max-width: 60%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(1) {
  width: 17%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(2) {
  width: 26%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(3) {
  width: 10%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(4) {
  width: 10%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(5) {
  width: 11%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(6) {
  width: 14%; }

body.page-template-schedule-treatments .booking-table thead th:nth-child(7) {
  width: 12%; }

body.page-template-schedule-treatments .filter-part #accordion .search-btn-holder {
  padding: 0 5px; }
  @media (max-width: 575px) {
    body.page-template-schedule-treatments .filter-part #accordion .search-btn-holder {
      padding: 0 15px; } }

body.page-template-schedule-treatments .filter-part #accordion .filters-item .filters-item-title::after {
  color: #1fbab0; }

@media (max-width: 575px) {
  body.page-template-schedule-treatments .filter-part #accordion .filters-item .filters-item-title {
    padding: 0 15px; } }

body.page-template-schedule-treatments .content-part .content-part-item {
  border-bottom: none; }
  body.page-template-schedule-treatments .content-part .content-part-item:nth-child(odd) .content-part-item-description {
    background: #f5f5f5; }
  body.page-template-schedule-treatments .content-part .content-part-item .content-part-item-description .item-left-part {
    max-width: 40%; }

body.page-template-schedule-treatments .content-part .content-part-item .content-part-item-description .item-right-part {
  max-width: 60%; }

div.multiselect__classes {
  width: 400px !important; }
  div.multiselect__classes::after {
    display: none; }

.multiselect__classes[type=button] {
  width: 100% !important;
  text-align: left; }
  .multiselect__classes[type=button] span {
    display: inline-block;
    width: 85%; }

.multiselect__classes .ui-multiselect-checkboxes {
  padding: 0;
  width: 370px !important; }
  .multiselect__classes .ui-multiselect-checkboxes .multi-column-wrapper li span {
    margin-top: -17px;
    font-size: 12px; }

.multi-column-wrapper {
  float: left;
  width: 100% !important;
  white-space: normal; }
  .multi-column-wrapper .ui-multiselect-optgroup {
    margin-top: 0 !important;
    width: 100%; }
    .multi-column-wrapper .ui-multiselect-optgroup a.active {
      color: #5e3190; }
      .multi-column-wrapper .ui-multiselect-optgroup a.active:before {
        background: #666666; }
  .multi-column-wrapper li input[type=checkbox] {
    visibility: hidden; }
  .multi-column-wrapper li span {
    position: relative;
    display: block;
    padding: 0 0 0 27px; }
    .multi-column-wrapper li span::after {
      content: '';
      position: absolute;
      top: 50%;
      left: .5em;
      width: 11px;
      height: 11px;
      border: 1px solid #666666;
      box-sizing: border-box;
      background-color: #fff;
      background-image: -webkit-linear-gradient(bottom, #fff 0%, #fff 40%, transparent 100%);
      background-image: -o-linear-gradient(bottom, #fff 0%, #fff 40%, transparent 100%);
      background-image: linear-gradient(to top, #fff 0%, #fff 40%, transparent 100%);
      -webkit-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%); }
  .multi-column-wrapper li input:checked + span {
    color: #5e3190; }
    .multi-column-wrapper li input:checked + span::after {
      background: #666666;
      color: #5e3190; }

.ui-multiselect {
  padding: 2px 0 2px 4px;
  text-align: left;
  z-index: 999;
  border-radius: 10px;
  width: 100%;
  background: #fff;
  color: #999;
  cursor: pointer;
  border: 0; }

.ui-multiselect span.ui-icon {
  float: right; }

.ui-multiselect-single .ui-multiselect-checkboxes label {
  padding: 5px !important; }

.ui-multiselect-header {
  margin-bottom: 3px;
  padding: 3px 0 3px 4px; }

.ui-multiselect-header ul {
  font-size: 0.9em; }

.ui-multiselect-header ul li {
  float: left;
  padding: 0 10px 0 0; }

.ui-multiselect-header a {
  text-decoration: none; }

.ui-multiselect-header a:hover {
  text-decoration: underline; }

.ui-multiselect-header span.ui-icon {
  float: left; }

.ui-multiselect-header .ui-multiselect-close {
  float: right;
  padding-right: 0;
  text-align: right; }

.ui-multiselect-menu {
  display: none;
  padding: 0px 10px 10px;
  position: absolute;
  text-align: left;
  background-color: #fff;
  z-index: 999;
  border-radius: 10px;
  border: 1px solid #e4e4e4 !important; }
  .ui-multiselect-menu:hover, .ui-multiselect-menu:active {
    border: 1px solid #e4e4e4 !important; }

.ui-multiselect-checkboxes label {
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
  padding: 3px 1px;
  margin-bottom: 0; }

.ui-multiselect-checkboxes label input {
  position: relative;
  top: 1px;
  margin-right: 5px; }

.ui-multiselect-checkboxes li {
  clear: both;
  font-size: 0.9em;
  list-style: none;
  padding-right: 3px;
  font-size: 14px;
  line-height: 16px; }

.ui-multiselect-checkboxes .ui-multiselect-optgroup {
  padding: 3px; }

.ui-multiselect-columns {
  display: inline-block;
  vertical-align: top; }

@media print {
  .ui-multiselect-menu {
    display: none; } }

.classes-page .filters .primary-btn {
  height: 32px;
  font-size: 18px;
  width: 100%; }

.classes-page .filters .when-inputs {
  border: 1px solid #fff; }
  .classes-page .filters .when-inputs input {
    margin: 0 !important; }
    .classes-page .filters .when-inputs input:focus {
      box-shadow: none !important; }
  .classes-page .filters .when-inputs.active {
    border-color: #5e3190 !important; }

.classes-page .filters .dropdown-menu li a .text {
  margin-right: 0 !important; }

.classes-page .class-schedule .tab-content .tab-pane .booking-table table {
  border-spacing: 0 7px; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.__cancelled td.classTime {
    color: rgba(153, 153, 153, 0.5); }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.__cancelled td.classDesc, .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.__cancelled td.classTeacher, .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.__cancelled td.classLocation {
    color: rgba(94, 49, 144, 0.5); }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.__cancelled .button2 {
    background: transparent;
    color: rgba(94, 49, 144, 0.5);
    cursor: default; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.pilates-table-header {
    background-color: #5e3190; }
    .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.pilates-table-header td {
      color: #ffffff;
      padding: 4px 25px;
      background-color: transparent; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.treatmeats-class td.timeStart select {
    cursor: pointer; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.treatmeats-class td.timeStart::after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    speak: none;
    pointer-events: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    padding-right: .4em;
    text-align: center;
    color: #999;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    line-height: 0.1em;
    font-size: 120%;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f107';
    position: absolute;
    margin-top: 15px;
    margin-left: -20px;
    color: #999; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.treatmeats-class td span.select-wrapper::after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    speak: none;
    pointer-events: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    padding-right: .4em;
    text-align: center;
    color: #999;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    line-height: 0.1em;
    font-size: 120%;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f107';
    position: absolute;
    margin-top: 15px;
    margin-left: -20px;
    color: #999; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.treatmeats-class td select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    text-indent: 0.01px;
    text-overflow: '';
    text-align: left;
    border: 0;
    color: #9C9C9C;
    line-height: 20px;
    width: 100%;
    padding: 6px; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr.treatmeats-class td.timeLength select {
    margin-left: -12px; }
  .classes-page .class-schedule .tab-content .tab-pane .booking-table table tbody tr td.classTeacher span.__substitute {
    color: #990000; }

.classes-page .location-schedule:before {
  background: none; }

@media (max-width: 575px) {
  .classes-page .location-schedule a.nav-link {
    height: 100%;
    display: block;
    width: 100%;
    float: left; }
  .classes-page .location-schedule .container .nav .nav-item {
    height: 100%;
    float: left;
    width: auto; } }

#popup-wrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 999999;
  position: fixed;
  top: 98px;
  display: none; }
  @media (max-width: 991px) {
    #popup-wrapper {
      top: 72px;
      background: transparent; } }
  #popup-wrapper #popup-wrapper__inner {
    background: #F5F5F5;
    padding: 10px 30px;
    border-radius: 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 30px auto;
    width: 80%;
    max-width: 900px;
    max-height: 750px;
    display: block; }
    @media (max-width: 991px) {
      #popup-wrapper #popup-wrapper__inner {
        width: 100%;
        border-radius: 0;
        height: 100%;
        margin: 0;
        -webkit-overflow-scrolling: touch; } }
    #popup-wrapper #popup-wrapper__inner .close-popup-mobile {
      position: fixed;
      right: 15px;
      font-size: 25px;
      color: #5e3190;
      cursor: pointer;
      z-index: 2;
      line-height: 20px;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      #popup-wrapper #popup-wrapper__inner .close-popup-mobile:hover, #popup-wrapper #popup-wrapper__inner .close-popup-mobile:focus {
        color: rgba(94, 49, 144, 0.6); }
    #popup-wrapper #popup-wrapper__inner #popup-wrapper__content {
      display: inline-block;
      max-height: calc(100vh - 324px);
      min-height: 420px;
      overflow-y: auto;
      overflow-x: hidden; }
      @media (max-width: 991px) {
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content {
          max-height: none;
          height: 100%;
          font-size: 12px;
          padding-bottom: 200px; } }
      #popup-wrapper #popup-wrapper__inner #popup-wrapper__content div#login-overlay.login-page {
        margin: 0; }
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content div#login-overlay.login-page .title {
          margin-top: 2%; }
      #popup-wrapper #popup-wrapper__inner #popup-wrapper__content .heading-std {
        color: #5e3190;
        margin-bottom: 30px; }
        @media (max-width: 991px) {
          #popup-wrapper #popup-wrapper__inner #popup-wrapper__content .heading-std {
            font-size: 14px;
            margin-bottom: 15px; } }
      @media (max-width: 991px) {
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content .primary-outline-btn {
          font-size: 12px;
          padding: 2px 10px; } }
      @media (max-width: 991px) {
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child > div, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child > div {
          width: 50%; } }
      @media (max-width: 767px) {
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child > div, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child > div {
          width: 100%;
          padding-right: 50px; } }
      #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #teacher-information-classes, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #treatment-information-buttons, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #teacher-information-classes, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #treatment-information-buttons {
        text-align: right;
        padding-right: 40px; }
        @media (max-width: 991px) {
          #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #teacher-information-classes, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #treatment-information-buttons, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #teacher-information-classes, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #treatment-information-buttons {
            padding-top: 0; } }
        @media (max-width: 767px) {
          #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #teacher-information-classes, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #treatment-information-buttons, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #teacher-information-classes, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #treatment-information-buttons {
            width: 100%;
            padding-right: 0;
            margin-bottom: 10px;
            text-align: left; } }
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #teacher-information-classes a, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information > .row:first-child #treatment-information-buttons a, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #teacher-information-classes a, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information > .row:first-child #treatment-information-buttons a {
          margin-right: 10px; }
      #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #teacher-information #teacher-information-image, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information #teacher-information-image {
        width: auto;
        height: auto;
        max-width: 200px; }
      @media (max-width: 767px) {
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content #treatment-information #treatment-information-buttons > a {
          float: left; } }
      #popup-wrapper #popup-wrapper__inner #popup-wrapper__content .close-popup {
        position: absolute;
        right: 30px;
        top: 10px;
        font-size: 25px;
        color: #5e3190;
        cursor: pointer;
        z-index: 2;
        line-height: 20px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        #popup-wrapper #popup-wrapper__inner #popup-wrapper__content .close-popup:hover, #popup-wrapper #popup-wrapper__inner #popup-wrapper__content .close-popup:focus {
          color: rgba(94, 49, 144, 0.6); }

#teacher-information,
#calltobook,
#camden-location,
#chelsea-location,
#soho-location,
#covent-location {
  display: none; }

.list-wrapper {
  display: block;
  margin-bottom: 0px; }

.list-item-label {
  float: left;
  width: 120px; }

.list-item-details {
  float: left; }

.address-list .list-item-label {
  width: 90px; }

#ui-datepicker-div {
  display: none; }

.ui-datepicker {
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e4e4e4; }
  .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    position: absolute;
    line-height: 22px;
    text-align: center;
    width: 25px;
    height: 25px;
    top: 15px; }
    @media (max-width: 991px) {
      .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
        position: relative; } }
    .ui-datepicker .ui-datepicker-prev span,
    .ui-datepicker .ui-datepicker-next span {
      display: none;
      opacity: 0;
      visibility: hidden; }
    .ui-datepicker .ui-datepicker-prev:before,
    .ui-datepicker .ui-datepicker-next:before {
      content: '';
      border: 1px solid #5e3190;
      width: 22px;
      height: 22px;
      display: block;
      font-family: FontAwesome;
      border-radius: 100%;
      color: #5e3190;
      font-size: 1.3em;
      line-height: 19px;
      text-align: left; }
    .ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
      background: none; }
  .ui-datepicker .ui-datepicker-prev {
    left: 20px; }
    @media (max-width: 991px) {
      .ui-datepicker .ui-datepicker-prev {
        float: left; } }
    .ui-datepicker .ui-datepicker-prev:before {
      content: "\f104";
      padding-left: 0.25em; }
  .ui-datepicker .ui-datepicker-next {
    right: 20px; }
    @media (max-width: 991px) {
      .ui-datepicker .ui-datepicker-next {
        float: right; } }
    .ui-datepicker .ui-datepicker-next:before {
      content: "\f105";
      padding-left: 0.35em; }
  .ui-datepicker .ui-datepicker-title {
    font-size: 13px;
    line-height: 25px;
    font-weight: 500;
    color: #666666; }
  .ui-datepicker .ui-datepicker-group-first {
    float: left; }
  .ui-datepicker .ui-datepicker-group-last {
    float: right; }
  .ui-datepicker .ui-datepicker-calendar th {
    font-size: 11px;
    line-height: 18px;
    color: #666666;
    font-weight: normal;
    text-transform: lowercase;
    text-align: center; }
  .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable .ui-state-default {
    color: #666666; }
  .ui-datepicker .ui-datepicker-calendar .ui-state-default {
    background: #f6f6f6;
    color: #666666;
    font-size: 11px;
    line-height: 18px;
    padding: 7px 9px;
    display: block;
    text-align: center; }
    .ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-active {
      background: #5e3190;
      color: #fff; }
  .ui-datepicker .ui-datepicker-calendar td.selected-subsequent-date .ui-state-default {
    background: rgba(94, 49, 144, 0.5);
    color: #fff; }

#workshop_c .filters .when-inputs input {
  margin-top: 1px; }

#workshop_c .filters.workshops__filters {
  padding-bottom: 15px; }
  #workshop_c .filters.workshops__filters > div::after {
    right: 25px; }

#workshop_c #workshops .workshops-item-divider {
  border-top: 2px solid #666666;
  width: calc(100%);
  margin: 0 auto;
  padding-top: 20px;
  opacity: 0.2; }
  #workshop_c #workshops .workshops-item-divider.no-margin {
    padding: 0; }

#workshop_c #workshops .workshops-item-additional-info .workshops-item-divider {
  width: calc(100%); }

.classes-page .location-schedule {
  overflow: visible; }

.workshops-tab-content {
  padding: 20px 0; }
  .workshops-tab-content .workshops-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px; }
    .workshops-tab-content .workshops-item .hide-from-main {
      display: none; }
    .workshops-tab-content .workshops-item .hide-from-individual {
      display: none; }
    @media (max-width: 767px) {
      .workshops-tab-content .workshops-item .workshops-item-image_container {
        position: relative;
        min-height: 1px;
        width: 100%;
        margin-bottom: 10px; } }
    @media (max-width: 767px) {
      .workshops-tab-content .workshops-item .workshops-item-image_container .workshops-item-image {
        max-width: 200px; } }
    @media (max-width: 767px) {
      .workshops-tab-content .workshops-item .workshops-item-image_container .workshops-item-image img {
        max-width: 200px; } }
    @media (max-width: 767px) {
      .workshops-tab-content .workshops-item .workshops-item-description_container {
        width: 100%; } }
    .workshops-tab-content .workshops-item .guest-teacher {
      background: #f6f6f6;
      padding: 30px 15px 20px;
      margin-left: -30px;
      margin-right: -30px; }
      @media (max-width: 767px) {
        .workshops-tab-content .workshops-item .guest-teacher {
          padding: 30px 0;
          margin-left: -15px;
          margin-right: -15px; } }
      .workshops-tab-content .workshops-item .guest-teacher .workshops-item-image .guest-teacher-info {
        position: absolute;
        top: -28px;
        left: 0;
        color: #5e3190;
        font-size: 14px;
        line-height: 28px;
        font-weight: 500; }
    .workshops-tab-content .workshops-item .workshops-item-image {
      position: relative; }
      .workshops-tab-content .workshops-item .workshops-item-image:before {
        content: "";
        display: block;
        height: 7px;
        margin-bottom: 6px;
        background: #5e3190; }
      .workshops-tab-content .workshops-item .workshops-item-image .workshops-item-hurry {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.8);
        color: #5e3190; }
    .workshops-tab-content .workshops-item .workshops-item-description {
      font-size: 24px;
      padding-top: 7px;
      line-height: 30px;
      font-weight: 500; }
      @media (max-width: 767px) {
        .workshops-tab-content .workshops-item .workshops-item-description {
          font-size: 14px;
          line-height: 1em; } }
      .workshops-tab-content .workshops-item .workshops-item-description .workshops-item-description-title {
        color: #606060; }
      .workshops-tab-content .workshops-item .workshops-item-description .workshops-item-description-text {
        color: #5e3190;
        cursor: pointer; }
        @media (max-width: 767px) {
          .workshops-tab-content .workshops-item .workshops-item-description .workshops-item-description-text {
            font-size: 13px;
            line-height: 17px;
            margin-top: 10px; } }
      .workshops-tab-content .workshops-item .workshops-item-description .workshops-item-description-content-text {
        display: none;
        font-size: 16px;
        color: #999; }
        @media (max-width: 767px) {
          .workshops-tab-content .workshops-item .workshops-item-description .workshops-item-description-content-text {
            font-size: 12px;
            line-height: 1em; } }
    .workshops-tab-content .workshops-item .workshops-item-info {
      color: #606060;
      padding-top: 13px;
      font-size: 18px;
      line-height: 24px; }
      .workshops-tab-content .workshops-item .workshops-item-info div span {
        color: #5e3190; }
      @media (max-width: 767px) {
        .workshops-tab-content .workshops-item .workshops-item-info {
          font-size: 12px;
          line-height: 17px; } }
    .workshops-tab-content .workshops-item .workshops-item-buttons {
      padding-top: 13px; }
      .workshops-tab-content .workshops-item .workshops-item-buttons .btn-block {
        font-size: 19px;
        padding: 2px;
        display: block; }
    .workshops-tab-content .workshops-item .workshop-item-content {
      padding-top: 25px; }
      @media (max-width: 767px) {
        .workshops-tab-content .workshops-item .workshop-item-content {
          font-size: 12px;
          line-height: 1em; } }
    .workshops-tab-content .workshops-item .workshops-item-additional-info {
      margin: 0;
      width: 100%; }
      @media (max-width: 767px) {
        .workshops-tab-content .workshops-item .workshops-item-additional-info .you-may-also-like_container .you-may-also-like_item {
          width: 50%; } }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .book__full {
        margin: 0; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-sub-item {
        padding: 0; }
        .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-sub-item > div {
          padding: 0; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .primary-outline-btn,
      .workshops-tab-content .workshops-item .workshops-item-additional-info .primary-btn {
        font-size: 18px;
        line-height: 24px;
        display: block; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-item-info {
        padding-top: 0;
        font-size: 16px;
        line-height: 22px; }
        @media (max-width: 767px) {
          .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-item-info {
            font-size: 12px;
            line-height: 17px; } }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-type {
        color: #606060;
        font-size: 14px;
        line-height: 18px;
        font-weight: bold;
        padding: 5px; }
        @media (max-width: 767px) {
          .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-type {
            padding: 0; } }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-item-description {
        padding-top: 0; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-item-description .workshops-item-description-title {
        font-size: 18px;
        line-height: 18px;
        font-weight: 500;
        color: #5e3190;
        cursor: pointer; }
        @media (max-width: 991px) {
          .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-item-description .workshops-item-description-title {
            font-size: 14px;
            line-height: 1em; } }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshops-item-description .workshops-item-description-text {
        font-size: 16px;
        color: #606060; }
      @media (max-width: 991px) {
        .workshops-tab-content .workshops-item .workshops-item-additional-info > .row {
          margin-left: 0;
          margin-right: 0; } }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .row > div[class^="col-"] {
        padding-top: 15px;
        padding-bottom: 15px; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-item-content .embed-responsive {
        margin-bottom: 15px; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-item-content div, .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-item-content p, .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-item-content a, .workshops-tab-content .workshops-item .workshops-item-additional-info .workshop-item-content ul {
        color: #606060; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .related-teachers .teacher .teacher-image:before {
        content: "";
        display: block;
        background: #5e3190;
        height: 7px;
        margin-bottom: 6px; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .related-teachers .teacher .teacher-title {
        color: #5e3190; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .related-teachers .teacher .teacher-text {
        font-size: 14px;
        color: #606060; }
      .workshops-tab-content .workshops-item .workshops-item-additional-info .close-btn {
        width: 190px;
        display: inline-block;
        margin: 35px auto; }
  .workshops-tab-content .load-more-holder .load-more-btn {
    color: #ffffff;
    background: #666666;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
    outline: none;
    text-decoration: none; }
    .workshops-tab-content .load-more-holder .load-more-btn:hover {
      background: #606060; }

.tab-content img {
  width: 100%; }

.like-item {
  display: block;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s; }
  .like-item:hover {
    opacity: 0.6; }

.like-title,
.like-description {
  color: #666666;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500; }

.like-title {
  margin-top: 11px; }

.like-description {
  color: #5e3190; }

.guest-teacher-info {
  font-weight: bold; }

.filter-part {
  padding-left: 10px !important;
  padding-right: 10px !important; }
  .filter-part .filters-item .filters-item-title select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    border: 0;
    background: white;
    color: #9C9C9C;
    border-radius: 15px;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    text-indent: 5px;
    box-shadow: none;
    padding: 6px;
    cursor: pointer;
    padding-right: 35px; }
  .filter-part .search-btn-holder {
    margin-top: 25px;
    text-align: left !important;
    padding: 0 !important; }
    .filter-part .search-btn-holder .filters_pane__clear-holder {
      float: left;
      text-align: right; }
      .filter-part .search-btn-holder .filters_pane__clear-holder .mobile_filters_pane__clear {
        font-size: 13px;
        color: #999;
        text-decoration: underline;
        line-height: 2.5em;
        margin-right: 5px; }
    .filter-part .search-btn-holder .searchButtonWorkshops-holder {
      float: left;
      padding: 0 5px 0 2px; }
      .filter-part .search-btn-holder .searchButtonWorkshops-holder .searchButtonWorkshops {
        font-size: 16px !important;
        width: 100% !important;
        padding-bottom: 4px !important;
        padding-top: 4px !important; }
        .filter-part .search-btn-holder .searchButtonWorkshops-holder .searchButtonWorkshops:hover, .filter-part .search-btn-holder .searchButtonWorkshops-holder .searchButtonWorkshops:focus {
          background: #5e3190 !important; }

body .custom-checkbox .custom-control-indicator,
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background: #ffffff;
  border: 1px solid #666666;
  border-radius: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

.custom-control-input:checked ~ .custom-control-indicator,
.custom-control-input:active ~ .custom-control-indicator {
  color: #ffffff;
  background-color: #666666; }

.custom-control-input:focus ~ .custom-control-indicator {
  box-shadow: none; }

.custom-checkbox .custom-control-description {
  color: #666666;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

.custom-control-input:checked ~ .custom-control-description,
.custom-control-input:active ~ .custom-control-description {
  color: #5e3190; }

.checkbox-holder {
  margin-bottom: 5px; }
  .checkbox-holder.child {
    padding-left: 20px; }

.header-part .header-part-title {
  font-size: 30px;
  color: #5e3190;
  margin-bottom: 20px; }

.header-part .header-part-text {
  color: #606060; }

.filter-part {
  background: #f6f6f6;
  padding: 20px 0 15px 0;
  border-radius: 0; }
  .filter-part #accordion {
    width: 100%; }
    .filter-part #accordion .search-btn-holder {
      margin-bottom: 15px;
      text-align: right;
      padding: 0 15px; }
      .filter-part #accordion .search-btn-holder .primary-btn {
        width: 75%;
        font-size: 120%;
        text-align: center; }
    .filter-part #accordion .filters-item {
      margin-bottom: 10px; }
      .filter-part #accordion .filters-item .filters-item-title {
        padding: 0 5px;
        margin-bottom: 0; }
        .filter-part #accordion .filters-item .filters-item-title:after {
          font-family: FontAwesome;
          font-style: normal;
          font-weight: normal;
          speak: none;
          pointer-events: none;
          display: inline-block;
          text-decoration: inherit;
          width: 1em;
          margin-right: .2em;
          padding-right: .4em;
          text-align: center;
          color: #999;
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          line-height: 0.1em;
          font-size: 120%;
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: '\f067';
          color: #5e3190;
          position: absolute;
          line-height: 0;
          font-size: 90%;
          top: 17px;
          right: 20px; }
        .filter-part #accordion .filters-item .filters-item-title.input__selected-purple select {
          color: #5e3190; }
        .filter-part #accordion .filters-item .filters-item-title #filters__levelSelectMobile, .filter-part #accordion .filters-item .filters-item-title #filters__timeSelectMobile {
          font-size: 13px;
          height: 32px;
          border-radius: 50px; }
          .filter-part #accordion .filters-item .filters-item-title #filters__levelSelectMobile:focus, .filter-part #accordion .filters-item .filters-item-title #filters__timeSelectMobile:focus {
            box-shadow: none !important; }
        .filter-part #accordion .filters-item .filters-item-title > span {
          float: left;
          padding: 5px 0;
          font-size: 13px;
          font-weight: 500; }
        .filter-part #accordion .filters-item .filters-item-title a {
          font-size: 13px;
          float: right;
          width: 70%;
          background: #ffffff;
          padding: 6px 25px 7px 15px;
          border-radius: 25px;
          text-decoration: none;
          color: #666666;
          border-bottom-left-radius: 0;
          border-bottom-right-radius: 0;
          position: relative; }
          .filter-part #accordion .filters-item .filters-item-title a.ui-state-selected {
            color: #5e3190; }
          .filter-part #accordion .filters-item .filters-item-title a.collapsed {
            border-radius: 50px; }
            .filter-part #accordion .filters-item .filters-item-title a.collapsed span:nth-child(1) {
              position: absolute;
              right: 10px;
              top: 50%;
              margin-top: -1px;
              display: block;
              width: 15px;
              height: 3px;
              background: #5e3190;
              -webkit-transform: rotate(-90deg);
              -o-transform: rotate(-90deg);
                 transform: rotate(-90deg);
              -webkit-transition: .25s ease-in-out;
              -o-transition: .25s ease-in-out;
              transition: .25s ease-in-out;
              visibility: hidden; }
      .filter-part #accordion .filters-item .filters-item-content {
        background: #ffffff;
        padding: 25px 15px; }
        .filter-part #accordion .filters-item .filters-item-content .calendar-holder:after {
          content: "";
          display: table;
          clear: both; }
        .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar {
          float: right;
          width: 290px;
          box-shadow: none; }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar:after {
            display: none; }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar:before {
            display: none; }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month {
            top: 2px;
            height: 24px;
            line-height: 24px; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month:before {
              content: "\f104";
              text-align: left;
              padding-left: 7px;
              display: block;
              height: 24px;
              width: 24px;
              font: normal normal normal 14px/1 FontAwesome;
              font-size: 20px;
              line-height: 22px;
              text-rendering: auto;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
              color: #5e3190;
              -webkit-transition: .4s;
              -o-transition: .4s;
              transition: .4s;
              border: 1px solid #5e3190;
              border-radius: 50px; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month svg {
              display: none; }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-current-month {
            top: 2px;
            color: #666666;
            text-transform: lowercase; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-current-month input.cur-year {
              font-weight: 700; }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month {
            top: 2px;
            height: 24px;
            line-height: 24px; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month:before {
              content: "\f105";
              text-align: right;
              padding-right: 7px;
              display: block;
              height: 24px;
              width: 24px;
              font: normal normal normal 14px/1 FontAwesome;
              font-size: 20px;
              line-height: 22px;
              text-rendering: auto;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
              color: #5e3190;
              -webkit-transition: .4s;
              -o-transition: .4s;
              transition: .4s;
              border: 1px solid #5e3190;
              border-radius: 50px; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month svg {
              display: none; }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days {
            width: 290px;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day {
              max-width: calc(290px / 7);
              margin: -1px 0 0 -1px;
              border: 1px solid #666666;
              border-radius: 0;
              font-weight: 700;
              color: #606060; }
              .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.selected {
                background: #5e3190;
                border-color: #5e3190;
                z-index: 1;
                color: #ffffff; }
              .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.inRange {
                background: #ae98c7;
                box-shadow: none;
                border-color: #5e3190;
                z-index: 1;
                color: #ffffff; }
              .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.prevMonthDay, .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.nextMonthDay {
                color: rgba(57, 57, 57, 0.3); }
          .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time {
            border-top: none;
            line-height: 60px;
            max-height: 60px; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper {
              height: 60px;
              width: 48%;
              padding-right: 30px; }
              .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input {
                font-size: 30px;
                color: #5e3190; }
                .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input.flatpickr-hour {
                  font-weight: normal; }
                .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input::selection {
                  background: transparent; }
                .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input::-moz-selection {
                  background: transparent; }
              .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span {
                width: 30px; }
                .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span:after {
                  top: 50%;
                  left: 50%;
                  margin-left: -4px;
                  margin-top: -2px; }
                .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span.arrowUp:after {
                  border-bottom-color: #5e3190; }
                .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span.arrowDown:after {
                  border-top-color: #5e3190; }
            .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .flatpickr-time-separator {
              font-size: 30px;
              width: 4%;
              color: #5e3190; }
    .filter-part #accordion .clear-btn-holder {
      text-align: right;
      padding: 0 15px; }

.content-part {
  padding: 30px 15px; }
  .content-part .content-part-item {
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(153, 153, 153, 0.4); }
    .content-part .content-part-item:nth-child(odd) .content-part-item-description {
      background: #ebebeb; }
    .content-part .content-part-item:nth-child(even) .content-part-item-description {
      background: #f5f5f5; }
    .content-part .content-part-item:last-child {
      border-bottom: none; }
    .content-part .content-part-item .content-part-item-description {
      padding: 15px;
      margin-bottom: 5px;
      border-radius: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .content-part .content-part-item .content-part-item-description .item-left-part {
        position: relative;
        min-height: 1px;
        width: 100%;
        color: #666666; }
        .content-part .content-part-item .content-part-item-description .item-left-part .item-date {
          font-weight: bold; }
        .content-part .content-part-item .content-part-item-description .item-left-part .timeStart {
          margin: 5px 0; }
      .content-part .content-part-item .content-part-item-description .item-right-part {
        position: relative;
        min-height: 1px;
        width: 100%;
        padding-top: 10px;
        color: #5e3190; }
        .content-part .content-part-item .content-part-item-description .item-right-part .item-class-name {
          font-weight: bold; }
    .content-part .content-part-item.__cancelled .item-left-part {
      opacity: 0.5; }
    .content-part .content-part-item.__cancelled .item-right-part {
      padding-left: 10px !important; }
      .content-part .content-part-item.__cancelled .item-right-part .primary-btn {
        background: transparent !important;
        color: #5e3190 !important; }

.aqua-color .custom-control-input:checked ~ .custom-control-description,
.aqua-color .custom-control-input:active ~ .custom-control-description {
  color: #1fbab0; }

.aqua-color .header-part .header-part-title {
  color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-title > span {
  color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-title a span:nth-child(1) {
  background: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-title a span:nth-child(2) {
  background: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-title a.collapsed span:nth-child(1) {
  background: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month:before {
  color: #1fbab0;
  border: 1px solid #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month:before {
  color: #1fbab0;
  border: 1px solid #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.selected {
  background: #1fbab0;
  border-color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.inRange {
  border-color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input {
  color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #1fbab0; }

.aqua-color .filter-part #accordion .filters-item .filters-item-content .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .flatpickr-time-separator {
  color: #1fbab0; }

.aqua-color .content-part .content-part-item-description .item-right-part {
  color: #1fbab0; }

.where-mobile .dropdown-menu, .what-mobile .dropdown-menu, .with-mobile .dropdown-menu {
  list-style: inside;
  padding: 5px;
  position: relative;
  border: 0; }
  .where-mobile .dropdown-menu li, .what-mobile .dropdown-menu li, .with-mobile .dropdown-menu li {
    list-style-image: url("../images/list-unchecked.png");
    padding: 5px 0;
    font-size: 120%;
    width: 50%;
    float: left; }
    .where-mobile .dropdown-menu li a, .what-mobile .dropdown-menu li a, .with-mobile .dropdown-menu li a {
      color: #666666; }
    .where-mobile .dropdown-menu li.selected, .what-mobile .dropdown-menu li.selected, .with-mobile .dropdown-menu li.selected {
      list-style-image: url("../images/list-checked.png"); }

.where-mobile .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn), .what-mobile .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn), .with-mobile .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%; }

.treat-meta {
  width: 100%;
  display: block;
  border-top: 1px solid #eaeaea;
  margin-top: 10px;
  padding-top: 0px; }
  .treat-meta .timeLength,
  .treat-meta .timeStart,
  .treat-meta .item-price {
    width: 33.333%;
    padding-right: 20px; }
    @media (max-width: 575px) {
      .treat-meta .timeLength,
      .treat-meta .timeStart,
      .treat-meta .item-price {
        padding-right: 10px; } }
  .treat-meta select {
    margin-top: 3px;
    color: #666666;
    line-height: 20px;
    width: 100%;
    padding: 6px;
    box-shadow: none;
    border-radius: 15px;
    text-align: left;
    text-indent: 0.01px;
    text-overflow: '';
    padding-left: 6px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important; }
  .treat-meta .select-wrapper:after,
  .treat-meta .timeStart:after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    speak: none;
    pointer-events: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    padding-right: .4em;
    text-align: center;
    color: #999;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    line-height: 0.1em;
    font-size: 120%;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f107';
    position: absolute;
    margin-top: 19px;
    margin-left: -20px;
    color: #999; }

.item-sub-head {
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  display: block;
  margin-top: 10px; }

.btn-block.clickdropin {
  opacity: 0.4; }

@media (max-width: 991px) {
  body.page-template-schedule-classes .ui-datepicker {
    border-radius: 0;
    border: none; }
    body.page-template-schedule-classes .ui-datepicker table {
      margin: 0 auto;
      width: 100%; }
      body.page-template-schedule-classes .ui-datepicker table .ui-state-default {
        padding: 12px 9px; }
    body.page-template-schedule-classes .ui-datepicker .ui-datepicker-title {
      margin-top: -10px;
      margin-bottom: 20px; } }

body.page-template-schedule-classes .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable {
  background-color: rgba(245, 245, 245, 0.3); }

body.page-template-schedule-classes .ui-datepicker .ui-datepicker-calendar .ui-state-disabled span {
  background: #ebebeb;
  color: rgba(153, 153, 153, 0.5); }

body.page-template-schedule-classes .ui-datepicker .ui-datepicker-calendar .ui-state-default span {
  background-color: #F5F5F5; }

body.page-template-schedule-classes .filter-part .when__filter .when-inputs {
  padding: 0 15%; }
  body.page-template-schedule-classes .filter-part .when__filter .when-inputs input {
    background: transparent;
    text-align: center; }
    body.page-template-schedule-classes .filter-part .when__filter .when-inputs input#inputWhenSimplemobile {
      color: #666666;
      margin-top: 0;
      width: 100%;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      body.page-template-schedule-classes .filter-part .when__filter .when-inputs input#inputWhenSimplemobile:focus {
        box-shadow: none !important; }

body.page-template-schedule-classes .filter-part .when__filter .calendar-holder {
  background: white;
  display: inline-block;
  height: 310px;
  width: 100%;
  margin-top: 10px; }

body.page-template-schedule-classes .filter-part #inputWhenFixed {
  width: 100%;
  display: none; }

body.page-template-schedule-classes .filter-part #filter_tabs {
  padding: 0; }
  @media (max-width: 767px) {
    body.page-template-schedule-classes .filter-part #filter_tabs {
      padding: 0 10px; } }
  body.page-template-schedule-classes .filter-part #filter_tabs > ul {
    height: 32px;
    margin-bottom: 0;
    padding: 0; }
    body.page-template-schedule-classes .filter-part #filter_tabs > ul li {
      font-size: 13px;
      list-style: none;
      float: left;
      position: relative;
      display: list-item;
      top: 0;
      margin: 0px 1em 0 1em;
      border-bottom-width: 0;
      padding: 0;
      margin: 0;
      white-space: nowrap;
      text-decoration: underline; }
      body.page-template-schedule-classes .filter-part #filter_tabs > ul li::after {
        position: absolute;
        top: 9px;
        right: 0;
        text-decoration: none; }
      body.page-template-schedule-classes .filter-part #filter_tabs > ul li#filters__toggle.after-angle-up {
        color: #5e3190; }
      body.page-template-schedule-classes .filter-part #filter_tabs > ul li#filters__toggle::after {
        right: -3px; }
      body.page-template-schedule-classes .filter-part #filter_tabs > ul li select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        padding: 0 25px 0 0;
        font-size: 13px;
        background: transparent;
        text-decoration: underline;
        color: #5e3190; }
        body.page-template-schedule-classes .filter-part #filter_tabs > ul li select:focus {
          box-shadow: none !important; }

body.page-template-schedule-classes .filter-part #filter_tab {
  display: none;
  padding: 10px 0 5px 0; }

body.page-template-schedule-classes .content-part {
  padding: 0; }
  body.page-template-schedule-classes .content-part .content-part-item {
    margin-bottom: 0; }
    body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description {
      padding: 15px;
      margin-bottom: 0;
      border-radius: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-left-part {
        position: relative;
        min-height: 1px;
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
        color: #666666;
        font-size: 12px; }
        body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-left-part .item-class-name {
          font-weight: bold;
          font-size: 13px;
          color: #5e3190;
          cursor: pointer; }
        body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-left-part .item-teacher-name {
          color: #5e3190;
          cursor: pointer; }
          body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-left-part .item-teacher-name.__substitute {
            color: #990000; }
        body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-left-part .timeStart {
          margin: 5px 0; }
      body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-right-part {
        position: relative;
        min-height: 1px;
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 30%;
        padding-left: 15px;
        color: #5e3190; }
        body.page-template-schedule-classes .content-part .content-part-item .content-part-item-description .item-right-part .btn-block {
          font-size: 13px;
          padding: 6px 5px 7px 5px; }

body.page-template-schedule-classes .item-date {
  background: #999;
  color: #ffffff;
  padding: 6px 0 7px 15px;
  font-size: 13px; }

body.page-template-schedule-classes .search-btn-holder {
  margin-top: 10px; }
  body.page-template-schedule-classes .search-btn-holder .filters_pane__clear-holder {
    float: left;
    text-align: right; }
    body.page-template-schedule-classes .search-btn-holder .filters_pane__clear-holder .mobile_filters_pane__clear {
      font-size: 13px;
      color: #999;
      text-decoration: underline;
      line-height: 2.5em;
      margin-right: 5px; }
  body.page-template-schedule-classes .search-btn-holder .searchButtonClasses-holder {
    float: left;
    padding: 0 5px 0 2px; }
    body.page-template-schedule-classes .search-btn-holder .searchButtonClasses-holder .searchButtonClasses {
      width: 100%; }
      body.page-template-schedule-classes .search-btn-holder .searchButtonClasses-holder .searchButtonClasses:hover, body.page-template-schedule-classes .search-btn-holder .searchButtonClasses-holder .searchButtonClasses:focus {
        background: #5e3190 !important; }

.multiselect__treatments {
  width: 80% !important;
  left: 10% !important;
  top: 392px !important;
  max-width: 1200px; }
  .multiselect__treatments[type=button] {
    width: 100% !important;
    text-align: left; }
    .multiselect__treatments[type=button] span {
      display: inline-block;
      width: 85%; }
  @media (max-width: 1199px) {
    .multiselect__treatments {
      left: 2.5% !important;
      width: 95% !important;
      top: 443px !important; } }
  @media (max-width: 991px) {
    .multiselect__treatments {
      display: none !important; } }
  .multiselect__treatments .ui-multiselect-checkboxes {
    padding: 0; }
  .multiselect__treatments .ui-multiselect-checkboxes label input {
    height: 1px;
    width: 1px;
    margin: 0; }
  .multiselect__treatments .multi-column-wrapper li span {
    margin-top: -17px;
    font-size: 12px; }

.treatments-page .filters .primary-btn {
  height: 32px;
  font-size: 18px;
  width: 100%; }

.treatments-page .filters .when-inputs {
  border: 1px solid #fff; }
  .treatments-page .filters .when-inputs input {
    margin: 0 !important; }
    .treatments-page .filters .when-inputs input:focus {
      box-shadow: none !important; }
  .treatments-page .filters .when-inputs.active {
    border-color: #1fbab0 !important; }

.treatments-page .filters .dropdown-menu li a .text {
  margin-right: 0 !important; }

.treatments-page .class-schedule .tab-content .tab-pane .booking-table table {
  border-spacing: 0; }
  .treatments-page .class-schedule .tab-content .tab-pane .booking-table table thead tr {
    border-bottom: none; }
  .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr {
    border-bottom: 2px solid rgba(153, 153, 153, 0.4); }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.treatmeats-table-header th {
      background-color: #1fbab0; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.treatmeats-table-header td {
      color: #ffffff;
      padding: 4px 25px;
      background-color: transparent; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.treatmeats-class td {
      -moz-border-radius: 0;
      -webkit-border-radius: 0; }
      .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.treatmeats-class td.timeStart::after {
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        speak: none;
        pointer-events: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        padding-right: .4em;
        text-align: center;
        color: #999;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        line-height: 0.1em;
        font-size: 120%;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\f107';
        position: absolute;
        margin-top: 15px;
        margin-left: -20px;
        color: #999; }
      .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.treatmeats-class td.timeLength select {
        margin-left: -12px; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr .timeLength {
      color: #666666; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr .price {
      color: #666666; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.space-tr {
      height: 7px; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.first-tr td:first-child {
      border-top-left-radius: 15px;
      -moz-border-radius: 15px 0 0 0;
      -webkit-border-radius: 15px 0 0 0; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.first-tr td:last-child {
      border-top-right-radius: 15px;
      -moz-border-radius: 0 15px 0 0;
      -webkit-border-radius: 0 15px 0 0; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.first-tr:only-child {
      border-bottom: none; }
      .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.first-tr:only-child td:first-child {
        -moz-border-radius: 15px 0 0 15px;
        -webkit-border-radius: 15px 0 0 15px; }
      .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.first-tr:only-child td:last-child {
        -moz-border-radius: 0 15px 15px 0;
        -webkit-border-radius: 0 15px 15px 0; }
    .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.last-tr {
      border-bottom: none; }
      .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.last-tr td:first-child {
        border-bottom-left-radius: 15px;
        -moz-border-radius: 0 0 0 15px;
        -webkit-border-radius: 0 0 0 15px; }
      .treatments-page .class-schedule .tab-content .tab-pane .booking-table table tr.last-tr td:last-child {
        border-bottom-right-radius: 15px;
        -moz-border-radius: 0 0 15px 0;
        -webkit-border-radius: 0 0 15px 0; }

.treatments-page .treatmeats-class {
  border-spacing: 0; }

.ui-multiselect {
  padding: 2px 0 2px 4px;
  text-align: left;
  z-index: 999;
  border-radius: 10px;
  width: 100%;
  background: #fff;
  color: #999;
  cursor: pointer;
  border: 0; }

.ui-multiselect span.ui-icon {
  float: right; }

.ui-multiselect-single .ui-multiselect-checkboxes label {
  padding: 5px !important; }

.ui-multiselect-header {
  margin-bottom: 3px;
  padding: 3px 0 3px 4px; }

.ui-multiselect-header ul {
  font-size: 0.9em; }

.ui-multiselect-header ul li {
  float: left;
  padding: 0 10px 0 0; }

.ui-multiselect-header a {
  text-decoration: none; }

.ui-multiselect-header a:hover {
  text-decoration: underline; }

.ui-multiselect-header span.ui-icon {
  float: left; }

.ui-multiselect-header .ui-multiselect-close {
  float: right;
  padding-right: 0;
  text-align: right; }

.ui-multiselect-menu {
  display: none;
  padding: 3px 20px;
  position: absolute;
  text-align: left;
  background-color: #fff;
  z-index: 999;
  border-radius: 10px;
  border: 1px solid #e4e4e4 !important; }
  .ui-multiselect-menu:hover, .ui-multiselect-menu:active {
    border: 1px solid #e4e4e4 !important; }

.ui-multiselect-checkboxes label {
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
  padding: 3px 1px;
  margin-bottom: 0; }

.ui-multiselect-checkboxes label input {
  position: relative;
  top: 1px;
  margin-right: 5px; }

.ui-multiselect-checkboxes li {
  clear: both;
  font-size: 0.9em;
  list-style: none;
  padding-right: 3px;
  font-size: 14px;
  line-height: 16px; }

.ui-multiselect-checkboxes .ui-multiselect-optgroup {
  padding: 3px; }

.ui-multiselect-columns {
  display: inline-block;
  vertical-align: top; }

.ui-multiselect-checkboxes .ui-multiselect-optgroup a {
  border: none;
  cursor: pointer;
  display: block;
  font-weight: bold;
  margin: 1px 0;
  padding: 3px;
  text-decoration: none;
  font-size: 15px;
  line-height: 16px;
  color: #666666;
  font-weight: normal; }
  .ui-multiselect-checkboxes .ui-multiselect-optgroup a:before {
    width: 11px;
    height: 11px;
    margin-top: 0.22em;
    margin-bottom: 1em;
    border: 1px solid #666666;
    background: #fff;
    content: '';
    float: left;
    margin-right: 10px; }
  .ui-multiselect-checkboxes .ui-multiselect-optgroup a:hover {
    color: #666666;
    opacity: 1; }

@media print {
  .ui-multiselect-menu {
    display: none; } }

.multi-column-wrapper {
  float: left;
  white-space: normal; }
  .multi-column-wrapper .ui-multiselect-optgroup {
    margin-top: 15px;
    width: 20%; }
    .multi-column-wrapper .ui-multiselect-optgroup a.active {
      color: #1fbab0; }
      .multi-column-wrapper .ui-multiselect-optgroup a.active:before {
        background: #666666; }
  .multi-column-wrapper li span {
    position: relative;
    display: block;
    padding: 0 0 0 27px; }
    .multi-column-wrapper li span::after {
      content: '';
      position: absolute;
      top: 50%;
      left: .5em;
      width: 11px;
      height: 11px;
      border: 1px solid #666666;
      box-sizing: border-box;
      background-color: #fff;
      background-image: -webkit-linear-gradient(bottom, #fff 0%, #fff 40%, transparent 100%);
      background-image: -o-linear-gradient(bottom, #fff 0%, #fff 40%, transparent 100%);
      background-image: linear-gradient(to top, #fff 0%, #fff 40%, transparent 100%);
      -webkit-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%); }
  .multi-column-wrapper li input:checked + span {
    color: #1fbab0; }
    .multi-column-wrapper li input:checked + span::after {
      background: #666666;
      color: #1fbab0; }

input[name="multiselect_inputWhatT"],
input[name="multiselect_inputWhatTmobile"] {
  opacity: 0;
  position: absolute; }

body.page-template-schedule-treatments .ui-datepicker .ui-datepicker-prev::before,
body.page-template-schedule-treatments .ui-datepicker .ui-datepicker-next::before {
  border-color: #1fbab0;
  color: #1fbab0; }

body.page-template-schedule-treatments .ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-active {
  background: #1fbab0; }

.time-meta select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  color: #666666;
  line-height: 20px;
  width: 100%;
  text-indent: 5px;
  padding: 6px;
  box-shadow: none;
  border-radius: 15px;
  text-align: center;
  pointer-events: none; }

.time-meta::after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  speak: none;
  pointer-events: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  padding-right: .4em;
  text-align: center;
  color: #999;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  line-height: 0.1em;
  font-size: 120%;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f107';
  position: absolute;
  margin-top: 15px;
  margin-left: -20px;
  color: #999; }

.ta-left {
  text-align: left; }

.ta-center {
  text-align: center; }

.ta-right {
  text-align: right; }

.hidden {
  display: none; }

.showed {
  display: block; }

.pt-10 {
  padding-top: 10px; }

.pt-20 {
  padding-top: 20px; }

.pt-30 {
  padding-top: 30px; }

.pt-40 {
  padding-top: 40px; }

.pt-50 {
  padding-top: 50px; }

.pt-70 {
  padding-top: 70px; }

.pb-10 {
  padding-bottom: 10px; }

.pb-20 {
  padding-bottom: 20px; }

.pb-30 {
  padding-bottom: 30px; }

.pb-40 {
  padding-bottom: 40px; }

.mb-10 {
  margin-bottom: 10px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-40 {
  margin-bottom: 40px; }

@media (min-width: 1200px) {
  .custom-padding {
    padding: 0 100px; }
  .custom-padding-170 {
    padding: 0 170px; } }

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.class-page-section {
  padding-top: 0;
  padding-bottom: 35px; }
  .class-page-section .class-content-holder .class-back-link-holder {
    margin-bottom: 20px;
    font-size: 14px; }
    .class-page-section .class-content-holder .class-back-link-holder .back-link {
      color: #606060;
      text-decoration: underline;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .class-page-section .class-content-holder .class-back-link-holder .back-link:hover {
        text-decoration: none; }
  .class-page-section .class-content-holder .class-title {
    font-size: 28px;
    font-weight: 500;
    color: #5e3190;
    margin-bottom: 40px; }
  .class-page-section .class-content-holder .class-content {
    color: #666666; }
    .class-page-section .class-content-holder .class-content h5 {
      color: #606060; }
    .class-page-section .class-content-holder .class-content p {
      margin-bottom: 30px; }
    .class-page-section .class-content-holder .class-content a {
      color: #606060;
      text-decoration: underline;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .class-page-section .class-content-holder .class-content a:hover {
        text-decoration: none; }
    .class-page-section .class-content-holder .class-content .embed-responsive {
      margin-bottom: 50px; }
  .class-page-section .class-sidebar {
    background: #f6f6f6;
    color: #666666;
    padding: 15px 20px; }
    .class-page-section .class-sidebar .sidebar-image {
      margin-bottom: 40px; }
      .class-page-section .class-sidebar .sidebar-image:before {
        content: "";
        display: block;
        width: 100%;
        height: 7px;
        margin-bottom: 6px;
        background: #5e3190; }
      .class-page-section .class-sidebar .sidebar-image img {
        width: 100%; }
    .class-page-section .class-sidebar .yoga-levels {
      margin-bottom: 40px;
      font-size: 18px; }
    .class-page-section .class-sidebar h5, .class-page-section .class-sidebar h6 {
      color: #606060; }
    .class-page-section .class-sidebar p {
      margin-bottom: 30px; }

.jump-to-holder {
  margin-top: 70px; }
  .jump-to-holder > h2 {
    font-size: 18px; }

.top-block:before {
  display: block;
  content: " ";
  margin-top: -150px;
  height: 150px;
  visibility: hidden; }

.level-class-title {
  font-size: 16px;
  font-weight: bold;
  color: #606060;
  margin-bottom: 8px !important; }

.class-page-section .class-content-holder .class-content h3.top-block {
  color: #666666;
  font-size: 16px;
  font-weight: bold; }

.class-page-section .class-content-holder .class-content p {
  color: #999;
  font-size: 16px; }

.my-anchor.active {
  text-decoration: none !important; }

.single-service-page .service-banner-section .service-banner {
  position: relative;
  margin-bottom: 35px;
  padding: 0 30px; }
  .single-service-page .service-banner-section .service-banner .service-banner-description-holder {
    position: absolute;
    top: 0;
    right: 30px;
    padding: 0 25px;
    width: 400px;
    height: 100%;
    background: rgba(233, 234, 236, 0.8); }
    @media (max-width: 991px) {
      .single-service-page .service-banner-section .service-banner .service-banner-description-holder {
        width: calc(100% - 30px);
        position: relative;
        margin: 0 auto;
        margin-top: -60px;
        background: #e8e9eb;
        right: 0 !important; } }
    @media (max-width: 575px) {
      .single-service-page .service-banner-section .service-banner .service-banner-description-holder {
        margin-top: -30px; } }
    .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
      border-top: 7px solid #5e3190;
      padding: 30px 0; }
      .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .primary-btn {
        padding-left: 50px;
        padding-right: 50px; }
      @media (max-width: 991px) {
        .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
          max-width: 100% !important;
          width: 100%; } }
      .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
        color: #5e3190;
        font-size: 44px;
        line-height: 50px;
        font-weight: 500; }
        @media (max-width: 1199px) {
          .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
            font-size: 30px;
            line-height: 35px; } }
      .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-sub-title {
        font-size: 44px;
        line-height: 50px;
        font-weight: 500;
        margin-bottom: 40px; }
        @media (max-width: 1199px) {
          .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-sub-title {
            font-size: 30px;
            line-height: 35px;
            margin-bottom: 10px; } }
      .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-text {
        margin-bottom: 43px; }

.single-service-page .back-link-holder {
  font-size: 14px;
  padding-bottom: 0;
  margin-bottom: 54px; }
  .single-service-page .back-link-holder .back-link {
    color: #666666;
    text-decoration: underline;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }

.single-service-page .yoga-class-menu-section {
  padding: 20px 0; }
  .single-service-page .yoga-class-menu-section .menu {
    text-align: center;
    background: #f6f6f6;
    border-radius: 15px;
    font-size: 0; }
    .single-service-page .yoga-class-menu-section .menu ul {
      padding: 20px 0;
      margin: 0; }
      @media (max-width: 991px) {
        .single-service-page .yoga-class-menu-section .menu ul {
          padding: 15px 0; } }
      .single-service-page .yoga-class-menu-section .menu ul li {
        list-style: disc !important;
        display: inline-block;
        padding: 0 38px;
        border-right: 1px solid #606060; }
        @media (max-width: 991px) {
          .single-service-page .yoga-class-menu-section .menu ul li {
            padding: 0 20px; } }
        .single-service-page .yoga-class-menu-section .menu ul li a {
          color: #666666;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s;
          font-size: 16px;
          line-height: 18px; }
          @media (max-width: 991px) {
            .single-service-page .yoga-class-menu-section .menu ul li a {
              font-size: 15px;
              line-height: 17px; } }
          .single-service-page .yoga-class-menu-section .menu ul li a:hover {
            text-decoration: underline; }
        .single-service-page .yoga-class-menu-section .menu ul li:last-child {
          border-right: 1px solid transparent; }

.single-service-page .yoga-class-description-section {
  padding: 30px 0 25px; }
  .single-service-page .yoga-class-description-section .intro-section-title {
    font-size: 28px;
    font-weight: 500;
    color: #5e3190;
    margin-bottom: 40px; }
  .single-service-page .yoga-class-description-section .title h2 {
    font-size: 30px;
    font-weight: 500;
    color: #5e3190;
    margin-bottom: 30px; }
  .single-service-page .yoga-class-description-section .description {
    color: #666666; }
    .single-service-page .yoga-class-description-section .description p {
      margin-bottom: 30px; }

.single-service-page .yoga-class-benefits-section {
  background: #f6f6f6;
  padding: 50px 0; }
  .single-service-page .yoga-class-benefits-section .title {
    color: #666666;
    font-size: 20px;
    font-weight: 500;
    text-align: center; }
    .single-service-page .yoga-class-benefits-section .title:after {
      content: "";
      display: block;
      margin: 16px auto 35px;
      width: 80px;
      height: 4px;
      background: #5e3190; }
  .single-service-page .yoga-class-benefits-section .list-holder {
    color: #666666; }
    .single-service-page .yoga-class-benefits-section .list-holder .list-title {
      color: #606060;
      font-weight: 500; }
    .single-service-page .yoga-class-benefits-section .list-holder ul {
      padding-left: 20px;
      margin-bottom: 30px; }

.single-service-page .yoga-classes-section {
  padding: 0px 0 50px; }
  .single-service-page .yoga-classes-section .section-title {
    font-size: 20px;
    font-weight: 500;
    color: #666666;
    margin-top: 20px; }
  .single-service-page .yoga-classes-section .classes-item {
    padding: 0 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    height: 100%;
    display: inline-block;
    position: relative;
    width: 100%; }
    .single-service-page .yoga-classes-section .classes-item:hover {
      opacity: 0.6; }
      .single-service-page .yoga-classes-section .classes-item:hover .primary-btn:hover {
        background-color: #5e3190 !important; }
      .single-service-page .yoga-classes-section .classes-item:hover .primary-outline-btn {
        background-color: #5e3190;
        color: #ffffff !important;
        border: none !important;
        height: 32px; }
  .single-service-page .yoga-classes-section .classes-item-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
    margin-bottom: 30px;
    height: 100%; }
  .single-service-page .yoga-classes-section .classes-title {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    color: #5e3190;
    padding: 15px 0 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: 0;
    display: block; }
  .single-service-page .yoga-classes-section .classes-excerpt {
    color: #666666;
    margin-bottom: 50px;
    min-height: 70px;
    display: block; }
  .single-service-page .yoga-classes-section .classes-image {
    display: block; }
    .single-service-page .yoga-classes-section .classes-image img {
      width: 100%;
      max-width: 100%; }
    .single-service-page .yoga-classes-section .classes-image:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s; }
  .single-service-page .yoga-classes-section .primary-btn {
    min-width: 160px;
    max-width: 285px;
    width: 90%;
    height: 32px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    position: absolute;
    bottom: 0; }
  .single-service-page .yoga-classes-section .primary-outline-btn {
    min-width: 160px;
    max-width: 285px;
    width: 285px;
    text-align: center;
    height: 32px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    position: absolute;
    bottom: 0; }

.single-service-page .feature-classes-section {
  padding: 40px 0; }
  .single-service-page .feature-classes-section:last-child {
    margin-bottom: 80px; }
  .single-service-page .feature-classes-section .feature-classes-left-part {
    text-align: center;
    width: 90%;
    margin: 0 auto 30px;
    max-width: 680px; }
    .single-service-page .feature-classes-section .feature-classes-left-part .action-title {
      color: #666666;
      font-size: 20px;
      line-height: 26px;
      font-weight: 500; }
      .single-service-page .feature-classes-section .feature-classes-left-part .action-title:after {
        content: "";
        display: block;
        margin: 15px auto;
        width: 80px;
        height: 4px;
        background: #5e3190; }
    .single-service-page .feature-classes-section .feature-classes-left-part .title {
      color: #5e3190;
      font-size: 44px;
      font-weight: 500;
      line-height: 50px;
      margin-bottom: 20px; }
    .single-service-page .feature-classes-section .feature-classes-left-part .excerpt {
      color: #666666;
      margin-bottom: 20px; }
    .single-service-page .feature-classes-section .feature-classes-left-part .btn-holder a {
      margin: 0 5px; }
      .single-service-page .feature-classes-section .feature-classes-left-part .btn-holder a:last-child {
        margin-top: 10px; }
  .single-service-page .feature-classes-section .feature-classes-right-part {
    margin-bottom: 0px; }
    .single-service-page .feature-classes-section .feature-classes-right-part:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s; }

.single-service-page .classes-grid-section {
  padding-top: 40px;
  padding-bottom: 40px; }
  .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
    .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item:hover {
      opacity: 0.6; }
    .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
      position: relative;
      min-height: 1px;
      width: 100%; }
      @media (max-width: 575px) {
        .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          max-width: 100%; } }
      .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
        content: "";
        display: block;
        height: 7px;
        margin-bottom: 6px;
        background: #5e3190;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s; }
      .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:after {
        top: 50%;
        content: " ";
        position: absolute;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 20px 0;
        border-color: transparent #ffffff transparent transparent;
        margin-top: -10px; }
    .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
      position: relative;
      min-height: 1px;
      width: 100%;
      padding-top: 5px;
      padding-left: 15px; }
      @media (max-width: 575px) {
        .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          max-width: 100%;
          padding: 15px 0 0 0; } }
      .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        color: #5e3190;
        margin-bottom: 10px; }
      .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-excerpt {
        color: #666666; }
  @media (min-width: 576px) {
    .single-service-page .classes-grid-section .classes-grid-item-holder:nth-of-type(4n+1) .classes-grid-item-description, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-of-type(4n+2) .classes-grid-item-description {
      padding-left: 15px; } }
  @media (min-width: 576px) {
    .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n) .classes-grid-item-image, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n-1) .classes-grid-item-image {
      left: 50%; }
      .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n) .classes-grid-item-image:after, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n-1) .classes-grid-item-image:after {
        border-width: 20px 0 20px 20px;
        border-color: transparent transparent transparent #ffffff; } }
  .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n) .classes-grid-item-image:after, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n-1) .classes-grid-item-image:after {
    left: 0;
    border-left-color: #ffffff; }
  @media (min-width: 576px) {
    .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n) .classes-grid-item-description, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n-1) .classes-grid-item-description {
      padding-right: 15px;
      right: 50%; } }
  .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n-2) .classes-grid-item-image, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-child(4n-3) .classes-grid-item-image {
    left: auto; }
  .single-service-page .classes-grid-section.o-bg-1 .classes-grid-item-holder:nth-child(4n) .classes-grid-item .classes-grid-item-image:after, .single-service-page .classes-grid-section.o-bg-1 .classes-grid-item-holder:nth-child(4n-1) .classes-grid-item .classes-grid-item-image:after {
    border-color: transparent transparent transparent #f6f6f6; }
  .single-service-page .classes-grid-section.o-bg-1 .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:after {
    border-color: transparent #f6f6f6 transparent transparent; }

.single-service-page .blog-feature-bar {
  padding: 30px 0; }
  .single-service-page .blog-feature-bar .blog-feature-item {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
    .single-service-page .blog-feature-bar .blog-feature-item:hover {
      opacity: 0.6; }
    .single-service-page .blog-feature-bar .blog-feature-item .blog-feature-image-holder img {
      width: 100%; }
    .single-service-page .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s; }
    .single-service-page .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
      background: rgba(94, 49, 144, 0.6); }
    .single-service-page .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder {
      padding: 20px 0; }
      .single-service-page .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        color: #5e3190;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        text-decoration: none; }
        .single-service-page .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
          color: rgba(94, 49, 144, 0.6);
          text-decoration: none; }

.single-service-page .most-popular-section {
  padding: 30px 0; }
  .single-service-page .most-popular-section .blog-feature-item {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: block; }
    .single-service-page .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s; }
    .single-service-page .most-popular-section .blog-feature-item .blog-feature-item-title-holder {
      display: block;
      padding: 20px 0; }
      .single-service-page .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
        display: block;
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        color: #5e3190;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        text-decoration: none; }
        .single-service-page .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
          color: #5e3190;
          text-decoration: none; }
    .single-service-page .most-popular-section .blog-feature-item:hover {
      opacity: 0.6; }

.single-service-page .text-and-image {
  padding: 30px 0; }
  .single-service-page .text-and-image .image-holder:before {
    content: "";
    display: block;
    height: 7px;
    margin-bottom: 6px;
    background: #5e3190;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }

.single-service-page .treatments-grid {
  padding: 50px 0;
  display: block; }
  .single-service-page .treatments-grid .treatment-grid-row {
    display: inline-block;
    margin-bottom: 65px; }
    .single-service-page .treatments-grid .treatment-grid-row:last-child {
      margin-bottom: 0; }
      .single-service-page .treatments-grid .treatment-grid-row:last-child .treatment-grid-item:last-child .blog-feature-item {
        display: none; }
  .single-service-page .treatments-grid .treatment-grid-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
    position: relative; }
  .single-service-page .treatments-grid .treatment-excerpt {
    display: block;
    margin-bottom: 50px; }
  .single-service-page .treatments-grid .blog-feature-item {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    height: 100%;
    display: inline-block;
    padding: 0 15px; }
    .single-service-page .treatments-grid .blog-feature-item:hover {
      opacity: 0.6; }
    .single-service-page .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s; }
    .single-service-page .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
      background: #5e3190; }
    .single-service-page .treatments-grid .blog-feature-item .blog-feature-item-title-holder {
      padding: 20px 0;
      display: block; }
      .single-service-page .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
        display: block;
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        color: #5e3190;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        text-decoration: none; }
        .single-service-page .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
          color: #5e3190;
          text-decoration: none; }
    .single-service-page .treatments-grid .blog-feature-item p {
      color: #666666; }
  .single-service-page .treatments-grid .treament-btn {
    position: absolute;
    bottom: 0; }

.single-service-page.primary-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #5e3190;
  max-width: 400px; }
  .single-service-page.primary-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #5e3190; }

.single-service-page.primary-color .yoga-class-description-section .intro-section-title {
  color: #5e3190;
  margin-bottom: 40px; }

.single-service-page.primary-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #5e3190; }

.single-service-page.primary-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(94, 49, 144, 0.6); }

.single-service-page.primary-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #5e3190; }
  .single-service-page.primary-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(94, 49, 144, 0.6); }

.single-service-page.primary-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #5e3190; }

.single-service-page.primary-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #5e3190; }

.single-service-page.primary-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #5e3190; }
  .single-service-page.primary-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #5e3190; }

.single-service-page.primary-color .text-and-image .image-holder:before {
  content: "";
  background: #5e3190; }

.single-service-page.primary-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #5e3190; }

.single-service-page.primary-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #5e3190; }

.single-service-page.primary-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #5e3190; }
  .single-service-page.primary-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #5e3190; }

.single-service-page.primary-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #5e3190 !important; }

.single-service-page.primary-color .primary-btn {
  background: #5e3190 !important; }
  .single-service-page.primary-color .primary-btn:hover {
    background: rgba(94, 49, 144, 0.6) !important; }

.single-service-page.primary-color .primary-outline-btn {
  color: #5e3190 !important;
  border: 1px solid #5e3190 !important; }
  .single-service-page.primary-color .primary-outline-btn:hover {
    color: white;
    border: 1px solid rgba(94, 49, 144, 0.6) !important;
    background: rgba(94, 49, 144, 0.6) !important; }

.single-service-page.primary-color .primary-link {
  color: #5e3190; }
  .single-service-page.primary-color .primary-link:hover {
    color: rgba(94, 49, 144, 0.6); }

.single-service-page.primary-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #5e3190; }
  .single-service-page.primary-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #5e3190; }
  .single-service-page.primary-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #5e3190; }
  .single-service-page.primary-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #5e3190 !important; }
    .single-service-page.primary-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(94, 49, 144, 0.6) !important; }

.single-service-page.primary-color .yoga-class-description-section .title h2, .single-service-page.primary-color .yoga-class-description-section .title h3, .single-service-page.primary-color .yoga-class-description-section .title h6 {
  color: #5e3190; }

.single-service-page.primary-color .yoga-class-benefits-section .title:after {
  background: #5e3190; }

.single-service-page.primary-color .yoga-classes-section .classes-item .classes-image:before {
  background: #5e3190; }

.single-service-page.primary-color .yoga-classes-section .classes-item .classes-title {
  color: #5e3190; }

.single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #5e3190; }

.single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #5e3190; }

.single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #5e3190; }
  .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #5e3190; }
  .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(94, 49, 144, 0.6); }
    .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.primary-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(94, 49, 144, 0.6); }

.single-service-page.primary-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #5e3190; }

.single-service-page.primary-color .feature-classes-section .feature-classes-left-part .title {
  color: #5e3190; }

.single-service-page.primary-color .feature-classes-section .feature-classes-right-part:before {
  background: #5e3190; }

.single-service-page.primary-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #5e3190; }

.single-service-page.primary-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #5e3190; }

.single-service-page.yellow-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #fdbf56; }
  .single-service-page.yellow-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #fdbf56; }

.single-service-page.yellow-color .yoga-class-description-section .intro-section-title {
  color: #fdbf56; }

.single-service-page.yellow-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #fdbf56; }

.single-service-page.yellow-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(253, 191, 86, 0.6); }

.single-service-page.yellow-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #fdbf56; }
  .single-service-page.yellow-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(253, 191, 86, 0.6); }

.single-service-page.yellow-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #fdbf56; }

.single-service-page.yellow-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #fdbf56; }

.single-service-page.yellow-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #fdbf56; }
  .single-service-page.yellow-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #fdbf56; }

.single-service-page.yellow-color .text-and-image .image-holder:before {
  content: "";
  background: #fdbf56; }

.single-service-page.yellow-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #fdbf56; }

.single-service-page.yellow-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #fdbf56; }

.single-service-page.yellow-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #fdbf56; }
  .single-service-page.yellow-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #fdbf56; }

.single-service-page.yellow-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #fdbf56 !important; }

.single-service-page.yellow-color .primary-btn {
  background: #fdbf56 !important; }
  .single-service-page.yellow-color .primary-btn:hover {
    background: rgba(253, 191, 86, 0.6) !important; }

.single-service-page.yellow-color .primary-outline-btn {
  color: #fdbf56 !important;
  border: 1px solid #fdbf56 !important; }
  .single-service-page.yellow-color .primary-outline-btn:hover {
    color: rgba(253, 191, 86, 0.6) !important;
    border: 1px solid rgba(253, 191, 86, 0.6) !important; }

.single-service-page.yellow-color .primary-link {
  color: #fdbf56; }
  .single-service-page.yellow-color .primary-link:hover {
    color: rgba(253, 191, 86, 0.6); }

.single-service-page.yellow-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #fdbf56; }
  .single-service-page.yellow-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #fdbf56; }
  .single-service-page.yellow-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #fdbf56; }
  .single-service-page.yellow-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #fdbf56 !important; }
    .single-service-page.yellow-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(253, 191, 86, 0.6) !important; }

.single-service-page.yellow-color .yoga-class-description-section .title h2, .single-service-page.yellow-color .yoga-class-description-section .title h3, .single-service-page.yellow-color .yoga-class-description-section .title h6 {
  color: #fdbf56; }

.single-service-page.yellow-color .yoga-class-benefits-section .title:after {
  background: #fdbf56; }

.single-service-page.yellow-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #fdbf56 !important; }

.single-service-page.yellow-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(253, 191, 86, 0.6); }

.single-service-page.yellow-color .yoga-classes-section .classes-item .classes-image:before {
  background: #fdbf56; }

.single-service-page.yellow-color .yoga-classes-section .classes-item .classes-title {
  color: #fdbf56; }

.single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #fdbf56; }

.single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #fdbf56; }

.single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #fdbf56; }
  .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #fdbf56; }
  .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(253, 191, 86, 0.6); }
    .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.yellow-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(253, 191, 86, 0.6); }

.single-service-page.yellow-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #fdbf56; }

.single-service-page.yellow-color .feature-classes-section .feature-classes-left-part .title {
  color: #fdbf56; }

.single-service-page.yellow-color .feature-classes-section .feature-classes-right-part:before {
  background: #fdbf56; }

.single-service-page.yellow-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #fdbf56; }

.single-service-page.yellow-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #fdbf56; }

.single-service-page.pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #ff80ff; }
  .single-service-page.pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #ff80ff; }

.single-service-page.pink-color .yoga-class-description-section .intro-section-title {
  color: #ff80ff; }

.single-service-page.pink-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ff80ff; }

.single-service-page.pink-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(255, 128, 255, 0.6); }

.single-service-page.pink-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #ff80ff; }
  .single-service-page.pink-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(255, 128, 255, 0.6); }

.single-service-page.pink-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ff80ff; }

.single-service-page.pink-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #ff80ff; }

.single-service-page.pink-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #ff80ff; }
  .single-service-page.pink-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #ff80ff; }

.single-service-page.pink-color .text-and-image .image-holder:before {
  content: "";
  background: #ff80ff; }

.single-service-page.pink-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ff80ff; }

.single-service-page.pink-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #ff80ff; }

.single-service-page.pink-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #ff80ff; }
  .single-service-page.pink-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #ff80ff; }

.single-service-page.pink-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #ff80ff !important; }

.single-service-page.pink-color .primary-btn {
  background: #ff80ff !important; }
  .single-service-page.pink-color .primary-btn:hover {
    background: rgba(255, 128, 255, 0.6) !important; }

.single-service-page.pink-color .primary-outline-btn {
  color: #ff80ff !important;
  border: 1px solid #ff80ff !important; }
  .single-service-page.pink-color .primary-outline-btn:hover {
    color: rgba(255, 128, 255, 0.6) !important;
    border: 1px solid rgba(255, 128, 255, 0.6) !important; }

.single-service-page.pink-color .primary-link {
  color: #ff80ff; }
  .single-service-page.pink-color .primary-link:hover {
    color: rgba(255, 128, 255, 0.6); }

.single-service-page.pink-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #ff80ff; }
  .single-service-page.pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #ff80ff; }
  .single-service-page.pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #ff80ff; }
  .single-service-page.pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #ff80ff !important; }
    .single-service-page.pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(255, 128, 255, 0.6) !important; }

.single-service-page.pink-color .yoga-class-description-section .title h2, .single-service-page.pink-color .yoga-class-description-section .title h3, .single-service-page.pink-color .yoga-class-description-section .title h6 {
  color: #ff80ff; }

.single-service-page.pink-color .yoga-class-benefits-section .title:after {
  background: #ff80ff; }

.single-service-page.pink-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #ff80ff !important; }

.single-service-page.pink-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(255, 128, 255, 0.6); }

.single-service-page.pink-color .yoga-classes-section .classes-item .classes-image:before {
  background: #ff80ff; }

.single-service-page.pink-color .yoga-classes-section .classes-item .classes-title {
  color: #ff80ff; }

.single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #ff80ff; }

.single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #ff80ff; }

.single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #ff80ff; }
  .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #ff80ff; }
  .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(255, 128, 255, 0.6); }
    .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.pink-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(255, 128, 255, 0.6); }

.single-service-page.pink-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #ff80ff; }

.single-service-page.pink-color .feature-classes-section .feature-classes-left-part .title {
  color: #ff80ff; }

.single-service-page.pink-color .feature-classes-section .feature-classes-right-part:before {
  background: #ff80ff; }

.single-service-page.pink-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #ff80ff; }

.single-service-page.pink-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #ff80ff; }

.single-service-page.aqua-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #1fbab0; }
  .single-service-page.aqua-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #1fbab0; }

.single-service-page.aqua-color .yoga-class-description-section .intro-section-title {
  color: #1fbab0; }

.single-service-page.aqua-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #1fbab0; }

.single-service-page.aqua-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(31, 186, 176, 0.6); }

.single-service-page.aqua-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #1fbab0; }
  .single-service-page.aqua-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(31, 186, 176, 0.6); }

.single-service-page.aqua-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #1fbab0; }

.single-service-page.aqua-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #1fbab0; }
  .single-service-page.aqua-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #1fbab0; }

.single-service-page.aqua-color .text-and-image .image-holder:before {
  content: "";
  background: #1fbab0; }

.single-service-page.aqua-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #1fbab0; }

.single-service-page.aqua-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #1fbab0; }

.single-service-page.aqua-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #1fbab0; }
  .single-service-page.aqua-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #1fbab0; }

.single-service-page.aqua-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #1fbab0 !important; }

.single-service-page.aqua-color .primary-btn {
  background: #1fbab0 !important; }
  .single-service-page.aqua-color .primary-btn:hover {
    background: rgba(31, 186, 176, 0.6) !important; }

.single-service-page.aqua-color .primary-outline-btn {
  color: #1fbab0 !important;
  border: 1px solid #1fbab0 !important; }
  .single-service-page.aqua-color .primary-outline-btn:hover {
    color: rgba(31, 186, 176, 0.6) !important;
    border: 1px solid rgba(31, 186, 176, 0.6) !important; }

.single-service-page.aqua-color .primary-link {
  color: #1fbab0; }
  .single-service-page.aqua-color .primary-link:hover {
    color: rgba(31, 186, 176, 0.6); }

.single-service-page.aqua-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #1fbab0; }
  .single-service-page.aqua-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #1fbab0; }
  .single-service-page.aqua-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #1fbab0; }
  .single-service-page.aqua-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #1fbab0 !important; }
    .single-service-page.aqua-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(31, 186, 176, 0.6) !important; }

.single-service-page.aqua-color .yoga-class-description-section .title h2, .single-service-page.aqua-color .yoga-class-description-section .title h3, .single-service-page.aqua-color .yoga-class-description-section .title h6 {
  color: #1fbab0; }

.single-service-page.aqua-color .yoga-class-benefits-section .title:after {
  background: #1fbab0; }

.single-service-page.aqua-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #1fbab0 !important; }

.single-service-page.aqua-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(31, 186, 176, 0.6); }

.single-service-page.aqua-color .yoga-classes-section .classes-item .classes-image:before {
  background: #1fbab0; }

.single-service-page.aqua-color .yoga-classes-section .classes-item .classes-title {
  color: #1fbab0; }

.single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #1fbab0; }

.single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #1fbab0; }

.single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #1fbab0; }
  .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #1fbab0; }
  .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(31, 186, 176, 0.6); }
    .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.aqua-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(31, 186, 176, 0.6); }

.single-service-page.aqua-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #1fbab0; }

.single-service-page.aqua-color .feature-classes-section .feature-classes-left-part .title {
  color: #1fbab0; }

.single-service-page.aqua-color .feature-classes-section .feature-classes-right-part:before {
  background: #1fbab0; }

.single-service-page.aqua-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #1fbab0; }

.single-service-page.aqua-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #1fbab0; }

.single-service-page.red-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #ea252b; }
  .single-service-page.red-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #ea252b; }

.single-service-page.red-color .yoga-class-description-section .intro-section-title {
  color: #ea252b; }

.single-service-page.red-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ea252b; }

.single-service-page.red-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(234, 37, 43, 0.6); }

.single-service-page.red-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #ea252b; }
  .single-service-page.red-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(234, 37, 43, 0.6); }

.single-service-page.red-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ea252b; }

.single-service-page.red-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #ea252b; }

.single-service-page.red-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #ea252b; }
  .single-service-page.red-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #ea252b; }

.single-service-page.red-color .text-and-image .image-holder:before {
  content: "";
  background: #ea252b; }

.single-service-page.red-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ea252b; }

.single-service-page.red-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #ea252b; }

.single-service-page.red-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #ea252b; }
  .single-service-page.red-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #ea252b; }

.single-service-page.red-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #ea252b !important; }

.single-service-page.red-color .primary-btn {
  background: #ea252b !important;
  padding: 3px 25px;
  width: auto;
  max-width: auto; }
  .single-service-page.red-color .primary-btn:hover {
    background: rgba(234, 37, 43, 0.6) !important; }

.single-service-page.red-color .primary-outline-btn {
  color: #ea252b !important;
  border: 1px solid #ea252b !important; }
  .single-service-page.red-color .primary-outline-btn:hover {
    color: #ffffff !important;
    border: 1px solid rgba(234, 37, 43, 0.1) !important;
    background: rgba(234, 37, 43, 0.6); }

.single-service-page.red-color .primary-link {
  color: #ea252b; }
  .single-service-page.red-color .primary-link:hover {
    color: rgba(234, 37, 43, 0.6); }

.single-service-page.red-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #ea252b; }
  .single-service-page.red-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #ea252b; }
  .single-service-page.red-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #ea252b; }
  .single-service-page.red-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #ea252b !important; }
    .single-service-page.red-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(234, 37, 43, 0.6) !important; }

.single-service-page.red-color .yoga-class-description-section h1, .single-service-page.red-color .yoga-class-description-section h2, .single-service-page.red-color .yoga-class-description-section h3, .single-service-page.red-color .yoga-class-description-section h6 {
  color: #ea252b; }

.single-service-page.red-color .yoga-class-benefits-section .title:after {
  background: #ea252b; }

.single-service-page.red-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #ea252b !important; }

.single-service-page.red-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(234, 37, 43, 0.6); }

.single-service-page.red-color .yoga-classes-section .classes-item .classes-image:before {
  background: #ea252b; }

.single-service-page.red-color .yoga-classes-section .classes-item .classes-title {
  color: #ea252b; }

.single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #ea252b; }

.single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #ea252b; }

.single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #ea252b; }
  .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #ea252b; }
  .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(234, 37, 43, 0.6); }
    .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.red-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(234, 37, 43, 0.6); }

.single-service-page.red-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #ea252b; }

.single-service-page.red-color .feature-classes-section .feature-classes-left-part .title {
  color: #ea252b; }

.single-service-page.red-color .feature-classes-section .feature-classes-right-part:before {
  background: #ea252b; }

.single-service-page.red-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #ea252b; }

.single-service-page.red-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #ea252b; }

.single-service-page.green-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #78b713; }
  .single-service-page.green-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #78b713; }

.single-service-page.green-color .yoga-class-description-section .intro-section-title {
  color: #78b713; }

.single-service-page.green-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #78b713; }

.single-service-page.green-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(120, 183, 19, 0.6); }

.single-service-page.green-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #78b713; }
  .single-service-page.green-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(120, 183, 19, 0.6); }

.single-service-page.green-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #78b713; }

.single-service-page.green-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #78b713; }

.single-service-page.green-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #78b713; }
  .single-service-page.green-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #78b713; }

.single-service-page.green-color .text-and-image .image-holder:before {
  content: "";
  background: #78b713; }

.single-service-page.green-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #78b713; }

.single-service-page.green-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #78b713; }

.single-service-page.green-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #78b713; }
  .single-service-page.green-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #78b713; }

.single-service-page.green-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #78b713 !important; }

.single-service-page.green-color .primary-btn {
  background: #78b713 !important; }
  .single-service-page.green-color .primary-btn:hover {
    background: rgba(120, 183, 19, 0.6) !important; }

.single-service-page.green-color .primary-outline-btn {
  color: #78b713 !important;
  border: 1px solid #78b713 !important; }
  .single-service-page.green-color .primary-outline-btn:hover {
    color: rgba(120, 183, 19, 0.6) !important;
    border: 1px solid rgba(120, 183, 19, 0.6) !important; }

.single-service-page.green-color .primary-link {
  color: #78b713; }
  .single-service-page.green-color .primary-link:hover {
    color: rgba(120, 183, 19, 0.6); }

.single-service-page.green-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #78b713; }
  .single-service-page.green-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #78b713; }
  .single-service-page.green-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #78b713; }
  .single-service-page.green-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #78b713 !important; }
    .single-service-page.green-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(120, 183, 19, 0.6) !important; }

.single-service-page.green-color .yoga-class-description-section .title h2, .single-service-page.green-color .yoga-class-description-section .title h3, .single-service-page.green-color .yoga-class-description-section .title h6 {
  color: #78b713; }

.single-service-page.green-color .yoga-class-benefits-section .title:after {
  background: #78b713; }

.single-service-page.green-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #78b713 !important; }

.single-service-page.green-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(120, 183, 19, 0.6); }

.single-service-page.green-color .yoga-classes-section .classes-item .classes-image:before {
  background: #78b713; }

.single-service-page.green-color .yoga-classes-section .classes-item .classes-title {
  color: #78b713; }

.single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #78b713; }

.single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #78b713; }

.single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #78b713; }
  .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #78b713; }
  .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(120, 183, 19, 0.6); }
    .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.green-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(120, 183, 19, 0.6); }

.single-service-page.green-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #78b713; }

.single-service-page.green-color .feature-classes-section .feature-classes-left-part .title {
  color: #78b713; }

.single-service-page.green-color .feature-classes-section .feature-classes-right-part:before {
  background: #78b713; }

.single-service-page.green-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #78b713; }

.single-service-page.green-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #78b713; }

.single-service-page.b-pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #ec008b; }
  .single-service-page.b-pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #ec008b; }

.single-service-page.b-pink-color .yoga-class-description-section .intro-section-title {
  color: #ec008b; }

.single-service-page.b-pink-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ec008b; }

.single-service-page.b-pink-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(236, 0, 139, 0.6); }

.single-service-page.b-pink-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #ec008b; }
  .single-service-page.b-pink-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(236, 0, 139, 0.6); }

.single-service-page.b-pink-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ec008b; }

.single-service-page.b-pink-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #ec008b; }

.single-service-page.b-pink-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #ec008b; }
  .single-service-page.b-pink-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #ec008b; }

.single-service-page.b-pink-color .text-and-image .image-holder:before {
  content: "";
  background: #ec008b; }

.single-service-page.b-pink-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #ec008b; }

.single-service-page.b-pink-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #ec008b; }

.single-service-page.b-pink-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #ec008b; }
  .single-service-page.b-pink-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #ec008b; }

.single-service-page.b-pink-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #ec008b !important; }

.single-service-page.b-pink-color .primary-btn {
  background: #ec008b !important; }
  .single-service-page.b-pink-color .primary-btn:hover {
    background: rgba(236, 0, 139, 0.6) !important; }

.single-service-page.b-pink-color .primary-outline-btn {
  color: #ec008b !important;
  border: 1px solid #ec008b !important; }
  .single-service-page.b-pink-color .primary-outline-btn:hover {
    color: rgba(236, 0, 139, 0.6) !important;
    border: 1px solid rgba(236, 0, 139, 0.6) !important; }

.single-service-page.b-pink-color .primary-link {
  color: #ec008b; }
  .single-service-page.b-pink-color .primary-link:hover {
    color: rgba(236, 0, 139, 0.6); }

.single-service-page.b-pink-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #ec008b; }
  .single-service-page.b-pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #ec008b; }
  .single-service-page.b-pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #ec008b; }
  .single-service-page.b-pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #ec008b !important; }
    .single-service-page.b-pink-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(236, 0, 139, 0.6) !important; }

.single-service-page.b-pink-color .yoga-class-description-section .title h2, .single-service-page.b-pink-color .yoga-class-description-section .title h3, .single-service-page.b-pink-color .yoga-class-description-section .title h6 {
  color: #ec008b; }

.single-service-page.b-pink-color .yoga-class-benefits-section .title:after {
  background: #ec008b; }

.single-service-page.b-pink-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #ec008b !important; }

.single-service-page.b-pink-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(236, 0, 139, 0.6); }

.single-service-page.b-pink-color .yoga-classes-section .classes-item .classes-image:before {
  background: #ec008b; }

.single-service-page.b-pink-color .yoga-classes-section .classes-item .classes-title {
  color: #ec008b; }

.single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #ec008b; }

.single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #ec008b; }

.single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #ec008b; }
  .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #ec008b; }
  .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid #ec008b; }
    .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.b-pink-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: #ec008b; }

.single-service-page.b-pink-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #ec008b; }

.single-service-page.b-pink-color .feature-classes-section .feature-classes-left-part .title {
  color: #ec008b; }

.single-service-page.b-pink-color .feature-classes-section .feature-classes-right-part:before {
  background: #ec008b; }

.single-service-page.b-pink-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #ec008b; }

.single-service-page.b-pink-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #ec008b; }

.single-service-page.l-purple-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #797dbb; }
  .single-service-page.l-purple-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #797dbb; }

.single-service-page.l-purple-color .yoga-class-description-section .intro-section-title {
  color: #797dbb; }

.single-service-page.l-purple-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #797dbb; }

.single-service-page.l-purple-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(121, 125, 187, 0.6); }

.single-service-page.l-purple-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #797dbb; }
  .single-service-page.l-purple-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(121, 125, 187, 0.6); }

.single-service-page.l-purple-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #797dbb; }

.single-service-page.l-purple-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #797dbb; }

.single-service-page.l-purple-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #797dbb; }
  .single-service-page.l-purple-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #797dbb; }

.single-service-page.l-purple-color .text-and-image .image-holder:before {
  content: "";
  background: #797dbb; }

.single-service-page.l-purple-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #797dbb; }

.single-service-page.l-purple-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #797dbb; }

.single-service-page.l-purple-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #797dbb; }
  .single-service-page.l-purple-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #797dbb; }

.single-service-page.l-purple-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #797dbb !important; }

.single-service-page.l-purple-color .primary-btn {
  background: #797dbb !important; }
  .single-service-page.l-purple-color .primary-btn:hover {
    background: rgba(121, 125, 187, 0.6) !important; }

.single-service-page.l-purple-color .primary-outline-btn {
  color: #797dbb !important;
  border: 1px solid #797dbb !important; }
  .single-service-page.l-purple-color .primary-outline-btn:hover {
    color: rgba(121, 125, 187, 0.6) !important;
    border: 1px solid rgba(121, 125, 187, 0.6) !important; }

.single-service-page.l-purple-color .primary-link {
  color: #797dbb; }
  .single-service-page.l-purple-color .primary-link:hover {
    color: rgba(121, 125, 187, 0.6); }

.single-service-page.l-purple-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #797dbb; }
  .single-service-page.l-purple-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #797dbb; }
  .single-service-page.l-purple-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #797dbb; }
  .single-service-page.l-purple-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #797dbb !important; }
    .single-service-page.l-purple-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(121, 125, 187, 0.6) !important; }

.single-service-page.l-purple-color .yoga-class-description-section .title h2, .single-service-page.l-purple-color .yoga-class-description-section .title h3, .single-service-page.l-purple-color .yoga-class-description-section .title h6 {
  color: #797dbb; }

.single-service-page.l-purple-color .yoga-class-benefits-section .title:after {
  background: #797dbb; }

.single-service-page.l-purple-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #797dbb !important; }

.single-service-page.l-purple-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(121, 125, 187, 0.6); }

.single-service-page.l-purple-color .yoga-classes-section .classes-item .classes-image:before {
  background: #797dbb; }

.single-service-page.l-purple-color .yoga-classes-section .classes-item .classes-title {
  color: #797dbb; }

.single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #797dbb; }

.single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #797dbb; }

.single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #797dbb; }
  .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #797dbb; }
  .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid #797dbb; }
    .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.l-purple-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: #797dbb; }

.single-service-page.l-purple-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #797dbb; }

.single-service-page.l-purple-color .feature-classes-section .feature-classes-left-part .title {
  color: #797dbb; }

.single-service-page.l-purple-color .feature-classes-section .feature-classes-right-part:before {
  background: #797dbb; }

.single-service-page.l-purple-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #797dbb; }

.single-service-page.l-purple-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #797dbb; }

.single-service-page.blue-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #1b8de3; }
  .single-service-page.blue-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #1b8de3; }

.single-service-page.blue-color .yoga-class-description-section .intro-section-title {
  color: #1b8de3; }

.single-service-page.blue-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #1b8de3; }

.single-service-page.blue-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(27, 141, 227, 0.6); }

.single-service-page.blue-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #1b8de3; }
  .single-service-page.blue-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(27, 141, 227, 0.6); }

.single-service-page.blue-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #1b8de3; }

.single-service-page.blue-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #1b8de3; }

.single-service-page.blue-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #1b8de3; }
  .single-service-page.blue-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #1b8de3; }

.single-service-page.blue-color .text-and-image .image-holder:before {
  content: "";
  background: #1b8de3; }

.single-service-page.blue-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #1b8de3; }

.single-service-page.blue-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #1b8de3; }

.single-service-page.blue-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #1b8de3; }
  .single-service-page.blue-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #1b8de3; }

.single-service-page.blue-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #1b8de3 !important; }

.single-service-page.blue-color .primary-btn {
  background: #1b8de3 !important; }
  .single-service-page.blue-color .primary-btn:hover {
    background: rgba(27, 141, 227, 0.6) !important; }

.single-service-page.blue-color .primary-outline-btn {
  color: #1b8de3 !important;
  border: 1px solid #1b8de3 !important; }
  .single-service-page.blue-color .primary-outline-btn:hover {
    color: rgba(27, 141, 227, 0.6) !important;
    border: 1px solid rgba(27, 141, 227, 0.6) !important; }

.single-service-page.blue-color .primary-link {
  color: #1b8de3; }
  .single-service-page.blue-color .primary-link:hover {
    color: rgba(27, 141, 227, 0.6); }

.single-service-page.blue-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #1b8de3; }
  .single-service-page.blue-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #1b8de3; }
  .single-service-page.blue-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #1b8de3; }
  .single-service-page.blue-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #1b8de3 !important; }
    .single-service-page.blue-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(27, 141, 227, 0.6) !important; }

.single-service-page.blue-color .yoga-class-description-section .title h2, .single-service-page.blue-color .yoga-class-description-section .title h3, .single-service-page.blue-color .yoga-class-description-section .title h6 {
  color: #1b8de3; }

.single-service-page.blue-color .yoga-class-benefits-section .title:after {
  background: #1b8de3; }

.single-service-page.blue-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #1b8de3 !important; }

.single-service-page.blue-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(27, 141, 227, 0.6); }

.single-service-page.blue-color .yoga-classes-section .classes-item .classes-image:before {
  background: #1b8de3; }

.single-service-page.blue-color .yoga-classes-section .classes-item .classes-title {
  color: #1b8de3; }

.single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #1b8de3; }

.single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #1b8de3; }

.single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #1b8de3; }
  .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #1b8de3; }
  .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid #1b8de3; }
    .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.blue-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: #1b8de3; }

.single-service-page.blue-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #1b8de3; }

.single-service-page.blue-color .feature-classes-section .feature-classes-left-part .title {
  color: #1b8de3; }

.single-service-page.blue-color .feature-classes-section .feature-classes-right-part:before {
  background: #1b8de3; }

.single-service-page.blue-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #1b8de3; }

.single-service-page.blue-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #1b8de3; }

.single-service-page.orange-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #f45c0b; }
  .single-service-page.orange-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #f45c0b; }

.single-service-page.orange-color .yoga-class-description-section .intro-section-title {
  color: #f45c0b; }

.single-service-page.orange-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #f45c0b; }

.single-service-page.orange-color .blog-feature-bar .blog-feature-item .blog-feature-image-holder:hover:before {
  background: rgba(244, 92, 11, 0.6); }

.single-service-page.orange-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a {
  color: #f45c0b; }
  .single-service-page.orange-color .blog-feature-bar .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title a:hover {
    color: rgba(244, 92, 11, 0.6); }

.single-service-page.orange-color .most-popular-section .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #f45c0b; }

.single-service-page.orange-color .most-popular-section .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #f45c0b; }

.single-service-page.orange-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #f45c0b; }
  .single-service-page.orange-color .most-popular-section .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #f45c0b; }

.single-service-page.orange-color .text-and-image .image-holder:before {
  content: "";
  background: #f45c0b; }

.single-service-page.orange-color .treatments-grid .blog-feature-item .blog-feature-image-holder:before {
  content: "";
  background: #f45c0b; }

.single-service-page.orange-color .treatments-grid .blog-feature-item .blog-feature-image-holder:hover:before {
  background: #f45c0b; }

.single-service-page.orange-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title {
  color: #f45c0b; }
  .single-service-page.orange-color .treatments-grid .blog-feature-item .blog-feature-item-title-holder .blog-feature-item-title:hover {
    color: #f45c0b; }

.single-service-page.orange-color .treatments-grid .blog-feature-item .primary-btn:hover {
  background: #f45c0b !important; }

.single-service-page.orange-color .primary-btn {
  background: #f45c0b !important; }
  .single-service-page.orange-color .primary-btn:hover {
    background: rgba(244, 92, 11, 0.6) !important; }

.single-service-page.orange-color .primary-outline-btn {
  color: #f45c0b !important;
  border: 1px solid #f45c0b !important; }
  .single-service-page.orange-color .primary-outline-btn:hover {
    color: rgba(244, 92, 11, 0.6) !important;
    border: 1px solid rgba(244, 92, 11, 0.6) !important; }

.single-service-page.orange-color .primary-link {
  color: #f45c0b; }
  .single-service-page.orange-color .primary-link:hover {
    color: rgba(244, 92, 11, 0.6); }

.single-service-page.orange-color .hero-slider-holder .slide .slide-description-holder .slide-description {
  border-color: #f45c0b; }
  .single-service-page.orange-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-location span {
    color: #f45c0b; }
  .single-service-page.orange-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title {
    color: #f45c0b; }
  .single-service-page.orange-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn {
    background: #f45c0b !important; }
    .single-service-page.orange-color .hero-slider-holder .slide .slide-description-holder .slide-description .slide-btn:hover {
      background: rgba(244, 92, 11, 0.6) !important; }

.single-service-page.orange-color .yoga-class-description-section .title h2, .single-service-page.orange-color .yoga-class-description-section .title h3, .single-service-page.orange-color .yoga-class-description-section .title h6 {
  color: #f45c0b; }

.single-service-page.orange-color .yoga-class-benefits-section .title:after {
  background: #f45c0b; }

.single-service-page.orange-color .yoga-classes-section .classes-item:hover .primary-btn:hover {
  background-color: #f45c0b !important; }

.single-service-page.orange-color .yoga-classes-section .classes-item:hover .primary-outline-btn {
  background-color: rgba(244, 92, 11, 0.6); }

.single-service-page.orange-color .yoga-classes-section .classes-item .classes-image:before {
  background: #f45c0b; }

.single-service-page.orange-color .yoga-classes-section .classes-item .classes-title {
  color: #f45c0b; }

.single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slide .slide-cat:after {
  background: #f45c0b; }

.single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slide .slide-title {
  color: #f45c0b; }

.single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-next, .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-prev {
  border: 1px solid #f45c0b; }
  .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-next:before, .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-prev:before {
    color: #f45c0b; }
  .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-next:hover, .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover {
    border: 1px solid rgba(244, 92, 11, 0.6); }
    .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-next:hover:before, .single-service-page.orange-color .testimonials-slider-holder .testimonials-slider .slick-prev:hover:before {
      color: rgba(244, 92, 11, 0.6); }

.single-service-page.orange-color .feature-classes-section .feature-classes-left-part .action-title:after {
  background: #f45c0b; }

.single-service-page.orange-color .feature-classes-section .feature-classes-left-part .title {
  color: #f45c0b; }

.single-service-page.orange-color .feature-classes-section .feature-classes-right-part:before {
  background: #f45c0b; }

.single-service-page.orange-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:before {
  background: #f45c0b; }

.single-service-page.orange-color .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description .classes-grid-item-title {
  color: #f45c0b; }

.teacher-training-section-2 {
  background: #f6f6f6; }

.single-teacher_training_cou .custom-padding {
  width: 100%;
  max-width: 100%;
  padding: 0 45px 0 100px; }

.single-teacher_training_cou .left-part {
  padding-right: 85px; }

#faq-btn {
  padding: 2px 25px;
  font-size: 18px; }
  #faq-btn:hover {
    background-color: rgba(234, 37, 43, 0.6) !important; }

.option-template .hero-slider-holder .hero-slider .slide .slide-description-holder .slide-description h1.slide-title {
  font-size: 44px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 36px; }

.option-template .hero-slider-holder .hero-slider .slide .slide-description-holder .slide-description .slide-sub-sub-title {
  font-size: 22px;
  line-height: 28px; }

.option-template .title h6 {
  font-weight: bold;
  font-size: 16px; }

.option-template p {
  color: #666666; }

.option-template ul {
  color: #666666; }

.option-template .left-part span {
  color: #666666; }

.option-template .primary-outline-btn, .option-template .primary-btn {
  text-align: center; }

.option-template .right-part .heading-sm {
  margin-top: 40px; }

.option-template .right-part .primary-btn {
  text-align: center; }

.option-template .right-part .description {
  font-size: 16px;
  background: #f6f6f6;
  padding: 30px; }
  .option-template .right-part .description .key {
    font-weight: bold; }

.option-template .right-part a {
  color: #666666; }

.application-form {
  background: #f6f6f6;
  padding: 30px 0 80px;
  margin-bottom: 80px; }
  .application-form .title {
    padding-top: 30px;
    padding-bottom: 30px; }
  .application-form .sub-title {
    padding-top: 15px;
    padding-bottom: 0;
    color: #666666;
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400; }
  .application-form input[type='text'], .application-form input[type='password'], .application-form input[type='email'], .application-form textarea {
    width: 100%;
    text-indent: 15px;
    padding: 3px;
    border-radius: 15px;
    border: none;
    margin: 10px 0; }
    .application-form input[type='text']:focus, .application-form input[type='password']:focus, .application-form input[type='email']:focus, .application-form textarea:focus {
      box-shadow: inset 0 0 0 1px #5e3190 !important; }
  .application-form .ajax-loader {
    display: none !important; }
  .application-form input[type=text], .application-form select, .application-form input[type=email], .application-form textarea {
    box-shadow: none; }
  .application-form input[type=submit] {
    margin: 30px auto 0;
    text-align: center;
    display: block;
    background: transparent;
    color: white;
    border: none;
    padding: 3px 25px;
    background: #ea252b;
    border-radius: 50px;
    cursor: pointer;
    outline: 0; }
    .application-form input[type=submit]:hover, .application-form input[type=submit]:active, .application-form input[type=submit]:focus {
      outline: 0; }
  .primary-color .application-form .title {
    color: #5e3190; }
  .red-color .application-form .title {
    color: #ea252b; }
  .pink-color .application-form .title {
    color: #ff80ff; }
  .aqua-color .application-form .title {
    color: #1fbab0; }
  .orange-color .application-form .title {
    color: #f45c0b; }
  .yellow-color .application-form .title {
    color: #fdbf56; }

.wpcf7-mail-sent-ok {
  display: none;
  visibility: hidden;
  opacity: 0;
  height: 0px !important;
  padding: 0px !important;
  margin: 0px !important; }

.o-btn-ctr {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  display: table; }

#thank-you-wrapper h1 {
  margin-bottom: 30px;
  padding-bottom: 0; }

#thank-you-wrapper p {
  color: #666666;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 80px; }

#download-btn {
  padding: 3px 55px; }

.specialist-training-courses .title {
  padding: 20px 0 30px; }

.specialist-training-courses .yoga-class-description-section {
  padding-bottom: 0; }

.specialist-training-courses .yoga-classes-section {
  padding-bottom: 0; }
  .specialist-training-courses .yoga-classes-section .row > div {
    width: 100%; }
  .specialist-training-courses .yoga-classes-section a {
    color: #ea252b; }
  .specialist-training-courses .yoga-classes-section .classes-item {
    margin-bottom: 25px; }
    .specialist-training-courses .yoga-classes-section .classes-item .classes-image {
      margin-bottom: 20px; }
      .specialist-training-courses .yoga-classes-section .classes-item .classes-image img {
        width: 100%; }
    .specialist-training-courses .yoga-classes-section .classes-item .classes-title-holder {
      margin-bottom: 13px;
      font-size: 28px; }
      .specialist-training-courses .yoga-classes-section .classes-item .classes-title-holder .classes-title {
        line-height: 32px;
        font-size: 28px;
        font-weight: 500;
        padding: 0; }
    .specialist-training-courses .yoga-classes-section .classes-item .classes-excerpt {
      display: block;
      min-height: auto;
      width: 100%; }
      .specialist-training-courses .yoga-classes-section .classes-item .classes-excerpt p {
        margin: 0;
        padding: 0; }
      .specialist-training-courses .yoga-classes-section .classes-item .classes-excerpt:first-child {
        margin-top: 30px; }
    .specialist-training-courses .yoga-classes-section .classes-item .primary-btn {
      font-size: 18px;
      margin-top: 22px;
      width: 160px; }
    .specialist-training-courses .yoga-classes-section .classes-item:hover .classes-image, .specialist-training-courses .yoga-classes-section .classes-item:hover .classes-title {
      opacity: .7; }

.spec-item-wrapper {
  height: 100%;
  float: left; }

.nopadding {
  padding: 0 !important;
  margin: 0 !important; }

body.page-template-schedule-workshop-detail .wrap {
  padding-top: 60px; }
  @media (max-width: 767px) {
    body.page-template-schedule-workshop-detail .wrap {
      padding-top: 50px; } }
  body.page-template-schedule-workshop-detail .wrap .mainDiv {
    display: none; }
  body.page-template-schedule-workshop-detail .wrap .class-back-link-holder {
    font-size: 12px;
    color: #999;
    margin-bottom: 30px; }
  body.page-template-schedule-workshop-detail .wrap h1.class-title {
    font-size: 20px;
    margin-bottom: 22px;
    color: #5E3190;
    width: 100%;
    padding-right: 25%; }
    @media (max-width: 768px) {
      body.page-template-schedule-workshop-detail .wrap h1.class-title {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 15px;
        padding-right: 0; } }
  body.page-template-schedule-workshop-detail .wrap .enrollment-info_offer {
    padding: 5px 0;
    text-align: center;
    font-size: 12px;
    color: white;
    background: #5E3190;
    margin: -20px 0 15px 0; }
    @media (max-width: 768px) {
      body.page-template-schedule-workshop-detail .wrap .enrollment-info_offer {
        font-size: 10px; } }
  body.page-template-schedule-workshop-detail .wrap .class-page-section .class-content-holder .class-content {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px; }
    @media (max-width: 768px) {
      body.page-template-schedule-workshop-detail .wrap .class-page-section .class-content-holder .class-content {
        font-size: 10px; } }
    body.page-template-schedule-workshop-detail .wrap .class-page-section .class-content-holder .class-content img.d-md-none {
      width: 50%;
      max-width: 200px;
      float: left;
      margin-right: 10px; }
  body.page-template-schedule-workshop-detail .wrap .enrollment-info {
    padding: 0;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info-image {
      max-width: 200px; }
      body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info-image img {
        max-width: 200px; }
    @media (max-width: 768px) {
      body.page-template-schedule-workshop-detail .wrap .enrollment-info .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%; } }
    body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container {
      background: #EBEBEB;
      margin-left: 1%;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      @media (max-width: 768px) {
        body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container {
          margin-left: 0;
          width: 100%; } }
      body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details {
        padding-top: 10px;
        width: 100%; }
        body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details > div {
          float: left; }
        body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details a {
          text-decoration: underline;
          color: #666; }
        body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details em {
          text-decoration: line-through;
          font-style: normal; }
        body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details strong {
          color: #5e3190;
          font-size: 12px; }
          @media (max-width: 768px) {
            body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details strong {
              font-size: 10px; } }
        body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details p {
          font-size: 12px;
          margin-bottom: 0; }
          @media (max-width: 768px) {
            body.page-template-schedule-workshop-detail .wrap .enrollment-info .enrollment-info_details-container .enrollment-info_details p {
              font-size: 10px;
              margin-bottom: 1rem; } }
  body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share {
    width: 100%;
    margin: 0;
    padding: 20px 0 0; }
    body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share > div {
      width: 50%; }
    body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share button {
      width: 50%;
      font-size: 1.6vW;
      font-size: calc(13px + .44vw); }
      @media (max-width: 1024px) {
        body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share button {
          font-size: 1.6vw; } }
      @media (max-width: 768px) {
        body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share button {
          font-size: 13px;
          width: auto; } }
    body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share span {
      font-size: 13px;
      margin: 4px 15px 0 0; }
      @media (max-width: 768px) {
        body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share span {
          font-size: 0.7rem;
          float: right;
          margin: 4px 15px 0 0; } }
    body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share .share-links {
      margin-top: -2px; }
      body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share .share-links .share-social {
        float: right; }
        body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share .share-links .share-social a {
          font-size: 0.9rem;
          display: inline-block;
          color: #5e3190;
          width: 29px;
          height: 29px;
          text-align: center;
          line-height: 1.75rem;
          border: 1px solid #5e3190;
          border-radius: 50%;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s;
          outline: none; }
          @media (max-width: 768px) {
            body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share .share-links .share-social a {
              font-size: 0.65rem;
              width: 22px;
              height: 22px;
              line-height: 1.3rem; } }
      body.page-template-schedule-workshop-detail .wrap .enrollemnt-single__share .share-links span {
        float: right; }
  body.page-template-schedule-workshop-detail .wrap .class-sidebar {
    background: none !important;
    padding-top: 0;
    margin-top: -23px; }
    @media (max-width: 768px) {
      body.page-template-schedule-workshop-detail .wrap .class-sidebar {
        margin-top: 0px;
        padding: 20px 0 0; } }
    body.page-template-schedule-workshop-detail .wrap .class-sidebar h4 {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 9px; }
    @media (max-width: 765px) {
      body.page-template-schedule-workshop-detail .wrap .class-sidebar .sidebar__grid {
        display: -ms-grid;
        display: grid;
        grid-gap: 3%;
        -ms-grid-columns: (minmax(45%, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(45%, 1fr)); } }
    body.page-template-schedule-workshop-detail .wrap .class-sidebar .sidebar__grid .sidebar-image::before {
      display: none !important; }
    body.page-template-schedule-workshop-detail .wrap .class-sidebar .sidebar__grid .sidebar-image {
      margin-bottom: 5px; }
      body.page-template-schedule-workshop-detail .wrap .class-sidebar .sidebar__grid .sidebar-image img {
        width: 100%;
        max-width: 200px;
        max-height: 143px; }
        @media (max-width: 768px) {
          body.page-template-schedule-workshop-detail .wrap .class-sidebar .sidebar__grid .sidebar-image img {
            max-width: 200px;
            max-height: 100%;
            height: auto; } }
    body.page-template-schedule-workshop-detail .wrap .class-sidebar .sidebar__grid .title {
      color: #5e3190;
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 20px;
      max-width: 200px; }

body.page-template-schedule-workshop-detail .enrollment-info__multi {
  background: #EBEBEB; }
  body.page-template-schedule-workshop-detail .enrollment-info__multi:nth-child(even) {
    background: #F3F3F3; }
  body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row {
    padding: 5px 0 15px 15px; }
    body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row h2 {
      width: 95%;
      padding: 0 15px; }
      body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row h2 a.show-additional-info-detail {
        color: #5e3190 !important;
        font-size: 18px;
        text-decoration: none !important;
        cursor: pointer; }
        @media (max-width: 768px) {
          body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row h2 a.show-additional-info-detail {
            font-size: 12px; } }
    body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row {
      padding-right: 0; }
      body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row strong {
        color: #5E3190;
        font-size: 12px; }
        @media (max-width: 1024px) {
          body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row strong {
            display: none; } }
      body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row em {
        text-decoration: line-through;
        font-style: normal; }
      body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row p {
        margin-bottom: 0 !important; }
      @media (min-width: 1024px) {
        body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-5 {
          padding-right: 0;
          padding-left: 0; } }
      @media (max-width: 768px) {
        body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-5 {
          -webkit-box-flex: 0 !important;
          -ms-flex: 0 0 73% !important;
          flex: 0 0 73% !important;
          max-width: 73% !important; } }
      body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 {
        text-align: right;
        padding: 0 10px 0 0; }
        @media (max-width: 768px) {
          body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 {
            margin-top: -1em; } }
        body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button {
          width: 85%; }
          @media (max-width: 1010px) {
            body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button {
              padding: 1px;
              font-size: 12px;
              width: 85%; } }
          @media (max-width: 414px) {
            body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button {
              width: 105%; } }
          body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button.show-additional-info-detail {
            padding: 1px 0 1px 15px; }
            body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button.show-additional-info-detail::after {
              color: #5E3190; }
            body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button.show-additional-info-detail:hover::after {
              color: white;
              -webkit-transition: 0.4s;
              -o-transition: 0.4s;
              transition: 0.4s; }
            body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button.show-additional-info-detail.after-angle-down::after {
              vertical-align: middle; }
            @media (max-width: 1010px) {
              body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button.show-additional-info-detail {
                padding: 1px; }
                body.page-template-schedule-workshop-detail .enrollment-info__multi .sub-items-row > .row .col-3 button.show-additional-info-detail::after {
                  display: none; } }

.term-and-conditions {
  margin-bottom: 50px; }
  .term-and-conditions .content {
    margin-top: 50px; }
    .term-and-conditions .content h2 {
      color: #666666;
      font-size: 20px;
      font-weight: 500;
      line-height: 32px; }
  .term-and-conditions .side-menu {
    margin-top: 50px; }
    .term-and-conditions .side-menu .menu-sidebar-navigation-container > ul {
      padding-left: 40px;
      padding-top: 40px; }
      @media (max-width: 991px) {
        .term-and-conditions .side-menu .menu-sidebar-navigation-container > ul {
          padding-left: 0; } }
    .term-and-conditions .side-menu ul {
      list-style: none;
      padding-left: 20px; }
      .term-and-conditions .side-menu ul li a {
        color: #666666;
        padding: 0 10px;
        font-size: 18px;
        cursor: pointer;
        display: block;
        line-height: 36px; }
        .term-and-conditions .side-menu ul li a:hover {
          color: #5e3190 !important; }
        .term-and-conditions .side-menu ul li a .active {
          color: #5e3190; }
        @media (max-width: 991px) {
          .term-and-conditions .side-menu ul li a {
            padding: 5px 0; } }
  .term-and-conditions .faq-content, .term-and-conditions .privacy-cookie-policy-content, .term-and-conditions .accessibility {
    display: none; }
  .term-and-conditions .title {
    font-size: 28px;
    line-height: 32px;
    color: #5e3190;
    padding-bottom: 40px;
    text-transform: lowercase;
    font-weight: 500; }
  .term-and-conditions .text {
    color: #666666;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px; }
    .term-and-conditions .text a {
      color: #666666; }
      .term-and-conditions .text a:hover {
        color: #5e3190; }
  .term-and-conditions .search-form-holder {
    margin-bottom: 50px; }
    .term-and-conditions .search-form-holder input {
      border-color: #666666;
      text-align: left;
      font-size: 18px; }
      .term-and-conditions .search-form-holder input:focus {
        border-color: #5e3190; }
    .term-and-conditions .search-form-holder .primary-btn {
      max-width: 160px;
      width: 100%;
      height: 32px;
      padding: 0;
      line-height: 32px; }
  .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
    margin-bottom: 0;
    margin-top: -1px; }
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a {
      display: block;
      position: relative;
      padding: 15px 0 15px 30px;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s;
      font-size: 20px;
      font-weight: 500;
      line-height: 32px;
      color: #606060;
      text-decoration: none; }
      .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a span:nth-child(1) {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -1px;
        display: block;
        width: 14px;
        height: 2px;
        background: #5e3190;
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
           transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out; }
      .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a span:nth-child(2) {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -1px;
        display: block;
        width: 14px;
        height: 2px;
        background: #5e3190; }
      .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a.collapsed span:nth-child(1) {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -1px;
        display: block;
        width: 14px;
        height: 2px;
        background: #5e3190;
        -webkit-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
           transform: rotate(-90deg);
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out; }
      .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a.collapsed span:nth-child(2) {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -1px;
        display: block;
        width: 14px;
        height: 2px;
        background: #5e3190; }
      .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a:hover {
        color: #5e3190; }
      .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-title a:focus {
        text-decoration: none; }
  .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content {
    padding-top: 16px; }
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content p {
      margin-bottom: 16px;
      color: #666666;
      font-size: 18px;
      padding-left: 30px;
      line-height: 24px; }
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content h1,
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content h2,
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content h3,
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content h4,
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content h5,
    .term-and-conditions .faqs-accordion .faqs-accordion-item .faqs-accordion-item-content h6 {
      padding-left: 30px; }

.term-and-conditions .side-menu ul.sub-menu li a {
  font-size: 16px;
  color: #666666;
  line-height: 30px; }

.serach-parent-block-faq {
  max-width: 580px;
  height: 32px; }

.term-and-conditions .search-form-holder .serach-parent-block-faq input {
  line-height: 30px;
  padding: 0 20px;
  border: 0.25px solid #666666;
  font-family: aktiv-grotesk, sans-serif; }

.faqs-accordion-item-content a {
  color: #666666;
  text-decoration: none; }

.faqs-accordion-item-content span {
  text-decoration: none !important; }

.faqs-accordion-item-content span:hover {
  color: #5e3190; }

.term-and-conditions .search-form-holder .primary-btn:hover {
  background: rgba(94, 49, 144, 0.6) !important;
  opacity: 1; }

@media screen and (max-width: 767px) {
  .faq-search-button {
    margin-left: 0 !important;
    padding-top: 20px; } }

.faq-search-button {
  margin-left: -20px; }

.term .text ul li {
  list-style: disc !important;
  line-height: 24px; }

.term-and-conditions .side-menu li.current_page_item > a:first-child {
  color: #5e3190; }

.right-part .menu-my-account-container {
  width: 100%; }

.right-part #menu-my-account {
  width: 100%; }
  .right-part #menu-my-account li {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    margin-top: -10px;
    margin-bottom: -2px; }

.my-acc-button,
.my-register-button,
.my-login-button {
  display: none; }

.nav-top .my-acc-button {
  color: #5e3190;
  font-weight: bold; }
  @media (max-width: 575px) {
    .nav-top .my-acc-button {
      display: none !important;
      visibility: hidden; }
      .nav-top .my-acc-button a {
        color: #5e3190; } }

.nav-top .my-acc-button_mobile {
  display: none; }
  .nav-top .my-acc-button_mobile a {
    font-size: 0 !important; }
    .nav-top .my-acc-button_mobile a::before {
      content: "\f007";
      display: inline-block;
      font-family: FontAwesome;
      font-size: 14px;
      line-height: 21px;
      color: #bbbbbb;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased; }

.my-account-c > .row div > .title {
  font-size: 30px;
  color: #5e3190; }
  @media (max-width: 767px) {
    .my-account-c > .row div > .title {
      display: none; } }

.my-account-c .under-title {
  color: #9c9c9c;
  font-size: 90%; }
  @media (max-width: 767px) {
    .my-account-c .under-title {
      display: none; } }

.my-account-c .my-account-schedule {
  position: relative;
  z-index: 2; }
  .my-account-c .my-account-schedule .section-title {
    font-size: 113%;
    font-weight: 500 !important; }
  .my-account-c .my-account-schedule .nav {
    border: none; }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .nav {
        background: white;
        margin: 0 -15px; } }
    @media (max-width: 575px) {
      .my-account-c .my-account-schedule .nav {
        padding-bottom: 10px; } }
    .my-account-c .my-account-schedule .nav .nav-item {
      width: calc(94% / 4);
      margin-left: 0;
      margin-right: 0.5%;
      float: left;
      text-align: center; }
      .my-account-c .my-account-schedule .nav .nav-item:first-child {
        margin-left: 2.5%; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .nav .nav-item {
          width: calc(70% - 30px); } }
      @media (max-width: 575px) {
        .my-account-c .my-account-schedule .nav .nav-item {
          width: 100%;
          display: none; } }
      .my-account-c .my-account-schedule .nav .nav-item + .nav-item {
        margin-left: 0; }
      .my-account-c .my-account-schedule .nav .nav-item .nav-link {
        background: #eaeaea;
        color: #606060;
        border: none;
        border-top-right-radius: 1rem;
        border-top-left-radius: 1rem;
        font-size: 15px; }
        @media (max-width: 1034px) {
          .my-account-c .my-account-schedule .nav .nav-item .nav-link {
            font-size: 13px; } }
        @media (max-width: 1024px) {
          .my-account-c .my-account-schedule .nav .nav-item .nav-link {
            font-size: 11px; } }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .nav .nav-item .nav-link {
            display: none; } }
        @media (min-width: 768px) {
          .my-account-c .my-account-schedule .nav .nav-item .nav-link br {
            display: none; } }
        .my-account-c .my-account-schedule .nav .nav-item .nav-link.active {
          background: #f6f6f6;
          color: #5e3190; }
          @media (max-width: 767px) {
            .my-account-c .my-account-schedule .nav .nav-item .nav-link.active {
              font-size: 100%;
              font-weight: bold;
              text-align: left;
              background: transparent;
              display: block; } }
  .my-account-c .my-account-schedule .tab-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 1.5em;
    background: #f6f6f6; }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content {
        margin: 0 -15px; } }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content {
        border-radius: 0; } }
    @media (min-width: 768px) {
      .my-account-c .my-account-schedule .tab-content #personal {
        padding-left: 15%;
        padding-right: 15%; } }
    .my-account-c .my-account-schedule .tab-content #personal #accPreferLocationContainer::after, .my-account-c .my-account-schedule .tab-content #personal #accReferredByContainer::after, .my-account-c .my-account-schedule .tab-content #personal #accGenderContainer::after, .my-account-c .my-account-schedule .tab-content #personal #accCountryContainer::after {
      position: absolute;
      top: 17px;
      right: 20px;
      color: #5e3190; }
    .my-account-c .my-account-schedule .tab-content .back-to-cart {
      width: 100%; }
    .my-account-c .my-account-schedule .tab-content #booking .booking-table table .clickCancel {
      font-size: 14px; }
    .my-account-c .my-account-schedule .tab-content #booking .booking-table table .clickLateCancel {
      font-size: 14px; }
      @media (min-width: 768px) {
        .my-account-c .my-account-schedule .tab-content #booking .booking-table table .clickLateCancel {
          margin-left: -40px; } }
    @media (max-width: 575px) {
      .my-account-c .my-account-schedule .tab-content #booking .load-more-box {
        padding: 0 15px; } }
    .my-account-c .my-account-schedule .tab-content #booking .view-cancellation-policy {
      margin-top: 55px;
      text-align: right;
      font-size: 90%;
      color: #666666;
      cursor: pointer; }
      .my-account-c .my-account-schedule .tab-content #booking .view-cancellation-policy i {
        font-size: 110%;
        color: #5e3190; }
      .my-account-c .my-account-schedule .tab-content #booking .view-cancellation-policy span {
        text-decoration: underline; }
      @media (max-width: 575px) {
        .my-account-c .my-account-schedule .tab-content #booking .view-cancellation-policy {
          margin-top: -30px;
          margin-right: 15px;
          font-size: 11px; } }
    @media (max-width: 575px) {
      .my-account-c .my-account-schedule .tab-content #booking table, .my-account-c .my-account-schedule .tab-content #booking thead, .my-account-c .my-account-schedule .tab-content #booking tbody, .my-account-c .my-account-schedule .tab-content #booking th, .my-account-c .my-account-schedule .tab-content #booking td, .my-account-c .my-account-schedule .tab-content #booking tr {
        display: block; }
      .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body {
        margin: 0 15px; }
        .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body tr {
          line-height: 1em; }
        .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body > tr > td table > tbody {
          padding: 10px 15px; }
        .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body > tr > td table tbody tr:last-child {
          width: 100%; }
          .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body > tr > td table tbody tr:last-child td {
            width: 100%; }
        .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body td {
          font-size: 12px; }
        .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body td.date, .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body td.time, .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body td.teacher {
          display: inline-block;
          float: left; }
        .my-account-c .my-account-schedule .tab-content #booking tbody.mobile-body td.teacher {
          padding-left: 0;
          width: 50%;
          word-break: break-all; } }
    @media (max-width: 575px) {
      .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases table, .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases thead, .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases tbody, .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases th, .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases td, .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases tr {
        display: block; }
      .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody {
        border-radius: 10px;
        background: #ffffff;
        margin: 0 15px 10px;
        padding: 10px 15px; }
        .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td {
          border-radius: 0;
          background: none;
          font-size: 12px;
          padding: 0;
          line-height: 1.4em;
          width: 100%; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td::before {
            display: inline-block;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            width: 75px;
            margin-right: 20%; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td.date::before {
            content: 'date'; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td.time::before {
            content: 'reference no.'; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td:nth-child(3) {
            padding-left: 129px;
            text-indent: -104px; }
            .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td:nth-child(3)::before {
              content: 'description';
              padding-left: 0;
              text-indent: -25px; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td:nth-child(4)::before {
            content: 'purchased'; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td:nth-child(5)::before {
            content: 'expiry'; }
          .my-account-c .my-account-schedule .tab-content #passes .passesPlusPurchases > table > tbody > tr > td:nth-child(6)::before {
            content: 'amount'; } }
    @media (max-width: 575px) {
      .my-account-c .my-account-schedule .tab-content #passes .refunds table, .my-account-c .my-account-schedule .tab-content #passes .refunds thead, .my-account-c .my-account-schedule .tab-content #passes .refunds tbody, .my-account-c .my-account-schedule .tab-content #passes .refunds th, .my-account-c .my-account-schedule .tab-content #passes .refunds td, .my-account-c .my-account-schedule .tab-content #passes .refunds tr {
        display: block; }
      .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr {
        border-radius: 10px;
        background: #ffffff;
        margin: 0 15px 10px;
        padding: 10px 15px; }
        .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td {
          border-radius: 0;
          background: none;
          font-size: 12px;
          padding: 0;
          line-height: 1.4em;
          width: 100%; }
          .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td::before {
            display: inline-block;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            width: 75px;
            margin-right: 20%; }
          .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td.date::before {
            content: 'date'; }
          .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td.time::before {
            content: 'reference no.'; }
          .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td:nth-child(3) {
            padding-left: 129px;
            text-indent: -104px; }
            .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td:nth-child(3)::before {
              content: 'description';
              padding-left: 0;
              text-indent: -25px; }
          .my-account-c .my-account-schedule .tab-content #passes .refunds > table > tbody > tr > td:nth-child(4)::before {
            content: 'amount'; } }
    .my-account-c .my-account-schedule .tab-content #my-cart > .row {
      display: none; }
      .my-account-c .my-account-schedule .tab-content #my-cart > .row.chechout-loading {
        display: block; }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content #my-cart .your-cart {
        padding: 0 15px !important; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .booking-table {
      margin: 0 auto; }
      .my-account-c .my-account-schedule .tab-content #my-cart .booking-table table td:last-child {
        width: 170px; }
    .my-account-c .my-account-schedule .tab-content #my-cart table {
      width: 100%; }
    .my-account-c .my-account-schedule .tab-content #my-cart .name {
      color: #666666;
      font-size: 18px;
      font-weight: bold;
      padding-bottom: 0; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .name {
          font-size: 14px;
          line-height: 1em;
          margin-bottom: 6px; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .remove-from-cart {
      margin-top: 5px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .you-are-booking > table > tbody > tr > td {
      background: white;
      border-radius: 40px;
      padding: 10px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .you-are-booking .date-time, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-booking .location {
      color: #666666;
      font-size: 105%; }
    .my-account-c .my-account-schedule .tab-content #my-cart .you-are-booking .location {
      padding-bottom: 10px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying {
      margin-top: -35px;
      max-width: 100%;
      margin-left: 0;
      font-size: 16px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head {
        margin-top: 50px; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head {
            margin-top: 20px;
            padding-top: 0;
            padding-bottom: 10px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .section-title {
        margin-top: 0px;
        width: 100%;
        color: #9C9C9C; }
        @media (max-width: 575px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .section-title {
            margin-top: 20px;
            padding-left: 34px;
            font-size: 14px;
            font-weight: 600 !important; } }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying {
          font-size: 13px;
          line-height: 18px; }
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .cart__name_desc-column {
            width: 40%;
            margin-right: 3%; }
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .quantity, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .price, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .subtotal {
            padding: 0;
            width: 17%; }
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .quantity input {
            margin-top: -20px !important; }
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying table.result-table {
            line-height: 1.2em; } }
    @media (max-width: 767px) and (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying table.result-table {
        width: 50%;
        float: right; } }
      @media (max-width: 767px) {
            .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying table.result-table tr.subtotal {
              font-size: 15px; }
            .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying table.result-table tr.total {
              font-size: 16px; }
              .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying table.result-table tr.total td.value {
                font-size: 16px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .container {
        padding-bottom: 25px; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .container #you-are-buying__total-paid, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .container #you-are-buying__summary-discount {
          color: #666666;
          font-size: 18px;
          font-weight: bold;
          margin-top: 10px; }
          @media (max-width: 767px) {
            .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .container #you-are-buying__total-paid, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .container #you-are-buying__summary-discount {
              font-size: 14px;
              margin-top: 30px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head {
        font-size: 90%;
        padding-bottom: 20px; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head {
            padding-top: 20px;
            padding-bottom: 10px; } }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div {
          font-size: 18px;
          color: #9C9C9C;
          font-weight: bold !important; }
          @media (max-width: 575px) {
            .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div {
              text-align: left;
              font-weight: normal;
              font-size: 13px; }
              .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div > div {
                font-size: 12px !important;
                margin: 20px 0 10px !important;
                line-height: 15px; }
                .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div > div:nth-child(1) {
                  width: 43%; }
                .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div > div:nth-child(2) {
                  width: 17%; }
                .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div > div:nth-child(3) {
                  width: 17%; }
                .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-head div > div:nth-child(4) {
                  width: 17%; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-body {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 25px; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-body > .row > .price {
          padding-left: 20px; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .t-body > .row > .subtotal {
          padding-left: 25px;
          font-weight: bold; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying hr {
        width: 100%;
        height: 1px; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .col-sm-2 {
          padding: 0;
          text-align: center; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying-row {
        padding: 10px 15px;
        background: white;
        border-radius: 15px; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying-row .price, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying-row .subtotal {
          color: #666666; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying-row > .subtotal {
          font-weight: bold; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .primary-btn, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .primary-outline-btn, .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .primary-link {
        margin-bottom: 15px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .reset-cart .button1 {
        background: transparent;
        color: #5e3190; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .update-cart .button1 {
        background: transparent;
        border: 1px solid #5e3190;
        color: #5e3190; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .error-notification {
        color: #EC008B; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying #promo-code {
        padding: 3px 8px;
        color: #5e3190; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying #promo-code.error {
          border: 1px solid #ec008b !important; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying #promo-code {
            padding: 9px 8px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .promotion-code-message {
        color: #ec008b; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .promotion-code-message {
            margin-bottom: 20px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying #quantity {
        width: 72px;
        text-align: center;
        height: 32px;
        box-shadow: inset 0px 0px 0px 1px #ccc;
        border-radius: 15px;
        margin: 0;
        padding-left: 18px;
        padding-top: 7px;
        color: #999; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying #quantity {
            width: 35px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .result-table {
        font-size: 18px;
        color: #666666; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .result-table .discount {
          color: #5e3190; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .result-table .value {
          font-weight: bold;
          text-align: right; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .result-table .title {
          width: 55%; }
        .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .result-table .total .value {
          font-size: 20px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .you-are-buying .buttons {
        padding-top: 25px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 input, .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 select {
      text-indent: 0;
      padding-left: 40px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .section-title {
      padding-left: 15px; }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .section-title-dark-grey {
        font-size: 90%; } }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 {
        padding-left: 2%;
        padding-right: 2%; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration {
      padding: 5px; }
      @media (max-width: 575px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration {
          margin: 5px 15px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration .first {
        padding-left: 15px;
        padding-top: 7px;
        font-size: 90%; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration .card-expiration-select_wrap::after {
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        speak: none;
        pointer-events: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        padding-right: .4em;
        text-align: center;
        color: #999;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        line-height: 0.1em;
        font-size: 120%;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\f107';
        top: 5px;
        right: 5px;
        position: absolute;
        margin-top: 15px;
        margin-left: -20px;
        color: #999; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration label {
        display: none; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration select {
        border: 0;
        line-height: 20px;
        width: 100%;
        text-indent: 5px;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 15px;
        box-shadow: none;
        text-align: center;
        color: #666666;
        -webkit-appearance: none;
        -moz-appearance: none; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .card-expiration select:not(input[type=checkbox]) {
          -webkit-appearance: none !important;
          -moz-appearance: none !important; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .last {
      padding-right: 0; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 > div {
      padding-left: 15px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .subtitle {
      color: #606060; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .gift-card-number .button1 {
      margin: auto; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .gift-card {
      margin-top: 0; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .visa-mc {
      margin-top: 30px; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .visa-mc {
          margin-top: 0;
          width: 50%;
          margin-bottom: 20px; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .second-under-title {
      font-size: 90%;
      font-style: italic;
      padding-bottom: 25px;
      color: #666666; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .save-card-details {
      margin-top: 15px;
      color: #606060; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .save-card-details #chSaveCardDetails {
        display: inline-block;
        margin-right: 15px;
        vertical-align: middle;
        float: left;
        margin: 0 1% 0 !important; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .save-card-details #chSaveCardDetails {
            border-radius: 3px;
            padding-left: 3px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .save-card-details span#chSaveCardDetails__text {
        width: 92%;
        margin-top: -6px;
        display: inline-block;
        vertical-align: middle; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .save-card-details span#chSaveCardDetails__text {
            font-size: 90%;
            width: 72%; } }
    @media (max-width: 767px) {
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .gift-inp {
        padding-right: 5px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .gift-but {
        padding-left: 5px; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .gift-but .primary-btn {
          text-align: center;
          padding: 5px; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .read-terms {
      font-size: 14px;
      cursor: pointer;
      color: #666666; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .read-terms {
          font-size: 12px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .read-terms span {
        text-decoration: underline; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .read-terms i {
        color: #5e3190; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .hr hr {
      background: #666666; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .cardExpiration .field-title {
      padding-top: 10px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .cardExpiration #chMonth, .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .cardExpiration #chYear {
      text-align: center; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c {
      background: white;
      border-radius: 15px;
      padding: 15px 20px;
      margin-top: 50px;
      margin-bottom: 20px;
      color: #666666; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c {
          font-size: 80%; } }
      @media (max-width: 575px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c {
          margin-top: 10px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .order-title {
        font-size: 110%;
        color: #9c9c9c;
        font-weight: 700;
        margin-bottom: 20px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .order-item {
        margin-bottom: 15px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .result-table {
        font-size: 110%;
        color: #666666; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .result-table .discount {
          color: #5e3190; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .result-table .value {
          font-weight: bold; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .you-are-buying {
        margin-top: 0; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .you-are-buying .t-head div {
          font-weight: normal;
          font-size: 105%; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .you-are-buying .you-are-booking-row {
          font-size: 105%;
          font-weight: normal;
          color: #666666; }
          .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .you-are-buying .you-are-booking-row .date-time, .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .you-are-buying .you-are-booking-row .location {
            color: #666666; }
          .my-account-c .my-account-schedule .tab-content #my-cart .checkout6 .order-summary-c .you-are-buying .you-are-booking-row .name {
            font-size: 105%; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .section-title, .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .section-title, .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .section-title {
      font-size: 28px;
      color: #5e3190;
      font-weight: normal;
      margin-bottom: 0;
      text-align: center; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .section-title, .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .section-title, .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .section-title {
          font-size: 18px;
          text-align: left; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .under-notification, .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .under-notification, .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .under-notification {
      font-size: 90%;
      color: #666666;
      text-align: center;
      margin-bottom: 50px; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .under-notification, .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .under-notification, .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .under-notification {
          font-size: 13px;
          line-height: 18px;
          text-align: left;
          margin-top: 15px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .under-notification a, .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .under-notification a, .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .under-notification a {
        color: #666666;
        text-decoration: underline; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .try-again-btn, .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .try-again-btn, .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .try-again-btn {
      min-width: 150px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .section-title {
      text-align: left;
      margin-bottom: 40px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .under-notification {
      text-align: left; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .under-notification a {
        text-decoration: none;
        color: #5e3190; }
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout7 .under-notification a:hover {
          color: rgba(94, 49, 144, 0.6); }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .you-are-buying {
      margin: 0 auto;
      margin-top: 15px;
      background: white;
      border-radius: 15px;
      padding: 25px; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .you-are-buying {
          padding: 0px;
          margin: 15px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .you-are-buying .you-are-booking-row {
        color: #666666; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout8 .you-are-buying .t-head {
        padding-top: 20px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout9 .primary-btn {
      margin-top: 72px; }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .section-title {
      line-height: 1.2em;
      font-weight: 600 !important;
      font-size: 16px; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .section-title {
          margin-right: 20px;
          margin-left: 20px; } }
      @media (max-width: 575px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .section-title {
          margin-left: 0; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .under-notification {
      font-size: 14px; }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .under-notification p {
        font-size: 100%; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .under-notification {
          font-size: 13px;
          line-height: 18px;
          margin: 15px 20px 20px 20px; }
          .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .under-notification p {
            font-size: 100%; } }
    .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .row {
      padding-left: 15px; }
      @media (max-width: 767px) {
        .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .row {
          margin-top: 30px; } }
      .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .row a.primary-outline-btn {
        font-size: 16px;
        margin-right: 24px;
        margin-bottom: 15px;
        padding-top: 3px;
        padding-bottom: 3px; }
        @media (max-width: 767px) {
          .my-account-c .my-account-schedule .tab-content #my-cart .checkout10 .row a.primary-outline-btn {
            width: 100%;
            text-align: center;
            margin-right: 30px;
            font-size: 14px;
            padding-top: 4px;
            padding-bottom: 4px; } }
    .my-account-c .my-account-schedule .tab-content .tab-pane {
      width: 100%;
      padding: 20px 15% 65px; }
      @media (max-width: 991px) {
        .my-account-c .my-account-schedule .tab-content .tab-pane {
          padding: 20px 5% 65px; } }
      @media (max-width: 575px) {
        .my-account-c .my-account-schedule .tab-content .tab-pane {
          padding: 0; } }
      .my-account-c .my-account-schedule .tab-content .tab-pane .button-zone .row {
        padding: 3% 15px 0; }
      .my-account-c .my-account-schedule .tab-content .tab-pane .checkbox-zone {
        width: 100%;
        padding-top: 20px; }
      .my-account-c .my-account-schedule .tab-content .tab-pane .section-title {
        margin-top: 50px;
        width: 100%;
        color: #9C9C9C; }
        @media (max-width: 575px) {
          .my-account-c .my-account-schedule .tab-content .tab-pane .section-title {
            margin-top: 20px !important;
            padding-left: 34px !important;
            font-size: 14px !important;
            font-weight: 600 !important; } }
      .my-account-c .my-account-schedule .tab-content .tab-pane .section-title-dark-grey {
        font-size: 110%;
        font-weight: bold;
        margin-top: 30px;
        color: #606060; }
      .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
        table-layout: fixed; }
        @media (max-width: 991px) {
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table {
            font-size: 12px; } }
        .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table thead tr th {
          padding: 5px 10px;
          background: #5e308f;
          color: #ffffff;
          font-size: 85%; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table thead tr th:first-child {
            -moz-border-radius: 15px 0 0 15px;
            -webkit-border-radius: 15px 0 0 15px; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table thead tr th:last-child {
            -moz-border-radius: 0 15px 15px 0;
            -webkit-border-radius: 0 15px 15px 0; }
        .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table > tbody > tr > td {
          padding: 10px;
          background: #ffffff;
          color: #5e3190; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table > tbody > tr > td:first-child {
            -moz-border-radius: 15px 0 0 15px;
            -webkit-border-radius: 15px 0 0 15px; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table > tbody > tr > td:last-child {
            -moz-border-radius: 0 15px 15px 0;
            -webkit-border-radius: 0 15px 15px 0; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table > tbody > tr > td.date {
            color: #666666;
            font-weight: 500;
            width: 18%; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table > tbody > tr > td.time {
            color: #666666;
            width: 15%; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table > tbody > tr > td.location {
            color: #666666; }
        .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td {
          padding: 0;
          background: transparent;
          -moz-border-radius: 0;
          -webkit-border-radius: 0; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td .primary-btn {
            text-align: center; }
          .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table {
            width: 100%;
            margin-bottom: 10px;
            font-size: 95%;
            background: white;
            -moz-border-radius: 15px;
            -webkit-border-radius: 15px;
            color: #666666; }
            .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table tbody tr:first-child {
              font-weight: bold; }
            .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table tbody tr td:first-child {
              width: 40%; }
            .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table tbody tr td:last-child {
              color: #5e3190; }
            .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table tbody tr:last-child {
              width: 60%; }
              .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table tbody tr:last-child td {
                color: #666666; }
            .my-account-c .my-account-schedule .tab-content .tab-pane .booking-table > table .mobile-body > tr > td table tbody td {
              padding: 5px; }

.my-account-c #loginPage, .my-account-c #findPage, .my-account-c #registerPage {
  padding-bottom: 20px; }

.my-account-c #loginPage {
  border-right: 1px solid #5e3190;
  padding-right: 6%; }
  @media (max-width: 767px) {
    .my-account-c #loginPage {
      border: none; } }

.my-account-c #findPage {
  padding-left: 6%; }
  @media (max-width: 767px) {
    .my-account-c #findPage {
      display: none; } }

.my-account-c #forgotPage {
  margin: 0 auto; }

.my-account-c .under-title {
  min-height: 70px;
  line-height: 120%; }

.my-account-c .field-title {
  color: #9C9C9C; }

.my-account-c .section-title {
  width: 100%;
  font-size: 110%;
  margin-bottom: 10px;
  margin-top: 5%; }

.my-account-c p {
  font-size: 80%;
  color: #9C9C9C; }

.my-account-c textarea {
  margin: 5% 1%;
  min-height: 100px;
  padding: 2%;
  color: #9C9C9C;
  font-size: 90%; }

.my-account-c .or {
  text-align: center; }

.my-account-c .link1 {
  margin-top: 20px; }
  .my-account-c .link1 a {
    color: #9C9C9C;
    font-size: 105%;
    text-decoration: underline; }

.my-account-c .button1, .my-account-c textarea {
  width: 100%;
  padding: 3px;
  border-radius: 15px;
  border: 1px solid transparent; }

.my-account-c input {
  text-indent: 5%; }

.my-account-c input[type=checkbox] {
  width: auto !important;
  margin: 0 1% !important; }
  @media (max-width: 767px) {
    .my-account-c input[type=checkbox] {
      margin: 2% 1% !important; } }

.my-account-c p {
  margin: 0; }

.my-account-c .button1 {
  background-color: #5e3190;
  color: white;
  text-align: center;
  cursor: pointer;
  margin-right: 15px; }
  @media (max-width: 767px) {
    .my-account-c .button1 {
      margin-bottom: 15px;
      margin-right: 0; } }

.my-account-c .cancel {
  border: 1px solid #5e3190;
  background: transparent;
  color: #5e3190; }

.my-account-c #myBillingExpMonth, .my-account-c #myBillingExpYear {
  width: 25%;
  text-indent: 15px; }
  @media (max-width: 767px) {
    .my-account-c #myBillingExpMonth, .my-account-c #myBillingExpYear {
      width: 100%;
      margin-bottom: 10px; } }

.my-account-c #booking-history-t table tbody tr td {
  color: #666666; }
  .my-account-c #booking-history-t table tbody tr td .name, .my-account-c #booking-history-t table tbody tr td .teacher {
    color: #5e3190; }

.my-account-c #passes .booking-table > table > tbody > tr > td {
  color: #666666;
  word-break: break-word; }

.my-account-c #passes .booking-table > table > .mobile-body > tr > td > table > tbody > tr:first-child > td {
  padding-top: 15px; }

.my-account-c #passes .booking-table > table > .mobile-body > tr > td > table > tbody > tr:last-child > td {
  padding-bottom: 15px; }

.my-account-c #passes .booking-table > table > .mobile-body > tr > td > table > tbody > tr > td {
  padding: 0;
  font-weight: normal;
  color: #666666; }
  .my-account-c #passes .booking-table > table > .mobile-body > tr > td > table > tbody > tr > td:first-child {
    padding-left: 20px; }
  .my-account-c #passes .booking-table > table > .mobile-body > tr > td > table > tbody > tr > td:last-child {
    padding-right: 20px; }

.my-account-c #select-membership #left-list, .my-account-c #select-membership #right-list {
  outline: none;
  border: 0;
  color: #666666; }
  @media (min-width: 768px) {
    .my-account-c #select-membership #left-list, .my-account-c #select-membership #right-list {
      background: none;
      overflow-y: scroll; } }
  @media (max-width: 767px) {
    .my-account-c #select-membership #left-list, .my-account-c #select-membership #right-list {
      margin-bottom: 15px;
      background: white;
      border: 0;
      border-radius: 15px;
      height: 30px; } }
  .my-account-c #select-membership #left-list option, .my-account-c #select-membership #right-list option {
    background: white;
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 105%; }
    .my-account-c #select-membership #left-list option:active, .my-account-c #select-membership #right-list option:active {
      background: #f6f6f6; }

.my-account-c #select-membership #right-list {
  font-size: 90%; }

.my-account-c #select-membership .add-to-card {
  margin-top: 15px;
  text-align: center; }

.my-account-light-menu {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 99;
  background: #fff;
  display: none; }
  .my-account-light-menu .close-my-account {
    position: absolute;
    right: 15px;
    margin-top: 15px;
    font-size: 150%;
    color: #5e3190; }
  .my-account-light-menu .mobile-menu-list {
    background: #f6f6f6; }
    .my-account-light-menu .mobile-menu-list a {
      color: #666666;
      font-size: 17px;
      padding-top: 5px;
      padding-bottom: 5px; }

.disabled {
  opacity: 0.7;
  background: #666666; }

.create-account-button {
  padding-top: 30px; }

#registerPage .calendar-holder:after {
  content: "";
  display: table;
  clear: both; }

#registerPage .calendar-holder .flatpickr-calendar {
  float: right;
  width: 290px;
  box-shadow: none;
  margin-right: 10%; }
  #registerPage .calendar-holder .flatpickr-calendar:after {
    display: none; }
  #registerPage .calendar-holder .flatpickr-calendar:before {
    display: none; }
  #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month {
    top: 2px;
    height: 24px;
    line-height: 24px; }
    #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month:before {
      content: "\f104";
      text-align: left;
      padding-left: 7px;
      display: block;
      height: 24px;
      width: 24px;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 20px;
      line-height: 22px;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s;
      border: 1px solid #5e3190;
      border-radius: 50px; }
    #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-prev-month svg {
      display: none; }
  #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-current-month {
    color: #666666;
    text-transform: lowercase; }
    #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-current-month input.cur-year {
      font-weight: 700; }
  #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month {
    top: 2px;
    height: 24px;
    line-height: 24px; }
    #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month:before {
      content: "\f105";
      text-align: right;
      padding-right: 7px;
      display: block;
      height: 24px;
      width: 24px;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 20px;
      line-height: 22px;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #5e3190;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s;
      border: 1px solid #5e3190;
      border-radius: 50px; }
    #registerPage .calendar-holder .flatpickr-calendar .flatpickr-month .flatpickr-next-month svg {
      display: none; }
  #registerPage .calendar-holder .flatpickr-calendar .flatpickr-days {
    width: 290px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #registerPage .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day {
      max-width: calc(290px / 7);
      margin: -1px 0 0 -1px;
      border: 1px solid #666666;
      border-radius: 0;
      font-weight: 700;
      color: #606060; }
      #registerPage .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.selected {
        background: #5e3190;
        border-color: #5e3190;
        z-index: 1;
        color: #ffffff; }
      #registerPage .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.inRange {
        background: #ae98c7;
        box-shadow: none;
        border-color: #5e3190;
        z-index: 1;
        color: #ffffff; }
      #registerPage .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.prevMonthDay, #registerPage .calendar-holder .flatpickr-calendar .flatpickr-days .flatpickr-day.nextMonthDay {
        color: rgba(57, 57, 57, 0.3); }
  #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time {
    border-top: none;
    line-height: 60px;
    max-height: 60px; }
    #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper {
      height: 60px;
      width: 48%;
      padding-right: 30px; }
      #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input {
        font-size: 30px;
        color: #5e3190; }
        #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input.flatpickr-hour {
          font-weight: normal; }
        #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input::selection {
          background: transparent; }
        #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper input::-moz-selection {
          background: transparent; }
      #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span {
        width: 30px; }
        #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span:after {
          top: 50%;
          left: 50%;
          margin-left: -4px;
          margin-top: -2px; }
        #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span.arrowUp:after {
          border-bottom-color: #5e3190; }
        #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .numInputWrapper span.arrowDown:after {
          border-top-color: #5e3190; }
    #registerPage .calendar-holder .flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time .flatpickr-time-separator {
      font-size: 30px;
      width: 4%;
      color: #5e3190; }

.bd-example-modal-lg.show .modal-content {
  padding: 15px 30px;
  border-radius: 30px;
  border: none; }

.booking-information.show .modal-content {
  padding: 15px 30px;
  border-radius: 30px;
  border: none; }

.bd-example-modal-lg.show .modal-title {
  color: #5e3190; }

img#staff-image-descrip {
  float: right; }

.bd-example-modal-lg.modal.show .modal-dialog {
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  top: 50%; }

.booking-information.modal.show .modal-dialog {
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  top: 50%; }

.modal-content .modal-header {
  border: none; }

.close-button-mine {
  border-radius: 50%;
  border: 1px solid #5e3190;
  width: 26px; }

.close-button-mine > span {
  color: #5e3190; }

.my-account-c .tab-content .field-title {
  color: #999;
  padding-left: 34px; }
  @media (max-width: 575px) {
    .my-account-c .tab-content .field-title {
      font-size: 12px; } }

.my-account-c .tab-content .dob input {
  width: 32%; }

.my-account-c .tab-content input[type=text], .my-account-c .tab-content input, .my-account-c .tab-content select {
  width: 100%;
  border: none;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 5px 20px 5px 5px;
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  color: #5e3190; }
  .my-account-c .tab-content input[type=text]:not(input[type=checkbox]), .my-account-c .tab-content input:not(input[type=checkbox]), .my-account-c .tab-content select:not(input[type=checkbox]) {
    -webkit-appearance: none !important;
    -moz-appearance: none !important; }

.my-account-c .tab-content select {
  padding-left: 22px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important; }
  .my-account-c .tab-content select::after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    speak: none;
    pointer-events: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    padding-right: .4em;
    text-align: center;
    color: #999;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    line-height: 0.1em;
    font-size: 120%;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f107'; }

.my-account-c .tab-content input[type=submit] {
  width: 100%;
  border: 1px solid transparent;
  margin-bottom: 20px;
  opacity: 1 !important; }

.card-information {
  margin-bottom: 15px; }

.load-more-my-account-his, .hide-more-my-account-his {
  margin-top: 44px;
  margin-bottom: 15px;
  background: #999 !important; }

.load-more-my-account-his:hover, .hide-more-my-account-his:hover {
  background: rgba(153, 153, 153, 0.6) !important; }

@media (max-width: 575px) {
  .user-logged-in .right-part .menu-my-account-container {
    margin-top: -15px; } }

@media (max-width: 767px) {
  #buttonCheckout, #buttonPromoApply {
    height: 32px;
    font-size: 13px;
    line-height: 2.4em; } }

#continueShopping {
  padding: 2px 65px; }

#payment-method .section-title {
  padding-left: 0 !important; }

.selectholder .desc {
  display: inline-block;
  vertical-align: middle;
  padding-left: .8em;
  line-height: 2.4em; }

.selectholder .pulldown {
  float: right;
  vertical-align: middle;
  font-size: 20px;
  width: 20px;
  height: 18px;
  padding-top: 3px;
  -webkit-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  transition: .1s ease-out; }

.selectholder .selectdropdown {
  position: relative;
  top: 0;
  left: 0;
  background: #fff;
  color: #666666;
  display: none;
  clear: both;
  z-index: 10; }
  .selectholder .selectdropdown span {
    display: block;
    padding-left: .8em;
    line-height: 18px;
    text-align: center;
    width: 100%;
    -o-transition: background-color .1s ease-out;
    -webkit-transition: background-color .1s ease-out;
    transition: background-color .1s ease-out; }
    .selectholder .selectdropdown span:last-child {
      border-bottom: none; }
    .selectholder .selectdropdown span.active {
      color: #5e3190; }
    .selectholder .selectdropdown span:hover {
      color: #5e3190; }

body.user-logged-in .nav-top .my-acc-button {
  display: inline-block; }
  @media (max-width: 991px) {
    body.user-logged-in .nav-top .my-acc-button {
      display: none; } }

@media (max-width: 991px) {
  body.user-logged-in .nav-top .my-acc-button_mobile {
    display: block; } }

@media (max-width: 575px) {
  body.page-template-personal-billing-information-my-account #tabAccountBilling {
    display: block; } }

@media (max-width: 575px) {
  body.page-template-booking-my-account #tabAccountBooking {
    display: block; } }

@media (max-width: 575px) {
  body.page-template-passes-my-account #tabAccountPasses {
    display: block; } }

@media (max-width: 575px) {
  body.page-template-my-cart #tabAccountCart {
    display: block; } }

.cart-item-wrap {
  margin-top: 25px;
  width: 40%; }
  .cart-item-wrap .description {
    margin-bottom: 10px; }

@media (max-width: 575px) {
  .quantity-c {
    width: 70%;
    float: left; } }

@media (max-width: 575px) {
  .pricing-c {
    width: 30%;
    float: right;
    text-align: right; } }

@media (max-width: 575px) {
  .product-name-wrap {
    width: 70%; } }

.trending-posts {
  padding: 0 0 50px; }
  .trending-posts .container-fluid.custom-padding {
    padding: 0 30px; }
  .trending-posts .featured-article {
    margin-bottom: 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block; }
    .trending-posts .featured-article:hover {
      opacity: 0.6; }
    .trending-posts .featured-article .article-image:before {
      content: "";
      display: block;
      height: 5px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .trending-posts .featured-article .article-image img {
      width: 100%; }
    .trending-posts .featured-article .article-title, .trending-posts .featured-article .article-title {
      color: #606060;
      font-size: 16px;
      font-weight: normal;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .trending-posts .featured-article .article-date, .trending-posts .featured-article .article-location {
      font-size: 14px; }
    .trending-posts .featured-article .article-sub-title, .trending-posts .featured-article .article-date, .trending-posts .featured-article .article-location {
      color: #606060; }
    .trending-posts .featured-article .article-location span {
      color: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .trending-posts .featured-article:hover .article-location span {
      color: rgba(94, 49, 144, 0.6); }
    @media (max-width: 767px) {
      .trending-posts .featured-article .mobile-view {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .trending-posts .featured-article .mobile-view .article-image {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 50%;
          max-width: 50%;
          padding-right: 5px; }
        .trending-posts .featured-article .mobile-view footer {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 50%;
          max-width: 50%;
          padding-left: 5px;
          padding-top: 13px;
          height: auto; } }
  .trending-posts .right-part > .row > div {
    margin-bottom: 30px; }
    @media (max-width: 1199px) {
      .trending-posts .right-part > .row > div {
        padding-right: 0;
        margin-bottom: 20px; } }
    @media (max-width: 767px) {
      .trending-posts .right-part > .row > div {
        padding-right: 15px; } }
    .trending-posts .right-part > .row > div h6.article-title {
      float: left;
      margin: 10px 0 0 30px;
      font-size: 20px;
      font-weight: 500;
      line-height: 24px;
      max-width: 55%; }
      @media (max-width: 1199px) {
        .trending-posts .right-part > .row > div h6.article-title {
          font-size: 16px;
          line-height: 18px;
          margin-top: 0;
          margin-left: 10px; } }
      @media (max-width: 767px) {
        .trending-posts .right-part > .row > div h6.article-title {
          font-size: 20px;
          line-height: 24px;
          margin-top: 5px;
          max-width: 100%; } }
    .trending-posts .right-part > .row > div footer {
      float: left;
      max-width: 65%;
      padding: 10px 0px 10px 30px; }
      @media (max-width: 1199px) {
        .trending-posts .right-part > .row > div footer {
          padding-left: 10px; } }
      @media (max-width: 767px) {
        .trending-posts .right-part > .row > div footer {
          width: 100%; } }
      .trending-posts .right-part > .row > div footer span {
        font-size: 14px;
        line-height: 18px; }
        @media (max-width: 1199px) {
          .trending-posts .right-part > .row > div footer span {
            font-size: 12px; } }
      .trending-posts .right-part > .row > div footer .date {
        display: block;
        text-transform: lowercase;
        color: #666666; }
      .trending-posts .right-part > .row > div footer .author {
        display: block;
        color: #666666;
        cursor: pointer; }
    .trending-posts .right-part > .row > div:first-child {
      margin-bottom: 0; }
    .trending-posts .right-part > .row > div:last-child {
      margin: 0; }
      .trending-posts .right-part > .row > div:last-child .featured-article {
        margin-bottom: 0; }
        .trending-posts .right-part > .row > div:last-child .featured-article .article-image {
          margin-bottom: 0; }
        .trending-posts .right-part > .row > div:last-child .featured-article footer {
          padding-bottom: 0; }
    .trending-posts .right-part > .row > div.primary-color .article-image:before {
      background: #5e3190; }
    .trending-posts .right-part > .row > div.primary-color:hover .article-image:before {
      background: rgba(94, 49, 144, 0.6); }
    .trending-posts .right-part > .row > div.primary-color footer .author .name {
      color: #5e3190; }
    .trending-posts .right-part > .row > div.yellow-color .article-image:before {
      background: #fdbf56; }
    .trending-posts .right-part > .row > div.yellow-color:hover .article-image:before {
      background: rgba(253, 191, 86, 0.6); }
    .trending-posts .right-part > .row > div.yellow-color footer .author .name {
      color: #fdbf56; }
    .trending-posts .right-part > .row > div.pink-color .article-image:before {
      background: #ff80ff; }
    .trending-posts .right-part > .row > div.pink-color:hover .article-image:before {
      background: rgba(255, 128, 255, 0.6); }
    .trending-posts .right-part > .row > div.pink-color footer .author .name {
      color: #ff80ff; }
    .trending-posts .right-part > .row > div.aqua-color .article-image:before {
      background: #1fbab0; }
    .trending-posts .right-part > .row > div.aqua-color:hover .article-image:before {
      background: rgba(31, 186, 176, 0.6); }
    .trending-posts .right-part > .row > div.aqua-color footer .author .name {
      color: #1fbab0; }
    .trending-posts .right-part > .row > div.red-color .article-image:before {
      background: #ea252b; }
    .trending-posts .right-part > .row > div.red-color:hover .article-image:before {
      background: rgba(234, 37, 43, 0.6); }
    .trending-posts .right-part > .row > div.red-color footer .author .name {
      color: #ea252b; }
    .trending-posts .right-part > .row > div.orange-color .article-image:before {
      background: #f45c0b; }
    .trending-posts .right-part > .row > div.orange-color:hover .article-image:before {
      background: rgba(244, 92, 11, 0.6); }
    .trending-posts .right-part > .row > div.orange-color footer .author .name {
      color: #f45c0b; }
    .trending-posts .right-part > .row > div.b-pink-color .article-image:before {
      background: #ec008b; }
    .trending-posts .right-part > .row > div.b-pink-color:hover .article-image:before {
      background: rgba(236, 0, 139, 0.6); }
    .trending-posts .right-part > .row > div.b-pink-color footer .author .name {
      color: #ec008b; }
    .trending-posts .right-part > .row > div.l-purple-color .article-image:before {
      background: #797dbb; }
    .trending-posts .right-part > .row > div.l-purple-color:hover .article-image:before {
      background: rgba(121, 125, 187, 0.6); }
    .trending-posts .right-part > .row > div.l-purple-color footer .author .name {
      color: #797dbb; }
    .trending-posts .right-part > .row > div.blue-color .article-image:before {
      background: #1b8de3; }
    .trending-posts .right-part > .row > div.blue-color:hover .article-image:before {
      background: rgba(27, 141, 227, 0.6); }
    .trending-posts .right-part > .row > div.blue-color footer .author .name {
      color: #1b8de3; }
  .trending-posts .right-part .featured-article .article-image {
    max-width: 35%;
    float: left; }
  .trending-posts .left-part .featured-article footer {
    background: #f6f6f6;
    padding: 20px 70px; }
    .trending-posts .left-part .featured-article footer .date {
      text-transform: lowercase;
      color: #666666; }
    .trending-posts .left-part .featured-article footer .author {
      color: #666666;
      cursor: pointer; }

.blog-main-banner {
  background: #f6f6f6;
  height: 100%;
  padding: 0;
  margin-left: 1%;
  margin-right: 1%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64.6666666667%;
  flex: 0 0 64.6666666667%;
  max-width: 64.6666666667%; }
  @media (max-width: 767px) {
    .blog-main-banner {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 96%;
      margin-left: 2%; } }
  .blog-main-banner .featured-article {
    height: 100%;
    margin-bottom: 0; }
    .blog-main-banner .featured-article .article-image .article-title {
      margin: 20px 0 30px 70px;
      font-size: 28px;
      font-weight: 500;
      line-height: 32px; }
      @media (max-width: 991px) {
        .blog-main-banner .featured-article .article-image .article-title {
          margin-left: 15px;
          font-size: 22px; } }
    .blog-main-banner .featured-article .article-image:before {
      margin: 0;
      background: none;
      height: auto; }
  .blog-main-banner footer {
    margin-left: 70px;
    margin-bottom: 20px; }
    @media (max-width: 991px) {
      .blog-main-banner footer {
        margin-left: 15px; } }
    .blog-main-banner footer .date {
      text-transform: lowercase; }
    .blog-main-banner footer .name {
      cursor: pointer; }
  .blog-main-banner.primary-color footer .name {
    color: #5e3190; }
  .blog-main-banner.aqua-color footer .name {
    color: #1fbab0; }
  .blog-main-banner.orange-color footer .name {
    color: #f45c0b; }
  .blog-main-banner.red-color footer .name {
    color: #ea252b; }
  .blog-main-banner.pink-color footer .name {
    color: #ff80ff; }
  .blog-main-banner.b-pink-color footer .name {
    color: #ec008b; }
  .blog-main-banner.yellow-color footer .name {
    color: #fdbf56; }
  .blog-main-banner.green-color footer .name {
    color: #78b713; }
  .blog-main-banner.l-purple-color footer .name {
    color: #797dbb; }
  .blog-main-banner.blue-color footer .name {
    color: #1b8de3; }

.blog-main .section-title {
  margin-bottom: 15px;
  padding-left: 0; }

.blog-main .under-title {
  padding-left: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  padding-bottom: 13px;
  color: #606060;
  margin-top: 10px; }

.blog-main .icon-wrapper {
  float: left;
  width: 10%;
  max-width: 10px;
  padding: 9px 0; }

.blog-main .tags {
  padding-bottom: 15px; }
  .blog-main .tags .post_categories {
    font-size: 14px;
    line-height: 18px; }
    .blog-main .tags .post_categories .name {
      width: 80%;
      float: left;
      padding: 9px 0 9px 12px; }
    .blog-main .tags .post_categories .cat-wrapper {
      border-bottom: 2px solid #f3f3f3;
      cursor: pointer;
      font-size: 14px;
      line-height: 18px;
      padding: 0 0 0 10px; }
      .blog-main .tags .post_categories .cat-wrapper:last-child {
        border-bottom: none; }
      .blog-main .tags .post_categories .cat-wrapper.active {
        opacity: 1; }
        .blog-main .tags .post_categories .cat-wrapper.active i.fa.fa-times-circle-o {
          display: inline-block;
          opacity: 1;
          padding: 0; }
          .blog-main .tags .post_categories .cat-wrapper.active i.fa.fa-times-circle-o:hover {
            opacity: 1; }
        .blog-main .tags .post_categories .cat-wrapper.active i.fa-circle-thin {
          display: none; }
        .blog-main .tags .post_categories .cat-wrapper.active i.fa-circle {
          display: inline-block; }
      .blog-main .tags .post_categories .cat-wrapper:hover {
        opacity: 0.9; }
      .blog-main .tags .post_categories .cat-wrapper .name {
        cursor: pointer; }
      .blog-main .tags .post_categories .cat-wrapper i {
        padding-right: 10px;
        font-size: 80%;
        color: #666666; }
        .blog-main .tags .post_categories .cat-wrapper i.fa {
          cursor: pointer; }
        .blog-main .tags .post_categories .cat-wrapper i.fa-circle-thin {
          display: inline-block; }
        .blog-main .tags .post_categories .cat-wrapper i.fa-circle {
          display: none; }
        .blog-main .tags .post_categories .cat-wrapper i.fa.fa-times-circle-o {
          display: none;
          color: #5e3190;
          font-size: 110%;
          position: absolute;
          right: 0;
          top: 4px; }
      .blog-main .tags .post_categories .cat-wrapper.primary-color i {
        color: #5e3190; }
      .blog-main .tags .post_categories .cat-wrapper.yellow-color i {
        color: #fdbf56; }
      .blog-main .tags .post_categories .cat-wrapper.pink-color i {
        color: #ff80ff; }
      .blog-main .tags .post_categories .cat-wrapper.aqua-color i {
        color: #1fbab0; }
      .blog-main .tags .post_categories .cat-wrapper.orange-color i {
        color: #f45c0b; }
      .blog-main .tags .post_categories .cat-wrapper.green-color i {
        color: #78b713; }
      .blog-main .tags .post_categories .cat-wrapper.red-color i {
        color: #ea252b; }
      .blog-main .tags .post_categories .cat-wrapper.b-pink-color i {
        color: #ec008b; }
      .blog-main .tags .post_categories .cat-wrapper.l-purple-color i {
        color: #797dbb; }
      .blog-main .tags .post_categories .cat-wrapper.blue-color i {
        color: #1b8de3; }

.blog-main .popular_tags {
  padding-top: 10px;
  font-size: 14px;
  line-height: 18px; }
  .blog-main .popular_tags > div {
    width: auto;
    padding: 5px 8px;
    background: #f5f5f5;
    color: #666666;
    border-radius: 15px;
    margin-bottom: 7px;
    margin-right: 8px;
    float: left;
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    cursor: pointer; }
    .blog-main .popular_tags > div.active {
      background: #606060;
      color: white; }

.blog-main article {
  margin-bottom: 56px; }
  .blog-main article .article-image {
    display: block; }
    .blog-main article .article-image:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .blog-main article .article-image img {
      width: 100%; }
    .blog-main article .article-image:hover {
      opacity: 0.6; }
  .blog-main article .article-title, .blog-main article .article-title a {
    color: #606060;
    font-size: 16px;
    font-weight: normal;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .blog-main article .article-title {
    padding: 10px 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    color: #606060; }
  .blog-main article .article-date, .blog-main article .article-location {
    font-size: 14px; }
  .blog-main article .article-sub-title, .blog-main article .article-date, .blog-main article .article-location {
    color: #606060; }
  .blog-main article .article-location span {
    color: #5e3190;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .blog-main article:hover .article-location span {
    color: rgba(94, 49, 144, 0.6); }
  .blog-main article footer .date, .blog-main article footer .author {
    color: #666666;
    font-size: 16px;
    line-height: 20px; }
  .blog-main article footer .date {
    text-transform: lowercase; }
  .blog-main article.primary-color .article-image:before {
    background: #5e3190; }
  .blog-main article.primary-color:hover .article-image:before {
    background: rgba(94, 49, 144, 0.6); }
  .blog-main article.primary-color footer .author .name {
    color: #5e3190;
    cursor: pointer; }
  .blog-main article.yellow-color .article-image:before {
    background: #fdbf56; }
  .blog-main article.yellow-color:hover .article-image:before {
    background: rgba(253, 191, 86, 0.6); }
  .blog-main article.yellow-color footer .author .name {
    color: #fdbf56; }
  .blog-main article.pink-color .article-image:before {
    background: #ff80ff; }
  .blog-main article.pink-color:hover .article-image:before {
    background: rgba(255, 128, 255, 0.6); }
  .blog-main article.pink-color footer .author .name {
    color: #ff80ff; }
  .blog-main article.aqua-color .article-image:before {
    background: #1fbab0; }
  .blog-main article.aqua-color:hover .article-image:before {
    background: rgba(31, 186, 176, 0.6); }
  .blog-main article.aqua-color footer .author .name {
    color: #1fbab0; }
  .blog-main article.red-color .article-image:before {
    background: #ea252b; }
  .blog-main article.red-color:hover .article-image:before {
    background: rgba(234, 37, 43, 0.6); }
  .blog-main article.red-color footer .author .name {
    color: #ea252b; }
  .blog-main article.orange-color .article-image:before {
    background: #f45c0b; }
  .blog-main article.orange-color:hover .article-image:before {
    background: rgba(234, 37, 43, 0.6); }
  .blog-main article.orange-color footer .author .name {
    color: #f45c0b; }
  @media (max-width: 767px) {
    .blog-main article.mobile-view {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .blog-main article.mobile-view .article-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 5px; }
      .blog-main article.mobile-view footer {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 5px;
        padding-top: 13px;
        height: auto; } }

.blog-main .left-part article footer, .blog-main .right-part article footer {
  padding: 10px 15px; }
  .blog-main .left-part article footer a, .blog-main .right-part article footer a {
    font-size: 150%; }

.blog-main .right-part > .row > div {
  margin: 0 0 15px; }

.blog-main .right-part article .article-image {
  max-width: 35%;
  float: left;
  margin-bottom: 15px; }

.blog-main .right-part article footer {
  float: left;
  max-width: 65%; }

.blog-main .left-part article footer {
  background: #f6f6f6; }

.blog-main .load-more-blog {
  text-align: center;
  margin-bottom: 0px;
  background: #666666 !important;
  color: #ffffff !important; }
  .blog-main .load-more-blog:hover {
    background: rgba(102, 102, 102, 0.6) !important;
    color: #ffffff !important; }

.blog-main .load-more-blog-posts {
  margin: 50px auto;
  height: 32px;
  width: 160px;
  color: #ffffff;
  background: #666666;
  font-size: 18px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
  border-radius: 15px; }
  .blog-main .load-more-blog-posts:hover {
    opacity: .6; }

.single-post-page {
  padding-top: 20px;
  padding-bottom: 50px; }
  .single-post-page .back-link-holder {
    margin-bottom: 20px;
    color: #606060;
    font-size: 14px; }
    .single-post-page .back-link-holder .back-link {
      color: #606060;
      text-decoration: underline;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .single-post-page .back-link-holder .back-link:hover {
        text-decoration: none; }
  .single-post-page .article-title {
    margin-bottom: 30px; }
    .single-post-page .article-title .heading-std {
      font-size: 28px;
      font-weight: 500;
      line-height: 32px;
      color: #5e3190; }
  @media (min-width: 992px) {
    .single-post-page .left-part {
      padding-right: 40px; } }
  .single-post-page .left-part .meta-info {
    margin-bottom: 30px; }
    .single-post-page .left-part .meta-info time {
      color: #666666; }
    .single-post-page .left-part .meta-info .author {
      color: #666666;
      margin-bottom: 3px;
      line-height: 20px; }
      .single-post-page .left-part .meta-info .author a, .single-post-page .left-part .meta-info .author span {
        color: #5e3190; }
    .single-post-page .left-part .meta-info .share-links {
      text-align: left; }
      @media (min-width: 992px) {
        .single-post-page .left-part .meta-info .share-links {
          text-align: right; } }
      .single-post-page .left-part .meta-info .share-links span {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        color: #606060; }
      .single-post-page .left-part .meta-info .share-links .supsystic-social-sharing {
        display: inline-block !important;
        vertical-align: middle; }
        .single-post-page .left-part .meta-info .share-links .supsystic-social-sharing a {
          display: inline-block;
          vertical-align: middle;
          color: #5e3190;
          width: 30px;
          height: 30px;
          text-align: center;
          line-height: 28px;
          border: 1px solid #5e308f;
          border-radius: 50%;
          margin: 0 0 0 10px !important;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s;
          background: transparent;
          padding: 0; }
          .single-post-page .left-part .meta-info .share-links .supsystic-social-sharing a:hover {
            color: rgba(94, 49, 144, 0.6);
            border: 1px solid rgba(94, 49, 144, 0.6);
            background: transparent !important; }
  .single-post-page .left-part .single-post-image {
    margin-bottom: 50px;
    display: inline-block; }
    .single-post-page .left-part .single-post-image:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190; }
  .single-post-page .left-part .single-post-content {
    color: #666666;
    margin-bottom: 50px; }
  .single-post-page .left-part .single-post-tags-and-share {
    padding-top: 50px;
    border-top: 1px solid #666666; }
    .single-post-page .left-part .single-post-tags-and-share .single-post-tags {
      padding-top: 3px; }
      @media (max-width: 1199px) {
        .single-post-page .left-part .single-post-tags-and-share .single-post-tags {
          margin-bottom: 15px; } }
      .single-post-page .left-part .single-post-tags-and-share .single-post-tags span {
        color: #606060; }
      .single-post-page .left-part .single-post-tags-and-share .single-post-tags a {
        color: #999999;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
        padding: 7px 20px;
        background: #F5F5F5;
        border-radius: 15px;
        text-decoration: none;
        display: inline-block;
        line-height: 18px;
        font-size: 14px;
        margin-bottom: 10px;
        margin-right: 6px; }
        .single-post-page .left-part .single-post-tags-and-share .single-post-tags a:hover {
          text-decoration: none; }
    .single-post-page .left-part .single-post-tags-and-share .share-links {
      text-align: left;
      margin-bottom: 20px; }
      .single-post-page .left-part .single-post-tags-and-share .share-links span {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        color: #606060; }
      .single-post-page .left-part .single-post-tags-and-share .share-links .supsystic-social-sharing {
        display: inline-block !important;
        vertical-align: middle; }
        .single-post-page .left-part .single-post-tags-and-share .share-links .supsystic-social-sharing a {
          display: inline-block;
          vertical-align: middle;
          color: #5e3190;
          width: 30px;
          height: 30px;
          text-align: center;
          line-height: 28px;
          border: 1px solid #5e308f;
          border-radius: 50%;
          margin: 0 0 0 10px !important;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s;
          background: transparent;
          padding: 0; }
          .single-post-page .left-part .single-post-tags-and-share .share-links .supsystic-social-sharing a:hover {
            color: rgba(94, 49, 144, 0.6);
            border: 1px solid rgba(94, 49, 144, 0.6);
            background: transparent !important; }
  @media (min-width: 992px) {
    .single-post-page .right-part {
      padding-left: 40px; } }
  .single-post-page .right-part .related-posts .related-posts-title {
    padding: 24px 0 30px;
    font-size: 18px;
    font-weight: 500;
    color: #666666; }

@media (min-width: 768px) and (max-width: 991px) {
  .single-post-page .right-part .related-posts .related-posts-title {
    padding: 53px 0 30px; } }
  .single-post-page .right-part .related-posts .related-posts-item {
    margin-bottom: 50px; }
    .single-post-page .right-part .related-posts .related-posts-item .image-holder {
      margin-bottom: 10px; }
      .single-post-page .right-part .related-posts .related-posts-item .image-holder img:hover {
        opacity: 0.6; }
      .single-post-page .right-part .related-posts .related-posts-item .image-holder:before {
        content: "";
        display: block;
        height: 7px;
        margin-bottom: 6px;
        background: #5e3190;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
    .single-post-page .right-part .related-posts .related-posts-item .title {
      font-size: 18px;
      line-height: 22px;
      color: #666666;
      margin-top: 10px; }
    .single-post-page .right-part .related-posts .related-posts-item:hover .title {
      opacity: 0.6; }
    .single-post-page .right-part .related-posts .related-posts-item:hover .image-holder img {
      opacity: 0.6; }
    .single-post-page .right-part .related-posts .related-posts-item:hover .image-holder:before {
      background: rgba(94, 49, 144, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.primary-color .image-holder:before {
      background: #5e3190; }
    .single-post-page .right-part .related-posts .related-posts-item.primary-color:hover .image-holder:before {
      background: rgba(94, 49, 144, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.yellow-color .image-holder:before {
      background: #fdbf56; }
    .single-post-page .right-part .related-posts .related-posts-item.yellow-color:hover .image-holder:before {
      background: rgba(253, 191, 86, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.green-color .image-holder:before {
      background: #78b713; }
    .single-post-page .right-part .related-posts .related-posts-item.green-color:hover .image-holder:before {
      background: rgba(120, 183, 19, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.pink-color .image-holder:before {
      background: #ff80ff; }
    .single-post-page .right-part .related-posts .related-posts-item.pink-color:hover .image-holder:before {
      background: rgba(255, 128, 255, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.aqua-color .image-holder:before {
      background: #1fbab0; }
    .single-post-page .right-part .related-posts .related-posts-item.aqua-color:hover .image-holder:before {
      background: rgba(31, 186, 176, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.orange-color .image-holder:before {
      background: #f45c0b; }
    .single-post-page .right-part .related-posts .related-posts-item.orange-color:hover .image-holder:before {
      background: rgba(244, 92, 11, 0.6); }
    .single-post-page .right-part .related-posts .related-posts-item.red-color .image-holder:before {
      background: #ea252b; }
    .single-post-page .right-part .related-posts .related-posts-item.red-color:hover .image-holder:before {
      background: rgba(234, 37, 43, 0.6); }

#post-date {
  text-transform: lowercase;
  line-height: 20px; }

.single-post-page .container-fluid.aqua-color .article-title .heading-std {
  color: #1fbab0; }

.single-post-page .container-fluid.aqua-color .left-part .meta-info .author a {
  color: #1fbab0; }

.single-post-page .container-fluid.aqua-color .left-part .share-links .supsystic-social-sharing a {
  color: #1fbab0 !important;
  border-color: #1fbab0 !important; }

.single-post-page .container-fluid.aqua-color .left-part .single-post-image:before {
  background: #1fbab0; }

.single-post-page .container-fluid.orange-color .article-title .heading-std {
  color: #f45c0b; }

.single-post-page .container-fluid.orange-color .left-part .meta-info .author a {
  color: #f45c0b; }

.single-post-page .container-fluid.orange-color .left-part .share-links .supsystic-social-sharing a {
  color: #f45c0b !important;
  border-color: #f45c0b !important; }

.single-post-page .container-fluid.orange-color .left-part .single-post-image:before {
  background: #f45c0b; }

.single-post-page .container-fluid.red-color .article-title .heading-std {
  color: #ea252b; }

.single-post-page .container-fluid.red-color .left-part .meta-info .author a {
  color: #ea252b; }

.single-post-page .container-fluid.red-color .left-part .share-links .supsystic-social-sharing a {
  color: #ea252b !important;
  border-color: #ea252b !important; }

.single-post-page .container-fluid.red-color .left-part .single-post-image:before {
  background: #ea252b; }

.single-post-page .container-fluid.pink-color .article-title .heading-std {
  color: #ff80ff; }

.single-post-page .container-fluid.pink-color .left-part .meta-info .author a {
  color: #ff80ff; }

.single-post-page .container-fluid.pink-color .left-part .share-links .supsystic-social-sharing a {
  color: #ff80ff !important;
  border-color: #ff80ff !important; }

.single-post-page .container-fluid.pink-color .left-part .single-post-image:before {
  background: #ff80ff; }

.single-post-page .container-fluid.b-pink-color .article-title .heading-std {
  color: #ec008b; }

.single-post-page .container-fluid.b-pink-color .left-part .meta-info .author a {
  color: #ec008b; }

.single-post-page .container-fluid.b-pink-color .left-part .share-links .supsystic-social-sharing a {
  color: #ec008b !important;
  border-color: #ec008b !important; }

.single-post-page .container-fluid.b-pink-color .left-part .single-post-image:before {
  background: #ec008b; }

.single-post-page .container-fluid.yellow-color .article-title .heading-std {
  color: #fdbf56; }

.single-post-page .container-fluid.yellow-color .left-part .meta-info .author a {
  color: #fdbf56; }

.single-post-page .container-fluid.yellow-color .left-part .share-links .supsystic-social-sharing a {
  color: #fdbf56 !important;
  border-color: #fdbf56 !important; }

.single-post-page .container-fluid.yellow-color .left-part .single-post-image:before {
  background: #fdbf56; }

.single-post-page .container-fluid.green-color .article-title .heading-std {
  color: #78b713; }

.single-post-page .container-fluid.green-color .left-part .meta-info .author a {
  color: #78b713; }

.single-post-page .container-fluid.green-color .left-part .share-links .supsystic-social-sharing a {
  color: #78b713 !important;
  border-color: #78b713 !important; }

.single-post-page .container-fluid.green-color .left-part .single-post-image:before {
  background: #78b713; }

.single-post-page .container-fluid.l-purple-color .article-title .heading-std {
  color: #797dbb; }

.single-post-page .container-fluid.l-purple-color .left-part .meta-info .author a {
  color: #797dbb; }

.single-post-page .container-fluid.l-purple-color .left-part .share-links .supsystic-social-sharing a {
  color: #797dbb !important;
  border-color: #797dbb !important; }

.single-post-page .container-fluid.l-purple-color .left-part .single-post-image:before {
  background: #797dbb; }

.single-post-page .container-fluid.blue-color .article-title .heading-std {
  color: #1b8de3; }

.single-post-page .container-fluid.blue-color .left-part .meta-info .author a {
  color: #1b8de3; }

.single-post-page .container-fluid.blue-color .left-part .share-links .supsystic-social-sharing a {
  color: #1b8de3 !important;
  border-color: #1b8de3 !important; }

.single-post-page .container-fluid.blue-color .left-part .single-post-image:before {
  background: #1b8de3; }

.services-section {
  padding-top: 5px;
  padding-bottom: 100px; }
  .services-section .services-title {
    font-size: 30px;
    font-weight: 500;
    color: #5e3190;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .services-section .service-item-title {
    line-height: 24px;
    padding: 15px 0;
    color: #5e3190; }
  .services-section .services-description {
    font-size: 16px;
    color: #606060;
    padding: 15px 0 30px; }
  .services-section .service-item {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
    .services-section .service-item:hover {
      opacity: 0.6;
      cursor: pointer; }
      .services-section .service-item:hover .service-item-image:before {
        background: rgba(94, 49, 144, 0.6); }
      .services-section .service-item:hover .service-item-title a {
        color: rgba(94, 49, 144, 0.6); }
    .services-section .service-item .service-item-image:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .services-section .service-item .service-item-title a {
      font-size: 28px;
      font-weight: 500;
      color: #5e3190;
      padding: 15px 0;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .services-section .service-item .service-item-excerpt {
      color: #666666;
      margin-bottom: 55px; }
    .services-section .service-item.primary-color .service-item-image:before {
      background: #5e3190; }
    .services-section .service-item.primary-color .service-item-title {
      color: #5e3190; }
    .services-section .service-item.primary-color:hover .service-item-image:before {
      background: rgba(94, 49, 144, 0.6); }
    .services-section .service-item.primary-color:hover .service-item-title {
      color: rgba(94, 49, 144, 0.6); }
    .services-section .service-item.yellow-color .service-item-image:before {
      background: #fdbf56; }
    .services-section .service-item.yellow-color .service-item-title {
      color: #fdbf56; }
    .services-section .service-item.yellow-color:hover .service-item-image:before {
      background: rgba(253, 191, 86, 0.6); }
    .services-section .service-item.yellow-color:hover .service-item-title {
      color: rgba(253, 191, 86, 0.6); }
    .services-section .service-item.green-color .service-item-image:before {
      background: #78b713; }
    .services-section .service-item.green-color .service-item-title {
      color: #78b713; }
    .services-section .service-item.green-color:hover .service-item-image:before {
      background: rgba(120, 183, 19, 0.6); }
    .services-section .service-item.green-color:hover .service-item-title {
      color: rgba(120, 183, 19, 0.6); }
    .services-section .service-item.pink-color .service-item-image:before {
      background: #ff80ff; }
    .services-section .service-item.pink-color .service-item-title {
      color: #ff80ff; }
    .services-section .service-item.pink-color:hover .service-item-image:before {
      background: rgba(255, 128, 255, 0.6); }
    .services-section .service-item.pink-color:hover .service-item-title {
      color: rgba(255, 128, 255, 0.6); }
    .services-section .service-item.aqua-color .service-item-image:before {
      background: #1fbab0; }
    .services-section .service-item.aqua-color .service-item-title {
      color: #1fbab0; }
    .services-section .service-item.aqua-color:hover .service-item-image:before {
      background: rgba(31, 186, 176, 0.6); }
    .services-section .service-item.aqua-color:hover .service-item-title {
      color: rgba(31, 186, 176, 0.6); }
    .services-section .service-item.orange-color .service-item-image:before {
      background: #f45c0b; }
    .services-section .service-item.orange-color .service-item-title {
      color: #f45c0b; }
    .services-section .service-item.orange-color:hover .service-item-image:before {
      background: rgba(244, 92, 11, 0.6); }
    .services-section .service-item.orange-color:hover .service-item-title {
      color: rgba(244, 92, 11, 0.6); }
    .services-section .service-item.red-color .service-item-image:before {
      background: #ea252b; }
    .services-section .service-item.red-color .service-item-title {
      color: #ea252b; }
    .services-section .service-item.red-color:hover .service-item-image:before {
      background: rgba(234, 37, 43, 0.6); }
    .services-section .service-item.red-color:hover .service-item-title {
      color: rgba(234, 37, 43, 0.6); }
    .services-section .service-item.b-pink-color .service-item-image:before {
      background: #ec008b; }
    .services-section .service-item.b-pink-color .service-item-title {
      color: #ec008b; }
    .services-section .service-item.b-pink-color:hover .service-item-image:before {
      background: rgba(236, 0, 139, 0.6); }
    .services-section .service-item.b-pink-color:hover .service-item-title {
      color: rgba(236, 0, 139, 0.6); }
    .services-section .service-item.l-purple-color .service-item-image:before {
      background: #797dbb; }
    .services-section .service-item.l-purple-color .service-item-title {
      color: #797dbb; }
    .services-section .service-item.l-purple-color:hover .service-item-image:before {
      background: rgba(121, 125, 187, 0.6); }
    .services-section .service-item.l-purple-color:hover .service-item-title {
      color: rgba(121, 125, 187, 0.6); }
    .services-section .service-item.blue-color .service-item-image:before {
      background: #1b8de3; }
    .services-section .service-item.blue-color .service-item-title {
      color: #1b8de3; }
    .services-section .service-item.blue-color:hover .service-item-image:before {
      background: rgba(27, 141, 227, 0.6); }
    .services-section .service-item.blue-color:hover .service-item-title {
      color: rgba(27, 141, 227, 0.6); }

.service-banner-section .service-banner {
  position: relative;
  margin-bottom: 35px;
  padding: 0 30px; }
  .service-banner-section .service-banner .service-banner-description-holder {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 25px;
    width: 400px;
    height: 100%;
    background: rgba(233, 234, 236, 0.8); }
    .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
      border-top: 7px solid #5e3190;
      padding: 30px 0; }
      .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
        color: #5e3190;
        font-size: 40px;
        line-height: 45px; }
      .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-sub-title {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 80px; }
      .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-text {
        margin-bottom: 20px; }
      @media (max-width: 767px) {
        .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-button-holder {
          display: inline-block;
          position: relative;
          margin: 0 auto;
          text-align: center;
          width: 100%; } }

.yoga-class-benefits-section {
  background: #f6f6f6;
  padding: 50px 0; }
  .yoga-class-benefits-section .title {
    color: #606060;
    font-size: 18px;
    font-weight: 500;
    text-align: center; }
    .yoga-class-benefits-section .title:after {
      content: "";
      display: block;
      margin: 16px auto 35px;
      width: 80px;
      height: 4px;
      background: #5e3190; }
  .yoga-class-benefits-section .list-holder {
    color: #666666; }
    .yoga-class-benefits-section .list-holder .list-title {
      color: #606060;
      font-weight: 500; }
    .yoga-class-benefits-section .list-holder ul {
      padding-left: 20px;
      margin-bottom: 30px; }
      .yoga-class-benefits-section .list-holder ul li {
        list-style-type: disc !important; }

.back-link {
  color: #606060;
  text-decoration: underline; }
  .back-link:hover {
    text-decoration: none;
    color: #606060; }

.item .item-title a {
  font-size: 2rem;
  color: #5e3190; }
  .item .item-title a:hover {
    color: rgba(94, 49, 144, 0.6); }

.item .item-title-sm {
  font-size: 1.5rem;
  color: #5e3190; }
  .item .item-title-sm:hover {
    color: rgba(94, 49, 144, 0.6); }

.subpages ul li {
  list-style: disc !important; }

.subpages p {
  word-wrap: break-word;
  overflow-wrap: break-word; }

.subpages .service-banner-section .service-banner {
  position: relative; }
  .subpages .service-banner-section .service-banner .service-banner-description-holder {
    position: absolute;
    top: 0;
    right: 30px;
    padding: 0 25px;
    width: 400px;
    height: 100%;
    background: rgba(233, 234, 236, 0.8); }
    .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
      border-top: 7px solid #5e3190;
      max-width: 400px; }
      .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
        color: #5e3190;
        font-size: 44px;
        line-height: 50px;
        font-weight: 500; }
      .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-sub-title {
        font-size: 44px;
        line-height: 50px;
        margin-bottom: 40px;
        font-weight: 500; }
      .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-text {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 43px; }
      .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .primary-btn {
        padding-left: 50px;
        padding-right: 50px; }

.subpages .yoga-class-benefits-section {
  background: #f6f6f6;
  padding: 50px 0; }
  .subpages .yoga-class-benefits-section .title {
    color: #666666;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    font-weight: normal; }
    .subpages .yoga-class-benefits-section .title:after {
      content: "";
      display: block;
      margin: 16px auto 35px;
      width: 80px;
      height: 4px;
      background: #5e3190; }
  .subpages .yoga-class-benefits-section .list-holder {
    color: #666666; }
    .subpages .yoga-class-benefits-section .list-holder .list-title {
      color: #606060;
      font-weight: 500; }
    .subpages .yoga-class-benefits-section .list-holder ul {
      padding-left: 20px;
      margin-bottom: 30px; }
      .subpages .yoga-class-benefits-section .list-holder ul li {
        padding: 5px; }

.subpages .back-link-holder {
  font-size: 14px; }

.subpages .back-link {
  color: #606060;
  text-decoration: underline; }
  .subpages .back-link:hover {
    text-decoration: none;
    color: #606060; }

.subpages .item {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: block; }
  .subpages .item .item-title {
    font-size: 28px;
    line-height: 32px;
    font-weight: 500;
    color: #5e3190; }
  .subpages .item .item-title-sm {
    font-size: 1.5rem;
    color: #5e3190; }
  .subpages .item:hover {
    opacity: 0.6; }

.subpages .col-md-3 .item-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500; }

.subpages .primary-btn {
  background: #5e3190; }
  .subpages .primary-btn:hover {
    background: rgba(94, 49, 144, 0.6); }

.subpages .primary-outline-btn {
  border-color: #5e3190;
  color: #5e3190; }
  .subpages .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(94, 49, 144, 0.6);
    border-color: rgba(94, 49, 144, 0.1); }

.subpages blockquote {
  border-color: #5e3190; }

.subpages .img-holder:before {
  background: #5e3190; }

.subpages.aqua-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #1fbab0; }
  .subpages.aqua-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #1fbab0; }

.subpages.aqua-color .yoga-class-benefits-section .title:after {
  background: #1fbab0; }

.subpages.aqua-color .item .item-title {
  color: #1fbab0; }

.subpages.aqua-color .item .item-title-sm {
  color: #1fbab0; }

.subpages.aqua-color .primary-btn {
  background: #1fbab0 !important; }
  .subpages.aqua-color .primary-btn:hover {
    background: rgba(31, 186, 176, 0.6) !important; }

.subpages.aqua-color .primary-outline-btn {
  border-color: #1fbab0 !important;
  color: #1fbab0 !important; }
  .subpages.aqua-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(31, 186, 176, 0.6) !important;
    border-color: rgba(31, 186, 176, 0.1) !important; }

.subpages.aqua-color blockquote {
  border-color: #1fbab0; }

.subpages.aqua-color .img-holder:before {
  background: #1fbab0; }

.subpages.orange-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #f45c0b; }
  .subpages.orange-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #f45c0b; }

.subpages.orange-color .yoga-class-benefits-section .title:after {
  background: #f45c0b; }

.subpages.orange-color .item .item-title {
  color: #f45c0b; }

.subpages.orange-color .item .item-title-sm {
  color: #f45c0b; }

.subpages.orange-color .primary-btn {
  background: #f45c0b !important; }
  .subpages.orange-color .primary-btn:hover {
    background: rgba(244, 92, 11, 0.6) !important; }

.subpages.orange-color .primary-outline-btn {
  border-color: #f45c0b !important;
  color: #f45c0b !important; }
  .subpages.orange-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(244, 92, 11, 0.6) !important;
    border-color: rgba(244, 92, 11, 0.1) !important; }

.subpages.orange-color blockquote {
  border-color: #f45c0b; }

.subpages.orange-color .img-holder:before {
  background: #f45c0b; }

.subpages.red-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #ea252b; }
  .subpages.red-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #ea252b; }

.subpages.red-color .yoga-class-benefits-section .title:after {
  background: #ea252b; }

.subpages.red-color .item .item-title {
  color: #ea252b; }

.subpages.red-color .item .item-title-sm {
  color: #ea252b; }

.subpages.red-color .primary-btn {
  background: #ea252b !important; }
  .subpages.red-color .primary-btn:hover {
    background: rgba(234, 37, 43, 0.6) !important; }

.subpages.red-color .primary-outline-btn {
  border-color: #ea252b !important;
  color: #ea252b !important; }
  .subpages.red-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(234, 37, 43, 0.6) !important;
    border-color: rgba(234, 37, 43, 0.1) !important; }

.subpages.red-color blockquote {
  border-color: #ea252b; }

.subpages.red-color .img-holder:before {
  background: #ea252b; }

.subpages.pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #ff80ff; }
  .subpages.pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #ff80ff; }

.subpages.pink-color .yoga-class-benefits-section .title:after {
  background: #ff80ff; }

.subpages.pink-color .item .item-title {
  color: #ff80ff; }

.subpages.pink-color .item .item-title-sm {
  color: #ff80ff; }

.subpages.pink-color .primary-btn {
  background: #ff80ff !important; }
  .subpages.pink-color .primary-btn:hover {
    background: rgba(255, 128, 255, 0.6) !important; }

.subpages.pink-color .primary-outline-btn {
  border-color: #ff80ff !important;
  color: #ff80ff !important; }
  .subpages.pink-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 128, 255, 0.6) !important;
    border-color: rgba(255, 128, 255, 0.1) !important; }

.subpages.pink-color blockquote {
  border-color: #ff80ff; }

.subpages.pink-color .img-holder:before {
  background: #ff80ff; }

.subpages.yellow-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #fdbf56; }
  .subpages.yellow-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #fdbf56; }

.subpages.yellow-color .yoga-class-benefits-section .title:after {
  background: #fdbf56; }

.subpages.yellow-color .item .item-title {
  color: #fdbf56; }

.subpages.yellow-color .item .item-title-sm {
  color: #fdbf56; }

.subpages.yellow-color .primary-btn {
  background: #fdbf56 !important; }
  .subpages.yellow-color .primary-btn:hover {
    background: rgba(253, 191, 86, 0.6) !important; }

.subpages.yellow-color .primary-outline-btn {
  border-color: #fdbf56 !important;
  color: #fdbf56 !important; }
  .subpages.yellow-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(253, 191, 86, 0.6) !important;
    border-color: rgba(253, 191, 86, 0.1) !important; }

.subpages.yellow-color blockquote {
  border-color: #fdbf56; }

.subpages.yellow-color .img-holder:before {
  background: #fdbf56; }

.subpages.green-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #78b713; }
  .subpages.green-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #78b713; }

.subpages.green-color .yoga-class-benefits-section .title:after {
  background: #78b713; }

.subpages.green-color .item .item-title {
  color: #78b713; }

.subpages.green-color .item .item-title-sm {
  color: #78b713; }

.subpages.green-color .primary-btn {
  background: #78b713 !important; }
  .subpages.green-color .primary-btn:hover {
    background: rgba(120, 183, 19, 0.6) !important; }

.subpages.green-color .primary-outline-btn {
  border-color: #78b713 !important;
  color: #78b713 !important; }
  .subpages.green-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(120, 183, 19, 0.6) !important;
    border-color: rgba(120, 183, 19, 0.1) !important; }

.subpages.green-color blockquote {
  border-color: #78b713; }

.subpages.green-color .img-holder:before {
  background: #78b713; }

.subpages.b-pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #ec008b; }
  .subpages.b-pink-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #ec008b; }

.subpages.b-pink-color .yoga-class-benefits-section .title:after {
  background: #ec008b; }

.subpages.b-pink-color .item .item-title {
  color: #ec008b; }

.subpages.b-pink-color .item .item-title-sm {
  color: #ec008b; }

.subpages.b-pink-color .primary-btn {
  background: #ec008b !important; }
  .subpages.b-pink-color .primary-btn:hover {
    background: rgba(236, 0, 139, 0.6) !important; }

.subpages.b-pink-color .primary-outline-btn {
  border-color: #ec008b;
  color: #ec008b; }
  .subpages.b-pink-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(236, 0, 139, 0.6);
    border-color: rgba(121, 125, 187, 0.1); }

.subpages.b-pink-color blockquote {
  border-color: #ec008b; }

.subpages.b-pink-color .img-holder:before {
  background: #ec008b; }

.subpages.l-purple-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #797dbb; }
  .subpages.l-purple-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #797dbb; }

.subpages.l-purple-color .yoga-class-benefits-section .title:after {
  background: #797dbb; }

.subpages.l-purple-color .item .item-title {
  color: #797dbb; }

.subpages.l-purple-color .item .item-title-sm {
  color: #797dbb; }
  .subpages.l-purple-color .item .item-title-sm:hover {
    color: rgba(121, 125, 187, 0.6); }

.subpages.l-purple-color .primary-btn {
  background: #797dbb !important; }
  .subpages.l-purple-color .primary-btn:hover {
    background: rgba(121, 125, 187, 0.6) !important; }

.subpages.l-purple-color .primary-outline-btn {
  border-color: #797dbb;
  color: #797dbb; }
  .subpages.l-purple-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(121, 125, 187, 0.6);
    border-color: rgba(121, 125, 187, 0.1); }

.subpages.l-purple-color blockquote {
  border-color: #797dbb; }

.subpages.l-purple-color .img-holder:before {
  background: #797dbb; }

.subpages.blue-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
  border-top: 7px solid #1b8de3; }
  .subpages.blue-color .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    color: #1b8de3; }

.subpages.blue-color .yoga-class-benefits-section .title:after {
  background: #1b8de3; }

.subpages.blue-color .item .item-title {
  color: #1b8de3; }

.subpages.blue-color .item .item-title-sm {
  color: #1b8de3; }
  .subpages.blue-color .item .item-title-sm:hover {
    color: rgba(27, 141, 227, 0.6); }

.subpages.blue-color .primary-btn {
  background: #1b8de3 !important; }
  .subpages.blue-color .primary-btn:hover {
    background: rgba(27, 141, 227, 0.6) !important; }

.subpages.blue-color .primary-outline-btn {
  border-color: #1b8de3;
  color: #1b8de3; }
  .subpages.blue-color .primary-outline-btn:hover {
    color: #ffffff !important;
    background: rgba(27, 141, 227, 0.6);
    border-color: rgba(27, 141, 227, 0.1); }

.subpages.blue-color blockquote {
  border-color: #1b8de3; }

.subpages.blue-color .img-holder:before {
  background: #1b8de3; }

.img-crop {
  overflow: hidden;
  max-height: 410px;
  max-width: 580px; }

body.page-template-our-team {
  overflow-x: hidden; }

body.body-team-active {
  cursor: pointer; }

.team .team-title {
  color: #5e3190;
  margin-top: 10px;
  font-size: 170%;
  font-weight: 500 !important; }
  @media (max-width: 767px) {
    .team .team-title {
      font-size: 140%; } }

.team .team-description {
  margin-bottom: 60px;
  color: #666666;
  font-size: 16px;
  line-height: 24px; }
  @media (max-width: 767px) {
    .team .team-description {
      margin-bottom: 0; } }

.team .search-title {
  margin-bottom: 20px;
  font-weight: bold;
  color: #606060;
  font-size: 18px; }

.team .search-field {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 7px 20px;
  outline: none;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  color: #5e3190;
  background: #f4f4f4; }
  .team .search-field:focus {
    border: 1px solid #5e308f; }

.team .team-members .active .article-image, .team .team-members .active .article-image:hover {
  opacity: 1; }
  .team .team-members .active .article-image img, .team .team-members .active .article-image:hover img {
    opacity: 1 !important; }

.team .team-members.mask-active:before {
  content: "";
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation-name: fadeIn;
  -o-animation-name: fadeIn;
     animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
       -o-animation-duration: 0.5s;
          animation-duration: 0.5s; }

.team .team-members .team-item {
  display: block; }
  @media (min-width: 992px) {
    .team .team-members .team-item:nth-of-type(6n+1) article .article-image .info-block {
      left: -8.2vw;
      width: 100vw; }
    .team .team-members .team-item:nth-of-type(6n+2) article .article-image .info-block {
      left: -22.9vw;
      width: 100vw; }
    .team .team-members .team-item:nth-of-type(6n+3) article .article-image .info-block {
      left: -37.6vw;
      width: 100vw; }
    .team .team-members .team-item:nth-of-type(6n+4) article .article-image .info-block {
      left: -52.4vw;
      width: 100vw; }
    .team .team-members .team-item:nth-of-type(6n+5) article .article-image .info-block {
      left: -67vw;
      width: 100vw; }
    .team .team-members .team-item:nth-of-type(6n+6) article .article-image .info-block {
      left: -81.6vw;
      width: 100vw; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .team .team-members .team-item:nth-of-type(4n+1) article .article-image .info-block {
    left: 0;
    width: calc(90px + 400%); }
  .team .team-members .team-item:nth-of-type(4n+2) article .article-image .info-block {
    left: calc(-30px - 100%);
    width: calc(90px + 400%); }
  .team .team-members .team-item:nth-of-type(4n+3) article .article-image .info-block {
    left: calc(-60px - 200%);
    width: calc(90px + 400%); }
  .team .team-members .team-item:nth-of-type(4n+4) article .article-image .info-block {
    left: calc(-90px - 300%);
    width: calc(90px + 400%); } }

@media (min-width: 768px) and (max-width: 991px) {
  .team .team-members .team-item:nth-of-type(4n+1) article .article-image .info-block {
    left: 0;
    width: calc(90px + 400%); }
  .team .team-members .team-item:nth-of-type(4n+2) article .article-image .info-block {
    left: calc(-30px - 100%);
    width: calc(90px + 400%); }
  .team .team-members .team-item:nth-of-type(4n+3) article .article-image .info-block {
    left: calc(-60px - 200%);
    width: calc(90px + 400%); }
  .team .team-members .team-item:nth-of-type(4n+4) article .article-image .info-block {
    left: calc(-90px - 300%);
    width: calc(90px + 400%); } }
  @media (max-width: 767px) {
    .team .team-members .team-item:nth-of-type(3n+1) article .article-image .info-block {
      left: 0;
      width: calc(60px + 300%); }
    .team .team-members .team-item:nth-of-type(3n+2) article .article-image .info-block {
      left: calc(-30px - 100%);
      width: calc(60px + 300%); }
    .team .team-members .team-item:nth-of-type(3n+3) article .article-image .info-block {
      left: calc(-60px - 200%);
      width: calc(60px + 300%); } }
  @media (max-width: 575px) {
    .team .team-members .team-item:nth-of-type(2n+1) article .article-image .info-block {
      left: 0;
      width: calc(60px + 200%); }
    .team .team-members .team-item:nth-of-type(2n+2) article .article-image .info-block {
      left: calc(-30px - 100%);
      width: calc(60px + 200%); }
    .team .team-members .team-item article .info-block .info-block-title {
      width: 80%; }
    .team .team-members .team-item article .info-block .info-block-close {
      top: 0; } }
  .team .team-members .team-item.active {
    z-index: 2; }
    .team .team-members .team-item.active article .info-block {
      display: block;
      z-index: 9999999;
      cursor: auto; }
  .team .team-members .team-item article {
    margin-bottom: 30px; }
    .team .team-members .team-item article:before {
      content: "";
      display: block;
      height: 7px;
      margin-bottom: 6px;
      background: #5e3190;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .team .team-members .team-item article .article-image {
      margin-bottom: 15px;
      position: relative;
      text-align: center; }
      .team .team-members .team-item article .article-image:hover img {
        opacity: 0.6; }
      .team .team-members .team-item article .article-image:hover .info-block {
        opacity: 1; }
      .team .team-members .team-item article .article-image img {
        cursor: pointer;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        filter: grayscale(100%); }
    .team .team-members .team-item article .info-block {
      position: absolute;
      top: 100%;
      background: #ffffff;
      width: 1110px;
      padding: 25px 20px;
      display: none; }

@media (min-width: 992px) and (max-width: 1199px) {
  .team .team-members .team-item article .info-block {
    width: 910px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .team .team-members .team-item article .info-block {
    width: 690px; } }
      @media (max-width: 767px) {
        .team .team-members .team-item article .info-block {
          width: 100%; } }
      .team .team-members .team-item article .info-block .info-block-close {
        position: absolute;
        top: 5px;
        right: 60px;
        border-radius: 50%;
        border: 2px solid #5e3190;
        width: 20px;
        height: 20px;
        text-align: center;
        font-size: 12px;
        line-height: 17px;
        cursor: pointer;
        color: #5e3190; }
        .team .team-members .team-item article .info-block .info-block-close:hover {
          border-color: rgba(94, 49, 144, 0.6);
          color: rgba(94, 49, 144, 0.6); }
        @media (max-width: 1199px) {
          .team .team-members .team-item article .info-block .info-block-close {
            right: 15px; } }
      .team .team-members .team-item article .info-block .info-block-title {
        font-size: 20px;
        color: #5e3190;
        font-weight: 500;
        text-align: left; }
      .team .team-members .team-item article .info-block .info-block-type {
        text-align: left; }
      .team .team-members .team-item article .info-block .info-block-content {
        text-align: left;
        padding-top: 30px; }
        .team .team-members .team-item article .info-block .info-block-content a.primary-outline-btn {
          min-width: 160px;
          height: 32px;
          font-size: 18px;
          margin: auto;
          padding: 0 15px;
          line-height: 28px;
          border: 1px solid #5e3190;
          color: #5e3190; }
    .team .team-members .team-item article .team-member_name {
      margin-bottom: 0;
      cursor: pointer; }
    .team .team-members .team-item article .team-member_type {
      font-size: 16px;
      color: #999999; }
    .team .team-members .team-item article.yoga:before {
      background: #5e3190; }
    .team .team-members .team-item article.yoga .article-title {
      color: #5e3190; }
    .team .team-members .team-item article.yoga .info-block .info-block-close {
      border: 2px solid #5e3190;
      color: #5e3190; }
      .team .team-members .team-item article.yoga .info-block .info-block-close:hover {
        border-color: rgba(94, 49, 144, 0.6);
        color: rgba(94, 49, 144, 0.6); }
    .team .team-members .team-item article.yoga .info-block .info-block-title {
      color: #5e3190; }
    .team .team-members .team-item article.yoga .primary-outline-btn:hover, .team .team-members .team-item article.yoga .primary-outline-btn:focus {
      box-shadow: none;
      color: #fff !important;
      background: rgba(94, 49, 144, 0.6) !important;
      border-color: rgba(94, 49, 144, 0.6) !important; }
    .team .team-members .team-item article.yoga:hover:before {
      background: rgba(94, 49, 144, 0.6); }
    .team .team-members .team-item article.yoga:hover .article-title {
      color: rgba(94, 49, 144, 0.6); }
    .team .team-members .team-item article.yellow-color:before {
      background: #fdbf56; }
    .team .team-members .team-item article.yellow-color .article-title {
      color: #fdbf56; }
    .team .team-members .team-item article.yellow-color .info-block .info-block-close {
      border: 2px solid #fdbf56;
      color: #fdbf56; }
      .team .team-members .team-item article.yellow-color .info-block .info-block-close:hover {
        border-color: rgba(253, 191, 86, 0.6);
        color: rgba(253, 191, 86, 0.6); }
    .team .team-members .team-item article.yellow-color .info-block .info-block-title {
      color: #fdbf56; }
    .team .team-members .team-item article.yellow-color:hover:before {
      background: rgba(253, 191, 86, 0.6); }
    .team .team-members .team-item article.yellow-color:hover .article-title {
      color: rgba(253, 191, 86, 0.6); }
    .team .team-members .team-item article.barre:before {
      background: #ff80ff; }
    .team .team-members .team-item article.barre .article-title {
      color: #ff80ff; }
    .team .team-members .team-item article.barre .info-block .info-block-close {
      border: 2px solid #ff80ff;
      color: #ff80ff; }
      .team .team-members .team-item article.barre .info-block .info-block-close:hover {
        border-color: rgba(255, 128, 255, 0.6);
        color: rgba(255, 128, 255, 0.6); }
    .team .team-members .team-item article.barre .info-block .info-block-title {
      color: #ff80ff; }
    .team .team-members .team-item article.barre .info-block .info-block-content .primary-outline-btn {
      border-color: #ff80ff !important;
      color: #ff80ff !important; }
      .team .team-members .team-item article.barre .info-block .info-block-content .primary-outline-btn:hover, .team .team-members .team-item article.barre .info-block .info-block-content .primary-outline-btn:focus {
        box-shadow: none;
        color: #fff !important;
        background: rgba(255, 128, 255, 0.6) !important;
        border-color: rgba(255, 128, 255, 0.6) !important; }
    .team .team-members .team-item article.barre:hover:before {
      background: rgba(255, 128, 255, 0.6); }
    .team .team-members .team-item article.barre:hover .article-title {
      color: rgba(255, 128, 255, 0.6); }
    .team .team-members .team-item article.aqua-color:before, .team .team-members .team-item article.therapist:before {
      background: #1fbab0; }
    .team .team-members .team-item article.aqua-color .article-title, .team .team-members .team-item article.therapist .article-title {
      color: #1fbab0; }
    .team .team-members .team-item article.aqua-color .info-block .info-block-close, .team .team-members .team-item article.therapist .info-block .info-block-close {
      border: 2px solid #1fbab0;
      color: #1fbab0; }
      .team .team-members .team-item article.aqua-color .info-block .info-block-close:hover, .team .team-members .team-item article.therapist .info-block .info-block-close:hover {
        border-color: rgba(31, 186, 176, 0.6);
        color: rgba(31, 186, 176, 0.6); }
    .team .team-members .team-item article.aqua-color .info-block .info-block-title, .team .team-members .team-item article.therapist .info-block .info-block-title {
      color: #1fbab0; }
    .team .team-members .team-item article.aqua-color .primary-outline-btn, .team .team-members .team-item article.therapist .primary-outline-btn {
      border-color: #1fbab0 !important;
      color: #1fbab0 !important; }
      .team .team-members .team-item article.aqua-color .primary-outline-btn:hover, .team .team-members .team-item article.aqua-color .primary-outline-btn:focus, .team .team-members .team-item article.therapist .primary-outline-btn:hover, .team .team-members .team-item article.therapist .primary-outline-btn:focus {
        box-shadow: none;
        color: #fff !important;
        background: rgba(31, 186, 176, 0.6) !important;
        border-color: rgba(31, 186, 176, 0.6) !important; }
    .team .team-members .team-item article.aqua-color:hover:before, .team .team-members .team-item article.therapist:hover:before {
      background: rgba(31, 186, 176, 0.6); }
    .team .team-members .team-item article.aqua-color:hover .article-title, .team .team-members .team-item article.therapist:hover .article-title {
      color: rgba(31, 186, 176, 0.6); }
    .team .team-members .team-item article.pilates:before, .team .team-members .team-item article.gyrotonic:before {
      background: #f45c0b; }
    .team .team-members .team-item article.pilates .article-title, .team .team-members .team-item article.gyrotonic .article-title {
      color: #f45c0b; }
    .team .team-members .team-item article.pilates .info-block .info-block-close, .team .team-members .team-item article.gyrotonic .info-block .info-block-close {
      border: 2px solid #f45c0b;
      color: #f45c0b; }
      .team .team-members .team-item article.pilates .info-block .info-block-close:hover, .team .team-members .team-item article.gyrotonic .info-block .info-block-close:hover {
        border-color: rgba(244, 92, 11, 0.6);
        color: rgba(244, 92, 11, 0.6); }
    .team .team-members .team-item article.pilates .info-block .info-block-title, .team .team-members .team-item article.gyrotonic .info-block .info-block-title {
      color: #f45c0b; }
    .team .team-members .team-item article.pilates .info-block .info-block-content .primary-outline-btn, .team .team-members .team-item article.gyrotonic .info-block .info-block-content .primary-outline-btn {
      border-color: #f45c0b !important;
      color: #f45c0b; }
    .team .team-members .team-item article.pilates:hover:before, .team .team-members .team-item article.gyrotonic:hover:before {
      background: rgba(244, 92, 11, 0.6); }
    .team .team-members .team-item article.pilates:hover .article-title, .team .team-members .team-item article.gyrotonic:hover .article-title {
      color: rgba(244, 92, 11, 0.6); }
    .team .team-members .team-item article.red-color:before {
      background: #ea252b; }
    .team .team-members .team-item article.red-color .article-title {
      color: #ea252b; }
    .team .team-members .team-item article.red-color .info-block .info-block-close {
      border: 2px solid #ea252b;
      color: #ea252b; }
      .team .team-members .team-item article.red-color .info-block .info-block-close:hover {
        border-color: rgba(234, 37, 43, 0.6);
        color: rgba(234, 37, 43, 0.6); }
    .team .team-members .team-item article.red-color .info-block .info-block-title {
      color: #ea252b; }
    .team .team-members .team-item article.red-color:hover:before {
      background: rgba(234, 37, 43, 0.6); }
    .team .team-members .team-item article.red-color:hover .article-title {
      color: rgba(234, 37, 43, 0.6); }

.team .load-more-button-team, .team .hide-more-button-team {
  text-align: center; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.primary-btn.load-more-button-team {
  width: 160px;
  height: 32px;
  font-size: 18px;
  background: #999999 !important; }

.info-block-content.therapist .row,
.info-block-content.yoga .row,
.info-block-content.pilates .row,
.info-block-content.barre .row,
.info-block-content.gyrotonics .row {
  padding-bottom: 15px;
  padding-top: 30px; }

.team .search-field:focus::-webkit-input-placeholder {
  color: #5e3190; }

.team .search-field:active::-webkit-input-placeholder {
  color: #5e3190; }

.filters-item-title {
  height: 32px;
  margin-bottom: 25px; }
  .filters-item-title.after-angle-down::after {
    position: absolute;
    top: 16px;
    right: 20px; }
  .filters-item-title .search-field {
    font-size: 14px; }

.info-block-content .row .col-md-2 {
  width: auto;
  max-width: 100%; }
  .info-block-content .row .col-md-2 .primary-outline-btn {
    margin-bottom: 15px; }

.info-block-content.pilates .row .col-md-2 .primary-outline-btn {
  color: #f45c0b !important; }
  .info-block-content.pilates .row .col-md-2 .primary-outline-btn:hover, .info-block-content.pilates .row .col-md-2 .primary-outline-btn:focus {
    box-shadow: none;
    background-color: rgba(244, 92, 11, 0.6);
    color: #ffffff !important;
    border: none !important;
    line-height: 32px; }

.load-more-team .load-more-button-team {
  max-width: 160px; }
  .load-more-team .load-more-button-team:hover {
    background-color: rgba(153, 153, 153, 0.6) !important; }

.load-more-team .hide-more-button-team {
  max-width: 160px; }

.touchevents section.article-image:hover img {
  opacity: 1; }

.pricing-section {
  padding-bottom: 50px; }
  .pricing-section .title {
    color: #5e3190;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 500;
    line-height: 32px; }
    @media (max-width: 991px) {
      .pricing-section .title {
        margin-bottom: 30px;
        font-size: 17px; } }
  .pricing-section .image-holder:before {
    content: "";
    display: block;
    height: 7px;
    margin-bottom: 6px;
    background: #5e3190;
    width: 100%; }
  .pricing-section #equipment_pilates .image-holder:before {
    background: #f45c0b; }
  .pricing-section #gyrotonic .image-holder:before {
    background: #fdbf56; }
  .pricing-section #barre .image-holder:before {
    background: #ff80ff; }
  .pricing-section .nav {
    border: none;
    border-radius: 15px; }
    @media (max-width: 991px) {
      .pricing-section .nav {
        background: #eaeaea;
        padding-top: 15px;
        padding-bottom: 15px;
        display: block; } }
    .pricing-section .nav .nav-item {
      text-align: center; }
      @media (min-width: 992px) {
        .pricing-section .nav .nav-item {
          width: calc((100% - 40px) / 5); } }
      @media (min-width: 992px) {
        .pricing-section .nav .nav-item + .nav-item {
          margin-left: 10px; } }
      .pricing-section .nav .nav-item .nav-link {
        background: #EBEBEB;
        color: #606060;
        height: 45px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px; }
        @media (max-width: 991px) {
          .pricing-section .nav .nav-item .nav-link {
            text-decoration: underline; } }
        .pricing-section .nav .nav-item .nav-link.active {
          border-color: transparent;
          color: #5e3190; }
          @media (min-width: 992px) {
            .pricing-section .nav .nav-item .nav-link.active {
              background: #f6f6f6; } }
          .pricing-section .nav .nav-item .nav-link.active.red-color {
            color: #ea252b; }
          .pricing-section .nav .nav-item .nav-link.active.pink-color {
            color: #ff80ff; }
          .pricing-section .nav .nav-item .nav-link.active.yellow-color {
            color: #fdbf56; }
          .pricing-section .nav .nav-item .nav-link.active.orange-color {
            color: #f45c0b; }
        .pricing-section .nav .nav-item .nav-link:hover {
          border-color: transparent; }
      @media (max-width: 991px) {
        .pricing-section .nav .nav-item {
          font-size: 100%; } }
      @media (max-width: 575px) {
        .pricing-section .nav .nav-item {
          font-size: 85%; } }
    .pricing-section .nav .li-empty {
      padding-top: 8px; }
  .pricing-section .tab-content .tab-pane .pricing-articles {
    background: #f6f6f6;
    margin-left: -15px;
    margin-right: -15px;
    padding: 50px 30px 30px;
    border-radius: 10px; }
    @media (max-width: 991px) {
      .pricing-section .tab-content .tab-pane .pricing-articles {
        background-color: transparent;
        padding: 30px 15px;
        border-radius: 0; } }
    .pricing-section .tab-content .tab-pane .pricing-articles .section-title {
      display: none;
      font-size: 16px;
      margin-bottom: 5px;
      color: #606060; }
    .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 25px; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.primary-color:before {
        background: #5e3190; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.primary-color .description-holder .pricing-article-sub-title {
        color: #5e3190; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.primary-color .description-holder .btn-holder .primary-btn {
        background: #5e3190 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.primary-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.primary-color .description-holder .btn-holder .primary-outline-btn {
        color: #5e3190 !important;
        border-color: #5e3190 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.primary-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #5e3190 !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.aqua-color:before {
        background: #1fbab0; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.aqua-color .description-holder .pricing-article-sub-title {
        color: #1fbab0; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.aqua-color .description-holder .btn-holder .primary-btn {
        background: #1fbab0 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.aqua-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.aqua-color .description-holder .btn-holder .primary-outline-btn {
        color: #1fbab0 !important;
        border-color: #1fbab0 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.aqua-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #1fbab0 !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.orange-color:before {
        background: #f45c0b; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.orange-color .description-holder .pricing-article-sub-title {
        color: #f45c0b; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.orange-color .description-holder .btn-holder .primary-btn {
        background: #f45c0b !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.orange-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.orange-color .description-holder .btn-holder .primary-outline-btn {
        color: #f45c0b !important;
        border-color: #f45c0b !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.orange-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #f45c0b !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.red-color:before {
        background: #ea252b; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.red-color .description-holder .pricing-article-sub-title {
        color: #ea252b; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.red-color .description-holder .btn-holder .primary-btn {
        background: #ea252b !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.red-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.red-color .description-holder .btn-holder .primary-outline-btn {
        color: #ea252b !important;
        border-color: #ea252b !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.red-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #ea252b !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.pink-color:before {
        background: #ff80ff; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.pink-color .description-holder .pricing-article-sub-title {
        color: #ff80ff; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.pink-color .description-holder .btn-holder .primary-btn {
        background: #ff80ff !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.pink-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.pink-color .description-holder .btn-holder .primary-outline-btn {
        color: #ff80ff !important;
        border-color: #ff80ff !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.pink-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #ff80ff !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.b-pink-color:before {
        background: #ec008b; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.b-pink-color .description-holder .pricing-article-sub-title {
        color: #ec008b; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.b-pink-color .description-holder .btn-holder .primary-btn {
        background: #ec008b !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.b-pink-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.b-pink-color .description-holder .btn-holder .primary-outline-btn {
        color: #ec008b !important;
        border-color: #ec008b !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.b-pink-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #ec008b !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.yellow-color:before {
        background: #fdbf56; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.yellow-color .description-holder .pricing-article-sub-title {
        color: #fdbf56; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.yellow-color .description-holder .btn-holder .primary-btn {
        background: #fdbf56 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.yellow-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.yellow-color .description-holder .btn-holder .primary-outline-btn {
        color: #fdbf56 !important;
        border-color: #fdbf56 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.yellow-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #fdbf56 !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.green-color:before {
        background: #78b713; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.green-color .description-holder .pricing-article-sub-title {
        color: #78b713; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.green-color .description-holder .btn-holder .primary-btn {
        background: #78b713 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.green-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.green-color .description-holder .btn-holder .primary-outline-btn {
        color: #78b713 !important;
        border-color: #78b713 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.green-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #78b713 !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.l-purple-color:before {
        background: #797dbb; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.l-purple-color .description-holder .pricing-article-sub-title {
        color: #797dbb; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.l-purple-color .description-holder .btn-holder .primary-btn {
        background: #797dbb !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.l-purple-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.l-purple-color .description-holder .btn-holder .primary-outline-btn {
        color: #797dbb !important;
        border-color: #797dbb !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.l-purple-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #797dbb !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.blue-color:before {
        background: #1b8de3; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.blue-color .description-holder .pricing-article-sub-title {
        color: #1b8de3; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.blue-color .description-holder .btn-holder .primary-btn {
        background: #1b8de3 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.blue-color .description-holder .btn-holder .primary-btn:hover {
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.blue-color .description-holder .btn-holder .primary-outline-btn {
        color: #1b8de3 !important;
        border-color: #1b8de3 !important; }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item.blue-color .description-holder .btn-holder .primary-outline-btn:hover {
          color: #ffffff !important;
          background: #1b8de3 !important;
          opacity: 0.6; }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .image-holder {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
        flex: 0 0 44%;
        max-width: 44%;
        position: relative;
        min-height: 1px;
        margin-right: 4%;
        width: 100%; }
        @media (max-width: 991px) {
          .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .image-holder {
            -ms-flex: 0 0 100%;
            -webkit-box-flex: 0;
                    flex: 0 0 100%;
            max-width: 100%; } }
      .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 52%;
        flex: 0 0 52%;
        max-width: 52%;
        position: relative;
        min-height: 1px;
        width: 100%; }
        @media (max-width: 991px) {
          .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder {
            -ms-flex: 0 0 50%;
            -webkit-box-flex: 0;
                    flex: 0 0 50%;
            max-width: 50%; } }
        @media (max-width: 991px) {
          .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder {
            font-size: 85%; } }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-title {
          font-size: 24px;
          font-weight: 500;
          line-height: 28px;
          color: #606060; }
          @media (max-width: 991px) {
            .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-title {
              font-size: 100%;
              margin-bottom: 0; } }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
          font-size: 22px;
          font-weight: 500;
          line-height: 28px;
          color: #5e3190;
          margin-bottom: 10px; }
          @media (max-width: 991px) {
            .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
              font-size: 100%;
              margin-bottom: 0; } }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-description {
          color: #999999;
          margin-bottom: 20px;
          font-size: 16px; }
          @media (max-width: 991px) {
            .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-description {
              margin-bottom: 0; } }
        .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .btn-holder .primary-btn {
          margin-right: 5px; }
        @media (max-width: 991px) {
          .pricing-section .tab-content .tab-pane .pricing-articles .pricing-article-item .description-holder .btn-holder a {
            margin-top: 10px;
            font-size: 80%;
            padding-left: 10px;
            padding-right: 10px; } }
  .pricing-section .tab-content .tab-pane .pricing-tables .additional-info-text {
    padding: 15px 0;
    font-size: 16px;
    color: #666666; }
    @media (max-width: 991px) {
      .pricing-section .tab-content .tab-pane .pricing-tables .additional-info-text {
        padding: 10px 0;
        font-size: 80%; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .additional-info-text a {
      color: #666666;
      text-decoration: underline;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .pricing-section .tab-content .tab-pane .pricing-tables .additional-info-text a:hover {
        text-decoration: none; }
  .pricing-section .tab-content .tab-pane .pricing-tables .pricing-tables-title {
    padding: 50px 0;
    font-size: 18px;
    font-weight: 700;
    color: #666666; }
    .pricing-section .tab-content .tab-pane .pricing-tables .pricing-tables-title.text_centre {
      text-align: center; }
    @media (max-width: 1023px) {
      .pricing-section .tab-content .tab-pane .pricing-tables .pricing-tables-title {
        font-size: 16px;
        text-align: center; } }
  .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-description-item {
      padding: 86px 0 25px 0; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-description-item .description-holder {
        text-align: left;
        font-weight: 500;
        color: #606060;
        height: 121px;
        padding: 10px;
        border-bottom: 2px solid #e6e6e6; }
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-description-item .description-holder:last-child {
          border-bottom: 1px solid transparent; }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .class-name {
      border-bottom: 2px solid #e6e6e6; }

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .class-name {
    font-size: 17px;
    line-height: 1em; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .price {
      height: 121px;
      border-top: none; }
      @media (max-width: 991px) {
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .price {
          font-size: 20px; } }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .price .price-holder {
        margin-bottom: 30px; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .price .primary-btn {
        font-size: 16px; }

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.grouped-items .price-item .price-item-content .price-item-front .primary-btn {
    font-size: 90%; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item-holder-title {
      position: relative;
      text-align: center;
      min-height: 1px;
      width: 100%;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 25px; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item-holder-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 2px;
        background: #f6f6f6;
        z-index: 1; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item-holder-title:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -2px;
        width: 100%;
        height: 5px;
        border-left: 2px solid #f6f6f6;
        border-right: 2px solid #f6f6f6;
        z-index: 1; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item-holder-title span {
        display: inline-block;
        color: #666666;
        background: #ffffff;
        position: relative;
        z-index: 2;
        padding: 5px 10px;
        font-weight: 700; }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item {
      margin-right: 30px;
      margin-bottom: 30px;
      position: relative;
      text-align: center;
      min-height: 1px;
      width: 100%; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item:last-child {
        margin-right: 0; }
      .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content {
        border: 1px solid transparent;
        position: relative;
        -webkit-transform-style: preserve-3d;
        -webkit-transition: 0.5s;
        -moz-transform-style: preserve-3d;
        -moz-transition: 0.5s;
        -ms-transform-style: preserve-3d;
        -ms-transition: 0.5s;
        -o-transform-style: preserve-3d;
        -o-transition: 0.5s;
        transition: 0.5s; }
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content.show-back {
          -webkit-transform: rotateY(180deg);
          -o-transform: rotateY(180deg);
          transform: rotateY(180deg); }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content.show-back .price-item-front {
            z-index: 0; }
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front {
          padding: 25px 0;
          background: #f6f6f6;
          border-radius: 30px;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          width: 100%;
          height: 100%;
          z-index: 10; }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .class-name {
            font-size: 18px;
            line-height: 26px;
            padding: 10px;
            color: #666666;
            height: 60px;
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column; }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price {
            padding: 12px 8px;
            background: #fafafa;
            border-top: 2px solid #e6e6e6;
            border-bottom: 2px solid #e6e6e6;
            font-size: 20px !important;
            font-weight: 500;
            color: #5e3190; }
            @media (min-width: 992px) {
              .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price {
                font-size: 18px; } }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month {
            padding: 10px;
            height: 75px;
            font-size: 14px; }
            @media (max-width: 1199px) {
              .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month {
                font-size: 95%; } }
            .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value {
              font-size: 16px;
              color: #5e3190; }
              @media (max-width: 1199px) {
                .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value {
                  font-size: 95%;
                  margin-top: 5px; } }
              .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value i {
                width: 20px;
                height: 20px;
                line-height: 20px;
                font-size: 12px;
                border: 2px solid #5e3190;
                border-radius: 50px;
                display: inline-block;
                vertical-align: middle;
                margin-right: 5px; }
              .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value span {
                display: inline-block;
                vertical-align: middle; }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .close-info {
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            top: 0;
            position: absolute;
            top: 12px;
            right: 12px;
            width: 20px;
            height: 20px;
            border: 1px solid #5e3190;
            border-radius: 50px;
            line-height: 18px;
            font-size: 12px;
            color: #5e3190;
            cursor: pointer; }
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back {
          background: #f6f6f6;
          border-radius: 30px;
          position: absolute;
          padding: 25px 0;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          -webkit-transform: rotateY(180deg);
          -o-transform: rotateY(180deg);
          transform: rotateY(180deg); }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back::after {
            content: '';
            position: absolute;
            left: 5%;
            bottom: 10px;
            width: 90%;
            height: 35px;
            background: -webkit-linear-gradient(rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
            background-image: -o-linear-gradient(rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
            background-image: -webkit-linear-gradient(rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
            background-image: linear-gradient(rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
            background-image: -ms-linear-gradient(rgba(246, 246, 246, 0) 0%, #f6f6f6 100%); }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .price-item-info {
            font-size: 14px;
            line-height: 1.2em;
            color: #606060;
            padding: 0 20px 20px;
            margin-top: 10px;
            text-align: left;
            overflow-y: auto;
            max-height: 100%; }
            @media (max-width: 991px) {
              .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .price-item-info {
                font-size: 12px;
                padding: 0 10px 20px; } }
          .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .close-info {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 20px;
            height: 20px;
            border: 1px solid #5e3190;
            border-radius: 50px;
            line-height: 16px;
            font-size: 12px;
            color: #5e3190;
            cursor: pointer; }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-1 .price-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-2 .price-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px) / 2);
      flex: 0 0 calc((100% - 30px) / 2);
      max-width: calc((100% - 30px) / 2); }
      @media (max-width: 991px) {
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-2 .price-item {
          -ms-flex: 0 0 calc((100% - 20px) / 2);
          -webkit-box-flex: 0;
                  flex: 0 0 calc((100% - 20px) / 2);
          max-width: calc((100% - 20px) / 2);
          margin-right: 10px; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-3 .price-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px) / 3);
      flex: 0 0 calc((100% - 60px) / 3);
      max-width: calc((100% - 60px) / 3); }
      @media (max-width: 991px) {
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-3 .price-item {
          -ms-flex: 0 0 calc((100% - 20px) / 2);
          -webkit-box-flex: 0;
                  flex: 0 0 calc((100% - 20px) / 2);
          max-width: calc((100% - 20px) / 2);
          margin-right: 10px; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-4 .price-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 90px) / 4);
      flex: 0 0 calc((100% - 90px) / 4);
      max-width: calc((100% - 90px) / 4); }
      @media (max-width: 991px) {
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-4 .price-item {
          -ms-flex: 0 0 calc((100% - 30px) / 2);
          -webkit-box-flex: 0;
                  flex: 0 0 calc((100% - 30px) / 2);
          max-width: calc((100% - 30px) / 2);
          margin-right: 5px; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-5 .price-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 120px) / 5);
      flex: 0 0 calc((100% - 120px) / 5);
      max-width: calc((100% - 120px) / 5); }
      @media (max-width: 991px) {
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-5 .price-item {
          -ms-flex: 0 0 calc((100% - 30px) / 2);
          -webkit-box-flex: 0;
                  flex: 0 0 calc((100% - 30px) / 2);
          max-width: calc((100% - 30px) / 2);
          margin-right: 5px; } }
    .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-6 .price-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 150px) / 6);
      flex: 0 0 calc((100% - 150px) / 6);
      max-width: calc((100% - 150px) / 6); }
      @media (max-width: 991px) {
        .pricing-section .tab-content .tab-pane .pricing-tables .price-item-holder.item-6 .price-item {
          -ms-flex: 0 0 calc((100% - 30px) / 2);
          -webkit-box-flex: 0;
                  flex: 0 0 calc((100% - 30px) / 2);
          max-width: calc((100% - 30px) / 2);
          margin-right: 5px; } }

.trier-section {
  text-align: center;
  background: #5e3190;
  color: #ffffff;
  padding: 65px 0 85px 0; }
  @media (max-width: 991px) {
    .trier-section {
      padding: 20px 15px; } }
  .trier-section .trier-section-title {
    font-size: 44px;
    font-weight: 500;
    color: #ffffff; }
    @media (max-width: 991px) {
      .trier-section .trier-section-title {
        font-size: 110%; } }
  .trier-section .trier-section-text {
    font-size: 28px;
    margin-bottom: 30px; }
    @media (max-width: 991px) {
      .trier-section .trier-section-text {
        font-size: 100%; } }
  .trier-section .white-outline-btn {
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50px;
    padding: 3px 25px;
    text-decoration: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 18px;
    line-height: 26px;
    display: inline-block; }
    .trier-section .white-outline-btn:hover {
      color: #5e3190;
      background: #ffffff; }

.pricing-tables .price-item-holder .primary-btn {
  margin-top: 20px; }

.pricing-tables .price-item-holder.grouped-items .primary-btn {
  margin-top: 0; }

@media (max-width: 991px) {
  #tabs ul.nav-tabs {
    text-align: center; }
    #tabs ul.nav-tabs li.nav-item {
      display: inline;
      margin-bottom: 10px;
      margin-left: 5px; }
      #tabs ul.nav-tabs li.nav-item::after {
        content: "";
        border-right: 1px solid #606060; }
      #tabs ul.nav-tabs li.nav-item:last-child::after {
        border-right: none; }
      #tabs ul.nav-tabs li.nav-item a.nav-link {
        height: 25px;
        padding-bottom: 0;
        padding-top: 0;
        display: inline-block; } }

@media (max-width: 767px) {
  #tabs ul.nav-tabs {
    text-align: center; }
    #tabs ul.nav-tabs li.nav-item {
      display: inline;
      margin-bottom: 10px;
      margin-left: 5px; }
      #tabs ul.nav-tabs li.nav-item::after {
        content: "";
        border-right: 1px solid #606060; }
      #tabs ul.nav-tabs li.nav-item:last-child::after {
        border-right: none; }
      #tabs ul.nav-tabs li.nav-item a.nav-link {
        height: 25px;
        padding-bottom: 0;
        padding-top: 0;
        display: inline-block; }
  #tabs .pricing-articles .section-title {
    display: block; }
  #tabs .pricing-articles .pricing-article-item .image-holder {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: 45%; }
  #tabs .pricing-articles .pricing-article-item .description-holder .pricing-article-title {
    line-height: 1em;
    font-size: 17px; }
  #tabs .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
    line-height: 1.2em;
    margin-bottom: 5px;
    font-size: 17px; }
  #tabs .pricing-articles .pricing-article-item .description-holder .pricing-article-description {
    font-size: 12px;
    line-height: 1.2em; }
  #tabs .price-item-holder.item-1 {
    max-width: calc((100% - 20px) / 2); }
  #tabs #yoga-kids_dropin,
  #tabs #yoga-kids_classpass,
  #tabs #meditation_dropin,
  #tabs #meditation_classpass {
    padding-left: 0;
    padding-right: 0; }
    #tabs #yoga-kids_dropin .price-item-holder.item-1,
    #tabs #yoga-kids_classpass .price-item-holder.item-1,
    #tabs #meditation_dropin .price-item-holder.item-1,
    #tabs #meditation_classpass .price-item-holder.item-1 {
      max-width: 100%;
      padding-right: 0; }
    #tabs #yoga-kids_dropin .price-item,
    #tabs #yoga-kids_classpass .price-item,
    #tabs #meditation_dropin .price-item,
    #tabs #meditation_classpass .price-item {
      max-width: none;
      min-height: 0;
      min-width: 0;
      padding-left: 0; }
  #tabs #meditation_container {
    padding-right: 0; } }

@media (max-width: 767px) {
  .price-item-front .class-name {
    font-size: 17px !important;
    line-height: 1em !important; } }

.pricing-section .tab-content #yoga_pilates.tab-pane .primary-btn {
  background: #5e3190 !important; }
  .pricing-section .tab-content #yoga_pilates.tab-pane .primary-btn:hover {
    background: rgba(94, 49, 144, 0.6) !important; }

.pricing-section .tab-content #yoga_pilates.tab-pane .primary-outline-btn {
  color: #5e3190 !important;
  border: 1px solid #5e3190 !important;
  margin-top: 3px; }
  .pricing-section .tab-content #yoga_pilates.tab-pane .primary-outline-btn:hover {
    color: white !important;
    border: 1px solid transparent !important; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-articles .pricing-article-item:before {
  background: #5e3190; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
  color: #5e3190; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-front, .pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-back {
  border: 1px solid #5e3190 !important; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price {
  color: #5e3190; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value {
  color: #5e3190; }
  .pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value i {
    border: 1px solid #5e3190; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .close-info {
  border: 1px solid #5e3190;
  color: #5e3190; }

.pricing-section .tab-content #yoga_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .close-info {
  border: 1px solid #5e3190;
  color: #5e3190; }

#yoga-kids_dropin, #meditation_dropin {
  padding-left: 0; }

#yoga-kids_classpass, #meditation_classpass {
  padding-right: 0; }

#meditation_container {
  padding-left: 0;
  padding-right: 22px; }

.pricing-section .tab-content #gyrotonic.tab-pane .primary-btn {
  background: #fdbf56 !important; }
  .pricing-section .tab-content #gyrotonic.tab-pane .primary-btn:hover {
    background: rgba(253, 191, 86, 0.6) !important; }

.pricing-section .tab-content #gyrotonic.tab-pane .primary-outline-btn {
  color: #fdbf56 !important;
  border: 1px solid #fdbf56 !important;
  margin-top: 3px; }
  .pricing-section .tab-content #gyrotonic.tab-pane .primary-outline-btn:hover {
    color: white !important;
    border: 1px solid transparent !important;
    background: rgba(253, 191, 86, 0.6) !important; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-articles .pricing-article-item:before {
  background: #fdbf56; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
  color: #fdbf56; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-front, .pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-back {
  border: 1px solid #fdbf56 !important; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price {
  color: #fdbf56; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value {
  color: #fdbf56; }
  .pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value i {
    border: 1px solid #fdbf56; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .close-info {
  border: 1px solid #fdbf56;
  color: #fdbf56; }

.pricing-section .tab-content #gyrotonic.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .close-info {
  border: 1px solid #fdbf56;
  color: #fdbf56; }

.pricing-section .tab-content #equipment_pilates.tab-pane .primary-btn {
  background: #f45c0b !important; }
  .pricing-section .tab-content #equipment_pilates.tab-pane .primary-btn:hover {
    background: rgba(244, 92, 11, 0.6) !important; }

.pricing-section .tab-content #equipment_pilates.tab-pane .primary-outline-btn {
  color: #f45c0b !important;
  border: 1px solid #f45c0b !important;
  margin-top: 3px; }
  .pricing-section .tab-content #equipment_pilates.tab-pane .primary-outline-btn:hover {
    color: white !important;
    border: 1px solid transparent !important;
    background: rgba(244, 92, 11, 0.6) !important; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-articles .pricing-article-item:before {
  background: #f45c0b; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
  color: #f45c0b; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .grouped-items .price-per-month {
  padding-top: 0;
  padding-bottom: 0;
  height: 30px; }
  @media (max-width: 991px) {
    .pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .grouped-items .price-per-month {
      font-size: 15px;
      line-height: 1em; } }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-front, .pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-back {
  border: 1px solid #f45c0b !important; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price {
  color: #f45c0b; }
  .pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price .price-holder {
    margin-bottom: 0; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month {
  color: #999; }
  .pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value {
    color: #f45c0b; }
    .pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value i {
      border: 1px solid #f45c0b; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .close-info {
  border: 1px solid #f45c0b;
  color: #f45c0b; }

.pricing-section .tab-content #equipment_pilates.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .close-info {
  border: 1px solid #f45c0b;
  color: #f45c0b; }

.pricing-section .tab-content #barre.tab-pane .primary-btn {
  background: #ff80ff !important; }
  .pricing-section .tab-content #barre.tab-pane .primary-btn:hover {
    background: rgba(255, 128, 255, 0.6) !important; }

.pricing-section .tab-content #barre.tab-pane .primary-outline-btn {
  color: #ff80ff !important;
  border: 1px solid #ff80ff !important;
  margin-top: 3px; }
  .pricing-section .tab-content #barre.tab-pane .primary-outline-btn:hover {
    color: white !important;
    border: 1px solid transparent !important;
    background: rgba(255, 128, 255, 0.6) !important; }

.pricing-section .tab-content #barre.tab-pane .pricing-articles .pricing-article-item:before {
  background: #ff80ff; }

.pricing-section .tab-content #barre.tab-pane .pricing-articles .pricing-article-item .description-holder .pricing-article-sub-title {
  color: #ff80ff; }

.pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-front, .pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item.has__best-value .price-item-back {
  border: 1px solid #ff80ff !important; }

.pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price {
  color: #ff80ff; }

.pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value {
  color: #ff80ff; }
  .pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .price-per-month .best-value i {
    border: 1px solid #ff80ff; }

.pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-front .close-info {
  border: 1px solid #ff80ff;
  color: #ff80ff; }

.pricing-section .tab-content #barre.tab-pane .pricing-tables .price-item-holder .price-item .price-item-content .price-item-back .close-info {
  border: 1px solid #ff80ff;
  color: #ff80ff; }

.pricing-articles .pricing-article-item .description-holder .btn-holder .primary-outline-btn {
  margin-top: 3px; }

.pricing-articles .offer-section-title {
  font-size: 20px;
  font-weight: 500;
  color: #606060;
  margin-bottom: 20px; }

.pricing-articles .featured-offer-holder {
  text-align: center;
  padding: 50px 0; }
  @media (max-width: 991px) {
    .pricing-articles .featured-offer-holder {
      padding: 20px 0;
      background: #f6f6f6;
      margin-bottom: 20px; } }
  .pricing-articles .featured-offer-holder .featured-offer-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: #5e3190; }
    @media (max-width: 991px) {
      .pricing-articles .featured-offer-holder .featured-offer-title {
        font-size: 17px;
        line-height: 1.2em; } }
  .pricing-articles .featured-offer-holder .featured-offer-text {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: #666666;
    margin-bottom: 30px; }
    @media (max-width: 991px) {
      .pricing-articles .featured-offer-holder .featured-offer-text {
        font-size: 17px;
        line-height: 1.2em; } }

.site-map-page {
  padding-top: 50px;
  padding-bottom: 50px; }
  .site-map-page .title {
    font-size: 30px;
    color: #5e308f;
    margin-bottom: 20px; }
  .site-map-page .content h2 {
    font-size: 20px;
    color: #606060;
    margin-bottom: 20px; }
  .site-map-page .content ul {
    padding: 0;
    list-style: none; }
    .site-map-page .content ul li a {
      font-size: 20px;
      color: #666666; }

.page-404 {
  padding: 100px 0; }
  .page-404 .title {
    font-size: 30px;
    color: #5e3190; }
  .page-404 .content {
    padding: 50px 220px;
    color: #606060; }
    @media (max-width: 1199px) {
      .page-404 .content {
        padding: 50px 0; } }
  .page-404 .buttons a:first-child {
    margin-right: 10px; }
  .page-404 .buttons a:last-child {
    margin-left: 10px; }
  .page-404 .input-404 {
    max-width: 300px;
    border-color: #999;
    text-align: center;
    margin-right: 20px;
    padding: 3px 20px; }
    .page-404 .input-404:focus {
      border: 1px solid #5e3190; }

@media screen and (max-width: 414px) {
  .page-404 .primary-btn {
    padding: 1px 15px 2px; } }

header.page-header {
  padding-top: 75px;
  padding-bottom: 50px; }

header.page-header .page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  color: #5e3190; }

.searchwp-highlight {
  background: rgba(94, 49, 144, 0.2); }

.search-result {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid grey; }

.search-result-title a {
  color: #606060;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px; }

.search-result-excerpt {
  color: #666666;
  font-size: 18px;
  line-height: 24px; }

.search-result-excerpt a {
  color: #606060; }

.search-box input.primary-input {
  width: 580px;
  height: 32px;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: none;
  border: 1px solid grey !important; }

.search-furi input.primary-input {
  border: 1px solid transparent !important; }

.search-form .search-furi {
  margin: auto; }

.search-box .search-form .primary-btn {
  width: 135px;
  margin-left: 15px; }

.search-result > h2 > a {
  color: #373a3c; }

span.search-result-for {
  color: #999; }

.not-found-page-search-form label {
  display: block; }

.close-search-box-furi {
  float: right;
  background: none !important;
  color: #5e3190 !important;
  border: 1px solid #5e3190 !important;
  font-size: 12px;
  padding: 2px 25px;
  margin-top: -30px; }

header.banner .mobile-menu-holder {
  padding: 15px 0; }

ul.book-now-nav li {
  padding-bottom: 10px; }

ul.book-now-nav {
  padding: 0 15px !important;
  margin-left: 25px; }

header.banner .book-now-box-holder .book-now-box .book-now-box-title {
  padding-top: 40px;
  padding-left: 15px; }

header.banner .book-now-box-holder .book-now-box {
  padding: 20px 15px; }

.workshops-tab-content .workshops-item .item-date-and-image .workshops-item-image {
  position: relative;
  min-height: 190px;
  float: left;
  padding-right: 20px;
  min-width: 220px; }

.head-item-furi .guest-teacher-info {
  position: absolute;
  top: -20px;
  color: #5e3190; }

.workshops-tab-content .workshops-item .head-item-furi .workshops-item-description .workshops-item-description-text {
  color: #5e3190;
  cursor: pointer;
  font-size: 20px;
  line-height: normal; }

.item-date-and-image {
  padding-top: 15px; }

.workshops-tab-content .workshops-item .item-date-and-image .workshops-item-info {
  padding-top: 0; }

.workshops-tab-content .workshops-item .item-date-and-image .workshops-item-buttons {
  float: left;
  padding-top: 0; }

.workshops-tab-content .workshops-item .item-date-and-image .workshops-item-buttons .btn-block {
  font-size: 12px;
  padding: 3px 0; }

.load-more-search-results {
  margin: 50px auto;
  height: 32px;
  width: 160px;
  color: #ffffff;
  background: #666666;
  font-size: 18px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
  border-radius: 15px; }
  .load-more-search-results:hover {
    opacity: .6; }

.load-more-search-results.disabled {
  opacity: 0.3;
  cursor: not-allowed; }

.pagination-hidden {
  display: none; }

@media screen and (max-width: 768px) {
  .search-box .search-form .primary-btn {
    width: 100%;
    margin-left: 0;
    height: 100%; }
  .search-box input.primary-input {
    width: 100%; } }

@media screen and (max-width: 543px) {
  .login-box {
    left: 80px;
    padding: 0;
    background: transparent;
    color: #bbb;
    font-size: 14px;
    display: none !important; } }

.not-found-page-search-form {
  width: 100%; }

@media (min-width: 576px) {
  .search-form label {
    display: block !important; } }

ul.nav.fixing-nav-menu {
  display: block; }

/* MEDIA QUERIES*/
@media screen and (max-width: 1400px) {
  .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title,
  .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-title {
    font-size: 30px;
    line-height: 35px; }
  .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-sub-title,
  .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-sub-title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px; }
  .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-text,
  .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .service-banner-text {
    font-size: 15px;
    line-height: 22px; }
  .option-template .left-part {
    width: 60%;
    max-width: 60%;
    -webkit-box-flex: 60%;
        -ms-flex: 60%;
            flex: 60%;
    padding-right: 30px; }
  .option-template .right-part {
    width: 40%;
    max-width: 40%;
    -webkit-box-flex: 40%;
        -ms-flex: 40%;
            flex: 40%; }
  .option-template .right-part {
    margin-top: 50px; }
  .hero-slider-holder .slide .slide-description-holder .slide-description .slide-title,
  .hero-slider-holder .slide .slide-description-holder .slide-description .slide-sub-title {
    font-size: 30px;
    line-height: 35px; } }

@media screen and (max-width: 400px) {
  .single-service-page .service-banner-section .service-banner .service-banner-description-holder .service-banner-description .primary-btn {
    padding-left: 14%;
    padding-right: 14%; } }

@media screen and (max-width: 650px) {
  #sb_instagram.sbi_col_5 #sbi_images .sbi_item {
    width: 50%;
    padding: 5px !important; } }

/*Small*/
@media screen and (max-width: 767px) {
  .single-service-page .list-holder ul {
    margin-bottom: 0 !important; }
  .term-and-conditions .search-form-holder .serach-parent-block-faq input {
    border: 1px solid #999 !important; }
  .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:after {
    border: none; }
  .single-service-page .treatments-grid .treatment-grid-row {
    display: block;
    width: 90%;
    max-width: 580px;
    margin: 0 auto; }
  .single-service-page .treatments-grid .treatment-grid-item {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 40px; }
  .single-service-page .treatments-grid .section-title {
    text-align: center; }
  .option-template .right-part .primary-btn,
  .option-template .right-part .primary-outline-btn {
    display: block;
    width: 100%;
    max-width: 100%; }
  .option-template #application-wrapper .primary-outline-btn,
  .option-template #application-wrapper .primary-btn {
    margin-bottom: 20px;
    width: 100%; }
  .section-wrapper img {
    margin-bottom: 20px;
    width: auto;
    max-width: 100px; }
  .blog-main-banner {
    margin-bottom: 50px; }
  .blog-main .popular_tags {
    margin-bottom: 40px; }
  .featured-article {
    display: block; }
  .trending-posts .right-part .featured-article {
    display: block; }
    .trending-posts .right-part .featured-article .article-image,
    .trending-posts .right-part .featured-article footer {
      max-width: 100%;
      width: 100%;
      float: none; }
  .latest-articles .right-part .col-md-6 {
    width: 100%;
    max-width: 100%; }
  .cta-button-wrapper a {
    margin-bottom: 10px; }
  .subpages .item {
    margin-bottom: 30px; }
  .about-us .testimonials-slider-holder .testimonials-slider .slide .slide-text {
    font-size: 20px;
    line-height: 25px; }
  .terms-and-conditions .side-menu,
  .term-and-conditions .side-menu {
    position: relative;
    z-index: 10; }
  .terms-and-conditions .content,
  .term-and-conditions .content {
    margin-top: 0px;
    padding-top: 0px; }
  .terms-and-conditions #tcp,
  .term-and-conditions #tcp {
    padding-top: 150px;
    margin-top: -140px; }
  .spec-item-wrapper {
    height: auto;
    margin-bottom: 30px; }
  .specialist-training-courses .yoga-classes-section .o-mrg-top-1 {
    margin: 0; } }

@media screen and (min-width: 576px) {
  .right-part .menu-my-account-container .my-acc-button {
    display: none !important; } }

@media screen and (min-width: 310px) and (max-width: 576px) {
  .team-item {
    width: 50%; }
  .footer-logo img {
    max-width: 130px;
    height: auto; } }

@media screen and (max-width: 309px) {
  .team .team-members .team-item article .article-image .info-block {
    left: 0 !important;
    width: 90vw !important; } }

@media screen and (max-width: 374px) {
  #menu-top-menu {
    margin-left: 20%; }
  #menu-item-2151 {
    display: none !important; } }

@media screen and (max-width: 925px) {
  .single-service-page .yoga-classes-section .classes-item-wrapper {
    width: 80%;
    max-width: 580px;
    margin: 0 auto 50px;
    display: block; }
  .single-service-page .yoga-classes-section .primary-btn,
  .single-service-page .yoga-classes-section .primary-outline-btn {
    position: relative;
    width: 100%; }
  .single-service-page .yoga-classes-section .classes-excerpt {
    margin-bottom: 20px; }
  .single-service-page .most-popular-section .blog-feature-item {
    width: 90%;
    max-width: 580px;
    margin: 0 auto 50px;
    display: block; }
    .single-service-page .most-popular-section .blog-feature-item img {
      width: 100%; }
  .single-service-page #newyoga .section-title {
    text-align: center; }
  .single-service-page .most-popular-section .section-title {
    text-align: center; }
  .option-template .left-part,
  .option-template .right-part {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 20px; }
  .single-teacher_training_cou .custom-padding {
    padding: 0 30px; }
  .subpages .service-banner-section .service-banner .service-banner-description-holder {
    width: calc(100% - 30px);
    position: relative;
    margin: 0 auto;
    margin-top: -60px;
    background: #e8e9eb;
    right: 0 !important; }
    .subpages .service-banner-section .service-banner .service-banner-description-holder .service-banner-description {
      width: 100%;
      max-width: 100% !important; } }

@media screen and (max-width: 991px) {
  .wrap {
    padding-top: 95px; } }

@media screen and (min-width: 768px) and (max-width: 940px) {
  .blog-main .tags .post_categories div {
    font-size: 82%; }
  .blog-main .tags .post_categories .name {
    padding: 3px 0 0 4px;
    width: 79%;
    font-size: 82%; }
  .cta-button-wrapper a {
    margin-bottom: 10px; } }

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item {
    width: 100%;
    max-width: 100%;
    display: block; }
    .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image {
      width: 100%;
      max-width: 100%;
      margin-bottom: 15px; }
      .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-image:after {
        border: none; }
    .single-service-page .classes-grid-section .classes-grid-item-holder .classes-grid-item .classes-grid-item-description {
      width: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-right: 0; }
  .single-service-page .classes-grid-section .classes-grid-item-holder:nth-of-type(4n) .classes-grid-item-image, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-of-type(4n-1) .classes-grid-item-image {
    left: auto; }
  .single-service-page .classes-grid-section .classes-grid-item-holder:nth-of-type(4n) .classes-grid-item-description, .single-service-page .classes-grid-section .classes-grid-item-holder:nth-of-type(4n-1) .classes-grid-item-description {
    right: auto;
    padding-left: 0; } }

@media screen and (max-width: 1345px) {
  .location-slider-holder {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    display: block;
    position: relative; }
    .location-slider-holder .location-slider-description,
    .location-slider-holder .top-right-part {
      max-width: 100%;
      width: 100%;
      overflow: visible;
      position: relative;
      -webkit-box-flex: unset;
          -ms-flex: unset;
              flex: unset;
      height: 100%; }
  .location-slider {
    width: 100%; }
    .location-slider .slick-track {
      width: 100%; }
      .location-slider .slick-track .slick-slide {
        width: 100%; }
        .location-slider .slick-track .slick-slide img {
          width: 100%; }
  #location-map-top {
    height: 450px !important; } }

@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_trialbold';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_bd-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_bd-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_bd-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_bd-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_bd-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_bd-webfont.svg#aktiv_grotesk_trialbold") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Aktiv Grotesk medium */
@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_trialmedium';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_md-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_md-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_md-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_md-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_md-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_md-webfont.svg#aktiv_grotesk_trialmedium") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_trialMdIt';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_mdit-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_mdit-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_mdit-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_mdit-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_mdit-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_mdit-webfont.svg#aktiv_grotesk_trialMdIt") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Aktiv Grotesk standard */
@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_trialregular';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_rg-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_rg-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_rg-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_rg-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_rg-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_rg-webfont.svg#aktiv_grotesk_trialregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_trialitalic';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_it-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_it-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_it-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_it-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_it-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_it-webfont.svg#aktiv_grotesk_trialitalic") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Aktiv Grotesk light */
@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_triallight';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_lt-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_lt-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_lt-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_lt-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_lt-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_lt-webfont.svg#aktiv_grotesk_triallight") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'aktiv_grotesk_trialLtIt';
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_ltit-webfont.eot");
  src: url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_ltit-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_ltit-webfont.woff2") format("woff2"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_ltit-webfont.woff") format("woff"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_ltit-webfont.ttf") format("truetype"), url("../assets/fonts/aktiv-grotesk/aktivgrotesk_trial_ltit-webfont.svg#aktiv_grotesk_trialLtIt") format("svg");
  font-weight: normal;
  font-style: normal; }
