/*
	To Use - element: var(--primary);
*/
@import url(jquery-1.11.3-ui.css);
@import url(swipe.css);
@import url(fontawesome-all.css);
@import url(bxslider.css);
@import url('https://fonts.googleapis.com/css?family=Lexend+Deca|Inter:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


/*
	Table Of Contents
	0. 		Reset
	1		Generic Tags
	2.		Fonts
	2.1 	REM Responsive
	2.2		REM Sizing
	3		Structure
	3.1		Content
	3.1.1	Editable Content
	3.1.2	Buttons
	3.2		Header
	3.2.1	Mobile Header
	3.3		Footer
	3.3.1	Signature
	3.4		Structure Responsive
	3.5		Modules
	4. 		External Styles
*/
/* 0. Reset
**********/
/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  /*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
  display: block;
}

b,
strong {
  /*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
  font-weight: bold;
}

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  /*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
  -ms-interpolation-mode: bicubic;
}

li {
  /*
  For IE6 + IE7.
*/
  display: list-item;
}

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

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

q {
  quotes: none;
}

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

sub,
sup,
small {
  font-size: 75%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg {
  /*
  For IE9.
*/
  overflow: hidden;
}

/* 1. Generic Tags
**************/
html {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  background: #01a2e9;
  color: #333333;
}

::selection {
  background: #01a2e9;
  color: #333333;
}

/* Try To Remove Background - Footer Fix */
body {
  background: #212222;
  color: #656767;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  text-shadow: none;
  -webkit-text-size-adjust: none;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color-adjust: economy;
}

hr {
  clear: both;
  border-top: 1px solid rgba(84, 84, 84, 0.2);
  height: 1px;
  margin: 20px 0 20px 0;
}

a {
  color: #01a2e9;
}

a:hover {
  color: #222;
}

.clear {
  clear: both;
}

.swipebox_full {
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  /* justify-content: center; */
  margin: 30px 0;
}

.swipebox_full a {
  width: 100%;
  height: auto;
  text-decoration: none;
  margin-bottom: 10px;
}

@media screen and (min-width: 450px) {
  .swipebox_full a {
    width: 50%;
  }
}

@media screen and (min-width: 600px) {
  .swipebox_full a {
    width: 33.3333%;
  }
}

@media screen and (min-width: 960px) {
  .swipebox_full a {
    width: 20%;
  }
}

.swipebox_full a img {
  width: 100%;
  height: auto;
}

.menu_section_nav {
  background-color: #01a2e9;
  cursor: pointer;
}

.menu_section_nav span {
  display: block;
  padding: 10px;
}

.menu_section_nav span a {
  color: #fff;
}

.summary-content {
  background-color: #F0F0F0;
  padding: 10px;
}

.banner-scroll-down a {
  animation: bounce 4s infinite;
}

@keyframes bounce {

  10%,
  20%,
  30%,
  40%,
  50% {
    transform: translateY(0);
  }

  15% {
    transform: translateY(-30px);
  }

  25% {
    transform: translateY(-15px);
  }

  35% {
    transform: translateY(-5px);
  }

  45% {
    transform: translateY(-2px);
  }
}

a[href^="x-apple-data-detectors:"] {
  color: inherit;
  text-decoration: inherit;
}

/* SNAZZY STYLES */
#map {
  padding: 15% 0;
  min-height: 300px;
}

.map-container {
  position: relative;
}

.map-container .servicing {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #01a2e9;
  padding: 15px 20px;
  display: none;
}

.servicing h3,
.servicing p {
  margin: 0;
  color: #333333;
}

.servicing a {
  transition: 0.3s ease;
}

.servicing a:hover {
  color: #333333;
  transition: 0.3s ease;
}

@media (max-width: 960px) {
  .map-container .servicing {
    position: initial;
    display: block;
    background-color: #01a2e9;
    padding: 20px;
    display: none;
  }

  div.strip01 div.content div.editable_content {
    margin-bottom: 0;
  }

  div.strip01 div.welcome-image {
    height: 230px;
    position: relative;
    background-position: center bottom;
  }

  div.strip01 div.content {
    flex-direction: column;
    justify-content: center;
  }

  div.strip01 div.content div.half-width {
    width: 100%;
    margin: auto;
  }

  div.call_to_action {
    transform: none;
    bottom: 0;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
  }

  div.team_member_photo img {
    position: relative;
    padding-bottom: 15px;
  }
}

/* Open Modal Button */
summary.btn {
  cursor: pointer;
  display: inline-block;
  background-color: #01a2e9;
  padding: 5px 20px;
  border-radius: 10px;
  margin: 10px 0;
}

.details-with-modal summary::-webkit-details-marker {
  display: none;
}

/* Modal modal + Background */
details-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  max-height: 80vh;
  overflow: scroll;
  max-width: 90vw;
  width: 448px;
  background-color: #fff;
}

.details-with-modal[open]>summary:before {
  content: " ";
  background: rgba(0, 0, 0, 0.3);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* Inner Modal Layout */
.modal-header {
  padding: 20px;
  background-color: #01a2e9;
  border-bottom: 1px solid #F0F0F0;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  border-top: 1px solid #F0F0F0;
  padding: 20px;
  text-align: center;
}

.modal-footer button {
  width: 95%;
  display: inline-block;
  background-color: #01a2e9;
  font-size: 1rem;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.modal-footer button:hover {
  background-color: #333333;
  color: #333333;
  transition: 0.3s ease;
}

/* 2. Fonts
*************/
/* --- 2.1 REM Responsive --- */
html {
  font-size: 50px;
}

body {
  margin: 0;
  line-height: 1.5;
}

body,
p,
ol li,
ul li,
pre,
.banner_content .banner_details .description,
.banner_content .banner_details a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.form_holder input,
.form_holder textarea,
.form_holder select {
  font-size: 16px;
}

@media (max-width: 1200px) {
  html {
    font-size: 45px;
  }
}

@media (max-width: 960px) {
  html {
    font-size: 40px;
  }

  body,
  p,
  ol li,
  ul li,
  pre,
  .banner_content .banner_details .description,
  .banner_content .banner_details a {
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
  }

  h5,
  .h5,
  h6,
  .h6 {
    font-size: 0.65rem;
    line-height: 0.65rem;
  }

  div.team-member-strip div.content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .team-member-strip .content .editable_content {
    width: 100%;
  }

  .team-member-strip .content .team_member_photo img {
    position: relative;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 35px;
  }

  body,
  p,
  ol li,
  ul li,
  pre,
  .banner_content .banner_details .description,
  .banner_content .banner_details a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 30px;
  }

  body,
  p,
  ol li,
  ul li,
  pre,
  .form_holder select,
  .form_holder input,
  .form_holder textarea,
  .form_holder select,
  .banner_content .banner_details .description,
  .banner_content .banner_details a {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
  }
}

/* --- 2.2 REM Sizing --- */
h1,
.h1 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  line-height: 1rem;
  color: #212222;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

h2,
.h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #01a2e9;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
}

h3,
.h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  line-height: 0.5rem;
  color: #212222;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

h4,
.h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.4rem;
  line-height: 0.4rem;
  color: #01a2e9;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
}

h5,
.h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.4rem;
  line-height: 0.4rem;
  color: #212222;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

h6,
.h6 {
  font-family: "Inter", sans-serif;
  font-size: 0.3rem;
  line-height: 0.3rem;
  color: #01a2e9;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
}

/* Navigation */
#menu .mm-list a {
  color: #fff;
  font-weight: 600;
  padding: 15px 20px;
  text-decoration: none;
  display: block;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

/* 3. Structure
***********/
/* --- 3.1 Content --- */
.content {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.content_container {
  width: 100%;
  padding: 30px 20px;
  background: #FFFFFF;
  background-color: #efefef;
}

/* --- 3.1.1 Editable Content --- */
.editable_content ul {
  list-style: disc outside none;
  margin: 0px 0 20px 20px;
  font-weight: 400;
}

.editable_content ul li {
  padding: 5px 0 0 3px;
  margin: 0;
}

.editable_content ol {
  list-style: decimal outside none;
  margin: 0px 0 20px 20px;
  font-weight: 400;
}

.editable_content ol li {
  padding: 5px 0 0 3px;
  margin: 0;
}

.editable_content img {
  max-width: 100%;
  max-height: 100%;
  height: auto !important;
  width: 100% !important;
}

.editable_content table {
  margin: 15px 0 5px 0;
  background: none;
  text-align: center;
  /*width: 100%;
  display: block;*/
  overflow: scroll;
}

.editable_content table tr th,
.editable_content table thead tr td {
  font-weight: bold;
  border: none;
  color: #FFFFFF;
  background: none;
  padding: 8px 8px 8px 8px;
}

.editable_content table tr td {
  border: none;
  padding: 8px 8px 8px 8px;
  border: 1px solid rgba(0, 0, 0, .1);
}



/* --- 3.2 Header --- */
.full_header {
  position: relative;
  display: none;
  width: 100%;
  z-index: 999;
}

.header_spacer {
  width: 100%;
  height: 47px;
}

.inner_header {
  width: 100%;
  margin-top: 55px;
  background: url(/assets/images/layout/inner_header.jpg) center center no-repeat;
  background-size: cover;
}

/* --- 3.2.1 Mobile Header --- */
.mobile_header {
  background: #fff;
  color: #FFFFFF;
  font-weight: 700;
  padding: 7px 0 8px 0;
  text-align: left;
  width: 100%;
  z-index: 999;
  font-size: 25px;
}

.mobile_header .logo_area {
  padding: 0px 50px 0 50px;
  text-align: center;
}

.mobile_header .phone {
  position: absolute;
  right: 10px;
  top: 7px;
}

.mobile_header .cart_link {
  right: 32px;
  position: absolute;
  top: 6px;
}

.mobile_header a {
  color: #fff;
  position: absolute;
  text-decoration: none;
}

.mobile_header a#menu_button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.logo_area a {
  display: inline-block;
  position: inherit;
}

.mobile_header .logo_area img {
  height: 40px;
  width: auto;
}

.mobile_header {
  display: inherit;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #1e1f1f;
}

.mobile_photo_video {
  display: inherit;
}

.full_photo_video {
  display: none;
}

/* --- 3.3 Footer --- */
.footer {
  background: #333333;
  color: #FFFFFF;
  border-top: 1px solid #333333;
  margin: 0;
  padding: 30px 0 30px 0;
  display: none;
}

.footer_pages_inner {
  text-align: center;
  margin-top: 18px;
}

.footer_pages_inner:empty {
  display: none;
}

.footer_pages a {
  color: #fff;
  padding: 0px 5px;
}

.footer_pages a:hover {
  color: #01a2e9;
}

/* --- 3.3.1 Signature --- */
#signature {
  background: #212222;
  margin: 0 0 45px 0;
  padding: 0 10px 18px 10px;
}

#signature .signature_content {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  border-top: 1px solid #474848;
  padding: 18px 0 0;
}

#signature .signature_content p,
#signature .signature_content a {
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}

.full_register {
  width: 35%;
  float: right;
  border-left: 1px solid #dedede;
  display: none;
  padding-left: 10px;
}

/* --- 3.4 Structure Responsive --- */
@media (min-width: 960px) {
  .footer {
    display: inherit;
  }

  #signature {
    font-size: 12px;
  }

  .mobile_header {
    display: none;
  }

  .full_header {
    display: inherit;
  }

  .header_spacer {
    height: 82px;
  }

  .inner_header {
    height: 400px;
    margin-top: 0px;
  }

  .mobile_photo_video {
    display: none;
  }

  .full_photo_video {
    display: inherit;
  }

  .content_container {
    padding: 100px 20px;
  }

  div.contact_navigation {
    width: 75%;
    top: 117px;
    border-radius: 0 0 100px;
  }

  div.swipebox_video_full a img {
    width: 31%;
  }
}

/* ---- 3.5 FAQ ------- */
.faq-block {
  margin: 20px 0;
}

/* FAQ Content */
h5.toggle_faq {
  color: #333333;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 55px;
}

.faq-block div.toggler {
  padding-left: 55px;
}

/* Icon Main */
span.faq-icon,
h5.toggle_faq {
  transition: 0.3s ease;
  transition-delay: 0.4s;
  cursor: pointer;
}

span.faq-icon {
  background-color: #333333;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin: 0;
  left: 0;
}

/* Standard Lines */
i.faq-icon {
  display: block;
  height: 2px;
  width: 15px;
  background-color: white;
  position: absolute;
}

/* Plus Icon */
span.faq-icon .one {
  transform: rotate(90deg);
  transition: 0.4s ease-in-out;
}

span.faq-icon .two {
  transform: rotate(180deg);
  transition: 0.4s ease-in-out;
}

/* Close Icon */
h5.toggle_faq.active .one {
  transform: rotate(-45deg);
  transition: 0.4s ease-in-out;
}

h5.toggle_faq.active .two {
  transform: rotate(45deg);
  transition: 0.4s ease-in-out;
}

/* Icon Main Active */
span.faq-icon,
h5.toggle_faq {
  transition: 0.3s ease;
  transition-delay: 0.4s;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
}

h5.toggle_faq.active span {
  background-color: #01a2e9;
}

#page h5.toggle_faq.active {
  color: #01a2e9;
}

@media (max-width: 767px) {
  span.faq-icon {
    width: 30px;
    height: 30px;
  }

  h5.toggle_faq {
    padding-left: 40px;
  }

  i.faq-icon {
    width: 10px;
    height: 2px;
  }

  div.third-width.section-tab {
    display: block;
    width: 50%;
  }

  div.third-width.section-tab:nth-child(2):after {
    content: none;
  }

  div.third-width {
    display: none;
  }
}

/* Home Small Banner Layout */
.home_banner_system {
  display: flex;
  flex-wrap: wrap;
}

.home_banner_content,
.home_banner_image {
  width: 50%;
}

.home_banner_content {
  padding: 60px 5% 60px 0;
}

.home_banner_image {
  background-position: center;
  background-size: cover;
}

.swal2-popup {
  font-size: 23px !important;
  border-radius: 0px !important;
}

.swal2-popup .swal2-styled.swal2-cancel,
.swal2-popup .swal2-styled.swal2-confirm {
  border-radius: 0px !important;
}

@media (max-width: 768px) {

  .home_banner_content,
  .home_banner_image {
    width: 100%;
  }

  .home_banner_image {
    min-height: 200px;
  }
}

/* BX Slider */
.banner_content .banner_details .title {
  font-size: 50px;
  font-size: 1rem;
  line-height: 55px;
  line-height: 1.1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner_content .banner_details .description {
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 20px;
  display: none;
}

.banner_content .banner_details a {
  border: 2px solid #01a2e9;
  padding: 5px 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333333;
  text-decoration: none;
  background: #01a2e9;
  font-weight: 600;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.banner_content .banner_details a:hover {
  background: #FFFFFF;
  border-color: #fff;
  color: #333333;
}

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

/* Scroll Down */
.banner-scroll-down {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  bottom: 10px;
}

.banner-scroll-down a {
  text-align: center;
  background-color: #01a2e9;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-scroll-down a i {
  color: #fff;
  font-size: 25px;
}

.banner-scroll-down a:hover {
  background-color: #333333;
  transition: 0.3s ease;
}

/* 3.1.2 Buttons
****************/
input.superbutton {
  color: #fff;
  padding: 15px 5px 13px;
  margin: 5px 0 0 0;
  width: 100%;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  float: none;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: 0.3s ease;
}

input.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #363738;
  transition: 0.3s ease;
}

a.button,
button.superbutton {
  color: #fff;
  padding: 15px 5px 13px;
  margin: 5px 0 0 0;
  width: 100%;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  float: none;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #00a2e8;
  transition: 0.3s ease;
  border: 2px solid #00a2e8;
}

a.button:hover,
button.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #202222;
  transition: 0.3s ease;
  border: 2px solid #202222;
}

a.superbutton {
  color: #fff;
  padding: 15px 5px 13px;
  margin: 5px 0 0 0;
  width: 100%;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  float: none;
  text-decoration: none;
  text-shadow: none;
  border: 2px solid #212222;
  letter-spacing: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #00a2e8;
  transition: 0.3s ease;
  border: none;
  border: 2px solid #00a2e8;
}

a.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #212222;
  transition: 0.3s ease;
  border: 2px solid #202222;
}

a.button {
  color: #fff;
  padding: 15px 20px;
  margin: 5px 0 0 0;
  width: 100%;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  float: none;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #00a2e8;
  transition: 0.3s ease;
  border: none;
  border: 2px solid #00a2e8;
}

a.cart_button {
  position: fixed;
  bottom: 30px;
  left: 50px;
  background: #01a2e9;
  border-radius: 100%;
  text-decoration: none;
  z-index: 999;
  transform: scale(1);
  transition: 0.3s ease;
  height: 60px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

a.cart_button:hover {
  background: #222;
  transform: scale(1.2);
  transition: 0.3s ease;
}

span.shopping-widget-holder {
  position: relative;
  left: -2.5px;
}

span.shopping-widget-holder i {
  color: #FFF;
}

span.shopping-widget-holder span {
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  font-size: 13px;
  background-color: #FFF;
  border-radius: 100%;
  color: #01a2e9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart_quantity {
  margin: 0;
  transition: 0.3s ease;
}

.cart_quantity .quantity_text {
  float: right;
  margin: 5px 5px 0 0;
  transition: 0.3s ease;
}

.cart_quantity label {
  float: left;
  width: 100%;
  margin: 10px 0 0;
  transition: 0.3s ease;
}

.cart_quantity input {
  border: none;
  height: 26px;
  margin: 5px 0 10px;
  outline: 0 none;
  padding: 1px 2% 2px 2%;
  width: 96%;
  transition: 0.3s ease;
}

.cart_quantity select {
  width: 100%;
  height: 30px;
  padding: 5px 0;
  margin: 5px 0 0;
  border-radius: 0px;
  font-size: 14px;
  border: none;
  outline: none;
  transition: 0.3s ease;
  border: 2px solid #f2f2f2;
}

.cart_quantity select option {
  padding: 8px 12px 8px 12px;
  transition: 0.3s ease;
}

input.superbutton[type="submit"].cart_product_submit {
  color: #fff;
  background-color: #01a2e9;
  border-color: #01a2e9;
}

input.superbutton[type="submit"].cart_product_submit:hover {
  color: #FFF;
  border-color: #333;
  background-color: #EDEDED;
}

input.superbutton[type="submit"] {
  color: #212222;
  padding: 15px 5px 13px;
  margin: 5px 0 0 0;
  width: 100%;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  float: none;
  text-decoration: none;
  text-shadow: none;
  border: 2px solid #212222;
  letter-spacing: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: rgba(33, 33, 33, 0);
  background-image: -ms-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 100%);
  background-image: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 100%);
  background-image: -o-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(33, 33, 33, 0)), color-stop(1, rgba(33, 33, 33, 0)));
  background-image: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 100%);
  transition: 0.3s ease;
}

input.superbutton[type="submit"]:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #212222;
  background-image: -ms-linear-gradient(top, #212222 0%, #212222 100%);
  background-image: -moz-linear-gradient(top, #212222 0%, #212222 100%);
  background-image: -o-linear-gradient(top, #212222 0%, #212222 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #212222), color-stop(1, #212222));
  background-image: -webkit-linear-gradient(top, #212222 0%, #212222 100%);
  background-image: linear-gradient(to bottom, #212222 0%, #212222 100%);
  transition: 0.3s ease;
}

/* Stripe Button */
.stripe-button-el {
  background-color: transparent !important;
}

.stripe-button-el span {
  background-color: #01a2e9 !important;
}

.stripe-button-el,
.stripe-button-el span {
  background-image: none !important;
  box-shadow: none !important;
  border: transparent !important;
  text-shadow: none !important;
  font-family: inherit !important;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.stripe-button-el span:hover {
  background-color: #333333 !important;
  border-color: #333333;
  transition: 0.25s ease;
}

/* 3.5 Modules
*************/
/* New Nav Styles */
.button_container {
  position: fixed;
  top: 30px;
  right: 30px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.25s ease;
}

.button_container:hover {
  opacity: .7;
}

.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}

.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}

.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #ffffff;
}

.button_container span {
  background-color: #F0F0F0;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 11px;
}

.button_container span:nth-of-type(3) {
  top: 22px;
}

.overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}

.overlay.open {
  opacity: .7;
  visibility: visible;
  height: 100%;
}

.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
  animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
  animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
  animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
  animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
  animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
  animation-delay: .80s;
}

.overlay.open li:nth-of-type(11) {
  animation-delay: .85s;
}

.overlay.open li:nth-of-type(12) {
  animation-delay: .90s;
}

.overlay.open li:nth-of-type(13) {
  animation-delay: .95s;
}

.overlay.open li:nth-of-type(14) {
  animation-delay: 1s;
}

.overlay.open li:nth-of-type(15) {
  animation-delay: 1.05s;
}

.overlay.open li:nth-of-type(16) {
  animation-delay: 1.1s;
}

.overlay.open li:nth-of-type(17) {
  animation-delay: 1.15s;
}

.overlay.open li:nth-of-type(18) {
  animation-delay: 1.2s;
}

