@charset "utf-8";
/* 
	layout.less
	Project: Oral Health
*/
/*------ imports ------*/
/* 
	typography.less
	Project: Oral Health
*/
/*------ imports ------*/
/* 
	definitions.less
	Project: Oral Health
*/
@font-face {
  font-family: 'Seravek';
  src: url('fonts/Seravek.eot');
  src: url('fonts/Seravek.eot?#iefix') format('embedded-opentype'), url('fonts/Seravek.woff') format('woff'), url('fonts/Seravek.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Seravek';
  src: url('fonts/Seravek-Bold.eot');
  src: url('fonts/Seravek-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/Seravek-Bold.woff') format('woff'), url('fonts/Seravek-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
/* 
	mixins.less
	Project: Oral Health
*/
/****** GENERAL ******/
.full {
  width: 100%;
}
.fluid-max {
  max-width: 1220px;
  padding: 0 20px;
  display: block;
  margin: 0 auto;
  position: relative;
}
.fluid-min {
  max-width: 960px;
  padding: 0 20px;
  display: block;
  margin: auto;
  position: relative;
}
.content-wrap {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 40px;
}
.content-wrap.wide {
  max-width: 1680px;
}
.text-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}
@media all and (max-width:768px) {
  .content-wrap,
  .text-wrap {
    padding: 0 30px;
  }
}
.f_right {
  float: right;
  display: block;
}
.f_left {
  float: left;
  display: block;
}
.clear {
  display: block;
  clear: both;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.nomargin {
  margin: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.noborder {
  border: 0 !important;
}
.nobg {
  background: none !important;
}
.hidden {
  display: none !important;
}
.text-attn {
  color: #b0d97d !important;
}
.text-alert {
  color: #cf0000 !important;
}
.text-success {
  color: #8ac837 !important;
}
.dash {
  display: inline-block;
  margin: 0 5px;
  color: #999999;
}
.touch .parallax {
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: none;
  background-position: center;
}
.no-touch .parallax {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@-moz-document url-prefix() {
  .touch .parallax {
    background-attachment: fixed;
    background-size: cover;
  }
}
/****** Tables ******/
.v-top {
  vertical-align: top;
}
.v-middle {
  vertical-align: middle;
}
.v-bottom {
  vertical-align: bottom;
}
.vh-middle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.d-table {
  display: table;
  table-layout: fixed;
}
.d-row {
  display: table-row;
}
.d-cell {
  display: table-cell;
}
@media all and (max-width:480px) {
  .d-row,
  .d-cell {
    display: block;
    padding: 0;
  }
  .d-row {
    padding-bottom: 10px;
  }
}
/****** Fonts ******/
.thicc {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
}
.thicc.bold {
  font-weight: bold;
}
.merri {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
}
.merri.light {
  font-weight: 300;
}
.merri.bold {
  font-weight: 700;
}
/****** MIXINS ******/
/****** BUTTONS ******/
.button,
a.button,
button.button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  padding: 30px 45px;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  -moz-box-shadow: 0 0 0 1px #8ac837 inset !important;
  -webkit-box-shadow: 0 0 0 1px #8ac837 inset !important;
  box-shadow: 0 0 0 1px #8ac837 inset !important;
  border: none;
  background: rgba(11, 11, 11, 0.25);
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button .fa,
a.button .fa,
button.button .fa {
  margin-right: 10px;
  font-size: 20px;
  line-height: 14px;
  color: #ffffff;
}
.button:before,
a.button:before,
button.button:before,
.button:after,
a.button:after,
button.button:after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  width: 0;
  height: 0;
}
.button:before,
a.button:before,
button.button:before {
  top: 0;
  left: 0;
}
.button::after,
a.button::after,
button.button::after {
  top: 0;
  left: 0;
}
.button:hover,
a.button:hover,
button.button:hover,
.button.active,
a.button.active,
button.button.active {
  color: #8ac837;
}
.button:hover .fa,
a.button:hover .fa,
button.button:hover .fa,
.button.active .fa,
a.button.active .fa,
button.button.active .fa {
  color: inherit;
}
.button:hover:before,
a.button:hover:before,
button.button:hover:before,
.button:hover:after,
a.button:hover:after,
button.button:hover:after,
.button.active:before,
a.button.active:before,
button.button.active:before,
.button.active:after,
a.button.active:after,
button.button.active:after {
  width: 100%;
  height: 100%;
}
.button:hover:before,
a.button:hover:before,
button.button:hover:before,
.button.active:before,
a.button.active:before,
button.button.active:before {
  border-top-color: #618c27;
  border-right-color: #618c27;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.button:hover:after,
a.button:hover:after,
button.button:hover:after,
.button.active:after,
a.button.active:after,
button.button.active:after {
  border-bottom-color: #618c27;
  border-left-color: #618c27;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}
.button[disabled],
a.button[disabled],
button.button[disabled] {
  cursor: auto;
}
.button.button-small {
  padding: 22px 30px;
  font-size: 18px;
}
.button.button-mini {
  padding: 16px 20px;
  font-size: 16px;
}
.button.button-mini .fa {
  margin-right: 5px;
  font-size: 16px;
}
.button.button-grey {
  border: 1px solid #666666;
  background: #666666;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.button.button-grey:hover,
.button.button-grey.active {
  color: #ffffff;
  border: 1px solid #8ac837;
  background: #8ac837;
}
.button.button-grey:hover:before,
.button.button-grey.active:before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}
.button.button-grey:hover:after,
.button.button-grey.active:after {
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;
}
.button.button-bold {
  font-weight: 900;
}
.button.button-inverse {
  border: 1px solid #8ac837;
  background: #8ac837;
}
.button.button-inverse:hover {
  color: #ffffff;
  background: #96ce4b;
}
.button.button-inverse:hover:before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}
.button.button-inverse:hover:after {
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;
}
.button.error {
  border: 1px solid #cf0000;
  background: #cf0000;
}
.button.error:hover {
  border: 1px solid #cf0000;
  background: #cf0000;
}
.button.error:hover:before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}
.button.error:hover:after {
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;
}
.button.button-disabled {
  color: #999999;
  background: #cccccc;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.button.button-disabled:hover {
  color: #999999;
  background: #cccccc;
}
.button.button-disabled:hover:before,
.button.button-disabled:hover:after {
  border: none !important;
}
@media all and (max-width:768px) {
  .button,
  a.button,
  button.button {
    padding: 22px 30px;
    font-size: 18px;
  }
  .button.button-small {
    padding: 18px 28px;
    font-size: 16px;
  }
}
/****** Shadows ******/
.panel-shadow {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.panel-shadow.top-shadow {
  height: 30px;
  background: url("../images/bg_panel_shadow_top.png") top center no-repeat;
}
.overlay {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.4);
}
.overlay .watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-height: 100%;
}
.overlay.solid {
  background: #666666;
}
.overlay.overlay-theme1 {
  background: rgba(59, 92, 14, 0.5);
}
.overlay.overlay-gradient {
  background: rgba(11, 11, 11, 0.4);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, rgba(59, 92, 14, 0.5), rgba(11, 11, 11, 0.4));
  /*Safari 5.1-6*/
  background: -o-linear-gradient(right, rgba(59, 92, 14, 0.5), rgba(11, 11, 11, 0.4));
  /*Opera 11.1-12*/
  background: -moz-linear-gradient(right, rgba(59, 92, 14, 0.5), rgba(11, 11, 11, 0.4));
  /*Fx 3.6-15*/
  background: linear-gradient(to right, rgba(59, 92, 14, 0.5), rgba(11, 11, 11, 0.4));
  /*Standard*/
}
/* ------ animations ------*/
[data-animate] {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
[data-animate].animated {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
@keyframes come-in-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    left: -40px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    left: 0px;
  }
}
@-moz-keyframes come-in-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    left: -40px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    left: 0px;
  }
}
@-webkit-keyframes come-in-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    left: -40px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    left: 0px;
  }
}
@keyframes come-in-bottom {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    bottom: -40px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    bottom: 0px;
  }
}
@-moz-keyframes come-in-bottom {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    bottom: -40px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    bottom: 0px;
  }
}
@-webkit-keyframes come-in-bottom {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    bottom: -40px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    bottom: 0px;
  }
}
@keyframes fly-up-right {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    top: -12px;
    right: 0px;
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    top: -60px;
    right: -65px;
  }
}
@-moz-keyframes fly-up-right {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    top: -12px;
    right: 0px;
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    top: -60px;
    right: -65px;
  }
}
@-webkit-keyframes fly-up-right {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    top: -12px;
    right: 0px;
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    top: -60px;
    right: -65px;
  }
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    margin-top: -10px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    margin-top: 10px;
  }
}
@-moz-keyframes scroll-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    margin-top: -10px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    margin-top: 10px;
  }
}
@-webkit-keyframes scroll-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    margin-top: -10px;
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    margin-top: 10px;
  }
}
@-webkit-keyframes bounce-right {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(10px);
  }
  60% {
    -webkit-transform: translateX(6px);
  }
}
@keyframes bounce-right {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(6px);
  }
}
.bounce-right {
  -webkit-animation-name: bounce-right;
  animation-name: bounce-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
/*------ CART ANIMATIONS ------*/
@-webkit-keyframes qty-enter {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}
@keyframes qty-enter {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}
@-webkit-keyframes qty-leave {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%);
  }
}
@keyframes qty-leave {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%);
  }
}
@-webkit-keyframes item-move-up-mobile {
  0% {
    padding-top: 70px;
  }
  100% {
    padding-top: 0px;
  }
}
@keyframes item-move-up-mobile {
  0% {
    padding-top: 70px;
  }
  100% {
    padding-top: 0px;
  }
}
@-webkit-keyframes item-move-up {
  0% {
    padding-top: 104px;
  }
  100% {
    padding-top: 0px;
  }
}
@keyframes item-move-up {
  0% {
    padding-top: 104px;
  }
  100% {
    padding-top: 0px;
  }
}
@-webkit-keyframes item-move-down-mobile {
  0% {
    padding-top: 0px;
  }
  100% {
    padding-top: 70px;
  }
}
@keyframes item-move-down-mobile {
  0% {
    padding-top: 0px;
  }
  100% {
    padding-top: 70px;
  }
}
@-webkit-keyframes item-move-down {
  0% {
    padding-top: 0px;
  }
  100% {
    padding-top: 104px;
  }
}
@keyframes item-move-down {
  0% {
    padding-top: 0px;
  }
  100% {
    padding-top: 104px;
  }
}
@-webkit-keyframes item-slide-out {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
  }
}
@keyframes item-slide-out {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
  }
}
@-webkit-keyframes item-slide-in {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
  }
}
@keyframes item-slide-in {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.6);
  }
  60% {
    -webkit-box-shadow: 0 0 0 10px rgba(214, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.6);
    box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.4);
  }
  60% {
    -moz-box-shadow: 0 0 0 10px rgba(214, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(214, 0, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
  }
}
/*------ global elements------*/
body {
  background: #eeeeee;
}
body,
td {
  font: 18px "Merriweather", "Georgia", serif;
  font-style: italic;
  font-weight: 300;
  color: #666666;
  line-height: 1.5;
  letter-spacing: 0px;
  -webkit-font-smoothing: antialiased;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
}
p {
  padding: 0 0 20px;
  margin: 0;
}
ul,
ol {
  padding: 0 0 20px;
  margin: 0 0 0 40px;
}
hr {
  border: 0;
  border-top: 1px solid #8ac837;
  width: 10%;
  max-width: 40px;
  height: 0px;
  background: #ffffff;
  padding: 0;
  margin: 30px 0;
}
hr.center {
  margin: 30px auto;
}
blockquote {
  position: relative;
  margin: 1.5em 0 1em;
  padding: .75em 1em .3em 1.2em;
  max-width: 70%;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #333333;
}
blockquote:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -90px;
  width: 127px;
  height: 114px;
  background: url("../images/bg_blockquote.png") top center no-repeat;
}
blockquote:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 150px;
  background: #8ac837;
}
@media all and (max-width:1440px) {
  blockquote {
    padding-left: 2.8em;
  }
  blockquote:before {
    left: -30px;
  }
}
@media all and (max-width:768px) {
  blockquote {
    margin: 1.5em 0;
    padding-left: 4.4em;
    max-width: 80%;
  }
  blockquote:before {
    left: -10px;
  }
  blockquote:after {
    left: 4.4em;
  }
}
@media all and (max-width:640px) {
  blockquote {
    padding-left: 1.5em;
  }
  blockquote:after {
    left: 1.5em;
  }
}
small {
  display: inline-block;
  font-size: .7em;
  font-weight: 300;
  color: #999999;
}
table {
  border-collapse: collapse;
  margin: 10px 0 30px;
}
table th {
  padding: 10px 20px;
  color: #ffffff;
  background-color: #666666;
}
table tr td {
  padding: 10px 20px;
  background: #e6e6e6;
}
table tr:nth-child(2n+1) td {
  background: #ffffff;
}
table label {
  display: none;
  margin: 0;
}
table.no-bg th {
  background: none;
}
table.no-bg tr:nth-child(2n+1) td {
  background: none;
}
@media all and (max-width:768px) {
  table:not(#receipt-email) {
    width: 100% !important;
  }
  table:not(#receipt-email) th {
    display: none;
  }
  table:not(#receipt-email) td {
    display: block;
    width: auto !important;
    text-align: left !important;
    border-bottom: 1px solid #cccccc;
  }
  table:not(#receipt-email) td:first-child {
    margin-top: 20px;
  }
  table:not(#receipt-email) td:last-child {
    border: none;
  }
  table:not(#receipt-email) label {
    display: inline-block;
    font-weight: 700;
  }
}
/*remove outlines from links and inputs*/
a,
a img,
input,
select,
textarea,
button,
.slick-slide,
.ui-accordion-header {
  outline: none;
}
img {
  border: 0;
}
input::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
  border: 0;
  outline: none;
}
/*------ typography ------*/
/* global links */
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
a {
  color: #8ac837;
}
a:hover,
a:active {
  color: #333333;
}
::selection {
  background: #b0d97d;
  color: #ffffff;
}
::-moz-selection {
  background: #b0d97d;
  color: #ffffff;
}
/* headings reset */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
  padding: 0;
  letter-spacing: -2px;
  line-height: 1.1;
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold {
  font-weight: bold;
}
h4,
h5 {
  letter-spacing: -1px;
}
h1 {
  font-size: 90px;
  color: #ffffff;
}
h2 {
  font-size: 68px;
  color: #8ac837;
  line-height: 1;
}
h3 {
  font-size: 46px;
  color: #8ac837;
}
h4 {
  font-size: 26px;
  color: #111111;
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 700;
  font-style: normal;
}
h4.light {
  font-weight: 300;
}
h4.bold {
  font-weight: 700;
}
h5 {
  font-size: 22px;
  color: #b0d97d;
}
h6 {
  font-size: 18px;
}
p + h2,
ul + h2,
ol + h2,
table + h2 {
  margin-top: 20px;
}
p + h3,
ul + h3,
ol + h3,
table + h3 {
  margin-top: 15px;
}
p + h4,
ul + h4,
ol + h4,
table + h4 {
  margin-top: 10px;
}
p + h5,
ul + h5,
ol + h5,
table + h5 {
  margin-top: 5px;
}
@media all and (max-width:1024px) {
  body,
  td {
    font-size: 16px;
  }
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 46px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 24px;
  }
  blockquote {
    font-size: 34px;
  }
}
@media all and (max-width:768px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
  blockquote {
    font-size: 28px;
  }
}
/* 
	forms.less
	Project: Oral Health
*/
form * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
fieldset {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 20px 40px 10px;
  font-size: 16px;
  border: 1px solid #cccccc;
}
fieldset legend {
  margin: 0;
  padding: 10px 20px;
  font-size: 28px;
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  color: #b0d97d;
}
fieldset legend.bold {
  font-weight: bold;
}
.form-row {
  position: relative;
  margin-bottom: 10px;
  /*--- Columns ---*/
}
.form-row div {
  width: 100%;
  float: left;
  display: block;
}
.form-row div.clearfix {
  float: none;
}
.form-row div:last-child:not(:only-child) {
  margin-right: 0;
  padding-right: 0;
}
.form-row .col {
  position: relative;
}
.form-row .span1 {
  width: 58px;
}
.form-row .span2 {
  width: 140px;
}
.form-row .span3 {
  width: 220px;
}
.form-row .span4 {
  width: 300px;
}
.form-row .span5 {
  width: 380px;
}
.form-row .span6 {
  width: 460px;
}
.form-row .span7 {
  width: 540px;
}
.form-row .half {
  width: 50%;
  padding-right: 30px;
}
.form-row .first {
  margin-left: 0;
}
.form-row .last {
  margin-right: 0;
}
.form-row .f_right {
  float: right;
  display: block;
}
.form-row label {
  display: inline-block;
  width: 100%;
  margin: 2px 20px 0 0;
  font-weight: 700;
  color: #666666;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-row label .label-content {
  width: 100%;
}
.form-row label small {
  font-size: 14px;
  line-height: 14px;
}
.form-row .user_reme small {
  font-weight: 700;
  color: #666666;
}
input,
select,
textarea,
button {
  font-family: "Merriweather", "Georgia", serif;
  font-style: italic;
}
.input {
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 14px 1em;
  width: 100%;
  font: 18px "Merriweather", "Georgia", serif;
  font-style: italic;
  font-weight: 300;
  background: #ffffff;
  border: 2px solid #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.input::-webkit-input-placeholder {
  color: #939498;
}
.input:-moz-placeholder {
  color: #939498;
}
.input::-moz-placeholder {
  color: #939498;
}
.input:-ms-input-placeholder {
  color: #939498;
}
.input.error {
  border-left: 2px solid #cf0000;
}
.input:focus,
.input:hover {
  border-bottom: 2px solid #b0d97d;
  /*&::-webkit-input-placeholder{color:@color-white;}
		&:-moz-placeholder{color:@color-white;}
		&::-moz-placeholder{color:@color-white;}
		&:-ms-input-placeholder{color:@color-white;}*/
}
.input:focus.error,
.input:hover.error {
  border-left: 2px solid #cf0000;
}
.input.input-short {
  width: 31.5%;
  margin-right: 2%;
}
.input.input-short.ph {
  width: 29%;
  margin-right: 0;
}
.input.input-short.last {
  margin-right: 0;
}
.input[type="date"] {
  padding: 12px 1em 11px;
}
.input[readonly]:hover,
.input[readonly]:focus {
  background-color: #a1a1a1;
}
.input.empty,
.input.error {
  color: #cf0000;
  background-color: #ffffff;
}
.select {
  line-height: 22px;
  background-image: url("https://cms.ranchgolfacademy.com/images/ui/select-arrow.png");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.select:hover,
.select:focus {
  background-image: url("https://cms.ranchgolfacademy.com/images/ui/select-arrow-white.png");
  background-position: 95% 50%;
  background-repeat: no-repeat;
}
.select:-ms-expand {
  display: none;
}
.textarea {
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  max-width: 100%;
  line-height: 1.3;
}
.req {
  color: #cf0000;
}
.submit {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  padding: 30px 45px;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  -moz-box-shadow: 0 0 0 1px #8ac837 inset !important;
  -webkit-box-shadow: 0 0 0 1px #8ac837 inset !important;
  box-shadow: 0 0 0 1px #8ac837 inset !important;
  border: none;
  background: rgba(11, 11, 11, 0.25);
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto;
  margin-right: 0;
}
.submit .fa {
  margin-right: 10px;
  font-size: 20px;
  line-height: 14px;
  color: #ffffff;
}
.submit:before,
.submit:after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  width: 0;
  height: 0;
}
.submit:before {
  top: 0;
  left: 0;
}
.submit::after {
  top: 0;
  left: 0;
}
.submit:hover,
.submit.active {
  color: #8ac837;
}
.submit:hover .fa,
.submit.active .fa {
  color: inherit;
}
.submit:hover:before,
.submit:hover:after,
.submit.active:before,
.submit.active:after {
  width: 100%;
  height: 100%;
}
.submit:hover:before,
.submit.active:before {
  border-top-color: #618c27;
  border-right-color: #618c27;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.submit:hover:after,
.submit.active:after {
  border-bottom-color: #618c27;
  border-left-color: #618c27;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}
.submit[disabled] {
  cursor: auto;
}
.submit .fa {
  margin-right: 10px;
  font-size: 20px;
  line-height: 14px;
  color: #ffffff;
}
.submit:before,
.submit:after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  width: 0;
  height: 0;
}
.submit:before {
  top: 0;
  left: 0;
}
.submit::after {
  top: 0;
  left: 0;
}
.submit:hover,
.submit.active {
  color: #8ac837;
}
.submit:hover .fa,
.submit.active .fa {
  color: inherit;
}
.submit:hover:before,
.submit:hover:after,
.submit.active:before,
.submit.active:after {
  width: 100%;
  height: 100%;
}
.submit:hover:before,
.submit.active:before {
  border-top-color: #618c27;
  border-right-color: #618c27;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.submit:hover:after,
.submit.active:after {
  border-bottom-color: #618c27;
  border-left-color: #618c27;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}
.submit[disabled] {
  cursor: auto;
}
.input.submit.submit-attach {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 100px;
}
.checkbox,
.radio {
  display: none;
}
.checkbox + label,
.radio + label {
  position: relative;
  display: inline-block;
  padding: 1px 10px 1px 32px;
  cursor: pointer;
  line-height: 22px;
}
.checkbox + label:before,
.radio + label:before {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 1px;
  font-family: FontAwesome;
  font-size: 16px;
  font-style: normal;
  line-height: 19px;
  text-indent: 0;
  text-align: center;
  color: #8ac837;
  border: 1px solid #cccccc;
  background: #ffffff;
}
.radio + label:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.checkbox + label:before,
.radio + label:before {
  content: " ";
}
.checkbox:checked + label:before {
  content: "\f00c";
}
.radio:checked + label:before {
  content: "\f111";
}
.checkbox:disabled + label:before,
.radio:disabled + label:before {
  background-color: #999999;
}
.user_reme {
  margin: 10px 0;
}
.user_reme label {
  width: auto;
}
.radio-list,
.checkbox-list {
  padding: 8px 0 8px 0;
}
.exp-month,
.exp-year {
  width: 48.5% !important;
}
@media all and (max-width:1366px) {
  .input.input-short.ph {
    width: 27%;
  }
}
@media all and (max-width:768px) {
  fieldset,
  label,
  .input,
  .select,
  .textarea {
    width: 100%;
    float: none;
  }
  fieldset {
    padding: 20px 30px 10px;
  }
  fieldset legend {
    font-size: 22px;
  }
  .input {
    font-size: 16px;
  }
  .form-row .half {
    width: 100%;
    padding-right: 0;
  }
  .form-row .col.half {
    margin-bottom: 10px;
  }
  .form-row div:last-child:not(:only-child) {
    margin-bottom: 0;
  }
}
@media all and (max-width:640px) {
  .exp-month,
  .exp-year {
    width: 47% !important;
  }
}
/*------ contact form special styles ------*/
#contact-form .form-row .half {
  padding-right: 10px;
}
#contact-form .form-row .half.last {
  padding-right: 0;
}
#contact-form .textarea {
  min-width: 100%;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  resize: none;
}
@media all and (max-width:768px) {
  #contact-form .form-row .half {
    margin-bottom: 0;
    padding-right: 0;
  }
}
/*------ checkout form special styles ------*/
#promo-form {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #b0d97d;
}
#promo-form .input {
  width: 240px;
  height: 64px;
}
#promo-form #promo-alert {
  margin-left: 20px;
  line-height: 64px;
}
/*------ form alerts (success/error) ------*/
.alert {
  display: block;
  margin: 0 0 40px 0;
}
.alert > div {
  display: inline-block;
  padding: 20px 40px 20px 30px;
  background: #ffffff;
  border-left: 2px solid #666666;
}
.alert > div p {
  padding: 0;
  color: #333333;
  font-size: 16px;
}
.alert > div p > strong:first-child {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 18px;
}
.alert > div p > strong:first-child:before {
  display: inline-block;
  margin-right: 10px;
  font-family: FontAwesome;
  font-size: 16px;
}
.alert > div p a {
  font-weight: 700;
}
.alert > div.success {
  border-left: 2px solid #8ac837;
}
.alert > div.success p > strong:first-child {
  color: #8ac837;
}
.alert > div.success p > strong:first-child:before {
  content: "\f00c";
}
.alert > div.error {
  border-left: 2px solid #cf0000;
}
.alert > div.error p > strong:first-child {
  color: #cf0000;
}
.alert > div.error p > strong:first-child:before {
  content: "\f071";
}
/*------ reset ------*/
* {
  margin: 0;
}
body,
html {
  width: 100%;
  height: 100%;
}
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
ection {
  display: block;
}
/*------ clearfix ------*/
.clearfix:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
html[xmlns] .clearfix,
html .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
/*------ navigation ------*/
#header {
  z-index: 2;
}
#main-navigation,
#sticky-navigation {
  display: none;
  padding: 30px 0;
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  background: #ffffff;
}
#main-navigation.bold,
#sticky-navigation.bold {
  font-weight: bold;
}
#main-navigation #nav-logo,
#sticky-navigation #nav-logo,
#main-navigation #sticky-logo,
#sticky-navigation #sticky-logo {
  position: absolute;
  left: 20px;
  top: -18px;
  max-width: 70%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#main-navigation #nav-logo a,
