/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
/* line 7, scss/plugins/_owl.carousel.scss */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
/* line 16, scss/plugins/_owl.carousel.scss */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

/* line 22, scss/plugins/_owl.carousel.scss */
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 27, scss/plugins/_owl.carousel.scss */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* line 32, scss/plugins/_owl.carousel.scss */
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* line 40, scss/plugins/_owl.carousel.scss */
.owl-carousel .owl-item {
  float: left;
}

/* line 43, scss/plugins/_owl.carousel.scss */
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

/* line 47, scss/plugins/_owl.carousel.scss */
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* fix */
/* line 57, scss/plugins/_owl.carousel.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
 *  Owl Carousel CSS3 Transitions
 *  v1.3.2
 */
/* line 72, scss/plugins/_owl.carousel.scss */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
/* line 82, scss/plugins/_owl.carousel.scss */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

/* line 88, scss/plugins/_owl.carousel.scss */
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
/* line 94, scss/plugins/_owl.carousel.scss */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

/* line 99, scss/plugins/_owl.carousel.scss */
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
/* line 105, scss/plugins/_owl.carousel.scss */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

/* line 110, scss/plugins/_owl.carousel.scss */
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
/* line 116, scss/plugins/_owl.carousel.scss */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

/* line 122, scss/plugins/_owl.carousel.scss */
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* ==========================================================================
   Pretty Photo style start
   ========================================================================== */
/* line 5, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_top,
body div.pp_default .pp_top .pp_middle,
body div.pp_default .pp_top .pp_left,
body div.pp_default .pp_top .pp_right,
body div.pp_default .pp_bottom,
body div.pp_default .pp_bottom .pp_left,
body div.pp_default .pp_bottom .pp_middle,
body div.pp_default .pp_bottom .pp_right {
  background: none;
  display: none;
}

/* line 17, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_content_container .pp_left, body div.pp_default .pp_content_container .pp_right {
  background: none;
  padding: 0px;
}

/* line 22, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_expand {
  display: none !important;
}

/* line 26, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_content {
  background: none;
  margin: 0 auto;
}

/* line 31, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_loaderIcon {
  background-color: #fff;
  border-radius: 20px;
}

/* line 36, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_content .ppt {
  color: #f8f8f8;
}

/* line 37, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_close {
  width: 30px;
  height: 30px;
  background: url(img/prettyPhoto/sprite.png) 2px 1px no-repeat;
  cursor: pointer;
}

/* line 38, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_gallery ul li a {
  background: url(img/prettyPhoto/default_thumb.png) center center #f8f8f8;
  border: 1px solid #aaa;
}

/* line 39, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_social {
  margin-top: 7px;
}

/* line 40, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_gallery a.pp_arrow_previous, div.pp_default .pp_gallery a.pp_arrow_next {
  position: static;
  left: auto;
}

/* line 41, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_nav .pp_play, div.pp_default .pp_nav .pp_pause {
  background: url(img/prettyPhoto/sprite.png) -51px 1px no-repeat;
  height: 30px;
  width: 30px;
}

/* line 42, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_nav .pp_pause {
  background-position: -51px -29px;
}

/* line 43, scss/plugins/_prettyPhoto.scss */
div.pp_default a.pp_arrow_previous, div.pp_default a.pp_arrow_next {
  background: url(img/prettyPhoto/sprite.png) -31px -3px no-repeat;
  height: 20px;
  width: 20px;
  margin: 4px 0 0;
}

/* line 44, scss/plugins/_prettyPhoto.scss */
div.pp_default a.pp_arrow_next {
  left: 52px;
  background-position: -82px -3px;
}