.overlay.open li:nth-of-type(19) {
  animation-delay: 1.25s;
}

.overlay.open li:nth-of-type(20) {
  animation-delay: 1.3s;
}

.overlay.open li:nth-of-type(21) {
  animation-delay: 1.35s;
}

.overlay.open li:nth-of-type(22) {
  animation-delay: 1.4s;
}

.overlay.open li:nth-of-type(23) {
  animation-delay: 1.45s;
}

.overlay.open li:nth-of-type(24) {
  animation-delay: 1.5s;
}

.overlay.open li:nth-of-type(25) {
  animation-delay: 1.55s;
}

.overlay.open li:nth-of-type(26) {
  animation-delay: 1.6s;
}

.overlay.open li:nth-of-type(27) {
  animation-delay: 1.65s;
}

.overlay.open li:nth-of-type(28) {
  animation-delay: 1.7s;
}

.overlay.open li:nth-of-type(29) {
  animation-delay: 1.75s;
}

.overlay.open li:nth-of-type(30) {
  animation-delay: 1.8s;
}

.overlay nav {
  position: relative;
  height: 70%;
  top: 45%;
  transform: translateY(-50%);
  font-size: 35px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: center;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: auto;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: inline-block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  font-size: 0.6rem;
  padding-left: 0;
  padding-bottom: 10px;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
  background-color: transparent;
}

.overlay ul li a:hover:after {
  background-color: #fff;
}

.overlay ul li ul {
  display: none;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

.overlay.open {
  opacity: 1;
  overflow: scroll;
}

.banner-container {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100vh;
  min-height: 500px;
}

.banner-container:hover .banner-next,
.banner-container:hover .banner-previous {
  opacity: 1;
  cursor: pointer;
}

.banner-next,
.banner-previous {
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 50px;
  transform: translateY(-50%);
  text-align: center;
  background-color: #01a2e9;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  align-items: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-next {
  right: 10px;
}

.banner-previous {
  left: 10px;
}

.banner-next i,
.banner-previous i {
  color: #fff;
  font-size: 25px;
}

.banner-next:hover,
.banner-previous:hover {
  background-color: #333333;
  transition: 0.3s ease;
}

.ms-banner .banner-details .title {
  font-size: 30px;
  line-height: 30px;
  color: #FFFFFF;
  text-transform: none;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  font-weight: 700;
}

.ms-banner .banner-details .small_title,
.ms-banner .banner-details .description {
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 16px;
}

.ms-banner .banner-details .small_title {
  margin: 0 0 10px;
}

.ms-banner .banner-details a {
  font-family: 'Inter', sans-serif;
  border: none;
  padding: 11px 25px;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  background: #01a2e9;
  font-weight: 600;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.ms-banner .banner-details a:hover {
  background: #fff;
  color: #212222;
}

.ms-banner,
.ms-banner:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.ms-banner:after {
  content: '';
  background: rgba(0, 0, 0, 0.55);
}

.ms-banner li {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
}

.ms-banner li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
}

.ms-banner li .banner-details {
  margin: auto;
  width: 80%;
  text-align: center;
  opacity: 0;
  color: #fff;
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

@keyframes detailsAnimation {
  0% {
    opacity: 0;
    visibility: visible;
  }

  5% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 1140px) {
  .ms-banner li div h3 {
    font-size: 140px;
  }
}

@media screen and (max-width: 600px) {
  .ms-banner li div h3 {
    font-size: 80px;
  }
}

@media (max-height: 600px) {
  .full_header {
    position: relative !important;
  }
}

/* ---- Box List ---- */
.box_list .box {
  float: left;
  padding: 15px;
  width: 98%;
  margin: 0 1% 10px;
  text-align: center;
}

.box_list .full {
  width: 100%;
  margin: 0 0% 10px;
  text-align: center;
}

.box_list .video_box {
  width: 100%;
  margin-bottom: 5px;
}

.box_list .video_box iframe {
  width: 100%;
  height: 225px;
}

.box_list .box .quote {
  color: #01a2e9;
}

.box_list .name {
  color: #01a2e9;
  padding: 5px 10px 2px 0;
  margin: 0;
}

.box_list .featured {
  background-color: rgba(53, 117, 225, 0.3);
}

.box_list .box .service-content {
  width: calc(100% - 80px);
  float: right;
  text-align: left;
}

.box_list .box .title {
  color: #212222;
  margin: 0px 0 10px 0;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}

.box_list .box .menu_title {
  color: #01a2e9;
  margin: 10px 0 3px 2px;
}

.box_list .no_image .title {
  margin: 0px 0 10px 0;
}

.box_list .box .title a {
  font-weight: 700;
  text-transform: uppercase;
  color: #212222;
  text-decoration: none;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 3px;
}

.box_list .box .title a:hover {
  color: #222;
  text-decoration: none;
}

.box_list .location_title {
  padding: 5px 0 0 0;
  line-height: 16px;
}

.box_list .job_title {
  color: #01a2e9;
  margin: -5px 0 0 0;
}

.box_list p {
  padding: 0;
  margin: 2px 0 10px 0;
}

.box_list .box .date {
  font-style: italic;
  font-weight: 400;
  color: #01a2e9;
  padding: 0;
  margin: 0;
}

.box_list .box .price {
  color: #01a2e9;
  margin: 0px 0 3px 2px;
  float: right;
}

.box_list .box .description {
  font-style: italic;
  padding: 0px;
  margin: 8px 0 0 0;
}

.box_list .box .options {
  font-style: italic;
  padding: 0px;
  margin: 2px 0 10px 0;
}

.box_list .box i {
  float: none;
  color: #01a2e9;
  padding: 0 5px 0 0;
}

.box_list .box .specials_title {
  font-style: bold;
  color: #01a2e9;
  padding: 0;
}

.box_list .box .special {
  font-style: italic;
  color: #333333;
  padding: 0;
}

.box_list .box img {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 0 0;
  float: left;
  max-width: 100%;
  max-height: 100%;
  width: 60px;
  height: auto;
}

.box_list .conditions img {
  border: 1px solid #EFEFEF inset;
  background: none;
  padding: 0;
  margin: -5px 0 0 0;
  float: left;
  max-width: 100%;
  max-height: 100%;
  width: 90px;
  height: auto;
}

.box_list .box img.large_image {
  border: 1px solid #F0F0F0;
  background: #FFFFFF;
  padding: 3px;
  margin: 5px 10px 10px 0;
  max-width: 200%;
  max-height: 200%;
  width: 97%;
  height: auto;
}

.box_list .box ul {
  margin: 0;
}

.box_list .box ul li {
  list-style-type: none;
  width: 100%;
  float: none;
  background: none;
  margin: 10px 0 10px 0;
  padding: 0 10px 0 0;
}

.box_list .box ul.careers_list li {
  list-style-type: none;
  width: 100%;
  float: left;
  background: none;
  margin: 10px 0 10px 0;
  padding: 0 10px 0 0;
}

.box_list .box ul li.last {
  border-right: none;
}

.box_list ul {
  margin: 0px;
  padding: 0px 0 8px 5px;
}

.box_list ul li {
  margin: 0;
  padding: 0;
}

.content .product_number {
  color: #01a2e9;
  float: right;
}

.box_list .product_highlight {
  margin: 0;
}

.box_list .product_highlight .alert {
  float: right;
  color: #01a2e9;
  margin: -5px 0 0 0;
}

.box_list .product_highlight ul {
  margin: 0px;
  padding: 0;
}

.box_list .product_highlight ul li {
  margin: 0;
  padding: 0;
}

.box_list .product_highlight ul li .strike {
  text-decoration: line-through;
}

.box_list .product_highlight ul li .sale {
  color: #01a2e9;
}

.box_list .product_check_list ul,
.box_list .product_check_list,
.box_list .product_highlight ul.gallery,
.box_list .product_highlight ul.gallery li {
  margin: 0;
  padding: 0;
}

.box_list .product_check_list ul li {
  color: #01a2e9;
  background: none;
  float: left;
  margin: 0px;
  padding: 0;
}

.box_list .box ul.pricing {
  margin: -1px 0 0 0;
  padding: 0;
}

.box_list .box ul.pricing li {
  display: inline;
  border-right: none;
  margin: 0px 4px 4px 0;
  padding: 0;
  color: #01a2e9;
}

.box_list .box ul.pricing li.strike {
  text-decoration: line-through;
}

.box_list .box ul.pricing li.sale {
  color: #01a2e9;
}

.box_list .box .alert_overlay {
  background-color: rgba(53, 117, 225, 0.3);
  padding: 2px 5px;
  margin-bottom: 5px;
  color: #01a2e9;
}

.box_list .box .alert_overlay h6 {
  text-decoration: none;
  font-size: 0.2rem;
  padding: 0px;
  margin: 0;
  float: left;
}

.box_list .box .alert_overlay h6 span {
  padding: 0px;
  margin: 0px 0 0 10px;
}

.box_list .box .alert_overlay p {
  color: #01a2e9;
}

.box_list .box .alert_overlay i {
  color: #01a2e9;
  padding: 0px 5px 0 5px;
  float: left;
}

.box_list .box .date_title {
  margin-top: 6px;
}

.box_list .box .date_box,
.content .date_box {
  background: none;
  border: none;
  float: none;
  width: 100%;
  margin: 2px 0 2px 0;
  text-align: center;
  text-decoration: none;
  color: #01a2e9;
}

.date_box_event {
  background: none;
  border: none;
  float: none;
  width: 100%;
  margin: 2px 0 2px 0;
  text-decoration: none;
  color: #01a2e9;
  text-align: left;
  padding-left: 12px;
}

.box_list .box .date_box .month,
.content .date_box .month {
  color: #FFFFFF;
  background: #01a2e9;
  padding: 1px 0 4px 0;
  text-transform: uppercase;
}

.box_list .box .date_box .day_of_week,
.content .date_box .day_of_week {
  color: #01a2e9;
  font-size: 0.22rem;
  text-transform: none;
  padding: 2px 0 0 0;
  margin: 0px 0 -2px 0;
}

.box_list .box .date_box .day,
.content .date_box .day {
  color: #01a2e9;
  font-size: 0.6rem;
  padding: 0;
}

.box_list .box .date_box .year,
.content .date_box .year {
  color: #01a2e9;
  font-size: 0.22rem;
  letter-spacing: 4px;
  padding: 0px 0 2px 5px;
  margin: -3px 0 0 0;
}

.box_list .box ul.date_list {
  margin: 3px 10px 0 0;
  padding: 0px;
  color: #01a2e9;
  font-size: 12px;
}

.box_list .box ul.date_list li {
  background: none;
  display: inline;
  list-style: none;
  color: #01a2e9;
  border-left: 1px solid #01a2e9;
  padding: 0px 0 0 10px;
  margin: 0px 0 0 6px;
}

.box_list .box ul.date_list li.first {
  border-left: none;
  padding: 0;
  margin: 0;
}

.content .box_list .box ul.date_list li i {
  padding: 4px 4px 0 0;
}

.box_list .box ul.eventdata_list {
  margin: 0 10px 10px 0;
  padding: 0 0 10px 0;
  color: #01a2e9;
  border-bottom: 1px solid #333333;
}

.box_list .box ul.eventdata_list li {
  background: none;
  list-style: none;
  color: #333333;
  padding: 0px 0 0 10px;
  margin: 2px 0 2px 6px;
}

.content .box_list .box ul.eventdata_list li i {
  padding: 0 5px 0 0;
  width: auto;
  float: none;
  color: #333333;
}

.box_list .address {
  color: #01a2e9;
}

.box_list .address i {
  padding: 0px 4px 0 0;
  margin-top: -1px;
}

.box_list .event p {
  margin: 5px 0 0 0;
}

.box_list .box_links a {
  color: #01a2e9;
}

.box_list .comment_box {
  width: 100%;
  margin: 0 0 10px 0;
  text-align: left;
}

.box_list .comment_box .comment_name {
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
  margin: 0px 0 5px 0;
}

.box_list .comment_box .comment_name span {
  font-weight: 400;
  font-style: italic;
  color: #333333;
  text-transform: capitalize;
}

/* Past News */
.box_list .past_news {
  width: 100%;
  margin: 0 0 10px;
  text-align: left;
}

/* CONTACT INFORMATION */
.contact_info {
  margin: 0;
}

.contact_info h4 {
  padding: 0px 0 0px 0;
  color: #01a2e9;
}

.contact_info .address {
  color: #363738 !important;
  font-weight: bold;
  padding: 0px 0px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cfd0cf;
}

.contact_info h6 {
  font-size: 14px;
  font-weight: bold;
}

.contact_info h6 b {
  color: #363738 !important;
}

.contact_info ul {
  margin: 5px 0 15px 0;
  width: 100%;
}

.contact_info ul li {
  margin: 0px 0 5px 0;
  list-style: none;
  font-weight: 400;
}

.contact_info ul li a {
  color: #000 !important;
  text-decoration: none !important;
}

.contact_info ul li a:hover {
  color: #222;
  text-decoration: none;
}

.contact_info span {
  margin: 0px 0 2px 0;
}

.contact_info h6 {
  color: #01a2e9;
  margin: 0px 0 10px 0;
}

.contact_info pre {
  margin: 3px 0 0 0;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap !important;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  width: 99%;
}

.contact_info ul.hours {
  margin: 3px 0 0 0;
  padding: 0px;
  width: 100%;
}

.contact_info ul.hours li {
  margin: 0px;
  padding: 0px;
}

.contact_info ul.hours li span {
  width: 100px;
  color: #333333;
  display: inline-block;
}

.map_holder {
  margin-bottom: -6px;
}

.map_holder .overlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 450px;
  /* your iframe height */
  top: 450px;
  /* your iframe height */
  margin-top: -450px;
  /* your iframe height */
}

.map_holder .map_overlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 450px;
  top: 450px;
  margin-top: -450px;
  -webkit-overflow-scrolling: touch;
  z-index: 104;
}

#map_canvas {
  width: 100%;
  height: 450px;
}

.map_holder {
  background-color: #fff;
}

@media (min-width: 960px) {
  .contact .form_holder .third_width {
    width: calc(33.33% - 10px) !important;
  }
}

/* Login Styles */
#header .menu_holder .menu_content ul li.login_btn {
  float: left;
}

#header .menu_holder .menu_content ul li.login_btn a {
  text-decoration: none;
  color: #fff;
  background: #01a2e9;
  float: left;
  padding: 8px 10px;
}

#header .menu_holder .menu_content ul li.login_btn a:hover {
  background: #222;
}

#header .menu_holder .menu_content ul li.login_btn a i {
  color: #fff;
  position: relative;
  left: 3px;
}

.login_btn {
  float: right;
  margin: 0;
}

#header .login_btn {
  margin: 15px 0 3px 0;
}

.login_btn i {
  float: left;
  font-size: 0.46rem;
  margin: 2px 5px 0 0;
  color: #01a2e9;
}

.login_wrapper.hide {
  display: none;
}

.login_wrapper {
  width: 100%;
  position: fixed;
  z-index: 102;
  top: 34px;
  right: 0;
  left: 0;
}

.login_wrapper .login_wrapper_inner {
  width: 960px;
  margin: 0 auto;
}

.menu_holder .login_box {
  width: 300px;
  background: #01a2e9;
  padding: 15px;
  float: right;
  margin-right: 3px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
}

.menu_holder .login_box input {
  width: 94%;
  padding: 3%;
  margin: 2% 0;
  float: left;
  border: none;
  background: #F0F0F0;
}

.menu_holder .login_box input:focus {
  outline: none;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
}

.menu_holder .login_box input.checkbox {
  width: auto !important;
  padding: 0;
  margin: 2% 0 0 4%;
}

.menu_holder .login_box a {
  text-decoration: none;
  color: #fff;
}

.menu_holder .login_box a:hover {
  text-decoration: underline;
}

.menu_holder .login_box a.superbutton {
  margin-top: 5px;
  background: #333;
}

.menu_holder .login_box a.superbutton:hover {
  text-decoration: none;
  background: #333333;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
}

.menu_holder .login_box a.superbutton i {
  margin: 0 -2px 0 3px;
}

.sub_accounts_table {
  width: 100%;
}

.sub_accounts_table thead tr {
  border-bottom: 1px solid #ddd;
}

.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

#card_table {
  width: 100%;
}

#card_table table {
  width: 100%;
}

#card_table table thead {
  border-bottom: 1px solid #ddd;
}

#add_card_button {
  float: right;
  cursor: pointer;
}

#add_card_section,
#event_payment_div {
  position: relative;
  display: none;
  width: 100%;
}

#cancel_add_card,
#cancel_payment {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: 0.2s;
}

#cancel_add_card:hover,
#cancel_payment:hover {
  transform: scale(1.3);
}

/* Login Form */
.login-form .content_container {
  background-image: url(//placehold.it/1200x1200);
  background-size: cover;
  background-position: left center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.login-form .inner_header {
  display: none;
}

.login-form .content_container .content:not(.content_form) {
  border-radius: 10px;
  padding: 30px;
  width: 500px;
  position: relative;
  margin-right: 40px;
  z-index: 9;
  background-color: rgba(200, 200, 200, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.login-form .content_container .content:not(.content_form)::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.9);
}

#password_score {
  display: inline-block;
  width: calc(100% - 30px);
  background: #efefef;
  text-align: center;
  font-weight: bold;
  padding: 1px 5px 1px 5px;
  margin-bottom: 7px;
}

.strong_pw {
  border-bottom: 4px solid #00ff5e;
}

.medium_pw {
  border-bottom: 4px solid #93fc17;
}

.weak_pw {
  border-bottom: 4px solid #ff0000;
}

.login-form .content_container .dark,
.login-form .content_container .color {
  height: 40px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  font-weight: 400;
  border: none;
  margin: 10px 10px 0 0;
}

.login-form .content_container .dark i,
.login-form .content_container .color i {
  display: none;
}

.login-form .content_container .color:hover,
.login-form .content_container .dark {
  background-color: var(--dark-grey);
}

.login-form .content_container .dark:hover {
  background-color: var(--main);
}

.login-form hr {
  margin: 10px 0;
}

.login-form a.tooltip>span {
  right: 0;
}

.login-form a.tooltip span b {
  right: 5px;
}

.login-form .form_holder .full_width {
  position: relative;
}

@media (max-width: 1200px) {
  .login-form .content_container .content:not(.content_form) {
    float: none;
    max-width: 85%;
    margin: 80px auto;
  }

  .login-form .content_container {
    min-height: 1px;
  }
}

@media (max-width: 960px) {
  .login-form a.tooltip {
    right: 0;
    position: absolute;
  }

  .login-form #password_score {
    width: calc(100% - 25px);
  }

  .booking-slection {
    flex-direction: column;
    width: 80%;
  }

  div.multi_maps {
    flex-direction: column;
  }

  div.multi_maps div.multi_map {
    width: 100%;
  }

  div.multi_maps div.content {
    display: flex;
    flex-direction: column;
  }

  div.multi_maps div.info {
    display: flex;
  }

  div.team-member-strip div.half-width {
    width: 100%;
    margin-bottom: 15px;
  }

  div.team-member-strip .content div.editable_content {
    display: flex;
    flex-direction: column-reverse;
  }

  div.team_member_photo {
    width: 50%;
    margin: auto;
  }

  div.content_container {
    padding-top: 75px;
  }

  span.shopping-widget-holder span {
    background-color: #01A2E9;
    right: -12px;
    top: -15px;
    color: #FFF;
    font-size: 14px;
  }

  .mobile_header .cart_link {
    background-color: #01A2E9;
    height: 55px;
    width: 55px;
    top: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all ease-in-out .25s;
    -moz-transition: all ease-in-out .25s;
    -o-transition: all ease-in-out .25s;
    transition: all ease-in-out .25s;
  }

  .mobile_header .cart_link:hover {
    background-color: #333;
  }

  .mobile_header .cart_link:hover span.shopping-widget-holder span {
    background-color: #333;
  }

  .cart-content div.your-cart {
    padding-top: 75px;
  }
}

@media (max-width: 767px) {

  .login-form .content_container .dark,
  .login-form .content_container .color {
    width: 100%;
  }

  div.call_to_action {
    height: 45px;
    border-radius: 0;
    top: calc(100% - 45px);
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
  }
}

/* FORMS */
h2#form {
  /* font-size: 0.4rem; */
  line-height: 0.4rem;
  color: #01a2e9;
  margin: 0px;
  padding: 5px 10px;
}

.form_holder {
  background: none;
  padding: 10px 11px 10px 10px;
}

.form_holder .half_width {
  width: 100%;
  margin-right: 0%;
  float: none;
}

.form_holder .full_width {
  float: left;
  width: 100%;
  margin: 0;
}

.form_holder .last {
  margin: 0;
}

.form_holder input {
  font-weight: 400;
  width: 100%;
  padding: 5px 8px 5px 8px;
  height: auto;
  font-size: 16px;
  margin: 1px 0 5px 0;
  background-color: #FFFFFF;
  border: 1px solid #d4d2d2;
  color: #333333;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #656767;
  font-weight: 400;
}