#sticky-navigation #nav-logo a,
#main-navigation #sticky-logo a,
#sticky-navigation #sticky-logo a {
  padding: 0;
}
#main-navigation #nav-logo a:after,
#sticky-navigation #nav-logo a:after,
#main-navigation #sticky-logo a:after,
#sticky-navigation #sticky-logo a:after {
  content: none;
}
#main-navigation #nav-logo a:hover,
#sticky-navigation #nav-logo a:hover,
#main-navigation #sticky-logo a:hover,
#sticky-navigation #sticky-logo a:hover {
  background: none;
}
#main-navigation #nav-logo img,
#sticky-navigation #nav-logo img,
#main-navigation #sticky-logo img,
#sticky-navigation #sticky-logo img {
  max-width: 100%;
}
.ddsmoothmenu {
  display: block !important;
  width: 100%;
}
.ddsmoothmenu ul li.menu-header {
  display: none;
}
.ddsmoothmenu > ul {
  position: relative;
  z-index: 100;
  padding-left: 300px;
  list-style-type: none;
  text-align: right;
}
.ddsmoothmenu > ul > li {
  position: relative;
  display: inline-block;
}
.ddsmoothmenu > ul > li > a {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 0 1px;
  padding: 18px 14px 18px 16px;
  color: #939498;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ddsmoothmenu > ul > li > a:hover,
.ddsmoothmenu > ul > li > a.selected {
  color: #ffffff;
  background: #8ac837;
}
.ddsmoothmenu > ul > li > a.active {
  color: #ffffff;
  background: #8ac837;
}
.ddsmoothmenu > ul > li > a.account-nav {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  color: #8ac837;
  background: none;
}
.ddsmoothmenu > ul > li > a.account-nav.bold {
  font-weight: bold;
}
.ddsmoothmenu > ul > li > a.account-nav + ul {
  margin-left: 16px;
}
.ddsmoothmenu > ul > li > a.account-nav.active {
  color: #666666;
}
.ddsmoothmenu > ul > li > a.account-nav:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 8px;
  background: #b0d97d;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ddsmoothmenu > ul > li > a.account-nav:hover,
.ddsmoothmenu > ul > li > a.account-nav.selected {
  color: #666666;
}
.ddsmoothmenu > ul > li > a.account-nav:hover:after,
.ddsmoothmenu > ul > li > a.account-nav.selected:after {
  width: 100%;
}
.ddsmoothmenu > ul > li .join {
  display: inline-block;
  margin: 0 -10px;
}
.ddsmoothmenu > ul > li ul {
  position: absolute;
  left: 0;
  display: none;
  visibility: hidden;
  margin: 0 0 0 1px;
  padding: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  background: #666666;
  background: rgba(0, 0, 0, 0.6);
}
.ddsmoothmenu > ul > li ul li {
  display: inline-block;
}
.ddsmoothmenu > ul > li ul li a {
  display: block;
  width: 260px;
  padding: 12px 15px;
  margin: 0;
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ddsmoothmenu > ul > li ul li a:hover,
.ddsmoothmenu > ul > li ul li a.selected {
  color: #ffffff;
  background: #595959;
  background: rgba(0, 0, 0, 0.6);
}
.ddsmoothmenu > ul > li ul li ul {
  top: 0;
}
* html .ddsmoothmenu {
  height: 1%;
}
#sticky-header {
  position: fixed;
  z-index: 999;
  top: -170px;
  width: 100%;
  border-bottom: 4px solid #8ac837;
}
#sticky-header #sticky-navigation {
  padding: 20px 0;
  font-size: 16px;
  background: #737373;
}
#sticky-header #sticky-navigation #sticky-logo {
  top: -24px;
}
#sticky-header #sticky-navigation > ul > li > a {
  padding: 13px 14px 13px 16px;
  color: #ffffff;
}
#sticky-header #sticky-navigation > ul > li > a.account-nav:after {
  margin-top: 3px;
}
#sticky-header #sticky-navigation > ul > li > a.account-nav:hover,
#sticky-header #sticky-navigation > ul > li > a.account-nav.selected {
  color: #ffffff;
}
#sticky-header #sticky-navigation > ul > li .join {
  color: #cccccc;
}
#sticky-header #sticky-navigation > ul > li ul {
  padding: 10px 0;
  background: #ffffff;
}
#sticky-header #sticky-navigation > ul > li ul li a {
  padding: 6px 15px;
  color: #666666;
}
#sticky-header #sticky-navigation > ul > li ul li a:hover,
#sticky-header #sticky-navigation > ul > li ul li a.selected {
  color: #8ac837;
  background: #ffffff;
}
@media all and (max-width:1024px) {
  #main-navigation li {
    display: none;
  }
  #main-navigation li#nav-logo {
    display: inline-block;
  }
  #sticky-header {
    display: none;
  }
  #sticky-header.sticky {
    display: none;
  }
}
@media all and (max-width:480px) {
  #main-navigation {
    padding: 20px 0;
  }
  #main-navigation li#nav-logo {
    top: 0;
  }
  #main-navigation li#nav-logo img {
    height: 66px;
  }
}
@media all and (max-width: 320px) {
  #main-navigation li#nav-logo {
    max-width: 50%;
  }
  #main-navigation li#nav-logo img {
    height: auto;
  }
}
/*------ mobile navigation ------*/
#mbl-navigation {
  display: block;
  position: absolute;
  z-index: 999;
  top: 0px;
  right: 0px;
  height: 100%;
  overflow: hidden;
}
#mbl-navigation nav {
  display: none;
}
#mbl-navigation nav.mblmenu {
  position: relative;
  display: block !important;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: #ffffff;
}
#mbl-navigation nav.mblmenu .levelHolderClass {
  position: absolute;
  z-index: 1;
  top: 0;
  width: auto;
  margin-left: 20px;
  min-height: 100%;
  font-size: 14px;
  font-weight: 700;
  background: #8ac837;
  zoom: 1;
  cursor: default;
}
#mbl-navigation nav.mblmenu .levelHolderClass[data-level='1'] {
  top: 123px;
}
#mbl-navigation nav.mblmenu .rtl {
  right: 0;
  margin-right: -100%;
}
#mbl-navigation nav.mblmenu .nav-header {
  display: block;
  position: relative;
  margin: 0;
  padding: 21px 30px;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
