/*@import url(fonts/fonts.css);*/
/*===========================

		 COLORS

===========================*/
/* COLORS */
.black {
  color: #000000;
}
.darker {
  color: #222222;
}
.dark {
  color: #444444;
}
.gray {
  color: #666666;
}
.light {
  color: #999999;
}
.lighter {
  color: #adadad;
}
.lightest {
  color: #ebebeb;
}
.pale {
  color: #f9f9f9;
}
.white {
  color: #ffffff;
}
.purple {
  color: #6f2c68;
}
.purple_light {
  color: #c89bc7;
}
.purple_dark {
  color: #8a5d8d;
}
.gold {
  color: #bcb4a7;
}
.red {
  color: #900;
}
/* BACKGROUND COLORS */
.bg_black {
  background-color: #000000;
}
.bg_darker {
  background-color: #222222;
}
.bg_dark {
  background-color: #444444;
}
.bg_gray {
  background-color: #666666;
}
.bg_light {
  background-color: #999999;
}
.bg_lighter {
  background-color: #adadad;
}
.bg_lightest {
  background-color: #ebebeb;
}
.bg_white {
  background-color: #ffffff;
}
.bg_pale {
  background-color: #f9f9f9;
}
.bg_transparent {
  background-color: transparent;
}
.bg_purple {
  background-color: #6f2c68;
}
.bg_purple_light {
  background-color: #c89bc7;
}
.bg_purple_dark {
  background-color: #8a5d8d;
}
.bg_gold {
  background-color: #bcb4a7;
}
.bg_red {
  background-color: #900;
}
/* ALPHA BACKGROUNDS */
/*===========================

		 FONTS

===========================*/
.font_fix {
  /*-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	text-rendering: geometricPrecision;
	backface-visibility: hidden;*/
}
.font_ultralight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
}
.font_light {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
.font_regular {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.font_medium {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.font_semi {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.font_strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
/*===========================

		 FUNCTIONS

===========================*/
/* BORDER RADIUS */
/* SHADOWS */
.box_shadow_none {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
/* TRANSFORMATIONS */
.preserve3d {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
/*=============================

			FLEX

=============================*/
.flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/*===========================

		CLASSES

===========================*/
.fltLeft {
  float: left;
}
.fltRight {
  float: right;
}
.text_left {
  text-align: left;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.fittext {
  white-space: nowrap;
}
.vertical_align {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.vertical_align > * {
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.imgCenter {
  display: block;
  width: auto;
  margin: 0 auto;
}
.bg_reset {
  border: none;
  background-color: transparent;
  box-shadow: 0 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 0 transparent;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 0;
  -moz-background-clip: padding-box;
  -moz-border-radius: 0;
  background-clip: padding-box;
  border-radius: 0;
}
.ba_reset {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.clearfix:after,
.clear:after,
.cf:after {
  content: "";
  display: table;
  clear: both;
}
.border_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.m0 {
  margin: 0;
}
.m5 {
  margin: 5px;
}
.ma0 {
  margin: 10px;
}
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mt0 {
  margin-top: 0;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mbt0 {
  margin-bottom: 0;
  margin-top: 0;
}
.mbt5 {
  margin-bottom: 5px;
  margin-top: 5px;
}
.mbt10 {
  margin-bottom: 10px;
  margin-top: 10px;
}
/*=============================

		ANIMATIONS

=============================*/
/* MOTION / INTROS */
.fade_in {
  -webkit-animation: fade_in 1000ms ease;
  -moz-animation: fade_in 1000ms ease;
  animation: fade_in 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_in_slow {
  -webkit-animation: fade_in 2s 1s;
  -moz-animation: fade_in 2s 1s;
  animation: fade_in 2s 1s;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_in_down {
  -webkit-animation: fade_in_down 1000ms ease;
  -moz-animation: fade_in_down 1000ms ease;
  animation: fade_in_down 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_in_down_drastic {
  -webkit-animation: fade_in_down_drastic 1000ms ease;
  -moz-animation: fade_in_down_drastic 1000ms ease;
  animation: fade_in_down_drastic 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_in_up {
  -webkit-animation: fade_in_up 1000ms ease;
  -moz-animation: fade_in_up 1000ms ease;
  animation: fade_in_up 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_in_up_drastic {
  -webkit-animation: fade_in_up_drastic 1000ms ease;
  -moz-animation: fade_in_up_drastic 1000ms ease;
  animation: fade_in_up_drastic 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_out {
  -webkit-animation: fade_out 250ms ease;
  -moz-animation: fade_out 250ms ease;
  animation: fade_out 250ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_out_down {
  -webkit-animation: fade_out_down 500ms ease;
  -moz-animation: fade_out_down 500ms ease;
  animation: fade_out_down 500ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_out_down_drastic {
  -webkit-animation: fade_out_down_drastic 1000ms ease;
  -moz-animation: fade_out_down_drastic 1000ms ease;
  animation: fade_out_down_drastic 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_out_up {
  -webkit-animation: fade_out_up 1000ms ease;
  -moz-animation: fade_out_up 1000ms ease;
  animation: fade_out_up 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade_out_up_drastic {
  -webkit-animation: fade_out_up_drastic 1000ms ease;
  -moz-animation: fade_out_up_drastic 1000ms ease;
  animation: fade_out_up_drastic 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.flash_in {
  -webkit-animation: fade_in_flash 500ms ease;
  -moz-animation: fade_in_flash 500ms ease;
  animation: fade_in_flash 500ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.flash_out {
  -webkit-animation: fade_out_flash 1000ms ease;
  -moz-animation: fade_out_flash 1000ms ease;
  animation: fade_out_flash 1000ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/* BUTTONS */
.btn_arrow_hover {
  -webkit-animation: btn_arrow_hover 500ms ease;
  -moz-animation: btn_arrow_hover 500ms ease;
  animation: btn_arrow_hover 500ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.btn_arrow_hover_back {
  -webkit-animation: btn_arrow_hover_back 500ms ease;
  -moz-animation: btn_arrow_hover_back 500ms ease;
  animation: btn_arrow_hover_back 500ms ease;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/* LOADING */
.pulse {
  -webkit-animation: pulse 1s ease-out;
  -moz-animation: pulse 1s ease-out;
  animation: pulse 1s ease-out;
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/****************
 MOTION FUNCTIONS
****************/
/* FADE IN */
@-webkit-keyframes fade_in {
  from {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in {
  from {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in {
  from {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
/* FADE IN AND DOWN */
@-webkit-keyframes fade_in_down {
  from {
    top: -20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_down {
  from {
    top: -20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_down {
  from {
    top: -20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-webkit-keyframes fade_in_down_drastic {
  from {
    top: -500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_down_drastic {
  from {
    top: -500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_down_drastic {
  from {
    top: -500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
/* FADE VERTICAL */
@-webkit-keyframes fade_in_vertical {
  to {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_down_vertical {
  to {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_down_vertical {
  to {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
/* FADE IN AND UP */
@-webkit-keyframes fade_in_up {
  from {
    top: 20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_up {
  from {
    top: 20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_up {
  from {
    top: 20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-webkit-keyframes fade_in_up_footer {
  from {
    bottom: -50px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    bottom: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_up_footer {
  from {
    bottom: -50px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    bottom: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_up_footer {
  from {
    bottom: -50px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    bottom: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-webkit-keyframes fade_in_up_drastic {
  from {
    top: 500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_up_drastic {
  from {
    top: 500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_up_drastic {
  from {
    top: 500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
/* FLASH NOTICE ANIMATIONS */
/* IN */
@-webkit-keyframes fade_in_flash {
  from {
    right: -7px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    right: 7px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fade_in_flash {
  from {
    right: -7px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    right: 7px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@keyframes fade_in_flash {
  from {
    right: -7px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
  to {
    right: 7px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
/* OUT */
@-webkit-keyframes fade_out_flash {
  from {
    right: 7px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    right: -7px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fade_out_flash {
  from {
    right: 7px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    right: -7px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@keyframes fade_out_flash {
  from {
    right: 7px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    right: -7px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
/* FADE OUT */
@-webkit-keyframes fade_out {
  from {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fade_out {
  from {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@keyframes fade_out {
  from {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
/* FADE OUT AND DOWN */
@-webkit-keyframes fade_out_down {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: 20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fade_out_down {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: 20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@keyframes fade_out_down {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: 20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-webkit-keyframes fade_out_down_drastic {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: 500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fade_out_down_drastic {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: 500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@keyframes fade_out_down_drastic {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: 500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
/* FADE OUT AND UP */
@-webkit-keyframes fade_out_up {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: -20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fade_out_up {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: -20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@keyframes fade_out_up {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: -20px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-webkit-keyframes fade_out_up_drastic {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: -500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fade_out_up_drastic {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: -500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
@keyframes fade_out_up_drastic {
  from {
    top: 0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  to {
    top: -500px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}
/****************
 BUTTON FUNCTIONS
****************/
/* ARROW LOOP */
@-webkit-keyframes btn_arrow_hover {
  0% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    right: 0;
  }
  50% {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    right: -100px;
  }
  51% {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    right: 30px;
  }
  100% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    right: 0;
  }
}
@-moz-keyframes btn_arrow_hover {
  0% {
    right: 0;
  }
  50% {
    right: -100px;
  }
  51% {
    right: 30px;
  }
  100% {
    right: 0;
  }
}
@keyframes btn_arrow_hover {
  0% {
    right: 0;
  }
  50% {
    right: -100px;
  }
  51% {
    right: 30px;
  }
  100% {
    right: 0;
  }
}
/* ARROW LOOP BACK */
@-webkit-keyframes btn_arrow_hover_back {
  0% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    left: 0;
  }
  50% {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    left: -50px;
  }
  51% {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    left: 30px;
  }
  100% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    left: 0;
  }
}
@-moz-keyframes btn_arrow_hover_back {
  0% {
    left: 0;
  }
  50% {
    left: -50px;
  }
  51% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes btn_arrow_hover_back {
  0% {
    left: 0;
  }
  50% {
    left: -50px;
  }
  51% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
/****************
 PAGE PRELOAD
****************/
/* PULSE */
@-webkit-keyframes pulse {
  0% {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@-moz-keyframes pulse {
  0% {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes pulse {
  0% {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
}
/*===========================

		GENERAL

===========================*/
html,
body {
  webkit-font-smoothing: subpixel-antialiased;
}
/** HEADINGS **/
/** STYLES **/
a:hover {
  text-decoration: none !important;
}
strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
table th,
table td {
  background-color: transparent;
}
/** FORMS **/
::-webkit-input-placeholder {
  color: #999999 !important;
}
:-moz-placeholder {
  color: #999999 !important;
}
::-moz-placeholder {
  color: #999999 !important;
}
:-ms-input-placeholder {
  color: #999999 !important;
}
.ninja-forms-mask::-webkit-input-placeholder {
  color: #666666 !important;
}
.ninja-forms-mask:-moz-placeholder {
  color: #666666 !important;
}
.ninja-forms-mask::-moz-placeholder {
  color: #666666 !important;
}
.ninja-forms-mask:-ms-input-placeholder {
  color: #666666 !important;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  margin: 0;
  padding: 20px;
  font-size: 20px;
  border: none;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  color: #666666;
  background-color: #f9f9f9;
  -webkit-appearance: none;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: #f9f9f9 !important;
}
fieldset {
  border: none;
}
.fs-search-bar input#fs-search-input {
  border-bottom: 2px solid #ebebeb;
  background-color: transparent !important;
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.fs-search-bar input#fs-search-input:focus {
  border-bottom: 2px solid #666666 !important;
  background-color: transparent !important;
}
.ninja-forms-form-wrap form.ninja-forms-form {
  /*input[type=submit]{
			padding: 15px 80px;
			.bg_blue;
			.white;

			&:hover{ .bg_blue_dark; }
		}*/
}
.ninja-forms-form-wrap form.ninja-forms-form .ninja-forms-required-items {
  display: none;
}
.ninja-forms-form-wrap form.ninja-forms-form select {
  width: 100%;
}
.ninja-forms-form-wrap form.ninja-forms-form .field-wrap {
  margin-bottom: 10px;
}
.ninja-forms-form-wrap form.ninja-forms-form .field-wrap.hidden-wrap {
  margin: 0;
}
.ninja-forms-form-wrap form.ninja-forms-form .list-dropdown-wrap {
  position: relative;
}
.ninja-forms-form-wrap form.ninja-forms-form .list-dropdown-wrap:after {
  content: '\e884';
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'mfn-icons';
  font-size: 32px;
  color: #6f2c68;
}
.ninja-forms-form-wrap form.ninja-forms-form .submit-wrap {
  text-align: center;
}
.ninja-forms-form-wrap form.ninja-forms-form .form_half_width-wrap {
  float: left;
  width: 48%;
}
.ninja-forms-form-wrap form.ninja-forms-form .form_half_width-wrap + .form_half_width-wrap {
  margin-left: 4%;
}
.ninja-forms-form-wrap form.ninja-forms-form .form_half_width-wrap input {
  margin-bottom: 0;
}
.btn_text_input {
  text-transform: none;
  border-bottom: 1px solid #adadad;
  padding: 3px 80px 3px 3px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
/** BUTTONS **/
*:focus {
  outline: none !important;
}
select:focus {
  outline: none;
}
a.continue-shopping.accent {
  color: #222222;
}
.vc_btn3 {
  text-transform: uppercase;
}
.vc_btn3.vc_btn3-style-outline.vc_btn3-color-purple {
  color: #6f2c68;
  border-color: #6f2c68;
}
/*===========================

		CLASSES

===========================*/
.scj_masonry {
  margin: -10px -10px 0 -10px;
}
.scj_masonry .vc_column_container {
  padding: 0 10px;
}
.scj_newsletter_wrapper {
  position: relative;
}
.scj_newsletter_wrapper input {
  border: none;
}
.scj_newsletter_wrapper input[type=text] {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  background-color: #ebebeb;
}
.scj_newsletter_wrapper input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 11px;
  margin: 0;
  border: none;
  background-color: #999999;
  color: #444444;
}
.img_stretch .vc_figure {
  display: block;
}
.img_stretch .vc_figure .vc_single_image-wrapper {
  display: block;
}
.img_stretch .vc_figure .vc_single_image-wrapper img {
  width: 100%;
}
/*===========================

	  SITE ELEMENTS

===========================*/
/* HEADINGS */
/* PARALLAX */
/* IMAGE BOXES */
.ult-new-ib {
  background-color: #000000;
  /* LARGE SCREENS */
  /* SMALL SCREEN DESTOP / LAPTOP */
  /* SINGLE COL (MOBILE / TABLET) */
}
.ult-new-ib,
.wpb_column > .wpb_wrapper .ult-new-ib {
  margin-bottom: 20px;
}
.ult-new-ib .ult_img_wrapper {
  position: absolute;
  width: 105%;
  height: 100%;
  left: -5%;
  background-size: cover;
  background-position: center;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.ult-new-ib .ult-new-ib-desc {
  bottom: 10px;
  min-height: 0;
}
.ult-new-ib .ult-new-ib-desc h2.ult-new-ib-title {
  font-size: 50px;
  line-height: 45px;
  font-weight: 700 !important;
  text-transform: uppercase;
}
.ult-new-ib .ult-new-ib-desc .ult-new-ib-content {
  padding: 5px 0 0 5px;
}
.ult-new-ib .ult-new-ib-desc .ult-new-ib-content span {
  padding: 8px;
  border: 2px solid #ffffff;
}
.ult-new-ib.tease_840 {
  height: 630px;
}
.ult-new-ib.tease_660 {
  height: 495px;
}
.ult-new-ib.tease_460 {
  height: 345px;
}
.ult-new-ib.tease_310 {
  height: 230px;
}
@media (min-width: 1800px) {
  .ult-new-ib.tease_840 {
    height: 840px;
  }
  .ult-new-ib.tease_660 {
    height: 660px;
  }
  .ult-new-ib.tease_460 {
    height: 460px;
  }
  .ult-new-ib.tease_310 {
    height: 310px;
  }
}
@media (max-width: 1440px) {
  .ult-new-ib.tease_840 {
    height: 462.5px;
  }
  .ult-new-ib.tease_660 {
    height: 360px;
  }
  .ult-new-ib.tease_460 {
    height: 248.75px;
  }
  .ult-new-ib.tease_310 {
    height: 166.5px;
  }
  .ult-new-ib .ult-new-ib-desc h2.ult-new-ib-title {
    font-size: 36px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ult-new-ib .ult-new-ib-desc h2.ult-new-ib-title {
    font-size: 32px;
    line-height: 30px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .ult-new-ib .ult-new-ib-desc .ult-new-ib-content {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .ult-new-ib.tease_840,
  .ult-new-ib.tease_660,
  .ult-new-ib.tease_460,
  .ult-new-ib.tease_310 {
    height: 250px;
  }
  .ult-new-ib .ult_img_wrapper {
    left: 0;
  }
  .ult-new-ib .ult-new-ib-desc h2.ult-new-ib-title {
    font-size: 32px;
    line-height: 30px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .ult-new-ib .ult-new-ib-desc .ult-new-ib-content {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
.ult-new-ib:hover .ult_img_wrapper {
  left: 0;
}
/* ICONS */
.aio-icon,
.vc_row .aio-icon {
  width: auto;
  height: auto;
  display: inline-block;
  line-height: 2em;
}
/* CAROUSEL */
.wpb_images_carousel.carousel_stretch .vc_carousel-slideline-inner .vc_item .vc_inner {
  text-align: center;
}
.wpb_images_carousel.carousel_stretch .vc_carousel-slideline-inner .vc_item .vc_inner img {
  width: 100%;
  height: auto;
}
.wpb_images_carousel.carousel_stretch .vc_images_carousel .vc_carousel-indicators li {
  background-color: transparent;
  border-color: #fff;
}
.wpb_images_carousel.carousel_stretch .vc_images_carousel .vc_carousel-indicators li.vc_active {
  background-color: #fff;
}
/*===========================

		SITE TEMPLATE

===========================*/
/* HEADER */
#mobile-header {
  padding-top: 8px;
  padding-bottom: 8px;
}
#mobile-header #mobile-logo.has-img img {
  max-height: 60px;
}
/* TOP NAV */
#top_menu_wrapper {
  position: relative;
}
#top_menu_wrapper ul.menu {
  text-align: center;
}
#top_menu_wrapper ul.menu > li {
  display: inline-block;
}
#top_menu_wrapper ul.menu > li > a {
  display: block;
  padding: 53px 15px;
  color: #444444;
}
#top_menu_wrapper ul.menu > li > a:hover {
  color: #6f2c68 !important;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu > ul.sub-menu {
  z-index: -1;
  background-color: #f9f9f9;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu > ul.sub-menu > li > ul.sub-menu {
  background-color: transparent;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu:hover > ul.sub-menu {
  z-index: 999;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu.sf-mega-menu-fw > ul.sub-menu {
  width: 100%;
  padding: 10px 0;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu.sf-mega-menu-fw > ul.sub-menu > li:nth-child(5n + 6) {
  clear: both;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu.sf-mega-menu-fw > ul.sub-menu > li > a {
  margin-top: 5px;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu.sf-mega-menu-fw > ul.sub-menu > li > ul.sub-menu > li a {
  padding: 5px 0;
}
#top_menu_wrapper ul.menu > li.menu-item.sf-mega-menu.sf-mega-menu-natural-width > ul.sub-menu > li:nth-child(5n + 6) {
  clear: both;
}
.menu-item-desc {
  display: none;
}
/* VERTICAL NAV */
#nav_search_wrapper,
#nav_menu_wrapper,
#nav_lower_wrapper,
#scj_filters {
  padding: 0 40px;
}
#nav_search_wrapper form {
  position: relative;
  padding-bottom: 10px;
}
#nav_search_wrapper form label,
#nav_search_wrapper form input[type=submit] {
  display: none;
}
#nav_search_wrapper form input[type=text],
#nav_search_wrapper form input[type=search] {
  border: none;
  font-size: 14px;
  height: 36px;
  width: 100%;
  background-color: #ebebeb;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#nav_search_wrapper form:after {
  content: "\e605";
  font-family: 'atelier';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  font-size: 18px;
  padding-right: 15px;
  position: absolute;
  float: right;
  top: 9px;
  right: 0;
  color: #333;
}
#nav_menu_wrapper #main-navigation ul.menu > li {
  position: relative;
  text-align: left;
}
#nav_menu_wrapper #main-navigation ul.menu > li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ebebeb;
}
#nav_menu_wrapper #main-navigation ul.menu > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: #222222;
}
#nav_menu_wrapper #main-navigation ul.menu > li > a:after {
  content: '\f0da';
  position: absolute;
  top: 10px;
  font-family: 'Defaults';
  font-size: 14px;
  padding-left: 5px;
  color: #222222;
}
#nav_menu_wrapper #main-navigation ul.menu > li > ul.sub-menu > li:nth-child(5) {
  clear: both;
}
#nav_lower_wrapper {
  margin-top: 40px;
}
#nav_lower_wrapper .widget {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ebebeb;
}
#nav_lower_wrapper .widget #widget_phone {
  margin-bottom: 3px;
}
#nav_lower_wrapper .widget #widget_phone .aio-icon {
  line-height: normal !important;
}
#nav_lower_wrapper a#nav_contact {
  position: relative;
  color: #c89bc7;
}
#nav_lower_wrapper a#nav_contact:after {
  content: '\f0da';
  position: absolute;
  top: 0;
  font-family: 'Defaults';
  font-size: 14px;
  padding-left: 5px;
  color: #c89bc7;
}
#scj_filters {
  margin-top: 50px;
}
#scj_filters .widget .widget-heading {
  position: relative;
  margin-bottom: 0;
}
#scj_filters .widget .widget-heading .spb-heading {
  float: none;
  cursor: pointer;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
#scj_filters .widget .widget-heading .spb-heading:after {
  content: '-';
  position: relative;
  left: 10px;
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
#scj_filters .widget > ul {
  display: block;
}
#scj_filters .widget.closed .widget-heading .spb-heading:after {
  content: '+';
}
#scj_filters .widget.closed > ul {
  display: none;
}
ul.yith-wcan.yith-wcan-list li.chosen a:before {
  color: #ffffff;
}
ul.yith-wcan.yith-wcan-color {
  max-width: 150px;
}
ul.yith-wcan.yith-wcan-color li {
  width: 24px;
  height: 24px;
  margin: 3px 3px 3px 0;
  border: 1px solid transparent;
}
ul.yith-wcan.yith-wcan-color li a {
  position: relative;
  margin: 0;
  border: 1px solid transparent;
}
ul.yith-wcan.yith-wcan-color li a[title="White"] {
  border: 1px solid #adadad;
}
ul.yith-wcan.yith-wcan-color li.chosen {
  position: relative;
  top: 5px;
  border: 1px solid #999999;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 50%;
  -moz-background-clip: padding-box;
  -moz-border-radius: 50%;
  background-clip: padding-box;
  border-radius: 50%;
}
ul.yith-wcan.yith-wcan-color li.chosen a {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
}
/* CART / WISHLIST */
#scj_cart_wishlist {
  display: none;
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 99;
  text-align: center;
}
#scj_cart_wishlist ul.menu > li {
  display: block;
  float: none !important;
  width: 100%;
  text-align: center;
}
#scj_cart_wishlist ul.menu > li > a {
  display: inline-block;
  padding: 15px 18px;
  background-color: #f9f9f9;
}
#scj_cart_wishlist ul.menu > li > a.cart-contents {
  background-color: #c89bc7;
  color: #ffffff;
  padding: 15px 18px;
}
#scj_cart_wishlist ul.menu > li > a.cart-contents .num-items {
  right: 21px;
}
#scj_cart_wishlist ul.menu > li ul.sub-menu {
  left: auto !important;
  right: 100%;
  top: 0 !important;
}
#scj_cart_wishlist ul.menu > li ul.sub-menu > li {
  background-color: #f9f9f9;
}
#scj_cart_wishlist ul.menu > li:hover > a {
  background-color: #c89bc7;
}
#scj_cart_wishlist ul.menu > li:hover > a,
#scj_cart_wishlist ul.menu > li:hover > a * {
  color: #ffffff !important;
}
#scj_cart_wishlist ul.menu > li:hover > a:after {
  display: none;
}
.mobile-header-opts .shopping-bag-item a > span.num-items {
  line-height: 28px !important;
}
#mobile-menu ul li.shopping-bag-item > a span.num-items {
  right: 23px;
}
/* TOPBAR */
#top-bar {
  padding: 10px;
  background-color: #f9f9f9 !important;
  border-width: 1px;
}
#top-bar > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#top-bar > .container .tb-left {
  width: 66.6666%;
}
#top-bar > .container .tb-right {
  width: 33.3333%;
}
#top-bar > .container h6 {
  margin: 0;
}
#top-bar > .container .widget {
  padding-bottom: 0;
}
#top-bar > .container .scj_topbar.topbar_right .custom-html-widget {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#top-bar > .container .scj_topbar.topbar_right .custom-html-widget > div {
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flexbox: 1 0 50%;
  flex: 1 0 50%;
}
#top-bar > .container .scj_topbar.topbar_right .custom-html-widget .topbar_left_newsletter {
  text-align: center;
}
#top-bar .menu ul.sub-menu {
  border: 1px solid #ebebeb;
  box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .mhs-tablet-land #mobile-top-text {
    background-color: #f9f9f9 !important;
    border-width: 1px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
/* FOOTER */
#footer-wrap #footer .container {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  #footer-wrap #footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#footer-wrap #footer #footer-widgets {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer-wrap #footer #footer-widgets .col-sm-12 {
  float: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer-wrap #footer #footer-widgets .col-sm-12 > section {
  padding: 0 20px;
  margin-bottom: 40px;
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flexbox: 1 0 100%;
  flex: 1 0 100%;
}
@media screen and (min-width: 580px) {
  #footer-wrap #footer #footer-widgets .col-sm-12 > section {
    -webkit-flex: 1 0 50%;
    -moz-flex: 1 0 50%;
    -ms-flexbox: 1 0 50%;
    flex: 1 0 50%;
  }
}
@media screen and (min-width: 768px) {
  #footer-wrap #footer #footer-widgets .col-sm-12 > section {
    -webkit-flex: 1 0 33.3333%;
    -moz-flex: 1 0 33.3333%;
    -ms-flexbox: 1 0 33.3333%;
    flex: 1 0 33.3333%;
  }
}
@media screen and (min-width: 1025px) {
  #footer-wrap #footer #footer-widgets .col-sm-12 > section {
    -webkit-flex: 1 0 25%;
    -moz-flex: 1 0 25%;
    -ms-flexbox: 1 0 25%;
    flex: 1 0 25%;
  }
}
@media screen and (min-width: 1200px) {
  #footer-wrap #footer #footer-widgets .col-sm-12 > section {
    -webkit-flex: 1 0 16.6666%;
    -moz-flex: 1 0 16.6666%;
    -ms-flexbox: 1 0 16.6666%;
    flex: 1 0 16.6666%;
  }
}
#footer-wrap #footer .widget-title {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
#footer-wrap #footer .widget-title span {
  border-bottom: none;
}
@media screen and (max-width: 579px) {
  #footer-wrap #footer .widget-title {
    float: none;
  }
}
#footer-wrap #footer .textwidget,
#footer-wrap #footer .textwidget p,
#footer-wrap #footer .textwidget div,
#footer-wrap #footer .textwidget li,
#footer-wrap #footer .textwidget a {
  color: #444444;
}
#footer-wrap #footer .textwidget ul:not(.social-icons) li {
  padding: 3px 0;
}
#footer-wrap #footer .textwidget ul:not(.social-icons) li a {
  padding: 0;
}
#footer-wrap #footer .widget_recent_entries ul li a {
  padding-bottom: 0;
}
/*===========================

		PAGE TEMPLATES

===========================*/
/*=========
	ALL
=========*/
#container {
  overflow: hidden;
}
.vertical-header #container #main-container {
  padding: 34px 35px 0 35px;
}
.vertical-header #container #header-section {
  padding-top: 34px;
}
/* HEADER BANNER */
#sf-header-banner {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: none;
  background-color: #222222;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
#sf-header-banner p,
#sf-header-banner a {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
}
#sf-header-banner a {
  text-decoration: underline;
}
#sf-header-banner a:hover {
  text-decoration: underline !important;
  color: #c89bc7;
}
.fancy-heading-wrap.fancy-style .fancy-heading .heading-text > h1 {
  font-size: 40px;
  line-height: 60px;
  text-transform: uppercase;
}
.scj_page_heading_img_wrapper img {
  width: 100%;
}
.uvc-heading.font_light h1,
.uvc-heading.font_light h2,
.uvc-heading.font_light h3,
.uvc-heading.font_light h4,
.uvc-heading.font_light h5,
.uvc-heading.font_light h6 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
}
/* SECTIONS */
.vc_section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .vc_section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* WIDGETS */
.widget .widget-heading h4 {
  font-weight: 400;
  text-transform: uppercase;
}
/*==========
	HOME
==========*/
/* SLIDER */
#scj_home_slider {
  padding-left: 300px;
}
/*===================================

		ELEMENTOR STRUCTURE

===================================*/
/** General */
body.elementor-page .inner-page-wrap {
  margin-top: 0;
}
/** Sections */
.elementor-top-section .elementor-column-gap-wide > .elementor-row > .elementor-column {
  /*&.elementor-col-50:first-child{
					>.elementor-element-populated{
						padding-left: 10px;
						padding-right: 30px;
					}
				}

				&.elementor-col-50:last-child{
					>.elementor-element-populated{
						padding-left: 30px;
						padding-right: 10px;
					}
				}*/
}
.elementor-top-section .elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated {
  padding-top: 10px;
  padding-bottom: 10px;
}
/*===================================

		ELEMENTOR WIDGETS

===================================*/
/** Text */
.elementor-widget-text-editor ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.elementor-widget-text-editor ul li:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #bcb4a7;
  transform: rotate(45deg);
}
/** Call to action */
.elementor-widget-call-to-action .elementor-widget-container,
.elementor-widget-call-to-action .elementor-cta {
  overflow: visible;
}
.elementor-widget-call-to-action .elementor-cta__content {
  box-shadow: 0 8px 16px 1px rgba(0, 0, 0, 0.1);
}
/*===========================

		BLOG PAGES

===========================*/
/*============
  CAROUSEL
============*/
.spb_recent_posts_widget {
  /* ARROWS */
}
.spb_recent_posts_widget .title-wrap.has-arrows {
  display: none;
  margin-bottom: 0;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post {
  position: relative;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .figure-wrap .date-overlay {
  display: none;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .figure-wrap figure {
  margin-bottom: 0;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .details-wrap {
  position: absolute;
  z-index: 99;
  width: calc(100% - 30px);
  bottom: 0;
  left: 15px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .details-wrap h5 {
  text-align: center;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .details-wrap h5 a {
  color: #444444;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .details-wrap h5 a:hover {
  color: #222222;
}
.spb_recent_posts_widget .posts-carousel .recent-posts .recent-post .details-wrap .blog-item-details {
  display: none;
}
/*============
   ARCHIVE
============*/
.blog-items .blog-item .date-overlay {
  display: none;
}
.posts-type-bold .recent-post .details-wrap,
.masonry-items .blog-item .details-wrap,
.blog-grid-items .blog-item > div,
.product-shadows .preview-slider-item-wrapper,
.masonry-items .blog-item .details-wrap:before {
  background-color: #f9f9f9;
}
.posts-type-bold .recent-post.has-thumb:hover .details-wrap,
.posts-type-bold .recent-post.no-thumb:hover .details-wrap,
.bold-items .blog-item:hover,
.masonry-items .blog-item:hover .details-wrap,
.blog-grid-items .blog-item:hover > div,
.instagram-item .inst-overlay,
.masonry-items .blog-item:hover .details-wrap:before {
  background-color: #f9f9f9;
}
.blog-wrap .blog-items-wrap .blog-items .blog-item h1,
.blog-wrap .blog-items-wrap .blog-items .blog-item h2,
.blog-wrap .blog-items-wrap .blog-items .blog-item h3,
.blog-wrap .blog-items-wrap .blog-items .blog-item h4,
.blog-wrap .blog-items-wrap .blog-items .blog-item h5,
.blog-wrap .blog-items-wrap .blog-items .blog-item h6,
.blog-wrap .blog-items-wrap .blog-items .blog-item p,
.blog-wrap .blog-items-wrap .blog-items .blog-item a,
.blog-wrap .blog-items-wrap .blog-items .blog-item span,
.blog-wrap .blog-items-wrap .blog-items .blog-item div {
  color: #444444 !important;
}
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover h1,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover h2,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover h3,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover h4,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover h5,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover h6,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover p,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover a,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover span,
.blog-wrap .blog-items-wrap .blog-items .blog-item:hover div {
  color: #222222 !important;
}
.masonry-items .blog-item .details-wrap,
.masonry-items .blog-item .grid-no-image {
  padding: 25px 50px 100px 50px;
}
#scj_posts_featured {
  margin: -50px 0 50px 0;
  padding: 50px 0;
}
/*===================================

		WOOCOMMERCE - PRODUCTS

===================================*/
/* UNIVERSAL */
.woocommerce .inner-page-wrap.woocommerce-shop-page {
  margin-top: 35px;
}
.woocommerce .products .product .product-details h3,
.woocommerce ul.products .product .product-details h3,
.woocommerce .products li.product .product-details h3,
.woocommerce ul.products li.product .product-details h3,
.woocommerce .products .product .product-details .price,
.woocommerce ul.products .product .product-details .price,
.woocommerce .products li.product .product-details .price,
.woocommerce ul.products li.product .product-details .price {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
.woocommerce .products .product .product-details .posted_in,
.woocommerce ul.products .product .product-details .posted_in,
.woocommerce .products li.product .product-details .posted_in,
.woocommerce ul.products li.product .product-details .posted_in {
  display: none;
}
.woocommerce .star-rating,
.woocommerce .text-rating {
  display: none !important;
}
.woocommerce .out-of-stock-badge {
  padding: 0 10px;
  background-color: #900;
}
.woocommerce .out-of-stock-badge:before,
.woocommerce .out-of-stock-badge:after {
  display: none;
}
/** CAROUSEL */
@media (max-width: 580px) {
  .elementor-widget-posts-extra .ee-arrows .ee-swiper__button--prev {
    left: -70px;
  }
}
.elementor-widget-posts-extra .ee-arrows .ee-swiper__button--prev i:before {
  content: url('../images/icon_left_deco.svg');
  display: block;
  width: 50px;
}
@media (max-width: 580px) {
  .elementor-widget-posts-extra .ee-arrows .ee-swiper__button--next {
    right: -70px;
  }
}
.elementor-widget-posts-extra .ee-arrows .ee-swiper__button--next i:before {
  content: url('../images/icon_right_deco.svg');
  display: block;
  width: 50px;
}
/* PRODUCT LOOP */
.woocommerce-count-wrap .woocommerce-show-products {
  display: none;
}
.yith-infs-loader {
  position: absolute;
  width: 100%;
  bottom: -50px;
  padding: 100px 0;
}
.shop-layout-opts {
  display: none !important;
}
/* FILTER DROPDOWNS */
.yith-wcan-select-wrapper {
  max-width: none;
  max-height: 600px;
  position: relative;
  height: 0;
  -moz-transition: height 350ms auto;
  -webkit-transition: height 350ms auto;
  -o-transition: height 350ms auto;
  transition: height 350ms auto;
}
.yit-wcan-select-open.active + .yith-wcan-select-wrapper {
  height: auto;
}
.yith-wcan-select-wrapper ul li a {
  padding: 0 0 0 10px !important;
}
/* SINGLE PRODUCT PAGE */
.woocommerce.single-product .product .summary {
  /** CART */
}
.woocommerce.single-product .product .summary .summary-top {
  margin-bottom: 0;
  padding: 0;
}
.woocommerce.single-product .product .summary .summary-top h1 {
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
.woocommerce.single-product .product .summary .scj_product_designer {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.woocommerce.single-product .product .summary .product-price-wrap {
  margin: 30px 0;
}
.woocommerce.single-product .product .summary .scj_call_for_pricing {
  margin-bottom: 25px;
}
.woocommerce.single-product .product .summary .stock {
  display: none;
}
.woocommerce.single-product .product .summary .yith-wcbr-brands {
  display: none;
}
.woocommerce.single-product .product .summary .sf-share-counts h3.share-text {
  font-size: 18px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.woocommerce.single-product .product .summary .sf-share-counts a.sf-share-link {
  line-height: 20px;
}
.woocommerce.single-product .product .summary .sf-share-counts a.sf-share-link .count {
  display: none;
}
.woocommerce.single-product .product .summary .scj_product_desc {
  margin: 25px 0;
}
.woocommerce.single-product .product .summary .available-on-backorder {
  position: relative;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #900;
}
.woocommerce.single-product .product .summary .stock.in-stock {
  display: none;
}
.woocommerce.single-product .product .summary #scj_prod_stock.scj_qty_hidden + .quantity {
  display: none;
}
.woocommerce.single-product .product .summary .cart .quantity,
.woocommerce.single-product .product .summary .cart .add_to_cart_button,
.woocommerce.single-product .product .summary .cart .yith-wcwl-add-to-wishlist {
  margin: 0 !important;
}
@media (max-width: 959px) {
  .woocommerce.single-product .product .summary .cart .quantity,
  .woocommerce.single-product .product .summary .cart .add_to_cart_button,
  .woocommerce.single-product .product .summary .cart .yith-wcwl-add-to-wishlist {
    float: none;
    width: 100%;
  }
}
.woocommerce.single-product .product .review_add_wrapper button {
  border: 2px solid #222222;
  padding: 16px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #222222;
  background-color: transparent;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 0;
  -moz-background-clip: padding-box;
  -moz-border-radius: 0;
  background-clip: padding-box;
  border-radius: 0;
}
.woocommerce.single-product .product .review_add_wrapper button:hover {
  border-color: #6f2c68;
  color: #6f2c68;
}
.woocommerce.single-product .product #scj_btn_review_add_wrapper {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.woocommerce.single-product .product #scj_btn_review_add_wrapper.review_btn_hidden {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.woocommerce.single-product .product #product-reviews-wrap.hide_reviews {
  display: none;
}
#scj_tabs_wrapper {
  max-width: 800px;
  margin: 50px auto;
  border-top: 2px solid #ebebeb;
}
#scj_tabs_wrapper .scj_tab {
  border-bottom: 2px solid #ebebeb;
}
#scj_tabs_wrapper .scj_tab .scj_tab_heading h4 a {
  position: relative;
  display: block;
  color: #222222;
}
#scj_tabs_wrapper .scj_tab .scj_tab_heading h4 a:hover {
  color: #444444;
}
#scj_tabs_wrapper .scj_tab .scj_tab_heading h4 a:focus {
  color: #222222;
}
#scj_tabs_wrapper .scj_tab .scj_tab_heading h4 a:after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
#scj_tabs_wrapper .scj_tab .scj_tab_body {
  display: none;
}
#scj_tabs_wrapper .scj_tab .scj_tab_body p {
  padding: 20px;
}
#scj_tabs_wrapper .scj_tab.scj_tab_active .scj_tab_heading h4 a:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#scj_tabs_wrapper .scj_tab.scj_tab_active .scj_tab_body {
  display: block;
}
/*===================================

		WOOCOMMERCE - GENERAL

===================================*/
/** CART / CHECKOUT **/
.woocommerce-checkout,
.woocommerce-cart {
  /* CART ITEMS */
  /* ACTIONS */
}
.woocommerce-checkout table tr.shipping,
.woocommerce-cart table tr.shipping {
  vertical-align: top;
}
.woocommerce-checkout table tr th,
.woocommerce-cart table tr th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.woocommerce-checkout .cart_item .product-name,
.woocommerce-cart .cart_item .product-name {
  line-height: 16px;
}
.woocommerce-checkout .cart_item .product-name .backorder_notification,
.woocommerce-cart .cart_item .product-name .backorder_notification {
  color: #900;
}
.woocommerce-checkout .cart_item .product-name .backorder_notification:before,
.woocommerce-cart .cart_item .product-name .backorder_notification:before {
  content: '!! ';
}
.woocommerce-checkout .cart_item .product-quantity .qty-adjust,
.woocommerce-cart .cart_item .product-quantity .qty-adjust {
  display: none;
}
@media (min-width: 1024px) and (max-width: 1170px) {
  /** CART / CHECKOUT **/
  .woocommerce-checkout,
  .woocommerce-cart {
    /* ACTIONS */
  }
  .woocommerce-checkout .actions .coupon,
  .woocommerce-cart .actions .coupon {
    float: none !important;
  }
  .woocommerce-checkout .actions .coupon input,
  .woocommerce-cart .actions .coupon input {
    width: 48% !important;
    margin-right: 0 !important;
  }
  .woocommerce-checkout .actions .coupon input[name="apply_coupon"],
  .woocommerce-cart .actions .coupon input[name="apply_coupon"] {
    float: right !important;
  }
  .woocommerce-checkout .actions input[name="update_cart"],
  .woocommerce-cart .actions input[name="update_cart"] {
    clear: both;
    float: none !important;
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 1024px) {
  /*===========================

			SITE TEMPLATE

	===========================*/
  /* HEADER */
  #top_menu_wrapper {
    display: none;
  }
  #mobile-header-sticky-wrapper {
    height: 81px;
  }
  #mobile-header-sticky-wrapper #mobile-header {
    padding: 10px;
  }
  #mobile-header-sticky-wrapper #mobile-header a.mobile-menu-link {
    top: 3px;
  }
  #mobile-header-sticky-wrapper #mobile-header #mobile-logo,
  #mobile-header-sticky-wrapper #mobile-header #mobile-logo img {
    max-height: 60px;
  }
  /* HEADER BANNER */
  #sf-header-banner {
    position: relative;
    width: auto;
  }
  #sf-header-banner + #main-container {
    padding-top: 0 !important;
  }
  .fancy-style .fancy-heading .heading-text > h1,
  .page-heading .heading-text > h1 {
    font-size: 28px !important;
    line-height: 28px !important;
  }
  /*===========================

			CONTENT

	===========================*/
  /* SLIDER */
  #scj_home_slider {
    padding-left: 0;
  }
  /*===================================

			WOOCOMMERCE - PRODUCTS

	===================================*/
  /* PRODUCT FILTERS */
  .sf-mobile-shop-filters-link,
  .mobile-woo-aux-options {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #222222;
  }
  .shop-layout-opts,
  .woocommerce-count-wrap {
    display: none;
  }
  .product figure .cart-overlay {
    display: none;
  }
  .sf-mobile-shop-filters .widget {
    border-bottom: none;
    padding: 0 15px !important;
  }
  .sf-mobile-shop-filters .widget > .widget-heading {
    display: block;
    margin: 35px 0 10px 0;
  }
  .sf-mobile-shop-filters .widget select {
    border-bottom-width: 2px;
  }
  .sf-mobile-shop-filters .widget .yith-wcan-select-wrapper ul.yith-wcan-select li.chosen a {
    position: relative;
    padding: 10px 10px 10px 28px !important;
    background-image: none;
  }
  .sf-mobile-shop-filters .widget .yith-wcan-select-wrapper ul.yith-wcan-select li.chosen a:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 8px;
    color: #ffffff;
  }
}
@media only screen and (max-width: 991px) {
  /* A weird one but whatevs */
  .woocommerce .cart input[name="update_cart"] {
    width: auto !important;
    margin: 0;
  }
}
@media (max-width: 979px) {
  /* HEADER BANNER */
  #sf-header-banner {
    font-size: 11px;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  /*===================================

			WOOCOMMERCE - PRODUCTS

	===================================*/
  /* SINGLE PRODUCT PAGE */
  .woocommerce form.cart .yith-wcwl-add-to-wishlist {
    float: none;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  /*===========================

			PAGE TEMPLATES

	===========================*/
  /* HEADER */
  #scj_cart_wishlist {
    display: none;
  }
  #sf-header-banner {
    display: block;
  }
  .fancy-heading-wrap,
  .woocommerce.post-type-archive-product .fancy-heading-wrap {
    margin: 0;
  }
  #breadcrumbs {
    display: block;
    padding: 0 30px;
  }
  #breadcrumbs > .container {
    padding: 0;
  }
  /* MAIN CONTAINER */
  body.vertical-header #container #main-container {
    padding: 25px 25px 0 25px;
  }
  body.vertical-header.woocommerce #container #main-container {
    padding: 0;
  }
  .woocommerce .inner-page-wrap.woocommerce-shop-page {
    margin-top: 15px;
  }
  /* SCROLL TOP */
  #back-to-top {
    width: 35px;
    height: 35px;
    padding: 0;
  }
  #back-to-top > i {
    font-size: 20px;
    width: 20px;
    line-height: 35px;
  }
  /* CLASSES */
  ._767_text_center * {
    text-align: center !important;
  }
  /*===================================

			WOOCOMMERCE

	===================================*/
  /* PRODUCT FILTERS */
  .sf-mobile-shop-filters {
    margin-top: 20px;
  }
  .sf-mobile-shop-filters .widget {
    padding: 0 !important;
  }
  .sf-mobile-shop-filters .widget > .widget-heading {
    margin: 15px 0 10px 0;
  }
  /* SINGLE PRODUCT PAGE */
  .woocommerce form.cart div.quantity {
    float: left !important;
  }
  /* CART / CHECKOUT */
  .woocommerce-checkout,
  .woocommerce-cart {
    /* ACTIONS */
  }
  .woocommerce-checkout .actions .coupon,
  .woocommerce-cart .actions .coupon {
    float: none !important;
    margin-bottom: 0 !important;
  }
  .woocommerce-checkout .actions .coupon input,
  .woocommerce-cart .actions .coupon input {
    width: 48% !important;
    margin-right: 0 !important;
  }
  .woocommerce-checkout .actions .coupon input[name="apply_coupon"],
  .woocommerce-cart .actions .coupon input[name="apply_coupon"] {
    float: right !important;
  }
  .woocommerce-checkout .actions input[name="update_cart"],
  .woocommerce-cart .actions input[name="update_cart"] {
    clear: both;
    float: none !important;
    width: 100% !important;
    margin: 15px 0 0 0;
  }
  /*===========================

			BLOG PAGES

	===========================*/
  /*============
	   SINGLE
	============*/
  .single-post .page-heading {
    padding: 40px 0 10px 0;
  }
  .single-post .page-heading h1 {
    text-align: center;
  }
}
@media (max-width: 580px) {
  /* FOOTER */
  /* CLASSES */
  ._580_text_center * {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  /*===================================

			WOOCOMMERCE

	===================================*/
  .woocommerce {
    /* PRODUCT LOOP */
    /* SINGLE PRODUCT PAGE */
    /* CHECKOUT */
  }
  .woocommerce ul.products li.product {
    width: 50% !important;
  }
  .woocommerce ul.products li.product .add-to-cart-wrap {
    display: none;
  }
  .woocommerce form.cart div.quantity {
    float: none !important;
  }
  .woocommerce form.cart button.add_to_cart_button,
  .woocommerce form.cart div.yith-wcwl-add-to-wishlist {
    float: none !important;
    margin: 0 0 20px 0;
    width: 100%;
    text-align: center;
  }
  .woocommerce .stock.available-on-backorder {
    font-size: 0.9em;
  }
  .woocommerce .lSAction .lSPrev,
  .woocommerce .lSAction .lSNext {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .woocommerce .lSAction .lSPrev {
    right: auto;
    left: 0;
    bottom: 0;
  }
  .woocommerce .lSAction .lSNext {
    right: 0;
    bottom: 0;
  }
  .woocommerce .checkout #ship-to-different-address label {
    font-size: 16px;
  }
}
/*===================================

			HEIGHT QUERIES

===================================*/