.form_holder input.checkbox {
  float: left;
  width: auto;
  height: auto;
  margin: 8px 0;
  padding: 0;
  background: none;
  border: 1px solid #d4d2d2;
  box-shadow: none;
  color: #333333;
  outline: none;
}

.form_holder textarea {
  font-weight: 400;
  width: 100%;
  padding: 5px 5px 5px 8px;
  margin: 1px 0 10px;
  background-color: #FFFFFF;
  border: 1px solid #d4d2d2;
  color: #333333;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #656767;
  font-weight: 400;
}

.form_holder select {
  font-weight: 400;
  width: 100%;
  height: 36px;
  padding: 5px 0;
  margin: 1px 0 10px;
  background-color: #FFFFFF;
  border: 1px solid #d4d2d2;
  color: #333333;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #656767;
  font-weight: 400;
}

.form_holder select option {
  padding: 8px 0 8px 0;
}

.form_holder .uploader {
  width: 100%;
  height: 30px;
  padding: 0px;
  margin: 1px 0 5px 0;
  background-color: #FFFFFF;
  border: 0px solid #FFFFFF;
  color: #333333;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.form_holder input:focus,
.form_holder textarea:focus {
  background-color: #FFFFFF;
  color: #333333;
  outline: none;
}

.form_holder label {
  display: block;
  font-size: 14px;
  color: #333333;
}

.form_holder .message {
  margin: 0px 0 10px 0;
}

.form_holder .check_label {
  float: left;
  margin: 4px 0 0 0;
  padding: 0px 0 0 5px;
}

.form_holder .require {
  color: #01a2e9;
}

.form_holder .form_error {
  background-color: var(--main);
  color: #333333;
  padding: 10px;
  margin: 15px 0;
}

.form_top {
  margin-top: 30px;
}

.directions_form input {
  width: 98%;
  padding: 3px;
}

.form_holder .email_half_width input {
  width: 100%;
}

.captcha {
  margin-bottom: 20px !important;
}

/* Placeholder */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a0a0a0;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #828282;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #a0a0a0;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #828282;
}

.form_holder input,
.form_holder textarea {
  border-color: #d4d2d2;
}

form#contact_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#contact-form {
  padding-top: 0;
}

/* Validating Entries */
.form_holder input:not([type="submit"]):focus:valid,
.form_holder textarea:focus:valid,
.form_holder select:focus:valid {
  box-shadow: 0px 0px 5px #01a2e9;
}

/* Invalidating Entries */
.form_holder input:not([type="submit"]):focus:invalid,
.form_holder textarea:focus:invalid,
.form_holder select:focus:invalid {
  box-shadow: 0px 0px 5px red;
}

/* Overriding Boring Date Picker */
.ui-datepicker .ui-datepicker-header {
  border: none;
  border-radius: 0;
  background-image: none;
  background: #01a2e9;
}

#ui-datepicker-div {
  padding: 0;
}

.ui-datepicker .ui-datepicker-title {
  color: #fff;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  background-color: transparent !important;
  background-image: none;
  border: none;
}

.ui-datepicker .ui-datepicker-next:hover span,
.ui-datepicker .ui-datepicker-prev:not(.ui-state-disabled):hover span {
  filter: brightness(1000%);
}

.ui-datepicker th {
  padding: 5px 0;
}

table.ui-datepicker-calendar span {
  border: none !important;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.ui-state-highlight,
.ui-widget-content {
  font-family: "Inter", sans-serif;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #01a2e9;
  background-image: none;
  background-color: rgba(212, 175, 55, 0.7);
  background-color: #fff !important;
}

.ui-datepicker .ui-datepicker-title {
  text-transform: uppercase;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background-image: none;
  background-color: #f5f5f5;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border-color: #01a2e9;
  background-image: none;
  background-color: #fff;
}

td.ui-datepicker-current-day a {
  background: #01a2e9 !important;
  color: #fff !important;
}

td.ui-datepicker-days-cell-over.ui-datepicker-current-day.ui-datepicker-today a.ui-state-default.ui-state-highlight.ui-state-active {
  color: #333333 !important;
}

.form_holder input,
.form_holder textarea,
.form_holder select {
  font-family: "Inter", sans-serif !important;
}

#menu a {
  text-decoration: none;
}

html.mm-opened .mm-page,
html.mm-opened #mm-blocker,
html.mm-opened .mm-fixed-top,
html.mm-opened .mm-fixed-bottom,
html.mm-opened .mm-menu.mm-horizontal>.mm-panel {
  -webkit-transition: none 0.4s ease;
  -moz-transition: none 0.4s ease;
  -ms-transition: none 0.4s ease;
  -o-transition: none 0.4s ease;
  transition: none 0.4s ease;
  -webkit-transition-property: top, right, bottom, left, border, -webkit-transform;
  -moz-transition-property: top, right, bottom, left, border, -moz-transform;
  -ms-transition-property: top, right, bottom, left, border, -ms-transform;
  -o-transition-property: top, right, bottom, left, border, -o-transform;
  transition-property: top, right, bottom, left, border, transform;
}

html.mm-opened .mm-page,
html.mm-opened #mm-blocker {
  left: 0%;
  top: 0;
  margin: 0;
  border: 0px solid rgba(0, 0, 0, 0);
}

html.mm-opened.mm-opening .mm-page,
html.mm-opened.mm-opening #mm-blocker {
  border: 0px solid rgba(100, 100, 100, 0);
}

.mm-menu .mm-hidden {
  display: none;
}

.mm-fixed-top,
.mm-fixed-bottom {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
}

.mm-fixed-top {
  top: 0;
}

.mm-fixed-bottom {
  bottom: 0;
}

html.mm-opened .mm-page,
.mm-menu>.mm-panel {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html.mm-opened,
html.mm-opened body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

html.mm-opened .mm-page {
  height: 100%;
  overflow: hidden;
  position: absolute;
}

html.mm-background .mm-page {
  background: inherit;
}

#mm-blocker {
  background: #fff;
  opacity: 0;
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}

.mm-menu.mm-current {
  display: block;
}

.mm-menu {
  background: inherit;
  display: none;
  overflow: hidden;
  height: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.mm-menu>.mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 0;
}

.mm-menu>.mm-panel.mm-opened {
  left: 0%;
}

.mm-menu>.mm-panel.mm-subopened {
  left: -40%;
}

.mm-menu>.mm-panel.mm-highest {
  z-index: 1;
}

.mm-menu>.mm-panel.mm-hidden {
  display: block;
  visibility: hidden;
}

.mm-menu .mm-list {
  padding: 20px 0;
}

.mm-menu>.mm-list {
  padding: 20px 0 40px 0;
}

.mm-panel>.mm-list {
  margin-left: -20px;
  margin-right: -20px;
}

.mm-panel>.mm-list:first-child {
  padding-top: 0;
}

.mm-list,
.mm-list>li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-list * {
  -webkit-text-size-adjust: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  text-shadow: none;
}

.mm-list a,
.mm-list a:hover {
  text-decoration: none;
}

.mm-list>li {
  position: relative;
}

.mm-list>li>a,
.mm-list>li>span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}

.mm-list>li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults)::after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mm-list>li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults):after {
  width: auto;
  /*margin-left: 20px;  changed to allow border to touch left edge */
  margin-left: 0px;
  position: relative;
  left: auto;
}

.mm-list a.mm-subopen {
  width: 40px;
  height: 100%;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.mm-list a.mm-subopen::before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.mm-list a.mm-subopen.mm-fullsubopen {
  width: 100%;
}

.mm-list a.mm-subopen.mm-fullsubopen:before {
  border-left: none;
}

.mm-list a.mm-subopen+a,
.mm-list a.mm-subopen+span {
  padding-right: 5px;
  margin-right: 40px;
}

.mm-list>li.mm-selected>a.mm-subopen {
  background: transparent;
}

.mm-list>li.mm-selected>a.mm-fullsubopen+a,
.mm-list>li.mm-selected>a.mm-fullsubopen+span {
  padding-right: 45px;
  margin-right: 0;
}

.mm-list a.mm-subclose {
  text-indent: 20px;
  padding-top: 30px;
  margin-top: -20px;
}

.mm-list>li.mm-label {
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}

.mm-list a.mm-subopen:after,
.mm-list a.mm-subclose:before {
  content: '';
  border: 2px solid transparent;
  display: block;
  width: 7px;
  height: 7px;
  margin-bottom: -5px;
  position: absolute;
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-list a.mm-subopen:after {
  border-top: none;
  border-left: none;
  right: 18px;
}

.mm-list a.mm-subclose:before {
  border-right: none;
  border-bottom: none;
  margin-bottom: -4px;
  left: 22px;
}

.mm-menu.mm-vertical .mm-list .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}

.mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
  border-color: transparent;
}

.mm-menu.mm-vertical .mm-list li.mm-opened>.mm-panel {
  display: block;
}

.mm-menu.mm-vertical .mm-list>li.mm-opened>a.mm-subopen {
  height: 40px;
}

.mm-menu.mm-vertical .mm-list>li.mm-opened>a.mm-subopen:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 16px;
  right: 16px;
}