#mbl-navigation nav.mblmenu .nav-header img {
  max-width: 100%;
}
#mbl-navigation nav.mblmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mbl-navigation nav.mblmenu ul li {
  padding: 0;
  text-align: left !important;
  border-bottom: 1px solid #b0d97d;
}
#mbl-navigation nav.mblmenu ul .menu-header a {
  background: #6ea02c;
}
#mbl-navigation nav.mblmenu ul .join {
  display: block;
  height: 0px;
  text-indent: -9999px;
  border-top: 1px solid #b0d97d;
}
#mbl-navigation nav.mblmenu ul a {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 15px 20px;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  background: none;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#mbl-navigation nav.mblmenu ul a i {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
#mbl-navigation nav.mblmenu ul a:hover,
#mbl-navigation nav.mblmenu ul a:active {
  color: #ffffff;
  background: #b0d97d;
}
#mbl-navigation nav.mblmenu ul a:hover .iconSpacing_ltr,
#mbl-navigation nav.mblmenu ul a:hover .iconSpacing_rtl {
  -webkit-animation-name: bounce-right;
  animation-name: bounce-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
#mbl-navigation nav.mblmenu .backItemClass {
  display: block;
  padding: 0;
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  background: #666666;
}
#mbl-navigation nav.mblmenu .backItemClass.bold {
  font-weight: bold;
}
#mbl-navigation nav.mblmenu .backItemClass a {
  background: #666666;
  color: #ffffff;
}
#mbl-navigation nav.mblmenu .backItemClass a i {
  float: none;
  margin-right: 5px;
  font-size: 12px;
  line-height: 0.8;
}
#mbl-navigation nav.mblmenu .backItemClass a:hover,
#mbl-navigation nav.mblmenu .backItemClass a:active {
  background: #333333;
  color: #ffffff;
}
#mbl-navigation nav.mblmenu .backItemClass a:hover i,
#mbl-navigation nav.mblmenu .backItemClass a:active i {
  color: #b0d97d;
}
#mbl-navigation nav.mblmenu .floatRight {
  float: right;
}
#mbl-navigation nav.mblmenu .floatLeft {
  float: left;
}
#mbl-navigation nav.mblmenu .cursorPointer {
  cursor: pointer;
}
#mbl-navigation nav.mblmenu .iconSpacing_ltr,
#mbl-navigation nav.mblmenu .iconSpacing_rtl {
  padding: 0;
  line-height: 1.5;
}
#mbl-navigation nav.mblmenu .account-icon {
  float: none;
}
#mbl-navigation nav.mblmenu .hit-area {
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 18px;
}
#mbl-navigation nav.mblmenu .more-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 50px;
  padding: 17px 0;
  text-align: center;
  color: #ffffff;
  background: #8ac837;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#mbl-navigation nav.mblmenu .nonlinkable a:hover,