/* line 45, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_content_container .pp_details {
  margin-top: 5px;
}

/* line 46, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_nav {
  clear: none;
  height: 30px;
  width: 130px;
  position: relative;
  float: left;
}

/* line 47, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_nav .currentTextHolder {
  font-family: inherit;
  color: #999;
  font-size: 13px;
  left: 65px;
  line-height: 25px;
  position: absolute;
  top: 2px;
  margin: 0;
  padding: 0 0 0 10px;
}

/* line 48, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_play:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover {
  opacity: 0.7;
}

/* line 49, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_bottom .pp_left {
  background: url(img/prettyPhoto/sprite.png) -78px -127px no-repeat;
}

/* line 50, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_bottom .pp_middle {
  background: url(img/prettyPhoto/sprite_x.png) bottom left repeat-x;
}

/* line 51, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_bottom .pp_right {
  background: url(img/prettyPhoto/sprite.png) -112px -127px no-repeat;
}

/* line 52, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_loaderIcon {
  background: url(img/prettyPhoto/loader.gif) center center no-repeat;
}

/* line 53, scss/plugins/_prettyPhoto.scss */
div.pp_pic_holder a:focus {
  outline: none;
}

/* line 54, scss/plugins/_prettyPhoto.scss */
div.pp_overlay {
  background-color: #000;
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10000 !important;
}

/* line 55, scss/plugins/_prettyPhoto.scss */
div.pp_pic_holder {
  display: none;
  position: absolute;
  width: 100px;
  z-index: 10001 !important;
}

/* line 56, scss/plugins/_prettyPhoto.scss */
.pp_content {
  height: 40px;
  min-width: 40px;
}

/* line 57, scss/plugins/_prettyPhoto.scss */
* html .pp_content {
  width: 40px;
}

/* line 58, scss/plugins/_prettyPhoto.scss */
.pp_content_container {
  position: relative;
  text-align: left;
  width: 100%;
}

/* line 59, scss/plugins/_prettyPhoto.scss */
.pp_content_container .pp_left {
  padding-left: 20px;
}

/* line 60, scss/plugins/_prettyPhoto.scss */
.pp_content_container .pp_right {
  padding-right: 20px;
}

/* line 61, scss/plugins/_prettyPhoto.scss */
.pp_content_container .pp_details {
  float: left;
  margin: 10px 0 2px;
}

/* line 62, scss/plugins/_prettyPhoto.scss */
.pp_social {
  float: left;
  margin: 0;
}

/* line 63, scss/plugins/_prettyPhoto.scss */
.pp_social .facebook {
  float: left;
  margin-left: 5px;
  width: 55px;
  overflow: hidden;
}

/* line 64, scss/plugins/_prettyPhoto.scss */
.pp_social .twitter {
  float: left;
}

/* line 65, scss/plugins/_prettyPhoto.scss */
.pp_nav p {
  float: left;
  white-space: nowrap;
  margin: 2px 4px;
}

/* line 66, scss/plugins/_prettyPhoto.scss */
.pp_nav .pp_play, .pp_nav .pp_pause {
  float: left;
  margin-right: 4px;
  text-indent: -10000px;
}

/* line 67, scss/plugins/_prettyPhoto.scss */
a.pp_arrow_previous, a.pp_arrow_next {
  display: block;
  float: left;
  height: 15px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -10000px;
  width: 14px;
}

/* line 68, scss/plugins/_prettyPhoto.scss */
.pp_hoverContainer {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2000;
}

/* line 69, scss/plugins/_prettyPhoto.scss */
.pp_gallery {
  display: none;
  left: 50%;
  margin-top: -50px;
  position: absolute;
  z-index: 10000;
}

/* line 70, scss/plugins/_prettyPhoto.scss */
.pp_gallery div {
  float: left;
  overflow: hidden;
  position: relative;
}

/* line 71, scss/plugins/_prettyPhoto.scss */
.pp_gallery ul {
  float: left;
  height: 35px;
  position: relative;
  white-space: nowrap;
  margin: 0 0 0 5px;
  padding: 0;
}

/* line 72, scss/plugins/_prettyPhoto.scss */
.pp_gallery ul a {
  border: 1px rgba(0, 0, 0, 0.5) solid;
  display: block;
  float: left;
  height: 33px;
  overflow: hidden;
}

/* line 73, scss/plugins/_prettyPhoto.scss */
.pp_gallery ul a img {
  border: 0;
}