html.mm-opened .mm-page {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* MAIN BG COLOUR */
.mm-ismenu {
  background: #01a2e9;
}

.mm-menu {
  color: #fff;
}

.mm-menu .mm-list>li:after {
  border-color: rgba(255, 255, 255, 0.15);
}

.mm-menu .mm-list>li>a.mm-subclose {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu .mm-list>li>a.mm-subopen:after,
.mm-menu .mm-list>li>a.mm-subclose:before {
  border-color: #ffffff;
}

.mm-menu .mm-list>li>a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list>li.mm-selected>a:not(.mm-subopen),
.mm-menu .mm-list>li.mm-selected>span {
  background: rgba(255, 255, 255, 0.15)
}

.mm-menu .mm-list li.mm-label {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-vertical .mm-list li.mm-opened>a.mm-subopen,
.mm-menu.mm-vertical .mm-list li.mm-opened>ul {
  background: rgba(255, 255, 255, 0.05);
}

html.mm-opened.mm-opening .mm-page,
html.mm-opened.mm-opening #mm-blocker,
html.mm-opened.mm-opening .mm-fixed-top,
html.mm-opened.mm-opening .mm-fixed-bottom {
  left: 80%;
}

.mm-menu {
  width: 80%;
}

@media all and (max-width: 175px) {
  .mm-menu {
    width: 140px;
  }

  html.mm-opened.mm-opening .mm-page,
  html.mm-opened.mm-opening #mm-blocker,
  html.mm-opened.mm-opening .mm-fixed-top,
  html.mm-opened.mm-opening .mm-fixed-bottom {
    left: 140px;
  }
}

@media all and (min-width: 550px) {
  .mm-menu {
    width: 440px;
  }

  html.mm-opened.mm-opening .mm-page,
  html.mm-opened.mm-opening #mm-blocker,
  html.mm-opened.mm-opening .mm-fixed-top,
  html.mm-opened.mm-opening .mm-fixed-bottom {
    left: 440px;
  }
}

html.mm-nooverflowscrolling.mm-opened {
  height: auto;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: scroll;
}

html.mm-nooverflowscrolling.mm-opened body {
  overflow: auto;
}

html.mm-nooverflowscrolling.mm-opened .mm-page {
  min-height: 1000px;
  position: fixed;
}

html.mm-nooverflowscrolling.mm-opened .mm-menu {
  height: auto;
  min-height: 1000px;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
  left: auto;
  top: auto;
}

html.mm-nooverflowscrolling.mm-opened>.mm-panel {
  position: relative;
  height: auto;
  display: none;
  left: 0;
}

html.mm-nooverflowscrolling.mm-opened>.mm-panel.mm-current {
  display: block;
}

/* MENU THEMES */
html.mm-opened.mm-light .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-ismenu.mm-light {
  background: #f3f3f3;
}

.mm-menu.mm-light {
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light .mm-list>li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light .mm-list>li>a.mm-subclose {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list>li>a.mm-subopen:after,
.mm-menu.mm-light .mm-list>li>a.mm-subclose:before {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list>li>a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light .mm-list>li.mm-selected>a:not(.mm-subopen),
.mm-menu.mm-light .mm-list>li.mm-selected>span {
  background: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-light .mm-list li.mm-label {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened>a.mm-subopen,
.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened>ul {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light li.mm-noresults {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-header a:before {
  border-color: rgba(0, 0, 0, 0.3);
}

html.mm-opened.mm-white .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-ismenu.mm-white {
  background: white;
}

.mm-menu.mm-white {
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white .mm-list>li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white .mm-list>li>a.mm-subclose {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list>li>a.mm-subopen:after,
.mm-menu.mm-white .mm-list>li>a.mm-subclose:before {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list>li>a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white .mm-list>li.mm-selected>a:not(.mm-subopen),
.mm-menu.mm-white .mm-list>li.mm-selected>span {
  background: rgba(0, 0, 0, 0.08);
}

.mm-menu.mm-white .mm-list li.mm-label {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened>a.mm-subopen,
.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened>ul {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white li.mm-noresults {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-header a:before {
  border-color: rgba(0, 0, 0, 0.3);
}

html.mm-opened.mm-black .mm-page {
  box-shadow: none;
}

.mm-ismenu.mm-black {
  background: black;
}

.mm-menu.mm-black {
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black .mm-list>li:after {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black .mm-list>li>a.mm-subclose {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list>li>a.mm-subopen:after,
.mm-menu.mm-black .mm-list>li>a.mm-subclose:before {
  border-color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list>li>a.mm-subopen:before {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black .mm-list>li.mm-selected>a:not(.mm-subopen),
.mm-menu.mm-black .mm-list>li.mm-selected>span {
  background: rgba(255, 255, 255, 0.25);
}

.mm-menu.mm-black .mm-list li.mm-label {
  background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened>a.mm-subopen,
.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened>ul {
  background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black li.mm-noresults {
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black em.mm-counter {
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-header {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-header a:before {
  border-color: rgba(255, 255, 255, 0.3);
}

/* END MENU THEMES */
/* MENU POSITIONING */
.mm-menu.mm-top {
  width: 100%;
}

html.mm-top.mm-opened .mm-page,
html.mm-top.mm-opened #mm-blocker {
  top: 0%;
}

html.mm-top.mm-opened.mm-opening .mm-page,
html.mm-top.mm-opened.mm-opening #mm-blocker,
html.mm-top.mm-opened.mm-opening .mm-fixed-top,
html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
  left: 0;
}

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

html.mm-right.mm-opened .mm-page,
html.mm-right.mm-opened #mm-blocker,
html.mm-right.mm-opened .mm-fixed-top,
html.mm-right.mm-opened .mm-fixed-bottom {
  left: auto;
  right: 0%;
}

html.mm-right.mm-opened.mm-opening .mm-page,
html.mm-right.mm-opened.mm-opening #mm-blocker,
html.mm-right.mm-opened.mm-opening .mm-fixed-top,
html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
  left: auto;
}

.mm-menu.mm-bottom {
  width: 100%;
  top: auto;
  bottom: 0;
}

html.mm-bottom.mm-opened .mm-page,
html.mm-bottom.mm-opened #mm-blocker {
  bottom: 0%;
  top: auto;
}

html.mm-bottom.mm-opened.mm-opening .mm-page,
html.mm-bottom.mm-opened.mm-opening #mm-blocker,
html.mm-bottom.mm-opened.mm-opening .mm-fixed-top,
html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
  top: auto;
  left: 0;
}

.mm-menu.mm-top {
  height: 80%;
}

html.mm-top.mm-opened.mm-opening .mm-page,
html.mm-top.mm-opened.mm-opening #mm-blocker,
html.mm-top.mm-opened.mm-opening .mm-fixed-top {
  top: 80%;
}

html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
  bottom: -80%;
}

@media all and (max-height: 175px) {
  .mm-menu.mm-top {
    height: 140px;
  }

  html.mm-top.mm-opened.mm-opening .mm-page,
  html.mm-top.mm-opened.mm-opening #mm-blocker,
  html.mm-top.mm-opened.mm-opening .mm-fixed-top {
    top: 140px;
  }

  html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
    bottom: -140px;
  }
}

@media all and (min-height: 1100px) {
  .mm-menu.mm-top {
    height: 880px;
  }

  html.mm-top.mm-opened.mm-opening .mm-page,
  html.mm-top.mm-opened.mm-opening #mm-blocker,
  html.mm-top.mm-opened.mm-opening .mm-fixed-top {
    top: 880px;
  }

  html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
    bottom: -880px;
  }
}

.mm-menu.mm-right {
  width: 80%;
}

html.mm-right.mm-opened.mm-opening .mm-page,
html.mm-right.mm-opened.mm-opening #mm-blocker,
html.mm-right.mm-opened.mm-opening .mm-fixed-top,
html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
  right: 80%;
}

@media all and (max-width: 175px) {
  .mm-menu.mm-right {
    width: 140px;
  }

  html.mm-right.mm-opened.mm-opening .mm-page,
  html.mm-right.mm-opened.mm-opening #mm-blocker,
  html.mm-right.mm-opened.mm-opening .mm-fixed-top,
  html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
    right: 140px;
  }
}

@media all and (min-width: 550px) {
  .mm-menu.mm-right {
    width: 440px;
  }

  html.mm-right.mm-opened.mm-opening .mm-page,
  html.mm-right.mm-opened.mm-opening #mm-blocker,
  html.mm-right.mm-opened.mm-opening .mm-fixed-top,
  html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
    right: 440px;
  }
}

.mm-menu.mm-bottom {
  height: 80%;
}

html.mm-bottom.mm-opened.mm-opening .mm-page,
html.mm-bottom.mm-opened.mm-opening #mm-blocker,
html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
  bottom: 80%;
}

html.mm-bottom.mm-opened.mm-opening .mm-fixed-top {
  top: -80%;
}

@media all and (max-height: 175px) {
  .mm-menu.mm-bottom {
    height: 140px;
  }

  html.mm-bottom.mm-opened.mm-opening .mm-page,
  html.mm-bottom.mm-opened.mm-opening #mm-blocker,
  html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
    bottom: 140px;
  }

  html.mm-bottom.mm-opened.mm-opening .mm-fixed-top {
    top: -140px;
  }
}

@media all and (min-height: 1100px) {
  .mm-menu.mm-bottom {
    height: 880px;
  }

  html.mm-bottom.mm-opened.mm-opening .mm-page,
  html.mm-bottom.mm-opened.mm-opening #mm-blocker,
  html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
    bottom: 880px;
  }

  html.mm-bottom.mm-opened.mm-opening .mm-fixed-top {
    top: -880px;
  }
}

html.mm-front.mm-opened .mm-page {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: none 0.4s ease;
  -moz-transition: none 0.4s ease;
  -ms-transition: none 0.4s ease;
  -o-transition: none 0.4s ease;
  transition: none 0.4s ease;
  -webkit-transition-property: top, right, bottom, left, -webkit-transform;
  -moz-transition-property: top, right, bottom, left, -moz-transform;
  -ms-transition-property: top, right, bottom, left, -o-transform;
  -o-transition-property: top, right, bottom, left, -o-transform;
  transition-property: top, right, bottom, left, transform;
}

html.mm-front .mm-page,
html.mm-front #mm-blocker {
  z-index: 0;
}

.mm-menu.mm-front {
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

html.mm-opened.mm-next .mm-page {
  box-shadow: none;
}

html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  left: 0%;
}

.mm-menu.mm-top.mm-front,
.mm-menu.mm-top.mm-next {
  left: 0;
}

html.mm-opening .mm-menu.mm-top.mm-front,
html.mm-opening .mm-menu.mm-top.mm-next {
  left: 0;
  top: 0%;
}

.mm-menu.mm-right.mm-front,
.mm-menu.mm-right.mm-next {
  left: auto;
}

html.mm-opening .mm-menu.mm-right.mm-front,
html.mm-opening .mm-menu.mm-right.mm-next {
  left: auto;
  right: 0%;
}

.mm-menu.mm-bottom.mm-front,
.mm-menu.mm-bottom.mm-next {
  top: auto;
  left: 0;
}

html.mm-opening .mm-menu.mm-bottom.mm-front,
html.mm-opening .mm-menu.mm-bottom.mm-next {
  left: 0;
  bottom: 0%;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
  left: -80%;
}

@media all and (max-width: 175px) {

  .mm-menu.mm-front,
  .mm-menu.mm-next {
    left: -140px;
  }
}

@media all and (min-width: 550px) {

  .mm-menu.mm-front,
  .mm-menu.mm-next {
    left: -440px;
  }
}

.mm-menu.mm-top.mm-front,
.mm-menu.mm-top.mm-next {
  top: -80%;
}

@media all and (max-height: 175px) {

  .mm-menu.mm-top.mm-front,
  .mm-menu.mm-top.mm-next {
    top: -140px;
  }
}

@media all and (min-height: 1100px) {

  .mm-menu.mm-top.mm-front,
  .mm-menu.mm-top.mm-next {
    top: -880px;
  }
}

.mm-menu.mm-right.mm-front,
.mm-menu.mm-right.mm-next {
  right: -80%;
}

@media all and (max-width: 175px) {

  .mm-menu.mm-right.mm-front,
  .mm-menu.mm-right.mm-next {
    right: -140px;
  }
}

@media all and (min-width: 550px) {

  .mm-menu.mm-right.mm-front,
  .mm-menu.mm-right.mm-next {
    right: -440px;
  }
}

.mm-menu.mm-bottom.mm-front,
.mm-menu.mm-bottom.mm-next {
  bottom: -80%;
}

@media all and (max-height: 175px) {

  .mm-menu.mm-bottom.mm-front,
  .mm-menu.mm-bottom.mm-next {
    bottom: -140px;
  }
}

@media all and (min-height: 1100px) {

  .mm-menu.mm-bottom.mm-front,
  .mm-menu.mm-bottom.mm-next {
    bottom: -880px;
  }
}

html.mm-opened.mm-front .mm-fixed-top,
html.mm-opened.mm-front .mm-fixed-bottom,
html.mm-opened.mm-opening.mm-front .mm-fixed-top,
html.mm-opened.mm-opening.mm-front .mm-fixed-bottom {
  left: 0;
  right: auto;
}

html.mm-opened.mm-front .mm-fixed-top,
html.mm-opened.mm-opening.mm-front .mm-fixed-top {
  top: 0;
}

html.mm-opened.mm-front .mm-fixed-bottom,
html.mm-opened.mm-opening.mm-front .mm-fixed-bottom {
  bottom: 0;
}

/* END MENU POSITIONING */
/* MAIN NAVIGATION STYLES */
.jqueryslidemenu {
  width: 100%;
  background: #1e1f1f;
  padding: 15px 30px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jqueryslidemenu a.logo {}

.jqueryslidemenu a.logo img {
  padding: 0;
  width: 260px;
  height: auto;
}

.jqueryslidemenu ul {
  list-style: none;
  margin: 0;
}

.jqueryslidemenu ul li {
  position: relative;
  float: left;
  display: inline;
  margin: 0px 0px 0px 0px;
  z-index: 12;
}

.jqueryslidemenu ul li.mobile-nav-item {
  display: none;
}

.jqueryslidemenu ul li a {
  color: #fff;
  font-weight: 600;
  padding: 11px 10px;
  text-decoration: none;
  display: block;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 16px;
}

.jqueryslidemenu ul li a:hover,
.jqueryslidemenu ul li:hover a,
.jqueryslidemenu ul li.Selected a,
.jqueryslidemenu ul li.Selected a:hover {
  color: #01a2e9;
}

.jqueryslidemenu ul li.location-btn {
  margin-left: 30px;
}

.jqueryslidemenu ul li.location-btn a {
  padding: 9px 30px;
  color: #01a2e9;
  border: 2px solid #F2F2F2;
}

.jqueryslidemenu ul li.location-btn a:hover,
.jqueryslidemenu ul li.location-btn:hover a,
.jqueryslidemenu ul li.location-btn.Selected a,
.jqueryslidemenu ul li.location-btn.Selected a:hover {
  color: #fff;
  background: #01a2e9;
  border-color: #01a2e9;
}

/* FIRST DROP-DOWN LAYER */
.jqueryslidemenu ul li ul {
  /* REMOVE STLYES FROM TOP LEVEL */
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  /* REMOVE STLYES FROM TOP LEVEL */
  position: absolute;
  left: 0;
  display: block;
  visibility: hidden;
  width: auto;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  list-style: none;
  border: 1px solid #F0F0F0;
  border-top: none;
  width: 265px;
  /* WIDTH OF SUB MENU */
}

.jqueryslidemenu ul li ul li {
  /* REMOVE STLYES FROM TOP LEVEL */
  display: list-item;
  float: none;
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  /* REMOVE STLYES FROM TOP LEVEL */
  border-top: 1px solid #F0F0F0;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  background: #F0F0F0;
}

.jqueryslidemenu ul li ul li a {
  color: #333333;
  line-height: 20px;
  padding: 15px 15px 15px 15px;
  margin: 0px;
  background: none;
}

.jqueryslidemenu ul li:hover ul li a {
  color: #333333;
  line-height: 20px;
  padding: 15px 15px 15px 15px;
  margin: 0px;
  background: none;
}

.jqueryslidemenu ul li.Selected ul li a:hover,
.jqueryslidemenu ul li ul li a:hover {
  color: #01a2e9;
  text-decoration: none;
  background: #F0F0F0;
}

/* SUB DROP-DOWN LAYERS AFTER 1ST */
.jqueryslidemenu ul li ul li ul {
  top: 0;
  margin: -1px 0px 0px 2px;
}

/* DOWN AND RIGHT ARROWS IN NAV (DEFAULT OFF) */
.downarrowclass {
  display: none;
  /* THIS HIDES THE ARROW */
  position: absolute;
  top: 8px;
  right: 7px;
}

.rightarrowclass {
  display: none;
  /* THIS HIDES THE ARROW */
  position: absolute;
  top: 9px;
  right: 5px;
}

.jqueryslidemenu ul li:hover ul {
  visibility: visible !important;
}

/* ORDER STYLES */
.cart_box_wrapper {
  float: left;
  width: 100%;
}

a.clear_button {
  width: 49% !important;
  float: left;
  margin: 5px 2% 5px 0px !important;
  width: auto;
  padding: 10px;
  float: left;
}

a.continue_shopping {
  width: 49% !important;
  float: right;
  margin: 5px 0px;
  width: auto;
  padding: 10px;
}

a.shop_more {
  float: none;
  padding: 10px;
}

a.buy_button {
  padding: 10px 0px;
  float: right;
  background: rgba(53, 117, 225, 0.3);
}

a.discount_button {
  width: 49% !important;
  float: right !important;
}

.cart_box_wrapper .item_box {
  padding: 3% 0;
  float: left;
  margin-left: 0px;
  margin-bottom: 3px;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
}

.cart_box_wrapper .item_box.small {
  float: left;
  width: 96%;
  padding: 2%;
}

.cart_box_wrapper .item_box.simple .right_cart_form {
  float: left;
}

.item_box.simple h4.product_title {
  width: 100%;
  margin-top: 7px;
  float: left;
}

.item_box.simple div.product_price_per {
  float: right;
  padding: 0px 5px;
  color: #333333;
}

.item_box.simple div.product_price_per.large_right {
  /*width: 150px;*/
  text-align: right;
}

.item_box.simple div.product_price_per.small {
  float: left;
  padding: 0px 5px 0px 0px;
  color: #333333;
}

.item_box.simple div.product_price_per.small .quantity {
  float: right;
  margin-left: 5px;
}

.cart_box_wrapper .item_box .right_cart_form {
  float: left;
  text-align: right;
  width: 100%;
  margin: 0px;
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #F0F0F0;
}

.cart_box_wrapper .item_box a.order_remove {
  float: right;
  margin: 2px 0px 0px 0px;
  font-size: 0.5rem;
  text-decoration: none;
  color: var(--danger);
  width: 6%;
}

.cart_box_wrapper .item_box a.order_remove:hover {
  cursor: pointer;
  color: rgba(53, 117, 225, 0.3);
}

.item_box .pro_info {
  float: left;
  margin: 0;
  width: 70%;
  padding: 0px 2%;
}

.item_box .pro_info .product_title a {
  color: #333333;
  text-decoration: none;
}

div.product_price_per {
  float: right;
  text-align: right;
  margin-top: 10px;
  padding: 0px 5px;
  color: #333333;
}

div.product_price_per.large_right {
  float: right;
  text-align: right;
}

div.product_price_per.small {
  float: left;
  text-align: left;
  margin-top: 9px;
  padding: 0px 5px;
  color: #333333;
}

div.product_price_per .discount_price_colour {
  color: #01a2e9;
}

.right_cart_form input.quantity_input {
  margin-top: 2px;
  background: #F0F0F0;
  border: 1px solid #F0F0F0;
}

.right_cart_form span.quantity_text {
  margin-top: 9px;
  padding: 0px 5px;
}

span.order_buttons {
  float: right;
  color: #333333;
  margin: 0px 5px 0px 5px;
}

input.quantity_input {
  float: right;
  width: 56px;
  height: 28px;
  padding: 0px 0px 0px 10px;
  border: 1px solid #F5F5F5;
}

span.quantity_text {
  float: right;
}

div.total_info {
  float: right;
  margin: 5px 0px;
}

div.total_info .sale_alert {
  color: #01a2e9;
  margin: -5px 0px 2px 0px;
  float: right;
}

div.total {
  float: right;
  max-width: 100px;
  margin: 0px 0px 5px 15px;
  font-size: 0.44rem;
  text-align: right;
  border: none;
  background: none;
  color: #333333;
}

label.total_text {
  float: right;
  margin: 2px 0px 0px 0px;
}

label.total_text.small {
  margin: 0px;
  float: left;
}

span.total_text_taxes {
  font-size: 9px;
  margin: -5px 0px 3px 0px;
  color: var(--dark-grey);
  float: right;
}

/* Cart Purchase Page */
ul.customer_information {
  list-style: none;
  display: inline-block;
  width: 100%;
}

ul.customer_information li {
  float: left;
  width: 100%;
  margin: 0px;
  margin-right: 1%;
  color: var(--dark-grey);
}

ul.customer_information li a {
  color: var(--dark-grey);
  text-decoration: none;
}

ul.customer_information li strong {
  color: #333333;
  font-weight: bold;
}

a.add_to_cart {
  width: 100% !important;
  margin: 10px 0px !important;
  padding: 10px 0px !important;
}

.cart_quantity .quantity_text {
  float: left;
  margin: 5px 5px 0px 0px;
}

.cart_quantity input {
  background: #fff;
  width: 100%;
  position: relative;
  border: 2px solid #F2F2F2;
  outline: 0px;
  padding: 2px 2px 2px 10px;
  float: left;
  font-size: 14px;
  border-radius: 0;
}

.box_list .box .cart_quantity input {
  background: #fff;
}

img.small_cart_thumbnail {
  width: 10%;
  height: auto;
  margin: 0px;
  float: left;
}

.cart_options {
  margin-top: 20px;
}

.cart_options select {
  width: 75%;
  height: 26px;
  border: none;
  outline: 0px;
  padding: 2px 2px 2px 10px;
  float: right;
}

.cart_options select option {
  padding: 8px 12px 8px 12px;
}

/* ORDER STYLES END */
.discount_input {
  margin: 10px 0;
  float: right;
  width: 100%;
  border-radius: none;
}

.discount_input input {
  padding: 13px 2%;
  margin: 5px 1% 0px 0px;
  width: 45%;
  border: 1px solid #DDDDDD;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.discount_input a {
  background: #262422;
  width: 15%;
  min-width: 120px;
  text-align: center;
  float: right;
  cursor: pointer;
}

.discount_input a i {
  margin-right: 0;
}

.discount_input a.applied {
  background: none;
  color: var(--dark-grey);
  margin-left: 13px;
  padding-right: 0;
}

.discount_input a.applied i {
  margin-right: 0;
  color: var(--success);
}

.message_positive {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  background-color: #01a2e9;
}

.message_wrapper a.cart_message_link i {
  background-color: #fff;
  color: #01a2e9;
  text-align: center;
  border-radius: 100%;
  line-height: 40px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-right: 10px;
}

.message_positive p {
  text-transform: uppercase;
  font-weight: 800;
  color: #FFF;
  margin: 0;
}

/* Cart Landing Page */
.cart_item {
  position: relative;
  margin: 20px 0;
  background-color: #FFF;
}

.cart-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.cart-content>div {
  padding: 40px 2%;
}

.your-cart {
  width: 45%;
  background: #FFF;
}

.checkout-form {
  width: 55%;
}

/* Checkout Form */
.checkout-form {
  background-color: #EDEDED;
}

.cart .content_container {
  padding: 0;
}

.cart .message_wrapper {
  height: auto;
}

/* Cart Product Layout */
.product_cart_content {
  display: flex;
  align-items: center;
}

/* Cart Image */
.product_cart_content .product-thumb {
  width: 100px;
}

.product_cart_content .product-thumb img {
  width: 100%;
  height: auto;
}

/* Cart Info */
.product-details {
  width: 50%;
}

/* Cart Pricing */
.product_cart_pricing {
  position: relative;
  width: auto;
  text-align: right;
}

.product_cart_quantity {
  position: absolute;
  top: 0;
  right: -25px;
  color: #01a2e9;
  border-radius: 100%;
  font-size: 15px;
  line-height: 25px;
  height: 25px;
  width: 25px;
  text-align: center;
  font-weight: 600;
}

/* Cart Amount Update */
input.cart_product_quantity {
  width: calc(100% - 150px);
  height: 30px;
  padding: 0 10px;
}

input.superbutton.cart_product_submit {
  height: auto;
  padding: 0;
  line-height: inherit;
  width: 140px;
  margin: 0;
}

.cart-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}


/* Remove From Cart */
input.superbutton[type="submit"][value="X"] {
  background-color: #01a2e9;
  color: #FFF;
  position: absolute;
  top: -15px;
  padding: 0;
  margin: 0;
  left: calc(100% - 15px);
  width: auto;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding-left: 3px;
}

/* Cart Landing Responsive */
@media (max-width: 960px) {

  .your-cart,
  .checkout-form {
    width: 100%;
  }
}

.cart_totals .cart_total {
  text-transform: uppercase;
  font-weight: 600;
  color: #01a2e9;
}

.product_cart_subtotal {
  font-weight: 600;
}

/* Cart Form */
@media (min-width: 960px) {
  .form_holder .third_width {
    width: calc(50% - 10px) !important;
  }

  .form_holder .third_width.same-shipping,
  .form_holder .third_width.coupon,
  .form_holder .third_width.country {
    width: 100% !important;
  }
}

.shipping_info {
  clear: both;
  display: block;
  padding-top: 30px;
}

@media (max-width: 960px) {

  .form_holder .third_width.coupon,
  .form_holder .third_width.country,
  .form_holder .third_width {
    width: 100%;
    display: inline-block;
  }

  .cart-content>div {
    padding: 40px 5%;
  }

  .checkout_form.form_holder {
    padding: 0;
  }
}

@media (max-width: 450px) {
  .product_cart_content {
    display: block;
  }

  .product_cart_content>div {
    width: auto;
    text-align: left;
  }

  .product_cart_quantity {
    position: inherit;
    width: auto;
    text-align: left;
    right: 0;
  }

  input.superbutton[type="submit"][value="X"] {
    right: 20px;
    left: initial;
    background-color: #01a2e9;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
  }

  .your-cart .cart_item {
    margin: 20px auto;
  }

  .your-cart .cart_item img {
    margin-bottom: 20px;
  }

  div.contact_navigation {
    flex-direction: column;
  }

  .contact_navigation div.third-width.section-tab:after {
    content: none;
  }
}

.third_width.same-shipping input#same_as_billing {
  display: inline-block;
  width: auto;
  margin-right: 5px;
  height: auto;
}

.third_width.same-shipping {
  width: 100%;
}

.cart-form input.superbutton[type="submit"] {
  width: 250px;
  display: block;
  padding: 10px;
  position: relative;
  clear: both;
  height: auto;
}

@media (min-width: 960px) {
  .cart-form input.superbutton[type="submit"] {
    top: 20px;
    margin: 40px 0;
  }
}

/* Cart Checkout Wrapper */
.cart-checkout-wrapper .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  width: 100%;
}

.cart-checkout-wrapper .content>div {
  padding: 40px 2%;
}

.cart_totals>div {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* User Info */
.user-info {
  width: 50%;
  background-color: #eee;
}

.user_shipping_info {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 20px;
}

/* Cart Checkout */
.cart-checkout {
  width: 50%;
  background: #FFF;
}

.cart-checkout-wrapper {
  padding: 0;
}

/* Cart Checkout Wrapper Mobile */
@media (max-width: 960px) {

  .cart-checkout,
  .user-info {
    width: 100%;
  }
}

/* Cart Thank You Page */
.cart-success-wrapper {
  display: flex;
}

.flexThanks {
  padding: 0;
}

.flexThanks .content {
  width: 100%;
  max-width: 100%;
}

.cart-success-wrapper>div {
  padding: 40px 2%;
}

.product_cart_price small {
  color: #01a2e9;
  font-weight: 600;
  position: absolute;
}

.cart_quantity select,
.cart_quantity input {
  height: 35px;
}

a#close_message i {
  display: none;
}

.empty-cart {
  width: 100%;
  text-align: center;
}

.empty-cart a.button {
  display: inline-block;
  width: auto;
  padding: 10px 30px;
  margin-top: 20px;
}

.empty-cart h3 {
  margin-bottom: 0 !important;
}

.form_holder input {
  height: 35px;
}

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

.checkout_form form .clear {
  display: none;
}

/* ---- Events ---- */
.content ul.date_list {
  margin: 5px 10px 0 10px;
  color: #01a2e9;
}

.content ul.date_list li {
  background: none;
  list-style: none;
  display: inline;
  border-left: 1px solid #01a2e9;
  color: #01a2e9;
  padding: 0px 7px 0 10px;
  margin: 0;
}

.content ul.date_list li.first {
  border-left: none;
  padding: 0px 7px 0 0;
}

.content ul.date_list li i {
  padding: 2px 4px 0 0;
}

.content ul.eventdata_list {
  margin: 5px 10px 0 10px;
  color: #01a2e9;
}

.content ul.eventdata_list li {
  background: none;
  list-style: none;
  color: #01a2e9;
  padding: 0px 0 0 2px;
  margin: 0;
}

.content ul.eventdata_list li i {
  padding: 2px 4px 0 0;
  width: 15px;
}

.content ul.eventdata_list li a {
  padding: 4px 30px;
  color: #01a2e9;
  background: #01a2e9;
  text-decoration: none;
}

/* Foood Menu Styles */
ul.menu_section_nav {
  max-width: 940px;
  margin: 0 auto;
  list-style: none;
  margin-bottom: 0;
  text-align: center;
}

ul.menu_section_nav li {
  float: left;
  margin: 0;
}

ul.menu_section_nav li a {
  background: #01a2e9;
  color: #FFFFFF;
  font-size: 0.52rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 20px;
  display: inline-block;
}

ul.menu_section_nav li a:hover {
  background: #222;
}

ul.menu_section_nav li.active a {
  background: #333333;
}

h4.menu_category {
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 30px;
  margin-top: 20px;
}

p.menu_section_description {
  margin-bottom: 40px;
}

.grid_list .menu_item {
  width: 100%;
  margin: 0 0 10px;
  float: none;
}

.grid_list .menu_item .price {
  float: right;
  color: #01a2e9;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 5px;
}

.grid_list .menu_item .menu_title {
  margin: 0 0 5px 0;
  color: #333333;
  font-weight: 700;
  text-transform: uppercase;
}

.grid_list .menu_item p.menu_options {
  background: #ecebeb;
  padding: 5px;
}

/* GRID LIST */
.grid_list {
  display: flex;
  flex-wrap: wrap;
}

.grid_list .grid_item {
  width: 100%;
  float: left;
  margin: 5px;
}

.grid_list .last {
  margin-right: 0%;
}

.grid_list .title {
  text-align: center;
  color: #FFFFFF;
  background: #01a2e9;
  display: flex;
  align-items: center;
  height: 60px;
}

.grid_list .title:hover {
  background: #222;
}

.grid_list .title a {
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 15% 5%;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.grid_list .title a:hover {
  color: #F0F0F0;
  text-decoration: none;
}

.grid_list img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  background: #FFFFFF;
}

.grid_list .grid_video {
  width: 48%;
  float: left;
  margin-right: 2%;
  margin-bottom: 10px;
}

/* ---- Hours Box Home Page ---- */
.hours_box {
  margin: 0 0 10px 0;
  width: 100%;
}

.hours_box .holder {
  padding: 3px 0 3px 0;
}

.hours_box .holder a {
  color: #01a2e9;
}

/* ---- Location Styles ---- */
.content .location {
  margin: 10px 0 10px 0;
}

.content .location .address {
  background: #333333;
  padding: 8px 8px 8px 8px;
  margin: -6px 0 0 0;
}

.content .location iframe {
  width: 100%;
  height: 300px;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

/* MENU LIST */
.menu_list ul.pages {
  display: flex;
  flex-wrap: wrap;
}

.menu_list ul.pages li {
  background: #01a2e9;
  float: left;
  text-align: center;
  width: 100%;
  text-decoration: none;
  list-style: none;
  margin: 5px;
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.menu_list ul.pages li:hover {
  background: #333333;
}

.menu_list ul.pages li a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding: 10px;
}

.menu_list ul.pages li a:hover {
  color: #FFFFFF;
}

/* MENU TOGGLER */
h4.menu_toggle,
h4.toggle.active.open {
  color: #01a2e9;
  color: #FFFFFF;
  background: url(/assets/images/layout/toggle-light.png) no-repeat 10px 11px #01a2e9;
  padding: 8px 0 8px 35px;
  margin: 10px;
  cursor: pointer;
}

h4.menu_toggle.active,
h4.toggle.open {
  background-position: 10px -39px;
}

h4.menu_toggle:hover,
h4.toggle.active.open:hover {
  text-decoration: underline;
}

div.menu_toggler {
  color: #333333;
  border-top: none;
  margin: 0 0 10px 0;
  padding: 0px;
  overflow: hidden;
}

div.menu_toggler hr {
  border-top: 1px solid #CCCCCC;
}

div.menu_toggler p {
  margin: 0px;
  padding: 5px 0 5px 0;
}

/* MESSAGE POPUP STYLES */
div.message_wrapper {
  margin: 15px 0;
  height: 64px;
}

.content h2.hide_message {
  display: none;
}

.content h2.message_positive {
  width: 100%;
  color: #FFFFFF !important;
  background: #01a2e9 !important;
  padding: 15px 2%;
}

.content h2.message_negative {
  width: 96%;
  color: #FFFFFF !important;
  background: #01a2e9 !important;
  padding: 15px 2%;
}

.message_wrapper a.message_link {
  color: #FFFFFF !important;
  text-decoration: underline;
}

.message_wrapper a.message_link:hover {
  text-decoration: none;
}

.message_wrapper a.cart_message_link {
  float: right;
  color: #FFFFFF !important;
  text-decoration: none;
  padding-bottom: 1px;
}

.message_wrapper a.cart_message_link:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

/* SHOWROOM STYLES */
.filter_list {
  width: 100%;
  margin-bottom: 15px;
}

.filter_list ul {
  margin: 0px;
  list-style: none;
}

.filter_list ul li {
  background: #01a2e9;
  padding: 0;
  margin: 5px 0 5px 0;
  text-align: center;
  list-style: none;
  width: 100%;
  float: left;
}

.filter_list ul li a {
  color: #FFFFFF;
  width: 100%;
  padding: 5px 10px;
  display: block;
  background: #01a2e9;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.filter_list ul li a:hover {
  color: #FFFFFF;
  background: #333333;
}

.filter_list ul li.active a {
  background: #333333;
  text-decoration: none;
}

.filter_list ul li.active a:hover {
  color: #FFFFFF;
}

.showroom_list h3 {
  margin: 0px 0 5px 0;
}

.showroom_list .box {
  background: #E9E9E9;
  float: left;
  padding: 20px;
  width: calc(50% - 20px);
  margin: 0 0 10px 0;
  position: relative;
  overflow: hidden;
}

.showroom_list .featured {
  background: #01a2e9;
  border: 1px solid #8EADBC;
}

.showroom_list .last {
  margin: 0;
}

.showroom_list .box .title {
  color: #01a2e9;
  margin: 0px 0 3px 2px;
}

.showroom_list .box .title a {
  color: #01a2e9;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}

.showroom_list .box .title a:hover {
  color: #222;
}

.showroom_list .box .flag_featured {
  background: #01a2e9;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 30px;
  right: -35px;
  text-align: center;
  padding: 5px 45px;
}

.showroom_list .box .flag_sold {
  background: #01a2e9;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 24px;
  right: -33px;
  text-align: center;
  padding: 5px 55px;
}

.showroom_list .box .flag_low_kms {
  background: #01a2e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 48px;
  right: -43px;
  text-align: center;
  padding: 5px 45px;
}

.showroom_list .box .flag_new {
  background: #01a2e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 38px;
  right: -39px;
  text-align: center;
  padding: 5px 45px;
}

.showroom_list .box .flag_like_new {
  background: #01a2e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 30px;
  right: -37px;
  text-align: center;
  padding: 5px 50px;
}

.showroom_list .box .flag_loaded {
  background: #01a2e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 25px;
  right: -33px;
  text-align: center;
  padding: 5px 45px;
}

.showroom_list .box .flag_sale_price {
  background: #A12621;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  float: left;
  width: auto;
  position: absolute;
  transform: rotate(45deg);
  top: 31px;
  right: -36px;
  text-align: center;
  padding: 5px 45px;
}

.showroom_list .box .price {
  font-size: 16px;
  float: left;
  min-width: 55%;
  width: auto;
  line-height: 10px;
  margin: 6px 0 0 0;
  color: #01a2e9;
  font-weight: bold;
}

.showroom_list .box .price .taxes {
  font-size: 8px;
  color: #01a2e9;
  font-weight: normal;
}

.showroom_list .box .kms {
  font-size: 12px;
  float: left;
  min-width: 55%;
  width: auto;
  color: #DF0000;
}

.showroom_list .box .kms span {
  font-size: 12px;
}

.showroom_list .box ul {
  margin: 0;
}

.showroom_list .box ul li {
  display: inline;
  background: none;
  font-size: 12px;
  margin: 0px 6px 0 0;
  padding: 0px 10px 0 0;
  border-right: 1px solid #000000;
}

.showroom_list .box ul li.last {
  border-right: none;
}

.showroom_list .box .date {
  float: right;
  font-weight: normal;
  font-size: 12px;
  color: #262626;
  padding: 8px 0 0 0;
}

.showroom_list .box img {
  border: none;
  background: #FFFFFF;
  padding: 0;
  margin: 0 0 10px 0;
  float: none;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}

.showroom_title {
  font-size: 26px;
  margin: 0;
  padding-top: 8px;
  font-weight: normal;
  color: #205B79;
}

.showroom_description p {
  font-size: 14px;
}

.showroom_image {
  width: 30%;
  float: right;
  border: none;
  background: #FFFFFF;
  padding: 0px;
  margin: 10px 15px 0 0;
}

.fb-like iframe {
  padding-top: 12px;
  margin: 5px 15px 5px 15px;
  -webkit-box-shadow: 0 0 0 -0px black;
  -moz-box-shadow: 0 0 0 -0px black;
  box-shadow: 0 0 0 -0px black;
}

.showroom_table {
  background: #ECECEC;
}

.showroom_table ul {
  padding: 5px 0;
}

.showroom_table ul li {
  font-size: 12px;
  background: none;
  list-style: none;
  margin: 0 1% 0 1%;
  padding: 2px 0 2px 0;
  float: left;
  width: 98%;
  font-weight: bold;
}

.showroom_table ul li div {
  float: left;
  width: 100px;
  font-weight: normal;
}

.showroom_features_table {
  background: #ECECEC;
}

.showroom_features_table ul {
  padding: 5px 0;
}

.showroom_features_table ul li {
  font-size: 12px;
  background: none;
  list-style: none;
  margin: 0 1%;
  padding: 5px 5px 5px 20px;
  float: left;
  width: 98%;
}

/* MULTI LOCATIONS */
.multi_maps {
  margin: 0;
}

.multi_maps .multi_map {
  background: #F0F0F0;
  float: left;
  margin: 0px 0 20px 0;
  width: 100%;
}

.multi_maps .multi_map .overlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 300px;
  /* your iframe height */
  top: 300px;
  /* your iframe height */
  margin-top: -300px;
  /* your iframe height */
}

.multi_maps .multi_map iframe {
  width: 100%;
  height: 300px;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

.multi_maps .multi_map .content {
  float: left;
  padding: 5px 10px;
}

.multi_map h3 {
  padding: 0;
  color: #01a2e9;
}

.multi_map ul {
  margin: 5px 0 0 0;
  width: 100%;
  list-style: none;
}

.multi_map ul li {
  margin: 0px;
  padding: 0px 0 6px 0;
}

.multi_map ul li a {
  color: #01a2e9;
  text-decoration: underline;
}

.multi_map ul li a:hover {
  color: #01a2e9;
  text-decoration: none;
}

/* People Styles */
.content_container .content .editable_content img.people_image {
  float: none;
  margin: 0 auto 10px auto;
}

.content_container .content .editable_content h1.person_name {
  font-size: 0.56rem;
  line-height: 0.56rem;
  margin: 0;
}

.content_container .content .editable_content h4.person_title {
  font-size: 0.32rem;
  line-height: 0.32rem;
  margin: 0;
  font-style: italic;
  color: #01a2e9;
}

/* PHOTO GALLERY */
.gallery_holder {
  width: 100%;
  background: #F0F0F0;
  float: left;
  margin: 6px 0 6px 0;
  padding: 0;
}

.gallery_holder a {
  text-decoration: none;
}

.gallery_holder a .title {
  text-align: left;
  margin: 2px 0;
  color: #01a2e9;
  text-decoration: none;
}

.gallery_holder a:hover .title {
  color: #01a2e9;
}

.gallery_holder a .description {
  color: #333333;
}

.gallery_holder img {
  background: #FFFFFF;
  border: 1px solid #BEBEBE;
  margin: 5px;
  float: left;
  padding: 2px;
  /*-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
}

#before_after_gallery ul li {
  background: none;
  list-style: none;
  width: 100%;
  float: left;
  margin: 0px 0 10px 0;
  padding: 0;
}

#before_after_gallery ul li p {
  margin: 0px 0 6px 0;
}

#before_after_gallery ul li.last {
  margin: 0px 0 10px 0;
}

#before_after_gallery ul li .image_holder {
  float: left;
  width: 100%;
  margin: 0px 0 10px 0;
  background: #F0F0F0;
}

#before_after_gallery ul li .image_holder .banner {
  padding: 0px 0 0 10px;
}

#before_after_gallery ul li .image_holder .banner h3 {
  font-style: italic;
  margin: -5px 0 2px 0;
}

#before_after_gallery ul li .image_holder .thumbnails {
  width: 94%;
  padding: 3%;
  margin: 0;
  /*-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
}

#before_after_gallery ul li .last {
  margin: 0;
}

/* TOGGLER */
h4.toggle,
h4.toggle.active.open {
  color: #333333;
  background: url(/assets/images/layout/toggle.png) no-repeat 10px 11px;
  padding: 8px 0 8px 35px;
  margin: 10;
  cursor: pointer;
}

h4.toggle.active,
h4.toggle.open {
  background-position: 10px -39px;
}

h4.toggle:hover,
h4.toggle.active.open:hover {
  background-position: 10px -39px;
}

div.toggler {
  border-top: none;
  margin: 0 0 10px 0;
  overflow: hidden;
}

div.toggler hr {
  border-top: 1px solid #F0F0F0;
}

div.toggler p {
  margin: 0px;
  margin-right: 1rem;
  padding: 5px 0 5px 0;
}

/* VIDEO GALLERY */
#video_gallery {
  background: #F0F0F0;
  margin: 0 0 20px 0;
  padding: 4px 0 16px 6px;
}

#video_gallery ul {
  margin: 0px;
  padding: 0px;
}

#video_gallery ul li {
  background: none;
  display: inline-block;
  margin: 0px;
  padding: 0px;
  width: 228px;
}

#video_gallery ul li .vid_title {
  padding: 5px 10px;
  width: 208px;
  overflow: hidden;
  float: left;
  text-decoration: underline;
}

#video_gallery ul li a:hover .vid_title {
  text-decoration: none;
}

#video_gallery .thumbnails {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  padding: 3px;
  margin: 10px 0 0 5px;
}

/* Photo Gallery Full */
#gallery_content2 {
  background: #F0F0F0;
  margin: 0 0 20px 0;
  padding: 4px 0 16px 6px;
}

#gallery_content2 ul {
  margin: 0px;
  padding: 0px;
}

#gallery_content2 ul li {
  background: none;
  display: inline;
  margin: 0px;
  padding: 0px;
}

#gallery_content2 .thumbnails {
  background: #FFFFFF;
  padding: 0;
  margin: 10px 1% 0 1%;
  width: 23%;
  height: auto;
}

/* Before and After */
#before_after_gallery ul {
  list-style: none;
}

#before_after_gallery ul li {
  background: none;
  width: 450px;
  float: left;
  margin: 0px 40px 20px 0;
  padding: 0;
}