#mbl-navigation nav.mblmenu .nonlinkable a:active {
  background: initial;
}
#mbl-navigation nav.mblmenu .contact-info {
  width: 90%;
  padding: 15px 5%;
  font-size: 14px;
}
#mbl-navigation nav.mblmenu .contact-info i {
  display: table-cell;
  width: 25px;
  padding-right: 7px;
  text-align: center;
  line-height: 1.7;
  color: #ffffff;
}
#mbl-navigation nav.mblmenu .contact-info a {
  display: table-cell;
  padding: 0;
}
#mbl-navigation nav.mblmenu .contact-info a:hover {
  color: #45641c;
}
@media all and (max-width:480px) {
  #mbl-navigation nav.mblmenu .nav-header img {
    height: 56px;
  }
}
#mbl-toggle {
  display: none;
  position: relative;
  height: 20px;
  margin-top: 35px;
  padding: 0 55px 0 30px;
  cursor: pointer;
  color: #8ac837;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#mbl-toggle span,
#mbl-toggle span:before,
#mbl-toggle span:after {
  position: absolute;
  display: block;
  border-radius: 1px;
  height: 3px;
  width: 20px;
  background: #8ac837;
  cursor: pointer;
  content: '';
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#mbl-toggle span:before {
  top: -7px;
}
#mbl-toggle span:after {
  bottom: -7px;
}
#mbl-toggle:hover span,
#mbl-toggle:hover span:before,
#mbl-toggle:hover span:after {
  background: #111111;
}
#mbl-toggle.active span {
  background-color: transparent;
}
#mbl-toggle.active span:before,
#mbl-toggle.active span:after {
  top: 0;
}
#mbl-toggle.active span:before {
  transform: rotate(45deg);
}
#mbl-toggle.active span:after {
  transform: rotate(-45deg);
}
@media all and (max-width:1024px) {
  #main-navigation {
    text-align: right;
  }
  #mbl-toggle {
    display: inline-block;
  }
}
/*------ body content ------*/
#page-wrap {
  display: flex;
  /* use the flex model */
  min-height: 100%;
  flex-direction: column;
}
#body-content {
  flex: 1;
}
#breadcrumbs {
  display: block;
  padding: 30px 0 0;
}
#breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs ol li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #999999;
}
#breadcrumbs ol li .rsaquo {
  padding-right: 2px;
}
#breadcrumbs ol li a {
  padding: 0 5px 0 0;
  color: #999999;
}
#breadcrumbs ol li a:hover {
  color: #b0d97d;
}
#page-banner {
  position: relative;
  padding: 80px 0;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
  border-bottom: 5px solid #8ac837;
  background-image: none;
  background-attachment: scroll;
  background-size: cover;
}
#page-banner .page-title {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
#page-banner .page-title h1 {
  margin: 0;
}
#page-banner .page-title .page-subtitle {
  margin: 0;
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
  font-style: normal;
  color: #333333;
}
#page-banner .page-title .page-subtitle.light {
  font-weight: 300;
}
#page-banner .page-title .page-subtitle.bold {
  font-weight: 700;
}
#page-banner .page-title .page-subtitle.desc {
  color: #cccccc;
}
#page-banner .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(11, 11, 11, 0.4);
}
#page-banner .overlay .watermark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-height: 100%;
}
#page-banner.no-bg .page-title {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  padding: 0;
}
#page-banner.no-bg .page-title h1 {
  font-size: 72px;
}
#page-banner.no-bg .overlay {
  display: none;
}
@media all and (max-width:640px) {
  #page-banner {
    padding: 60px 0;
  }
  #page-banner .page-title {
    padding: 60px 0;
  }
  #page-banner.no-bg .page-title h1 {
    font-size: 48px;
  }
}
.content-tabs {
  background: none;
}
.content-tabs ul,
.content-tabs > div {
  display: none;
}
.content-tabs.ui-tabs {
  display: block;
  padding-top: 5px;
}
.content-tabs.ui-tabs .tabs-header {
  display: block;
  position: relative;
  overflow: hidden;
}
.content-tabs.ui-tabs .tabs-header span {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100%;
  height: 1px;
  border-top: 1px solid #8ac837;
  -webkit-transition: all 1s ease 0.25s;
  -moz-transition: all 1s ease 0.25s;
  -ms-transition: all 1s ease 0.25s;
  -o-transition: all 1s ease 0.25s;
  transition: all 1s ease 0.25s;
}
.content-tabs.ui-tabs .ui-tabs-nav {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1px;
}
.content-tabs.ui-tabs .ui-tabs-nav li {
  display: inline-block;
  position: relative;
  margin-top: 1px;
  margin-right: 1px;
}
.content-tabs.ui-tabs .ui-tabs-nav li a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 25px 60px;
  color: #666666;
  background: #ffffff;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.content-tabs.ui-tabs .ui-tabs-nav li a:hover {
  color: #ffffff;
  background: #8ac837;
}
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a,
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a:hover {
  z-index: 2;
  color: #ffffff;
  background: #8ac837;
}
.content-tabs.ui-tabs .ui-tabs-panel {
  display: block;
  clear: both;
  padding: 30px 20px 10px;
}
.content-tabs.ui-tabs .ui-tabs-panel ul,
.content-tabs.ui-tabs .ui-tabs-panel > div {
  display: block;
}
.content-tabs.ui-tabs .ui-tabs-select {
  display: none;
}
@media all and (max-width:768px) {
  .content-tabs.ui-tabs .tabs-header span {
    display: none;
  }
  .content-tabs.ui-tabs .ui-tabs-nav {
    display: block;
    margin-bottom: 30px;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li {
    display: block;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li a {
    padding: 20px 30px;
  }
  .content-tabs.ui-tabs .ui-tabs-panel {
    padding: 20px 10px 0px;
  }
  .content-tabs.ui-tabs.responsive-tabs .ui-tabs-nav {
    display: none;
  }
  .content-tabs.ui-tabs.responsive-tabs .ui-tabs-select {
    display: block;
    max-width: 100%;
  }
}
/*------ slideshow ------*/
#slideshow-wrap {
  position: relative;
  overflow: hidden;
}
#slideshow-wrap #scroll-icon {
  position: absolute;
  z-index: 20;
  bottom: 30px;
  left: 50%;
  margin-left: -28px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow-wrap #scroll-icon img {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow-wrap #scroll-icon:hover {
  background: rgba(255, 255, 255, 0.3);
}
#slideshow-wrap #scroll-icon:hover img {
  -webkit-animation: scroll-down 0.8s ease 0s;
  -ms-animation: scroll-down 0.8s ease 0s;
  animation: scroll-down 0.8s ease 0s;
  -webkit-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
#slideshow {
  display: none;
  background: #666666;
  border-bottom: 5px solid #8ac837;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow.owl-carousel {
  display: block;
}
#slideshow .slide {
  position: relative;
  display: block;
  height: 750px;
}
#slideshow .slide .slide-img {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#slideshow .slide .slide-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  bottom: auto;
  width: 100%;
  color: #ffffff;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#slideshow .slide .slide-content .title,