/* line 74, scss/plugins/_prettyPhoto.scss */
.pp_gallery li {
  display: block;
  float: left;
  margin: 0 5px 0 0;
  padding: 0;
}

/* line 75, scss/plugins/_prettyPhoto.scss */
.pp_gallery li.default a {
  background: url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
  display: block;
  height: 33px;
  width: 50px;
}

/* line 76, scss/plugins/_prettyPhoto.scss */
.pp_gallery .pp_arrow_previous, .pp_gallery .pp_arrow_next {
  margin-top: 7px !important;
}

/* line 77, scss/plugins/_prettyPhoto.scss */
a.pp_close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  line-height: 22px;
  text-indent: -10000px;
}

/* line 78, scss/plugins/_prettyPhoto.scss */
.pp_loaderIcon {
  display: block;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 24px;
  margin: -12px 0 0 -12px;
}

/* line 79, scss/plugins/_prettyPhoto.scss */
#pp_full_res {
  line-height: 1 !important;
}

/* line 80, scss/plugins/_prettyPhoto.scss */
#pp_full_res .pp_inline {
  text-align: left;
}

/* line 81, scss/plugins/_prettyPhoto.scss */
#pp_full_res .pp_inline p {
  margin: 0 0 15px;
}

/* line 82, scss/plugins/_prettyPhoto.scss */
div.ppt {
  color: #fff;
  display: none !important;
  font-size: 17px;
  z-index: 9999;
  margin: 0 0 5px 0;
}

/* line 83, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_content {
  background-color: #fff;
}

/* line 84, scss/plugins/_prettyPhoto.scss */
div.pp_default #pp_full_res .pp_inline {
  color: #000;
}

/* line 85, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_gallery ul li a:hover, div.pp_default .pp_gallery ul li.selected a, .pp_gallery ul a:hover, .pp_gallery li.selected a {
  border-color: #fff;
}

/* line 86, scss/plugins/_prettyPhoto.scss */
div.pp_default .pp_details {
  position: relative;
}

/* line 87, scss/plugins/_prettyPhoto.scss */
.pp_top, .pp_bottom {
  height: 20px;
  position: relative;
}

/* line 88, scss/plugins/_prettyPhoto.scss */
* html .pp_top, * html .pp_bottom {
  padding: 0 20px;
}

/* line 89, scss/plugins/_prettyPhoto.scss */
.pp_top .pp_left, .pp_bottom .pp_left {
  height: 20px;
  left: 0;
  position: absolute;
  width: 20px;
}

/* line 90, scss/plugins/_prettyPhoto.scss */
.pp_top .pp_middle, .pp_bottom .pp_middle {
  height: 20px;
  left: 20px;
  position: absolute;
  right: 20px;
}

/* line 91, scss/plugins/_prettyPhoto.scss */
* html .pp_top .pp_middle, * html .pp_bottom .pp_middle {
  left: 0;
  position: static;
}