#before_after_gallery ul li p {
  margin: 0px 0 6px 0;
}

#before_after_gallery ul li.last {
  margin: 0px 0 20px 0;
}

#before_after_gallery ul li .image_holder {
  float: left;
  margin: 0 1%;
  width: 48%;
  text-align: center;
}

#before_after_gallery ul li .image_holder h3 {
  font-style: normal;
  margin: 7px 0 9px 0;
  text-align: center;
}

#before_after_gallery ul li .image_holder .thumbnails {
  background: #FFFFFF;
  border: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

#before_after_gallery ul li .last {
  margin: 0;
}

/*
.twentytwenty-container img {
	height:100%;
}
*/
.gallery_container {
  display: flex;
  flex-wrap: wrap;
}

.gallery_item {
  width: 33.33%;
  padding: 2px;
}

/* PRODUCT STYLES */
.product_highlight {
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
}

.product_highlight img {
  width: 100%;
  margin-bottom: 5px;
}

.product_highlight .alert {
  float: right;
  color: #6d6d6d;
  margin: 5px 12px 0 0;
}

.product_highlight ul {
  background: none;
  margin: 0px;
  padding: 8px 15px;
}

.product_highlight ul li {
  background: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product_highlight ul li .strike {
  text-decoration: line-through;
}

.product_highlight ul li .sale {
  color: #6d6d6d;
}

.product_highlight ul.gallery {
  margin: 0;
  padding: 0;
}

.product_highlight ul.gallery li {
  margin: 0;
  padding: 0;
}

.product_highlight ul li h1 {
  font-size: 0.4rem;
  line-height: 0.4rem;
  font-weight: 400;
}

.product_highlight ul li h1.regular_price {
  color: #333333;
}

.product_highlight .holder {
  width: 100%;
  position: relative;
}

.product_highlight .holder>img {
  width: 100%;
}

.product_highlight .holder .img_select {
  width: 100%;
}

.product_highlight .holder .img_select>img {
  width: 20%;
  margin: 2px;
  cursor: pointer;
}

.product_highlight .holder .img_select>img.active {
  box-shadow: 0px 0px 4px 0px #333;
}

.price_selections label>input {
  /* HIDE RADIO */
  visibility: hidden;
  /* Makes input not-clickable */
  position: absolute;
  /* Remove input from document flow */
}

.price_selections label>input+div {
  /* IMAGE STYLES */
  cursor: pointer;
  border: 2px solid transparent;
}

.price_selections label>input:checked+div {
  /* (RADIO CHECKED) IMAGE STYLES */
  border: 2px solid #BEBEBE;
  background: #dcdcdc;
}

.option_info {
  padding: 5px;
  margin-top: 10px;
  background: #dcdcdc;
}

.box_list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 960px) {
  .box_list .box {
    margin: 5px;
  }
}

/* PROPERTIES STYLES */
.properties_alert {
  background: rgba(53, 117, 225, 0.3);
  color: #01a2e9;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
  margin: 0px 0 10px 0;
}

.properties_alert h2 {
  font-size: 0.36rem;
  margin: 0px;
  padding: 0px;
}

.properties_alert h5 {
  font-size: 0.24rem;
  margin: 0px;
  padding: 0px;
}

.properties_alert p {
  color: #01a2e9;
  margin: 0px;
  padding: 0px;
}

.properties_alert i {
  font-size: 1.2rem;
  color: #01a2e9;
  padding: 0px 15px 0 0;
  float: left;
}

.property_highlight {
  width: 100%;
  margin-bottom: 20px;
}

.property_highlight img {
  width: 100%;
  margin-bottom: 5px;
}

.property_highlight .alert {
  float: right;
  color: #01a2e9;
  margin: 5px 12px 0 0;
}

.property_highlight ul {
  background: #F0F0F0;
  margin: 0px;
  padding: 8px 5px 8px 5px;
}

.property_highlight ul li {
  background: none;
  margin: 0;
  padding: 0px 0 0 10px;
  list-style: none;
}

.property_highlight ul li .strike {
  text-decoration: line-through;
}

.property_highlight ul li .sale {
  color: #01a2e9;
}

.property_highlight ul.gallery {
  margin: 0;
  padding: 0;
}

.property_highlight ul.gallery li {
  margin: 0;
  padding: 0;
}

.properties_list {
  margin: 0;
}

.properties_list .title {
  margin: 0;
  padding-top: 15px;
  font-weight: normal;
  color: #01a2e9;
  border-top: 1px solid #F0F0F0;
}

.properties_list ul {
  margin: 0;
  padding: 5px 0 0 0;
}

.properties_list ul li {
  background: none;
  list-style: none;
  margin: 0px;
  padding: 2px 10px 2px 0;
  display: inline-block;
}

.properties_list ul li.title {
  display: block;
}

.properties_specs {
  margin: 20;
}

.properties_specs .title {
  margin: 0;
  font-weight: normal;
  color: #01a2e9;
}

.properties_specs ul {
  margin: 0;
  padding: 5px 0 0 0;
}

.properties_specs ul li {
  background: none;
  list-style: none;
  margin: 0px;
  padding: 2px 10px 2px 0;
  display: inline-block;
}

.property_location {
  margin: 0;
}

.property_location .address {
  background: #E9E9E9;
  padding: 8px 8px 8px 8px;
  margin-top: -6px;
}

.property_location .overlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 300px;
  /* your iframe height */
  top: 300px;
  /* your iframe height */
  margin-top: -300px;
  /* your iframe height */
}

.property_location iframe {
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

.properties_menu {
  background: #F0F0F0;
  margin: 0;
  padding: 0;
}

.properties_menu ul {
  margin: 0px 0 5px 0;
}

.properties_menu ul li {
  list-style: none;
  border-bottom: 1px solid #BEBEBE;
  box-shadow: 0 1px 0 #FFFFFF;
  color: #01a2e9;
  margin: 0px;
}

.properties_menu ul li i {
  padding: 10px 0 0 10px;
  font-size: 0.6rem;
  float: left;
}

.properties_menu ul li a {
  display: block;
  padding: 15px 0 15px 50px;
}

.properties_map_holder .properties_overlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 450px;
  /* your iframe height */
  top: 450px;
  /* your iframe height */
  margin-top: -450px;
  /* your iframe height */
}

.properties_map_holder .properties_map_overlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 450px;
  top: 450px;
  margin-top: -450px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 104;
}

/* REVIEWS STYLES */
.widget_reviews {
  margin: 15px 0 0 0;
  padding: 15px 0 10px 0;
}

.widget_reviews ul.reviews {
  overflow: visible;
  position: relative;
  background: none;
  display: block;
  margin: 0;
}