#slideshow .slide .slide-content p,
#slideshow .slide .slide-content .button {
  position: relative;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow .slide .slide-content .title {
  margin-bottom: 20px;
  font-size: 116px;
  line-height: .9;
  color: #ffffff;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
#slideshow .slide .slide-content p {
  /*font-size: 40px;
				font-weight: 400;
				font-style: normal;
				color: @color-green;
				.text-shadow();*/
  margin: 0;
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 700;
  line-height: 1.2;
  font-size: 24px;
  font-style: normal;
  color: #cccccc;
}
#slideshow .slide .slide-content p.light {
  font-weight: 300;
}
#slideshow .slide .slide-content p.bold {
  font-weight: 700;
}
#slideshow .slide .slide-content .button {
  margin-top: 21px;
}
#slideshow .slide .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(11, 11, 11, 0.4);
}
#slideshow .slide .overlay .watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-height: 100%;
}
#slideshow .owl-item.active .title {
  -webkit-animation: come-in-left 0.6s ease 0.8s;
  -ms-animation: come-in-left 0.6s ease 0.8s;
  animation: come-in-left 0.6s ease 0.8s;
  -webkit-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .owl-item.active p {
  -webkit-animation: come-in-left 0.6s ease 1s;
  -ms-animation: come-in-left 0.6s ease 1s;
  animation: come-in-left 0.6s ease 1s;
  -webkit-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .owl-item.active .button {
  -webkit-animation: come-in-bottom 0.5s ease 1.4s;
  -ms-animation: come-in-bottom 0.5s ease 1.4s;
  animation: come-in-bottom 0.5s ease 1.4s;
  -webkit-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .owl-nav {
  position: absolute;
  top: 50%;
  z-index: 15;
  width: 100%;
}
#slideshow .owl-nav .nav-prev,
#slideshow .owl-nav .nav-next {
  position: absolute;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow .owl-nav .nav-prev i,
#slideshow .owl-nav .nav-next i {
  color: #ffffff;
}
#slideshow .owl-nav .nav-prev:hover,
#slideshow .owl-nav .nav-next:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
#slideshow .owl-nav .nav-prev {
  left: 45px;
}
#slideshow .owl-nav .nav-next {
  right: 45px;
}
@media all and (max-width:1024px) {
  #slideshow .slide {
    height: 500px;
  }
  #slideshow .slide .slide-content .title {
    font-size: 80px;
  }
  #slideshow .slide .slide-content p {
    font-size: 32px;
  }
}
@media all and (max-width:768px) {
  #slideshow .slide .slide-content .title {
    font-size: 66px;
  }
  #slideshow .slide .slide-content p {
    font-size: 28px;
  }
}
@media all and (max-width:480px) {
  #slideshow .slide .slide-content .title {
    font-size: 60px;
  }
  #slideshow .slide .slide-content p {
    font-size: 26px;
  }
}
/*------ panels ------*/
.panel {
  position: relative;
  display: block;
  width: 100%;
  padding: 90px 0;
}
.panel .panel-content {
  position: relative;
  z-index: 1;
}
.panel .panel-content img,
.panel .panel-content iframe,
.panel .panel-content embed,
.panel .panel-content object {
  max-width: 100%;
  height: auto;
}
.panel .panel-content .panel-title h2 {
  margin-bottom: 10px;
}
.panel .panel-content .panel-title.center hr {
  margin: 30px auto;
}
.panel.side {
  display: table;
  table-layout: fixed;
  padding: 60px 0 80px;
  overflow: visible;
  background: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.panel.side header {
  margin: 0 0 40px 0;
}
.panel.side .panel-content {
  display: table-cell;
  vertical-align: top;
  width: 50%;
  padding: 50px 0;
}
.panel.side .panel-content.panel-right {
  padding-left: 50px;
}
.panel.side .panel-content.panel-left {
  padding-right: 50px;
}
.panel.side .panel-content.no-img {
  display: block;
  margin: 0 auto;
}
.panel.side .panel-title {
  margin: 0;
}
.panel.side .panel-subtitle {
  margin: 0;
}
.panel.side .panel-image {
  position: relative;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.panel.side .panel-image img {
  display: block;
  max-width: 100%;
  margin: 0;
  border: 5px solid #ffffff;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.panel.parallax {
  overflow: hidden;
  z-index: 3;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  background-color: #939498;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
.panel.parallax .panel-content {
  position: relative;
  z-index: 2;
}
.panel.parallax h2 {
  margin-bottom: .45em;
  font-size: 72px;
  color: #ffffff;
}
.panel.parallax .button {
  margin: 0 0 8px 9px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.panel.parallax .main-title {
  margin: 30px 0 -20px;
  font-size: 72px;
  color: #ffffff;
}
.panel.parallax .subtitle {
  margin: 20px 0 -20px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  color: #8ac837;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
.panel.parallax .parallax-button {
  margin: 40px 0 -10px;
}
.panel.parallax .parallax-tabs {
  margin: 70px 0;
}
.panel.parallax .parallax-tabs .slide-tab {
  padding: 5px;
  text-align: center;
  background: #ffffff;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
}
.panel.parallax .parallax-tabs .slide-tab .tab-content {
  padding: 45px 60px 30px 60px;
  color: #666666;
  border: 1px solid #666666;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.panel.parallax .parallax-tabs .slide-tab .tab-content .main-title {
  font-size: 32px;
}
.panel.parallax .parallax-tabs .slide-tab .tab-content .fancy-text {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.2em;
  color: #8ac837;
}
.panel.parallax .parallax-tabs .slide-tab .tab-content .fancy-text.bold {
  font-weight: bold;
}
.panel.parallax .parallax-tabs .slide-tab .tab-content hr {
  margin: 40px auto;
}
.panel.parallax .parallax-tabs .owl-dots {
  width: 100%;
  margin-top: 18px;
  text-align: center;
  -webkit-transition: transform 0.4s ease-in-out 0s;
  -moz-transition: transform 0.4s ease-in-out 0s;
  -ms-transition: transform 0.4s ease-in-out 0s;
  -o-transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
}
.panel.parallax .parallax-tabs .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px;
  width: 150px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.parallax .parallax-tabs .owl-dots .owl-dot:hover,
.panel.parallax .parallax-tabs .owl-dots .owl-dot.active {
  background: #8ac837;
  -ms-transform: scaleY(2.2);
  -webkit-transform: scaleY(2.2);
  -moz-transform: scaleY(2.2);
  -o-transform: scaleY(2.2);
  transform: scaleY(2.2);
}
.panel.parallax .parallax-tabs .owl-dots .owl-dot:before {
  position: absolute;
  content: '';
  top: -10px;
  right: -8px;
  left: -8px;
  bottom: -10px;
}
.panel.parallax.nobg {
  background: #b0d97d;
}
.panel.call-to-action {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.panel.call-to-action .text-wrap h2,
.panel.call-to-action .text-wrap h4 {
  text-align: left;
}
.panel.call-to-action .text-wrap h2 {
  margin-bottom: 20px;
  font-size: 100px;
  line-height: .9;
  color: #ffffff;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
.panel.call-to-action .text-wrap h4 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  color: #8ac837;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
.panel.call-to-action .text-wrap p {
  text-align: right;
}
.panel.call-to-action .text-wrap .button {
  margin: 0 0 8px 9px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.panel.promos .panel-content {
  z-index: 10;
}
.panel.promos .promo-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: calc(33.33333333%);
  margin-bottom: 30px;
  background: #ffffff;
  border-bottom: 5px solid #8ac837;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promos .promo-box a {
  display: block;
  color: #666666;
}
.panel.promos .promo-box .img-holder {
  position: relative;
  overflow: hidden;
  display: block;
  height: 300px;
}
.panel.promos .promo-box .img-holder img {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promos .promo-box hr {
  margin: 30px auto;
}
.panel.promos .promo-box .promo-content {
  display: block;
  padding: 38px 40px 20px 40px;
}
.panel.promos .promo-box .promo-content h4,
.panel.promos .promo-box .promo-content h5 {
  margin: 5px 0 5px 0;
}
.panel.promos .promo-box .promo-content h4 {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  color: #111111;
}
.panel.promos .promo-box .promo-content h4.bold {
  font-weight: bold;
}
.panel.promos .promo-box .promo-content h5 {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 700;
  font-size: 21px;
}
.panel.promos .promo-box .promo-content h5.light {
  font-weight: 300;
}
.panel.promos .promo-box .promo-content h5.bold {
  font-weight: 700;
}
.panel.promos .promo-box .promo-content p {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promos .promo-box.featured {
  z-index: 2;
}
.panel.promos .promo-box.featured .img-holder {
  height: 400px;
}
.panel.promos .promo-box:hover .img-holder img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.panel.gallery {
  padding: 40px 0;
}
.panel.gallery .dynamic-gallery {
  overflow: hidden;
}
.panel.gallery .dynamic-gallery .grid-sizer,
.panel.gallery .dynamic-gallery .grid-item {
  width: 16.66666667%;
  float: left;
}
.panel.gallery .dynamic-gallery .grid-item {
  margin-bottom: 1px;
}
.panel.gallery .dynamic-gallery .grid-item a {
  position: relative;
  display: block;
  padding-right: 1px;
}
.panel.gallery .dynamic-gallery .grid-item a .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  text-align: center;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .dynamic-gallery .grid-item a .overlay .fa {
  position: relative;
  z-index: 1;
  font-size: 10px;
  color: #ffffff;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .dynamic-gallery .grid-item a img {
  display: block;
  width: 100%;
}
.panel.gallery .dynamic-gallery .grid-item a:hover .overlay,
.panel.gallery .dynamic-gallery .grid-item a:active .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.panel.gallery .dynamic-gallery .grid-item a:hover .overlay .fa,
.panel.gallery .dynamic-gallery .grid-item a:active .overlay .fa {
  font-size: 36px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.panel.gallery .gallery-wrapper {
  width: 100%;
  padding: 0 0 50px;
  overflow: hidden;
}
.panel.gallery .gallery-wrapper .slide-carousel {
  white-space: nowrap;
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item {
  display: inline-block;
  float: none;
  width: 320px;
  vertical-align: middle;
  border-right: 1px solid transparent;
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a {
  position: relative;
  display: block;
  float: left;
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  text-align: center;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a .overlay .fa {
  position: relative;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 1;
  font-size: 10px;
  color: #ffffff;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a img {
  display: block;
  max-width: 100%;
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a:hover .overlay,
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a:active .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a:hover .overlay .fa,
.panel.gallery .gallery-wrapper .slide-carousel .carousel-item a:active .overlay .fa {
  font-size: 36px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.panel.faq {
  padding: 40px 0;
}
.panel.faq .panel-content {
  padding: 5px;
  text-align: center;
  background: #ffffff;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
}
.panel.faq .panel-content .faq {
  padding: 45px 60px 30px 60px;
  color: #666666;
  border: 1px solid #666666;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.panel.faq .panel-content .faq .main-title {
  font-size: 32px;
}
.panel.faq .panel-content .faq .fancy-text {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.2em;
  color: #8ac837;
}
.panel.faq .panel-content .faq .fancy-text.bold {
  font-weight: bold;
}
.panel.faq .panel-content .faq hr {
  margin: 40px auto;
}
.panel.contact-form {
  padding-top: 0;
}
.panel.contact-form .map-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.panel.contact-form .map-wrap .open-map {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 30px;
}
.panel.contact-form .map-wrap .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  background: rgba(11, 11, 11, 0.6);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.contact-form .map-wrap .overlay span {
  font-size: 20px;
  text-shadow: 5px 3px 10px rgba(11, 11, 11, 0.4);
}
.panel.contact-form #locations-map {
  height: 680px;
  background: #999999;
  border: 5px solid #ffffff;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
}
.panel.contact-form .panel-image.has-map img {
  display: inline;
  max-width: 100%;
  margin: 0;
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
@media all and (max-width:1024px) {
  .panel.side header {
    margin: 0 0 25px;
  }
  .panel.side .panel-content {
    display: block;
  }
  .panel.side .panel-content.panel-left,
  .panel.side .panel-content.panel-right,
  .panel.side .panel-content.no-img {
    width: 100%;
    padding: 0;
  }
  .panel.side .panel-image {
    display: block;
    width: 100%;
  }
  .panel.side .panel-image.panel-left,
  .panel.side .panel-image.panel-right {
    max-width: none;
  }
  .panel.side .panel-image.panel-left {
    padding-bottom: 35px;
  }
  .panel.side .panel-image.panel-right {
    padding-top: 20px;
  }
  .panel.parallax .main-title {
    margin: 30px 0 20px;
    font-size: 60px;
  }
  .panel.parallax .subtitle {
    font-size: 38px;
  }
  .panel.parallax .parallax-tabs {
    margin: 0;
  }
  .panel.call-to-action .text-wrap h2 {
    font-size: 80px;
  }
  .panel.call-to-action .text-wrap h4 {
    font-size: 36px;
  }
  .panel.promos {
    padding: 140px 0 70px;
    text-align: center;
  }
  .panel.promos .promo-box {
    width: 50%;
  }
  .panel.promos .promo-box .promo-content {
    padding: 38px 25px 20px 25px;
  }
  .panel.promos .promo-box:nth-child(3n) {
    z-index: 3;
  }
  .panel.promos .promo-box:nth-child(3n) .img-holder {
    height: 400px;
  }
  .panel.promos .promo-box:nth-child(3n) + .featured .img-holder {
    height: 300px;
  }
  .panel.contact-form #locations-map {
    height: 480px;
  }
}
@media all and (max-width:768px) {
  .panel {
    padding: 50px 0;
  }
  .panel.parallax .parallax-tabs .slide-tab .tab-content {
    padding: 45px 30px 30px;
  }
  .panel.call-to-action .text-wrap h2 {
    font-size: 66px;
  }
  .panel.call-to-action .text-wrap h4 {
    font-size: 32px;
  }
  .panel.promos {
    padding: 60px 0;
  }
  .panel.promos .promo-box {
    width: 100%;
    margin-top: 20px;
  }
  .panel.promos .promo-box .img-holder {
    height: 230px !important;
  }
  .panel.contact-form #locations-map {
    height: 320px;
  }
}
@media all and (max-width:480px) {
  .panel.parallax .parallax-tabs .owl-dots .owl-dot {
    width: 50px;
  }
}
/*------ galleries ------*/
#gallery-listing .gallery-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: calc(33.33333333%);
  background: #ffffff;
  border-bottom: 5px solid #8ac837;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#gallery-listing .gallery-box a {
  display: block;
  color: #666666;
}
#gallery-listing .gallery-box .img-holder {
  position: relative;
  overflow: hidden;
  display: block;
  height: 300px;
}
#gallery-listing .gallery-box .img-holder img {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#gallery-listing .gallery-box .img-holder .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 40px;
  color: #ffffff;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#gallery-listing .gallery-box .img-holder .overlay .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#gallery-listing .gallery-box hr {
  margin: 30px auto;
}
#gallery-listing .gallery-box .content {
  display: block;
  padding: 38px 40px 20px 40px;
}
#gallery-listing .gallery-box .content h4,
#gallery-listing .gallery-box .content h5 {
  margin: 5px 0 5px 0;
}
#gallery-listing .gallery-box .content h4 {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  color: #111111;
}
#gallery-listing .gallery-box .content h4.bold {
  font-weight: bold;
}
#gallery-listing .gallery-box .content h5 {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 700;
  font-size: 21px;
}
#gallery-listing .gallery-box .content h5.light {
  font-weight: 300;
}
#gallery-listing .gallery-box .content h5.bold {
  font-weight: 700;
}
#gallery-listing .gallery-box .content p {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#gallery-listing .gallery-box:hover .img-holder img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#gallery-listing .gallery-box:hover .img-holder .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
/*------ ui ------*/
.ui-widget-header {
  border: none;
}
.ui-dialog {
  position: absolute;
  z-index: 99999;
  width: 340px !important;
  border: none;
  background: #ffffff;
  -moz-box-shadow: 0px 0px 20px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 20px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 20px 5px rgba(11, 11, 11, 0.2);
}
.ui-dialog .ui-dialog-titlebar {
  padding: 20px;
  font-size: 20px;
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  color: #8ac837;
  background: #ffffff;
  border-bottom: 4px solid #8ac837;
}
.ui-dialog .ui-dialog-titlebar.bold {
  font-weight: bold;
}
.ui-dialog .ui-dialog-titlebar button,
.ui-dialog .ui-dialog-titlebar i {
  color: #8ac837 !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ui-dialog .ui-dialog-titlebar button:hover,
.ui-dialog .ui-dialog-titlebar i:hover {
  color: #cf0000 !important;
}
.ui-dialog .ui-dialog-titlebar .ui-button {
  float: right;
  padding: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.ui-dialog .ui-dialog-content {
  overflow-y: auto;
  padding: 20px;
  font-size: 16px;
}
.ui-dialog .ui-dialog-content .panel {
  padding: 20px 0;
}
.ui-dialog .ui-dialog-content .panel .text-wrap {
  padding: 0 20px;
}
.ui-dialog .ui-dialog-buttonpane {
  clear: both;
  height: 50px;
  padding: 10px;
  border: none !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: none;
}
.ui-dialog .ui-dialog-buttonpane .ui-button {
  float: left;
  margin: 0 10px 5px 10px;
  padding: 10px 15px;
  font-size: 16px;
  color: #ffffff;
  outline: none !important;
  border: 0;
  background: #333333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ui-dialog .ui-dialog-buttonpane .ui-button span {
  color: #ffffff;
}
.ui-dialog .ui-dialog-buttonpane .ui-button .fa {
  margin-right: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-button:first-child {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane .ui-button:hover {
  background: #8ac837;
  color: #ffffff;
}
.ui-dialog .ui-dialog-buttonset .ui-icon.fa {
  text-indent: 0;
  background-image: none;
}
.ui-dialog.dialog-error .ui-dialog-titlebar {
  color: #cf0000;
  border-bottom: 4px solid #cf0000;
}
.ui-dialog.dialog-error .ui-dialog-titlebar i {
  color: #cf0000 !important;
}
.ui-dialog.dialog-error .ui-dialog-titlebar i:hover {
  color: #111111 !important;
}
.ui-dialog.dialog-success .ui-dialog-titlebar {
  color: #8ac837;
}
.ui-dialog.loaded-content {
  width: 800px !important;
}
.ui-widget-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.4);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media all and (max-width:768px) {
  .ui-dialog {
    color: #111111;
  }
  .ui-dialog.loaded-content {
    width: 90% !important;
  }
}
.ui-accordion {
  margin-bottom: 20px;
}
.ui-helper-hidden-accessible {
  display: none;
}
/*------ tooltip ------*/
.handle .tooltip {
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;
}
.ui-tooltip {
  display: none;
  position: absolute;
  z-index: 99;
  width: auto;
  padding: 20px;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  background: #8ac837;
  border-bottom: 2px solid #ffffff;
  -moz-box-shadow: 0 0 20px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0 0 20px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0 0 20px 5px rgba(11, 11, 11, 0.2);
}
.ui-tooltip h4 {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}
.ui-tooltip p {
  margin-top: 5px;
  padding: 0;
}
.ui-tooltip-content:after {
  content: '';
  position: absolute;
  border-style: solid;
  display: block;
  width: 0;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-color: #8ac837 transparent;
  border-width: 0 10px 10px;
}
/*------ faq page ------*/
#faqs .faq-question {
  display: table;
  cursor: pointer;
}
#faqs .faq-question .fa {
  position: relative;
  top: -2px;
  margin: 0 8px 0 0;
  font-size: 16px;
}
#faqs .faq-question:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 8px;
  white-space: pre;
  background: #b0d97d;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
#faqs .faq-question:hover:after,
#faqs .faq-question.ui-state-active:after {
  width: 100%;
}
#faqs .faq-answer {
  padding: 0 0 20px 52px;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#faqs .faq-answer hr {
  margin: 20px 0;
}
@media all and (max-width:640px) {
  #faqs .faq-question {
    margin-bottom: 25px;
  }
  #faqs .faq-answer {
    padding-left: 0;
  }
}
/*------ contact page ------*/
.contact-left,
.contact-right {
  width: 50%;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.contact-left .contact-details,
.contact-right .contact-details {
  table-layout: auto;
  font-size: 20px;
}
.contact-left .contact-details .d-cell,
.contact-right .contact-details .d-cell {
  padding-bottom: 6px;
}
.contact-left .contact-details .d-cell.label,
.contact-right .contact-details .d-cell.label {
  min-width: 30%;
  font-weight: 600;
}
.contact-left table tr th,
.contact-right table tr th {
  min-width: 30%;
}
.contact-left table tr th,
.contact-right table tr th,
.contact-left table tr td,
.contact-right table tr td {
  padding-bottom: 6px;
}
@media all and (max-width:768px) {
  .contact-left,
  .contact-right {
    width: 100%;
    float: none;
    padding-right: 0;
  }
  .contact-left table tr th,
  .contact-right table tr th {
    min-width: 100px;
    max-width: 150px;
  }
  .contact-left table th,
  .contact-right table th {
    display: table-cell;
  }
  .contact-left table label,
  .contact-right table label {
    display: none;
  }
  .contact-right {
    margin-top: 30px;
  }
}
@media all and (max-width:480px) {
  .contact-left .contact-details .d-cell,
  .contact-right .contact-details .d-cell {
    padding-bottom: 0;
  }
}
/*------ CART/CHECKOUT ------*/
.cart-container {
  position: relative;
  z-index: 50;
}
.cart-container .cart-trigger,
.cart-container .cart {
  position: fixed;
  bottom: 40px;
  right: 5%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /* Force Hardware Acceleration in WebKit */
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: transform;
  backface-visibility: hidden;
}
.cart-container .cart-trigger {
  /* button that triggers the cart content */
  z-index: 3;
  height: 72px;
  width: 72px;
  color: transparent;
  white-space: nowrap;
  background: #ffffff;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
}
.cart-container .cart-trigger .count {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 28px;
  width: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  background: #cf0000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cart-container .cart-trigger .count li {
  /* this is the number of items in the cart */
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cart-container .cart-trigger .count li:last-of-type {
  visibility: hidden;
}
.cart-container .cart-trigger .count.update-count li:last-of-type {
  -webkit-animation: qty-enter 0.15s;
  animation: qty-enter 0.15s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
}
.cart-container .cart-trigger .count.update-count li:first-of-type {
  -webkit-animation: qty-leave 0.15s;
  animation: qty-leave 0.15s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
}
.cart-container .cart-trigger .count.pulse {
  box-shadow: 0 0 0 rgba(214, 0, 0, 0.6);
  animation: pulse 2s;
}
.cart-container .cart-trigger:hover {
  background: #8ac837;
}
.cart-container .cart-trigger:hover:before {
  color: #ffffff;
}
.cart-container .cart-trigger:hover:after {
  color: #cf0000;
}
.cart-container .cart-trigger:after,
.cart-container .cart-trigger:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: -20px;
  margin-left: -15px;
  content: "\f291";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  text-decoration: inherit;
  color: #111111;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cart-container .cart-trigger:after {
  content: "\f00d";
  margin-left: -8px;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.cart-container .cart {
  /* cart content */
  z-index: 2;
  width: 90%;
  max-width: 440px;
  height: 400px;
  max-height: 90%;
  pointer-events: none;
}
.cart-container .cart .cart-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  height: 72px;
  width: 72px;
  -webkit-transition: height 0.4s 0.1s, width 0.4s 0.1s, box-shadow 0.3s;
  transition: height 0.4s 0.1s, width 0.4s 0.1s, box-shadow 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
  transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
  background: #ffffff;
  pointer-events: auto;
}
.cart-container .cart .cart-wrapper header,
.cart-container .cart .cart-wrapper footer {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
}
.cart-container .cart .cart-wrapper header,
.cart-container .cart .cart-wrapper .cart-body {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.cart-container .cart .cart-wrapper header {
  top: 0;
  padding: 0 5px 0 20px;
  width: calc(100% - 25px);
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  color: #8ac837;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-bottom: 2px solid #8ac837;
}
.cart-container .cart .cart-wrapper header.bold {
  font-weight: bold;
}
.cart-container .cart .cart-wrapper header .button.button-mini {
  margin-top: 4px;
  padding: 12px 20px;
}
.cart-container .cart .cart-wrapper header:after {
  clear: both;
  content: "";
  display: block;
}
.cart-container .cart .cart-wrapper footer {
  bottom: 0;
  border-top: 2px solid #8ac837;
  background: #ffffff;
}
.cart-container .cart .cart-wrapper .cart-body {
  position: relative;
  z-index: 1;
  height: calc(100% - 50px);
  padding: 20px 0 10px;
  margin: 40px 0 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cart-container .cart .cart-wrapper .cart-body ul {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px 20px 90px 20px;
  list-style: none;
}
.cart-container .cart .cart-wrapper .cart-body ul li {
  position: relative;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: opacity 0s 0.2s, -webkit-transform 0s 0.2s;
  transition: opacity 0s 0.2s, -webkit-transform 0s 0.2s;
  transition: opacity 0s .2s, transform 0s .2s;
  transition: opacity 0s 0.2s, transform 0s 0.2s, -webkit-transform 0s 0.2s;
  -ms-transform: translateX(80px);
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.cart-container .cart .cart-wrapper .cart-body ul li:after {
  clear: both;
  content: "";
  display: block;
}
.cart-container .cart .cart-wrapper .cart-body ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.cart-container .cart .cart-wrapper .cart-body ul li.deleted {
  /* this class is added to an item when it is removed form the cart */
  position: absolute;
  left: 1.4em;
  width: calc(97.2%);
  opacity: 0;
  -webkit-animation: item-slide-out 0.3s forwards;
  animation: item-slide-out 0.3s forwards;
}
.cart-container .cart .cart-wrapper .cart-body ul li.deleted + li {
  -webkit-animation: item-move-up-mobile 0.3s;
  animation: item-move-up-mobile 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.cart-container .cart .cart-wrapper .cart-body .product-details {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cart-container .cart .cart-wrapper .cart-body .product-details .delete-item,
.cart-container .cart .cart-wrapper .cart-body .product-details h3,
.cart-container .cart .cart-wrapper .cart-body .product-details .price {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cart-container .cart .cart-wrapper .cart-body .product-details .delete-item {
  display: inline-block;
  float: left;
  padding-right: 10px;
  width: 5%;
  line-height: 28px;
  font-size: 14px;
  color: #cf0000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cart-container .cart .cart-wrapper .cart-body .product-details .delete-item:hover {
  color: #111111;
}
.cart-container .cart .cart-wrapper .cart-body .product-details h3 {
  float: left;
  width: 70%;
  margin: 2px 0;
  letter-spacing: -1px;
  font-size: 24px;
}
.cart-container .cart .cart-wrapper .cart-body .product-details h3 a {
  color: #111111;
}
.cart-container .cart .cart-wrapper .cart-body .product-details h3 a:hover {
  color: #8ac837;
}
.cart-container .cart .cart-wrapper .cart-body .product-details .price {
  float: right;
  width: 25%;
  text-align: right;
}
.cart-container .cart .cart-wrapper .cart-body .product-details:after {
  clear: both;
  content: "";
  display: block;
}
.cart-container .cart .checkout {
  display: block;
  height: 72px;
  margin-right: 72px;
  font-size: 18px;
  border: none !important;
}
.cart-container .cart .checkout em {
  position: relative;
  display: inline-block;
  -ms-transform: translateX(40px);
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  -webkit-transition: transform 0.3s ease 0.2s;
  -moz-transition: transform 0.3s ease 0.2s;
  -ms-transition: transform 0.3s ease 0.2s;
  -o-transition: transform 0.3s ease 0.2s;
  transition: transform 0.3s ease 0.2s;
}
.cart-container .cart .checkout em:after {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: auto;
  content: '';
  content: "\f061";
  font-family: FontAwesome;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cart-container .cart .checkout:hover:before,
.cart-container .cart .checkout:hover:after {
  border: none !important;
}
.cart-container:before {
  content: '';
  position: fixed;
  z-index: 1;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cart-container.cart-open .cart-trigger {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.cart-container.cart-open .cart-trigger .count {
  -webkit-transition: -webkit-transform 0.2s 0s;
  transition: -webkit-transform 0.2s 0s;
  transition: transform .2s 0s;
  transition: transform 0.2s 0s, -webkit-transform 0.2s 0s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.cart-container.cart-open .cart-trigger:hover {
  background: #ffffff;
}
.cart-container.cart-open .cart-trigger:before {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.cart-container.cart-open .cart-trigger:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.cart-container.cart-open .cart .cart-wrapper {
  height: 100%;
  width: 100%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
}
.cart-container.cart-open .cart header,
.cart-container.cart-open .cart .body {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.cart-container.cart-open .cart header {
  -webkit-transition: opacity .2s .2s;
  transition: opacity .2s .2s;
}
.cart-container.cart-open .cart .cart-body {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.cart-container.cart-open .cart .cart-body ul li {
  -webkit-transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  transition: transform .3s .2s, opacity .3s .2s;
  transition: transform 0.3s 0.2s, opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cart-container.cart-open .cart .cart-body ul li:nth-of-type(2) {
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}
.cart-container.cart-open .cart .cart-body ul li:nth-of-type(3) {
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}
.cart-container.cart-open .cart .cart-body ul li:nth-of-type(4),
.cart-container.cart-open .cart .cart-body ul li:nth-of-type(5) {
  -webkit-transition-duration: .55s;
  transition-duration: .55s;
}
.cart-container.cart-open .cart .checkout em {
  -webkit-transition: padding 0.2s 0s, -webkit-transform 0.2s 0.3s;
  transition: padding 0.2s 0s, -webkit-transform 0.2s 0.3s;
  transition: transform .2s .3s, padding .2s 0s;
  transition: transform 0.2s 0.3s, padding 0.2s 0s, -webkit-transform 0.2s 0.3s;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cart-container.cart-open .cart .checkout:hover em {
  padding-right: 30px;
}
.cart-container.cart-open .cart .checkout:hover em:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.cart-container.cart-open:before {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.cart-container.empty .cart-trigger,
.cart-container.empty .cart {
  /* hide cart */
  -ms-transform: translateY(150px);
  -webkit-transform: translateY(150px);
  -moz-transform: translateY(150px);
  -o-transform: translateY(150px);
  transform: translateY(150px);
}
.cart-container.empty .cart-trigger .count {
  /* fix bug - when cart is empty, do not animate count */
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media all and (max-width:768px) {
  .cart .checkout {
    font-size: 18px;
  }
  .cart .product-details {
    padding: 10px 0 0 15px;
    width: calc(100% - 50px);
  }
}
.cart-table tr td,
.cart-table tr th {
  vertical-align: middle;
}
.cart-table tr.cart-item td {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
}
.cart-table tr.cart-item td.bold {
  font-weight: bold;
}
.cart-table tr.cart-item a {
  color: #111111;
}
.cart-table tr.cart-item a.delete-cart {
  font-size: 14px;
  color: #cf0000;
}
.cart-table tr.cart-item a.delete-cart:hover {
  color: #111111;
}
.cart-table tr.cart-item a:hover {
  color: #8ac837;
}
.cart-table tr.totals td {
  padding: 10px 30px;
  background: none !important;
}
.cart-table tr.totals.ordertotal td {
  padding: 30px;
}
.cart-table .button.prev {
  font-size: 18px;
  color: #939498;
  background: #ffffff;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.cart-table .button.prev:hover {
  color: #8ac837;
}
.cart-table .button.disabled {
  display: none;
  color: #999999;
  background: #cccccc;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.cart-table .button.disabled:hover {
  color: #999999;
  background: #cccccc;
}
.cart-table .button.disabled:hover:before,
.cart-table .button.disabled:hover:after {
  border: none !important;
}
@media all and (max-width:480px) {
  .cart-table.cart-nav .button {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.billing-table th,
.billing-table td {
  padding-left: 0;
  background: none !important;
  border: none;
}
.billing-table th.label,
.billing-table td.label {
  padding-right: 30px;
}
@media all and (max-width:768px) {
  .billing-table tr.totals th,
  .billing-table tr.totals td {
    float: left;
    margin-top: 0;
  }
  .billing-table tr.totals th.label,
  .billing-table tr.totals td.label {
    min-width: 30%;
    margin-top: 0;
  }
  #terms + label {
    float: none;
  }
}
.receipt-table th,
.receipt-table td {
  border: none !important;
}
/*------ TRAINING/MODULES ------*/
#online-training {
  z-index: 10;
  overflow: hidden;
}
#online-training .training-list .list-item {
  position: relative;
  z-index: 10;
  display: inline-block;
  vertical-align: top;
  width: calc(25% - 10px);
  margin: 20px 5px;
  background: #ffffff;
  border-bottom: 5px solid #8ac837;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  box-shadow: 0px 0px 25px 5px rgba(11, 11, 11, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#online-training .training-list .list-item .img-holder {
  position: relative;
  overflow: hidden;
  display: block;
  height: 200px;
}
#online-training .training-list .list-item .img-holder img {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#online-training .training-list .list-item hr {
  margin: 30px auto 20px auto;
}
#online-training .training-list .list-item .list-content {
  display: block;
  padding: 35px 30px 25px 30px;
}
#online-training .training-list .list-item .list-content h4,
#online-training .training-list .list-item .list-content h5 {
  margin: 5px 0 5px 0;
}
#online-training .training-list .list-item .list-content h4 {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  color: #111111;
}
#online-training .training-list .list-item .list-content h4.bold {
  font-weight: bold;
}
#online-training .training-list .list-item .list-content h5 {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 700;
  font-size: 21px;
}
#online-training .training-list .list-item .list-content h5.light {
  font-weight: 300;
}
#online-training .training-list .list-item .list-content h5.bold {
  font-weight: 700;
}
#online-training .training-list .list-item .list-content .button-wrap {
  display: table;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  font-size: 16px;
}
#online-training .training-list .list-item .list-content .button-wrap > * {
  display: table-cell;
  vertical-align: middle;
}
#online-training .training-list .list-item .list-content .button-wrap > *:first-child {
  max-width: 50%;
}
#online-training .training-list .list-item:hover .img-holder img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media all and (max-width:1366px) {
  #online-training .training-list .list-item {
    width: calc(33% - 10px);
  }
}
@media all and (max-width:1024px) {
  #online-training .training-list .list-item {
    width: calc(50% - 10px);
  }
}
@media all and (max-width:768px) {
  #online-training .training-list .list-item .list-content .button-wrap {
    display: block;
  }
  #online-training .training-list .list-item .list-content .button-wrap > * {
    display: block;
    width: 100%;
    max-width: 100% !important;
    margin: 0 0 1px 0;
  }
}
@media all and (max-width:640px) {
  #online-training .training-list .list-item {
    width: 100%;
    margin: 20px 0;
  }
}
/*------ Lessons/Quizzes ------*/
#training-header {
  width: 100%;
  margin-bottom: 50px;
  background: #ffffff;
}
#training-header #track-wrap {
  display: table;
  table-layout: fixed;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#training-header #timer,