/* line 92, scss/plugins/_prettyPhoto.scss */
.pp_top .pp_right, .pp_bottom .pp_right {
  height: 20px;
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

/* line 93, scss/plugins/_prettyPhoto.scss */
.pp_fade, .pp_gallery li.default a img {
  display: none;
}

/* line 95, scss/plugins/_prettyPhoto.scss */
body div.pp_overlay,
body div.pp_default .pp_content_container .pp_details {
  opacity: 0.7 !important;
}

/* line 100, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_next,
body div.pp_default a.pp_previous {
  position: absolute;
  top: 50%;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: -25px 0 0;
  background-image: none !important;
  color: #fff;
  font-size: 38px;
  text-align: center;
  text-indent: -9999px !important;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
  -moz-transition: opacity 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
  -ms-transition: opacity 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
  transition: opacity 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
  -webkit-transform: translateZ(0px);
  border-radius: 100px;
}

/* line 126, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_next span,
body div.pp_default a.pp_previous span {
  display: block;
  line-height: inherit;
}

/* line 132, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_next span:before,
body div.pp_default a.pp_previous span:before {
  position: absolute;
  top: 0;
  display: block;
  text-indent: 0 !important;
  width: 100%;
  text-align: center;
  line-height: inherit;
}

/* line 143, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_next:after,
body div.pp_default a.pp_previous:after {
  position: absolute;
  top: 0;
  left: 0%;
  display: block;
  color: #fff;
  font-family: 'FontAwesome',serif;
  text-indent: 0 !important;
  width: 100%;
  text-align: center;
}

/* line 158, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_next {
  right: 10px;
}

/* line 162, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_previous {
  left: 10px;
}

/* line 171, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_content:hover a.pp_next,
body div.pp_default .pp_content:hover a.pp_previous {
  opacity: 1;
}

/* line 176, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_description {
  float: left;
  font-size: 14px;
  line-height: 1.571428571428571em;
  font-weight: 400;
  color: #fff;
  margin: 2px 0 0;
}

/* line 185, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_nav .currentTextHolder {
  left: auto;
  position: relative;
  float: left;
  padding: 0px 20px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}

/* line 195, scss/plugins/_prettyPhoto.scss */
body .pp_gallery {
  display: none !important;
}

/* line 199, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_nav .pp_play,
body div.pp_default .pp_nav .pp_pause {
  display: none;
}

/* line 204, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_arrow_previous,
body div.pp_default a.pp_arrow_next {
  background: none;
  position: relative;
  left: 0px;
}

/* line 211, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_arrow_previous:after {
  color: #FFFFFF;
  content: "\f104";
  font-family: 'FontAwesome',serif;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  text-indent: 0px;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* line 226, scss/plugins/_prettyPhoto.scss */
body div.pp_default a.pp_arrow_next:after {
  color: #FFFFFF;
  content: "\f105";
  font-family: 'FontAwesome',serif;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  text-indent: 0px;
  position: absolute;
  top: 0px;
  right: 0px;
}

/* line 241, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_close {
  background: none;
  opacity: 1 !important;
}

/* line 246, scss/plugins/_prettyPhoto.scss */
body div.pp_default .pp_close:after {
  color: #FFFFFF;
  content: "\f00d";
  font-family: 'FontAwesome',serif;
  font-size: 15px;
  height: 15px;
  line-height: 30px;
  text-align: center;
  width: 30px;
  text-indent: 0px;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* ==========================================================================
   Pretty Photo style end
   ========================================================================== */
/* ==========================================================================
   WPML style start
   ========================================================================== */
/* common wpml style */
/* line 6, scss/plugins/_wpml.scss */
.widget_icl_lang_sel_widget {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 12, scss/plugins/_wpml.scss */
.widget_icl_lang_sel_widget #lang_sel_list ul {
  list-style-type: none;
}

/* line 18, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel,
.wpb_widgetised_column #lang_sel, .qodef-side-menu #lang_sel, .qodef-footer-inner #lang_sel, .qodef-top-bar #lang_sel, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 22, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel .lang_sel_sel,
.wpb_widgetised_column #lang_sel .lang_sel_sel, .qodef-side-menu #lang_sel .lang_sel_sel, .qodef-footer-inner #lang_sel .lang_sel_sel, .qodef-top-bar #lang_sel .lang_sel_sel, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel .lang_sel_sel {
  position: relative;
  display: block;
}
/* line 26, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel .lang_sel_sel:after,
.wpb_widgetised_column #lang_sel .lang_sel_sel:after, .qodef-side-menu #lang_sel .lang_sel_sel:after, .qodef-footer-inner #lang_sel .lang_sel_sel:after, .qodef-top-bar #lang_sel .lang_sel_sel:after, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel .lang_sel_sel:after {
  content: '\33';
  font-family: 'ElegantIcons';
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 39, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul,
.wpb_widgetised_column #lang_sel ul, .qodef-side-menu #lang_sel ul, .qodef-footer-inner #lang_sel ul, .qodef-top-bar #lang_sel ul, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 44, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul li,
.wpb_widgetised_column #lang_sel ul li, .qodef-side-menu #lang_sel ul li, .qodef-footer-inner #lang_sel ul li, .qodef-top-bar #lang_sel ul li, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul li {
  border-bottom: 0;
}
/* line 49, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul ul,
.wpb_widgetised_column #lang_sel ul ul, .qodef-side-menu #lang_sel ul ul, .qodef-footer-inner #lang_sel ul ul, .qodef-top-bar #lang_sel ul ul, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul ul {
  position: absolute;
  top: 100%;
  width: calc(100% + 2px);
  left: -1px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  border-top: none;
  padding: 10px 18px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
  -moz-transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
  transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
}
/* line 64, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul ul a,
.wpb_widgetised_column #lang_sel ul ul a, .qodef-side-menu #lang_sel ul ul a, .qodef-footer-inner #lang_sel ul ul a, .qodef-top-bar #lang_sel ul ul a, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul ul a {
  display: block;
}
/* line 70, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel:hover ul ul,
.wpb_widgetised_column #lang_sel:hover ul ul, .qodef-side-menu #lang_sel:hover ul ul, .qodef-footer-inner #lang_sel:hover ul ul, .qodef-top-bar #lang_sel:hover ul ul, .qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel:hover ul ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

/* Sidebar wpml style */
/* line 86, scss/plugins/_wpml.scss */
.qodef-sidebar .widget_icl_lang_sel_widget,
.wpb_widgetised_column .widget_icl_lang_sel_widget {
  width: 100%;
}
/* line 89, scss/plugins/_wpml.scss */
.qodef-sidebar .widget_icl_lang_sel_widget img,
.wpb_widgetised_column .widget_icl_lang_sel_widget img {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 96, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel,
.wpb_widgetised_column #lang_sel {
  border: 0;
}
/* line 101, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel .lang_sel_sel,
.wpb_widgetised_column #lang_sel .lang_sel_sel {
  padding: 8px 18px;
  font-weight: 400;
  color: #868686;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  display: inline-block;
  right: 0;
}
/* line 110, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel .lang_sel_sel:after,
.wpb_widgetised_column #lang_sel .lang_sel_sel:after {
  right: 0;
}
/* line 115, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul ul,
.wpb_widgetised_column #lang_sel ul ul {
  background-color: #fff;
  border: 0;
  border-top: none;
  padding: 0;
}
/* line 121, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul ul a,
.wpb_widgetised_column #lang_sel ul ul a {
  padding: 8px 18px;
  font-weight: 400;
  color: #868686;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
}
/* line 128, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul ul a:hover,
.wpb_widgetised_column #lang_sel ul ul a:hover {
  text-decoration: none;
  color: #ea9195;
}
/* line 134, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel ul ul img,
.wpb_widgetised_column #lang_sel ul ul img {
  margin: 0 5px 0 0;
}
/* line 143, scss/plugins/_wpml.scss */
.qodef-sidebar #lang_sel_list ul li,
.wpb_widgetised_column #lang_sel_list ul li {
  padding: 5px 0;
}
/* line 150, scss/plugins/_wpml.scss */
.qodef-sidebar .lang_sel_list_horizontal ul li,
.wpb_widgetised_column .lang_sel_list_horizontal ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 5px 0;
}
/* line 155, scss/plugins/_wpml.scss */
.qodef-sidebar .lang_sel_list_horizontal ul li:last-child,
.wpb_widgetised_column .lang_sel_list_horizontal ul li:last-child {
  margin: 0 0 5px;
}