.widget_reviews ul.reviews li {
  background: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_reviews ul.reviews li p {
  letter-spacing: normal;
  text-transform: none;
  padding: 0;
  margin: 6px 0 0 0;
}

.widget_reviews ul.reviews li div.name {
  color: #01a2e9;
  font-size: 0.4rem;
  line-height: 0.4rem;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* IMPORT FONTS */
.timetable_clearfix:after {
  font-size: 0px;
  content: ".";
  display: block;
  height: 0px;
  visibility: hidden;
  clear: both;
}

.event_container strong {
  word-break: break-word;
}

/* --- lists --- */
.tt_tabs_navigation,
.tt_items_list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tt_tabs {
  border: none !important;
}

.tt_tabs .ui-tabs-panel {
  padding: 0 !important;
}

/* --- timetable --- */
table.tt_timetable {
  width: 100%;
  font-size: 11px;
  color: #666;
  margin-top: 30px;
  border: none;
  letter-spacing: normal;
  font-size: 11px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  border-collapse: separate !important;
  border-spacing: 2px !important;
  background: #FFF !important;
  table-layout: fixed;
}

table.tt_timetable * {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border: none;
  padding: 0px;
}

.tt_timetable th,
.tt_timetable td {
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  color: #545454;
  text-transform: none;
  border: none !important;
}

.tt_timetable th,
.tt_timetable td.tt_hours_column {
  text-align: center;
  vertical-align: middle;
}

.tt_timetable th {
  width: 12.5%;
  padding: 10px 15px 12px;
  letter-spacing: normal;
}

.tt_timetable .event_container {
  padding: 7px 5px;
}

.tt_timetable td {
  width: 12.5%;
  vertical-align: top;
  height: 10px;
  border: none;
  padding: 0;
  /*height: 100px;*/
  text-align: center;
  color: #D8D8D8;
}

.tt_timetable .hours {
  color: #FFF;
  /*font-weight: bold;*/
}

.tt_timetable .event {
  background-color: #01a2e9;
  color: #FFF;
  line-height: 140%;
  text-align: center;
  padding: 0 !important;
  vertical-align: middle;
}

.tt_timetable tr {
  background-color: #FFF !important;
}

.tt_timetable .row_gray {
  background-color: #EBEBEB !important;
}

.tt_timetable.small {
  display: none;
  font-size: 13px;
  margin-bottom: 20px;
}

/* --- items list --- */
.tt_items_list {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.tt_items_list.margin_top {
  margin-top: 8px;
}

.tt_items_list li {
  padding: 12px 12px !important;
  margin: 0 !important;
  list-style: none !important;
  border-bottom: 1px solid #FFFFFF;
  background-position: left center;
  background-repeat: no-repeat;
  line-height: 120%;
  font-family: "Inter", sans-serif;
  background: #01a2e9;
  color: #FFFFFF;
}

.tt_items_list.thin a,
.tt_items_list.thin span {
  font-weight: normal;
}

.tt_items_list .value {
  float: right;
  color: #FFFFFF;
}

.tt_items_list li a:hover {
  text-decoration: underline;
}

/* --- tabs --- */
.tt-ui-tabs-hide {
  display: none;
}

.tt_tabs .ui-tabs-panel p {
  padding: 24px 0 25px;
}

/* --- tabs navigation --- */
.tt_tabs_navigation {
  float: none !important;
  clear: both;
  width: 100% !important;
  padding: 0;
  margin: 0;
  list-style: none !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  background: none !important;
  border: none !important;
}

.tt_tabs_navigation li {
  float: left;
  margin: 0 20px 0 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  background: none !important;
  border: none !important;
  list-style: none !important;
}

.tt_tabs_navigation li:last-child {
  margin-right: 0 !important;
}

.tt_tabs_navigation li a {
  width: auto !important;
  display: block;
  text-align: center;
  color: #666 !important;
  padding: 8px 0 !important;
  border: none !important;
  border-bottom: 1px solid #E5E5E5 !important;
  line-height: normal;
  outline: none;
  text-decoration: none;
  font-size: 15px !important;
  font-family: "Inter", sans-serif;
  transition: none !important;
  margin-bottom: 1px;
}

.tt_tabs_navigation li a:hover,
.tt_tabs_navigation li a.selected,
.tt_tabs_navigation li.ui-tabs-active a {
  border-bottom-width: 3px !important;
  padding-bottom: 7px !important;
  border-color: #01a2e9 !important;
  color: #000 !important;
  margin-bottom: 0;
}

.sf-timetable-menu a:hover,
.tt_tabs_navigation li a:hover,
.tt_tabs_navigation li a:focus,
.tt_tabs_navigation li a:active {
  text-decoration: none;
}

/* --- tabs box navigation --- */
.tabs_box_navigation.sf-timetable-menu {
  float: none;
  clear: both;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.tabs_box_navigation.sf-timetable-menu li.submenu:hover:after {
  background: none;
}

.schedule_print_button {
  font-family: "Inter", sans-serif;
  float: right;
  font-size: 18px;
}

.schedule_print_button a {
  text-decoration: none;
  color: #01a2e9;
}

.schedule_print_button a:hover {
  color: #333333;
}

/* RESPONSIVE STYLES*/
@media screen and (max-width: 1009px) {
  .tt_upcoming_events li a {
    padding: 10px;
  }

  .tt_event_items_list li.type_info {
    padding: 5px 0;
  }

  /* --- timetable --- */
  .tt_responsive .tt_timetable {
    margin-top: 23px;
  }

  .tt_responsive .tt_timetable th,
  .tt_responsive .tt_timetable .event_container,
  .tt_responsive .tt_tooltip .tt_tooltip_content {
    padding: 4px 4px 5px;
  }

  .tt_responsive .tt_timetable td {
    height: 18px;
  }

  .timetable_sidebar_box {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {

  /* --- timetable --- */
  .tt_responsive .tt_timetable {
    display: none;
  }

  .tt_responsive .tt_timetable.small {
    display: block;
  }

  .tt_responsive .tt_timetable.small .box_header {
    font-size: 16px !important;
    color: #545454 !important;
    background: #EBEBEB;
    font-family: "Inter", sans-serif;
    margin: 6px 0px 0px;
    padding: 12px;
    border-bottom: 1px solid #FFFFFF;
  }

  .tt_responsive .tt_timetable.small .tt_items_list a,
  .tt_responsive .tt_timetable.small .tt_items_list span {
    width: 302px;
    font-family: "Inter", sans-serif;
    color: #545454 !important;
    text-decoration: none;
    outline: none;
  }
}

/* ---- Search ---- */
.with_bg {
  margin: 5px 0 3px 0;
}

.with_bg.icon2 {
  right: 44px !important;
}

.with_bg i {
  float: left;
  margin: 2px 5px 0 0;
  color: #01a2e9;
}

.with_bg .search_input {
  float: left;
  padding: 8px 1% 8px 2%;
  height: 50px;
  width: 75%;
  margin: 1px 1% 0 0;
  background-color: #FFFFFF;
  border: 1px solid #F0F0F0;
  outline: none;
  font-size: 16px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* SOCIAL MEDIA */
.social_media ul {
  float: left;
  margin: 5px 0 0 0;
}

.social_media ul li {
  display: inline-block;
  padding: 3px 5px 0 0;
  margin: 0;
  float: left;
}

.social_media ul li i {
  font-size: 0.6rem;
}

/* TOOL TIP STYLES
/* Icon */
a.tooltip {
  text-decoration: none;
  color: #01a2e9;
}

a.tooltip:hover {
  color: #222;
}

/* Box */
a.tooltip>span {
  color: #fff;
  background: #01a2e9;
  width: 200px;
  padding: 10px 15px;
  margin-top: 0;
  margin-left: -40px;
  /* Hidden Position */
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  position: absolute;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  border-radius: 0;
  -webkit-transition-property: opacity, margin-top, visibility, margin-left;
  -webkit-transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
  -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
  transition-property: opacity, margin-top, visibility, margin-left;
  transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
  transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
}

a.tooltip:hover>span {
  opacity: 1;
  text-decoration: none;
  visibility: visible;
  overflow: visible;
  margin-top: 35px;
  display: inline;
  margin-left: -40px;
  /* Reveal Position */
}

/* Arrow */
a.tooltip span b {
  width: 15px;
  height: 15px;
  margin-left: 10px;
  margin-top: -15px;
  display: block;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #01a2e9;
}

@media (min-width: 960px) {
  .box_list .box {
    width: calc(33.33% - 10px);
  }

  .box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
  }

  .grid_list .grid_item {
    width: calc(33.33% - 10px);
  }

  hr {
    margin: 40px 0;
  }

  .menu_list ul.pages li {
    width: calc(33.33% - 10px);
  }

  .content_container .content .editable_content img.people_image {
    float: left;
    margin: 0 10px 0 0;
  }

  .box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .box_list .past_news {
    width: calc(50% - 10px);
    margin: 5px;
    text-align: left;
  }

  .mobile_register {
    display: none;
  }

  .full_register {
    display: inherit;
  }

  .events_editable_content {
    float: left;
    width: 60%;
  }

  .contact_info ul {
    margin: 5px;
    width: calc(50% - 10px);
    float: left;
  }

  .product_highlight {
    width: 35%;
    float: right;
    margin: 0 0 0 5%;
  }

  .form_holder .third_width {
    width: 32.3333%;
  }

  .form_holder .half_width {
    width: 49%;
    margin-right: 1%;
    float: left;
  }

  .form_holder textarea {
    width: 100%;
  }

  .form_holder select {
    width: 100%;
  }

  .grid_list .menu_item {
    width: calc(33.33% - 10px);
  }

  .filter_list ul li {
    width: calc(33.33% - 10px);
  }

  .property_highlight {
    width: 35%;
    float: right;
    margin: 0 0 10px 10px;
  }

  .properties_menu ul li {
    width: 25%;
  }

  .box_list .box ul.careers_list li {
    list-style-type: none;
    width: 33.3333%;
    float: left;
    background: none;
    margin: 10px 0 10px 0;
    padding: 0 10px 0 0;
  }

  .content ul.career li {
    width: 33.3333%;
  }
}

/* 600 pixel width */
@media (min-width: 600px) and (max-width: 960px) {
  .box_list .box {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
  }

  .grid_list .grid_item {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .menu_list ul.pages li {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .box_list .past_news {
    width: calc(100% - 10px);
    margin: 5px;
    text-align: left;
  }

  .grid_list .menu_item {
    width: calc(50% - 10px);
    margin: 5px;
    float: left;
  }

  .filter_list ul li {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .showroom_list .box {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .showroom_table ul li {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .showroom_features_table ul li {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .properties_menu ul li {
    border-right: 1px solid #F0F0F0;
    box-shadow: 1px 0 0 #FFFFFF;
    border-bottom: none;
    width: 50%;
    float: left;
  }

  .content ul.career li {
    width: 50%;
  }

  div.swipebox_video_full a img {
    width: 47%;
  }
}

@media (max-width: 767px) {
  .gallery_item {
    width: 50%;
    padding: 2px;
  }
}

/* Stackable Styles */
table.stacktable.large-only {
  display: table;
}

table.stacktable.large-only thead {
  background: #01a2e9;
}

table.stacktable.large-only tr {
  border: 1px solid rgba(0, 0, 0, .1);
}

table.stacktable.small-only {
  display: none;
}

@media (max-width: 1260px) {
  table.stacktable.large-only {
    display: table;
  }

  table.stacktable.small-only {
    display: none;
    margin-bottom: 10px;
  }

  .small-only tr td.st-key {
    background-color: #01a2e9;
    color: #FFF;
  }

  .editable_content table tr td.st-key {
    font-size: 25px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  table.stacktable.large-only {
    display: none;
  }

  table.stacktable.small-only {
    display: table;
  }

  table.stacktable.small-only::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }

  .editable_content table tr td.st-val {
    border-top: none;
  }

  .editable_content table tr {
    display: flex;
    flex-direction: column;
  }

  .editable_content table tr td.st-key {
    border-bottom: none;
  }

  table.stacktable.small-only {
    margin: 0;
  }

  .stackable-table {
    margin-top: 20px;
  }
}

/* 4. External Styles
********************/
body {
  overflow-x: hidden !important;
  width: 100%;
}

.scroll-down {
  width: 100%;
  position: relative;
  text-align: center;
  margin: -80px 0 10px;
}

.scroll-down .scroll-down-title {
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 10px;
  font-style: italic;
  color: #FFFFFF;
  letter-spacing: 4px;
}

.scroll-down img {}

.strip01 {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.strip01 .content {
  position: relative;
}

.strip01 .welcome-image {
  width: 100%;
  height: 360px;
  background: url(../images/layout/team.png) center center no-repeat;
  background-size: contain;
  background-position: left;
  overflow: hidden;
  position: absolute;
  bottom: -40px;
}

.strip01 .content .welcome-image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.0);
}

.strip01 .content .welcome-image-text {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  line-height: 45px;
  color: rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: absolute;
  top: -23px;
  left: -70px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}

.strip01 .content .welcome-text {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  line-height: 45px;
  color: #00A2E9;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: absolute;
  top: -23px;
  left: 0px;
  z-index: 1;
  display: none;
}

.strip01 .content .editable_content {
  text-align: center;
}

.strip01 .content .editable_content h1 {
  margin-bottom: -5px;
}

.strip01 .content .editable_content h6 {
  margin-bottom: 25px;
}

.strip_welcom {
  position: relative;
  overflow: hidden;
  background: url(/assets/images/layout/wave-pattern.png) top left #1e1f1f;
  background-size: 100% auto;
  color: #fff !important;
}

.strip_welcom p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.strip_welcom .content {
  max-width: 768px;
}

.strip_welcom h1 {
  color: #01a2e9;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.strip_welcom h2,
.strip_welcom h3,
.strip_welcom h4,
.strip_welcom h5,
.strip_welcom h6 {
  color: #fff;
}

.strip02 {
  background: #f7f7f7;
}

.strip02 .content {
  text-align: center;
}

.strip02 .content h1 {
  margin-bottom: 25px;
}

.strip02 .content h6 {
  margin-bottom: -5px;
}

.strip02 .content .box_list {
  margin-bottom: 30px;
}

.strip02 .content .box_list .box {
  width: calc(100% - 10px);
}

.strip02 .content a.more-btn {
  border: none;
  color: #fff;
  padding: 9px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 600;
  margin: 25px auto 0;
  background: #01a2e9;
}

.strip02 .content a.more-btn:hover {
  background: #212222;
  color: #FFFFFF;
}

/* .strip03{
	padding: 0 20px;
	position: relative;
	background: url(../images/layout/strip03-background.jpg) top center no-repeat;
	background-size: cover;
} */
.inner_header .inner_header_overlay,
.inner_header_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 0;
  left: 0;
}

.inner_header .content {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.inner_header .content .h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.inner_header .content .h6 {
  color: #FFFFFF;
  font-style: normal;
  margin-bottom: 45px;
  padding: 0 20px;
}

.inner_header .content .booking-slection {
  width: 500px;
  margin: 0 auto 45px;
}

.inner_header .content .booking-slection .booking-segway {
  float: none;
  font-size: 17px;
  line-height: 17px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 700;
  margin: 15px auto;
}

.inner_header .content a.book-now {
  font-family: 'Inter', sans-serif;
  border: 2px solid #fff;
  padding: 17px 35px;
  letter-spacing: 6px;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  background: none;
  font-weight: 400;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.inner_header .content a.book-now:hover {
  background: #FFFFFF;
  color: #212222;
}

.top-footer {
  background: #212222;
  padding: 55px 20px 0;
  display: none;
}

.top-footer .top-footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 30px;
}

.top-footer .top-footer-content .footer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.top-footer .top-footer-content .site-map {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #474848;
}

.top-footer .top-footer-content .site-map ul.footer-nav {
  list-style: none;
}

.top-footer .top-footer-content .site-map ul.footer-nav li {
  width: 25%;
  float: left;
  text-align: left;
  margin: 0 0;
  line-height: 32px;
  letter-spacing: 1px;
}

.top-footer .top-footer-content .site-map ul.footer-nav li a {
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.top-footer .top-footer-content .site-map ul.footer-nav li a:hover {
  color: #00a2e8;
}

.top-footer .top-footer-content .footer-contact {
  width: 100%;
  clear: both;
}

.top-footer .top-footer-content .footer-contact ul {
  width: 50%;
  float: left;
  list-style: none;
}

.top-footer .top-footer-content .footer-contact ul li {
  font-size: 14px;
  line-height: 32px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-footer .top-footer-content .footer-contact ul li a {
  color: #ffffff;
  text-decoration: none;
}

.top-footer .top-footer-content .footer-contact ul li a:hover {
  color: #00a2e8;
}

.therapist-strip01 {}

.therapist-strip01 .content {
  height: 400px;
}

.therapist-strip02 {
  background: #ffffff;
}

.therapist-strip02 .team-list {
  margin: 0;
  padding: 0;
  width: 100%;
}

.therapist-strip02 .team-list .box {
  width: 100%;
  height: 450px;
  padding: 0;
  margin: 0;
  float: left;
  position: relative;
}

.therapist-strip02 .team-list .box .therapist-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  top: 0;
  left: 0;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.therapist-strip02 .team-list .box:hover .therapist-overlay {
  background: rgba(255, 255, 255, 0.7);
}

.therapist-strip02 .team-list .box .therapist-content {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  padding: 30px;
  text-align: left;
}

.therapist-strip02 .team-list .box .therapist-content .title {
  font-family: 'Inter', sans-serif;
}

.therapist-strip02 .team-list .box .therapist-content .title a {}

.therapist-strip02 .team-list .box .therapist-content .title a:hover {}

.therapist-strip02 .team-list .box .therapist-content .job_title {
  font-family: 'Inter', sans-serif;
  color: #636363;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 20px;
}

.therapist-strip02 .team-list .box .therapist-content p {}

.therapist-strip02 .team-list .box .therapist-content a.bio-btn {
  font-family: 'Inter', sans-serif;
  border: 2px solid #212222;
  padding: 5px 25px;
  letter-spacing: 6px;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  text-transform: uppercase;
  color: #212222;
  text-decoration: none;
  background: none;
  font-weight: 400;
  opacity: 0;
  position: absolute;
  bottom: 40px;
  left: 40px;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.therapist-strip02 .team-list .box:hover .therapist-content a.bio-btn {
  opacity: 1;
}

.therapist-strip02 .team-list .box .therapist-content a.bio-btn:hover {
  background: #212222;
  color: #FFFFFF;
}

.team-member-strip {
  padding: 90px 20px 0;
  background: #FFF;
}

.team-member-strip .content {
  padding-bottom: 40px;
}

.team-member-strip .content .therapist-image-holder {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 20px;
}

.team-member-strip .content .therapist-image-holder .therapist-image-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
}

.team-member-strip .content .therapist-image-holder img.therapist-image {
  width: 100%;
  height: auto;
}

.team-member-strip .content .editable_content {
  width: 100%;
  align-items: flex-start;
}

.team-member-strip .content .editable_content hr {
  border-color: #e0e0e0;
}

.team-member-strip .content .editable_content h1.person-name {
  font-size: 36px;
  line-height: 36px;
  margin: 0;
}

.team-member-strip .content .editable_content h4.person-title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}

.team-member-strip .content .editable_content .person-info {}

.team-member-strip .content .editable_content .person-info i {}

.team-member-strip .content .editable_content .person-info a {}

.team-member-strip .content .editable_content .person-info a:hover {}

.blog-page {}

.blog-page .content {}

.blog-page .content .box_list {}

.blog-page .content .box_list .box {
  padding: 0;
  width: 96%;
  margin: 0 2% 20px;
}

.blog-page .content .box_list .box img {
  float: none;
  width: 100%;
  height: auto;
  margin: 0 0 15px;
}

.blog-page .content .box_list .box .title {
  font-size: 18px;
  line-height: 20px;
}

.blog-page .content .box_list .box .title a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 20px;
  color: #212222;
}

.blog-page .content .box_list .box .title a:hover {
  color: #646464;
}

.blog-page .content .box_list .box .date {
  font-size: 18px;
  line-height: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-page .content .box_list .box p {}

.post_date {
  color: #01a2e9;
}

form.conditions-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width:960px) {
  form.conditions-search {
    flex-direction: column;
  }
}

form.conditions-search input {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #e4e4e4;
  font-size: 18px;
  line-height: 18px;
  color: #656767;
  font-weight: 400;
  margin: 0 0 20px;
}

form.conditions-search button {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 16px 30px;
  color: #fff;
  border: none;
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  background: #00a2e8;
}

form.conditions-search button:hover {
  background: #7f807f;
  color: #FFFFFF;
}

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

@media screen and (min-width: 600px) {
  .therapist-strip02 .team-list .box {
    width: 50%;
  }

  .top-footer {
    display: block;
  }

  .blog-page .content .box_list .box {
    width: 46%;
  }

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

@media screen and (min-width: 960px) {
  .therapist-strip02 .team-list .box {
    width: 33.3333%;
  }

  .strip01 .content .welcome-image {
    display: block;
  }

  .strip01 .content .editable_content {
    height: 360px;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .strip01 .content .editable_content p {
    font-size: 20px;
    line-height: 36px;
  }

  .strip01 .content .welcome-text {
    display: inherit;
  }

  .strip02 .content .box_list .box {
    width: calc(33.33% - 10px);
  }

  .inner_header .content .booking-slection .booking-segway {
    float: left;
    margin: 15px 50px 0 50px;
  }

  .inner_header .content {
    height: 100%;
  }

  .inner_header .content .booking-slection {
    margin: 0 auto 45px;
  }

  .top-footer .top-footer-content .site-map {
    width: 45%;
    float: left;
    margin: 0;
    border-bottom: none;
    border-right: 1px solid #474848;
  }

  .top-footer .top-footer-content .footer-contact {
    width: 50%;
    float: right;
    clear: none;
  }

  .ms-banner .banner-details .title {
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 40px;
  }

  .ms-banner .banner-details .small_title,
  .ms-banner .banner-details .description {
    margin-bottom: 40px;
    letter-spacing: 0;
    font-size: 22px;
    line-height: 22px;
  }

  .ms-banner .banner-details .small_title {
    margin: 0 0 10px;
  }

  .ms-banner .banner-details a {
    padding: 11px 35px;
    letter-spacing: 2px;
  }

  .team-member-strip .content .therapist-image-holder {
    display: none;
  }

  .team-member-strip .content .editable_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .team-member-strip {
    padding: 100px 20px 0;
    background: #fff;
  }

  .team-member-strip a.button {
    margin: 16px 0 0;
  }

  .blog-page .content .box_list .box {
    width: 29.3333%;
  }

  form.conditions-search input {
    width: calc(100% - 200px);
    margin: 0;
  }

  form.conditions-search button {
    margin: 0 0 0 15px;
    width: 180px;
  }
}

@media screen and (min-width: 1200px) {
  .therapist-strip02 .team-list .box {
    width: 25%;
  }

  .jqueryslidemenu ul li a {
    padding: 11px 30px;
    letter-spacing: 2px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1350px) {
  .strip01 .content .welcome-image-text {
    font-size: 65px;
    line-height: 50px;
    top: -25px;
    left: -137px;
  }

  .strip01 .content .welcome-text {
    font-size: 65px;
    line-height: 50px;
    top: -25px;
    left: -67px;
  }

  .jqueryslidemenu ul li a {
    letter-spacing: 2px;
    font-size: 14px;
  }
}

@media screen and (max-width: 960px) {
  .team-member-strip .content {
    background: none !important;
  }
}

.strip01 {
  padding: 40px 20px 0px 20px;
}

.strip01 .content {
  width: 100%;
  display: flex;
}

.strip01 .half-width {
  width: 50%;
}

.strip01 .half-width img {
  object-position: bottom;
  object-fit: contain;
  width: 100%;
  height: 110%;
}

@media screen and (min-width: 960px) {
  .strip01 .half-width img {
    object-position: bottom;
    object-fit: contain;
    width: 130%;
    height: 110%;
    -moz-transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}

select.condition_select {
  font-weight: 400;
  width: 90%;
  height: 36px;
  padding: 5px 8px;
  margin: 1px 0 10px;
  background-color: #FFFFFF;
  border: 1px solid #d4d2d2;
  color: #333333;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #656767;
  font-weight: 400;
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
}

select.condition_select:focus:valid {
  box-shadow: 0px 0px 5px #01a2e9;

}

#section-list .box.half {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

#section-list .quorter_width {
  margin-left: 5px;
  width: 100%;
}

.multi_maps {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}

.multi_maps .multi_map {
  background: #f0f0f0;
  width: calc(50% - 10px);
  margin: 5px;
}

.multi_maps .content {
  width: 100%;
}

.contact_info .social_media ul {
  display: flex;
  justify-content: center;
  width: 100%;
}

div.social_media ul li {
  margin: 5px;
}

.call_to_action {
  position: fixed;
  background-color: #01a2e9;
  padding: 10px;
  border-radius: 15px 15px 0 0;
  z-index: 10;
  top: 50%;
  transform: rotate(-90deg);
  width: 260px;
  left: calc(100% - 150px);
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.call_to_action:hover {
  background: #1e1f1f;
}

.call_to_action a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 18px;
}

.grecaptcha-badge {
  bottom: 45px !important;
}

#call_to_action_section {
  background: url('../images/layout/cta-image.png') center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 150px 20px;
}

#call_to_action_section .content {
  position: relative;
  text-align: center;
}

#call_to_action_section a,
#call_to_action_section h2,
#call_to_action_section h6,
#call_to_action_section p {
  color: #f0f0f0;
  text-align: center;
  font-style: normal;
}

#call_to_action_section h2.h1 {
  font-size: .8rem;
}

#call_to_action_section a.button {
  width: auto;
  border: 2px solid #01a2e9;
  margin: 15px 0 0;
  padding: 10px 45px;
}

#call_to_action_section a.button:hover {
  background-color: #202222;
  border: 2px solid #202222;
}

.team_member_photo {
  position: relative;
  height: 100%;
  margin-left: 15px;
}

.team_member_photo img {
  position: relative;
  bottom: -15px;
}

.team-member-strip .content {}

.team_social i {
  margin: 0px 5px 20px;
}

.pageend_buttons {
  width: 100%;
  margin-top: 30px;
  padding: 30px 0px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-top: 1px solid rgba(81, 81, 81, 0.33);
}

.pageend_buttons a {
  width: 48%;
  margin: 0px 1%;
  text-align: center;
  background: #00a2e8;
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
}

.pageend_buttons a:hover {
  background: #202222;
}

/* THERAPIST THING */
.booking-slection {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}

.booking-slection select {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 6px;
  color: #00A2E9;
  font-weight: 500;
  background: none;
  background: url(/assets/images/layout/chevron.png) no-repeat right;
  background-size: 24px 12px;
  border: 0px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin: 0px auto;
}

.booking-slection .therapist_group {
  width: 305px;
}

.booking-slection .therapist_location {
  width: 285px;
}


/* Product Page Styles */
.products-page {
  background: #fff;
  padding-top: 75px;
}

.products-page .content .grid_list .grid_item {
  position: relative;
}

.products-page .content .grid_list .grid_item .title {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100%;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.products-page .content .grid_list .grid_item .title:hover {
  background: rgba(33, 33, 33, 0.88);
}

.products-page .content .grid_list .grid_item:hover .title {
  height: 100%;
}

.products-page .content .grid_list .grid_item .title a {
  color: #212222;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.products-page .content .grid_list .grid_item .title:hover a {
  color: #fff;
}

.products-page .content .grid_list .grid_item:hover .title a {
  color: #fff;
  height: 100%;
}




.products-page .content .box_list {}

.products-page .content .box_list .box {
  position: relative;
}

.products-page .content .box_list .box .image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.products-page .content .box_list .box .image-container img {
  width: 100%;
}

.products-page .content .box_list .box .image-container a.view-product {
  position: absolute;
  background: rgba(0, 162, 232, 0.88);
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  bottom: -48px;
  display: block;
  width: 100%;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.products-page .content .box_list .box:hover .image-container .view-product {
  bottom: 0px;
}

.products-page .content .box_list .box .image-container a.view-product:hover {
  background: rgba(33, 33, 33, 0.88);
}

.products-page .content .box_list .box .title {}

.products-page .content .box_list .box .title a {
  color: #212222;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.5px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.products-page .content .box_list .box .title a:hover {
  color: #858585;
}

.products-page .content .box_list .box ul.pricing {}

.products-page .content .box_list .box ul.pricing li {
  font-weight: 600;
  letter-spacing: 1px;
}

.products-page .content .box_list .box p {}








@media screen and (max-width: 558px) {
  .booking-slection select {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 5px;
    background-size: 18px 10px;
  }

  .booking-slection .therapist_group {
    width: 223px;
  }

  .booking-slection .therapist_location {
    width: 214px;
  }

  .inner_header .content .booking-slection .booking-segway {
    font-size: 14px;
    margin: 10px auto;
  }

  .inner_header .content .booking-slection {
    margin: 0 auto;
  }
}

/* THERAPIST THING */
.tripple-button {
  display: flex;
  flex-wrap: wrap;
}

.tripple-button a.superbutton {
  width: calc(50% - 10px);
  margin: 5px;
}

@media screen and (max-width: 568px) {
  div.tripple-button {
    flex-direction: column;
  }

  div.tripple-button a.superbutton {
    width: 100%;
  }
}

/* LOGO STRING */
#logo-link-slider {
  overflow: hidden;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

#logo-link-slider .logo-link-slider-wrapper {
  display: block;
  width: 100%;
  position: relative;
}

#logo-link-slider .logo-link-slider-wrapper ul {
  position: relative;
  left: 0px;
  display: flex;
  justify-content: space-around;
  list-style: none;
}

#logo-link-slider .logo-link-slider-wrapper ul li {
  display: inline-block;
  position: relative;
  margin: 0px auto;
  width: 200px;
  /* height: 200px;
  line-height: 200px;*/
  text-align: center;
}

#logo-link-slider .logo-link-slider-wrapper ul li a img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
  opacity: 0.65;
  width: 100%;
  filter: grayscale(1);
}

.logo_link_static {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.logo_link_static a img {
  width: 200px;
}

/* LOGO STRING */
/*MOBLE FIXES */
@media screen and (max-width: 600px) {
  .box_list .box .title a {
    font-size: 16px;
  }

  .strip02 .content a.more-btn {
    font-size: 12px;
  }

  #call_to_action_section a.button {
    width: 100%;
    border: 2px solid #01a2e9;
    margin: 10px auto;
  }

  .booking-slection .dropdown_selected {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 4px;
  }

  .booking-slection .dropdown_items li {
    font-size: 16px;
    line-height: 30px;
  }

  /* LOGO STRING */
  #logo-link-slider .logo-link-slider-wrapper ul li {
    width: 100px;
  }

  /* LOGO STRING */
  #signature {
    background: #212222;
    margin: 0 0 45px 0;
    padding: 10px 10px 60px 10px;
  }

  .team_member_photo {
    width: 100%;
    margin-left: none;
  }

  span.faq-icon,
  h5.toggle_faq {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 2px;
  }

  div.multi_maps div.info {
    display: block;
  }

  .strip_welcom p {
    font-size: 18px;
    line-height: 26px;
  }
}

.team-member-strip .half-width {
  width: 50%;
  margin-bottom: 15px;
}

.skill_bars {
  padding-bottom: 100px;
  width: 100%;
  margin: auto;
  max-width: 1200px;
}

.swipebox_video_full {
  width: 100%;
}

.swipebox_video_full a {
  width: 98%;
  padding: 30px 0px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background: url(../images/layout/video_place.png) no-repeat center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  /*background:rgba(204, 204, 204, 0.36); */
}

.swipebox_video_full a img {
  width: 98%;
  margin: 1%;
  opacity: 0.3;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background: url(../images/layout/video_place.png) no-repeat center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  border: 2px solid #212222;
  background: #000 !important;
}

.swipebox_video_full a img:hover {
  opacity: 0.5;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}


div.rating-cancel {
  float: left;
  width: 17px;
  height: 15px;
  text-indent: -999em;
  cursor: pointer;
  display: none;
  background: transparent;
  overflow: hidden
}

div.rating-cancel,
div.rating-cancel a {
  background: url(/assets/images/layout/form-stars-delete.png) no-repeat 0 -16px
}

div.rating-cancel a {
  display: block;
  width: 16px;
  height: 100%;
  background-position: 0 0px;
  border: 0
}

div.star-rating {
  float: left;
  width: 60px;
  height: 60px;
  text-indent: -999em;
  cursor: pointer;
  display: block;
  background: transparent;
  overflow: hidden
}

div.star-rating,
div.star-rating a {
  background: url(/assets/images/layout/form-stars.png) no-repeat 0 0px
}

div.star-rating a {
  display: block;
  width: 60px;
  height: 100%;
  background-position: 0 0px;
  border: 0
}

div.star-rating-on a {
  background-position: 0 -153px !important
}

div.star-rating-hover a {
  background-position: 0 -153px
}

/* Read Only CSS */
div.star-rating-readonly a {
  cursor: default !important
}

/* Partial Star CSS */
div.star-rating {
  background: transparent !important;
  overflow: hidden !important
}

/* END jQuery.Rating Plugin CSS */
div.rating-cancel {
  display: none !important;
}

.box.person-box a {
  text-decoration: none;
}

.contact_navigation {
  width: 100%;
  position: absolute;
  top: 75px;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #01a2e9;
  border-radius: 0;
}

.contact_navigation p,
.contact_navigation i,
.contact_navigation a {
  color: #FFF;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
}

.contact_navigation .third-width {
  width: 33.33%;
  position: relative;
  height: 100%;
  text-align: center;
}

.section-tab:after {
  content: '';
  display: block;
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 2px;
  bottom: auto;
  background-color: #fff;
}

.bold {
  font-size: 1.5em;
  color: #00a2e8;
  font-weight: 700;
}

.photo_info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-bottom: 10px;

}

a div.photo_info span {
  color: #000 !important;
  padding: 2px 4px;
  font-size: 20px;
}

a div.photo_info .photo_title {
  font-weight: bold;
}

a div.photo_info .photo_caption {}

.holder a {
  text-decoration: none !important;
}

.top-footer.new-footer .top-footer-content .site-map {
  width: 100%;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #474848;
  border-right: none;
}

.top-footer.new-footer .top-footer-content .footer-contact {
  width: 100%;
}

.new-footer .footer-contact .flex-list {
  padding: 1em 0;
  display: flex;
  align-items: center;
}

.new-footer .footer-contact h2.h6 {
  font-size: 1.2em;
  font-weight: 600;
  color: #FFF;
}

footer {
  background: #212222;
  padding: 0;
}

footer .footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
}

footer .footer-content .footer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 15px;
  width: 100%;
  display: block;
}

footer .footer-content h2.h6 {
  font-size: 1.2em;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
}

footer .footer-content .flex-list {
  padding: 1em 0;
  display: flex;
  align-items: flex-start;
  width: 50%;
}

footer .footer-content .flex-list ul {
  width: calc(100% - 300px);
  float: left;
  list-style: none;
}

footer .footer-content .flex-list ul.first-of-type {
  width: 300px;
}

footer .footer-content .flex-list ul li {
  font-size: 14px;
  line-height: 32px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer .footer-content .flex-list ul li a {
  color: #ffffff;
  text-decoration: none;
}

footer .footer-content .flex-list ul li ul {
  width: 100%;
}

footer .footer-content div.social_media {
  width: 100%;
  /* border-top: 1px solid #474848; */
  border-bottom: 1px solid #474848;
  padding: 20px 0;
}

footer .footer-content div.social_media {}

footer .footer-content div.social_media ul:first-of-type {}

footer .footer-content div.social_media ul:first-of-type li a {
  color: #fff;
}

footer .footer-content div.social_media ul.social_media {
  float: right;
  border: none;
}

footer .footer-content .site-map {
  border-bottom: 1px solid #474848;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  width: 100%;
  margin-bottom: 40px;
}

footer .footer-content .site-map ul.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  /* border-bottom: 1px solid #474848; */
  padding-bottom: 20px;
  width: calc(100% - 200px);
}

footer .footer-content .site-map ul.footer-nav li {
  width: 33.3333%;
  float: left;
  margin: 0 0;
  line-height: 32px;
  letter-spacing: 1px;
}

footer .footer-content .site-map ul.footer-nav li a {
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

footer .footer-content .site-map ul.footer-nav li a:hover {}

footer .footer-content .site-map a.footer-btn {
  padding: 9px 30px;
  color: #01a2e9;
  border: 2px solid #F2F2F2;
  font-weight: 600;
  text-decoration: none;
  display: block;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}

footer .footer-content .site-map a.footer-btn:hover {
  color: #fff;
  background: #01a2e9;
  border-color: #01a2e9;
}

.white-page {
  background: #fff;
}

.team_strip {
  width: 100%;
  display: flex
}

.team_strip>figure {
  max-width: 300px;
  width: 100%;
}

.team_strip>div {
  margin-left: 50px;
  flex-direction: column;
  width: calc(100% - 350px);
}

@media screen and (max-width: 960px) {
  .team_strip {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .team_strip>div {
    width: 100%;
  }
}

.index-reviews .content {
  text-align: center;
}

.index-reviews .content h5 {
  margin: 0 0 35px;
}

.index-reviews .content h5.second-title {
  margin: 40px 0 30px;
}

.index-reviews .content img.quote-img {
  width: 75px;
  margin: 0 0 15px;
}

.index-reviews .content a.button {
  max-width: 250px;
  margin: 0 auto;
  display: block;
  padding: 9px;
}

.index-reviews .content .eapps-all-in-one-reviews-6e6cb7c4-3e10-4b7b-b2eb-36a37a03ad18-custom-css-hook .kfcIfb {
  right: -25px;
}

.award-holder {
  /* border-top: 1px solid #474848; */
  padding: 10px 0;
  width: 100%;
  display: block;
}

.award-holder img {
  width: 150px;
  margin: 0 20px 0 0;
}

.white-background {
  background: #fff;
}

.cs-strip {
  padding-top: 0;
  padding-bottom: 0;
}

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

.condition-service {
  width: calc(33.33% - 30px);
  margin: 0 15px 40px;
  display: flex;
  flex-wrap: wrap;
}

.condition-service img {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 0 0;
  max-width: 100%;
  max-height: 100%;
  width: 60px;
  height: 60px;
}

.condition-service .cs-content {
  width: calc(100% - 80px);
  margin-left: 20px;
}

.condition-service .cs-content h3 {
  font-size: .45rem;
}

.condition-service .cs-content a.superbutton {
  width: auto;
  padding: 13px 30px 11px;
}

/* ---------- Team Filter ---------- */
.team-filter .content {
  text-align: center;
}

.team-filter .content p {
  margin: 32px 0 0;
}

.blog-page p strong,
.conditions-page p strong,
.team-filter .content p strong {
  color: #00A2E9;
  font-size: .4rem;
}

.team-filter .content .booking-slection {
  align-items: center;
  justify-content: center;
}

.team-filter .content .booking-slection .booking-segway,
.team-filter .content .booking-slection label {
  text-transform: uppercase;
}

.team-filter .content .booking-slection select {
  background: url(/assets/images/layout/arrow-down.svg) right center no-repeat #f8f8f8;
  background-size: auto 20px;
  background-position: 97% center;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #656767;
  border: 2px solid #d6d6d6;
  padding: 7px 75px 7px 10px;
  border-radius: 5px;
  width: auto;
  cursor: pointer;
  margin: 0 10px;
}

.team-filter .content .booking-slection select:hover {
  border-color: #00A2E9;
}

/* For IE10 */
.team-filter .content .booking-slection select::-ms-expand {
  display: none;
}

/* ---------- Team Strip & List ---------- */
.team-strip {
  background: #fff;
}

.team-strip .content .circle-team-list .box {
  width: calc(25% - 20px);
  margin: 0 10px 25px;
  padding: 0;
}

.team-strip .content .circle-team-list .box a.headshot {
  width: 175px;
  height: 175px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #212222;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.team-strip .content .circle-team-list .box a.headshot:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.team-strip .content .circle-team-list .box .therapist-content .title {
  margin: 0;
  font-size: 20px;
}

.team-strip .content .circle-team-list .box .therapist-content .job_title {
  margin: 0 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: #8a8a8a;
}

.team-strip .content .circle-team-list .box .therapist-content a.book-btn {
  font-weight: 600;
  text-transform: uppercase;
}

.team-strip .content .circle-team-list .box .therapist-content a.book-btn:hover {
  text-decoration: none;
}

.team-member-strip .content .half-width {
  width: 400px;
}

.team-member-strip .content .half-width:first-of-type {
  width: calc(100% - 400px);
  margin: 0 0 0 0;
}

.team-member-strip .team_member_photo {
  width: 400px;
  height: 500px;
  /* border: 2px solid #212222; */
  /* border-radius: 50%; */
  margin: 0;
  overflow: hidden;
}

a.back-btn {
  position: relative;
  padding: 0 0 0 20px;
  color: #656767;
  margin: 0 0 20px;
  display: block;
  width: 100%;
}

a.back-btn:hover {
  text-decoration: none;
  color: #01a2e9;
}

a.back-btn::after {
  content: '';
  background: url(/assets/images/layout/chevron-back.svg) left center no-repeat;
  background-size: auto 100%;
  height: 14px;
  width: 20px;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}

.box_list .service-content p {
  line-height: 1.3;
}

.super-inner .content {
  display: flex;
  flex-wrap: wrap;
}

.super-inner .split-content {
  width: 300px;
}

.super-inner .split-content:first-of-type {
  width: calc(100% - 400px);
  margin: 0 100px 0 0;
}

.super-inner .split-content .image-wrapper {
  width: 250px;
  height: 250px;
  margin: 0 auto 20px;
  border: 2px solid #212222;
  border-radius: 50%;
}

.con-treatment {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 0;
}

.con-treatment .condition-service {
  display: block;
  text-align: center;
  margin: 0 15px 25px;
}

.con-treatment .condition-service a {
  text-decoration: none;
}

.con-treatment .condition-service a.image-wrapper {
  width: 100px;
  height: 100px;
  border: 2px solid #212222;
  border-radius: 50%;
  padding: 20px;
  display: block;
  margin: 0 auto 16px;
}

.con-treatment .condition-service img {}

.con-treatment .condition-service .cs-content {
  width: 100%;
  margin: 0;
}

.con-treatment .condition-service .cs-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
}

.con-treatment .condition-service .cs-content h3:hover {
  text-decoration: none;
  color: #01a2e9;
}

.shop-section-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.shop-section-list .box {
  width: calc(33.3333% - 20px);
  margin: 0 10px 32px;
  text-align: center;
}

.shop-section-list .box a.image-wrapper {
  width: 125px;
  height: 125px;
  border: 2px solid #212222;
  padding: 20px;
  margin: 0 auto 16px;
  display: block;
  border-radius: 50%;
}

.shop-section-list .box a.image-wrapper:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.shop-section-list .box a.image-wrapper img {
  width: 100%;
  height: auto;
}

.shop-section-list .box a.h5 {
  text-decoration: none;
}

.shop-section-list .box a.h5:hover {
  color: #01a2e9;
}

.category-page form#sort_form {
  position: relative;
  /* padding-top: 40px; */
}

.category-page form#sort_form label {
  text-transform: uppercase;
  /* position: absolute;
  right: 280px;
  top: 7px; */
}

.category-page form#sort_form select {
  background: url(/assets/images/layout/arrow-down.svg) right center no-repeat #f8f8f8;
  background-size: auto 20px;
  background-position: 97% center;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #656767;
  border: 2px solid #d6d6d6;
  padding: 7px 50px 7px 10px;
  border-radius: 5px;
  width: auto;
  cursor: pointer;
  margin: 0 10px;
  /* position: absolute;
  right: 0;
  top: 0; */
}