#training-header #nav-bar,
#training-header #percent-complete {
  display: table-cell;
  vertical-align: middle;
}
#training-header #timer {
  width: 175px;
  padding: 12px 20px 12px 0;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.1;
  color: #8ac837;
}
#training-header #timer #countdown,
#training-header #timer small {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}
#training-header #timer #countdown.bold,
#training-header #timer small.bold {
  font-weight: bold;
}
#training-header #timer small {
  display: block;
  font-size: 14px;
  color: #999999;
}
#training-header #timer #countdown > span {
  position: relative;
  top: -2px;
  vertical-align: top;
  margin: 0 2px 0 1px;
}
#training-header #timer #countdown > span:nth-of-type(2) {
  display: none;
}
#training-header #timer #countdown > span:nth-of-type(2) + div {
  display: none;
}
#training-header #timer #countdown > span:nth-of-type(2) + div + div {
  display: none;
}
#training-header #timer #countdown div {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 26px;
  overflow: hidden;
  text-align: center;
}
#training-header #timer #countdown ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0px !important;
}
#training-header #timer #countdown ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#training-header #timer #countdown ul.transition {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#training-header #nav-bar {
  position: relative;
  max-width: 100%;
}
#training-header #nav-bar .chapter {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 3px;
  height: 100%;
  background: #939498;
  cursor: pointer;
}
#training-header #nav-bar .chapter .fa {
  display: block;
  position: absolute;
  top: 100%;
  left: -13px;
  padding: 7px;
}
#training-header #nav-bar #progress {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  background: #8ac837;
}
#training-header #percent-complete {
  position: relative;
  width: 160px;
}
#training-header #percent-complete .chapter {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 3px;
  height: 100%;
  background: #939498;
  cursor: pointer;
}
#training-header #percent-complete .chapter .fa {
  display: block;
  position: absolute;
  top: 100%;
  left: -13px;
  padding: 7px;
}
@media all and (max-width:768px) {
  #training-header #track-wrap {
    display: block;
    padding: 0 15px;
  }
  #training-header #track-wrap * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #training-header #timer,
  #training-header #nav-bar,
  #training-header #percent-complete {
    display: block;
    width: 100%;
  }
  #training-header #timer {
    margin: 0 auto;
    padding: 12px 0;
  }
  #training-header #nav-bar {
    height: 50px;
    background: #eeeeee;
  }
  #training-header #percent-complete {
    padding: 25px 16px 10px 15px !important;
    text-align: center;
  }
  #training-header #percent-complete .chapter {
    top: -50px;
    right: 0;
    height: 50px;
  }
}
#chapter-title {
  position: relative;
  z-index: 10;
  margin: 60px 0 -10px;
  padding-left: 30px;
}
@media all and (max-width:1024px) {
  #chapter-title {
    margin: 60px 0 -2px;
    padding-left: 0;
  }
}
#lesson-slides .owl-height {
  overflow: hidden;
}
#lesson-slides .slide {
  padding: 30px;
  background: #eeeeee;
}
#lesson-slides .slide-nav {
  height: 200px;
  margin-top: 80px;
  padding: 0 30px;
  font-size: 18px;
}
#lesson-slides .slide-nav .button {
  font-size: 18px;
}
#lesson-slides .slide-nav .button.prev {
  font-size: 16px;
  color: #939498;
  background: #ffffff;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