/* sidearea wpml style */
/* line 164, scss/plugins/_wpml.scss */
.qodef-side-menu .widget_icl_lang_sel_widget {
  width: 100%;
}
/* line 169, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel {
  border: 0;
}
/* line 174, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel .lang_sel_sel {
  padding: 7px 25px 7px 0;
  display: inline-block;
}
/* line 177, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel .lang_sel_sel span {
  color: #fff;
}
/* line 182, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel ul {
  background-color: #0e0e0e;
}
/* line 186, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel a {
  color: #fff;
  margin-bottom: 0;
  font-family: Raleway, sans-serif;
  font-size: 13px;
}
/* line 192, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel a span {
  color: #fff;
}
/* line 196, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel a:hover {
  color: #fff;
}
/* line 201, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel ul ul {
  border: 0;
  border-top: none;
  padding: 0;
}
/* line 206, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel ul ul a {
  color: #fff;
  padding: 10px 15px 10px 0;
  font-family: Raleway, sans-serif;
  font-size: 13px;
}
/* line 212, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel ul ul a span {
  color: #fff;
}
/* line 216, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel ul ul a:hover {
  color: #ea9195;
}
/* line 221, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel ul ul img {
  margin: 0 5px 0 0;
}
/* line 230, scss/plugins/_wpml.scss */
.qodef-side-menu #lang_sel_list img {
  margin-right: 5px;
}
/* line 237, scss/plugins/_wpml.scss */
.qodef-side-menu .lang_sel_list_horizontal ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 5px 0;
}
/* line 242, scss/plugins/_wpml.scss */
.qodef-side-menu .lang_sel_list_horizontal ul li:last-child {
  margin: 0 0 5px;
}
/* line 250, scss/plugins/_wpml.scss */
.qodef-side-menu .qodef-footer-bottom-holder #lang_sel_list {
  line-height: 1.4em;
}