.category-page form#sort_form select:hover {
  border-color: #00A2E9;
}

/* For IE10 */
.category-page form#sort_form select::-ms-expand {
  display: none;
}

.half-btns {
  margin: 5px 0 0;
  display: flex;
  justify-content: space-between;
}

.half-btns a.button {
  width: calc(50% - 5px);
}

.right-content {
  width: 300px;
  float: right;
  margin: 0 0 50px 50px;
}

.right-content .image-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0;
}

.right-content .image-wrapper img {
  width: 100%;
  height: auto;
}

footer,
.index-reviews {
  overflow: hidden;
}

.conditions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.conditions-list a {
  width: calc(20% - 13px);
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

.conditions-list a figure {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.conditions-list a figure img {
  width: 100%;
  height: auto;
}

.conditions-list a h2 {
  font-size: 14px;
  line-height: 1.2;
  color: #212222;
  text-transform: uppercase;
}

.conditions-list a:hover h2 {
  color: #01a2e9;
}

@media screen and (max-width: 1300px) {
  .jqueryslidemenu ul li a {
    padding: 11px 25px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1200px) {
  footer .footer-content .flex-list ul li {
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 0;
  }

  .jqueryslidemenu a.logo img {
    width: 225px;
  }

  .jqueryslidemenu ul li a {
    padding: 11px 15px;
    font-size: 13px;
  }
}

@media screen and (max-width: 1060px) {
  footer .footer-content .flex-list {
    width: 100%;
  }

  footer .footer-content .flex-list ul li {
    font-size: 14px;
    line-height: 32px;
  }
}

@media screen and (max-width: 1000px) {
  .jqueryslidemenu a.logo img {
    width: 200px;
  }

  .jqueryslidemenu ul li a {
    padding: 11px 10px;
    font-size: 13px;
  }
}

@media screen and (max-width: 960px) {
  footer .footer-content .flex-list {
    display: block;
  }

  footer .footer-content .flex-list ul {
    width: 100%;
    float: none;
  }

  footer .footer-content .site-map ul.footer-nav li {
    width: 50%;
  }

  .condition-service {
    width: calc(50% - 30px);
  }

  .team-strip .content .circle-team-list .box {
    width: calc(33.3333% - 20px);
  }

  .team-filter .content .booking-slection select {
    margin: 10px;
  }

  .team-strip .content .circle-team-list .box {
    width: calc(50% - 20px);
  }

  .super-inner,
  div.team-member-strip {
    padding-top: 125px !important;
    position: relative;
  }

  .super-inner a.back-btn,
  div.team-member-strip a.back-btn {
    position: absolute;
    top: 90px;
    width: auto;
  }

  .team-member-strip .content .half-width:first-of-type,
  .team-member-strip .content .half-width {
    width: 100%;
  }

  .right-content {
    float: none;
    margin: 0 0 50px;
  }

  .super-inner .split-content:first-of-type,
  .super-inner .split-content {
    width: 100%;
  }

  .super-inner .split-content:first-of-type {
    margin: 50px 0 0 0;
  }

  .super-inner .content {
    flex-direction: column-reverse;
  }

  footer .footer-content {
    text-align: center;
  }

  footer .footer-content .flex-list ul:first-of-type {
    margin-bottom: 24px;
  }

  .conditions-list a {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 800px) {
  .team_strip {
    display: block;
  }

  .team_strip figure {
    text-align: center;
    margin: 0 0 15px;
  }

  .team_strip>div {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .condition-service {
    width: 100%;
  }

  .team-strip .content .circle-team-list .box {
    width: calc(50% - 20px);
  }

  footer .footer-content .site-map ul.footer-nav,
  footer .footer-content .site-map ul.footer-nav li {
    width: 100%;
  }

  footer .footer-content .site-map {
    text-align: center;
    justify-content: center;
  }

  footer .footer-content {
    text-align: center;
  }

  .strip_welcom {
    background: url(/assets/images/layout/wave-pattern.png) center center no-repeat #1e1f1f;
    background-size: 100% auto;
  }

  .box_list .box .title a {
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 22px;
  }

  .shop-section-list .box {
    width: calc(50% - 20px);
  }

  .half-btns a.button {
    width: 100%;
    margin: 5px 0;
  }

  .half-btns {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 650px) {
  .category-page form#sort_form label {
    width: 100%;
    display: block;
    margin: 0 0 8px;
  }

  .category-page form#sort_form select {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 500px) {
  footer .footer-content .site-map ul.footer-nav li {
    width: 100%;
  }

  .team-strip .content .circle-team-list .box {
    width: 100%;
    margin: 0 0 25px;
  }

  .shop-section-list .box {
    width: 100%;
    margin: 0 0 32px;
  }

  .conditions-list a h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {

  .super-inner .split-content .image-wrapper,
  .team-member-strip .team_member_photo {
    width: 200px;
    height: 200px;
  }

  .right-content {
    width: 200px;
  }
}

.editable_content figure iframe {
  max-width: 500px;
  aspect-ratio: 500 / 281;
  width: 100% !important;
  height: auto !important;
}

/* ----- New Location Page ----- */
.loc-intro {
  padding: 30px 30px 100px;
}

.loc-intro::before {
  content: '';
  width: 100%;
  height: 400px;
  background: url(/assets/images/layout/image-loc-intro.jpg) center center no-repeat;
  background-size: cover;
  display: block;
}

.loc-intro .content {
  padding-top: 30px;
}

.loc-intro h1,
.loc-intro h4 {
  margin: 0;
  line-height: 1.2;
}

.loc-intro a.superbutton {
  margin: 24px 0 0 auto;
  padding: 15px 10px 14px;
  display: inline-block;
  width: 210px;
  margin-left: calc(100% - 210px);
}

.loc-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.loc-card {
  width: calc(33.3333% - 17px);
}

.loc-card .img-wrapper {
  margin: 0 0 16px;
  display: block;
}

.loc-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.loc-card h3 a:hover {
  color: #01a2e9;
}

ul.loc-info {
  list-style: none;
}

ul.loc-info li {
  display: flex;
  gap: 8px;
}

ul.loc-info li i {
  color: #01a2e9;
  margin: 5px 0 0;
}

ul.loc-info li a {
  color: #656767;
  text-decoration: none;
}

ul.loc-info li a:hover {
  color: #01a2e9;
}

.loc-exp .column {
  align-content: center;
}

.loc-book-cta {
  background: url(/assets/images/layout/image-location-book.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding-block: 200px;
}

.loc-book-cta::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #202222;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .65;
}

.loc-book-cta :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, ul li, ol li, p, pre) {
  color: white;
}

.loc-book-cta .content {
  max-width: 768px;
  position: relative;
  z-index: 2;
}

.loc-book-cta a.button {
  width: auto;
  display: inline-block;
  padding: 15px 30px 14px;
}

.loc-book-cta a.button:hover {
  background: white;
  color: #202222;
  border-color: white;
}

.loc-form .content h2#form {
  color: #202222;
  margin: 0 0 32px;
  padding: 0;
}

.loc-form .content .form_holder input,
.loc-form .content .form_holder textarea,
.loc-form .content .form_holder select {
  padding: 5px 8px 5px 8px;
}

.loc-form .content .form_holder button.superbutton {
  width: 180px;
  margin-left: calc(100% - 180px);
}

.loc-innner-intro {
  padding-top: 400px;
  padding-bottom: 50px;
  position: relative;
}

.loc-innner-intro iframe {
  width: 100%;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
}

.loc-innner-intro h1 {
  margin: 0;
}

.loc-innner-intro .info {
  margin-top: 32px;
  display: flex;
  gap: 24px;
}

.loc-innner-intro .info ul {
  width: calc(50% - 12px);
  margin: 0;
  list-style: none;
}

.loc-innner-intro .info ul li {
  margin-bottom: 16px;
  color: #656767;
}

.loc-innner-intro .info ul li a {
  color: #656767;
  text-decoration: none;
}

.loc-innner-intro .info ul li a:hover {
  color: #01a2e9;
}

.loc-innner-intro .info ul li pre {
  background: none;
  color: #656767;
}

.loc-innner-intro .info ul h6 {
  font-size: 20px;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
  color: #212222;
  font-weight: 700;
}

.loc-photos {
  padding: 0 30px 30px;
}

.loc-photos .swipebox_full {
  display: flex;
  gap: 30px;
  margin: 0;
}

.loc-photos .swipebox_full a {
  width: calc(25% - 22.5px);
  margin: 0;
}

@media screen and (max-width: 960px) {
  .loc-intro {
    padding-bottom: 50px;
  }

  .loc-intro::before {
    height: 300px;
  }

  .loc-card {
    width: calc(50% - 12px);
  }

  div.loc-book-cta {
    padding-block: 150px;
  }

  div.content_container.loc-innner-intro {
    padding: 350px 30px 50px;
  }

  .loc-innner-intro iframe {
    height: 300px;
  }

  .loc-innner-intro .info {
    gap: 0;
    flex-wrap: wrap;
  }

  .loc-innner-intro .info ul {
    width: 100%;
  }

  div.content_container.loc-photos {
    padding: 0 30px 30px;
  }

  .loc-photos .swipebox_full a {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 600px) {
  .loc-card {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .loc-photos .swipebox_full a {
    width: 100%;
  }
}

@media screen and (max-width: 1550px) {
  .jqueryslidemenu ul li a {
    letter-spacing: 0;
    padding: 11px 20px;
  }
}

@media screen and (max-width: 1260px) {
  .jqueryslidemenu ul li a {
    padding: 11px 7px;
  }
  .jqueryslidemenu ul li.location-btn{
    margin-left: 16px;
  }
}

@media screen and (max-width: 1060px) {
  .jqueryslidemenu a.logo img {
    width: 175px;
  }
}

@media screen and (max-width: 1000px) {
  .jqueryslidemenu a.logo img {
    width: 175px;
  }

  .jqueryslidemenu ul li.location-btn {
    margin-left: 10px;
  }
}

input[name="middle_name"] {
  position: absolute;
  left: -9999px;
}

/* ---------- Contact Landing Page ---------- */
.banner-container.contact-banner {
  height: auto !important;
  aspect-ratio: 2 / .75;
  min-height: 0;
}

.banner-container.contact-banner ul.ms-banner::after {
  display: none;
}

.banner-container.contact-banner ul.ms-banner li::after {
  content: '';
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.banner-container.contact-banner ul.ms-banner li .img-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / .75;
  overflow: hidden;
}

.banner-container.contact-banner ul.ms-banner li .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-container.contact-banner ul.ms-banner li .banner-details {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.banner-container.contact-banner ul.ms-banner li .banner-details .banner-content {
  max-width: 768px;
}

.banner-container.contact-banner ul.ms-banner li .banner-details .banner-content .title {
  font-size: 56px;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .banner-container.contact-banner {
    aspect-ratio: unset;
    background: #01a2e9;
    padding-top: 54px;
  }

  .ms-banner,
  .banner-container.contact-banner ul.ms-banner li {
    position: relative;
  }

  .banner-container.contact-banner ul.ms-banner li {
    display: flex;
    flex-direction: column;
  }

  .banner-container.contact-banner ul.ms-banner li::after {
    display: none;
  }

  .banner-container.contact-banner ul.ms-banner li .banner-details {
    position: initial;
    transform: none;
    height: auto;
    padding: 40px 30px;
  }

  .banner-container.contact-banner ul.ms-banner li .banner-details a {
    background: #1e1f1f;
  }

  .banner-container.contact-banner ul.ms-banner li .banner-details a:hover {
    background: white;
    color: #1e1f1f;
  }
}

.loc-info-inner {
  padding: 100px 30px;
}

.loc-info-inner .map-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.loc-info-inner .map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.loc-info-inner .content .content-wrapper {
  width: 50%;
  padding-right: 64px;
}

.loc-info-inner .content .content-wrapper .info {
  gap: 0;
  flex-direction: column;
  margin: 16px 0 0;
  border-bottom: 2px solid hsla(0 0% 0% / .1);
}

.loc-info-inner .content .content-wrapper .info ul {
  width: 100%;
}

.loc-info-inner .content .content-wrapper .info ul li {
  border-top: 2px solid hsla(0 0% 0% / .1);
  padding: 16px 8px;
  margin: 0;
}

@media screen and (max-width: 960px) {
  .loc-info-inner {
    padding: 350px 30px 50px;
  }

  .loc-info-inner .map-wrapper {
    width: 100%;
    height: 300px;
  }

  .loc-info-inner .content .content-wrapper {
    width: 100%;
    padding: 0;
  }
}

.cont-btn-list {
  background: #1e1f1f;
  padding: 50px 30px;
}

.cont-btn-list .content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cont-btn-list .content a.superbutton {
  width: calc(25% - calc(16px * 3 / 2));
  background: #00a2e8;
  border-color: #00a2e8;
  color: white;
  margin: 0;
}

.cont-btn-list .content a.superbutton:hover {
  background: white;
  color: #1e1f1f;
  border-color: white;
}

@media screen and (max-width: 960px) {
  .cont-btn-list {
    padding: 50px 30px !important;
  }

  .cont-btn-list .content a.superbutton {
    width: 100%;
  }

  .banner-container.contact-banner ul.ms-banner li .banner-details .banner-content .title {
    font-size: 30px;
    line-height: 1;
  }
}

.content_container.loc-list-strip {
  padding-block: 0;
}

.myo-graphic-strip {
  background: white;
}

.myo-graphic-strip .content .editable_content .align-center {
  margin: auto;
}

.animate.aniFromBottom {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all .5s ease-in-out;
}

.animate.aniFromBottom.show {
  transform: translate(0, 0);
  opacity: 1;
}

.cond-pg .content .condition-nav-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 16px;
  margin: 0 0 24px;
  z-index: 999;
  padding: 0 0 12px;
  transition: all .35s ease-in-out;
  border-bottom: 1px solid rgba(84, 84, 84, 0.2);
}

.cond-pg .content .condition-nav-bar.header-bg {
  padding: 12px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 0 16px hsla(0 0% 0% / .16);
  border-color: white;
}

.cond-pg .content .condition-nav-bar a.back-btn {
  width: auto;
  margin: 0;
}

.cond-pg .content .condition-nav-bar a.superbutton {
  width: auto;
  padding: 11px 36px 9px;
}

.cond-pg-list {
  background: white;
}

.cond-pg-list .content .con-treatment .condition-service {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cond-pg-list .content .con-treatment .condition-service a.image-wrapper {
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  margin: 0;
}

.cond-pg-list .content .con-treatment .condition-service .cs-content {
  width: calc(100% - 72px);
  text-align: left;
}

.cond-pg-list .content .con-treatment .condition-service .cs-content a {
  text-decoration: none;
}

.cond-pg-list .content .con-treatment .condition-service .cs-content a h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: #212222;
  text-decoration: none;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 3px;
  margin: 0;
}

.cond-pg-list .content .con-treatment .condition-service .cs-content a:hover h3 {
  color: #01a2e9;
}

.content_container.loc-list-strip {
  padding-block: 80px
}

.content_container.loc-exp {
  background: white;
}

.loc-card .button {
  margin-top: 12px;
}

@media screen and (max-width: 1000px) {
  .con-treatment {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .cond-pg-list .content .con-treatment .condition-service {
    width: calc(50% - 8px);
    margin: 0;
  }
}

@media screen and (max-width: 960px) {
  .content_container.loc-list-strip {
    padding-block: 30px
  }
}

@media screen and (max-width: 680px) {
  .cond-pg-list .content .con-treatment .condition-service {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .cond-pg-list .content .con-treatment .condition-service {
    flex-direction: column;
    align-items: flex-start;
  }

  .cond-pg-list .content .con-treatment .condition-service .cs-content {
    width: 100%;
  }
}

/* ----- Grey Background ----- */
.light {
  background: var(--light);
}

/* ----- Dark / Colour Background ----- */
.dark {
  background: var(--dark);
}

.medium {
  background: var(--medium);
}

.colour {
  background: var(--main);
}

.instructor-classes-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.instructor-classes-section h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #212222;
  font-size: 2em;
}

.instructor-classes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.instructor-class-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.2s ease;
}

.instructor-class-card:last-child {
  border-bottom: none;
}

.instructor-class-card:hover {
  background: #fafafa;
}

.class-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.class-card-time {
  text-align: center;
  min-width: 80px;
}

.class-card-time-hour {
  font-size: 1.1em;
  font-weight: 600;
  color: #212222;
  display: block;
}

.class-card-duration {
  font-size: 0.85em;
  color: #666;
  display: block;
  margin-top: 2px;
}

.class-card-instructor-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.class-card-instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-card-info-wrapper {
  flex: 1;
}

.class-card-title h3 {
  margin: 0 0 5px 0;
  font-size: 1.15em;
  line-height: 1.3;
  color: #212222;
  font-weight: 600;
}

.class-card-title h3 a {
  color: #212222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.class-card-title h3 a:hover {
  color: #00A2E7;
}

.class-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}

.class-card-meta-separator {
  color: #ccc;
  margin: 0 3px;
}

.class-card-location,
.class-card-service {
  color: #666;
}

.class-card-location a {
  color: #666;
  text-decoration: none;
}

.class-card-location a:hover {
  color: #00A2E7;
}

.class-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 200px;
}

.class-card-toggle {
  background: none;
  border: none;
  color: #00A2E7;
  font-size: 0.9em;
  cursor: pointer;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.class-card-toggle:hover {
  opacity: 0.8;
}

.class-card-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.8em;
}

.class-card-toggle.active i {
  transform: rotate(180deg);
}

.class-card-description {
  display: none;
  padding: 15px 30px;
  background: #f8f9fa;
  animation: slideDown 0.3s ease;
}

.class-card-description.show {
  display: block;
}

.class-card-description p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95em;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 500px;
  }
}

.class-card-status {
  font-size: 0.9em;
  color: #666;
  font-weight: 500;
}

.class-card-status.finished {
  color: #999;
}

.class-card-status.spaces-left {
  color: #666;
  font-size: 0.85em;
}

.class-card-button {
  padding: 10px 30px;
  background: #fff;
  color: #212222;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 140px;
}

.class-card-button:hover {
  background: #00A2E7;
  color: #fff;
  border-color: #00A2E7;
}

.class-card-button.finished {
  background: #f0f0f0;
  color: #999;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

.class-card-button.finished:hover {
  background: #f0f0f0;
  color: #999;
  border-color: #e0e0e0;
}

.class-card-price {
  font-size: 1.1em;
  font-weight: 600;
  color: #212222;
  margin-bottom: 5px;
}

.view-all-classes-wrapper {
  text-align: center;
  margin-top: 40px;
}

.view-all-classes-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #00A2E7;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.3s ease;
}

.view-all-classes-btn:hover {
  background: #212222;
  color: #fff;
}

@media (max-width: 768px) {
  .instructor-classes-list {
    border-radius: 0;
  }

  .instructor-class-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }

  .class-card-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .class-card-time {
    text-align: left;
  }

  .class-card-right {
    width: 100%;
    align-items: stretch;
  }

  .class-card-button {
    width: 100%;
  }
}

/* ---- Classes Toggle Details Styles ---- */
.class-card-toggle,
.service-class-toggle {
  background: none;
  border: none;
  color: #00A2E7;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.class-card-toggle:hover,
.service-class-toggle:hover {
  color: #0088c7;
}

.class-card-toggle svg,
.service-class-toggle svg {
  transition: transform 0.3s ease;
}

.class-card-toggle.active svg,
.service-class-toggle.active svg {
  transform: rotate(180deg);
}

.class-card-description,
.service-class-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  background: #ffffff;
  border-left: 3px solid #00A2E7;
  margin: 0;
}

.class-card-description.show,
.service-class-description.show {
  max-height: 500px;
  padding: 20px 20px 20px 25px;
  opacity: 1;
}

.class-card-description p,
.service-class-description p {
  margin: 0;
  color: #212222;
  font-size: 15px;
  line-height: 1.6;
}

/* Instructor Classes Section Styles */
.instructor-classes-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.instructor-classes-section h2 {
  margin-bottom: 30px;
  color: #212222;
}

.instructor-classes-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.instructor-class-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.instructor-class-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.instructor-class-left,
.class-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.class-card-instructor-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.class-card-instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-card-info-wrapper {
  flex: 1;
}

.class-card-title h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.class-card-title h3 a {
  color: #212222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.class-card-title h3 a:hover {
  color: #00A2E7;
}

.class-card-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.class-card-meta a {
  color: #00A2E7;
  text-decoration: none;
}

.class-card-meta a:hover {
  text-decoration: underline;
}

.class-card-meta-separator,
.service-class-meta-separator {
  color: #ccc;
  margin: 0 4px;
}

.class-card-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.class-card-price {
  font-size: 24px;
  font-weight: 700;
  color: #212222;
}

.class-card-button {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #00A2E7;
  color: #00A2E7;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.class-card-button:hover {
  background: #00A2E7;
  color: #ffffff;
}

.class-card-status {
  display: inline-block;
  padding: 6px 16px;
  background: #f0f0f0;
  color: #666;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.view-all-classes-wrapper {
  text-align: center;
  margin-top: 40px;
}

.view-all-classes-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #00A2E7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.view-all-classes-btn:hover {
  background: #0088c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 162, 231, 0.3);
}

@media (max-width: 768px) {
  .instructor-class-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .instructor-class-left,
  .class-card-left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .class-card-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 15px;
  }

  .class-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .class-card-meta-separator,
  .service-class-meta-separator {
    display: none;
  }
}
.team-filter.classes-page .content{
  text-align: unset;
}
.team-filter.classes-page .content .booking-slection form{
  display: flex; 
  gap: 20px; 
  align-items: center; 
  flex-wrap: wrap;
  width:100%;
}
.team-filter.classes-page .content .booking-slection{
  padding: 0;
  background: none;
}
.team-filter.classes-page .content .booking-slection select{
  margin: 0;
}
.team-filter.classes-page .content .booking-slection a.superbutton{
    margin-top: 21px;
}
@media screen and (max-width: 1080px){
  .box_list .box {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 960px){
  .team-filter.classes-page .content .booking-slection form{
    flex-direction: column;
  }
  .team-filter.classes-page .content .booking-slection form > div{
    width: 100%;
  }
  .team-filter.classes-page .content .booking-slection select{
    width: 100%;
  }
  .team-filter.classes-page .content .booking-slection a.superbutton{
      margin-top: 0;
  }
}
@media screen and (max-width: 800px){
  .box_list .box {
    width: 100%;
  }
}