#lesson-slides .slide-nav .button.prev:hover {
  color: #8ac837;
}
#lesson-slides .slide-nav .button.disabled {
  display: none;
  color: #999999;
  background: #cccccc;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
#lesson-slides .slide-nav .button.disabled:hover {
  color: #999999;
  background: #cccccc;
}
#lesson-slides .slide-nav .button.disabled:hover:before,
#lesson-slides .slide-nav .button.disabled:hover:after {
  border: none !important;
}
#lesson-slides .question-thumb {
  width: 200px;
  margin: 0 30px 30px 0;
  padding: 10px;
  border: 1px solid #cccccc;
}
#lesson-slides .question-thumb a {
  display: block;
  position: relative;
}
#lesson-slides .question-thumb img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
#lesson-slides .question-thumb .overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(11, 11, 11, 0.25);
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#lesson-slides .question-thumb .overlay:before {
  content: "\f055";
  font-family: FontAwesome;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 40px;
  font-style: normal;
  color: #ffffff;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#lesson-slides .question-thumb:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
@media all and (max-width:1024px) {
  #lesson-slides .slide {
    padding: 15px 0;
  }
  #lesson-slides .slide-nav {
    margin-top: 50px;
    padding: 0;
  }
}
@media all and (max-width:480px) {
  #lesson-slides .slide-content img {
    display: block !important;
    max-width: 100%;
    margin: 20px auto !important;
    float: none !important;
  }
  #lesson-slides .slide-nav .button {
    display: block;
    margin: 0 0 5px 0;
    padding: 15px 20px;
    float: none;
  }
}
/*------ Account Pages ------*/
#account-navigation,
#account-content {
  display: inline-block;
  vertical-align: top;
  max-width: 75%;
  margin: 30px 0;
}
#account-navigation > h2:first-child,
#account-content > h2:first-child,
#account-navigation > h3:first-child,
#account-content > h3:first-child,
#account-navigation > h4:first-child,
#account-content > h4:first-child,
#account-navigation > h5:first-child,
#account-content > h5:first-child {
  margin-top: 0;
}
#account-navigation {
  padding: 30px 0;
  width: 25%;
}
#account-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#account-navigation ul li a {
  font-family: "Seravek", "Georgia", serif;
  font-weight: 400;
  font-style: normal;
  color: #111111;
}
#account-navigation ul li a.bold {
  font-weight: bold;
}
#account-navigation ul li a.active {
  font-weight: bold;
}
#account-navigation ul li a.active:hover {
  color: #111111;
}
#account-navigation ul li a:hover {
  color: #8ac837;
}
#account-navigation ul li.sub-menu {
  margin-left: 10px;
  font-size: 16px;
}
#account-navigation ul li.logout {
  margin-top: 15px;
  font-size: 14px;
}
#account-navigation ul li.logout a {
  color: #666666;
}
#account-navigation ul li.logout a:hover {
  color: #cf0000;
}
#account-navigation ul li.logout a:hover .fa {
  color: #cf0000;
}
#account-content {
  width: 75%;
}
#account-content .panel.standard {
  padding: 30px 0;
}
#account-content.full {
  width: 100% !important;
  max-width: 100% !important;
}
#account-content td.lesson-status {
  position: relative;
}
#account-content td.lesson-status span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 5px;
  font-size: 0;
  text-indent: -9999px;
}
#account-content td.lesson-status span.success {
  background: #8ac837;
}
#account-content td.lesson-status span.in-session {
  background: #b0d97d;
}
#account-content td.lesson-status span.expired {
  background: #999999;
}
#account-content td.lesson-status span.failed {
  background: #cf0000;
}
@media all and (max-width:1024px) {
  #account-navigation,
  #account-content {
    max-width: 80%;
  }
  #account-navigation {
    width: 20%;
  }
}
@media all and (max-width:768px) {
  #account-navigation,
  #account-content {
    max-width: 100%;
    width: 100%;
  }
  #account-navigation {
    width: 100%;
    margin-bottom: 0;
  }
  #account-navigation ul {
    width: 100%;
  }
  #account-navigation ul li {
    display: block;
    margin: 0 0 1px 0;
  }
  #account-navigation ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    color: #ffffff;
    background: #8ac837;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #account-navigation ul li a .fa {
    color: #ffffff;
  }
  #account-navigation ul li a.active {
    color: #ffffff;
    background: #111111;
  }
  #account-navigation ul li a.active:hover {
    color: #ffffff;
    background: #111111;
  }
  #account-navigation ul li a:hover {
    color: #ffffff;
    background: #333333;
  }
  #account-navigation ul li.logout a {
    padding: 0 10px;
    color: #666666;
    background: none;
  }
  #account-navigation ul li.logout a .fa {
    color: #666666;
  }
  #account-navigation ul li.logout a:hover {
    color: #cf0000;
  }
  #account-navigation ul li.logout a:hover .fa {
    color: #cf0000;
  }
  #account-content {
    margin-top: 0;
  }
  #account-content .panel-content {
    padding: 0;
  }
}
#login-form .account-pages small {
  font-size: 14px;
}
/*------ footer ------*/
#footer {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 400;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #999999;
  background: #ffffff;
  border-top: 5px solid #8ac837;
}
#footer.light {
  font-weight: 300;
}
#footer.bold {
  font-weight: 700;
}
#footer footer {
  position: relative;
}
#footer .footer-contact {
  padding: 60px 0 40px;
}
#footer .footer-contact img {
  width: 200px;
}
#footer .footer-contact .dash {
  color: #cccccc;
}
#footer .footer-contact p a {
  color: #999999;
}
#footer .footer-contact p a:hover {
  color: #b0d97d;
}
#footer .footer-contact p a:hover .fa {
  color: #b0d97d;
}
#footer.has-map {
  text-align: left;
}
#footer.has-map .footer-contact {
  width: 45%;
  padding: 60px 5% 40px 0;
}
#footer.has-map #google-map {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: #999999;
}
#footer.has-map #map-locations {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
#footer.no-map #social-icons {
  text-align: center;
}
#footer.no-map hr {
  margin: 30px auto;
}
@media all and (max-width:1024px) {
  #footer.has-map .footer-contact {
    padding-top: 300px;
    padding-right: 0;
    width: 100%;
  }
  #footer.has-map #google-map {
    width: 100%;
    height: 250px;
  }
  #footer.has-map #map-locations {
    right: 20px;
    top: 170px;
    bottom: auto;
  }
}
@media all and (max-width:768px) {
  #footer .footer-contact .dash {
    display: block;
    height: 1px;
    text-indent: -9999px;
  }
}
#switch-location-modal .button {
  display: block;
  margin: 0 0 1px 0;
}
/*------ icons ------*/
#social-icons {
  list-style: none;
  margin: 0;
  margin: 40px 0;
  padding: 0;
  text-align: left;
  font-size: 0;
}
#social-icons li {
  display: inline-block;
  margin: 0 1px 1px 0;
  padding: 0;
  border: 0;
  text-align: center;
}
#social-icons li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  background: #8ac837;
  overflow: hidden;
}
#social-icons li a span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#social-icons li a span + span {
  top: 100%;
  color: #ffffff;
}
#social-icons li a:hover {
  color: #ffffff;
}
#social-icons li a:hover span {
  top: -100%;
}
#social-icons li a:hover span + span {
  top: 0;
}
#social-icons li a:hover span + span.fa-facebook {
  background: #3b5998;
}
#social-icons li a:hover span + span.fa-google-plus {
  background: #d94a39;
}
#social-icons li a:hover span + span.fa-linkedin {
  background: #1b92bd;
}
#social-icons li a:hover span + span.fa-pinterest {
  background: #cb2027;
}
#social-icons li a:hover span + span.fa-twitter {
  background: #00bdec;
}
#social-icons li a:hover span + span.fa-youtube {
  background: #d20800;
}
#social-icons li a:hover span + span.fa-instagram {
  background: #316c95;
}
#social-icons li a:hover span + span.fa-houzz {
  background: #7cc04b;
}
#social-icons li a:active span {
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3) inset;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3) inset;
}
.icon.card {
  position: relative;
  display: inline-block;
  margin-top: -25px;
  margin-left: 3px;
  width: 28px;
  height: 20px;
  background: url("../images/card_sprite.png") 0 0 no-repeat;
}
.icon.card.visa {
  background-position: 0 0;
}
.icon.card.mc {
  background-position: -31px 0;
}
.icon.card.amex {
  background-position: -93px 0;
}
.icon.card.discover {
  background-position: -62px 0;
}
.icon.card.inactive {
  opacity: 0.2;
  filter: alpha(opacity=20);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}
.grecaptcha-badge {
  display: none !important;
}
/*------ scrollbar ------*/
.mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_container {
  margin: 0 0 50px 0;
}
.mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_container.mCS_no_scrollbar_x {
  margin: 0 auto 50px auto;
}
.mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_scrollTools_horizontal {
  width: 400px;
  max-width: calc(100% - 40px);
  height: 6px;
  margin: 0 auto;
}
.mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_draggerRail {
  height: 2px;
  margin: 0;
  background: #ffffff;
}
.mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_dragger {
  top: -2px;
  height: 6px;
}
.mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_dragger .mCSB_dragger_bar {
  height: inherit;
  margin: 0 auto;
  background: #333333;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media all and (max-width:1024px) {
  .mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_container {
    margin: 0 0 38px 0;
  }
}
@media all and (max-width:768px) {
  .mCustomScrollbar .mCustomScrollBox.mCS-gallery .mCSB_container {
    margin: 0 0 30px 0;
  }
}