/* footer wpml styles */
/* line 259, scss/plugins/_wpml.scss */
.qodef-footer-inner .widget_icl_lang_sel_widget {
  width: 100%;
}
/* line 264, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel {
  border: 0;
}
/* line 269, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel .lang_sel_sel {
  padding: 7px 25px 7px 0;
}
/* line 273, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel ul {
  background-color: #0e0e0e;
}
/* line 277, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel a {
  color: #fff;
  margin-bottom: 0;
  font-family: Raleway, sans-serif;
  font-size: 13px;
}
/* line 283, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel a:hover {
  color: #fff;
}
/* line 288, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel ul ul {
  border: 0;
  border-top: none;
  padding: 0;
}
/* line 293, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel ul ul a {
  color: #fff;
  padding: 10px 15px 10px 0;
  font-family: Raleway, sans-serif;
  font-size: 13px;
}
/* line 299, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel ul ul a:hover {
  color: #ea9195;
}
/* line 304, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel ul ul img {
  margin: 0 5px 0 0;
}
/* line 313, scss/plugins/_wpml.scss */
.qodef-footer-inner #lang_sel_list img {
  margin-right: 5px;
}
/* line 320, scss/plugins/_wpml.scss */
.qodef-footer-inner .lang_sel_list_horizontal ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 5px 0;
}
/* line 325, scss/plugins/_wpml.scss */
.qodef-footer-inner .lang_sel_list_horizontal ul li:last-child {
  margin: 0 0 5px;
}
/* line 333, scss/plugins/_wpml.scss */
.qodef-footer-inner .qodef-footer-bottom-holder #lang_sel_list {
  line-height: 1.4em;
}

/* header top area wpml style */
/* line 342, scss/plugins/_wpml.scss */
.qodef-top-bar .qodef-position-right-inner .widget_icl_lang_sel_widget {
  margin-left: 20px;
}
/* line 349, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel .lang_sel_sel {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  padding: 0 20px 0 15px;
}
/* line 355, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel .lang_sel_sel:after {
  right: 0;
}
/* line 359, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel .lang_sel_sel:hover {
  color: #fff;
}
/* line 363, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel .lang_sel_sel img {
  position: relative;
  top: 2px;
}
/* line 369, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel ul {
  list-style-type: none;
}
/* line 373, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel ul ul {
  width: 200px;
  padding: 5px 0 10px;
  text-align: left;
  line-height: 1.7em;
  background-color: #0e0e0e;
}
/* line 381, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel ul ul img {
  position: relative;
  top: 2px;
  margin-right: 5px;
}
/* line 387, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel ul ul a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: block;
  padding: 6px 15px 6px;
}
/* line 394, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel ul ul a:hover {
  color: #ea9195;
}
/* line 403, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel_list ul {
  list-style-type: none;
}
/* line 406, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel_list ul li {
  float: left;
  margin-right: 10px;
}
/* line 410, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel_list ul li:last-child {
  margin-right: 0;
}
/* line 414, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel_list ul li a {
  color: #ccc;
}
/* line 417, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel_list ul li a:hover {
  color: #fff;
}
/* line 423, scss/plugins/_wpml.scss */
.qodef-top-bar #lang_sel_list img {
  margin-right: 5px;
}

/* main menu wpml style */
/* line 430, scss/plugins/_wpml.scss */
.qodef-main-menu > ul > li.menu-item-language > a {
  padding: 0 5px;
  line-height: 80px;
}
/* line 434, scss/plugins/_wpml.scss */
.qodef-main-menu > ul > li.menu-item-language > a span {
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 440, scss/plugins/_wpml.scss */
.qodef-main-menu > ul > li.menu-item-language > a span :after {
  content: '\33';
  font-family: 'ElegantIcons';
  position: absolute;
  right: -15px;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 453, scss/plugins/_wpml.scss */
.qodef-main-menu > ul > li.menu-item-language > a img {
  display: inline-block !important;
  vertical-align: middle;
  margin: 0 5px 0 0;
}

/* line 464, scss/plugins/_wpml.scss */
.qodef-main-menu .menu-item-language .submenu-languages {
  position: absolute;
  top: calc(100% + 30px);
  padding: 15px 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 220px;
  left: -1px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  border-top: none;
  text-align: left;
  background-color: #0e0e0e;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 479, scss/plugins/_wpml.scss */
.qodef-main-menu .menu-item-language .submenu-languages li {
  display: block;
  width: 100%;
  float: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 486, scss/plugins/_wpml.scss */
.qodef-main-menu .menu-item-language .submenu-languages a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-family: Raleway, sans-serif;
  color: #b4b4b4;
  text-transform: none;
}
/* line 497, scss/plugins/_wpml.scss */
.qodef-main-menu .menu-item-language .submenu-languages a:hover {
  color: #fff;
}
/* line 501, scss/plugins/_wpml.scss */
.qodef-main-menu .menu-item-language .submenu-languages a img {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -1px;
  margin: 0 5px 0 0;
}
/* line 513, scss/plugins/_wpml.scss */
.qodef-main-menu .menu-item-language:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

/* right from menu wpml style */
/* line 528, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget img {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 538, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel .lang_sel_sel {
  padding: 0 15px 0 10px;
  font-size: 13px;
  line-height: 80px;
  font-weight: 500;
  color: #0e0e0e;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 547, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel .lang_sel_sel:after {
  right: 0;
}
/* line 552, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul ul {
  background-color: #0e0e0e;
  border: 0;
  border-top: none;
  width: 230px;
  text-align: left;
  color: #b4b4b4;
  top: calc(100% + 30px);
  padding: 15px 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
/* line 563, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul ul a {
  padding: 10px 30px;
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-family: Raleway, sans-serif;
  color: #b4b4b4;
  letter-spacing: 1px;
}
/* line 573, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul ul a:hover {
  color: #fff;
}
/* line 578, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel ul ul img {
  margin: 0 5px 0 0;
}
/* line 583, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel:hover ul ul {
  top: 100%;
}
/* line 592, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget #lang_sel_list ul li {
  padding: 5px 0;
}
/* line 599, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget .lang_sel_list_horizontal ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 5px 0;
}
/* line 604, scss/plugins/_wpml.scss */
.qodef-right-from-main-menu-widget.widget_icl_lang_sel_widget .lang_sel_list_horizontal ul li:last-child {
  margin: 0 0 5px;
}

/* ==========================================================================
   WPML style end
   ========================================================================== */

/*# sourceMappingURL=plugins.css.map */
