@charset "UTF-8";

/*------------------------------------------------------------------
 * [Master Stylesheet]
 *
 * Project:	RealtySpace
 * Version:	1.1
 * Documantation online http://realtyspace.readthedocs.org/en/latest/index.html
 * Table of contens:
 *   + Header / .header
 *   + Site / .site
 *   + Center / .center
 *   + Main / .main
 *   + Authorization / .auth
 *   + Banner / .banner
 *   + Breadcrumbs / .breadcrumbs
 *   + Contacts / .contacts
 *   + Comment / .comment
 *   + Dropdown / .dropdown
 *   + Scroll Up Button / .scrollup
 *   + Social / .social
 *   + Region Select / .region-select
 *   + FAQ / .faq
 *   + Footer / .footer
 *   + Listing / .listing
 *   + Navbar / .navabar
 *   + Error-status / .error-status
 *   + Form property / .form-property
 *   + Property Details / .property
 *   + Address / .address
 *   + Article / .article
 *   + Feature / .feature
 *   + Form / .form
 *   + Map / .map
 *   + Nav / .nav
 *   + Partners / .partners
 *   + Pricing / .pricing
 *   + Properites / .properties
 *   + Review / .review
 *   + Search / .search
 *   + Slider / .slider
 *   + Subscribe / .subscribe
 *   + Worker / .worker
 *   + Article categories / .article-categories
 *   + Gosubmit / .gosubmit
 * Vendor styles:
 *   + Colorbox Core / #colorbox
 *   + Bonsai / .bonsai
 *   + Leaflet / .leaflet
 *   + PhotoSwipe / .pswp
 *   + RangeSlider / .irs
 *   + Slick-slider / .slick-slider
 *   + Pnotify / .ui-pnotify
 *
 * ============================================================== */

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/

body {
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

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

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }

  10% {
    -webkit-transform: skewX(-8deg);
  }

  20% {
    -webkit-transform: skewX(7deg);
  }

  30% {
    -webkit-transform: skewX(-6deg);
  }

  40% {
    -webkit-transform: skewX(5deg);
  }

  50% {
    -webkit-transform: skewX(-4deg);
  }

  60% {
    -webkit-transform: skewX(3deg);
  }

  70% {
    -webkit-transform: skewX(-2deg);
  }

  80% {
    -webkit-transform: skewX(1deg);
  }

  90% {
    -webkit-transform: skewX(0deg);
  }

  100% {
    -webkit-transform: skewX(0deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
    transform: skewX(9deg);
  }

  10% {
    -webkit-transform: skewX(-8deg);
    transform: skewX(-8deg);
  }

  20% {
    -webkit-transform: skewX(7deg);
    transform: skewX(7deg);
  }

  30% {
    -webkit-transform: skewX(-6deg);
    transform: skewX(-6deg);
  }

  40% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  50% {
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }

  60% {
    -webkit-transform: skewX(3deg);
    transform: skewX(3deg);
  }

  70% {
    -webkit-transform: skewX(-2deg);
    transform: skewX(-2deg);
  }

  80% {
    -webkit-transform: skewX(1deg);
    transform: skewX(1deg);
  }

  90% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }

  100% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}

.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.flip {
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
    transform: scale3d(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

/*------------------------------------------------------------------
 * Brand color ($brandColor): #00bbaa
 * Brand color dark ($brandColorDark): darken($brandColor, 10%)
 * Highlight color ($highlightColor): #f3bc65
 * Highlight Color Dark ($highlightColorDark): #d99221
 * Default Color ($defaultColor): #2c3e50
 * Gray Color ($grayColor): #a6a6a6
 * Footer HeadColor ($brandHighlightColor): $brandColor
 * Footer Social Color ($footerSocialColor): $brandHighlightColor
 * Banner Line Color ($highlightColorOnDark): $brandColor
 * On Brand Color ($onBrandColor): $defaultColor
 * Button Color ($buttonColor): #222
 *
 * Brand Color Hover ($brandColorHover: lighten($brandColor, 10%)
 * Highlight Color Hover ($highlightColorHover: lighten($highlightColor, 15%)
 * PlaceholderColorOnDark ($placeholderColorOnDark): #bebebe
 *
 * Link color ($link-color): $brandColor
 * Link hover color ($link-hover-color): $brandColorHover
 * Link hover decoration ($link-hover-decoration): underline
 *
 * Footer Color ($footerColor): #bebebe
 *
 * Succes Color ($succesColor): $brandColor
 * Warning Color ($warningColor): #f3bc65
 * Danger Color ($dangerColor): #e95b35
 *
 * ============================================================== */

a {
  color: #00adef;/*00bbaa*/
  text-decoration: none;
}

a.hover,
a:hover {
  color: #00adef;/*00bbaa*/
}

a.focus,
a:focus {
  color: #00bbaa;
}

a.active,
a:active {
  color: #f3bc65;
  text-decoration: none;
}

a.disabled,
a:disabled {
  cursor: not-allowed;
  color: #ccc;
}

p {
  color: #606e7c;
}

/*------------------------------------------------------------------
 * Font family ($font-family-sans-serif): "Source Sans Pro", sans-serif
 * Grid gutter width ($grid-gutter-width): 30px
 * Container width ($container-large-desktop): 1170px + $grid-gutter-width
 * Text Color ($text-color): $defaultColor
 * Font size base ($font-size-base): 15px
 * Line height base ($line-height-base): 1.6
 * Padding base vertical ($padding-base-vertical): 6px
 * ============================================================== */

@font-face {
  font-family: "Montserrat Thin";
  src: url("../fonts/montserrat/montserrat-thin.eot");
  src: url("../fonts/montserrat/montserrat-thin.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat/montserrat-thin.woff") format("woff"), url("../fonts/montserrat/montserrat-thin.ttf") format("truetype"), url("../fonts/montserrat/montserrat-thin.svg") format("svg");
  font-weight: 200;
  font-style: normal;
}

@-webkit-keyframes wobble-reverse {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(25%) rotate(5deg);
    transform: translateX(25%) rotate(5deg);
  }

  30% {
    -webkit-transform: translateX(-20%) rotate(-3deg);
    transform: translateX(-20%) rotate(-3deg);
  }

  45% {
    -webkit-transform: translateX(15%) rotate(3deg);
    transform: translateX(15%) rotate(3deg);
  }

  60% {
    -webkit-transform: translateX(-10%) rotate(-2deg);
    transform: translateX(-10%) rotate(-2deg);
  }

  75% {
    -webkit-transform: translateX(5%) rotate(1deg);
    transform: translateX(5%) rotate(1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble-reverse {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(25%) rotate(5deg);
    transform: translateX(25%) rotate(5deg);
  }

  30% {
    -webkit-transform: translateX(-20%) rotate(-3deg);
    transform: translateX(-20%) rotate(-3deg);
  }

  45% {
    -webkit-transform: translateX(15%) rotate(3deg);
    transform: translateX(15%) rotate(3deg);
  }

  60% {
    -webkit-transform: translateX(-10%) rotate(-2deg);
    transform: translateX(-10%) rotate(-2deg);
  }

  75% {
    -webkit-transform: translateX(5%) rotate(1deg);
    transform: translateX(5%) rotate(1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

select {
  display: block;
  width: 100%;
  padding: 6px 20px;
  font-size: 16px;
  border-radius: 0 !important;
  border-color: #d6d6d6;
}

[class*="block-grid-"] {
  display: block;
  margin: -15px;
  padding: 0;
}

[class*="block-grid-"]:before,
[class*="block-grid-"]:after {
  content: " ";
  display: table;
}

[class*="block-grid-"]:after {
  clear: both;
}

.block-grid-item {
  display: inline;
  margin: 0;
  padding: 15px;
  height: auto;
  float: left;
  list-style: none;
}

.block-grid-xs-1 > .block-grid-item {
  width: 100%;
}

.block-grid-xs-1 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-1 > .block-grid-item:nth-of-type(1n+1) {
  clear: both;
}

.block-grid-xs-2 > .block-grid-item {
  width: 50%;
}

.block-grid-xs-2 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-2 > .block-grid-item:nth-of-type(2n+1) {
  clear: both;
}

.block-grid-xs-3 > .block-grid-item {
  width: 33.33333%;
}

.block-grid-xs-3 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-3 > .block-grid-item:nth-of-type(3n+1) {
  clear: both;
}

.block-grid-xs-4 > .block-grid-item {
  width: 25%;
}

.block-grid-xs-4 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-4 > .block-grid-item:nth-of-type(4n+1) {
  clear: both;
}

.block-grid-xs-5 > .block-grid-item {
  width: 20%;
}

.block-grid-xs-5 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-5 > .block-grid-item:nth-of-type(5n+1) {
  clear: both;
}

.block-grid-xs-6 > .block-grid-item {
  width: 16.66667%;
}

.block-grid-xs-6 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-6 > .block-grid-item:nth-of-type(6n+1) {
  clear: both;
}

.block-grid-xs-7 > .block-grid-item {
  width: 14.28571%;
}

.block-grid-xs-7 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-7 > .block-grid-item:nth-of-type(7n+1) {
  clear: both;
}

.block-grid-xs-8 > .block-grid-item {
  width: 12.5%;
}

.block-grid-xs-8 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-8 > .block-grid-item:nth-of-type(8n+1) {
  clear: both;
}

.block-grid-xs-9 > .block-grid-item {
  width: 11.11111%;
}

.block-grid-xs-9 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-9 > .block-grid-item:nth-of-type(9n+1) {
  clear: both;
}

.block-grid-xs-10 > .block-grid-item {
  width: 10%;
}

.block-grid-xs-10 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-10 > .block-grid-item:nth-of-type(10n+1) {
  clear: both;
}

.block-grid-xs-11 > .block-grid-item {
  width: 9.09091%;
}

.block-grid-xs-11 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-11 > .block-grid-item:nth-of-type(11n+1) {
  clear: both;
}

.block-grid-xs-12 > .block-grid-item {
  width: 8.33333%;
}

.block-grid-xs-12 > .block-grid-item:nth-of-type(n) {
  clear: none;
}

.block-grid-xs-12 > .block-grid-item:nth-of-type(12n+1) {
  clear: both;
}

@media (min-width: 768px) {
  .block-grid-sm-1 > .block-grid-item {
    width: 100%;
  }

  .block-grid-sm-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }

  .block-grid-sm-2 > .block-grid-item {
    width: 50%;
  }

  .block-grid-sm-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }

  .block-grid-sm-3 > .block-grid-item {
    width: 33.33333%;
  }

  .block-grid-sm-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }

  .block-grid-sm-4 > .block-grid-item {
    width: 25%;
  }

  .block-grid-sm-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }

  .block-grid-sm-5 > .block-grid-item {
    width: 20%;
  }

  .block-grid-sm-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }

  .block-grid-sm-6 > .block-grid-item {
    width: 16.66667%;
  }

  .block-grid-sm-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }

  .block-grid-sm-7 > .block-grid-item {
    width: 14.28571%;
  }

  .block-grid-sm-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }

  .block-grid-sm-8 > .block-grid-item {
    width: 12.5%;
  }

  .block-grid-sm-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }

  .block-grid-sm-9 > .block-grid-item {
    width: 11.11111%;
  }

  .block-grid-sm-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }

  .block-grid-sm-10 > .block-grid-item {
    width: 10%;
  }

  .block-grid-sm-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }

  .block-grid-sm-11 > .block-grid-item {
    width: 9.09091%;
  }

  .block-grid-sm-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }

  .block-grid-sm-12 > .block-grid-item {
    width: 8.33333%;
  }

  .block-grid-sm-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-sm-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .block-grid-md-1 > .block-grid-item {
    width: 100%;
  }

  .block-grid-md-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }

  .block-grid-md-2 > .block-grid-item {
    width: 50%;
  }

  .block-grid-md-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }

  .block-grid-md-3 > .block-grid-item {
    width: 33.33333%;
  }

  .block-grid-md-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }

  .block-grid-md-4 > .block-grid-item {
    width: 25%;
  }

  .block-grid-md-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }

  .block-grid-md-5 > .block-grid-item {
    width: 20%;
  }

  .block-grid-md-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }

  .block-grid-md-6 > .block-grid-item {
    width: 16.66667%;
  }

  .block-grid-md-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }

  .block-grid-md-7 > .block-grid-item {
    width: 14.28571%;
  }

  .block-grid-md-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }

  .block-grid-md-8 > .block-grid-item {
    width: 12.5%;
  }

  .block-grid-md-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }

  .block-grid-md-9 > .block-grid-item {
    width: 11.11111%;
  }

  .block-grid-md-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }

  .block-grid-md-10 > .block-grid-item {
    width: 10%;
  }

  .block-grid-md-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }

  .block-grid-md-11 > .block-grid-item {
    width: 9.09091%;
  }

  .block-grid-md-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }

  .block-grid-md-12 > .block-grid-item {
    width: 8.33333%;
  }

  .block-grid-md-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-md-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .block-grid-lg-1 > .block-grid-item {
    width: 100%;
  }

  .block-grid-lg-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }

  .block-grid-lg-2 > .block-grid-item {
    width: 50%;
  }

  .block-grid-lg-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }

  .block-grid-lg-3 > .block-grid-item {
    width: 33.33333%;
  }

  .block-grid-lg-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }

  .block-grid-lg-4 > .block-grid-item {
    width: 25%;
  }

  .block-grid-lg-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }

  .block-grid-lg-5 > .block-grid-item {
    width: 20%;
  }

  .block-grid-lg-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }

  .block-grid-lg-6 > .block-grid-item {
    width: 16.66667%;
  }

  .block-grid-lg-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }

  .block-grid-lg-7 > .block-grid-item {
    width: 14.28571%;
  }

  .block-grid-lg-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }

  .block-grid-lg-8 > .block-grid-item {
    width: 12.5%;
  }

  .block-grid-lg-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }

  .block-grid-lg-9 > .block-grid-item {
    width: 11.11111%;
  }

  .block-grid-lg-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }

  .block-grid-lg-10 > .block-grid-item {
    width: 10%;
  }

  .block-grid-lg-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }

  .block-grid-lg-11 > .block-grid-item {
    width: 9.09091%;
  }

  .block-grid-lg-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }

  .block-grid-lg-12 > .block-grid-item {
    width: 8.33333%;
  }

  .block-grid-lg-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }

  .block-grid-lg-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}

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

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

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

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-webkit-keyframes moveUp {
  0% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-webkit-keyframes scaleFromUp {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleFromUp {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*------------------------------------------------------------------
 * Pagination (multiple pages)
 * ============================================================== */

.pagination-custom {
  display: block;
  padding-left: 0;
  margin: 0;
  line-height: 1;
}

.pagination-custom > li {
  display: inline-block;
  margin: 0 5px 0 0;
}

.pagination-custom > li:last-child {
  margin-right: 0;
}

.pagination-custom > li > span {
  position: relative;
  float: left;
  padding: 6px 5px;
  line-height: 1.6;
  text-decoration: none;
  color: #2c3e50;
  margin-left: -1px;
}

.pagination-custom > li > a {
  position: relative;
  float: left;
  padding: 6px 5px;
  min-width: 33px;
  line-height: 1.6;
  text-decoration: none;
  color: #2c3e50;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
  text-align: center;
}

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span {
  margin-left: 0;
}

@media (max-width: 767px) {
  .pagination-custom > li.active-before,
  .pagination-custom > li.active-after {
    display: none;
  }
}

.pagination-custom > li > a:hover,
.pagination-custom > li > a:focus {
  color: #f3bc65;
  background-color: none;
  border-color: #f3bc65;
}

.pagination-custom > .active > a,
.pagination-custom > .active > span {
  min-width: 33px;
  text-align: center;
  position: relative;
  top: -1px;
}

.pagination-custom > .active > a,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #f3bc65;
  border-color: #f3bc65;
  cursor: default;
}

.pagination-custom > .disabled > span,
.pagination-custom > .disabled > span:hover,
.pagination-custom > .disabled > span:focus,
.pagination-custom > .disabled > a,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > a:focus {
  color: #ccc;
  background-color: none;
  border-color: none;
  cursor: not-allowed;
}

/*------------------------------------------------------------------
 * Effects for:
 * Dropdown menu
 * Slider caption
 * Hover on photos
 * ============================================================== */

.hover-default .item-photo {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hover-default .item-photo img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 1200px) {
  .hover-default .item-photo:hover .item-photo__hover {
    opacity: 1;
  }

  .hover-default .item-photo:hover .item-photo__more {
    opacity: 1;
  }

  .hover-default .item-photo:hover img {
    width: 110%;
    max-width: 110%;
  }
}

.hover-default .item-photo__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.hover-default .item-photo__hover--params {
  top: auto;
  padding: 15px;
}

.hover-default .item-photo__more {
  margin: -15px 0 0 -50px;
  top: 50%;
  position: absolute;
  left: 50%;
  width: 100px;
  display: block;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 3px 0;
  opacity: 0.3;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.hover-default .item-photo__more:hover,
.hover-default .item-photo__more.hover {
  color: #f3bc65;
  border: 2px solid #f3bc65;
}

.hover-default .item-photo__more:active,
.hover-default .item-photo__more.active {
  color: #fff;
  background: #f3bc65;
}

.hover-default .item-photo__more:disabled,
.hover-default .item-photo__more.disabled {
  color: #ccc;
  border: 2px solid #ccc;
  cursor: not-allowed;
}

.hover-default .item-photo--static:hover img {
  width: 100%;
  max-width: 100%;
}

.hover-default .worker--sidebar .item-photo__more {
  margin: -15px 0 0 -25px;
  width: 50px;
}

/*------------------------------------------------------------------
 * Chekbox and radio css only customization
 * This structure is accpeted
 * <label class='in-label'>
 *   <input type='checkbox' class='in-checkbox'> Option Label
 * </label>
 * ============================================================== */

label.in-label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 24px;
  padding-top: 3px;
  font-weight: normal;
}

input[type=radio].in-radio,
input[type=checkbox].in-checkbox {
  display: none;
}

label.in-label:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 1px;
  top: 6px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type=radio].in-radio + label:before {
  border-radius: 15px;
  width: 15px;
  height: 15px;
}

label.in-label.in-label--expander:before {
  content: "+";
  color: #fff;
  background: #858585;
  font-size: 25px;
  line-height: 0.6;
}

label.in-label.in-label--expander.active:before {
  content: "-";
  color: #fff;
  background: #006FCD;
  font-size: 39px;
  line-height: 0.2;
  border: 1px solid #0F5EA1;
  text-align: center;
}

input[type=radio].in-radio:checked + label:before {
  font-size: 8px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #00bbaa;
  text-align: center;
  line-height: 13px;
  border: 1px solid #b3b3b3;
  border-radius: 15px;
}

input[type=checkbox].in-checkbox:checked + label:before {
  font-family: "Glyphicons Halflings";
  content: "";
  font-size: 8px;
  color: #2c3e50;
  text-align: center;
  line-height: 18px;
}

input[type=checkbox].in-checkbox:indeterminate + label:before {
  font-size: 8px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  font-size: 8px;
  color: #2c3e50;
  text-align: center;
  line-height: 18px;
}

/*------------------------------------------------------------------
 * Common elements styles on the page
 * + Site / .site
 *   __ Title / .site__title
 *   __ headline / .site__headline
 *   __ panel / .site__panel
 *   __ content / .site__content
 * ============================================================== */

.site {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .site {
    margin-bottom: 0;
  }
}

.site__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 40px 0 0;
  text-align: left;
}

.sidebar .site__title {
  font-size: 34px;
}

.footer .site__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .site__title {
    font-size: 26px;
  }

  .sidebar .site__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .site__title {
    text-align: center;
  }
}

.site__title--slider {
  margin: 0 0 50px;
  text-align: center;
}

@media (max-width: 767px) {
  .site__title--slider {
    margin-bottom: 20px;
  }
}

.site__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  margin: 4px 0 0 0;
  min-height: 42px;
  text-align: left;
}

.site__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .site__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .site__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .site__headline {
    margin-bottom: 0;
    margin-top: 12px;
    text-align: center;
  }
}

.site__panel {
  background: #00bbaa;
  color: #2c3e50;
}

.site__panel:before,
.site__panel:after {
  content: " ";
  display: table;
}

.site__panel:after {
  clear: both;
}

.site__header-text {
  display: block;
  color: #2c3e50;
  padding: 8px 17px 0;
  margin-bottom: 11px;
  font-weight: 600;
}

.site__header-text a {
  color: #2c3e50;
}

.site__header-text a:hover {
  text-decoration: underline;
}

.site__subtitle {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin: 28px 0 0;
  border-bottom: 1px solid #d0d0d0;
  padding: 0 0 21px 0;
}

.site__content {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .site__content {
    float: left;
    width: 66.66667%;
  }
}

@media (min-width: 1200px) {
  .site__content {
    float: left;
    width: 75%;
  }
}

@media (max-width: 767px) {
  .site__content {
    padding: 0;
  }
}

.button__action {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
}

@media (max-width: 767px) {
  .button__action {
    padding: 3px 5px 3px 5px;
  }
}

.button__action:hover,
.button__action:focus,
.button__action.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.button__action:disabled,
.button__action.disabled {
  cursor: not-allowed;
}

.button__action.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.button__action:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.button__action.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.button__action.has-error,
.button__action.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.button__action.has-error:after,
.button__action.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.button__action.has-success,
.button__action.success {
  color: transparent !important;
}

.button__action.has-success:after,
.button__action.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .button__action.button--loading:before {
  content: "";
}

.button--loading-refresh .button__action.button--loading:before {
  content: "";
}

.button--loading-spinner .button__action.button--loading:before {
  content: "";
}

.button__action.hover,
.button__action:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.button__action:active,
.button__action.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.button__action:disabled,
.button__action.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.button__more {
  position: relative;
  border: 1px solid #d6d6d6;
  text-align: center;
  display: block;
  padding: 7px 20px;
  text-transform: uppercase;
  color: #2c3e50;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 600;
  width: 200px;
  margin: 0 auto;
}

.button__more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.button__more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.button__more.has-error,
.button__more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.button__more.has-error:after,
.button__more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.button__more.has-success,
.button__more.success {
  color: transparent !important;
}

.button__more.has-success:after,
.button__more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .button__more.button--loading:before {
  content: "";
}

.button--loading-refresh .button__more.button--loading:before {
  content: "";
}

.button--loading-spinner .button__more.button--loading:before {
  content: "";
}

.button__more.hover,
.button__more:hover {
  border-color: #f3bc65;
  color: #f3bc65;
  text-decoration: none;
}

.button__more:active,
.button__more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.button__more:focus,
.button__more.focus {
  text-decoration: none;
  outline: none;
}

.button__more:disabled,
.button__more.disabled {
  cursor: not-allowed;
  color: #ccc;
  border-color: #efefef;
}

.button__more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.button__default {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
  padding: 6px 5px;
}

@media (max-width: 767px) {
  .button__default {
    padding: 3px 5px 3px 5px;
  }
}

.button__default:hover,
.button__default:focus,
.button__default.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.button__default:disabled,
.button__default.disabled {
  cursor: not-allowed;
}

.button__default.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.button__default:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.button__default.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.button__default.has-error,
.button__default.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.button__default.has-error:after,
.button__default.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.button__default.has-success,
.button__default.success {
  color: transparent !important;
}

.button__default.has-success:after,
.button__default.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .button__default.button--loading:before {
  content: "";
}

.button--loading-refresh .button__default.button--loading:before {
  content: "";
}

.button--loading-spinner .button__default.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .button__default.hover,
  .button__default:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.button__default:active,
.button__default.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.button__default:disabled,
.button__default.disabled {
  color: #ccc;
  border-color: #efefef;
}

.button__default--reset:before {
  margin: 0 10px 0 0;
  font-size: 1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

.button__default--normal {
  padding: 4px 10px;
  width: 120px;
}

.button__default--medium {
  font-size: 12px;
  padding: 4px 10px;
  width: 115px;
}

.button__default--small {
  font-size: 12px;
  padding: 1px 10px;
  border-width: 1px;
  width: 100px;
}

/*------------------------------------------------------------------
 * UI page demonstration
 * ============================================================== */

.ui__row {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 40px;
}

.ui__row:before,
.ui__row:after {
  content: " ";
  display: table;
}

.ui__row:after {
  clear: both;
}

@media (max-width: 991px) {
  .ui__row {
    margin-top: 20px;
  }
}

.ui__row--slider {
  background: #f6f6f6;
  margin: 0;
}

.ui__title {
  font-size: 14px;
}

@media (max-width: 767px) {
  .ui__title {
    display: block;
    margin-left: 10px;
  }
}

.ui__button {
  display: inline-block;
}

.ui__button--1 {
  width: 150px !important;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .ui__button--1 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--2 {
  width: 200px !important;
  margin-right: 7px;
  margin-left: 10px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ui__button--2 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--3 {
  width: 181px;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .ui__button--3 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--4 {
  width: 120px;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .ui__button--4 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--5 {
  width: 100px;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .ui__button--5 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--6 {
  width: 104px;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .ui__button--6 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--7 {
  width: 72px;
}

@media (max-width: 767px) {
  .ui__button--7 {
    display: block;
    margin-top: 10px;
  }
}

.ui__button--wide {
  width: 230px !important;
  margin-right: 7px;
  margin-left: 10px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ui__button--wide {
    display: block;
    margin-top: 10px;
  }
}

.ui--buttons .ui__row {
  position: relative;
  padding-left: 100px;
  line-height: 3;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .ui--buttons .ui__row {
    padding-left: 0;
  }

  .ui--buttons .ui__row span,
  .ui--buttons .ui__row a,
  .ui--buttons .ui__row button {
    display: block;
    margin-top: 10px;
  }

  .ui--buttons .ui__row span {
    margin-top: 0;
    line-height: 1em;
  }
}

.ui--buttons .ui__title {
  width: 98px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .ui--buttons .ui__title {
    position: relative;
  }
}

.ui--social {
  margin-top: 51px;
}

.ui--social .ui__row {
  margin-top: 0;
}

.ui--social .ui__column {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 20px;
}

@media (min-width: 1200px) {
  .ui--social .ui__column {
    float: left;
    width: 50%;
  }
}

.ui--menu {
  margin-top: 36px;
}

.ui--properties .properties__item {
  margin-bottom: 20px;
}

.ui--sliders .ui__column {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .ui--sliders .ui__column {
    float: left;
    width: 33.33333%;
  }
}

.ui--links .ui__column--1 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .ui--links .ui__column--1:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--1:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--1 {
    float: left;
    width: 8.33333%;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--1:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--1:nth-of-type(12n+1) {
    clear: both;
  }
}

.ui--links .ui__column--2 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .ui--links .ui__column--2 {
    margin-left: 8.33333%;
  }
}

@media (min-width: 480px) {
  .ui--links .ui__column--2:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--2:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--2 {
    float: left;
    width: 8.33333%;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--2:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--2:nth-of-type(12n+1) {
    clear: both;
  }
}

.ui--links .ui__column--3 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .ui--links .ui__column--3 {
    margin-left: 0%;
  }
}

@media (min-width: 480px) {
  .ui--links .ui__column--3:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--3:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--3 {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--3:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--3:nth-of-type(4n+1) {
    clear: both;
  }
}

.ui--links .ui__column--4 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .ui--links .ui__column--4 {
    margin-left: 8.33333%;
  }
}

@media (min-width: 480px) {
  .ui--links .ui__column--4:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--4:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--4 {
    float: left;
    width: 8.33333%;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--4:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--4:nth-of-type(12n+1) {
    clear: both;
  }
}

@media (max-width: 1199px) {
  .ui--links .ui__column--4 .social-panel {
    text-align: left;
  }
}

.ui--links .ui__column--5 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .ui--links .ui__column--5:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--5:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--5 {
    float: left;
    width: 8.33333%;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--5:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--5:nth-of-type(12n+1) {
    clear: both;
  }
}

.ui--links .ui__column--6 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .ui--links .ui__column--6 {
    margin-left: 8.33333%;
  }
}

@media (min-width: 480px) {
  .ui--links .ui__column--6:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--6:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--6 {
    float: left;
    width: 8.33333%;
  }
}

@media (min-width: 1200px) {
  .ui--links .ui__column--6:nth-of-type(n) {
    clear: none;
  }

  .ui--links .ui__column--6:nth-of-type(12n+1) {
    clear: both;
  }
}

.ui--sliders .ui__slider {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .ui--sliders .ui__slider {
    float: left;
    width: 75%;
  }
}

.ui--search .ui__column {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .ui--search .ui__column:nth-of-type(n) {
    clear: none;
  }

  .ui--search .ui__column:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .ui--search .ui__column {
    float: left;
    width: 66.66667%;
  }
}

@media (min-width: 768px) {
  .ui--search .ui__column:nth-of-type(n) {
    clear: none;
  }

  .ui--search .ui__column:nth-of-type(1.5n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--search .ui__column {
    float: left;
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .ui--search .ui__column:nth-of-type(n) {
    clear: none;
  }

  .ui--search .ui__column:nth-of-type(1.33333n+1) {
    clear: both;
  }
}

.ui--icons .ui__icons-item {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
  vertical-align: middle;
}

@media (min-width: 480px) {
  .ui--icons .ui__icons-item:nth-of-type(n) {
    clear: none;
  }

  .ui--icons .ui__icons-item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .ui--icons .ui__icons-item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 768px) {
  .ui--icons .ui__icons-item:nth-of-type(n) {
    clear: none;
  }

  .ui--icons .ui__icons-item:nth-of-type(4n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .ui--icons .ui__icons-item {
    float: left;
    width: 14.16667%;
  }
}

@media (min-width: 1200px) {
  .ui--icons .ui__icons-item:nth-of-type(n) {
    clear: none;
  }

  .ui--icons .ui__icons-item:nth-of-type(7.05882n+1) {
    clear: both;
  }
}

.ui--icons .ui__icons-svg {
  fill: #00bbaa;
  width: 70%;
  display: block;
  margin: auto;
}

.ui--icons .ui__icons-svg--stroke {
  stroke: #00bbaa;
  stroke-width: 1px;
  fill: none;
  width: 35%;
}

.ui--icons .ui__icons-svg--danger {
  fill: #e95b35;
}

.ui--icons .ui__icons-svg--doc {
  width: 40%;
}

.ui--icons .ui__icons-svg--area {
  width: 60%;
}

.ui--icons .ui__icons-svg--window {
  width: 40%;
}

.ui--icons .ui__icons-title {
  display: block;
  text-align: center;
}

.ui--forms .ui__column {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

@media (min-width: 992px) {
  .ui--forms .ui__column {
    float: left;
    width: 50%;
  }
}

.ui--forms .form-property__ranges {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .ui--forms .form-property__ranges {
    margin-top: 20px;
  }
}

.ui--review .review__title {
  margin-top: 20px;
}

.ui--dividers > .row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.social-panel {
  font-size: 21px;
  padding: 5px 0;
  text-align: center;
}

.social-panel:before,
.social-panel:after {
  content: " ";
  display: table;
}

.social-panel:after {
  clear: both;
}

.social-panel__link {
  margin: 10px 20px;
}

.social-panel__link:hover,
.social-panel__link.hover {
  color: #00eed8;
}

.social-panel__link:active,
.social-panel__link.active {
  color: #f3bc65;
}

.social-panel__link:disabled,
.social-panel__link.disabled {
  color: #ccc;
  cursor: not-allowed;
}

@media (max-width: 1199px) {
  .social-panel__link {
    margin: 10px;
  }
}

.social-panel--brand {
  background: #00bbaa;
}

.social-panel--brand .social-panel__link {
  color: #fff;
}

.social-panel--brand .social-panel__link:hover,
.social-panel--brand .social-panel__link.hover {
  color: #00eed8;
}

.social-panel--brand .social-panel__link:active,
.social-panel--brand .social-panel__link.active {
  color: #f3bc65;
}

.social-panel--brand .social-panel__link:disabled,
.social-panel--brand .social-panel__link.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.social-panel--black-white {
  background: #000;
}

.social-panel--black-white .social-panel__link {
  color: #fff;
}

.social-panel--black-white .social-panel__link:hover,
.social-panel--black-white .social-panel__link.hover {
  color: #f9dbac;
}

.social-panel--black-white .social-panel__link:active,
.social-panel--black-white .social-panel__link.active {
  color: #f3bc65;
}

.social-panel--black-white .social-panel__link:disabled,
.social-panel--black-white .social-panel__link.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.social-panel--highlight {
  background: #000;
}

.social-panel--highlight .social-panel__link {
  color: #f3bc65;
}

.social-panel--highlight .social-panel__link:hover,
.social-panel--highlight .social-panel__link.hover {
  color: #f9dbac;
}

.social-panel--highlight .social-panel__link:active,
.social-panel--highlight .social-panel__link.active {
  color: #f3bc65;
}

.social-panel--highlight .social-panel__link:disabled,
.social-panel--highlight .social-panel__link.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.social-panel--simple .social-panel__link {
  color: #00bbaa;
}

.social-panel--simple .social-panel__link:hover,
.social-panel--simple .social-panel__link.hover {
  color: #00eed8;
}

.social-panel--simple .social-panel__link:active,
.social-panel--simple .social-panel__link.active {
  color: #f3bc65;
}

.social-panel--simple .social-panel__link:disabled,
.social-panel--simple .social-panel__link.disabled {
  color: #ccc;
  cursor: not-allowed;
}

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

.ul-list li {
  padding-left: 25px;
  position: relative;
}

.ul-list li:before {
  font-size: 12px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #00bbaa;
  left: 0;
  position: absolute;
  top: 4px;
}

.ul-list--default li {
  background: url("../img/bg-border-dotted-vertical.png") no-repeat 3px 5px;
}

.ul-list--default li:before {
  content: " ";
  color: #00bbaa;
  width: 8px;
  height: 8px;
  border: 2px solid #00bbaa;
  border-radius: 8px;
  margin: 0 3px 0 0;
  display: inline-block;
  top: 9px;
}

.ul-list--default li:first-child {
  background-position: 3px 10px;
}

.ul-list--default li:last-child {
  background-position: 3px -209px;
}

.ul-list--disk li:before {
  content: "";
  font-size: 8px;
}

.ul-list--check li:before {
  content: "";
}

.ul-list--rounded-check li:before {
  content: "";
}

.ul-list--arrow li:before {
  content: "";
}

.ul-list--star li:before {
  content: "";
  color: #f3bc65;
}

.ul-list--x li:before {
  content: "";
  color: #f3bc65;
}

.ul-list--ordered {
  list-style-type: decimal;
  margin-left: 22px;
}

.ul-list--ordered li {
  padding-left: 5px;
}

.ul-list--ordered li:before {
  content: " ";
  display: none;
}

/*------------------------------------------------------------------
 * Dividers styles
 * ============================================================== */

.divider--solid {
  border-bottom: 1px solid #808080;
}

.divider--solid-light {
  border-bottom: 1px solid #d0d0d0;
}

.divider--dotted {
  background: url("../img/bg-border-dotted-horizontal.png") 0 0 repeat-x;
  border: 0;
  height: 1px;
}

.divider--dashed {
  border-bottom: 1px dashed #222222;
}

/*------------------------------------------------------------------
 * WP default styles
 * ============================================================== */

.widget__show {
  display: none;
}

@media (max-width: 767px) {
  .widget__show {
    font-size: 17px;
    color: #2c3e50;
    text-align: center;
    border: 1px solid #d6d6d6;
    padding: 15px 0;
    background: #fff;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    outline: none;
    margin-top: 40px;
    background: #e4e4e4;
    display: block;
    margin-top: -1px;
  }

  .widget__show:after {
    font-size: 14px;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    border: 1px solid #2c3e50;
    margin-left: 10px;
    width: 26px;
    height: 26px;
    vertical-align: top;
    text-align: center;
    line-height: 26px;
    padding: 0 0 0 2px;
  }

  .widget__show.active:after {
    content: "";
  }

  .opened .widget__show {
    display: none;
  }
}

.site-title,
.entry-title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 24px 0 0;
  color: #2c3e50;
  font-size: 34px;
  text-align: left;
  font-weight: normal;
}

.sidebar .site-title,
.sidebar
.entry-title {
  font-size: 34px;
}

.footer .site-title,
.footer
.entry-title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .site-title,
  .entry-title {
    font-size: 26px;
  }

  .sidebar .site-title,
  .sidebar
  .entry-title {
    font-size: 26px;
  }
}

.footer .site-title,
.footer
.entry-title {
  font-size: 17px;
  color: #00bbaa;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .footer .site-title,
  .footer
  .entry-title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.site-title a,
.entry-title a {
  color: inherit;
}

.sidebar .widget-title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 24px 0 0;
  color: #2c3e50;
  text-align: left;
  font-size: 34px;
  font-weight: 600;
}

.sidebar .sidebar .widget-title {
  font-size: 34px;
}

.footer .sidebar .widget-title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .sidebar .widget-title {
    font-size: 26px;
  }

  .sidebar .sidebar .widget-title {
    font-size: 26px;
  }
}

.sidebar .widget-subtitle {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: none;
  color: #2c3e50;
  text-align: left;
  margin: 4px 0 0;
  line-height: 1.1;
  min-height: 32px;
}

.sidebar .widget-subtitle strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .sidebar .widget-subtitle {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .sidebar .widget-subtitle {
  margin: 4px 0 0;
}

.footer .widget-title {
  font-size: 17px;
  color: #00adef;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .footer .widget-title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.secondary-toggle {
  display: none;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.widget a:hover {
  text-decoration: none;
}

.widget > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 25px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.widget > ul li {
  color: #2c3e50;
  padding: 14px 0;
  border-bottom: 1px solid #dedede;
}

.widget > ul li:last-child {
  border-bottom: none;
}

.widget_archive select {
  margin-top: 12px;
  width: 100%;
  display: block;
}

.widget_search .search-form {
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 25px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.widget_search label {
  width: 100%;
}

.widget_search .search-field {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: 100%;
  font-weight: normal;
  font-style: italic;
}

.widget_search .search-field:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.widget_search .search-field::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.widget_search .search-field:-ms-input-placeholder {
  color: #2c3e50;
}

.widget_search .search-field::-webkit-input-placeholder {
  color: #2c3e50;
}

.widget_search .search-field[disabled],
.widget_search .search-field[readonly],
fieldset[disabled] .widget_search .search-field {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.widget_search .search-field.parsley-error {
  border: 1px solid #e95b35;
}

.widget_search .search-field.parsley-success {
  border: 1px solid #00bbaa;
}

.widget_search .search-submit {
  color: #d6d6d6;
  font-size: 16px;
  background: none;
  border: none;
  float: right;
  margin: -32px 0 0 0;
  position: relative;
  z-index: 10;
}

.widget_search .search-submit:after {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  content: "";
}

.textwidget {
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 25px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.footer .textwidget {
  background: none;
  padding: 0;
  border: none;
  color: #bebebe;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer .textwidget a {
  font-size: 12px;
  color: #bebebe;
  border: 2px solid #bebebe;
  padding: 5px 10px;
  margin: 10px 0;
  text-transform: uppercase;
}

.widget_calendar table {
  width: 100%;
  border: 1px solid #d6d6d6;
}

.widget_calendar caption {
  text-align: left;
  padding: 0 0 20px;
  font-weight: bold;
}

.widget_calendar th,
.widget_calendar td {
  text-align: center;
  line-height: 33px;
}

.widget_calendar tfoot,
.widget_calendar thead {
  border: 1px solid #d6d6d6;
  border-bottom: none;
}

.widget_calendar tbody {
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 25px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.widget_calendar tbody a {
  background: #00bbaa;
  color: #fff;
  display: block;
}

.widget_calendar tbody a:hover {
  background: #00eed8;
}

.tagcloud a {
  color: #2c3e50;
  margin: 3px 10px 3px 0;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}

.widget_recent_entries > ul > li {
  border-bottom-style: dashed;
}

.widget_recent_entries > ul > li > a {
  color: #2c3e50;
  font-weight: 600;
  display: block;
  font-size: 18px;
}

.widget_recent_comments .recentcomments {
  font-style: italic;
  border-bottom-style: dashed;
  color: #d6d6d6;
  font-size: 12px;
}

.widget_recent_comments .recentcomments > a {
  font-style: normal;
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.widget_recent_comments .comment-author-link {
  color: #2c3e50;
  font-style: normal;
  font-size: 14px;
  display: block;
}

.widget_recent_comments .comment-author-link a {
  color: #2c3e50;
  font-style: normal;
  font-size: 14px;
}

.widget_categories > ul > li:before {
  font-size: 10px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #2c3e50;
  margin-right: 10px;
}

.widget_categories > ul > li > ul {
  margin-top: 15px;
  list-style: none;
  border-top: 1px solid #dedede;
}

.post {
  border-top: 1px solid #808080;
  margin-bottom: 1px;
  padding: 33px 0;
}

.post:first-of-type {
  padding-top: 0;
  border: none;
}

.site-main {
  margin-top: 25px;
}

.entry-header .entry-title {
  font-size: 18px;
  font-weight: 700;
}

.entry-content {
  margin-top: 30px;
}

.entry-footer {
  margin-top: 30px;
}

.entry-footer:before,
.entry-footer:after {
  content: " ";
  display: table;
}

.entry-footer:after {
  clear: both;
}

.posted-on {
  background: rgba(0, 187, 170, 0.7);
  text-align: center;
  padding: 10px 5px;
  float: left;
}

.posted-on a {
  color: #fff;
}

.tags-links {
  margin-left: 50px;
}

.comments-link a {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  width: auto;
  float: right;
  margin-right: 0;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .comments-link a {
    padding: 3px 5px 3px 5px;
  }
}

.comments-link a:hover,
.comments-link a:focus,
.comments-link a.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.comments-link a:disabled,
.comments-link a.disabled {
  cursor: not-allowed;
}

.comments-link a.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.comments-link a:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.comments-link a.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.comments-link a.has-error,
.comments-link a.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.comments-link a.has-error:after,
.comments-link a.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.comments-link a.has-success,
.comments-link a.success {
  color: transparent !important;
}

.comments-link a.has-success:after,
.comments-link a.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .comments-link a.button--loading:before {
  content: "";
}

.button--loading-refresh .comments-link a.button--loading:before {
  content: "";
}

.button--loading-spinner .comments-link a.button--loading:before {
  content: "";
}

.comments-link a.hover,
.comments-link a:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.comments-link a:active,
.comments-link a.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.comments-link a:disabled,
.comments-link a.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

@media (max-width: 767px) {
  .comments-link a {
    margin: 5px 0;
  }
}

.edit-link a {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  width: auto;
  float: right;
  margin-right: 0;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .edit-link a {
    padding: 3px 5px 3px 5px;
  }
}

.edit-link a:hover,
.edit-link a:focus,
.edit-link a.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.edit-link a:disabled,
.edit-link a.disabled {
  cursor: not-allowed;
}

.edit-link a.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.edit-link a:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.edit-link a.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.edit-link a.has-error,
.edit-link a.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.edit-link a.has-error:after,
.edit-link a.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.edit-link a.has-success,
.edit-link a.success {
  color: transparent !important;
}

.edit-link a.has-success:after,
.edit-link a.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .edit-link a.button--loading:before {
  content: "";
}

.button--loading-refresh .edit-link a.button--loading:before {
  content: "";
}

.button--loading-spinner .edit-link a.button--loading:before {
  content: "";
}

.edit-link a.hover,
.edit-link a:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.edit-link a:active,
.edit-link a.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.edit-link a:disabled,
.edit-link a.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.post-password-form {
  margin-top: 10px;
}

.post-password-form label > input {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.post-password-form label > input:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.post-password-form label > input::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.post-password-form label > input:-ms-input-placeholder {
  color: #2c3e50;
}

.post-password-form label > input::-webkit-input-placeholder {
  color: #2c3e50;
}

.post-password-form label > input[disabled],
.post-password-form label > input[readonly],
fieldset[disabled] .post-password-form label > input {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.post-password-form label > input.parsley-error {
  border: 1px solid #e95b35;
}

.post-password-form label > input.parsley-success {
  border: 1px solid #00bbaa;
}

@media (max-width: 767px) {
  .post-password-form label > input {
    margin-left: 0;
  }
}

.post-password-form input[type="submit"] {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
}

@media (max-width: 767px) {
  .post-password-form input[type="submit"] {
    padding: 3px 5px 3px 5px;
  }
}

.post-password-form input[type="submit"]:hover,
.post-password-form input[type="submit"]:focus,
.post-password-form input[type="submit"].active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.post-password-form input[type="submit"]:disabled,
.post-password-form input[type="submit"].disabled {
  cursor: not-allowed;
}

.post-password-form input[type="submit"].progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.post-password-form input[type="submit"]:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.post-password-form input[type="submit"].button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.post-password-form input[type="submit"].has-error,
.post-password-form input[type="submit"].error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.post-password-form input[type="submit"].has-error:after,
.post-password-form input[type="submit"].error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.post-password-form input[type="submit"].has-success,
.post-password-form input[type="submit"].success {
  color: transparent !important;
}

.post-password-form input[type="submit"].has-success:after,
.post-password-form input[type="submit"].success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .post-password-form input[type="submit"].button--loading:before {
  content: "";
}

.button--loading-refresh .post-password-form input[type="submit"].button--loading:before {
  content: "";
}

.button--loading-spinner .post-password-form input[type="submit"].button--loading:before {
  content: "";
}

.post-password-form input[type="submit"].hover,
.post-password-form input[type="submit"]:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.post-password-form input[type="submit"]:active,
.post-password-form input[type="submit"].active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.post-password-form input[type="submit"]:disabled,
.post-password-form input[type="submit"].disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

@media (max-width: 767px) {
  .post-password-form input[type="submit"] {
    margin-left: 0;
  }
}

/*------------------------------------------------------------------
 * Fix antialiasing for safari, mac os
 * ============================================================== */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.widget-bar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .widget-bar {
    float: left;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .widget-bar:nth-of-type(n) {
    clear: none;
  }

  .widget-bar:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .widget-bar {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .widget-bar:nth-of-type(n) {
    clear: none;
  }

  .widget-bar:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .widget-bar {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .widget-bar:nth-of-type(n) {
    clear: none;
  }

  .widget-bar:nth-of-type(3n+1) {
    clear: both;
  }
}

/*------------------------------------------------------------------
 * Center wrap
 * + Center / .center
 * ============================================================== */

.center {
  background: #ffffff; /*f6f6f6*/
  position: relative;
}

.center:before,
.center:after {
  content: " ";
  display: table;
}

.center:after {
  clear: both;
}

.center--subpage {
  border-top: 1px solid #dedede;
}

.main--white .center {
  background: #fff !important;
}

/*------------------------------------------------------------------
 * Main wrap
 * + Main / .main
 * ============================================================== */

.main--white .main {
  background: #fff !important;
}

.main--white .main .container {
  background: #fff !important;
}

/*------------------------------------------------------------------
 * Box wrap
 * + Box / .box
 * ============================================================== */

.box {
  position: relative;
}

/*------------------------------------------------------------------
 * Sidebar wrap
 * + Sidebar / .sidebar
 * ============================================================== */

.sidebar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 50px;
  margin-top: 27px;
}

@media (min-width: 768px) {
  .sidebar {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .sidebar {
    float: left;
    width: 25%;
  }
}

.sidebar > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .sidebar {
    padding-left: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: inherit;
  }

  .sidebar > :first-child header {
    margin-top: 0;
  }

  .sidebar + .properties--similar {
    margin-top: -30px;
  }
}

.sidebar > :first-child.worker--sidebar-advanced {
  margin-top: 109px;
}

@media (max-width: 1199px) {
  .sidebar > :first-child.worker--sidebar-advanced {
    margin-top: 31px;
  }
}

.sidebar > :first-child.worker--sidebar-advanced .worker__header {
  display: none;
}

.sidebar .container {
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .sidebar .search--article {
    display: none;
  }
}

@media (max-width: 1199px) {
  .sidebar--index {
    float: none;
    margin: 0 auto 30px;
    width: 50%;
    clear: both;
  }
}

@media (max-width: 767px) {
  .sidebar--index {
    width: auto;
    padding: 0 30px;
  }
}

.sidebar--upper {
  margin-top: 0;
}

@media (max-width: 767px) {
  .sidebar--upper {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .sidebar--listing .sidebar__toggle {
    display: none;
  }
}

.collapse {
  display: none;
  visibility: hidden;
}

.collapse.in {
  display: block;
  visibility: visible;
}

@media (min-width: 768px) {
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    visibility: visible !important;
  }
}

.compact .navbar__row {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .compact .navbar__row {
    margin: 0;
  }
}

/*------------------------------------------------------------------
 * Option enable header Color Brand
 * ============================================================== */

.header_color_brand .navbar--header {
  background: #00bbaa;
}

.header_color_brand .navbar--header.header-fixed {
  -webkit-box-shadow: 0 5px 0 rgba(0, 187, 170, 0.2);
  box-shadow: 0 5px 0 rgba(0, 187, 170, 0.2);
}

.header_color_brand .navbar-collapse {
  background: #2c3e50;
}

.header_color_brand .navbar__nav > li > a {
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header_color_brand .auth__link {
  color: #fff;
}

.header_color_brand .auth__remember,
.header_color_brand .auth__label {
  color: #2c3e50;
}

.header_color_brand .auth__title {
  color: #2c3e50;
}

.header_color_brand .auth__icon-user {
  fill: #fff;
}

@media (min-width: 768px) {
  .header_color_brand .navbar .navbar__nav > .active {
    background: #f3bc65;
  }
}

.header_color_brand .navbar .navbar__nav > .active > a {
  border: none;
}

@media (min-width: 768px) {
  .header_color_brand .navbar .navbar__nav > li:hover,
  .header_color_brand .navbar .navbar__nav > li:focus {
    background: #f3bc65;
  }
}

.header_color_brand .navbar__user-item {
  color: #fff;
}

@media (min-width: 768px) {
  .header_color_brand .header-fixed .navbar .navbar__nav {
    background: none;
  }

  .header_color_brand .header-fixed .header__email,
  .header_color_brand .header-fixed .header__phone {
    color: #fff;
  }
}

/*------------------------------------------------------------------
 * Option enable header Color White
 * ============================================================== */

.header_color_white .navbar {
  background: #fff;
}

.header_color_white .navbar.header-fixed {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------------------------
 * Option enable header Color Gray
 * ============================================================== */

.header_color_gray .navbar {
  background: #f6f6f6;
}

.header_color_gray .navbar.header-fixed {
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------------------------
 * Option enable 'boxed'
 * ============================================================== */

.boxed .box {
  width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

@media (max-width: 1299px) {
  .boxed .box {
    width: auto;
    padding: 0;
  }
}

.site-wrap {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10;
  background: #fff;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.site-wrap:before,
.site-wrap:after {
  content: " ";
  display: table;
}

.site-wrap:after {
  clear: both;
}

.site-wrap--move {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}

.section .container {
  padding-bottom: 30px;
}

/*------------------------------------------------------------------
 * Option enable bacground pattern
 * ============================================================== */

.bg-brickwall {
  background: url("../img/patterns/brickwall.png");
}

.bg-debut_light {
  background: url("../img/patterns/debut_light.png");
}

.bg-diagonal_lines_01 {
  background: url("../img/patterns/diagonal_lines_01.png");
}

.bg-diagonal-noise {
  background: url("../img/patterns/diagonal-noise.png");
}

.bg-dust_2X {
  background: url("../img/patterns/dust_2X.png");
}

.bg-groovepaper {
  background: url("../img/patterns/groovepaper.png");
}

.bg-little_pluses {
  background: url("../img/patterns/little_pluses.png");
}

.bg-p4 {
  background: url("../img/patterns/p4.png");
}

.bg-p5 {
  background: url("../img/patterns/p5.png");
}

.bg-retina_dust {
  background: url("../img/patterns/retina_dust.png");
}

.bg-ricepaper2 {
  background: url("../img/patterns/ricepaper2.png");
}

.bg-shl {
  background: url("../img/patterns/shl.png");
}

.bg-squairy_light {
  background: url("../img/patterns/squairy_light.png");
}

.bg-stardust_2X {
  background: url("../img/patterns/stardust_2X.png");
}

.bg-subtle_dots {
  background: url("../img/patterns/subtle_dots.png");
}

.bg-subtle_dots_2X {
  background: url("../img/patterns/subtle_dots_2X.png");
}

.bg-white_brick_wall {
  background: url("../img/patterns/white_brick_wall.png");
}

.bg-worn_dots {
  background: url("../img/patterns/worn_dots.png");
}

.sidebar-left .listing,
.sidebar-left .property,
.sidebar-left .page__content {
  float: right;
}

.sidebar-right .listing,
.sidebar-right .property,
.sidebar-right .page__content {
  float: left;
}

@media (min-width: 1200px) {
  .fullwidth .listing,
  .fullwidth .property,
  .fullwidth .page__content,
  .sidebar-hide .listing,
  .sidebar-hide .property,
  .sidebar-hide .page__content {
    float: left;
    width: 100%;
  }

  .fullwidth .sidebar,
  .sidebar-hide .sidebar {
    display: none;
  }
}

.bs-example .label {
  margin-right: 5px;
}

hr {
  border-bottom: 1px solid #d6d6d6;
}

@media (min-width: 1200px) {
  .scroll-animation [data-sr] {
    visibility: hidden;
  }
}

.button__toggle {
  display: none;
  font-size: 17px;
  color: #2c3e50;
  text-align: center;
  border: 1px solid #d6d6d6;
  padding: 15px 0;
  background: #fff;
  text-transform: uppercase;
  width: 100%;
  font-weight: bold;
  outline: none;
  margin-bottom: 0;
}

.button__toggle:after {
  font-size: 1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  border: 1px solid #2c3e50;
  margin-left: 10px;
  padding: 0;
  width: 30px;
  text-align: center;
  height: 30px;
}

@media (max-width: 767px) {
  .button__toggle:after {
    padding-top: 1px;
    padding-left: 1px;
  }
}

.button__toggle.active:after {
  content: "";
}

@media (max-width: 767px) {
  .button__toggle.active:after {
    padding-top: 0;
    padding-left: 0;
    margin-left: 15px;
    margin-right: -5px;
  }
}

@media (max-width: 767px) {
  .button__toggle {
    display: block;
  }
}

.form-target {
  display: none;
}

mark {
  background: none;
  padding: 0;
}

/*------------------------------------------------------------------
 * Loading Overlay option
 * + Loading Overlay / .loading-overlay
 * ============================================================== */

.loading-overlay {
  position: relative;
}

.loading-overlay > *:not(.loading) {
  opacity: 0.3;
}

.loading-overlay .loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 9;
}

.loading-overlay .loading:before {
  font-size: 3em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  z-index: 10;
  display: block;
}

.footer .loading-overlay .loading {
  color: #bebebe;
}

/*------------------------------------------------------------------
 * No items option
 * + No items / .no-items
 * ============================================================== */

.no-items {
  text-align: center;
  margin: 50px 0 0;
}

.no-items__icon {
  font-size: 40px;
  display: block;
  color: #d1d1d1;
}

.no-items__icon svg {
  width: 40px;
  height: 31px;
  fill: #d1d1d1;
}

.no-items__icon--svg {
  font-size: inherit;
}

.no-items__title {
  display: inline-block;
  background: #d1d1d1;
  color: #fff;
  font-size: 25px;
  margin-top: 10px;
  padding: 0 15px;
  text-transform: uppercase;
}

.footer .no-items__title {
  color: #222 !important;
}

.no-items--align {
  margin: 0;
}

/*------------------------------------------------------------------
 * Parsley errors vendor fix style
 * + Parsley / .parsley
 * ============================================================== */

.parsley-errors-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .parsley-errors-list.filled {
    position: relative;
    bottom: 0;
    margin-bottom: 10px;
  }
}

.parsley-type,
.parsley-minlength {
  color: #f3bc65;
}

.parsley-required {
  color: #e95b35;
}

/*------------------------------------------------------------------
 * Range Slider vendor fix style
 * + Range Slider / .irs
 * ============================================================== */

.irs-line {
  background: #00bbaa;
  background-image: -webkit-gradient(linear, left top, right top, from(#00eed8), to(#00bbaa));
  background-image: linear-gradient(to right, #00eed8 0%, #00bbaa 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF00EED8', endColorstr='#FF00BBAA', GradientType=1);
}

.search--banner-sidebar .irs-line {
  background: rgba(255, 255, 255, 0.3);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), to(white));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DFFFFFF', endColorstr='#FFFFFFFF', GradientType=1);
}

/*------------------------------------------------------------------
 * Pnotify vendor fix style
 * + Pnotify / .ui-pnotify-container
 * ============================================================== */

.ui-pnotify-container.alert-success {
  background: #00bbaa;
}

/*------------------------------------------------------------------
 * Select2 vendor fix style
 * + Select2 / .ui-pnotify-container
 * ============================================================== */

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #00bbaa;
}

/*------------------------------------------------------------------
 * Player vendor fix style
 * + Player / .player
 * ============================================================== */

.player-controls button:focus,
.player-controls button:hover,
.player-controls [type="checkbox"]:focus + label,
.player-controls [type="checkbox"] + label:hover {
  background: #00bbaa;
}

.player-progress-played[value] {
  z-index: 2;
  color: #00bbaa;
}

.player-volume[type=range]:focus {
  outline: 0;
}

.player-volume[type=range]:focus::-webkit-slider-thumb {
  background: #00bbaa;
}

.player-volume[type=range]:focus::-moz-range-thumb {
  background: #00bbaa;
}

.player-volume[type=range]:focus::-ms-thumb {
  background: #00bbaa;
}

/*------------------------------------------------------------------
 * Calendar fixes
 * ============================================================== */

.daterangepicker th.month {
  color: #00bbaa;
}

/*------------------------------------------------------------------
 * Switch
 * + Switch / .switch
 * ============================================================== */

.switch {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.switch * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.switch label {
  cursor: pointer;
}

.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch label input[type=checkbox]:checked + .lever {
  background-color: #84c7c1;
}

.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #26a69a;
}

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 30px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px;
}

.header--white .switch label .lever {
  background-color: #d7d7d7;
}

.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #F1F1F1;
  border-radius: 15px;
  left: -5px;
  top: 0;
  -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease;
}

.header--white .switch label .lever:after {
  background-color: #00bbaa;
}

.switch input[type=checkbox]:checked:not(:disabled) ~ .lever:active:after {
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(38, 166, 154, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(38, 166, 154, 0.1);
}

.switch input[type=checkbox]:not(:disabled) ~ .lever:active:after {
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(0, 0, 0, 0.08);
}

.switch label input[type=checkbox]:checked + .lever:after {
  left: 16px;
}

.switch input[type=checkbox][disabled] + .lever {
  cursor: default;
}

.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #BDBDBD;
}

.switch--header {
  font-size: 13px;
  text-transform: uppercase;
}

.switch--header label input[type=checkbox]:checked + .lever {
  background-color: rgba(255, 255, 255, 0.5);
}

.switch--header label input[type=checkbox]:checked + .lever:after {
  background-color: #fff;
}

.header--overlay-map .switch--header label input[type=checkbox]:checked + .lever {
  background-color: #d7d7d7;
}

.header--overlay-map .switch--header label input[type=checkbox]:checked + .lever:after {
  background-color: #00bbaa;
}

.header--white .switch--header label input[type=checkbox]:checked + .lever {
  background-color: #d7d7d7;
}

.header--white .switch--header label input[type=checkbox]:checked + .lever:after {
  background-color: #00bbaa;
}

.switch--menu {
  font-size: 15px;
  text-transform: uppercase;
  margin: 10px 0 0 50px;
  color: #fff;
}

.switch--menu label input[type=checkbox]:checked + .lever {
  background-color: rgba(255, 255, 255, 0.5);
}

.switch--menu label input[type=checkbox]:checked + .lever:after {
  background-color: #fff;
}

.switch--menu label .lever {
  width: 50px;
  height: 20px;
}

.switch--menu label .lever:after {
  width: 20px;
  height: 20px;
}

.switch--menu label input[type=checkbox]:checked + .lever:after {
  left: 30px;
}

/*------------------------------------------------------------------
 * Workers widget
 * + Worker / .worker
 *   __ Title / .worker__title
 *   __ Headline / .worker__headline
 *   __ Item / .worker__item
 *   -- Worker sidebar / .worker--sidebar
 *   -- Worker properties / .worker--properties
 *   -- Worker list / .worker--list
 *   -- Worker details / .worker--details
 *   -- Worker grid / .worker--grid
 *   -- Worker sidebar-advanced / .worker--sidebar-advanced
 *   -- Worker sidebar-property / .worker--sidebar-property
 *   -- Worker sidebar-nav / .worker--sidebar-nav
 *   -- Worker navbar / .worker--navbar
 * ============================================================== */

.worker__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .worker__header {
    margin: 21px 0 25px;
  }
}

.worker__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .worker__title {
  font-size: 34px;
}

.footer .worker__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .worker__title {
    font-size: 26px;
  }

  .sidebar .worker__title {
    font-size: 26px;
  }
}

.worker__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}

.worker__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .worker__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .worker__headline {
  margin: 4px 0 0;
}

.worker__list {
  margin-top: 49px;
  padding: 30px 0 0 0;
}

.worker__list:before,
.worker__list:after {
  content: " ";
  display: table;
}

.worker__list:after {
  clear: both;
}

@media (max-width: 767px) {
  .worker__list {
    margin: 27px 30px 0;
    padding-top: 23px;
  }
}

.worker__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  text-align: center;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 480px) {
  .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .worker__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .worker__item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 992px) {
  .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker__item:nth-of-type(4n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .worker__item {
    margin-bottom: 10px;
  }
}

.worker__name {
  margin: 7px 0 7px;
  text-transform: uppercase;
  font-size: 24px;
  color: #00bbaa;
  font-weight: 600;
}

@media (max-width: 767px) {
  .worker__name {
    font-size: 17px;
    margin-bottom: 0;
  }
}

.worker__post {
  padding: 10px 0;
}

@media (max-width: 767px) {
  .worker__post {
    padding: 3px 0;
    border: none;
  }
}

.worker__photo {
  margin: 12px 0;
}

@media (max-width: 767px) {
  .worker__photo {
    margin: 0 27px;
  }
}

.worker__tel {
  margin: 10px 0 10px 0;
  font-size: 20px;
  color: #00bbaa;
  font-weight: 600;
  text-decoration: none;
}

.worker__tel:hover {
  text-decoration: none;
  color: #00bbaa;
}

@media (max-width: 767px) {
  .worker__tel {
    font-size: 17px;
    margin: 5px 0 0 0;
  }
}

.worker__contacts {
  color: #2c3e50;
}

.worker__contacts a {
  font-weight: 600;
  color: #00bbaa;
  margin-left: 5px;
}

.worker__contacts a:first-child {
  margin-left: 0 !important;
}

.worker__contacts > div > span {
  width: 20%;
  display: inline-block;
  vertical-align: middle;
}

.worker__contacts > div > a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 75%;
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}

.worker__contacts > div > a:first-child {
  width: 100%;
}

.worker__contacts-link {
  display: block;
}

.worker__listings a {
  font-weight: 600;
  margin-left: 5px;
}

.worker__favorites {
  font-style: normal;
  margin-right: 10px;
}

.worker__favorites:before {
  font-size: 1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

.worker__favorites--highlight {
  color: #f3bc65;
}

.worker__avatar {
  background: #e4e4e4;
  padding: 25px 0 0 0;
  margin: 19px 0 11px 0;
}

.worker__avatar svg {
  fill: #2c3e50;
  width: 85%;
  margin: 0 auto 0;
  display: block;
  height: 130px;
}

.worker__avatar-upload {
  text-align: center;
  font-size: 13px;
  color: #00bbaa;
  border: none;
  background: none;
  width: 100%;
  display: block;
}

.worker__nav {
  margin: 27px 0 0 10px;
}

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

.worker__nav li {
  margin: 18px 0;
}

.worker__nav a {
  text-transform: uppercase;
  color: #2c3e50;
  display: block;
}

.worker__btn-more {
  position: relative;
  border: 1px solid #d6d6d6;
  text-align: center;
  display: block;
  padding: 7px 20px;
  text-transform: uppercase;
  color: #2c3e50;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 600;
  width: 200px;
  margin: 0 auto;
  margin: 50px 0 0;
  padding: 8px 0;
  background: #fff;
  width: 100%;
}

.worker__btn-more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.worker__btn-more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.worker__btn-more.has-error,
.worker__btn-more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.worker__btn-more.has-error:after,
.worker__btn-more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.worker__btn-more.has-success,
.worker__btn-more.success {
  color: transparent !important;
}

.worker__btn-more.has-success:after,
.worker__btn-more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .worker__btn-more.button--loading:before {
  content: "";
}

.button--loading-refresh .worker__btn-more.button--loading:before {
  content: "";
}

.button--loading-spinner .worker__btn-more.button--loading:before {
  content: "";
}

.worker__btn-more.hover,
.worker__btn-more:hover {
  border-color: #f3bc65;
  color: #f3bc65;
  text-decoration: none;
}

.worker__btn-more:active,
.worker__btn-more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.worker__btn-more:focus,
.worker__btn-more.focus {
  text-decoration: none;
  outline: none;
}

.worker__btn-more:disabled,
.worker__btn-more.disabled {
  cursor: not-allowed;
  color: #ccc;
  border-color: #efefef;
}

.worker__btn-more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .worker__btn-more {
    margin: 30px 30px 0;
    width: auto;
    display: block;
    padding: 3px 0;
  }
}

.worker__form:before,
.worker__form:after {
  content: " ";
  display: table;
}

.worker__form:after {
  clear: both;
}

.worker__show {
  border: 1px solid #d6d6d6;
  color: #00bbaa;
  text-align: center;
  background: #fff;
  margin: 15px auto 0;
  padding: 6px 10px;
  display: none;
  width: 170px;
}

.worker__show:before {
  font-size: 1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  margin-right: 10px;
}

.opened .worker__show {
  display: none;
}

@media (max-width: 767px) {
  .worker__show {
    display: block;
  }
}

.worker__intro-col:before,
.worker__intro-col:after {
  content: " ";
  display: table;
}

.worker__intro-col:after {
  clear: both;
}

.worker__more {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
  width: 120px;
  display: none;
  background: none;
}

@media (max-width: 767px) {
  .worker__more {
    padding: 3px 5px 3px 5px;
  }
}

.worker__more:hover,
.worker__more:focus,
.worker__more.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.worker__more:disabled,
.worker__more.disabled {
  cursor: not-allowed;
}

.worker__more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.worker__more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.worker__more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.worker__more.has-error,
.worker__more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.worker__more.has-error:after,
.worker__more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.worker__more.has-success,
.worker__more.success {
  color: transparent !important;
}

.worker__more.has-success:after,
.worker__more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .worker__more.button--loading:before {
  content: "";
}

.button--loading-refresh .worker__more.button--loading:before {
  content: "";
}

.button--loading-spinner .worker__more.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .worker__more.hover,
  .worker__more:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.worker__more:active,
.worker__more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.worker__more:disabled,
.worker__more.disabled {
  color: #ccc;
  border-color: #efefef;
}

@media (max-width: 767px) {
  .worker__more {
    display: block;
    margin: 10px auto 0;
  }
}

.worker--index {
  background: #f6f6f6;
}

@media (max-width: 767px) {
  .worker--index {
    padding-bottom: 30px;
  }
}

.worker--index .worker__title {
  font-family: "Montserrat", sans-serif;
}

.worker--index .worker__list {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 0;
  margin-top: 0;
}

.worker--index .worker__list:before,
.worker--index .worker__list:after {
  content: " ";
  display: table;
}

.worker--index .worker__list:after {
  clear: both;
}

@media (max-width: 1199px) {
  .worker--index .worker__list {
    margin: 0;
  }
}

.worker--index .worker__list .no-items {
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  .worker--index .worker__list .no-items {
    margin-bottom: 0;
  }
}

.worker--index .worker__item {
  margin-bottom: 50px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .worker--index .worker__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .worker--index .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--index .worker__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .worker--index .worker__item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .worker--index .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--index .worker__item:nth-of-type(4n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .worker--index .worker__item:hover .worker__details {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .worker--index .worker__item:hover .worker__link {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .worker--index .worker__item {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .worker--index .worker__item {
    margin-bottom: 30px;
  }

  .worker--index .worker__item:last-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .worker--index .worker__item.animate-end .worker__name,
  .worker--index .worker__item.animate-end .worker__tel,
  .worker--index .worker__item.animate-end .worker__more {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.worker--index .worker__name {
  margin-bottom: 0;
  margin-top: 29px;
  color: #2c3e50;
  text-transform: none;
}

@media (min-width: 1200px) {
  .worker--index .worker__name {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

@media (max-width: 767px) {
  .worker--index .worker__name {
    font-size: 20px;
  }
}

.worker--index .worker__post {
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: none;
  font-weight: normal;
}

.worker--index .worker__photo {
  margin: 12px 0 0;
  position: relative;
  overflow: hidden;
}

.worker--index .worker__info {
  background: #fff;
}

.worker--index .worker__info:before,
.worker--index .worker__info:after {
  content: " ";
  display: table;
}

.worker--index .worker__info:after {
  clear: both;
}

.worker--index .worker__more {
  text-transform: uppercase;
  font-size: 12px;
  color: #a6a6a6;
  display: block;
  border: none;
  width: 90px;
  margin: 9px auto 0;
  padding-bottom: 20px;
}

.worker--index .worker__more:hover,
.worker--index .worker__more:active {
  background: none;
}

@media (min-width: 1200px) {
  .worker--index .worker__more {
    -webkit-transform: translateY(90px);
    -ms-transform: translateY(90px);
    transform: translateY(90px);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

.worker--index .worker__details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#CC000000', GradientType=0);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 60px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

.worker--index .worker__links {
  padding: 10px 0;
}

.worker--index .worker__link {
  font-size: 20px;
  color: #fff;
  margin: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.worker--index .worker__link:nth-child(1) {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.worker--index .worker__link:nth-child(2) {
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
}

.worker--index .worker__link:nth-child(3) {
  -webkit-transform: translateY(300px);
  -ms-transform: translateY(300px);
  transform: translateY(300px);
}

.worker--index .worker__link:nth-child(4) {
  -webkit-transform: translateY(400px);
  -ms-transform: translateY(400px);
  transform: translateY(400px);
}

.worker--index .worker__link-icon {
  fill: #fff;
  width: 18px;
  height: 13px;
}

.worker--index .worker__tel {
  margin: 9px 0 0 0;
  color: #00adef;
  font-size: 17px;
  font-weight: bold;
  display: block;
}

.worker--index .worker__tel:hover {
  color: #58AA46;
  border: none;
}

@media (min-width: 1200px) {
  .worker--index .worker__tel {
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

.worker--index .worker__contacts {
  line-height: 1.3;
}

.worker--index .worker__contacts > div > span {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.worker--index .worker__contacts > div > a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  color: #00bbaa;
}

.worker--index .worker__contacts > div > a:hover {
  color: #00bbaa;
}

.worker--sidebar {
  background: none !important;
  margin: 0 0 30px;
}

@media (max-width: 767px) {
  .worker--sidebar {
    margin: 0;
  }
}

.worker--sidebar.opened .worker__header {
  display: block;
}

.worker--sidebar.opened .worker__list {
  display: block;
}

.worker--sidebar .worker__title {
  color: #2c3e50;
  text-align: left;
}

@media (max-width: 767px) {
  .worker--sidebar .worker__title {
    text-align: center;
  }
}

.worker--sidebar .worker__header {
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .worker--sidebar .worker__header {
    display: none;
  }
}

.worker--sidebar .worker__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: none;
  color: #2c3e50;
  text-align: left;
  font-size: 15px;
  line-height: 1.1;
  min-height: 32px;
}

.worker--sidebar .worker__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .worker--sidebar .worker__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .worker--sidebar .worker__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .worker--sidebar .worker__headline {
    text-align: center;
  }
}

.worker--sidebar .worker__list {
  background: #e4e4e4;
  border: 1px solid #d6d6d6;
  padding: 15px 15px 15px; /*30px 30px 20px*/
  margin-top: 12px;
}

@media (max-width: 767px) {
  .worker--sidebar .worker__list {
    margin: 18px 0 0 0;
    display: none;
  }
}

.worker--sidebar .worker__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #222;
  padding: 0;
  padding-bottom: 10px;
  text-align: left;
}

@media (min-width: 480px) {
  .worker--sidebar .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--sidebar .worker__item:nth-of-type(1n+1) {
    clear: both;
  }
}

.worker--sidebar .worker__item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.worker--sidebar .worker__name {
  font-size: 15px;
  text-align: left;
  margin-top: 0;
}

.worker--sidebar .worker__post {
  font-size: 14px;
  border: none;
  text-align: left;
  font-weight: normal;
  padding-top: 3px;
  margin-bottom: 0;
}

.worker--sidebar .worker__photo {
  position: relative;
  float: left;
  width: 75%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 !important;
  margin: 0 0 10px 0;
  float: none;
}

.worker--sidebar .worker__photo img {
  display: block;
  margin: 0;
}

.worker--sidebar .worker__tel {
  clear: both;
  font-size: 15px;
  text-align: left;
  margin: 0;
  display: inline-block;
}

.worker--sidebar .worker__tel:hover {
  color: #00bbaa;
  border-bottom-color: #00bbaa;
}

.worker--properties {
  background: none !important;
  padding: 0;
}

.worker--properties .worker__item {
  text-align: left;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
  width: auto;
  margin-bottom: 20px;
  border-bottom: 1px dotted #d6d6d6;
  padding-bottom: 10px;
}

.worker--properties .worker__item:before,
.worker--properties .worker__item:after {
  content: " ";
  display: table;
}

.worker--properties .worker__item:after {
  clear: both;
}

.worker--properties .worker__item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .worker--properties .worker__item {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

.worker--properties .worker__name {
  position: relative;
  float: left;
  width: 58.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: right;
  font-size: 24px;
}

@media (max-width: 767px) {
  .worker--properties .worker__name {
    width: 100%;
    text-align: center;
  }
}

.worker--properties .worker__post {
  position: relative;
  float: left;
  width: 58.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: right;
  font-size: 15px;
  border: none;
  font-weight: normal;
  padding-top: 3px;
}

@media (max-width: 767px) {
  .worker--properties .worker__post {
    width: 100%;
    text-align: center;
  }
}

.worker--properties .worker__photo {
  position: relative;
  float: left;
  width: 41.66667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}

@media (max-width: 767px) {
  .worker--properties .worker__photo {
    width: 62%;
    padding: 0;
    margin: 0 auto;
    float: none;
  }

  .worker--properties .worker__photo img {
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .worker--properties .worker__intro {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .worker--properties .worker__intro {
    width: 100%;
    padding: 0;
    margin: 0;
    float: none;
  }

  .worker--properties .worker__intro * {
    float: none;
  }
}

.worker--properties .worker__tel {
  font-size: 17px;
  position: relative;
  float: left;
  width: 58.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: right;
}

.worker--properties .worker__contacts {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: right;
}

@media (min-width: 768px) {
  .worker--properties .worker__contacts {
    float: left;
    width: 58.33333%;
  }
}

.worker--properties .worker__contacts a {
  color: #2c3e50;
  text-align: left;
  font-weight: 600;
}

@media (max-width: 767px) {
  .worker--properties .worker__contacts {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .worker--properties .worker__intro-row {
    display: none;
  }

  .opened .worker--properties .worker__intro-row {
    display: block;
  }
}

@media (max-width: 767px) {
  .worker--properties .worker__descr {
    border-top: 1px dotted #ccc;
    padding-top: 15px;
    margin: 15px 15px 0 15px;
    display: none;
  }

  .opened .worker--properties .worker__descr {
    display: block;
  }
}

.worker--properties .worker__listings {
  display: none;
}

.worker--properties .social--worker {
  display: none;
}

@media (max-width: 767px) {
  .worker--properties .social--worker {
    padding: 0 15px;
  }
}

.worker--list {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .worker--list {
    margin-top: 30px;
  }
}

.worker--list .worker__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: none;
  text-align: left;
  padding: 0 0 50px 0;
  margin-bottom: 50px;
  border-bottom: 1px solid #808080;
}

@media (min-width: 768px) {
  .worker--list .worker__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .worker--list .worker__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .worker--list .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--list .worker__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .worker--list .worker__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .worker--list .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--list .worker__item:nth-of-type(1n+1) {
    clear: both;
  }
}

.worker--list .worker__item:before,
.worker--list .worker__item:after {
  content: " ";
  display: table;
}

.worker--list .worker__item:after {
  clear: both;
}

@media (max-width: 1199px) {
  .worker--list .worker__item {
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .worker--list .worker__item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d6d6d6;
  }
}

.worker--list .worker__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .worker--list .worker__item:last-child {
    padding-bottom: 0;
  }
}

.worker--list .worker__photo {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 1200px) {
  .worker--list .worker__photo {
    float: left;
    width: 33.33333%;
  }
}

@media (max-width: 1199px) {
  .worker--list .worker__photo {
    padding: 0;
    width: 50%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .worker--list .worker__photo {
    width: 60%;
    margin: 0 auto;
  }
}

.worker--list .worker__show {
  display: none;
}

.worker--list .worker__intro {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 11px;
}

@media (min-width: 1200px) {
  .worker--list .worker__intro {
    float: left;
    width: 66.66667%;
  }
}

@media (max-width: 1199px) {
  .worker--list .worker__intro {
    margin-bottom: 0;
  }
}

.worker--list .worker__name {
  border: none;
  margin: -4px 0 5px 0;
}

@media (max-width: 767px) {
  .worker--list .worker__name {
    text-align: center;
    margin: 15px 0 5px;
  }
}

.worker--list .worker__post {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  border: 0;
  padding: 0;
  margin-bottom: 13px;
}

@media (min-width: 1200px) {
  .worker--list .worker__post {
    float: left;
    width: 50%;
  }
}

@media (max-width: 1199px) {
  .worker--list .worker__post {
    margin-bottom: 3px;
  }
}

@media (max-width: 767px) {
  .worker--list .worker__post {
    text-align: center;
  }
}

.worker--list .worker__listings {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-right: 0;
  text-align: right;
}

@media (min-width: 1200px) {
  .worker--list .worker__listings {
    float: left;
    width: 50%;
  }
}

@media (max-width: 1199px) {
  .worker--list .worker__listings {
    margin-bottom: 13px;
    text-align: left;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .worker--list .worker__listings {
    padding: 0 30px;
    text-align: center;
    margin-bottom: 0;
  }
}

.worker--list .worker__intro-row {
  clear: both;
  background: url("../img/bg-border-dotted-horizontal.png") 0 0 repeat-x;
}

.worker--list .worker__intro-row:before,
.worker--list .worker__intro-row:after {
  content: " ";
  display: table;
}

.worker--list .worker__intro-row:after {
  clear: both;
}

@media (max-width: 767px) {
  .worker--list .worker__intro-row {
    border-top: none;
    margin: 15px 30px 0;
    padding: 15px 0 0;
    text-align: center;
  }
}

.worker--list .worker__intro-col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}

@media (min-width: 768px) {
  .worker--list .worker__intro-col {
    float: left;
    width: 50%;
  }
}

.worker--list .worker__contacts {
  margin-top: 13px;
}

@media (max-width: 767px) {
  .worker--list .worker__contacts {
    text-align: center;
  }

  .worker--list .worker__contacts span {
    width: auto;
  }

  .worker--list .worker__contacts a {
    width: auto;
  }
}

.worker--list .worker__descr {
  margin-top: 13px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .worker--list .worker__descr {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .worker--list .worker__descr p:last-of-type {
    margin-bottom: 0;
  }
}

.worker--list .social--worker {
  padding-bottom: 10px;
  padding-right: 0;
  width: 100%;
  float: none;
  -webkit-box-pack: inherit;
  -webkit-justify-content: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
  display: block;
  text-align: right;
}

@media (max-width: 767px) {
  .worker--list .social--worker {
    border-bottom: 1px solid #d6d6d6;
    padding-right: 0;
    margin-right: 0 !important;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.worker--list .social__item {
  margin-left: 20px !important;
  float: none;
}

@media (max-width: 767px) {
  .worker--list .worker__form {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .worker--details {
    background: #fff;
    border: 1px solid #d6d6d6;
  }

  .worker--details .worker__show {
    display: block;
    padding: 6px 10px;
    margin: 15px auto 30px;
  }

  .worker--details .worker__intro-row {
    display: none;
  }

  .worker--details .worker__descr {
    display: none;
    margin: 0 30px 30px;
  }

  .worker--details .worker__listings {
    display: none;
  }

  .worker--details .worker__form {
    display: none;
    padding-bottom: 20px;
  }

  .worker--details.opened .worker__show {
    display: none;
  }

  .worker--details.opened .worker__intro-row {
    display: block;
  }

  .worker--details.opened .worker__descr {
    display: block;
  }

  .worker--details.opened .worker__listings {
    display: block;
  }

  .worker--details.opened .worker__form {
    display: block;
  }
}

.worker--details .worker__item {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .worker--details .worker__item {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 30px;
  }
}

.worker--details .worker__photo {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .worker--details .worker__photo {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .worker--details .worker__photo {
    margin-bottom: 0;
  }
}

.worker--details .worker__intro {
  margin-bottom: 15px;
}

.worker--details .worker__intro-row {
  padding: 0;
}

.worker--details .social--worker {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .worker--details .social--worker {
    text-align: center;
  }

  .worker--details .social--worker .social__item {
    margin-left: 0;
  }
}

.worker--grid {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 50px;
}

.worker--grid:before,
.worker--grid:after {
  content: " ";
  display: table;
}

.worker--grid:after {
  clear: both;
}

@media (max-width: 767px) {
  .worker--grid {
    margin-top: 30px;
  }
}

.worker--grid .worker__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .worker--grid .worker__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .worker--grid .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--grid .worker__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .worker--grid .worker__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .worker--grid .worker__item:nth-of-type(n) {
    clear: none;
  }

  .worker--grid .worker__item:nth-of-type(3n+1) {
    clear: both;
  }
}

.worker--grid .worker__item:before,
.worker--grid .worker__item:after {
  content: " ";
  display: table;
}

.worker--grid .worker__item:after {
  clear: both;
}

.worker--grid .worker__item:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .worker--grid .worker__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .worker--grid .worker__item:hover {
    margin-bottom: 0;
  }

  .worker--grid .worker__item:nth-child(3n+1) {
    clear: both;
  }
}

@media (max-width: 1199px) {
  .worker--grid .worker__item:nth-child(2n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .worker--grid .worker__item {
    padding: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 1px solid #d6d6d6;
    height: auto;
    width: auto;
  }
}

.worker--grid .worker__photo {
  margin: 0;
}

@media (max-width: 767px) {
  .worker--grid .worker__photo {
    width: 60%;
    margin: 0 auto;
  }
}

.worker--grid .worker__show {
  display: none;
}

.worker--grid .worker__name {
  border: none;
  margin: 15px 0 8px 0;
  padding: 0;
}

@media (max-width: 767px) {
  .worker--grid .worker__name {
    text-align: center;
    margin: 15px 0 5px;
  }
}

.worker--grid .worker__post {
  border: 0;
  padding: 0 0 10px;
}

@media (max-width: 767px) {
  .worker--grid .worker__post {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .worker--grid .worker__more {
    margin: 0 auto;
  }
}

.worker--grid .worker__listings {
  border-top: 1px solid #d6d6d6;
  padding: 17px 0 0;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .worker--grid .worker__listings {
    text-align: center;
    margin: 0 10%;
    padding-top: 10px;
  }
}

.worker--grid .worker__descr {
  margin-top: 7px;
  line-height: 1.5;
  clear: both;
  max-height: 200px;
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}

.worker--grid .worker__descr p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .worker--grid .worker__descr {
    height: auto;
    margin: 7px 10% 15px;
    text-align: center;
  }
}

.worker--sidebar-advanced {
  margin: 0 0 30px;
}

.worker--sidebar-advanced:before,
.worker--sidebar-advanced:after {
  content: " ";
  display: table;
}

.worker--sidebar-advanced:after {
  clear: both;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced {
    margin: 0;
  }

  .worker--sidebar-advanced.opened .worker__item {
    margin-top: 0;
    border-bottom: none;
  }

  .worker--sidebar-advanced.opened .worker__intro-row {
    display: block;
  }

  .worker--sidebar-advanced.opened .worker__descr {
    display: block;
  }

  .worker--sidebar-advanced.opened .worker__listings {
    display: block;
    text-align: center;
  }

  .worker--sidebar-advanced.opened .worker__form {
    display: block;
  }
}

.worker--sidebar-advanced .worker__header {
  margin: 24px 0 0;
}

.worker--sidebar-advanced .worker__title {
  color: #2c3e50;
  font-size: 34px;
  text-align: left;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__title {
    text-align: center;
  }
}

.worker--sidebar-advanced .worker__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: none;
  color: #2c3e50;
  text-align: left;
  font-size: 15px;
  margin: 4px 0 0;
  line-height: 1.1;
  min-height: 32px;
}

.worker--sidebar-advanced .worker__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .worker--sidebar-advanced .worker__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__headline {
    text-align: center;
  }
}

.worker--sidebar-advanced .worker__item {
  width: 100%;
  text-align: left;
  background: #fff !important;
  border: 1px solid #d6d6d6;
  border-bottom: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 0;
}

.worker--sidebar-advanced .worker__item:before,
.worker--sidebar-advanced .worker__item:after {
  content: " ";
  display: table;
}

.worker--sidebar-advanced .worker__item:after {
  clear: both;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__item {
    margin-top: 0;
    border-bottom: 1px solid #d6d6d6;
  }
}

.worker--sidebar-advanced .worker__form {
  clear: both;
  background: #fff !important;
  border: 1px solid #d6d6d6;
  border-top: none;
}

.worker--sidebar-advanced .worker__photo {
  margin: 6px 15px 0;
}

.worker--sidebar-advanced .worker__intro {
  margin: 0 15px 15px;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__intro {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__form {
    display: none;
  }
}

.worker--sidebar-advanced .worker__name {
  border: none;
  margin: 26px 0 0 0;
  text-align: center;
}

.worker--sidebar-advanced .worker__nav {
  clear: both;
}

.worker--sidebar-advanced .worker__nav li:first-child {
  margin-top: 5px;
}

.worker--sidebar-advanced .worker__post {
  border: 0;
  padding: 0;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 7px;
}

.worker--sidebar-advanced .worker__post:before {
  content: " ";
  border-top: 1px solid #d6d6d6;
  width: 50%;
  margin: 8px auto;
  display: block;
}

.worker--sidebar-advanced .worker__listings {
  padding: 10px 0 13px;
  border-bottom: 1px dotted #d6d6d6;
  margin-bottom: 1px;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__listings {
    display: none;
  }
}

.worker--sidebar-advanced .worker__listings a {
  font-weight: 600;
}

.worker--sidebar-advanced .worker__intro-row:before,
.worker--sidebar-advanced .worker__intro-row:after {
  content: " ";
  display: table;
}

.worker--sidebar-advanced .worker__intro-row:after {
  clear: both;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__intro-row {
    display: none;
  }
}

.worker--sidebar-advanced .worker__intro-col {
  padding: 0;
}

.worker--sidebar-advanced .worker__contacts {
  margin-top: 13px;
}

.worker--sidebar-advanced .worker__contacts > div > a {
  color: #2c3e50;
}

@media (max-width: 991px) {
  .worker--sidebar-advanced .worker__contacts > div > span {
    width: 100%;
  }

  .worker--sidebar-advanced .worker__contacts > div > a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__contacts {
    text-align: center;
  }
}

.worker--sidebar-advanced .worker__descr {
  margin: 0 15px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .worker__descr {
    display: none;
  }
}

.worker--sidebar-advanced .social--worker {
  border-bottom: 1px dotted #d6d6d6;
  width: 100%;
  float: none;
  padding-bottom: 16px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .worker--sidebar-advanced .social--worker {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .worker--sidebar-property {
    margin-bottom: 30px;
  }
}

.worker--sidebar-property .worker__item {
  margin-top: 0;
}

@media (max-width: 991px) {
  .worker--sidebar-property .worker__contacts > div > span {
    width: 100%;
  }

  .worker--sidebar-property .worker__contacts > div > a {
    width: 100%;
    margin-left: 0;
  }
}

.worker--sidebar-nav .worker__item {
  border-bottom: 1px solid #d6d6d6;
}

@media (max-width: 767px) {
  .worker--sidebar-nav .worker__item {
    margin-top: 0;
  }
}

.worker--sidebar-nav .worker__nav {
  margin: 30px 15px 0;
}

.worker--navbar {
  margin: 0;
}

.worker--navbar:before,
.worker--navbar:after {
  content: " ";
  display: table;
}

.worker--navbar:after {
  clear: both;
}

.worker--navbar .worker__item {
  float: none;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
}

.worker--navbar .worker__item:before,
.worker--navbar .worker__item:after {
  content: " ";
  display: table;
}

.worker--navbar .worker__item:after {
  clear: both;
}

.worker--navbar .worker__photo {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .worker--navbar .worker__photo {
    margin: 0;
  }
}

.worker--navbar .worker__avatar {
  margin: 0;
  padding: 20px 0 0 0;
}

.worker--navbar .worker__avatar svg {
  width: 85% !important;
  height: 130px;
}

.worker--navbar .worker__name {
  border: none;
  margin: 12px 0 15px 15px;
  text-align: left;
  color: #2c3e50;
  font-size: 24px;
}

.worker--navbar .worker__nav {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: -6px 0 0 0;
}

.worker--navbar .worker__nav li:first-child {
  margin-top: 0;
}

/*------------------------------------------------------------------
 * Article widget
 * + Article / .article
 *   -- Article Index / .article--index
 *   -- Article sidebar / .article--sidebar
 *   -- Article list / .article--list
 *   -- Article details / .article--details
 *   -- Article footer / .article--footer
 * ============================================================== */

.article {
  padding-bottom: 20px;
}

.article:before,
.article:after {
  content: " ";
  display: table;
}

.article:after {
  clear: both;
}

.article__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .article__header {
    margin: 21px 0 25px;
  }
}

.article__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.sidebar .article__title {
  font-size: 34px;
}

.footer .article__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .article__title {
    font-size: 26px;
  }

  .sidebar .article__title {
    font-size: 26px;
  }
}

.article__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}

.article__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .article__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .article__headline {
  margin: 4px 0 0;
}

.article__list {
  margin-top: 57px;
}

@media (max-width: 767px) {
  .article__list {
    margin-top: 34px;
  }
}

.article__photo {
  position: relative;
  display: block;
}

.article__photo img {
  max-width: 100%;
  width: 100%;
}

.article__item-title {
  font-size: 20px;
  color: #2c3e50;
  margin: -8px 0 0 0;
  display: inline-block;
  font-weight: 600;
}

.article__item-title:hover {
  color: #2c3e50;
}

@media (max-width: 767px) {
  .article__item-title {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.4;
  }
}

.article__item-title a {
  color: #2c3e50;
}

.article__intro {
  margin: 6px 0 14px 0;
}

@media (max-width: 767px) {
  .article__intro {
    margin-top: 5px;
    line-height: 1.4;
    overflow: hidden;
    position: relative;
  }

  .listing--index .article__intro:after {
    display: none;
  }
}

.article__more {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
  margin: 10px 0 10px 0;
  font-size: 12px;
  width: auto;
}

@media (max-width: 767px) {
  .article__more {
    padding: 3px 5px 3px 5px;
  }
}

.article__more:hover,
.article__more:focus,
.article__more.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.article__more:disabled,
.article__more.disabled {
  cursor: not-allowed;
}

.article__more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.article__more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.article__more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.article__more.has-error,
.article__more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.article__more.has-error:after,
.article__more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.article__more.has-success,
.article__more.success {
  color: transparent !important;
}

.article__more.has-success:after,
.article__more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .article__more.button--loading:before {
  content: "";
}

.button--loading-refresh .article__more.button--loading:before {
  content: "";
}

.button--loading-spinner .article__more.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .article__more.hover,
  .article__more:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.article__more:active,
.article__more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.article__more:disabled,
.article__more.disabled {
  color: #ccc;
  border-color: #efefef;
}

@media (max-width: 767px) {
  .article__more {
    width: auto;
  }
}

.article__time {
  position: absolute;
  top: 0;
  right: 0;
  background: #00adef;
  color: #fff;
  display: block;
  width: 50px;
  text-align: center;
  padding: 10px 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .article__time {
    right: 0;
  }
}

.article__time strong {
  display: block;
  font-size: 20px;
}

.article__btn-more {
  position: relative;
  border: 1px solid #d6d6d6;
  text-align: center;
  display: block;
  padding: 7px 20px;
  text-transform: uppercase;
  color: #2c3e50;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 600;
  width: 200px;
  margin: 0 auto;
}

.article__btn-more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.article__btn-more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.article__btn-more.has-error,
.article__btn-more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.article__btn-more.has-error:after,
.article__btn-more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.article__btn-more.has-success,
.article__btn-more.success {
  color: transparent !important;
}

.article__btn-more.has-success:after,
.article__btn-more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .article__btn-more.button--loading:before {
  content: "";
}

.button--loading-refresh .article__btn-more.button--loading:before {
  content: "";
}

.button--loading-spinner .article__btn-more.button--loading:before {
  content: "";
}

.article__btn-more.hover,
.article__btn-more:hover {
  border-color: #f3bc65;
  color: #f3bc65;
  text-decoration: none;
}

.article__btn-more:active,
.article__btn-more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.article__btn-more:focus,
.article__btn-more.focus {
  text-decoration: none;
  outline: none;
}

.article__btn-more:disabled,
.article__btn-more.disabled {
  cursor: not-allowed;
  color: #ccc;
  border-color: #efefef;
}

.article__btn-more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .article__btn-more {
    margin-top: 30px;
  }
}

.article__comment {
  float: right;
  color: #2c3e50;
  margin: 8px 0 0;
}

.article__comment:hover {
  color: #2c3e50;
}

.article__comment .fa {
  color: #00bbaa;
  margin: 0 21px 0 0;
  font-size: 25px;
}

.article__tags a {
  color: #00bbaa;
  text-decoration: underline;
  margin-left: 5px;
}

.article__preview {
  margin: 23px 0;
  position: relative;
  display: block;
}

.article__preview img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.article__preview iframe {
  max-width: 100%;
}

@media (max-width: 1199px) {
  .article__preview iframe {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .article__preview iframe {
    height: 315px;
  }
}

.article__preview-play {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  margin: -80px 0 0 -38px;
  text-align: center;
  border: none;
}

.article__preview-play:before {
  font-size: 3em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #fff;
}

@media (max-width: 767px) {
  .article__preview-play {
    display: none;
  }
}

.article__footer {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
  margin: 46px 0 0;
}

.article__footer:before,
.article__footer:after {
  content: " ";
  display: table;
}

.article__footer:after {
  clear: both;
}

.article__footer .article__tags {
  margin: 10px 0 !important;
  float: left;
}

.article__body {
  margin: 0 0 24px 0;
}

.article__body > :first-child {
  margin-top: 0;
}

.article__body p {
  margin: 13px 0;
}

.article__body iframe {
  max-width: 100%;
}

@media (max-width: 1199px) {
  .article__body iframe {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .article__body iframe {
    height: 315px;
  }
}

.article__body blockquote {
  font-style: italic;
  margin: 13px 0 10px 60px;
  display: block;
}

@media (max-width: 991px) {
  .article__body blockquote {
    margin-left: 20px;
  }
}

.article__body ul {
  margin: 15px 0;
}

.article__body ul li {
  margin: 10px 0;
}

.article__body img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .article__body img {
    float: none !important;
    margin: 0 auto 10px !important;
    display: block;
  }
}

.article--index {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .article--index {
    padding-bottom: 30px;
  }
}

.article--index .widget__show {
  display: none;
}

@media (max-width: 767px) {
  .article--index .widget__show {
    display: none;
  }
}

.article--index .article__title {
  font-family: "Montserrat", sans-serif;
}

.article--index .article__headline {
  padding: 0 200px;
}

@media (max-width: 1199px) {
  .article--index .article__headline {
    padding: 0;
  }
}

.article--index .article__list {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 40px;
}

.article--index .article__list:before,
.article--index .article__list:after {
  content: " ";
  display: table;
}

.article--index .article__list:after {
  clear: both;
}

@media (max-width: 767px) {
  .article--index .article__list {
    margin-bottom: 0;
  }
}

.article--index .article__list .no-items {
  margin: 0;
}

.article--index .article__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 50px;
}

@media (min-width: 480px) {
  .article--index .article__item:nth-of-type(n) {
    clear: none;
  }

  .article--index .article__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .article--index .article__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 768px) {
  .article--index .article__item:nth-of-type(n) {
    clear: none;
  }

  .article--index .article__item:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .article--index .article__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .article--index .article__item:nth-of-type(n) {
    clear: none;
  }

  .article--index .article__item:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .article--index .article__item {
    margin-bottom: 30px;
  }

  .article--index .article__item:last-of-type {
    margin-bottom: 0;
  }
}

.article--index .article__item-title {
  margin: 14px 0 0 0;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .article--index .article__intro {
    margin-bottom: 5px;
  }
}

.article--index .article__more {
  margin-bottom: 0;
  margin-top: 0;
}

.article--sidebar {
  padding: 0;
  margin: 0 0 30px;
}

.article--sidebar:before {
  display: none;
}

@media (max-width: 767px) {
  .article--sidebar {
    margin: 0;
  }
}

.article--sidebar.opened .article__header {
  display: block;
}

.article--sidebar.opened .article__list {
  display: block;
}

.article--sidebar .article__title {
  text-align: left;
}

@media (max-width: 767px) {
  .article--sidebar .article__title {
    text-align: center;
  }
}

.article--sidebar .article__header {
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .article--sidebar .article__header {
    display: none;
  }
}

.article--sidebar .article__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: none;
  margin: 4px 0 0;
  line-height: 1.1;
  min-height: 32px;
  text-align: left;
}

.article--sidebar .article__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .article--sidebar .article__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .article--sidebar .article__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .article--sidebar .article__headline {
    text-align: center;
  }
}

.article--sidebar .article__item-title {
  line-height: 1.2;
}

.article--sidebar .article__time {
  font-size: 14px;
  color: #2c3e50;
  margin: 5px 0;
  display: block;
  background: none;
  position: relative;
  top: auto;
  right: auto;
  text-align: left;
  width: auto;
  padding: 0;
}

.article--sidebar .article__list {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 20px 30px 30px;
}

@media (max-width: 767px) {
  .article--sidebar .article__list {
    display: none;
  }
}

.article--sidebar .article__item {
  width: 100%;
  margin: 20px 0 0 0;
}

.article--sidebar .article__item:first-child {
  margin-top: 0;
}

.article--sidebar .article__details {
  width: 100%;
  padding: 0;
}

.article--sidebar .article__item-title {
  margin-top: 0;
}

.article--sidebar .article__intro {
  font-weight: normal;
  margin-bottom: 0;
}

.article--sidebar .article__more {
  margin: 0;
}

.article--list {
  border-top: 1px solid #dedede;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .article--list {
    border-top: none;
    padding: 0;
  }
}

.article--list .article__time {
  float: left;
  position: relative;
  right: auto;
}

.article--list .article__item {
  border-top: 1px solid #dedede;
  margin-bottom: 1px;
  padding: 23px 0;
  position: relative;
}

@media (max-width: 767px) {
  .article--list .article__item {
    padding: 30px 0 0;
    margin-top: 30px;
  }
}

.article--list .article__item:first-child {
  border-top: none;
}

@media (max-width: 767px) {
  .article--list .article__item:first-child {
    padding-top: 0;
  }
}

.article--list .article__item-title {
  margin: -5px 0 0 62px;
  display: block;
}

.article--list .article__item-title:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .article--list .article__item-title {
    margin-top: 0;
  }
}

.article--list .article__tags {
  margin: 2px 0 0 62px;
}

@media (max-width: 767px) {
  .article--list .article__tags {
    margin-top: -3px;
  }
}

@media (max-width: 767px) {
  .article--list .article__preview {
    margin-bottom: 0;
  }
}

.article--list .article__intro {
  margin: 20px 0 0 0;
}

@media (max-width: 767px) {
  .article--list .article__intro {
    margin: 20px 0 0 0;
  }

  .article--list .article__intro:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 246, 246, 0)), to(#f6f6f6));
    background: linear-gradient(to bottom, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
  }
}

.article--list .article__more {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .article--list .article__comment {
    position: absolute;
    bottom: 35px;
    right: 0;
    line-height: 25px;
    vertical-align: top;
  }
}

@media (max-width: 767px) {
  .article--list .article__comment {
    bottom: 0;
  }
}

.article--details {
  margin-bottom: 50px;
  border-top: 1px solid #dedede;
}

@media (max-width: 767px) {
  .article--details {
    margin-bottom: 0;
    padding: 0;
    border-top: none;
  }
}

.article--details .article__item {
  padding: 30px 0 0;
}

.article--details .article__time {
  float: left;
  position: relative;
  right: auto;
}

.article--details .article__item-title {
  margin: 0 0 0 62px;
  position: relative;
  top: -5px;
  display: block;
}

.article--details .article__item-title:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .article--details .article__item-title {
    top: 0;
  }
}

.article--details .article__tags {
  margin: 2px 0 0 62px;
}

@media (max-width: 767px) {
  .article--details .article__tags {
    margin-top: -3px;
  }
}

@media (max-width: 991px) {
  .article--details .article__footer {
    display: none;
  }
}

@media (max-width: 1199px) {
  .article--details .article__comment {
    display: none;
  }
}

@media (max-width: 767px) {
  .article--page {
    border-top: 1px solid #dedede;
  }
}

.article--page .article__item {
  padding-top: 20px;
}

.article--footer {
  width: 100%;
}

.article--footer .article__header {
  margin: 0;
}

.article--footer .article__title {
  font-size: 17px;
  color: #00bbaa;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
}

@media (max-width: 767px) {
  .article--footer .article__title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.article--footer .article__headline {
  display: none;
}

.article--footer .article__item {
  margin: 20px 0 25px 0;
}

.article--footer .article__details {
  width: 100%;
  padding: 0;
}

.article--footer .article__list {
  margin-top: 0;
}

.article--footer .article__time {
  font-size: 14px !important;
  color: #808080 !important;
  display: block;
  background: none;
  position: relative;
  top: auto;
  right: auto;
  text-align: left;
  width: auto;
  padding: 0;
}

.article--footer .article__btn-more {
  font-size: 12px;
  color: #bebebe;
  border: 2px solid #bebebe;
  padding: 5px 10px;
  margin: 10px 0;
  width: 120px;
  background: none;
}

.article--footer .article__btn-more:before {
  content: "";
  margin: 0;
}

.article--footer .article__item-title {
  margin-bottom: 0 !important;
  margin-top: 0;
  font-size: 15px;
}

.article--footer .article__item-title:hover {
  border-bottom: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: underline;
  color: #bebebe;
}

.article--footer .widget__show {
  display: none;
}

/*------------------------------------------------------------------
 * Article categories
 * + Article categories / .article-categories
 * ============================================================== */

@media (max-width: 767px) {
  .article-categories__header {
    display: none;
  }
}

.article-categories__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}

.sidebar .article-categories__title {
  font-size: 34px;
}

.footer .article-categories__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .article-categories__title {
    font-size: 26px;
  }

  .sidebar .article-categories__title {
    font-size: 26px;
  }
}

.article-categories__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  font-size: 15px;
  text-transform: none;
  margin: 4px 0 0;
  line-height: 1.1;
  min-height: 32px;
  text-align: left;
}

.article-categories__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .article-categories__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .article-categories__headline {
  margin: 4px 0 0;
}

.article-categories__list {
  margin: 17px 0 0;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #dedede;
  z-index: 20;
}

@media (max-width: 767px) {
  .article-categories__list {
    display: none;
  }

  .article-categories__list.open {
    display: block;
    padding: 25px 25px;
    margin-top: -1px;
  }
}

.article-categories__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-categories__item:last-child .article-categories__name {
  border-bottom: none;
}

.article-categories__name {
  color: #2c3e50;
  padding: 14px 0;
  border-bottom: 1px solid #dedede;
  display: block;
}

.article-categories__name:before,
.article-categories__name:after {
  content: " ";
  display: table;
}

.article-categories__name:after {
  clear: both;
}

.article-categories__count {
  color: #00bbaa;
  float: right;
  font-size: 13px;
}

.article-categories--sidebar {
  margin: 0 0 30px;
}

@media (max-width: 767px) {
  .article-categories--sidebar {
    margin-bottom: 0;
  }
}

.article-categories--sidebar .article-categories__header {
  margin: 24px 0 0;
}

.article-categories--sidebar .article-categories__title {
  text-align: left;
  font-size: 34px;
}

@media (max-width: 767px) {
  .article-categories--sidebar .article-categories__title {
    text-align: center;
  }
}

.article-categories--sidebar .article-categories__headline {
  text-align: left;
  margin: 4px 0 0;
  line-height: 1.1;
  min-height: 32px;
}

@media (max-width: 767px) {
  .article-categories--sidebar .article-categories__headline {
    text-align: center;
  }
}

/*------------------------------------------------------------------
 * Form
 * + Form / .form
 *   -- Form comment's / .form--comment
 *   -- Form contacts's / .form--contacts
 *   -- Form workers's / .form--workers
 *   -- Form sidebar-workers / .form--sidebar-workers
 *   -- Form footer / .form--footer
 *   -- Form properties / .form--properties
 * ============================================================== */

.form:before,
.form:after {
  content: " ";
  display: table;
}

.form:after {
  clear: both;
}

.form__row:before,
.form__row:after {
  content: " ";
  display: table;
}

.form__row:after {
  clear: both;
}

.form__row--buttons {
  margin-bottom: 0;
}

.form__row--col2 {
  margin-bottom: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form__row--col2 > .form-group {
  width: 48%;
}

.form__label {
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.form__in {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  position: relative;
  z-index: 5;
}

.form__in:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.form__in::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.form__in:-ms-input-placeholder {
  color: #2c3e50;
}

.form__in::-webkit-input-placeholder {
  color: #2c3e50;
}

.form__in[disabled],
.form__in[readonly],
fieldset[disabled] .form__in {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.form__in.parsley-error {
  border: 1px solid #e95b35;
}

.form__in.parsley-success {
  border: 1px solid #00bbaa;
}

.form__in.parsley-error {
  border: 1px solid #e95b35 !important;
}

.form__in--textarea {
  min-height: 140px;
}

.form__submit {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  margin-right: 0;
  width: 40%;
  float: right;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .form__submit {
    padding: 3px 5px 3px 5px;
  }
}

.form__submit:hover,
.form__submit:focus,
.form__submit.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.form__submit:disabled,
.form__submit.disabled {
  cursor: not-allowed;
}

.form__submit.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.form__submit:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.form__submit.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.form__submit.has-error,
.form__submit.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.form__submit.has-error:after,
.form__submit.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.form__submit.has-success,
.form__submit.success {
  color: transparent !important;
}

.form__submit.has-success:after,
.form__submit.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .form__submit.button--loading:before {
  content: "";
}

.button--loading-refresh .form__submit.button--loading:before {
  content: "";
}

.button--loading-spinner .form__submit.button--loading:before {
  content: "";
}

.form__submit.hover,
.form__submit:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.form__submit:active,
.form__submit.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.form__submit:disabled,
.form__submit.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.form__show {
  display: none;
}

.form--comment {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}

@media (min-width: 1200px) {
  .form--comment {
    float: left;
    width: 100%;
  }
}

.form--comment .form__row--tel {
  width: 48%;
  float: left;
  margin: 0 0 9px 0;
}

@media (max-width: 767px) {
  .form--comment .form__row--tel {
    width: auto;
    float: none;
    margin: 0 0 9px;
  }
}

.form--comment .form__row--email {
  width: 48%;
  float: right;
  margin: 0 0 9px 0;
}

@media (max-width: 767px) {
  .form--comment .form__row--email {
    width: auto;
    float: none;
    margin: 0 0 9px;
  }
}

.form--comment .form__submit {
  width: 200px;
  margin: 15px auto 0;
}

@media (max-width: 1199px) {
  .form--comment .form__submit {
    width: 150px;
    float: none;
    display: block;
    margin: 10px auto 0;
  }
}

.form--contacts {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}

@media (min-width: 1200px) {
  .form--contacts {
    float: left;
    width: 100%;
  }
}

.form--contacts .form__row--tel {
  width: 48%;
  float: left;
  margin: 0 0 9px 0;
}

@media (max-width: 767px) {
  .form--contacts .form__row--tel {
    width: auto;
    float: none;
    margin: 0 0 9px;
  }
}

.form--contacts .form__row--email {
  width: 48%;
  float: right;
  margin: 0 0 9px 0;
}

@media (max-width: 767px) {
  .form--contacts .form__row--email {
    width: auto;
    float: none;
    margin: 0 0 9px;
  }
}

@media (max-width: 767px) {
  .form--contacts .form__submit {
    margin: 10px auto 0;
    float: none;
    width: 150px;
    display: block;
  }
}

.form--workers {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1200px) {
  .form--workers {
    float: left;
    width: 66.66667%;
  }
}

.form--workers .form__row--tel {
  width: 48%;
  float: left;
  margin: 0 0 9px 0;
}

@media (max-width: 767px) {
  .form--workers .form__row--tel {
    width: auto;
    float: none;
    margin: 0 0 9px;
  }
}

.form--workers .form__row--email {
  width: 48%;
  float: right;
  margin: 0 0 9px 0;
}

@media (max-width: 767px) {
  .form--workers .form__row--email {
    width: auto;
    float: none;
    margin: 0 0 9px;
  }
}

@media (max-width: 767px) {
  .form--workers .form__submit {
    width: 100%;
  }
}

.form--sidebar-workers {
  padding: 4px 30px 20px 30px;
}

.form--sidebar-workers .form__submit {
  width: 100%;
  margin-right: 0;
}

.form--footer {
  width: 300px;
  margin: 20px 0 0 0;
  padding-top: 0;
}

@media (max-width: 1199px) {
  .form--footer {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .form--footer {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .form--footer .form__wrap {
    display: none;
  }
}

.form--footer .form__title {
  font-size: 17px;
  color: #00adef;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .form--footer .form__title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.form--footer .form__row {
  margin: 0 0 20px;
  position: relative;
}

.form--footer .form__in {
  border: 1px solid #bebebe;
  display: block;
  background: none;
  width: 100%;
  margin: 5px 0;
  color: #fff;
}

.form--footer .form__in::-moz-placeholder {
  color: #bebebe;
  opacity: 1;
}

.form--footer .form__in:-ms-input-placeholder {
  color: #bebebe;
}

.form--footer .form__in::-webkit-input-placeholder {
  color: #bebebe;
}

.form--footer .form__in--textarea {
  min-height: 120px;
}

@media (max-width: 767px) {
  .form--footer .form__show {
    display: block;
    font-size: 12px;
    color: #bebebe;
    border: 2px solid #bebebe;
    padding: 5px 20px;
    margin: 10px 0;
    text-transform: uppercase;
    background: none;
  }
}

.form--footer .form__submit {
  width: 43%;
}

@media (max-width: 767px) {
  .form--properties .form__submit {
    width: 100%;
  }
}

.form--banner-sidebar {
  margin: 0;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 1;
}

@media (max-width: 991px) {
  .form--banner-sidebar {
    margin: 0 0 35px 0;
    width: 100%;
  }
}

.form--banner-sidebar > .container {
  width: 100%;
  padding: 19px 20px 10px;
  position: relative;
  z-index: 15;
}

@media (max-width: 767px) {
  .form--banner-sidebar > .container {
    padding: 0;
  }
}

.form--banner-sidebar .form__form {
  margin: 4px 20px 0;
}

.form--banner-sidebar .form__form-label {
  color: #fff;
  margin-bottom: 0;
}

.form--banner-sidebar .form__form-group {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px;
}

@media (min-width: 768px) {
  .form--banner-sidebar .form__form-group {
    float: left;
    width: 100%;
  }
}

.form--banner-sidebar .form__form-group--column {
  width: 50%;
  float: left;
}

.form--banner-sidebar .form__buttons {
  padding: 10px 5px 20px;
}

@media (max-width: 767px) {
  .form--banner-sidebar .form__buttons {
    padding: 10px 5px 0;
    margin-top: 0;
  }
}

.form--banner-sidebar .form__btn--action {
  width: 100%;
}

.form-group {
  margin-bottom: 9px;
}

.form-group.required .control-label:after {
  content: "*";
  color: red;
  margin-left: 3px;
}

input[type="file"].form-control {
  background: #00bbaa;
  color: #fff;
  font-size: 13px;
  border: 2px solid #fff;
  outline: 2px solid #00bbaa;
}

input[type="file"].form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline-offset: 0;
}

textarea.form-control {
  height: 140px;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: relative;
  margin: 0;
}

/*------------------------------------------------------------------
 * Address block
 * + Address / .address
 *   -- Address footes / .address--footer
 * ============================================================== */

.address__title {
  font-size: 17px;
  color: #00adef;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .address__title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.address__headline {
  color: #bebebe;
  line-height: 1.3;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: 24px;
  font-size: 15px;
}

.address__main {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.address__main span,
.address__main a {
  display: block;
  margin-bottom: 0 !important;
}

.address__main p {
  line-height: 2;
}

.address--footer .address__headline {
  font-weight: bold;
}

.address--footer .address__main {
  margin-bottom: 0;
}

/*------------------------------------------------------------------
 * Simple nav
 * + Nav / .nav
 *   -- Nav footer / .nav--footer
 * ============================================================== */

.nav--footer {
  color: #bebebe;
  margin: 19px 0 0;
  line-height: 2;
}

.nav--footer a {
  margin: 0 10px 0 0;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
}

@media (max-width: 767px) {
  .nav--footer a {
    font-size: 14px;
  }
}

.nav--footer a:after {
  content: "/";
  margin-left: 10px;
  color: #bebebe;
}

.nav--footer a:last-child:after {
  content: none;
}

/*------------------------------------------------------------------
 * Slider widget
 * + Slider / .slider
 *   -- Slider wide / .slider--wide
 *   -- Slider dots / .slider--dots
 *   -- Slider article / .slider--article
 *   -- Slider listing / .slider--listing
 *   -- Slider small / .slider--small
 * ============================================================== */

.slider {
  position: relative;
  min-height: 110px;
}

.slider__block {
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.slider__item {
  display: none;
  background: #ffffff;
  position: relative;
  padding: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.slider__item.slick-active:after {
  background: transparent;
}

.slider__img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: url("../img/ajax-loader.gif") no-repeat center center;
}

@media (max-width: 991px) {
  .slider__img--lg {
    display: none;
  }
}

@media (min-width: 992px) {
  .slider__img--sm {
    display: none;
  }
}

.slider__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #00ADEF;/*00bbaa*/
  color: #fff;
  padding: 0 0 8px 10px;
  font-weight: 200;
}

.slider__control {
  width: 40px;
  height: 58px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: #fff;
  background: none;
  border: none;
  vertical-align: bottom;
  outline: none;
}

.slider__control:hover,
.slider__control.hover {
  color: #00eed8;
}

.slider__control:active,
.slider__control.active {
  color: #f3bc65;
}

.slider__control:disabled,
.slider__control.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.slider__control--prev:before {
  font-size: 5em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  line-height: 0.6;
}

@media (max-width: 991px) {
  .slider__control--prev:before {
    font-size: 2em;
  }
}

.slider__control--next:before {
  font-size: 5em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  line-height: 0.6;
}

@media (max-width: 991px) {
  .slider__control--next:before {
    font-size: 2em;
  }
}

.slider__current {
  font-size: 36px;
  color: #fff;
  line-height: 48px;
}

.slider__total {
  font-size: 20px;
  color: #fff;
  position: relative;
  top: -10px;
}

.slider--wide {
  background: #ffffff;
}

.slider--wide .slider__block {
  visibility: hidden;
}

.slider--wide .slider__img {
  width: 100%;
  height: 100%;
  background: url("../img/ajax-loader.gif") no-repeat center center;
}

.slider--wide .slider__img img {
  max-width: 100%;
  min-height: 250px;
}

.slider--wide .slider__img--lg {
  display: block;
}

@media (max-width: 767px) {
  .slider--wide .slider__img--lg {
    display: none;
  }
}

.slider--wide .slider__img--sm {
  display: none;
}

@media (max-width: 767px) {
  .slider--wide .slider__img--sm {
    display: block;
  }
}

.slider--wide .slider__caption {
  background: rgba(0, 187, 170, 0.8);
  z-index: 20;
  padding: 40px;
  width: 700px;
  margin: -30px 0 0 -600px;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media (min-width: 1200px) {
  .slider--wide .slider__caption {
    visibility: hidden;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 20;
  }

  .slider--default .slider__caption {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  .slider--default .slick-current .slider__caption {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 1430px) {
  .slider--wide .slider__caption {
    margin-left: -520px;
  }
}

@media (max-width: 1199px) {
  .slider--wide .slider__caption {
    padding: 30px 15px;
    position: relative;
    width: 100%;
    background: #00bbaa;
    left: 0;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .slider--wide .slider__caption {
    padding: 15px;
    min-height: 130px;
  }
}

@media (max-width: 400px) {
  .slider--wide .slider__caption {
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .boxed .slider--wide .slider__caption {
    margin-left: -520px;
  }
}

.slider--wide .slider__address {
  color: #fff;
  font-size: 46px;
  font-weight: 600;
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
}

.slider--wide .slider__address:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .slider--wide .slider__address {
    font-size: 30px;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .slider--wide .slider__address {
    font-size: 25px;
    margin-right: 140px;
  }
}

.slider--wide .slider__address-city {
  display: block;
  margin: 10px 0;
  font-size: 30px;
  font-weight: normal;
}

@media (max-width: 1199px) {
  .slider--wide .slider__address-city {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .slider--wide .slider__address-city {
    font-size: 14px;
  }
}

.slider--wide .slider__params {
  padding: 10px 0 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  margin-right: 200px;
}

@media (max-width: 1199px) {
  .slider--wide .slider__params {
    margin-right: 100px;
    display: none;
    border: 0;
  }
}

.slider--wide .slider__params dl {
  padding: 0;
  width: 50%;
  float: left;
  color: #fff;
  margin-bottom: 0;
}

.slider--wide .slider__params dl dt {
  float: left;
  clear: both;
}

.slider--wide .slider__params dl dd {
  float: left;
  margin-left: 5px;
}

.slider--wide .slider__price {
  background: #fff;
  color: #2c3e50;
  padding: 40px;
  margin: -70px -70px 0 10px;
  float: right;
  line-height: 0.9;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1199px) {
  .slider--wide .slider__price {
    font-size: 11px;
    padding: 15px 35px;
    margin: -30px -15px 0 10px;
    min-width: 119px;
    line-height: initial;
  }
}

@media (max-width: 767px) {
  .slider--wide .slider__price {
    margin: -15px -15px 0 10px;
  }
}

.slider--wide .slider__price strong {
  font-size: 42px;
  display: block;
}

@media (max-width: 1199px) {
  .slider--wide .slider__price strong {
    font-size: 26px;
  }
}

.slider--wide .slider__more {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  padding: 11px 66px;
  width: auto;
  margin: 0;
  position: absolute;
  right: 30px;
  bottom: 40px;
}

@media (max-width: 767px) {
  .slider--wide .slider__more {
    padding: 3px 5px 3px 5px;
  }
}

.slider--wide .slider__more:hover,
.slider--wide .slider__more:focus,
.slider--wide .slider__more.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.slider--wide .slider__more:disabled,
.slider--wide .slider__more.disabled {
  cursor: not-allowed;
}

.slider--wide .slider__more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.slider--wide .slider__more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.slider--wide .slider__more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.slider--wide .slider__more.has-error,
.slider--wide .slider__more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.slider--wide .slider__more.has-error:after,
.slider--wide .slider__more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.slider--wide .slider__more.has-success,
.slider--wide .slider__more.success {
  color: transparent !important;
}

.slider--wide .slider__more.has-success:after,
.slider--wide .slider__more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .slider--wide .slider__more.button--loading:before {
  content: "";
}

.button--loading-refresh .slider--wide .slider__more.button--loading:before {
  content: "";
}

.button--loading-spinner .slider--wide .slider__more.button--loading:before {
  content: "";
}

.slider--wide .slider__more.hover,
.slider--wide .slider__more:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.slider--wide .slider__more:active,
.slider--wide .slider__more.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.slider--wide .slider__more:disabled,
.slider--wide .slider__more.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

@media (max-width: 1199px) {
  .slider--wide .slider__more {
    padding: 6px 43px;
    bottom: 0;
    right: 0;
  }
}

.slider--wide .slider__preview {
  width: 100%;
  height: 100%;
}

.slider--wide .slider__controls {
  background: none;
  padding: 0;
  line-height: 1;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: auto;
}

@media (max-width: 991px) {
  .slider--wide .slider__controls {
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .slider--wide .slider__controls {
    margin-top: -70px;
  }
}

@media (max-width: 400px) {
  .slider--wide .slider__controls {
    margin-top: -70px;
  }
}

.slider--wide .slider__caption {
  visibility: hidden;
}

.slider--wide .slider__control {
  border: none;
  background: rgba(0, 0, 0, 0.8);
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  text-align: center;
}

@media (max-width: 991px) {
  .slider--wide .slider__control {
    width: 35px;
    height: 35px;
    margin-top: -15px;
  }
}

.slider--wide .slider__control:hover,
.slider--wide .slider__control.hover {
  color: #f3bc65;
}

.slider--wide .slider__control:active,
.slider--wide .slider__control.active {
  color: #fff;
  background: rgba(243, 188, 101, 0.8);
}

.slider--wide .slider__control:disabled,
.slider--wide .slider__control.disabled {
  color: #fff;
  cursor: not-allowed;
  background: rgba(204, 204, 204, 0.8);
}

.slider--wide .slider__control--prev {
  left: 70px;
}

@media (max-width: 1550px) {
  .slider--wide .slider__control--prev {
    left: 10px;
  }
}

.boxed .slider--wide .slider__control--prev {
  left: 10px;
}

.slider--wide .slider__control--next {
  right: 70px;
}

@media (max-width: 1550px) {
  .slider--wide .slider__control--next {
    right: 10px;
  }
}

.boxed .slider--wide .slider__control--next {
  right: 10px;
}

@media (min-width: 1200px) {
  .slider--fadeIn .slick-current .slider__caption {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInUp .slick-current .slider__caption {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInUpBig .slick-current .slider__caption {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInDown .slick-current .slider__caption {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInDownBig .slick-current .slider__caption {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInLeft .slick-current .slider__caption {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInLeftBig .slick-current .slider__caption {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInRight .slick-current .slider__caption {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
}

@media (min-width: 1200px) {
  .slider--fadeInRightBig .slick-current .slider__caption {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutUp .slick-current .slider__caption {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutUpBig .slick-current .slider__caption {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutDown .slick-current .slider__caption {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutDownBig .slick-current .slider__caption {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutLeft .slick-current .slider__caption {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutLeftBig .slick-current .slider__caption {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutRight .slick-current .slider__caption {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
  }
}

@media (min-width: 1200px) {
  .slider--fadeOutRightBig .slick-current .slider__caption {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
  }
}

@media (min-width: 1200px) {
  .slider--bounceIn .slick-current .slider__caption {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
  }
}

@media (min-width: 1200px) {
  .slider--bounceInUp .slick-current .slider__caption {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
  }
}

@media (min-width: 1200px) {
  .slider--bounceInDown .slick-current .slider__caption {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }
}

@media (min-width: 1200px) {
  .slider--bounceInLeft .slick-current .slider__caption {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }
}

@media (min-width: 1200px) {
  .slider--bounceInRight .slick-current .slider__caption {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }
}

@media (min-width: 1200px) {
  .slider--bounceOutUp .slick-current .slider__caption {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
  }
}

@media (min-width: 1200px) {
  .slider--bounceOutDown .slick-current .slider__caption {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
  }
}

@media (min-width: 1200px) {
  .slider--bounceOutLeft .slick-current .slider__caption {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
  }
}

@media (min-width: 1200px) {
  .slider--bounceOutRight .slick-current .slider__caption {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
  }
}

@media (min-width: 1200px) {
  .slider--rotateIn .slick-current .slider__caption {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
  }
}

@media (min-width: 1200px) {
  .slider--rotateInUpLeft .slick-current .slider__caption {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
  }
}

@media (min-width: 1200px) {
  .slider--rotateInUpRight .slick-current .slider__caption {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
  }
}

@media (min-width: 1200px) {
  .slider--rotateInDownLeft .slick-current .slider__caption {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
  }
}

@media (min-width: 1200px) {
  .slider--rotateInDownRight .slick-current .slider__caption {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
  }
}

@media (min-width: 1200px) {
  .slider--rotateOut .slick-current .slider__caption {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
  }
}

@media (min-width: 1200px) {
  .slider--rotateOutUpLeft .slick-current .slider__caption {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
  }
}

@media (min-width: 1200px) {
  .slider--rotateOutUpRight .slick-current .slider__caption {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
  }
}

@media (min-width: 1200px) {
  .slider--rotateOutDownLeft .slick-current .slider__caption {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
  }
}

@media (min-width: 1200px) {
  .slider--rotateOutDownRight .slick-current .slider__caption {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
  }
}

@media (min-width: 1200px) {
  .slider--slideIn .slick-current .slider__caption {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
  }
}

@media (min-width: 1200px) {
  .slider--slideInUp .slick-current .slider__caption {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
  }
}

@media (min-width: 1200px) {
  .slider--slideInDown .slick-current .slider__caption {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
  }
}

@media (min-width: 1200px) {
  .slider--slideInLeft .slick-current .slider__caption {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
  }
}

@media (min-width: 1200px) {
  .slider--slideInRight .slick-current .slider__caption {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
  }
}

@media (min-width: 1200px) {
  .slider--slideOut .slick-current .slider__caption {
    -webkit-animation-name: slideOut;
    animation-name: slideOut;
  }
}

@media (min-width: 1200px) {
  .slider--slideOutUp .slick-current .slider__caption {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
  }
}

@media (min-width: 1200px) {
  .slider--slideOutDown .slick-current .slider__caption {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
  }
}

@media (min-width: 1200px) {
  .slider--slideOutLeft .slick-current .slider__caption {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
  }
}

@media (min-width: 1200px) {
  .slider--slideOutRight .slick-current .slider__caption {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
  }
}

@media (min-width: 1200px) {
  .slider--flip .slick-current .slider__caption {
    -webkit-animation-name: flip;
    animation-name: flip;
  }
}

@media (min-width: 1200px) {
  .slider--flipInX .slick-current .slider__caption {
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
  }
}

@media (min-width: 1200px) {
  .slider--flipInY .slick-current .slider__caption {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
  }
}

@media (min-width: 1200px) {
  .slider--flipOutX .slick-current .slider__caption {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
  }
}

@media (min-width: 1200px) {
  .slider--flipOutY .slick-current .slider__caption {
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
  }
}

@media (min-width: 1200px) {
  .slider--lightSpeedIn .slick-current .slider__caption {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
  }
}

@media (min-width: 1200px) {
  .slider--bounce .slick-current .slider__caption {
    -webkit-animation-name: bounce;
    animation-name: bounce;
  }
}

@media (min-width: 1200px) {
  .slider--flash .slick-current .slider__caption {
    -webkit-animation-name: flash;
    animation-name: flash;
  }
}

@media (min-width: 1200px) {
  .slider--pulse .slick-current .slider__caption {
    -webkit-animation-name: pulse;
    animation-name: pulse;
  }
}

@media (min-width: 1200px) {
  .slider--wiggle .slick-current .slider__caption {
    -webkit-animation-name: wiggle;
    animation-name: wiggle;
  }
}

@media (min-width: 1200px) {
  .slider--swing .slick-current .slider__caption {
    -webkit-animation-name: swing;
    animation-name: swing;
  }
}

@media (min-width: 1200px) {
  .slider--shake .slick-current .slider__caption {
    -webkit-animation-name: shake;
    animation-name: shake;
  }
}

@media (min-width: 1200px) {
  .slider--tada .slick-current .slider__caption {
    -webkit-animation-name: tada;
    animation-name: tada;
  }
}

@media (min-width: 1200px) {
  .slider--wobble .slick-current .slider__caption {
    -webkit-animation-name: wobble;
    animation-name: wobble;
  }
}

@media (min-width: 1200px) {
  .slider--hinge .slick-current .slider__caption {
    -webkit-animation-name: hinge;
    animation-name: hinge;
  }
}

@media (min-width: 1200px) {
  .slider--rollIn .slick-current .slider__caption {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
  }
}

@media (min-width: 1200px) {
  .slider--rollOut .slick-current .slider__caption {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
  }
}

@media (min-width: 1200px) {
  .slider--zoomIn .slick-current .slider__caption {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
  }
}

@media (min-width: 1200px) {
  .slider--zoomInDown .slick-current .slider__caption {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
  }
}

@media (min-width: 1200px) {
  .slider--zoomInLeft .slick-current .slider__caption {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
  }
}

@media (min-width: 1200px) {
  .slider--zoomInRight .slick-current .slider__caption {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
  }
}

@media (min-width: 1200px) {
  .slider--zoomInUp .slick-current .slider__caption {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
  }
}

@media (min-width: 1200px) {
  .slider--zoomOut .slick-current .slider__caption {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
  }
}

@media (min-width: 1200px) {
  .slider--zoomOutDown .slick-current .slider__caption {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
  }
}

@media (min-width: 1200px) {
  .slider--zoomOutLeft .slick-current .slider__caption {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
  }
}

@media (min-width: 1200px) {
  .slider--zoomOutRight .slick-current .slider__caption {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
  }
}

@media (min-width: 1200px) {
  .slider--zoomOutUp .slick-current .slider__caption {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
  }
}

@media (max-width: 991px) {
  .slider--dots {
    display: none;
  }
}

.slider--dots .slider__container {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
}

.slider--dots .slider__item {
  overflow: hidden;
}

@media (max-width: 991px) {
  .slider--dots .slider__item {
    height: 940px;
  }
}

@media (max-width: 767px) {
  .slider--dots .slider__item {
    height: 890px;
  }
}

.slider--dots .slider__preview {
  height: 100%;
}

.slider--dots .slider__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  background: url("../img/ajax-loader.gif") no-repeat center center;
}

.slider--dots .slider__caption {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (min-width: 992px) {
  .slider--dots .slider__caption {
    float: left;
    width: 66.66667%;
  }
}

.slider--dots .slick-dots {
  bottom: 20px;
}

.slider--dots .slick-dots li button {
  color: #fff;
}

.slider--dots .slick-dots li button:before {
  content: "";
}

.slider--dots .slick-dots li button:after {
  font-size: 10px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

.slider--dots .slick-dots li.slick-active button:after {
  font-size: 10px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

@media (max-width: 991px) {
  .slider--auth {
    display: none;
  }
}

.slider--auth .slider__preview {
  height: 100%;
}

.slider--init .slider__block {
  visibility: visible;
}

.slider--init .slider__caption {
  visibility: visible;
}

.slider--init .slider__controls {
  visibility: visible;
}

.slider--small {
  position: relative;
  margin: 13px 0 0 0;
}

@media (max-width: 767px) {
  .slider--small {
    margin-top: 27px;
  }
}

.slider--small .slider__item img {
  margin: 0;
  max-width: 100%;
}

.slider--small .slider__controls {
  padding: 11px 15px 4px 15px;
}

@media (max-width: 767px) {
  .slider--small .slider__controls {
    position: relative;
    text-align: center;
    padding: 5px 25px 10px;
  }
}

.slider--small .slider__current {
  margin: 0 4px 9px 19px;
  float: left;
}

@media (max-width: 767px) {
  .slider--small .slider__current {
    float: none;
    position: relative;
    top: 3px;
    line-height: 1;
    font-size: 27px;
  }
}

.slider--small .slider__total {
  margin: 0 20px 0 3px;
  top: 0;
}

@media (max-width: 767px) {
  .slider--small .slider__total {
    top: -6px;
    margin-left: 7px;
    font-size: 17px;
  }
}

.slider--small .slider__control {
  margin: 5px 0 0 0;
  width: 40px;
  height: 40px;
  padding: 0;
}

@media (max-width: 767px) {
  .slider--small .slider__control {
    height: 25px;
    width: 25px;
  }
}

.slider--small .slider__control:before {
  content: "";
  display: none;
}

.slider--small .slider__control--prev {
  float: left;
}

.slider--small .slider__control--next {
  float: right;
}

.slider--small .slider__control-icon {
  width: 30px;
  height: 40px;
  stroke: #fff;
  stroke-width: 1px;
  fill: none;
  fill-rule: evenodd;
}

@media (max-width: 767px) {
  .slider--small .slider__control-icon {
    width: 25px;
    height: 25px;
    stroke-width: 2px;
  }
}

/*------------------------------------------------------------------
 * Banner widget
 * + Banner / .banner
 *   -- Banner wide / .banner--wide
 *   -- Banner subpage / .banner--subpage
 *   -- Banner play (special modifier for animation options) / .banner--play
 * ============================================================== */

.banner {
  position: relative;
}

.banner .container {
  background: none !important;
}

.banner__title {
  font-size: 100px;
  color: #fff;
  font-weight: 900;
  margin: 0 80px 0 0;
  line-height: 1.05;
}

@media (min-width: 992px) {
  .banner__title {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
}

@media (max-width: 1199px) {
  .banner__title {
    font-size: 70px;
    margin: 0 120px 0 0;
  }
}

@media (max-width: 991px) {
  .banner__title {
    font-size: 30px;
    margin: 25px 0 15px;
    display: none;
  }
}

.banner__title--2 {
  font-size: 66px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-top: 50px;
}

.banner__title--2 span {
  font-family: "Montserrat Thin", sans-serif;
  color: #00bbaa;
  font-size: 160px;
  font-weight: 200;
  display: block;
}

@media (max-width: 1199px) {
  .banner__title--2 {
    font-size: 50px;
    margin-right: 0;
  }

  .banner__title--2 span {
    font-size: 100px;
  }
}

.banner__title--3 {
  font-size: 76px;
  font-family: "Montserrat Thin", sans-serif;
  text-transform: uppercase;
  margin-top: 50px;
  font-weight: 200;
  margin-right: 0;
}

.banner__title--3 strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .banner__title--3 {
    font-size: 50px;
  }
}

.banner__title--4 {
  margin-right: 0;
  text-transform: uppercase;
  margin-top: 80px;
  line-height: 1;
}

@media (max-width: 1199px) {
  .banner__title--4 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .banner__title--4 {
    display: none;
  }
}

.banner__title--5 {
  font-size: 55px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 70px 0 0 0;
}

@media (max-width: 991px) {
  .banner__title--5 {
    display: none;
  }
}

.banner__title-span-1 {
  font-size: 50px;
}

.banner__title-span-2 {
  font-size: 100px;
  margin-top: -20px;
  display: block;
}

@media (max-width: 1199px) {
  .banner__title-span-2 {
    font-size: 80px;
    margin-top: -10px;
  }
}

.banner__title-span-3 {
  font-size: 40px;
  font-weight: 400;
  float: left;
  margin-left: 220px;
  margin-top: -14px;
}

@media (max-width: 1199px) {
  .banner__title-span-3 {
    margin-left: 170px;
  }
}

.banner__title-border-bottom {
  height: 6px;
  background: #fff;
  width: 435px;
  margin-left: 10px;
  display: inline-block;
}

@media (max-width: 1199px) {
  .banner__title-border-bottom {
    width: 300px;
  }
}

.banner__title-border-top {
  height: 6px;
  background: #fff;
  width: 205px;
  display: inline-block;
  margin-right: 10px;
  float: left;
}

@media (max-width: 1199px) {
  .banner__title-border-top {
    width: 150px;
  }
}

.banner__subtitle {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  margin: 45px 80px 0 0;
  line-height: 1.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}

@media (max-width: 1199px) {
  .banner__subtitle {
    margin: 45px 120px 0 0;
  }
}

@media (max-width: 991px) {
  .banner__subtitle {
    display: none;
  }
}

.banner__subtitle--2 {
  font-size: 17px;
}

.banner__subtitle--4 {
  font-size: 20px;
  margin-top: 40px;
}

.banner__btn {
  font-size: 30px;
  color: #f3bc65;
  margin: 68px 0 0 23px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  opacity: 0;
}

@media (max-width: 1199px) {
  .banner__btn {
    display: none;
  }
}

.banner__arrow {
  margin-top: -277px;
}

@media (max-width: 1199px) {
  .banner__arrow {
    display: none;
  }
}

.banner__arrow svg {
  stroke: #f3bc65;
  width: 770px;
  height: 284px;
}

.banner__arrow-circle {
  color: #f3bc65;
  margin: -71px 0 0 213px;
  font-size: 50px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1199px) {
  .banner__arrow-circle {
    display: none;
  }
}

.banner__arrow-end {
  stroke: #f3bc65;
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  margin: -272px 0 0 739px;
}

@media (max-width: 1199px) {
  .banner__arrow-end {
    display: none;
  }
}

.banner__features {
  color: #fff;
  list-style: disc;
  margin-left: 0;
  margin-top: 20px;
  font-size: 17px;
}

@media (max-width: 991px) {
  .banner__features {
    display: none;
  }
}

.banner__features li {
  margin: 10px 0;
}

.banner__sidebar-title {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
  display: none;
}

.banner__sidebar-title--visible {
  display: block;
}

@media (max-width: 991px) {
  .banner__sidebar-title {
    display: block;
  }
}

.banner--subpage {
  position: relative;
  overflow: hidden;
}

.banner--subpage:before,
.banner--subpage:after {
  content: " ";
  display: table;
}

.banner--subpage:after {
  clear: both;
}

.banner--subpage .banner__img {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -984px;
}

.banner--subpage .banner__title {
  padding: 97px 0 122px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 300px;
  z-index: 10;
  position: relative;
  text-align: center;
  text-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  margin: 0;
  font-weight: 600;
}

@media (max-width: 767px) {
  .banner--subpage .banner__title {
    font-size: 120px;
  }
}

.banner--wide .banner__item {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 200px 0 70px;
}

.banner--wide .banner__item:before,
.banner--wide .banner__item:after {
  content: " ";
  display: table;
}

.banner--wide .banner__item:after {
  clear: both;
}

@media (max-width: 991px) {
  .banner--wide .banner__item {
    height: auto;
    padding: 125px 0 0;
  }
}

@media (max-width: 767px) {
  .banner--wide .banner__item {
    padding-top: 45px;
  }
}

.banner--wide .banner__caption {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .banner--wide .banner__caption:nth-of-type(n) {
    clear: none;
  }

  .banner--wide .banner__caption:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .banner--wide .banner__caption {
    float: left;
    width: 66.66667%;
  }
}

@media (min-width: 992px) {
  .banner--wide .banner__caption:nth-of-type(n) {
    clear: none;
  }

  .banner--wide .banner__caption:nth-of-type(1.5n+1) {
    clear: both;
  }
}

.banner--wide .banner__search {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 360;
}

@media (min-width: 480px) {
  .banner--wide .banner__search:nth-of-type(n) {
    clear: none;
  }

  .banner--wide .banner__search:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .banner--wide .banner__search {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 992px) {
  .banner--wide .banner__search:nth-of-type(n) {
    clear: none;
  }

  .banner--wide .banner__search:nth-of-type(3n+1) {
    clear: both;
  }
}

.banner--play .banner__title {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.banner--play .banner__subtitle {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.banner--play .banner__btn {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.banner--play .banner__arrow-circle {
  opacity: 1;
}

.banner--default .banner__item {
  padding: 50px 0;
}

@media (max-width: 991px) {
  .banner--default .banner__item {
    padding: 30px 0 0;
  }
}

@media (max-width: 767px) {
  .banner--default .banner__item {
    padding: 15px 0 0;
  }
}

.banner--slider .banner__title {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.banner--slider .banner__subtitle {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.banner--slider .banner__btn {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.banner--slider .banner__arrow-circle {
  opacity: 1;
}

.banner--slider .banner__container {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
}

@media (max-width: 991px) {
  .banner--slider .banner__container {
    padding-top: 130px;
    top: 0;
    position: relative;
    background: url("../media-demo/banner/banner-1.jpg") 50% 0 no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .banner--slider .banner__container {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .banner--slider .banner__container--auth {
    background: url("../media-demo/banner/banner-4.jpg") 50% 0 no-repeat;
  }
}

.banner--slider .banner__sidebar {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 360;
  float: right !important;
}

@media (min-width: 480px) {
  .banner--slider .banner__sidebar:nth-of-type(n) {
    clear: none;
  }

  .banner--slider .banner__sidebar:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .banner--slider .banner__sidebar {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 992px) {
  .banner--slider .banner__sidebar:nth-of-type(n) {
    clear: none;
  }

  .banner--slider .banner__sidebar:nth-of-type(3n+1) {
    clear: both;
  }
}

.banner--slider .parsley-errors-list.filled {
  margin-top: 0;
}

.banner--slider .parsley-errors-list.filled li {
  padding: 5px;
  color: #2c3e50;
}

.banner--slider .parsley-required {
  background: #e95b35;
}

.banner--slider .parsley-type {
  background: #f3bc65;
}

/*------------------------------------------------------------------
 * Review widget (Testimonials)
 * + Review / .review
 *   -- Review Wide / .review--wide
 *   -- Review listing / .review--listing
 *   -- Review list / .review--list
 *   -- Review ui / .review--ui
 * ============================================================== */

.review {
  padding-bottom: 20px;
  background: none !important;
}

@media (max-width: 767px) {
  .review {
    padding-bottom: 25px;
  }
}

.review:before,
.review:after {
  content: " ";
  display: table;
}

.review:after {
  clear: both;
}

.review .container {
  background: none !important;
}

.review__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .review__header {
    margin: 21px 0 25px;
  }
}

.review__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .review__title {
  font-size: 34px;
}

.footer .review__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .review__title {
    font-size: 26px;
  }

  .sidebar .review__title {
    font-size: 26px;
  }
}

.review__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  padding: 0 200px;
}

.review__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .review__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .review__headline {
  margin: 4px 0 0;
}

@media (max-width: 1199px) {
  .review__headline {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .review__headline {
    margin-top: 23px;
  }
}

.review__list {
  margin-top: 29px;
}

.review__list:before,
.review__list:after {
  content: " ";
  display: table;
}

.review__list:after {
  clear: both;
}

.review__item {
  margin: 0;
  float: left;
}

.review__item:last-child {
  margin-right: 0;
}

.review__item:before,
.review__item:after {
  content: " ";
  display: table;
}

.review__item:after {
  clear: both;
}

@media (max-width: 767px) {
  .review__item {
    margin-top: 0;
  }
}

.review__item--last {
  border-bottom: 0;
}

.review__photo {
  position: relative;
  margin: 0;
  float: left;
  width: 50%;
  padding-right: 10px;
}

@media (max-width: 767px) {
  .review__photo {
    float: none;
    margin: 0 auto;
  }
}

.review__photo img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .review__photo img {
    float: none;
    margin: 0 auto;
  }
}

.review__details {
  float: left;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .review__details {
    float: none;
    text-align: center;
    padding: 0;
  }
}

.review__name {
  font-size: 17px;
  color: #2c3e50;
  font-weight: 900;
  padding: 0;
  text-transform: uppercase;
  display: block;
}

@media (max-width: 767px) {
  .review__name {
    font-size: 15px;
    margin-top: 0;
  }
}

.review__post {
  color: #2c3e50;
  display: block;
}

@media (max-width: 767px) {
  .review__post {
    font-size: 13px;
  }
}

.review__info {
  margin-top: 0;
}

.review__slider {
  overflow: hidden;
  padding: 0 0 50px 0;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .review__slider {
    padding-bottom: 10px;
  }
}

.review__controls {
  display: none;
}

.review .slick-dots {
  text-align: center;
  bottom: 0;
}

@media (max-width: 767px) {
  .review .slick-dots {
    bottom: -17px;
  }
}

.review li button:before {
  font-size: 10px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #2c3e50;
  opacity: 1;
}

.review li.slick-active button:before {
  font-size: 10px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #00bbaa;
}

.review--wide {
  padding-bottom: 30px;
}

.review--wide .no-items {
  margin: 0 0 20px 0;
}

@media (max-width: 767px) {
  .review--wide .no-items {
    margin-bottom: 0;
  }
}

.review--wide .review__title {
  font-family: "Montserrat", sans-serif;
}

.review--wide .review__list {
  margin-top: 25px;
  padding: 0 235px;
}

.review--wide .review__list:before,
.review--wide .review__list:after {
  content: " ";
  display: table;
}

.review--wide .review__list:after {
  clear: both;
}

@media (max-width: 991px) {
  .review--wide .review__list {
    padding: 0 13px;
  }
}

@media (max-width: 767px) {
  .review--wide .review__photo {
    padding-right: 0;
  }
}

.review--wide .review__photo img {
  float: right;
}

@media (max-width: 767px) {
  .review--wide .review__photo img {
    float: none;
  }
}

.review--wide .review__name {
  margin: 24px 0 0;
}

.review--wide .review__info {
  margin-top: 0;
  clear: both;
}

@media (max-width: 767px) {
  .review--wide .review__info {
    margin-top: -10px;
  }
}

.review--wide .review__info p {
  font-style: italic;
  color: #00bbaa;
  text-align: center;
}

.review--wide .review__info-quote {
  font-size: 50px;
  line-height: 1;
  color: #2c3e50;
  height: 25px;
  font-weight: 600;
}

.review--wide .review__info-quote p {
  font-style: italic;
  color: #00bbaa;
  text-align: center;
}

.review--wide .review__info-quote--close {
  float: right;
  margin-top: -30px;
}

@media (max-width: 991px) {
  .review--wide .review__info-quote--close {
    margin-top: -15px;
  }
}

.review--wide .review__stars {
  display: none;
}

.review--list {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .review--list {
    padding-bottom: 0;
  }
}

.review--list .review__item {
  float: none;
  margin: 50px -15px;
}

.review--list .review__item:nth-child(2n) .review__info,
.review--list .review__item:nth-child(2n) .review__details,
.review--list .review__item:nth-child(2n) .review__photo {
  float: right;
}

.review--list .review__item:nth-child(2n) .review__info img,
.review--list .review__item:nth-child(2n) .review__details img,
.review--list .review__item:nth-child(2n) .review__photo img {
  float: right;
}

.review--list .review__item:after {
  content: "";
  display: block;
  border-bottom: 1px solid #d6d6d6;
  margin: 30px 15px 0;
}

@media (max-width: 767px) {
  .review--list .review__item:after {
    margin-top: 10px;
  }
}

.review--list .review__item:last-child {
  margin-bottom: 10px;
}

.review--list .review__item:last-child:after {
  border-bottom: none;
  margin-top: 0;
}

@media (max-width: 767px) {
  .review--list .review__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .review--list .review__item:last-child .review__info p {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .review--list .review__item:nth-child(2n) .request__photo {
    float: right !important;
  }

  .review--list .review__item:nth-child(2n) .request__photo img {
    float: right;
  }
}

@media (max-width: 767px) {
  .review--list .review__item {
    margin: 30px -15px;
  }
}

.review--list .review__list {
  border: none;
  margin: 0;
}

.review--list .review__info {
  margin-top: -6px;
}

@media (max-width: 991px) {
  .review--list .review__info {
    margin-top: 15px;
  }
}

.review--list .review__info-quote {
  display: none;
}

.review--list .review__stars {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .review--list .review__stars {
    margin-top: 10px;
  }
}

.review--list .review__photo {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .review--list .review__photo:nth-of-type(n) {
    clear: none;
  }

  .review--list .review__photo:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .review--list .review__photo {
    float: left;
    width: 16.66667%;
  }
}

@media (min-width: 992px) {
  .review--list .review__photo:nth-of-type(n) {
    clear: none;
  }

  .review--list .review__photo:nth-of-type(6n+1) {
    clear: both;
  }
}

.review--list .review__photo img {
  width: 100%;
}

.review--list .review__details {
  position: relative;
  float: left;
  width: 66.66667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

@media (min-width: 480px) {
  .review--list .review__details:nth-of-type(n) {
    clear: none;
  }

  .review--list .review__details:nth-of-type(1.5n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .review--list .review__details {
    float: left;
    width: 25%;
  }
}

@media (min-width: 992px) {
  .review--list .review__details:nth-of-type(n) {
    clear: none;
  }

  .review--list .review__details:nth-of-type(4n+1) {
    clear: both;
  }
}

.review--list .review__info {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .review--list .review__info:nth-of-type(n) {
    clear: none;
  }

  .review--list .review__info:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .review--list .review__info {
    float: left;
    width: 58.33333%;
  }
}

@media (min-width: 992px) {
  .review--list .review__info:nth-of-type(n) {
    clear: none;
  }

  .review--list .review__info:nth-of-type(1.71429n+1) {
    clear: both;
  }
}

.review--list .review__name {
  margin-top: -7px;
}

@media (max-width: 767px) {
  .review--ui {
    padding-bottom: 0;
  }
}

/*------------------------------------------------------------------
 * Scroll up button
 * + Scroll Up Button / .scrollup
 * ============================================================== */

.scrollup {
  position: fixed;
  background: #00adef;
  color: #fff;
  bottom: 30px;
  left: 50%;
  margin-left: 530px;
  z-index: 10;
  border: none;
  padding: 0 7px 3px 7px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

.scrollup:before {
  font-size: 2em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  line-height: 1.3;
}

.scrollup.scrollup-show {
  opacity: 1;
}

@media (max-width: 1199px) {
  .scrollup {
    margin-left: 0;
    left: auto;
    right: 20px;
  }
}

/*------------------------------------------------------------------
 * Dropdown for select custom
 * + Dropdown / .dropdown
 *   -- Dropdown select / .dropdown--select
 * ============================================================== */

.dropdown__menu {
  display: block !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
  cursor: default;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
  position: absolute;
  top: 30px;
  left: 0;
  padding: 0;
  border: 1px solid #dcdcdc;
}

.dropdown__menu:before {
  width: 7px;
  height: 7px;
  position: absolute;
  background: #fff;
  top: -4px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: "";
  display: block;
  left: 20px;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.dropdown__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.open .dropdown__menu {
  opacity: 1;
  height: auto;
  overflow: visible;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.dropdown--select .dropdown-toggle {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  background: #fff;
  text-align: left;
  padding: 5px 30px 5px 20px;
}

.dropdown--select .dropdown-toggle:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.dropdown--select .dropdown-toggle::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.dropdown--select .dropdown-toggle:-ms-input-placeholder {
  color: #2c3e50;
}

.dropdown--select .dropdown-toggle::-webkit-input-placeholder {
  color: #2c3e50;
}

.dropdown--select .dropdown-toggle[disabled],
.dropdown--select .dropdown-toggle[readonly],
fieldset[disabled] .dropdown--select .dropdown-toggle {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.dropdown--select .dropdown-toggle.parsley-error {
  border: 1px solid #e95b35;
}

.dropdown--select .dropdown-toggle.parsley-success {
  border: 1px solid #00bbaa;
}

.dropdown--select .dropdown-toggle:after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  top: 0;
  padding: 5px 0 0 10px;
  color: #595959;
  font-size: 15px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  border-left: 1px solid #d6d6d6;
}

.search--banner-sidebar .dropdown--select .dropdown-toggle {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search--banner-sidebar .dropdown--select .dropdown-toggle:after {
  border-left: none;
}

.dropdown--select .dropdown-menu {
  background: #fff;
  border: 1px solid #d6d6d6;
  margin-top: -1px;
  right: 0;
}

.dropdown--header .dropdown__btn {
  font-size: 13px;
  text-transform: uppercase;
  background: none;
  position: relative;
  padding: 0;
  display: block;
  border: none;
  font-weight: 700;
}

.dropdown--header .dropdown__btn:after {
  display: block;
  font-size: 10px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  padding: 0 0 0 11px;
  text-align: left;
  opacity: 0.5;
}

.dropdown--header .dropdown__menu {
  background: #fff;
  width: 125px;
}

.dropdown--header .dropdown__link {
  margin: 0 30px;
  padding: 3px 0;
  color: #2c3e50;
  display: block;
  text-transform: uppercase;
}

.dropdown--header .dropdown__link.active,
.dropdown--header .dropdown__link:hover {
  margin: 0;
  padding: 3px 30px;
  background: #00bbaa;
  color: #fff;
  text-decoration: none;
}

.dropdown--header .dropdown__link.active {
  font-weight: bold;
}

/*------------------------------------------------------------------
 * Header block
 * + Header / .header
 * __ Header social / .header__social
 * __ Header title / .header__title
 * __ Header address / .header__address
 * __ Header phone / .header__phone
 * __ Header email / .header__email
 * ============================================================== */

.header {
  z-index: 240;
  position: relative;
  background: #00adef;/*00bbaa*/
  color: #fff;
}

.header:before,
.header:after {
  content: " ";
  display: table;
}

.header:after {
  clear: both;
}

.header__row {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 50px;
}

.header__settings {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 350px;
}

@media (max-width: 767px) {
  .header__settings {
    display: none;
  }
}

.header__settings-icon {
  width: 16px;
  height: 16px;
  position: relative;
  top: 4px;
  margin: -3px 10px 0 0;
  opacity: 0.5;
}

.header__contacts {
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .header__contacts {
    background: none !important;
  }
}

.header__social {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .header__social {
    display: none;
  }
}

.header__phone {
  color: #fff;
  display: block;
  font-weight: 400;
  line-height: 1;
  padding: 13px 40px 0;
}

.header__phone:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .header__phone {
    padding: 13px 0 0;
  }
}

.header__phone-icon {
  width: 16px;
  height: 14px;
  position: relative;
  top: 3px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .header__phone-icon {
    width: 22px;
    height: 22px;
    top: 0;
  }
}

.header__call {
  text-align: center;
  padding: 5px 15px 0;
}

.header__call:before {
  font-size: 2.1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #fff;
}

@media (min-width: 768px) {
  .header__call {
    display: none;
  }
}

.header__logo {
  text-align: center;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .header__logo {
    display: none;
  }
}

.header__logo svg {
  width: 50px;
  height: 35px;
}

.header__navbar-toggle {
  background: none;
  border: none;
  margin-top: 5px;
  height: 40px;
  width: 40px;
  padding: 0 !important;
  border-radius: 20px;
  outline: none;
}

.header__navbar-toggle.collapsed {
  background: #fff;
}

.header__navbar-toggle.collapsed .header__navbar-show {
  display: none;
}

.header__navbar-toggle.collapsed .header__navbar-hide {
  display: block;
  fill: #00bbaa;
}

.header__navbar-toggle.collapsed svg {
  fill: #00bbaa;
}

.header__navbar-toggle svg {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .header__navbar-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .header__navbar-toggle {
    padding-top: 0;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
  }
}

.header__navbar-show {
  display: block;
}

.header__navbar-hide {
  fill: #00bbaa !important;
  display: none;
}

@media (max-width: 767px) {
  .header__span {
    display: none;
  }
}

.header svg {
  fill: #fff;
}

.header--none {
  display: none;
}

.header--overlay {
  position: absolute;
  left: 0;
  right: 0;
}

.boxed .header--overlay {
  left: 10px;
  right: 10px;
}

@media (max-width: 767px) {
  .header--overlay {
    display: block;
    background: none;
  }
}

.header--overlay .header__call {
  display: none;
}

.header--overlay .header__logo {
  width: auto;
}

.header--dark {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.header--dark svg {
  fill: #fff;
}

.header--dark .header__contacts {
  background: rgba(0, 0, 0, 0.2);
}

.header--white {
  background: #fff;
  color: #2c3e50;
}

.header--white svg {
  fill: #2c3e50;
}

.header--white .header__contacts {
  background: rgba(0, 0, 0, 0.1);
}

.header--white .header__phone {
  color: #2c3e50;
}

.header--mob-opened.header--dark,
.header--mob-opened.header--white {
  background: none !important;
}

.header--mob-opened .header__logo {
  visibility: hidden;
}

.header--mob-opened .header__contacts {
  visibility: hidden;
}

/*------------------------------------------------------------------
 * Social icons block
 * + Social / .social
 *   -- Social header / .social--header
 *   -- Social properties / .social--properties
 *   -- Social article / .social--article
 *   -- Social footer / .social--footer
 *   -- Social worker / .social--worker
 *   -- Social contacts / .social--contacts
 *   -- Social join / .social--join
 *   -- Social sidebar-worker / .social--sidebar-worker
 * ============================================================== */

.social__item {
  float: left;
  font-size: 20px;
  margin: 10px 48px 10px 0;
}

.social__item:hover,
.social__item:focus {
  color: #f3bc65;
}

.social--header .social__item {
  margin: 0 50px 0 0;
  color: #fff;
}

.social--header .social__item:hover {
  color: #f3bc65;
}

.social--properties {
  float: right;
  color: #2c3e50;
  width: auto;
  clear: right;
  margin: 7px 0 0 0;
  padding: 0;
  text-align: right;
}

.social--properties .social__title {
  float: left;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .social--properties .social__title {
    float: none;
    display: block;
  }
}

.social--properties .social__item {
  margin: 0 0 0 24px;
  display: inline-block;
  float: none;
}

@media (max-width: 1199px) {
  .social--properties .social__item {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .social--properties .social__item {
    font-size: 19px;
  }

  .social--properties .social__item:first-of-type {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .social--properties {
    margin: -4px 0 0 0;
    padding: 0;
  }
}

.social--article {
  float: right;
  color: #2c3e50;
  width: auto;
  clear: right;
  margin: 0 0 0 0;
  padding: 0;
}

.social--article span {
  float: left;
  margin: 5px 10px 0 0;
}

.social--article .social__item {
  margin: 0 0 0 30px;
}

.social--footer {
  margin: 50px 0;
}

@media (max-width: 767px) {
  .social--footer {
    width: auto;
    margin: 0;
  }

  .social--footer:before,
  .social--footer:after {
    content: " ";
    display: table;
  }

  .social--footer:after {
    clear: both;
  }
}

.social--footer .social__title {
  font-size: 17px;
  color: #00bbaa;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .social--footer .social__title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.social--footer .social__item {
  margin: 10px 40px 0 0;
  color: #00bbaa;
  font-size: 20px;
}

.social--footer .social__item:hover {
  color: #f3bc65;
}

.social--join {
  margin: 30px 0;
  font-size: 17px;
  color: #fff;
}

.social--join:before,
.social--join:after {
  content: " ";
  display: table;
}

.social--join:after {
  clear: both;
}

@media (max-width: 767px) {
  .social--join {
    margin-top: -15px;
    margin-bottom: 20px;
  }
}

.social--join .social__item {
  margin: 0 15px;
  float: none;
  font-size: 20px;
  color: #fff;
}

.social--join .social__item:hover {
  text-decoration: none;
  color: #f3bc65;
}

.social--worker {
  margin: 30px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .social--worker {
    margin: 13px 0 0 0;
    float: right;
  }
}

.social--worker .social__item {
  margin: 0;
}

.social--contacts {
  -webkit-box-pack: inherit;
  -webkit-justify-content: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
  float: none;
  display: block;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .social--contacts {
    float: none;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .social--contacts .contacts__social-title {
    margin-right: 0;
    float: none;
    display: block;
  }
}

.social--contacts .social__item {
  margin-right: 30px;
}

@media (max-width: 767px) {
  .social--contacts .social__item {
    float: none;
    display: inline-block;
    margin-right: 20px;
  }

  .social--contacts .social__item:last-child {
    margin-right: 0;
  }
}

.social--sidebar-worker {
  margin: 10px 0 0 0;
  border-bottom: 1px dotted #d6d6d6;
}

.social--sidebar-worker:before,
.social--sidebar-worker:after {
  content: " ";
  display: table;
}

.social--sidebar-worker:after {
  clear: both;
}

.social--sidebar-worker .social__item {
  margin: 0 20px 0 0;
}

.social--sidebar-worker .social__item--linkedin {
  margin: 5px 20px 0 0;
}

.social--sidebar-worker .social__item:last-child {
  margin-right: 0;
}

.social--sidebar-worker svg {
  fill: #00bbaa;
}

/*------------------------------------------------------------------
 * Navbar block
 * + Navbar / .navabar
 * ============================================================== */

@media (max-width: 767px) {
  .navbar {
    display: none;
  }
}

.navbar__row {
  margin: 30px 0;
}

.navbar__row:before,
.navbar__row:after {
  content: " ";
  display: table;
}

.navbar__row:after {
  clear: both;
}

@media (max-width: 767px) {
  .navbar__row {
    margin: 0;
  }
}

.header-fixed .navbar__row {
  margin: 0 !important;
  padding: 10px 0 !important;
  background: none !important;
}

.navbar__brand {
  float: left;
  line-height: 24px;
  padding: 0;
}

.navbar__brand img {
  width: 100%;
}

@media (max-width: 767px) {
  .navbar__brand {
    display: none;
  }
}

.navbar__brand-logo {
  display: none;
  fill: #2c3e50;
}

@media (min-width: 1200px) {
  .navbar__brand-logo--lg {
    display: block;
    height: 60px;
    width: 215px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navbar__brand-logo--sm {
    display: block;
    width: 60px;
    height: 60px;
  }
}

.navbar__wrap {
  margin: 16px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-fixed .navbar__wrap {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .navbar__wrap {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar__wrap--init {
    display: block;
    /*background: #f6f6f6;  #fff */
    width: 280px; /* 300px */
    /*bottom: 0;*/
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    float: none;
    padding-top: 50px;
    overflow-y: auto;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
  }
}

.navbar__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .navbar__nav {
    margin-top: 0;
    width: 280px;
    position: relative;
    z-index: 20;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.navbar__item {
  float: left;
  margin: 3px 0 0 40px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  position: relative;
}

.navbar__item:active > a,
.navbar__item:hover > a,
.navbar__item.open > a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar__item {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .navbar__item {
    position: initial;
    float: none;
    margin: 0;
  }
}

.navbar__item--mob {
  display: none;
}

@media (max-width: 767px) {
  .navbar__item--mob {
    display: block;
  }
}

.navbar__dropdown {
  position: absolute;
  left: 0;
  display: block;
  padding: 0;
  border: none;
  min-width: 200px;
  background: #00bbaa;
  margin: 0;
  z-index: 15;
}

@media (min-width: 768px) {
  .navbar__dropdown {
    visibility: hidden;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .navbar__item:hover > .navbar__dropdown {
    visibility: visible;
  }

  .menu-default .navbar__item:hover > .navbar__dropdown,
  .menu-default .navbar__item.open > .navbar__dropdown {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }

  .menu-fadeIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }

  .menu-fadeInUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }

  .menu-fadeInUpBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
  }

  .menu-fadeInDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }

  .menu-fadeInDownBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
  }

  .menu-fadeInLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }

  .menu-fadeInLeftBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
  }

  .menu-fadeInRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }

  .menu-fadeInRightBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
  }

  .menu-fadeOutUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
  }

  .menu-fadeOutUpBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
  }

  .menu-fadeOutDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
  }

  .menu-fadeOutDownBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
  }

  .menu-fadeOutLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
  }

  .menu-fadeOutLeftBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
  }

  .menu-fadeOutRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
  }

  .menu-fadeOutRightBig .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
  }

  .menu-bounceIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
  }

  .menu-bounceInUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
  }

  .menu-bounceInDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }

  .menu-bounceInLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }

  .menu-bounceInRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }

  .menu-bounceOutUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
  }

  .menu-bounceOutDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
  }

  .menu-bounceOutLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
  }

  .menu-bounceOutRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
  }

  .menu-rotateIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
  }

  .menu-rotateInUpLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
  }

  .menu-rotateInUpRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
  }

  .menu-rotateInDownLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
  }

  .menu-rotateInDownRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
  }

  .menu-rotateOut .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
  }

  .menu-rotateOutUpLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
  }

  .menu-rotateOutUpRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
  }

  .menu-rotateOutDownLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
  }

  .menu-rotateOutDownRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
  }

  .menu-slideIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
  }

  .menu-slideInUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
  }

  .menu-slideInDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
  }

  .menu-slideInLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
  }

  .menu-slideInRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
  }

  .menu-slideOut .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideOut;
    animation-name: slideOut;
  }

  .menu-slideOutUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
  }

  .menu-slideOutDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
  }

  .menu-slideOutLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
  }

  .menu-slideOutRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
  }

  .menu-flip .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: flip;
    animation-name: flip;
  }

  .menu-flipInX .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
  }

  .menu-flipInY .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
  }

  .menu-flipOutX .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
  }

  .menu-flipOutY .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
  }

  .menu-lightSpeedIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
  }

  .menu-bounce .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: bounce;
    animation-name: bounce;
  }

  .menu-flash .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: flash;
    animation-name: flash;
  }

  .menu-pulse .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: pulse;
    animation-name: pulse;
  }

  .menu-wiggle .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: wiggle;
    animation-name: wiggle;
  }

  .menu-swing .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: swing;
    animation-name: swing;
  }

  .menu-shake .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: shake;
    animation-name: shake;
  }

  .menu-tada .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: tada;
    animation-name: tada;
  }

  .menu-wobble .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: wobble;
    animation-name: wobble;
  }

  .menu-hinge .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: hinge;
    animation-name: hinge;
  }

  .menu-rollIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
  }

  .menu-rollOut .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
  }

  .menu-zoomIn .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
  }

  .menu-zoomInDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
  }

  .menu-zoomInLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
  }

  .menu-zoomInRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
  }

  .menu-zoomInUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
  }

  .menu-zoomOut .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
  }

  .menu-zoomOutDown .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
  }

  .menu-zoomOutLeft .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
  }

  .menu-zoomOutRight .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
  }

  .menu-zoomOutUp .navbar__item:hover > .navbar__dropdown {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
  }
}

@media (max-width: 767px) {
  .navbar__dropdown {
    top: 0;
    display: block;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0;
    padding-top: 0;
    float: none;
    width: 300px;
    height: 100%;
    background: #00bbaa;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .open > .navbar__dropdown {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 50;
  }
}

.navbar__dropdown--colls-1 {
  width: 200px;
}

@media (max-width: 1199px) {
  .navbar__dropdown--colls-1 {
    width: 100%;
    margin: 0;
    padding-left: 0;
  }
}

.navbar__dropdown--colls-2 {
  width: 400px;
}

@media (max-width: 1199px) {
  .navbar__dropdown--colls-2 {
    width: 100%;
    margin: 0;
    padding-left: 0;
  }
}

.navbar__dropdown--colls-3 {
  width: 600px;
}

@media (max-width: 1199px) {
  .navbar__dropdown--colls-3 {
    width: 100%;
    margin: 0;
    padding-left: 0;
  }
}

.navbar__dropdown--right {
  left: auto;
  right: 0;
}

.navbar__dropdown--left {
  right: auto;
  left: 0;
}

.navbar__dropdown ul {
  list-style: none;
}

.navbar__link {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  text-decoration: none;
  color: #2c3e50;
}

@media (max-width: 767px) {
  .navbar__link {
    font-size: 17px;
    color: #000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
  }
}

@media (min-width: 768px) {
  .active .navbar__link {
    -webkit-box-shadow: 0 2px 0 #2c3e50;
    box-shadow: 0 2px 0 #2c3e50;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .active .navbar__link {
    background: #00887c;
  }
}

.navbar__arrow {
  fill: none;
  stroke: #fff;
  stroke-width: 4px;
  width: 7px;
  height: 11px;
  float: right;
  margin-top: 6px;
}

.navbar__link .navbar__arrow {
  display: none;
}

@media (max-width: 767px) {
  .navbar__link .navbar__arrow {
    display: block;
  }
}

.navbar__back .navbar__arrow {
  float: none;
  position: relative;
  top: 1px;
  margin-right: 15px;
}

.navbar__back {
  display: none;
}

@media (max-width: 767px) {
  .navbar__back {
    display: block;
    width: 100%;
    text-align: left;
    color: #fff;
    border: none;
    background: none;
    outline: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    padding: 5px 25px;
  }
}

.navbar__submenu {
  float: left;
  margin: 0;
  width: 200px;
  padding: 0;
}

@media (max-width: 767px) {
  .navbar__submenu {
    width: 300px;
    float: none;
    padding: 0;
  }
}

.navbar__submenu:last-child {
  margin-right: 0;
}

.navbar__submenu--level {
  opacity: 0;
  height: 0;
  overflow: hidden;
  cursor: default;
  -webkit-transform: translate3d(-5px, 0, 0);
  transform: translate3d(-5px, 0, 0);
  left: 100%;
  top: 0;
  position: absolute;
  background: #00bbaa;
  padding-top: 0;
  margin: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}

@media (max-width: 1199px) {
  .navbar__submenu--level {
    position: relative;
    height: auto;
    left: 0;
    opacity: 1;
    overflow: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    float: none;
    width: 170px;
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar__submenu--level {
    left: 0;
    bottom: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    position: absolute;
    width: 300px;
    top: 0;
    height: 100% !important;
    padding: 0;
  }

  .open > .navbar__submenu--level {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.navbar__subtitle {
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  margin: 10px 25px 0;
  padding-bottom: 10px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .navbar__subtitle {
    color: #00eed8;
    padding: 10px 25px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
  }
}

.navbar__subnav {
  list-style: none;
  padding: 0;
}

@media (max-width: 1199px) {
  .navbar__subnav {
    border: none;
  }
}

.navbar__sublink {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  display: block;
}

.navbar__sublink:hover,
.active > .navbar__sublink {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .navbar__sublink {
    -webkit-transition: hover 0.3s, padding 0.3s;
    transition: hover 0.3s, padding 0.3s;
  }

  .navbar__sublink:hover {
    padding-left: 10px;
  }
}

@media (max-width: 767px) {
  .navbar__sublink {
    color: rgba(255, 255, 255, 0.8);
  }
}

.navbar__subitem {
  padding: 0 25px;
  position: relative;
}

@media (max-width: 767px) {
  .navbar__subitem {
    clear: both;
    position: initial;
    padding: 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 1199px) {
  .navbar__subitem:hover .navbar__submenu--level {
    display: block;
  }
}

@media (max-width: 767px) {
  .navbar__subitem-dropdown.open > .navbar__submenu {
    height: auto;
    overflow: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 768px) {
  .navbar__subitem-dropdown:hover > .navbar__submenu {
    height: auto;
    overflow: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.navbar a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .admin-bar .navbar.header-fixed {
    top: -33px;
  }
}

.navbar--subpage {
  background: #fff;
}

.navbar--example {
  padding: 20px 0;
}

@media (max-width: 767px) {
  .navbar--ui {
    width: 252px;
    background: #00bbaa;
  }
}

@media (max-width: 767px) {
  .navbar--ui .navbar__nav {
    border-top: none;
  }

  .navbar--ui .navbar__nav > li:last-child a {
    border-bottom: none !important;
  }
}

.navbar--header {
  position: relative;
  z-index: 230;
  background: #f6f6f6;
  border: none;
  min-height: inherit;
  margin-bottom: 0;
}

.navbar--header.header-fixed {
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  min-height: 65px;
}

@media (min-width: 768px) {
  .navbar--header.header-fixed {
    position: fixed;
    top: -65px;
    left: 0;
    right: 0;
    z-index: 35;
    -webkit-transform: translateY(65px);
    -ms-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
  }
}

.navbar--overlay {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: none;
}

.navbar--overlay .navbar__link {
  color: #fff;
}

.navbar--overlay .active .navbar__link {
  -webkit-box-shadow: 0 2px 0 #fff;
  box-shadow: 0 2px 0 #fff;
}

.navbar--overlay .navbar__brand-logo {
  fill: #fff;
}

.navbar--overlay.header-fixed {
  background: #fff;
}

.navbar--overlay.header-fixed .navbar__link {
  color: #2c3e50;
}

.navbar--overlay.header-fixed .active .navbar__link {
  -webkit-box-shadow: 0 2px 0 #2c3e50;
  box-shadow: 0 2px 0 #2c3e50;
}

.navbar--overlay.header-fixed .navbar__brand-logo {
  fill: #2c3e50;
}

.navbar--overlay .navbar__row {
  margin: 30px -25px;
  padding: 12px 25px;
}

@media (max-width: 991px) {
  .navbar--overlay .navbar__row {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .navbar--overlay .navbar__row {
    padding: 0;
    margin: 56px 0 0;
  }
}

.navbar--brand .navbar__row {
  background: rgba(0, 187, 170, 0.8);
}

.navbar--overlay-map .navbar__row {
  background: rgba(255, 255, 255, 0.9);
}

.navbar--overlay-map .navbar__link {
  color: #2c3e50;
}

.navbar--overlay-map .active .navbar__link {
  -webkit-box-shadow: 0 2px 0 #2c3e50;
  box-shadow: 0 2px 0 #2c3e50;
}

.navbar--overlay-map .navbar__brand-logo {
  fill: #2c3e50;
}

.navbar.navbar-default {
  background: #00bbaa;
  margin-bottom: 25px;
  border: none;
}

.navbar.navbar-inverse {
  background: #222;
  border: none;
}

#header-nav-offset {
  display: none;
}

@media (min-width: 768px) {
  #header-nav-offset.header-fixed {
    display: block;
  }
}

/*------------------------------------------------------------------
 * Footer
 * + Footer / .footer
 *   __ Footer wrap / .footer__wrap
 *   __ Footer col / .footer__col
 *   __ Footer title / .footer__title
 *   __ Footer copyright / .footer__copyright
 * ============================================================== */

.footer {
  background: #222;
}

.footer__wrap {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 25px;
}

.footer__wrap:before,
.footer__wrap:after {
  content: " ";
  display: table;
}

.footer__wrap:after {
  clear: both;
}

@media (max-width: 767px) {
  .footer__wrap {
    padding-top: 0;
  }
}

.footer__col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .footer__col {
    float: left;
    width: 33.33333%;
  }
}

.footer__col .container {
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer__col > :first-child {
  margin-top: 0 !important;
}

.footer__col--first {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .footer__col--first {
    float: left;
    width: 41.66667%;
  }
}

.footer__col--second {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .footer__col--second {
    float: left;
    width: 33.33333%;
  }
}

.footer__col--third {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .footer__col--third {
    float: left;
    width: 25%;
  }
}

.footer__title {
  font-size: 17px;
  color: #00bbaa;
  margin: 30px 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .footer__title {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.footer span,
.footer p,
.footer a {
  color: #bebebe;
  font-weight: normal;
  margin-bottom: 15px;
}

.footer__copyright {
  margin-top: 45px;
  margin-bottom: 45px !important;
  display: block;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 25px;
  }
}

/*------------------------------------------------------------------
 * Search block
 * + Search / .search
 *   -- Search index / .search--index
 *   -- Search listing / .search--listing
 *   -- Search sidebar / .search--sidebar
 *   -- Search map-sidebar / .search--map-sidebar
 *   -- Search banner-sidebar / .search--banner-sidebar
 *   -- Search map-bottom / .search--map-bottom
 *   -- Search map-dark / .search--map-dark
 *   -- Search article / .search--article
 *   -- Search list / .search--list
 *   -- Search error-status / .search--error-status
 * ============================================================== */

.search {
  z-index: 30;
}

.search__row {
  margin-left: -15px;
  margin-right: -15px;
}

.search__row:before,
.search__row:after {
  content: " ";
  display: table;
}

.search__row:after {
  clear: both;
}

.search__form {
  margin: 40px 0 0;
}

@media (max-width: 767px) {
  .search__form {
    padding: 0 0 25px 0;
  }
}

.search__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .search__header {
    margin: 21px 0 25px;
  }
}

.search__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .search__title {
  font-size: 34px;
}

.footer .search__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .search__title {
    font-size: 26px;
  }

  .sidebar .search__title {
    font-size: 26px;
  }
}

.search__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}

.search__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .search__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .search__headline {
  margin: 4px 0 0;
}

.search__form-group {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 21px;
}

.search__form-group .select2-container {
  width: 100% !important;
}

.search__form-label {
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.search__form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.search__form-control:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.search__form-control::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.search__form-control:-ms-input-placeholder {
  color: #2c3e50;
}

.search__form-control::-webkit-input-placeholder {
  color: #2c3e50;
}

.search__form-control[disabled],
.search__form-control[readonly],
fieldset[disabled] .search__form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.search__form-control.parsley-error {
  border: 1px solid #e95b35;
}

.search__form-control.parsley-success {
  border: 1px solid #00bbaa;
}

.search--banner-sidebar .search__form-control {
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.search__ranges {
  position: relative;
  margin-top: 21px;
}

.search__ranges-in {
  display: none;
}

.search__form-lens {
  color: #d6d6d6;
  font-size: 16px;
  background: none;
  border: none;
  float: right;
  margin: -32px 0 0 0;
  position: relative;
  z-index: 10;
}

.search__advanced {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .search__advanced {
    float: left;
    width: 16.66667%;
  }
}

.search__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .search__buttons {
    float: none;
    margin-top: 20px;
  }
}

.search__btn {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
  width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .search__btn {
    padding: 3px 5px 3px 5px;
  }
}

.search__btn:hover,
.search__btn:focus,
.search__btn.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.search__btn:disabled,
.search__btn.disabled {
  cursor: not-allowed;
}

.search__btn.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.search__btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.search__btn.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.search__btn.has-error,
.search__btn.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.search__btn.has-error:after,
.search__btn.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.search__btn.has-success,
.search__btn.success {
  color: transparent !important;
}

.search__btn.has-success:after,
.search__btn.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .search__btn.button--loading:before {
  content: "";
}

.button--loading-refresh .search__btn.button--loading:before {
  content: "";
}

.button--loading-spinner .search__btn.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .search__btn.hover,
  .search__btn:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.search__btn:active,
.search__btn.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.search__btn:disabled,
.search__btn.disabled {
  color: #ccc;
  border-color: #efefef;
}

.search__btn--reset {
  margin: 0;
  padding-left: 8px;
}

.search__btn--reset:before {
  font-size: 1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  font-size: 12px;
  margin: 0 5px 0 0;
}

.search__btn--action {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  width: 48%;
  margin: 0;
}

@media (max-width: 767px) {
  .search__btn--action {
    padding: 3px 5px 3px 5px;
  }
}

.search__btn--action:hover,
.search__btn--action:focus,
.search__btn--action.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.search__btn--action:disabled,
.search__btn--action.disabled {
  cursor: not-allowed;
}

.search__btn--action.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.search__btn--action:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.search__btn--action.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.search__btn--action.has-error,
.search__btn--action.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.search__btn--action.has-error:after,
.search__btn--action.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.search__btn--action.has-success,
.search__btn--action.success {
  color: transparent !important;
}

.search__btn--action.has-success:after,
.search__btn--action.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .search__btn--action.button--loading:before {
  content: "";
}

.button--loading-refresh .search__btn--action.button--loading:before {
  content: "";
}

.button--loading-spinner .search__btn--action.button--loading:before {
  content: "";
}

.search__btn--action.hover,
.search__btn--action:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.search__btn--action:active,
.search__btn--action.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.search__btn--action:disabled,
.search__btn--action.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.search__show {
  display: none;
  position: absolute;
  top: 120px;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  -webkit-box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
}

.search__show:after {
  font-size: 2.2em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  color: #d6d6d6;
}

.opened .search__show {
  display: none !important;
}

.search--index .container {
  padding-bottom: 20px;
  background: none !important;
}

@media (max-width: 767px) {
  .search--index .container {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .search--index .search__form {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .search--index .search__row--buttons {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .search--index .search__row--buttons {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

.search--index .search__form-group {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .search--index .search__form-group:nth-of-type(n) {
    clear: none;
  }

  .search--index .search__form-group:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .search--index .search__form-group {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .search--index .search__form-group:nth-of-type(n) {
    clear: none;
  }

  .search--index .search__form-group:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .search--index .search__form-group {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .search--index .search__form-group:nth-of-type(n) {
    clear: none;
  }

  .search--index .search__form-group:nth-of-type(4n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .search--index .search__form-label {
    margin-bottom: 12px;
  }
}

@media (min-width: 1200px) {
  .search--index .search__ranges {
    margin-top: 22px;
  }
}

.search--index .search__buttons {
  width: 28%;
  float: right;
  text-align: right;
  padding-right: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .search--index .search__buttons {
    width: 360px;
    float: none;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .search--index .search__buttons {
    width: 100%;
    text-align: left;
    padding-left: 15px;
  }
}

.search--listing .search__buttons {
  width: 38%;
}

@media (max-width: 767px) {
  .search--listing .search__buttons {
    width: 100%;
  }
}

.search--sidebar {
  margin: 0 0 30px;
}

@media (max-width: 767px) {
  .search--sidebar {
    display: none;
    margin-top: -1px;
  }

  .search--sidebar.open {
    display: block;
  }

  .search--sidebar.open .search__form {
    margin-top: 0;
  }
}

.search--sidebar .container {
  padding: 0;
}

.search--sidebar .search__title {
  font-size: 34px;
  text-align: left;
}

@media (max-width: 767px) {
  .search--sidebar .search__title {
    text-align: center;
  }
}

.search--sidebar .search__header {
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .search--sidebar .search__header {
    display: none;
  }
}

.search--sidebar .search__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  font-size: 15px;
  text-transform: none;
  margin: 4px 0 0;
  line-height: 1.1;
  text-align: left;
}

.search--sidebar .search__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .search--sidebar .search__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .search--sidebar .search__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .search--sidebar .search__headline {
    text-align: center;
  }
}

.search--sidebar .search__form {
  margin: 11px 0 0;
  padding: 25px 30px;
  background: #fff;
  border: 1px solid #dedede;
}

.search--sidebar .search__form:before,
.search--sidebar .search__form:after {
  content: " ";
  display: table;
}

.search--sidebar .search__form:after {
  clear: both;
}

.search--sidebar .search__form-label {
  margin-bottom: 3px;
}

.search--sidebar .search__form-group {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 21px;
}

@media (min-width: 768px) {
  .search--sidebar .search__form-group {
    float: left;
    width: 100%;
  }
}

.search--sidebar .search__advanced {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 20px;
  padding: 0;
}

@media (min-width: 768px) {
  .search--sidebar .search__advanced {
    float: left;
    width: 100%;
  }
}

.search--sidebar .search__buttons {
  margin: 6px 0;
  padding: 0 15px;
}

.search--banner-sidebar {
  margin: 0;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}

.banner--slider .search--banner-sidebar {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.banner--play .search--banner-sidebar {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

@media (max-width: 991px) {
  .search--banner-sidebar {
    margin: 0 0 35px 0;
    width: 100%;
  }
}

.search--banner-sidebar > .container {
  width: 100%;
  padding: 19px 20px 10px;
  position: relative;
  z-index: 15;
}

@media (max-width: 767px) {
  .search--banner-sidebar > .container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .search--banner-sidebar.opened > .container {
    display: block;
  }
}

.search--banner-sidebar .search__title {
  display: none;
}

.search--banner-sidebar .search__form {
  margin: 4px 20px 0;
}

.search--banner-sidebar .search__form-label {
  color: #fff;
  margin-bottom: 0;
}

.search--banner-sidebar .search__form-group {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px;
}

@media (min-width: 768px) {
  .search--banner-sidebar .search__form-group {
    float: left;
    width: 100%;
  }
}

.search--banner-sidebar .search__form-group--column {
  width: 50%;
  float: left;
}

.search--banner-sidebar .search__buttons {
  padding: 10px 5px 20px;
}

@media (max-width: 767px) {
  .search--banner-sidebar .search__buttons {
    padding: 10px 5px 0;
    margin-top: 0;
  }
}

.search--banner-sidebar .search__btn--action {
  width: 100%;
}

.search--map-sidebar {
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.9);
  width: 325px;
  position: relative;
}

@media (max-width: 767px) {
  .search--map-sidebar {
    margin: 0;
    width: 100%;
  }
}

.search--map-sidebar > .container {
  width: 100%;
  padding: 10px 20px;
  position: relative;
  z-index: 15;
}

@media (max-width: 767px) {
  .search--map-sidebar > .container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .search--map-sidebar.opened > .container {
    display: block;
  }
}

.search--map-sidebar .search__header {
  margin: 0;
}

.search--map-sidebar .search__title {
  font-size: 26px;
  margin: 4px 0 3px;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .search--map-sidebar .search__title {
    margin-left: 0;
    margin-top: 25px;
    text-align: center;
  }
}

.search--map-sidebar .search__form {
  margin: 8px 0 10px;
}

@media (max-width: 767px) {
  .search--map-sidebar .search__form {
    margin: 10px 15px;
  }
}

.search--map-sidebar .search__row {
  margin-left: -5px;
  margin-right: -5px;
}

.search--map-sidebar .search__form-label {
  margin-bottom: 0;
}

.search--map-sidebar .search__form-group {
  margin-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
}

.search--map-sidebar .search__form-group--column {
  width: 50%;
  float: left;
}

.search--map-sidebar .search__advanced {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 20px;
  padding: 0;
}

@media (min-width: 992px) {
  .search--map-sidebar .search__advanced {
    float: left;
    width: 100%;
  }
}

.search--map-sidebar .search__buttons {
  margin: 13px 0 0;
  padding: 0;
}

.search--map-sidebar .search__btn {
  width: 50%;
  margin: 0 6px;
}

.search--map-sidebar-fix {
  margin: 0;
  width: auto;
}

.search--map-sidebar-fix > .container {
  padding: 19px 20px 10px;
}

.search--map-sidebar-fix .search__form {
  margin: 4px 10px 0;
}

.search--map-sidebar-fix .search__buttons {
  margin: 0;
  padding: 10px 5px 20px;
}

.search--map-sidebar-fix .search__btn {
  width: 100%;
}

@media (min-width: 1200px) {
  .search--anim {
    -webkit-animation-name: wobble-reverse;
    animation-name: wobble-reverse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}

.search--map-bottom {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  width: 1170px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  bottom: 0;
}

@media (max-width: 767px) {
  .search--map-bottom {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.search--map-bottom > .container {
  width: 100%;
  padding: 0;
  height: auto !important;
}

@media (max-width: 767px) {
  .search--map-bottom.opened > .container {
    display: block;
  }
}

@media (max-width: 1199px) {
  .search--map-bottom {
    left: 0;
    right: 0;
    width: auto;
  }
}

@media (max-width: 767px) {
  .search--map-bottom {
    position: relative;
    padding: 0 23px;
  }
}

.search--map-bottom .search__header {
  margin: 0;
}

.search--map-bottom .search__title {
  font-size: 26px;
  margin: -42px 0 12px;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .search--map-bottom .search__title {
    margin-top: 25px;
  }
}

.search--map-bottom .search__title-btn {
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 4px 21px 0 25px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .search--map-bottom .search__title-btn {
    padding: 0;
  }
}

.search--map-bottom .search__title-btn:after {
  font-size: 0.4em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  vertical-align: middle;
  margin-left: 10px;
  font-weight: normal;
}

@media (max-width: 767px) {
  .search--map-bottom .search__title-btn:after {
    display: none;
  }
}

.search--map-bottom .search__form {
  margin: 0 32px;
}

@media (max-width: 1199px) {
  .search--map-bottom .search__form {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .search--map-bottom .search__form {
    margin-left: 0;
    margin-right: 0;
  }
}

.search--map-bottom .search__form-label {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .search--map-bottom .search__row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.search--map-bottom .search__buttons {
  margin-top: 13px;
  width: 28%;
  float: right;
  padding-right: 15px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .search--map-bottom .search__buttons {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .search--map-bottom .search__buttons {
    width: 100%;
    padding: 0 5px;
  }
}

.search--map-bottom .search__form-group {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .search--map-bottom .search__form-group {
    float: left;
    width: 25%;
  }
}

@media (min-width: 768px) {
  .search--map-bottom .search__form-group:nth-of-type(n) {
    clear: none;
  }

  .search--map-bottom .search__form-group:nth-of-type(4n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .search--map-bottom .search__form-group {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (max-width: 767px) and (min-width: 768px) {
  .search--map-bottom .search__form-group {
    float: left;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .search--map-bottom .search__form-group--column {
    width: 50%;
    float: left;
    padding-left: 6px;
    padding-right: 6px;
  }
}

.search--hide {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

@media (max-width: 767px) {
  .search--hide {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.search--hide .search__title-btn:after {
  content: "";
}

.search--map-dark {
  background: rgba(44, 62, 80, 0.85);
}

@media (max-width: 767px) {
  .search--map-dark {
    top: 0;
  }
}

.search--map-dark > .container {
  width: 100%;
}

@media (max-width: 767px) {
  .search--map-dark > .container {
    padding: 0 !important;
  }
}

.search--map-dark .search__title {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
}

.search--map-dark .search__form-label {
  color: #fff;
}

.search--map-dark .search__btn--reset {
  border-color: #fff;
  background: none;
  color: #fff;
}

.search--map-dark .search__btn--reset:before {
  color: #fff;
}

.search--map-dark .search__show {
  background: rgba(44, 62, 80, 0.85);
}

.search--map-dark .search__show:after {
  color: #fff;
}

.compact .search--map-dark {
  top: 0;
}

.compact .search--map-dark:before {
  display: none;
}

.search--article .search__form {
  padding-bottom: 7px;
}

.search--article .search__form-group {
  float: none;
  padding: 0;
}

.search--list {
  display: none;
}

@media (max-width: 767px) {
  .search--list {
    display: block;
    margin: 20px 0 30px;
  }

  .search--list .search__form {
    margin: 0;
    padding: 0;
  }

  .search--list .search__form-group {
    margin: 0;
  }
}

.search--error-status {
  margin: 0 auto 112px;
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .search--error-status {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .search--error-status {
    margin-bottom: 30px;
  }
}

.search--error-status .search__form {
  margin-top: 100px;
}

@media (max-width: 1199px) {
  .search--error-status .search__form {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .search--error-status .search__form {
    margin-top: 25px;
  }
}

.search--error-status .search__form-group {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 0 0 29%;
}

@media (min-width: 1200px) {
  .search--error-status .search__form-group {
    float: left;
    width: 41.66667%;
  }
}

@media (max-width: 1199px) {
  .search--error-status .search__form-group {
    margin-left: 0;
  }
}

.js-select-checkboxes-btn {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown--select ul {
  list-style: none;
  margin: 0;
  padding: 8px 15px;
}

/*------------------------------------------------------------------
 * Style for region select block
 * + Region Select / .region-select
 * ============================================================== */

.region-select {
  padding: 8px 6px;
}

.region-select label.in-label {
  margin-left: 10px;
  padding-left: 25px;
  font-size: 14px;
  color: #2c3e50;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
  padding-top: 0;
}

@media (max-width: 767px) {
  .region-select label.in-label {
    margin-left: -10px;
  }
}

.region-select label.in-label:before {
  top: 4px;
}

.region-select ul {
  padding: 0 !important;
}

.region-select__list {
  max-height: 250px;
  overflow: auto;
}

.region-select__buttons {
  padding: 10px 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.region-select__btn {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
  padding: 4px 10px;
  width: 47%;
  margin: 0;
}

@media (max-width: 767px) {
  .region-select__btn {
    padding: 3px 5px 3px 5px;
  }
}

.region-select__btn:hover,
.region-select__btn:focus,
.region-select__btn.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.region-select__btn:disabled,
.region-select__btn.disabled {
  cursor: not-allowed;
}

.region-select__btn.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.region-select__btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.region-select__btn.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.region-select__btn.has-error,
.region-select__btn.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.region-select__btn.has-error:after,
.region-select__btn.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.region-select__btn.has-success,
.region-select__btn.success {
  color: transparent !important;
}

.region-select__btn.has-success:after,
.region-select__btn.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .region-select__btn.button--loading:before {
  content: "";
}

.button--loading-refresh .region-select__btn.button--loading:before {
  content: "";
}

.button--loading-spinner .region-select__btn.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .region-select__btn.hover,
  .region-select__btn:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.region-select__btn:active,
.region-select__btn.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.region-select__btn:disabled,
.region-select__btn.disabled {
  color: #ccc;
  border-color: #efefef;
}

.region-select__btn--reset {
  padding-left: 8px;
}

.region-select__btn--reset:before {
  font-size: 1em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  font-size: 12px;
  margin: 0 5px 0 0;
}

/*------------------------------------------------------------------
 * Properties
 * + Properites / .properties
 *   -- Properites index / .properties--index
 *   -- Properites grid / .properties--grid
 *   -- Properites similar / .properties--similar
 *   -- Properites workers / .properties--workers
 *   -- Properites sidebar / .properties--sidebar
 *   -- Properites list / .properties--list
 *   -- Properites gallery / .properties--gallery
 * ============================================================== */

@media (max-width: 767px) {
  .properties {
    padding-bottom: 35px;
  }
}

.properties .tab-content:before,
.properties .tab-content:after {
  content: " ";
  display: table;
}

.properties .tab-content:after {
  clear: both;
}

.properties .tab-content .no-items {
  margin: 0;
}

.properties__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .properties__header {
    margin: 21px 0 25px;
  }
}

.properties__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .properties__title {
  font-size: 34px;
}

.footer .properties__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .properties__title {
    font-size: 26px;
  }

  .sidebar .properties__title {
    font-size: 26px;
  }
}

.properties__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}

.properties__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .properties__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .properties__headline {
  margin: 4px 0 0;
}

.properties__filter {
  padding: 0;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 12px;
}

@media (max-width: 767px) {
  .properties__filter {
    margin-bottom: 40px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.properties__filter li {
  display: inline-block;
  margin: 0 45px;
}

@media (max-width: 767px) {
  .properties__filter li {
    margin: 0;
  }
}

.properties__btn {
  padding: 3px 0;
  text-transform: uppercase;
  color: #a6a6a6;
}

.properties__btn:hover,
.properties__btn:focus,
.properties__btn:active {
  text-decoration: none;
}

@media (max-width: 767px) {
  .properties__btn {
    padding: 3px 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.active .properties__btn {
  border-bottom: 2px solid #2c3e50;
  color: #2c3e50;
}

.properties__list {
  margin-left: -15px;
  margin-right: -15px;
}

.properties__list:before,
.properties__list:after {
  content: " ";
  display: table;
}

.properties__list:after {
  clear: both;
}

.properties__tab-content {
  clear: both;
}

.properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  margin: 0 0 55px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (min-width: 768px) {
  .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties__item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties__item:nth-of-type(4n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties__item:hover {
    margin: 0;
  }

  .properties__item:hover .properties__info {
    background: #462324; /*2c3e5/*/
    border-color: #462324; /*2c3e5/*/
  }

  .properties__item:hover .properties__address {
    color: #fff;
    background-image: url("../img/bg-border-dotted-horizontal--hover.png");
  }

  .properties__item:hover .properties__more {
    color: #fff;
  }

  .properties__item:hover .item-photo__more {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .properties__item:hover .item-photo__hover {
    opacity: 1;
  }

  .properties__item:hover .item-photo img {
    width: 110%;
    max-width: 110%;
  }

  .properties__item:hover .item-photo--static img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .properties__item {
    margin-bottom: 30px;
  }

  .properties__item:last-child {
    margin-bottom: 0;
  }
}

.properties__btn-more {
  position: relative;
  border: 1px solid #d6d6d6;
  text-align: center;
  display: block;
  padding: 7px 20px;
  text-transform: uppercase;
  color: #2c3e50;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 600;
  width: 200px;
  margin: 0 auto;
}

.properties__btn-more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.properties__btn-more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.properties__btn-more.has-error,
.properties__btn-more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.properties__btn-more.has-error:after,
.properties__btn-more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.properties__btn-more.has-success,
.properties__btn-more.success {
  color: transparent !important;
}

.properties__btn-more.has-success:after,
.properties__btn-more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .properties__btn-more.button--loading:before {
  content: "";
}

.button--loading-refresh .properties__btn-more.button--loading:before {
  content: "";
}

.button--loading-spinner .properties__btn-more.button--loading:before {
  content: "";
}

.properties__btn-more.hover,
.properties__btn-more:hover {
  border-color: #f3bc65;
  color: #f3bc65;
  text-decoration: none;
}

.properties__btn-more:active,
.properties__btn-more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.properties__btn-more:focus,
.properties__btn-more.focus {
  text-decoration: none;
  outline: none;
}

.properties__btn-more:disabled,
.properties__btn-more.disabled {
  cursor: not-allowed;
  color: #ccc;
  border-color: #efefef;
}

.properties__btn-more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .properties__btn-more {
    margin-top: 30px;
  }
}

.properties__action-call {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  float: right;
  margin: 1px 0 30px 20px;
  width: 23%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .properties__action-call {
    padding: 3px 5px 3px 5px;
  }
}

.properties__action-call:hover,
.properties__action-call:focus,
.properties__action-call.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.properties__action-call:disabled,
.properties__action-call.disabled {
  cursor: not-allowed;
}

.properties__action-call.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.properties__action-call:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.properties__action-call.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.properties__action-call.has-error,
.properties__action-call.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.properties__action-call.has-error:after,
.properties__action-call.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.properties__action-call.has-success,
.properties__action-call.success {
  color: transparent !important;
}

.properties__action-call.has-success:after,
.properties__action-call.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .properties__action-call.button--loading:before {
  content: "";
}

.button--loading-refresh .properties__action-call.button--loading:before {
  content: "";
}

.button--loading-spinner .properties__action-call.button--loading:before {
  content: "";
}

.properties__action-call.hover,
.properties__action-call:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.properties__action-call:active,
.properties__action-call.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.properties__action-call:disabled,
.properties__action-call.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.properties__action-call:after {
  font-size: 0.8em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  position: relative;
  z-index: 1;
  margin: 1px 0 0 15px;
}

@media (max-width: 991px) {
  .properties__action-call {
    width: 26%;
  }
}

@media (max-width: 767px) {
  .properties__action-call {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 0;
  }
}

.properties__info {
  background: #f6f6f6; /*fff*/
  border-top: none;
  padding: 15px 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1199px) {
  .properties__info {
    padding: 10px;
  }
}

.properties__address {
  font-size: 17px;
  color: #2c3e50;
  display: block;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .properties__address {
    height: auto;
  }

  .properties__address:hover {
    color: #2c3e50;
  }
}

.properties__address--simple {
  margin-bottom: 15px;
  border-bottom: none;
}

.properties__address-street {
  font-weight: 600;
  display: block;
}

.properties__address-city {
  display: block;
}

.properties__param {
  padding: 0;
  margin: 0;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.properties__param-label {
  display: block;
  font-weight: normal;
  margin-right: 3px;
  padding-bottom: 3px;
  color: #a6a6a6;
}

.properties__param-value {
  display: block;
  color: #fff;
  font-weight: 600;
}

.properties__param-value:after {
  content: ",";
  margin-right: 5px;
}

.properties__param-value:last-child:after {
  content: "";
}

.properties__param-type {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.properties__param-column {
  margin-bottom: 0;
  float: left;
}

.properties__intro p {
  margin-bottom: 0;
}

.properties__price {
  color: #00ADEF; /*00bbaa FF6F20*/
  font-size: 20px;
  font-weight: 700;
  padding: 0;
}

.properties__price-period {
  font-weight: 400;
  margin-left: 5px;
  font-size: 15px;
}

@media (max-width: 992px) {
  .properties__price-period {
    display: inline;
    margin-left: 5px;
  }
}

.properties__more {
  float: right;
  color: #a6a6a6;
  text-transform: uppercase;
  font-size: 12px;
  padding: 9px 0 0 0;
}

.properties__more:hover {
  text-decoration: none;
}

.properties__ribon {
  position: absolute;
  top: 110px;
  right: -7px;
  background: #00ADEF; /*#00bbaa FF6F20*/
  color: #fff;
  text-transform: uppercase;
  padding: 3px 15px;
  top: 18px;
  right: 10px;
}

.properties__ribon:after {
  position: absolute;
  right: 0;
  bottom: -5px;
  border-top: 5px solid #0d6b8f; /*00887c*/
  width: 5px;
  content: " ";
  display: block;
  border-right: 5px solid #f6f6f6;
}

.properties__header:before,
.properties__header:after {
  content: " ";
  display: table;
}

.properties__header:after {
  clear: both;
}

.properties__right {
  float: right;
  margin-right: -5px;
}

.properties__state {
  font-size: 13px;
  text-transform: uppercase;
  color: #2c3e50;
  float: left;
  position: relative;
}

.properties__state:before {
  content: " ";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #00bbaa;
  margin: 0 5px 0 0;
  position: relative;
  top: -1px;
}

.properties__state--hidden:before {
  background: #c5cbd2;
}

.properties__state--highlight:before {
  background: #f3bc65;
}

.properties__state--hidden:before {
  background: #c5cbd2;
}

.properties__state--pending:before {
  background: #f3bc65;
}

.properties__state--pending:after {
  content: " ";
  display: inline-block;
  width: 6px;
  height: 3px;
  border-radius: 6px 6px 0 0;
  background: #c5cbd2;
  position: absolute;
  left: -1px;
  top: 76px;
  -webkit-transform: rotateZ(-50deg);
  transform: rotateZ(-50deg);
}

.properties__link {
  font-size: 13px;
  color: #00bbaa;
  border: none;
  background: none;
  text-transform: uppercase;
  vertical-align: top;
}

.properties__pay {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  margin-left: 0;
  margin-bottom: 7px;
}

@media (max-width: 767px) {
  .properties__pay {
    padding: 3px 5px 3px 5px;
  }
}

.properties__pay:hover,
.properties__pay:focus,
.properties__pay.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.properties__pay:disabled,
.properties__pay.disabled {
  cursor: not-allowed;
}

.properties__pay.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.properties__pay:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.properties__pay.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.properties__pay.has-error,
.properties__pay.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.properties__pay.has-error:after,
.properties__pay.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.properties__pay.has-success,
.properties__pay.success {
  color: transparent !important;
}

.properties__pay.has-success:after,
.properties__pay.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .properties__pay.button--loading:before {
  content: "";
}

.button--loading-refresh .properties__pay.button--loading:before {
  content: "";
}

.button--loading-spinner .properties__pay.button--loading:before {
  content: "";
}

.properties__pay.hover,
.properties__pay:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.properties__pay:active,
.properties__pay.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.properties__pay:disabled,
.properties__pay.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.properties__show {
  display: none;
}

@media (max-width: 767px) {
  .properties__show {
    font-size: 17px;
    color: #2c3e50;
    text-align: center;
    border: 1px solid #d6d6d6;
    padding: 15px 0;
    background: #fff;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    outline: none;
    margin-top: 40px;
    background: #e4e4e4;
    display: block;
    margin-top: 0;
  }

  .properties__show:after {
    font-size: 14px;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    border: 1px solid #2c3e50;
    margin-left: 10px;
    width: 26px;
    height: 26px;
    vertical-align: top;
    text-align: center;
    line-height: 26px;
    padding: 0 0 0 2px;
  }

  .properties__show.active:after {
    content: "";
  }

  .opened .properties__show {
    display: none;
  }
}

.properties--index {
  padding-bottom: 50px;
  padding-top: 10px;
  background: #f6f6f6;
}

@media (max-width: 767px) {
  .properties--index {
    padding-bottom: 30px;
  }
}

.properties--index .properties__title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.properties--index .properties__headline {
  text-align: center;
}

.properties--index .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .properties--index .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .properties--index .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--index .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--index .properties__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .properties--index .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--index .properties__item:nth-of-type(3n+1) {
    clear: both;
  }
}

.properties--index .properties__address {
  background: url("../img/bg-border-dotted-horizontal.png") 0 100% repeat-x;
}

@media (min-width: 1200px) {
  .properties--index .properties__address:hover {
    color: #fff;
    text-decoration: none;
    background-image: url("../img/bg-border-dotted-horizontal--hover.png");
  }
}

.properties--grid {
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 0;
  margin-top: 50px;
}

.properties--grid:before,
.properties--grid:after {
  content: " ";
  display: table;
}

.properties--grid:after {
  clear: both;
}

@media (max-width: 767px) {
  .properties--grid {
    margin-top: 30px;
  }
}

.properties--grid:before,
.properties--grid:after {
  content: " ";
  display: table;
}

.properties--grid:after {
  clear: both;
}

.properties--grid .properties__list {
  margin-left: 0;
  margin-right: 0;
}

.properties--grid .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--grid .properties__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--grid .properties__item:nth-of-type(3n+1) {
    clear: both;
  }
}

.listing-grid-small .properties--grid .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .listing-grid-small .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .listing-grid-small .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-small .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .listing-grid-small .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .listing-grid-small .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-small .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .listing-grid-small .properties--grid .properties__item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .listing-grid-small .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-small .properties--grid .properties__item:nth-of-type(4n+1) {
    clear: both;
  }
}

.listing-grid-medium .properties--grid .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .listing-grid-medium .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .listing-grid-medium .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-medium .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .listing-grid-medium .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .listing-grid-medium .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-medium .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .listing-grid-medium .properties--grid .properties__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .listing-grid-medium .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-medium .properties--grid .properties__item:nth-of-type(3n+1) {
    clear: both;
  }
}

.listing-grid-big .properties--grid .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .listing-grid-big .properties--grid .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .listing-grid-big .properties--grid .properties__item:nth-of-type(n) {
    clear: none;
  }

  .listing-grid-big .properties--grid .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

.properties--grid .properties__item:before,
.properties--grid .properties__item:after {
  content: " ";
  display: table;
}

.properties--grid .properties__item:after {
  clear: both;
}

.properties--grid .properties__header {
  margin: 0;
}

.properties--grid .properties__address {
  background: url("../img/bg-border-dotted-horizontal.png") 0 100% repeat-x;
}

@media (min-width: 1200px) {
  .properties--grid .properties__address:hover {
    color: #fff;
    text-decoration: none;
    background-image: url("../img/bg-border-dotted-horizontal--hover.png");
  }
}

.properties--similar {
  border-top: 1px solid #d6d6d6;
  clear: both;
}

.properties--similar:before,
.properties--similar:after {
  content: " ";
  display: table;
}

.properties--similar:after {
  clear: both;
}

@media (max-width: 767px) {
  .properties--similar {
    margin-top: 0;
    border-top: none;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

.properties--similar.opened .properties__header {
  display: block;
}

.properties--similar.opened .properties__list {
  display: block;
}

.properties--similar .properties__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .properties--similar .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--similar .properties__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .properties--similar .properties__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 768px) {
  .properties--similar .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--similar .properties__item:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .properties--similar .properties__header {
    display: none;
  }
}

@media (max-width: 767px) {
  .properties--similar .properties__list {
    display: none;
  }
}

.properties--similar .properties__address {
  background: url("../img/bg-border-dotted-horizontal.png") 0 100% repeat-x;
}

@media (min-width: 1200px) {
  .properties--similar .properties__address:hover {
    color: #fff;
    text-decoration: none;
    background-image: url("../img/bg-border-dotted-horizontal--hover.png");
  }
}

.properties--workers {
  border-top: 1px solid #d6d6d6;
  margin-top: 30px;
  padding-bottom: 0;
}

.properties--workers .properties__title {
  text-align: left;
  font-size: 24px;
  margin: 30px 0;
}

@media (max-width: 767px) {
  .properties--workers .properties__title {
    text-align: center;
  }
}

.properties--workers .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .properties--workers .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .properties--workers .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--workers .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .properties--workers .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .properties--workers .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--workers .properties__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--workers .properties__item {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .properties--workers .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--workers .properties__item:nth-of-type(3n+1) {
    clear: both;
  }
}

.properties--workers .properties__address {
  background: url("../img/bg-border-dotted-horizontal.png") 0 100% repeat-x;
}

@media (min-width: 1200px) {
  .properties--workers .properties__address:hover {
    color: #fff;
    text-decoration: none;
    background-image: url("../img/bg-border-dotted-horizontal--hover.png");
  }
}

.properties--sidebar {
  background: none;
  margin: 0 0 30px;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .properties--sidebar {
    margin: 0;
  }
}

.properties--sidebar.opened .properties__header {
  display: block;
}

.properties--sidebar.opened .properties__list {
  display: block;
}

.properties--sidebar .properties__title {
  color: #2c3e50;
  text-align: left;
}

@media (max-width: 767px) {
  .properties--sidebar .properties__title {
    text-align: center;
  }
}

.properties--sidebar .properties__header {
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .properties--sidebar .properties__header {
    display: none;
  }
}

.properties--sidebar .properties__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: none;
  color: #2c3e50;
  text-align: left;
  margin: 4px 0 0;
  line-height: 1.1;
  min-height: 32px;
}

.properties--sidebar .properties__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .properties--sidebar .properties__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .properties--sidebar .properties__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .properties--sidebar .properties__headline {
    text-align: center;
  }
}

.properties--sidebar .properties__list {
  margin: 0;
  background: #e4e4e4;
  border: 1px solid #d6d6d6;
  padding: 15px 15px 15px ; /*30px 30px 20px*/
  margin-top: 12px;
}

@media (max-width: 767px) {
  .properties--sidebar .properties__list {
    display: none;
  }
}

.properties--sidebar .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #222;
  padding: 0;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .properties--sidebar .properties__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .properties--sidebar .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--sidebar .properties__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .properties--sidebar .properties__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .properties--sidebar .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--sidebar .properties__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--sidebar .properties__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .properties--sidebar .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--sidebar .properties__item:nth-of-type(1n+1) {
    clear: both;
  }
}

.properties--sidebar .properties__item:before,
.properties--sidebar .properties__item:after {
  content: " ";
  display: table;
}

.properties--sidebar .properties__item:after {
  clear: both;
}

.properties--sidebar .properties__item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.properties--sidebar .properties__price {
  padding: 0 0 5px;
  font-size: 17px;
  text-align: left;
  color: #00adef;
  display: block;
}

.properties--sidebar .properties__thumb {
  position: relative;
  float: left;
  width: 100%; /*58.33333%*/
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}

.properties--sidebar .properties__thumb img {
  display: block;
}

.properties--sidebar .properties__info {
  border: none;
  padding: 0;
  background: none !important;
}

.properties--sidebar .properties__address {
  clear: both;
  color: #2c3e50 !important;
  padding: 15px 0 0;
  height: auto;
  background: none !important;
}

.properties--list {
  padding-bottom: 0;
}

.properties--list:before,
.properties--list:after {
  content: " ";
  display: table;
}

.properties--list:after {
  clear: both;
}

.properties--list .properties__list {
  margin: 0;
}

.properties--list .properties__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 1px solid #808080;
  padding: 50px 0;
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .properties--list .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--list .properties__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--list .properties__item {
    float: left;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .properties--list .properties__item:nth-of-type(n) {
    clear: none;
  }

  .properties--list .properties__item:nth-of-type(1n+1) {
    clear: both;
  }
}

.properties--list .properties__item:before,
.properties--list .properties__item:after {
  content: " ";
  display: table;
}

.properties--list .properties__item:after {
  clear: both;
}

.properties--list .properties__item:first-child {
  padding-top: 0;
}

.properties--list .properties__item:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .properties--list .properties__item:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 1199px) {
  .properties--list .properties__item {
    padding: 30px 0 20px;
  }
}

.properties--list .properties__thumb {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 15px 0 0;
  position: relative;
}

@media (min-width: 992px) {
  .properties--list .properties__thumb {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .properties--list .properties__thumb:nth-of-type(n) {
    clear: none;
  }

  .properties--list .properties__thumb:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--list .properties__thumb {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .properties--list .properties__thumb:nth-of-type(n) {
    clear: none;
  }

  .properties--list .properties__thumb:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (max-width: 991px) {
  .properties--list .properties__thumb {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .properties--list .properties__ribon {
    right: -5px;
  }
}

.properties--list .properties__photo {
  margin: 0;
}

.properties--list .properties__info {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
  padding: 0;
  background: none !important;
  position: relative;
}

@media (min-width: 992px) {
  .properties--list .properties__info {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .properties--list .properties__info:nth-of-type(n) {
    clear: none;
  }

  .properties--list .properties__info:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .properties--list .properties__info {
    float: left;
    width: 66.66667%;
  }
}

@media (min-width: 1200px) {
  .properties--list .properties__info:nth-of-type(n) {
    clear: none;
  }

  .properties--list .properties__info:nth-of-type(1.5n+1) {
    clear: both;
  }
}

.properties--list .properties__intro {
  background: url("../img/bg-border-dotted-horizontal.png") 0 0 repeat-x;
  padding-top: 5px;
}

.properties--list .properties__price {
  float: right;
  margin-top: -10px;
}

@media (max-width: 991px) {
  .properties--list .properties__price {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .properties--list .properties__price--top {
    display: none;
  }
}

@media (min-width: 992px) {
  .properties--list .properties__price--bottom {
    display: none;
    top: 0;
  }
}

@media (max-width: 991px) {
  .properties--list .properties__price--bottom {
    float: left;
  }
}

@media (max-width: 1199px) {
  .properties--list .properties__price-period {
    margin-left: 0;
    display: block;
  }
}

@media (max-width: 1199px) and (max-width: 991px) {
  .properties--list .properties__price-period {
    display: inline-block;
    margin-left: 5px;
  }
}

.properties--list .properties__address {
  margin: 0;
  padding: 0 10px 0 0;
  max-height: 81px;
  overflow: hidden;
  height: auto;
  position: relative;
  top: -6px;
  color: #2c3e50 !important;
  background: none !important;
}

@media (max-width: 1199px) {
  .properties--list .properties__address {
    max-height: none;
  }
}

@media (max-width: 991px) {
  .properties--list .properties__address {
    clear: both;
    padding-top: 10px;
  }
}

.properties--list .properties__more {
  display: none;
}

.properties--gallery {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 50px;
}

.properties--gallery:before,
.properties--gallery:after {
  content: " ";
  display: table;
}

.properties--gallery:after {
  clear: both;
}

@media (max-width: 767px) {
  .properties--gallery {
    margin-top: 30px;
    padding-bottom: 0;
  }
}

.properties--gallery .properties__item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .properties--gallery .properties__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .properties--gallery .properties__item {
    float: left;
    width: 25%;
  }
}

.properties--gallery .properties__item:before,
.properties--gallery .properties__item:after {
  content: " ";
  display: table;
}

.properties--gallery .properties__item:after {
  clear: both;
}

.properties--gallery .properties__address {
  background: url("../img/bg-border-dotted-horizontal.png") 0 100% repeat-x;
}

@media (min-width: 1200px) {
  .properties--gallery .properties__address:hover {
    color: #fff;
    text-decoration: none;
    background-image: url("../img/bg-border-dotted-horizontal--hover.png");
  }
}

/*------------------------------------------------------------------
 * Feature
 * + Feature / .feature
 *   -- Feature listing / .feature--listing
 * ============================================================== */

.feature {
  position: relative;
  background: #fff !important;
}

@media (min-width: 1200px) {
  .feature {
    overflow: hidden;
  }
}

.feature__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .feature__header {
    margin: 21px 0 25px;
  }
}

.feature__title {
  font-size: 46px;
  color: #00ADEF; /*2c3e50*/
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #00ADEF; /*00bbaa*/
  text-align: left;
}

.sidebar .feature__title {
  font-size: 34px;
}

.footer .feature__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .feature__title {
    font-size: 26px;
  }

  .sidebar .feature__title {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .feature__title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .feature__header {
    padding: 0 15px;
  }
}

.feature__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  color: #606e7c;
  text-align: left;
}

.feature__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .feature__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .feature__headline {
  margin: 4px 0 0;
}

@media (max-width: 1199px) {
  .feature__headline {
    text-align: center;
  }
}

.feature__picture {
  background: url("../../images/kocka.jpg") 100% 0;/*../img/bg-feature.jpg*/
  background-repeat: no-repeat !important;
  background-size: cover;
  width: 44%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media (max-width: 1199px) {
  .feature__picture {
    display: none;
  }
}

.feature__content {
  padding: 0 0 0 52px;
}

@media (min-width: 1200px) {
  .feature__content {
    margin-left: 41.66667%;
  }
}

@media (max-width: 1199px) {
  .feature__content {
    margin-right: 0;
    padding-left: 0;
  }
}

.feature__list {
  margin-left: -15px;
  margin-right: -15px;
}

.feature__list:before,
.feature__list:after {
  content: " ";
  display: table;
}

.feature__list:after {
  clear: both;
}

.feature__list:before,
.feature__list:after {
  content: " ";
  display: table;
}

.feature__list:after {
  clear: both;
}

@media (max-width: 767px) {
  .feature__list {
    margin: 28px 0 0;
  }
}

.feature__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}

@media (min-width: 480px) {
  .feature__item:nth-of-type(n) {
    clear: none;
  }

  .feature__item:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .feature__item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .feature__item:nth-of-type(n) {
    clear: none;
  }

  .feature__item:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (max-width: 1199px) {
  .feature__item {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .feature__item {
    margin-bottom: 10px;
    padding-right: 0;
    text-align: center;
  }
}

.feature__item-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00ADEF; /*aab300*/
  margin-top: 10px;
}

@media (max-width: 767px) {
  .feature__item-title {
    margin: 10px 0;
    font-size: 18px;
  }
}

.feature__text {
  margin-top: 17px;
  color: #606e7c;
}

@media (max-width: 767px) {
  .feature__text {
    margin-top: 5px;
  }
}

.feature__icon {
  margin-top: 13px;
  fill: #606e7c;
  width: 55px;
  height: 55px;
}

.feature__icon--good-sales {
  width: 54px;
}

/*------------------------------------------------------------------
 * Gosubmit
 * + Gosubmit / .gosubmit
 * ============================================================== */

.gosubmit {
  background: #fff !important;
  border-top: 1px solid #d6d6d6;
}

.gosubmit .container {
  background: url("../img/bg-gosubmit.png") no-repeat #fff !important;/*23 px -2px #fff*/
  min-height: 200px;
}

@media (max-width: 767px) {
  .gosubmit .container {
    background: url("../img/bg-gosubmit_mala.png") no-repeat 1px -2px #fff !important;
    min-height: 197px;
    background-size: cover;
  }
}

.gosubmit .container2 {
  background: url("../img/bg-gosubmit.png") no-repeat #fff !important;/*23 px -2px #fff*/
  min-height: 200px;
}

@media (max-width: 767px) {
  .gosubmit .container2 {
    background: url("../img/bg-gosubmit-mob.jpg") no-repeat 23px -2px #fff !important;
    min-height: 197px;
    background-size: cover;
  }
}

.gosubmit__title {
  font-size: 20px;
  font-weight: 600;
  width: 270px;
  float: left;
  margin: 42px 0 0 495px;
}

.listing--index .gosubmit__title {
  margin-left: 320px;
}

@media (max-width: 1199px) {
  .gosubmit__title {
    font-size: 17px;
    width: 270px;
    margin: 17px auto;
    float: none;
  }
}

@media (max-width: 767px) {
  .listing--index .gosubmit__title {
    margin-left: 0;
  }
}

.gosubmit__title__row--second {
  text-align: center;
}

.gosubmit__title__row--third {
  text-align: right;
}

.gosubmit__title__option {
  font-size: 60px;
  font-weight: 200;
  line-height: 1;
}

@media (max-width: 1199px) {
  .gosubmit__title__option {
    font-size: 46px;
  }
}

.gosubmit__btn {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  float: left;
  width: 175px;
  margin: 80px 0 0 30px;
}

@media (max-width: 767px) {
  .gosubmit__btn {
    padding: 3px 5px 3px 5px;
  }
}

.gosubmit__btn:hover,
.gosubmit__btn:focus,
.gosubmit__btn.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.gosubmit__btn:disabled,
.gosubmit__btn.disabled {
  cursor: not-allowed;
}

.gosubmit__btn.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.gosubmit__btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.gosubmit__btn.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.gosubmit__btn.has-error,
.gosubmit__btn.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.gosubmit__btn.has-error:after,
.gosubmit__btn.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.gosubmit__btn.has-success,
.gosubmit__btn.success {
  color: transparent !important;
}

.gosubmit__btn.has-success:after,
.gosubmit__btn.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .gosubmit__btn.button--loading:before {
  content: "";
}

.button--loading-refresh .gosubmit__btn.button--loading:before {
  content: "";
}

.button--loading-spinner .gosubmit__btn.button--loading:before {
  content: "";
}

.gosubmit__btn.hover,
.gosubmit__btn:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.gosubmit__btn:active,
.gosubmit__btn.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.gosubmit__btn:disabled,
.gosubmit__btn.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

@media (max-width: 1199px) {
  .gosubmit__btn {
    margin: 0 auto;
    float: none;
    display: block;
  }
}

/*------------------------------------------------------------------
 * Partners
 * + Partners / .partners
 * ============================================================== */

.partners {
  background: #f6f6f6;
  border-top: 1px solid #d6d6d6;
}

.partners:before,
.partners:after {
  content: " ";
  display: table;
}

.partners:after {
  clear: both;
}

.partners__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .partners__header {
    margin: 21px 0 25px;
  }
}

.partners__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .partners__title {
  font-size: 34px;
}

.footer .partners__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .partners__title {
    font-size: 26px;
  }

  .sidebar .partners__title {
    font-size: 26px;
  }
}

.partners__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  width: 780px;
  margin: 30px auto 0;
}

.partners__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .partners__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .partners__headline {
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .partners__headline {
    width: auto;
  }
}

.partners__list {
  position: relative;
  padding: 0 50px;
  margin: 40px 0;
}

.partners__list:before,
.partners__list:after {
  content: " ";
  display: table;
}

.partners__list:after {
  clear: both;
}

@media (max-width: 767px) {
  .partners__list {
    margin: 20px 0;
  }
}

.partners__item {
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.partners__item:before,
.partners__item:after {
  content: " ";
  display: table;
}

.partners__item:after {
  clear: both;
}

.partners__item img {
  margin: 0 auto;
}

.partners__item.slick-active {
  opacity: 1;
}

@media (min-width: 768px) {
  .partners__item:nth-child(2n) .request__photo {
    float: right !important;
  }
}

@media (max-width: 767px) {
  .partners__item {
    width: 160px;
  }

  .partners__item img {
    max-width: 100%;
  }
}

.partners__item--last {
  border-bottom: 0;
}

.partners__slider {
  overflow: hidden;
  padding: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .partners__controls {
    margin: 0;
  }
}

.partners__arrow {
  padding: 8px 12px;
  margin: -29px 0 0 10px;
  color: #00adef;
  line-height: 0.5;
  position: absolute;
  top: 50%;
  background: none;
  border: none;
  outline: none;
}

.partners__arrow--prev {
  left: -14px;
}

.partners__arrow--prev:after {
  font-size: 5em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

.partners__arrow--next {
  right: -14px;
}

.partners__arrow--next:after {
  font-size: 5em;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

/*------------------------------------------------------------------
 * Subscribe
 * + Subscribe / .subscribe
 * ============================================================== */

.subscribe {
  background: #2d2d2d;
  padding: 30px 15px;
}

@media (max-width: 1199px) {
  .subscribe {
    padding-left: 0;
    padding-right: 0;
  }
}

.subscribe__form {
  width: 765px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .subscribe__form {
    width: auto;
  }
}

.subscribe__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-size: 26px;
  vertical-align: top;
  margin: 4px 0 0;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
}

.sidebar .subscribe__title {
  font-size: 34px;
}

.footer .subscribe__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .subscribe__title {
    font-size: 26px;
  }

  .sidebar .subscribe__title {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .subscribe__title {
    margin-top: -5px;
    margin-bottom: 25px;
    display: block;
  }
}

.subscribe__group {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}

@media (max-width: 1199px) {
  .subscribe__group {
    width: 100%;
    margin: 0;
  }
}

.subscribe .help-block {
  text-align: right;
  margin-top: -15px;
}

@media (max-width: 767px) {
  .subscribe .help-block {
    margin-top: 0;
  }
}

.subscribe .form-control-feedback {
  top: 15px;
}

.subscribe__field {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  color: #fff;
  display: inline-block;
  width: 370px;
  background: #2d2d2d;
}

.subscribe__field:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.subscribe__field::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.subscribe__field:-ms-input-placeholder {
  color: #2c3e50;
}

.subscribe__field::-webkit-input-placeholder {
  color: #2c3e50;
}

.subscribe__field[disabled],
.subscribe__field[readonly],
fieldset[disabled] .subscribe__field {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.subscribe__field.parsley-error {
  border: 1px solid #e95b35;
}

.subscribe__field.parsley-success {
  border: 1px solid #00bbaa;
}

.subscribe__field::-moz-placeholder {
  color: #bebebe;
  opacity: 1;
}

.subscribe__field:-ms-input-placeholder {
  color: #bebebe;
}

.subscribe__field::-webkit-input-placeholder {
  color: #bebebe;
}

.subscribe__field:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

@media (max-width: 1199px) {
  .subscribe__field {
    float: none;
    width: 100%;
  }
}

.subscribe__submit {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  width: 170px;
  vertical-align: top;
}

@media (max-width: 767px) {
  .subscribe__submit {
    padding: 3px 5px 3px 5px;
  }
}

.subscribe__submit:hover,
.subscribe__submit:focus,
.subscribe__submit.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.subscribe__submit:disabled,
.subscribe__submit.disabled {
  cursor: not-allowed;
}

.subscribe__submit.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.subscribe__submit:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.subscribe__submit.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.subscribe__submit.has-error,
.subscribe__submit.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.subscribe__submit.has-error:after,
.subscribe__submit.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.subscribe__submit.has-success,
.subscribe__submit.success {
  color: transparent !important;
}

.subscribe__submit.has-success:after,
.subscribe__submit.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .subscribe__submit.button--loading:before {
  content: "";
}

.button--loading-refresh .subscribe__submit.button--loading:before {
  content: "";
}

.button--loading-spinner .subscribe__submit.button--loading:before {
  content: "";
}

.subscribe__submit.hover,
.subscribe__submit:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.subscribe__submit:active,
.subscribe__submit.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.subscribe__submit:disabled,
.subscribe__submit.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

@media (max-width: 1199px) {
  .subscribe__submit {
    margin: 30px auto 0;
    display: block;
  }
}

/*------------------------------------------------------------------
 * Pricing
 * + Pricing / .pricing
 * ============================================================== */

.pricing {
  margin-top: 25px;
}

.pricing__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .pricing__title {
    font-size: 26px;
  }
}

.pricing__row {
  margin-left: -15px;
  margin-right: -15px;
}

.pricing__row:before,
.pricing__row:after {
  content: " ";
  display: table;
}

.pricing__row:after {
  clear: both;
}

@media (min-width: 1200px) {
  .pricing__row {
    min-height: 600px;
  }
}

.pricing__col3 {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .pricing__col3:nth-of-type(n) {
    clear: none;
  }

  .pricing__col3:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .pricing__col3 {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .pricing__col3:nth-of-type(n) {
    clear: none;
  }

  .pricing__col3:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .pricing__col3 {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 992px) {
  .pricing__col3:nth-of-type(n) {
    clear: none;
  }

  .pricing__col3:nth-of-type(3n+1) {
    clear: both;
  }
}

.pricing__col4 {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) {
  .pricing__col4:nth-of-type(n) {
    clear: none;
  }

  .pricing__col4:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .pricing__col4 {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .pricing__col4:nth-of-type(n) {
    clear: none;
  }

  .pricing__col4:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .pricing__col4 {
    float: left;
    width: 25%;
  }
}

@media (min-width: 992px) {
  .pricing__col4:nth-of-type(n) {
    clear: none;
  }

  .pricing__col4:nth-of-type(4n+1) {
    clear: both;
  }
}

.pricing__col4 .pricing__feature {
  margin: 0 15%;
}

.pricing__col5 {
  position: relative;
  float: left;
  width: 20%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}

@media (min-width: 480px) {
  .pricing__col5:nth-of-type(n) {
    clear: none;
  }

  .pricing__col5:nth-of-type(5n+1) {
    clear: both;
  }
}

.pricing__item {
  border: 3px solid #dedede;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  margin-bottom: 35px;
}

@media (min-width: 1200px) {
  .pricing__item:hover {
    border: 5px solid #00bbaa;
    -webkit-transform: scaleY(1) translateY(-20px);
    -ms-transform: scaleY(1) translateY(-20px);
    transform: scaleY(1) translateY(-20px);
  }

  .pricing__item:hover .pricing__currency {
    font-size: 32px;
    top: -33px;
  }

  .pricing__item:hover .pricing__period {
    font-size: 22px;
  }

  .pricing__item:hover .pricing__summa {
    font-size: 92px;
  }
}

.pricing__item--col {
  border: 0;
}

@media (min-width: 1200px) {
  .pricing__item--col:hover {
    border: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .pricing__item--col:hover .pricing__currency {
    font-size: 24px;
    top: -22px;
  }

  .pricing__item--col:hover .pricing__period {
    font-size: 16px;
  }

  .pricing__item--col:hover .pricing__summa {
    font-size: 60px;
  }
}

.pricing__item--col .pricing__total {
  height: 104px;
}

.pricing__item .pricing__feature {
  margin: 0 15%;
}

.pricing__table {
  border: 3px solid #dedede;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  margin: 0 15px;
}

@media (max-width: 991px) {
  .pricing__table {
    overflow-x: auto;
  }
}

.pricing__table:before,
.pricing__table:after {
  content: " ";
  display: table;
}

.pricing__table:after {
  clear: both;
}

.pricing__table:hover {
  border: 3px solid #00bbaa;
}

.pricing__table-wrap {
  min-width: 940px;
}

.pricing__type {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 14px 0;
}

.pricing__type--head {
  padding: 25px 0;
}

.pricing__type--heading {
  font-weight: 400;
  padding: 25px 0;
}

.pricing__total {
  background: #00bbaa;
  padding: 1px 0 7px;
  text-align: center;
  vertical-align: top;
  font-weight: 600;
  margin-bottom: 33px;
  margin-left: -3px;
  margin-right: -3px;
  position: relative;
  color: #2c3e50;
}

.pricing__currency {
  font-size: 24px;
  position: relative;
  top: -22px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.pricing__summa {
  font-size: 60px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.pricing__period {
  font-size: 16px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.pricing__favorite {
  position: absolute;
  top: -30px;
  right: 5%;
  background: #f3bc65;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 60px;
  width: 60px;
  display: block;
  height: 60px;
  line-height: 1;
  padding: 19px 0;
}

.pricing__list {
  margin-bottom: 0;
}

.pricing__feature {
  margin: 0 26%;
  border-bottom: 1px solid #dedede;
  text-align: center;
  padding: 10px 0;
}

.pricing__feature:last-child {
  border-bottom: none;
}

.pricing__feature strong {
  margin-right: 5px;
}

.pricing__feature .fa-check {
  color: #00bbaa;
}

.pricing__feature--heading {
  text-align: left;
}

.pricing__actions {
  text-align: center;
  padding: 22px 0 51px;
}

.pricing__button {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
}

@media (max-width: 767px) {
  .pricing__button {
    padding: 3px 5px 3px 5px;
  }
}

.pricing__button:hover,
.pricing__button:focus,
.pricing__button.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.pricing__button:disabled,
.pricing__button.disabled {
  cursor: not-allowed;
}

.pricing__button.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.pricing__button:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.pricing__button.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.pricing__button.has-error,
.pricing__button.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.pricing__button.has-error:after,
.pricing__button.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.pricing__button.has-success,
.pricing__button.success {
  color: transparent !important;
}

.pricing__button.has-success:after,
.pricing__button.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .pricing__button.button--loading:before {
  content: "";
}

.button--loading-refresh .pricing__button.button--loading:before {
  content: "";
}

.button--loading-spinner .pricing__button.button--loading:before {
  content: "";
}

.pricing__button.hover,
.pricing__button:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.pricing__button:active,
.pricing__button.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.pricing__button:disabled,
.pricing__button.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

/*------------------------------------------------------------------
 * Property Details
 * + Property Details / .property
 * ============================================================== */

.property {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 49px 0 30px;
}

@media (min-width: 480px) {
  .property:nth-of-type(n) {
    clear: none;
  }

  .property:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .property {
    float: left;
    width: 66.66667%;
  }
}

@media (min-width: 768px) {
  .property:nth-of-type(n) {
    clear: none;
  }

  .property:nth-of-type(1.5n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .property {
    float: left;
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .property:nth-of-type(n) {
    clear: none;
  }

  .property:nth-of-type(1.33333n+1) {
    clear: both;
  }
}

.property:before,
.property:after {
  content: " ";
  display: table;
}

.property:after {
  clear: both;
}

@media (max-width: 767px) {
  .property {
    float: none;
    margin-top: 21px;
    margin-bottom: 0;
  }
}

.property__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 33px;
  line-height: 1.3;
  min-height: 88px;
  border-bottom: 1px solid #d6d6d6;
  text-transform: none;
  text-align: left;
}

.sidebar .property__title {
  font-size: 34px;
}

.footer .property__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .property__title {
    font-size: 26px;
  }

  .sidebar .property__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .property__title {
    margin-bottom: 23px;
    padding-bottom: 16px;
    min-height: initial;
  }
}

.property__city {
  display: block;
  font-weight: 400;
}

.property__price {
  background: #fff;
  border: 1px solid #d6d6d6;
  color: #2c3e50;
  float: left;
  margin: 13px 0 0 0;
  padding: 3px 12px 11px;
  line-height: 1;
}

.property__price strong {
  font-size: 46px;
  color: #aab300;/*00bbaa*/
  display: block;
  font-weight: 600;
  margin: 0 0 8px;
}

@media (max-width: 767px) {
  .property__price strong {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .property__price {
    margin-top: 0;
    float: left;
    padding: 6px 15px;
    text-align: center;
  }

  .property__price span {
    display: none;
  }
}

.property__info {
  margin: 20px 0;
}

.property__id {
  font-size: 20px;
  color: #2c3e50;
}

@media (max-width: 767px) {
  .property__id {
    font-size: 15px;
  }
}

.property__slider {
  position: relative;
}

.property__ribon {
  position: absolute;
  top: 110px;
  right: -7px;
  background: #00ADEF;/*00bbaa*/
  color: #fff;
  text-transform: uppercase;
  padding: 3px 15px;
  padding: 10px 15px;
  right: -5px;
  z-index: 20;
}

.property__ribon:after {
  position: absolute;
  right: 0;
  bottom: -5px;
  border-top: 5px solid #0d6b8f;/*00887c*/
  width: 5px;
  content: " ";
  display: block;
  border-right: 5px solid #f6f6f6;
}

@media (max-width: 1199px) {
  .property__ribon {
    top: 50px;
  }
}

@media (max-width: 767px) {
  .property__ribon {
    top: 15px;
    padding: 4px 10px;
  }
}

.property__type {
  font-size: 20px;
  margin: 0;
  font-weight: normal;
}

.property__type span {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .property__type {
    font-size: 15px;
  }
}

.property__subtitle {
  font-size: 20px;
  margin: 40px 0 15px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .property__subtitle {
    margin: 15px 0;
  }
}

.property__description {
  line-height: 1.4;
}

@media (max-width: 767px) {
  .property__description {
    margin-top: 0;
  }
}

.property__description:before,
.property__description:after {
  content: " ";
  display: table;
}

.property__description:after {
  clear: both;
}

.property__description.opened {
  margin-bottom: -14px;
}

.property__description p {
  line-height: 1.4;
}

.property__description-wrap {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

@media (max-width: 767px) {
  .property__description-wrap {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin-top: 20px;
    max-height: 260px;
    overflow: hidden;
    position: relative;
  }

  .property__description-wrap:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#f6f6f6));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f6f6f6 100%);
    height: 20px;
    z-index: 5;
    content: " ";
    display: block;
  }

  .opened .property__description-wrap {
    max-height: none;
  }
}

.property__btn-more {
  position: relative;
  border: 1px solid #d6d6d6;
  text-align: center;
  display: block;
  padding: 7px 20px;
  text-transform: uppercase;
  color: #2c3e50;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 600;
  width: 200px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  display: none;
  margin: 20px 0 0;
  padding: 4px 0;
}

.property__btn-more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.property__btn-more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.property__btn-more.has-error,
.property__btn-more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.property__btn-more.has-error:after,
.property__btn-more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.property__btn-more.has-success,
.property__btn-more.success {
  color: transparent !important;
}

.property__btn-more.has-success:after,
.property__btn-more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .property__btn-more.button--loading:before {
  content: "";
}

.button--loading-refresh .property__btn-more.button--loading:before {
  content: "";
}

.button--loading-spinner .property__btn-more.button--loading:before {
  content: "";
}

.property__btn-more.hover,
.property__btn-more:hover {
  border-color: #f3bc65;
  color: #f3bc65;
  text-decoration: none;
}

.property__btn-more:active,
.property__btn-more.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.property__btn-more:focus,
.property__btn-more.focus {
  text-decoration: none;
  outline: none;
}

.property__btn-more:disabled,
.property__btn-more.disabled {
  cursor: not-allowed;
  color: #ccc;
  border-color: #efefef;
}

.property__btn-more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .property__btn-more {
    display: block;
  }

  .opened .property__btn-more {
    display: none;
  }
}

.property__params:before,
.property__params:after {
  content: " ";
  display: table;
}

.property__params:after {
  clear: both;
}

.property__params-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .property__params-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

.property__params-list li {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 3px 0 2px;
}

@media (min-width: 768px) {
  .property__params-list li {
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .property__params-list li:nth-of-type(n) {
    clear: none;
  }

  .property__params-list li:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .property__params-list li {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 992px) {
  .property__params-list li:nth-of-type(n) {
    clear: none;
  }

  .property__params-list li:nth-of-type(3n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .property__params-list li {
    padding: 8px 0 2px;
    line-height: 1;
    float: none;
  }
}

.property__params-list li strong {
  display: block;
}

.property__params-list--options li {
  background: url("../img/bg-border-dotted-vertical.png") no-repeat 3px -1px;
  padding-left: 15px;
}

.property__params-list--options li:before {
  content: " ";
  width: 8px;
  height: 8px;
  border: 2px solid #aab300;/*00bbaa*/
  border-radius: 8px;
  margin: 9px 3px 0 0;
  display: inline-block;
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .property__params-list--options li:before {
    margin-top: 3px;
  }
}

.property__params-list--options li:nth-child(-n+3) {
  background-position: 3px 12px;
}

.property__params-list--options li:nth-last-child(1),
.property__params-list--options li:nth-last-child(2),
.property__params-list--options li:nth-last-child(3) {
  background-position: 3px -208px;
}

@media (max-width: 767px) {
  .property__params-list--options li:nth-child(n) {
    background-position: 3px -1px !important;
  }
}

.property__plan {
  margin-right: -5px;
}

@media (max-width: 767px) {
  .property__plan {
    margin-right: 0;
  }
}

.property__plan:before,
.property__plan:after {
  content: " ";
  display: table;
}

.property__plan:after {
  clear: both;
}

.property__plan-item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  margin-bottom: 0;
  border: 1px solid #fff;
  background: #e4e4e4;
  margin-left: -1px;
  margin-top: -1px;
}

@media (min-width: 768px) {
  .property__plan-item {
    float: left;
    width: 20%;
  }
}

@media (max-width: 767px) {
  .property__plan-item {
    width: 100%;/*92px*/
    float: left;
    margin-bottom: 13px;
  }
}

.property__plan-icon svg {
  width: 26px;
  height: 31px;
  fill: #aab300;/*00bbaa*/
  margin: 18px auto 0;
  display: block;
}

.property__plan-icon--window svg {
  width: 17px;
  height: 26px;
  margin-top: 23px;
}

.property__plan-icon--bathrooms svg {
  height: 30px;
  margin-top: 19px;
}

.property__plan-icon--garage svg {
  width: 25px;
  height: 32px;
  margin-top: 17px;
}

.property__plan-title {
  font-weight: normal;
  color: #2c3e50;
  padding: 5px 0 11px 0;
}

@media (max-width: 767px) {
  .property__plan-title {
    padding: 2px 0 4px 0;
  }
}

.property__plan-value {
  font-size: 20px;
  border-top: 1px solid #fff;
  margin: 0;
  padding: 16px 0;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 767px) {
  .property__plan-value {
    font-size: 15px;
    padding: 9px 0;
  }
}

.property__files {
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 13px 15px;
  margin-top: 45px;
}

@media (max-width: 767px) {
  .property__files {
    display: none;
    margin-top: 30px;
  }

  .property__files.opened {
    display: block;
  }
}

.property__files:before,
.property__files:after {
  content: " ";
  display: table;
}

.property__files:after {
  clear: both;
}

.property__files .property__subtitle {
  float: left;
  margin: 4px 0 0 0;
}

@media (max-width: 1199px) {
  .property__files .property__subtitle {
    float: none;
  }
}

.property__files-icon {
  fill: #00bbaa;
  width: 25px;
  vertical-align: middle;
  margin-right: 10px;
  height: 35px;
}

.property__files-item {
  display: inline-block;
  color: #2c3e50;
  margin: 0 0 0 25px;
}

@media (max-width: 1199px) {
  .property__files-item {
    padding: 0 0 10px 0;
    margin: 9px 25px 0 0;
  }
}

@media (max-width: 767px) {
  .property__files-item {
    margin-left: 0;
    padding: 0 0 2px 0;
  }
}

.property__files-show {
  font-size: 17px;
  color: #2c3e50;
  text-align: center;
  border: 1px solid #d6d6d6;
  padding: 15px 0;
  background: #fff;
  text-transform: uppercase;
  width: 100%;
  font-weight: bold;
  outline: none;
  margin-top: 40px;
  display: none;
}

.property__files-show:after {
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  border: 1px solid #2c3e50;
  margin-left: 10px;
  width: 25px;
  height: 25px;
  vertical-align: top;
  text-align: center;
  line-height: 25px;
  padding: 0 0 0 2px;
}

.property__files-show.active:after {
  content: "";
}

@media (max-width: 767px) {
  .property__files-show {
    display: block;
    margin-top: 30px;
  }
}

.property__map {
  margin: 25px 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .property__map {
    margin: 30px 0 0 0;
    height: 170px;
  }
}

.property__contact {
  position: relative;
}

@media (max-width: 767px) {
  .property__contact {
    background: #fff;
    border: 1px solid #d6d6d6;
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

.property__contact .property__subtitle {
  font-size: 20px;
}

@media (max-width: 767px) {
  .property__contact .property__subtitle {
    text-align: center;
    margin: 25px 0;
  }
}

.property__contact-agent {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .property__contact-agent {
    float: left;
    width: 58.33333%;
  }
}

@media (max-width: 767px) {
  .property__contact-agent {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.property__contact-form {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 12px;
}

@media (min-width: 992px) {
  .property__contact-form {
    float: left;
    width: 41.66667%;
  }
}

@media (max-width: 1199px) {
  .property__contact-form {
    padding: 0 0 0 20px;
  }
}

@media (max-width: 991px) {
  .property__contact-form {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .property__contact-form {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding: 0 30px;
    display: none;
  }

  .opened .property__contact-form {
    display: block;
  }
}

.icon-area-border {
  fill: #00bbaa;
}

/*------------------------------------------------------------------
 * Listing
 * + Listing / .listing
 *   __ Listing header / .listing__header
 *   __ Listing title / .listing__title
 *   __ Listing headline / .listing__headline
 *   __ Listing panel / .listing__panel
 * ============================================================== */

.listing {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .listing {
    float: left;
    width: 66.66667%;
  }
}

@media (min-width: 768px) {
  .listing:nth-of-type(n) {
    clear: none;
  }

  .listing:nth-of-type(1.5n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .listing {
    float: left;
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .listing:nth-of-type(n) {
    clear: none;
  }

  .listing:nth-of-type(1.33333n+1) {
    clear: both;
  }
}

@media (max-width: 767px) {
  .listing {
    margin-bottom: 30px;
  }
}

.listing:before,
.listing:after {
  content: " ";
  display: table;
}

.listing:after {
  clear: both;
}

.listing__header {
  margin: 49px 0 40px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .listing__header {
    margin: 21px 0 25px;
  }
}

.listing__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}

.sidebar .listing__title {
  font-size: 34px;
}

.footer .listing__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .listing__title {
    font-size: 26px;
  }

  .sidebar .listing__title {
    font-size: 26px;
  }
}

.listing__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  margin: 0;
  min-height: 37px;
  text-align: left;
}

.listing__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .listing__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .listing__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .listing__headline {
    min-height: initial;
  }
}

.listing__panel {
  background: #00bbaa;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 0;
}

.listing__panel:before,
.listing__panel:after {
  content: " ";
  display: table;
}

.listing__panel:after {
  clear: both;
}

@media (max-width: 767px) {
  .listing__panel {
    margin-top: 30px;
  }
}

.listing__panel a {
  color: #2c3e50;
  text-decoration: underline;
  margin-left: 3px;
}

@media (max-width: 767px) {
  .listing__search-toggle {
    display: block;
  }

  .listing__search-toggle.header-fixed {
    position: fixed;
    top: 35px;
    right: 0;
    left: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    height: 35px;
    width: 100%;
    z-index: 10;
    padding: 0;
    border: none;
    margin: 0;
  }

  .listing__search-toggle.header-fixed:after {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .header-fixed .listing__offset {
    padding-top: 138px;
  }
}

.listing__filter {
  padding: 13px 20px 0;
}

.listing__filter:before,
.listing__filter:after {
  content: " ";
  display: table;
}

.listing__filter:after {
  clear: both;
}

.listing__filter .select2-container {
  margin-top: 2px;
}

@media (max-width: 1199px) {
  .listing__filter {
    padding-top: 8px;
  }
}

@media (max-width: 767px) {
  .listing__filter {
    padding: 13px 15px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-fixed .listing__filter {
    padding-top: 4px;
  }
}

@media (max-width: 350px) {
  .listing__filter {
    padding-top: 3px;
  }
}

.listing__filter-label {
  text-transform: uppercase;
  font-weight: 600;
  color: #2c3e50;
  margin: 3px 0 0 0;
  display: inline-block;
}

@media (max-width: 1199px) {
  .listing__filter-label {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .listing__filter-label {
    display: inline-block;
    margin-top: 3px;
  }
}

.listing__main:before,
.listing__main:after {
  content: " ";
  display: table;
}

.listing__main:after {
  clear: both;
}

.listing__main .container {
  width: auto;
}

.listing__sort {
  float: left;
  width: 300px;
}

@media (max-width: 1199px) {
  .listing__sort {
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  .listing__sort {
    float: none;
    max-width: none;
    width: auto;
  }

  .listing__sort .form-group {
    margin-bottom: 15px;
  }
}

.listing__sort .listing__filter-label {
  float: left;
  margin-right: 10px;
}

.listing__sort .form-control {
  float: left;
  width: auto;
}

.listing__show {
  float: right;
  width: 195px;
}

.listing__show .form-control {
  float: left;
  width: 75px;
}

@media (max-width: 1199px) {
  .listing__show {
    max-width: 120px;
  }
}

@media (max-width: 767px) {
  .listing__show {
    display: none;
  }
}

.listing__show .listing__filter-label {
  float: left;
  margin-right: 10px;
}

.listing__view {
  float: right;
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .listing__view {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .listing__view {
    float: none;
  }
}

@media (max-width: 767px) {
  .listing__view {
    display: none;
  }
}

.listing__add {
  float: right;
  text-align: right;
  margin-top: -1px;
}

@media (max-width: 1199px) {
  .listing__add {
    width: 170px;
    text-align: left;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .listing__add {
    display: none;
  }
}

.listing__type {
  float: right;
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .listing__type {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .listing__type {
    display: none;
  }
}

.listing__header-text {
  color: #2c3e50;
  display: block;
  margin: 0 0 11px;
  padding: 8px 17px 0;
  font-weight: 600;
}

.listing__btn {
  color: #2c3e50;
  text-transform: none;
  font-weight: 600;
  margin: 0 0 0 10px;
  display: inline-block;
  font-size: 12px;
  text-decoration: none !important;
  padding: 3px 10px 4px;
}

.listing__btn .fa-bars {
  font-size: 11px;
}

@media (max-width: 1199px) {
  .listing__btn {
    margin-top: 2px;
  }
}

.listing__btn.active {
  color: #fff;
  border: 1px solid #fff;
}

.listing__btn--add {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  width: 165px;
  padding: 4px 20px;
  margin: 0;
}

@media (max-width: 767px) {
  .listing__btn--add {
    padding: 3px 5px 3px 5px;
  }
}

.listing__btn--add:hover,
.listing__btn--add:focus,
.listing__btn--add.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.listing__btn--add:disabled,
.listing__btn--add.disabled {
  cursor: not-allowed;
}

.listing__btn--add.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.listing__btn--add:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.listing__btn--add.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.listing__btn--add.has-error,
.listing__btn--add.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.listing__btn--add.has-error:after,
.listing__btn--add.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.listing__btn--add.has-success,
.listing__btn--add.success {
  color: transparent !important;
}

.listing__btn--add.has-success:after,
.listing__btn--add.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .listing__btn--add.button--loading:before {
  content: "";
}

.button--loading-refresh .listing__btn--add.button--loading:before {
  content: "";
}

.button--loading-spinner .listing__btn--add.button--loading:before {
  content: "";
}

.listing__btn--add.hover,
.listing__btn--add:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.listing__btn--add:active,
.listing__btn--add.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.listing__btn--add:disabled,
.listing__btn--add.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.listing__footer {
  border-top: 1px solid #dedede;
  margin-bottom: 20px;
}

.listing__footer:before,
.listing__footer:after {
  content: " ";
  display: table;
}

.listing__footer:after {
  clear: both;
}

@media (max-width: 767px) {
  .listing__footer {
    margin-top: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #dedede;
  }
}

.listing__pagination {
  text-align: right;
  padding: 30px 0 10px;
}

@media (max-width: 767px) {
  .listing__pagination {
    text-align: center;
    padding: 20px 0;
  }
}

.listing__dropdown {
  display: inline-block;
  margin: 0 5px;
}

.listing__dropdown-btn {
  font-size: 13px;
  text-transform: none;
  background: none;
  position: relative;
  padding: 6px 40px 6px 9px;
  color: #fff;
  display: block;
  border: 1px solid #fff;
}

.listing__dropdown-btn:hover {
  color: #fff;
}

.listing__dropdown-btn:after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  top: 0;
  padding: 5px 0 0 10px;
  color: #fff;
  border-left: 1px solid #fff;
  font-size: 15px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

.listing__dropdown-menu {
  background: #fff;
  right: auto;
  left: 0;
  width: 250px;
  padding: 15px 0;
  min-width: initial;
  border: 1px solid #d6d6d6;
}

.listing__dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.listing__dropdown-menu--show {
  width: 75px;
}

.listing__dropdown-item:last-child a {
  border-bottom: none;
}

.listing__dropdown-link {
  margin: 0 30px;
  padding: 10px 0;
  color: #2c3e50;
  display: block;
  border-bottom: 1px solid #d6d6d6;
}

.listing__dropdown-link.active,
.listing__dropdown-link:hover {
  margin: 0;
  padding: 10px 30px;
  background: #00bbaa;
  color: #fff;
  text-decoration: none;
}

.listing__dropdown-link.active {
  font-weight: bold;
}

.listing__param {
  margin: 20px 0 0;
}

.listing__param + .listing__main .properties {
  margin-top: 20px;
}

.listing__param + .listing__main .listing__empty {
  margin-top: 20px;
}

.listing__param-item {
  margin: 0 15px 5px 0;
  display: inline-block;
}

.listing__param-delete {
  background: #e6e6e6;
  border: none;
  border-radius: 10px;
  font-size: 0;
  margin: -2px 5px 0 0;
  padding: 1px 6px;
  display: inline-block;
  color: #2c3e50;
  cursor: pointer;
}

.listing__param-delete:after {
  font-size: 11px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
}

.listing__empty {
  padding: 25px 29px;
  background: #fff;
  border: 1px solid #dedede;
  min-height: 480px;
}

.listing__empty:before,
.listing__empty:after {
  content: " ";
  display: table;
}

.listing__empty:after {
  clear: both;
}

@media (max-width: 767px) {
  .listing__empty {
    min-height: initial;
  }
}

.listing__empty--properties {
  margin: 40px 0 50px;
}

@media (max-width: 767px) {
  .listing__empty--properties {
    margin: 25px 0 0;
  }
}

.listing__empty-icon {
  width: 50px;
  height: 50px;
  fill: #dedede;
  margin: 80px auto 0;
  display: block;
}

@media (max-width: 767px) {
  .listing__empty-icon {
    margin-top: 3px;
  }
}

.listing__empty-title {
  font-size: 20px;
  color: #222;
  border-bottom: 1px solid #dedede;
  width: 469px;
  margin: 33px auto 0;
  padding: 0 10px 15px 10px;
  text-align: center;
}

@media (max-width: 991px) {
  .listing__empty-title {
    width: 95%;
  }
}

.listing__empty-headline {
  color: #808080;
  width: 300px;
  display: block;
  margin: 19px auto 0;
  text-align: center;
}

@media (max-width: 767px) {
  .listing__empty-headline {
    width: auto;
  }
}

@media (max-width: 1199px) {
  .listing--index {
    width: 100%;
    float: none;
  }
}

.listing--gallery {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .listing--gallery {
    float: left;
    width: 100%;
  }
}

/*------------------------------------------------------------------
 * Form submit property
 * + Form property / .form-property
 *   __ Form property form / .form-property__form
 * ============================================================== */

.form-property {
  margin-bottom: 50px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .form-property {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.form-property__row {
  margin-left: -15px;
  margin-right: -15px;
}

.form-property__row:before,
.form-property__row:after {
  content: " ";
  display: table;
}

.form-property__row:after {
  clear: both;
}

@media (max-width: 767px) {
  .form-property__block {
    margin-top: 20px;
    display: none;
  }

  .form-property__block.opened {
    display: block;
  }
}

@media (max-width: 767px) {
  .form-property__block--submit {
    display: block;
  }
}

.form-property__row-item {
  margin-left: -15px;
  margin-right: -15px;
}

.form-property__row-item:before,
.form-property__row-item:after {
  content: " ";
  display: table;
}

.form-property__row-item:after {
  clear: both;
}

.form-property__row-item--buttons {
  margin: 28px 0 30px;
}

.form-property__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  text-align: left;
  position: relative;
  margin-top: 20px;
  font-family: "Source Sans Pro", sans-serif;
}

.sidebar .form-property__title {
  font-size: 34px;
}

.footer .form-property__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .form-property__title {
    font-size: 26px;
  }

  .sidebar .form-property__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .form-property__title {
    font-size: 20px;
    padding: 0 0 0 35px;
  }

  .form-property__title:before {
    font-size: 14px;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    border: 1px solid #2c3e50;
    color: #2c3e50;
    display: inline-block;
    margin: -3px 0 0 0;
    font-weight: normal;
    text-align: center;
    width: 24px;
    line-height: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 0;
    text-decoration: none;
  }

  .form-property__title.active {
    color: #00bbaa;
  }

  .form-property__title.active:before {
    content: "";
  }
}

.form-property__title--inner {
  margin: 23px 0 16px;
}

@media (max-width: 767px) {
  .form-property__title--inner {
    margin: 12px 0 22px;
  }
}

.form-property__header {
  margin-bottom: 20px;
}

.form-property__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
}

.form-property__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .form-property__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .form-property__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .form-property__headline {
    text-align: center;
    display: none;
  }

  .active + .form-property__headline {
    display: block;
  }
}

.form-property__condition {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  text-align: left;
  margin: 0 0 15px 0;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
}

.form-property__condition strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .form-property__condition {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .form-property__condition {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .form-property__condition {
    text-align: center;
  }
}

.form-property__information {
  background: none;
  border: none;
  display: inline-block;
  outline: none !important;
  color: #ccc;
  position: relative;
  top: -10px;
  padding: 0;
}

.form-property__group {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .form-property__group {
    float: left;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .form-property__group:nth-of-type(n) {
    clear: none;
  }

  .form-property__group:nth-of-type(1n+1) {
    clear: both;
  }
}

@media (min-width: 992px) {
  .form-property__group {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .form-property__group:nth-of-type(n) {
    clear: none;
  }

  .form-property__group:nth-of-type(2n+1) {
    clear: both;
  }
}

@media (min-width: 1200px) {
  .form-property__group {
    float: left;
    width: 33.33333%;
  }
}

@media (min-width: 1200px) {
  .form-property__group:nth-of-type(n) {
    clear: none;
  }

  .form-property__group:nth-of-type(3n+1) {
    clear: both;
  }
}

.form-property__group--large {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  clear: both;
  margin-bottom: 25px;
}

@media (min-width: 1200px) {
  .form-property__group--large {
    float: left;
    width: 100%;
  }
}

.form-property__group--middle {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .form-property__group--middle {
    float: left;
    width: 66.66667%;
  }
}

.form-property__group--date {
  width: 32%;
  float: left;
  margin: 0 1.33% 0 0;
}

.form-property__group--date:last-child {
  margin-right: 0;
}

.form-property__group--geolocation-in {
  position: relative;
  float: left;
  width: 66.66667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.form-property__group--geolocation {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 0;
}

.form-property__group .parsley-errors-list {
  position: absolute;
  bottom: -20px;
  margin-top: 0;
}

@media (max-width: 480px) {
  .form-property__group .parsley-errors-list {
    bottom: -29px;
  }
}

.form-property__group .select2-container {
  width: 100% !important;
}

@media (max-width: 767px) {
  .form-property__group {
    margin-bottom: 13px;
  }
}

@media (max-width: 480px) {
  .form-property__group {
    margin-bottom: 20px;
  }
}

.form-property__geolocation-button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

.form-property__geolocation-button svg {
  fill: #00bbaa;
  height: 45px;
  width: 30px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .form-property__geolocation-button svg {
    margin-top: 26px;
  }
}

.form-property__label {
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .form-property__label {
    margin-bottom: 6px;
  }
}

.form-property__params {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.form-property__params:before,
.form-property__params:after {
  content: " ";
  display: table;
}

.form-property__params:after {
  clear: both;
}

@media (max-width: 767px) {
  .form-property__params {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}

.form-property__params li {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 15px 0 0;
  padding-left: 0;
}

@media (min-width: 768px) {
  .form-property__params li {
    float: left;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .form-property__params li {
    float: left;
    width: 33.33333%;
  }
}

@media (max-width: 767px) {
  .form-property__params li {
    margin: 5px 0 0;
    padding: 0;
  }
}

.form-property__params label {
  padding-left: 44px;
  padding-top: 3px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .form-property__params label {
    padding-left: 30px;
  }
}

.form-property__control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-property__control:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.form-property__control::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.form-property__control:-ms-input-placeholder {
  color: #2c3e50;
}

.form-property__control::-webkit-input-placeholder {
  color: #2c3e50;
}

.form-property__control[disabled],
.form-property__control[readonly],
fieldset[disabled] .form-property__control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.form-property__control.parsley-error {
  border: 1px solid #e95b35;
}

.form-property__control.parsley-success {
  border: 1px solid #00bbaa;
}

.form-property__control--textarea {
  height: 175px !important;
}

.form-property__advanced {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .form-property__advanced {
    float: left;
    width: 16.66667%;
  }
}

@media (max-width: 767px) {
  .form-property__buttons {
    text-align: center;
  }
}

.form-property__btn--default {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
}

@media (max-width: 767px) {
  .form-property__btn--default {
    padding: 3px 5px 3px 5px;
  }
}

.form-property__btn--default:hover,
.form-property__btn--default:focus,
.form-property__btn--default.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.form-property__btn--default:disabled,
.form-property__btn--default.disabled {
  cursor: not-allowed;
}

.form-property__btn--default.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.form-property__btn--default:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.form-property__btn--default.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.form-property__btn--default.has-error,
.form-property__btn--default.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.form-property__btn--default.has-error:after,
.form-property__btn--default.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.form-property__btn--default.has-success,
.form-property__btn--default.success {
  color: transparent !important;
}

.form-property__btn--default.has-success:after,
.form-property__btn--default.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .form-property__btn--default.button--loading:before {
  content: "";
}

.button--loading-refresh .form-property__btn--default.button--loading:before {
  content: "";
}

.button--loading-spinner .form-property__btn--default.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .form-property__btn--default.hover,
  .form-property__btn--default:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.form-property__btn--default:active,
.form-property__btn--default.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.form-property__btn--default:disabled,
.form-property__btn--default.disabled {
  color: #ccc;
  border-color: #efefef;
}

.form-property__btn--reset {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
}

@media (max-width: 767px) {
  .form-property__btn--reset {
    padding: 3px 5px 3px 5px;
  }
}

.form-property__btn--reset:hover,
.form-property__btn--reset:focus,
.form-property__btn--reset.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.form-property__btn--reset:disabled,
.form-property__btn--reset.disabled {
  cursor: not-allowed;
}

.form-property__btn--reset.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.form-property__btn--reset:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.form-property__btn--reset.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.form-property__btn--reset.has-error,
.form-property__btn--reset.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.form-property__btn--reset.has-error:after,
.form-property__btn--reset.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.form-property__btn--reset.has-success,
.form-property__btn--reset.success {
  color: transparent !important;
}

.form-property__btn--reset.has-success:after,
.form-property__btn--reset.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .form-property__btn--reset.button--loading:before {
  content: "";
}

.button--loading-refresh .form-property__btn--reset.button--loading:before {
  content: "";
}

.button--loading-spinner .form-property__btn--reset.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .form-property__btn--reset.hover,
  .form-property__btn--reset:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.form-property__btn--reset:active,
.form-property__btn--reset.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.form-property__btn--reset:disabled,
.form-property__btn--reset.disabled {
  color: #ccc;
  border-color: #efefef;
}

.form-property__btn--reset:before {
  content: "x";
  font-size: 12px;
  color: #2c3e50;
  margin: 0 5px 0 0;
}

.form-property__btn--action {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  margin-left: 0;
}

@media (max-width: 767px) {
  .form-property__btn--action {
    padding: 3px 5px 3px 5px;
  }
}

.form-property__btn--action:hover,
.form-property__btn--action:focus,
.form-property__btn--action.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.form-property__btn--action:disabled,
.form-property__btn--action.disabled {
  cursor: not-allowed;
}

.form-property__btn--action.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.form-property__btn--action:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.form-property__btn--action.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.form-property__btn--action.has-error,
.form-property__btn--action.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.form-property__btn--action.has-error:after,
.form-property__btn--action.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.form-property__btn--action.has-success,
.form-property__btn--action.success {
  color: transparent !important;
}

.form-property__btn--action.has-success:after,
.form-property__btn--action.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .form-property__btn--action.button--loading:before {
  content: "";
}

.button--loading-refresh .form-property__btn--action.button--loading:before {
  content: "";
}

.button--loading-spinner .form-property__btn--action.button--loading:before {
  content: "";
}

.form-property__btn--action.hover,
.form-property__btn--action:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.form-property__btn--action:active,
.form-property__btn--action.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.form-property__btn--action:disabled,
.form-property__btn--action.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.form-property__upload {
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px 0;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
}

@media (min-width: 1200px) {
  .form-property__upload {
    float: left;
    width: 41.66667%;
  }
}

.form-property__upload:before,
.form-property__upload:after {
  content: " ";
  display: table;
}

.form-property__upload:after {
  clear: both;
}

.form-property__upload-list {
  margin: 30px -15px 50px;
}

.form-property__upload-list:before,
.form-property__upload-list:after {
  content: " ";
  display: table;
}

.form-property__upload-list:after {
  clear: both;
}

@media (max-width: 767px) {
  .form-property__upload-list {
    margin: 10px -15px 30px;
  }
}

.form-property__upload-list--bottom {
  margin-bottom: 0;
}

.form-property__upload-border {
  border: 2px solid #00bbaa;
  padding: 2px;
}

.form-property__upload-item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .form-property__upload-item {
    float: left;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .form-property__upload-item {
    float: left;
    width: 25%;
  }
}

@media (max-width: 767px) {
  .form-property__upload-item {
    margin-bottom: 20px;
  }

  .form-property__upload-item:last-of-type {
    margin-bottom: 0;
  }
}

.form-property__upload-item img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100% !important;
}

.form-property__upload-delete {
  float: right;
  text-transform: uppercase;
  font-size: 13px;
  color: #00bbaa;
}

@media (max-width: 767px) {
  .form-property__upload-delete {
    margin-left: 0;
  }
}

.form-property__upload-btn-delete {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
}

@media (max-width: 767px) {
  .form-property__upload-btn-delete {
    padding: 3px 5px 3px 5px;
  }
}

.form-property__upload-btn-delete:hover,
.form-property__upload-btn-delete:focus,
.form-property__upload-btn-delete.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.form-property__upload-btn-delete:disabled,
.form-property__upload-btn-delete.disabled {
  cursor: not-allowed;
}

.form-property__upload-btn-delete.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.form-property__upload-btn-delete:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.form-property__upload-btn-delete.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.form-property__upload-btn-delete.has-error,
.form-property__upload-btn-delete.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.form-property__upload-btn-delete.has-error:after,
.form-property__upload-btn-delete.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.form-property__upload-btn-delete.has-success,
.form-property__upload-btn-delete.success {
  color: transparent !important;
}

.form-property__upload-btn-delete.has-success:after,
.form-property__upload-btn-delete.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .form-property__upload-btn-delete.button--loading:before {
  content: "";
}

.button--loading-refresh .form-property__upload-btn-delete.button--loading:before {
  content: "";
}

.button--loading-spinner .form-property__upload-btn-delete.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .form-property__upload-btn-delete.hover,
  .form-property__upload-btn-delete:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.form-property__upload-btn-delete:active,
.form-property__upload-btn-delete.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.form-property__upload-btn-delete:disabled,
.form-property__upload-btn-delete.disabled {
  color: #ccc;
  border-color: #efefef;
}

@media (max-width: 767px) {
  .form-property__upload-btn-delete {
    margin-left: 0;
  }
}

.form-property__upload-btn-choose {
  background: #00bbaa;
  color: #fff;
  border: none;
  font-size: 13px;
}

.form-property__ranges {
  position: relative;
}

.form-property__check--agent {
  margin: 15px 0;
}

/*------------------------------------------------------------------
 * Comment
 * + Comment / .comment
 *   __ Comment wrap / .comment__wrap
 *   __ Comment headline / .comment__headline
 *   __ Comment list / .comment__list
 *   __ Comment item / .comment__item
 *   __ Comment item-body / .comment__item-body
 *   __ Comment item-btn / .comment__item-btn
 *   __ Comment children / .comment__children
 *   __ Comment avatar / .comment__avatar
 *   __ Comment info / .comment__info
 *   __ Comment author / .comment__author
 *   __ Comment date / .comment__date
 *   __ Comment content / .comment__content
 *   __ Comment reply / .comment__reply
 *   __ Comment footer / .comment__footer
 * ============================================================== */

.comment__wrap {
  background: #fff;
  border: 1px solid #dedede;
}

.comment__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  font-size: 20px;
  margin: 20px 0;
  text-align: left;
}

.comment__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .comment__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .comment__headline {
  margin: 4px 0 0;
}

@media (max-width: 767px) {
  .comment__headline {
    text-align: center;
  }
}

.comment__list {
  margin: 34px 60px 0 60px;
  padding: 0;
  list-style: none;
}

.comment__list:before,
.comment__list:after {
  content: " ";
  display: table;
}

.comment__list:after {
  clear: both;
}

@media (max-width: 1199px) {
  .comment__list {
    margin: 0 25px;
  }
}

.comment__item {
  border-bottom: 1px solid #dedede;
  padding: 25px 0;
}

.comment__item:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}

.comment__item .comment__form {
  margin: 20px 0 0 80px;
}

@media (max-width: 767px) {
  .comment__item .comment__form {
    margin: 20px 15px 0 0;
  }
}

.comment__item-body {
  position: relative;
}

.comment__item-body:before,
.comment__item-body:after {
  content: " ";
  display: table;
}

.comment__item-body:after {
  clear: both;
}

.comment__item-right {
  float: right;
}

@media (max-width: 767px) {
  .comment__item-right {
    position: absolute;
    left: 75px;
    top: 48px;
  }
}

.comment__item-btn {
  font-size: 13px;
  color: #00bbaa;
  border: none;
  background: none;
  text-transform: uppercase;
}

.comment__warning-title {
  color: #e95b35;
  font-weight: 600;
}

.comment__warning-text {
  color: #ccc !important;
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.comment__children {
  list-style: none;
  margin-left: 80px;
  border-top: 1px dashed #dedede;
  border-bottom: none;
  padding: 0;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .comment__children {
    margin-left: 30px;
  }
}

.comment__children .comment__item {
  border-bottom: 1px dashed #dedede;
}

.comment__children .comment__item:last-child {
  padding-bottom: 0;
}

.comment__avatar {
  width: 65px;
  float: left;
  background: #e4e4e4;
  margin: 0 16px 11px 0;
}

.comment__avatar svg {
  fill: #2c3e50;
  width: 85%;
  margin: 0 auto 0;
  display: block;
}

.comment__info {
  margin-left: 80px;
}

.comment__author {
  color: #2c3e50;
  display: block;
  margin: -5px 0 0 0;
  font-weight: 600;
}

@media (max-width: 767px) {
  .comment__author {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.comment__date {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  display: block;
  margin: 0 0 5px;
}

@media (max-width: 767px) {
  .comment__date {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.comment__content {
  margin: 21px 0 0;
}

@media (max-width: 767px) {
  .comment__content {
    margin: 0 15px 0 -80px;
    clear: both;
  }
}

.comment__content p {
  color: #2c3e50;
}

.comment__reply {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  border: 2px solid #2c3e50;
  background: none;
  color: #2c3e50;
  width: 150px;
  margin: 10px 0 0;
  padding: 1px 13px;
  border-width: 1px;
  width: 80px;
}

@media (max-width: 767px) {
  .comment__reply {
    padding: 3px 5px 3px 5px;
  }
}

.comment__reply:hover,
.comment__reply:focus,
.comment__reply.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.comment__reply:disabled,
.comment__reply.disabled {
  cursor: not-allowed;
}

.comment__reply.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.comment__reply:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.comment__reply.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.comment__reply.has-error,
.comment__reply.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.comment__reply.has-error:after,
.comment__reply.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.comment__reply.has-success,
.comment__reply.success {
  color: transparent !important;
}

.comment__reply.has-success:after,
.comment__reply.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .comment__reply.button--loading:before {
  content: "";
}

.button--loading-refresh .comment__reply.button--loading:before {
  content: "";
}

.button--loading-spinner .comment__reply.button--loading:before {
  content: "";
}

@media (min-width: 992px) {
  .comment__reply.hover,
  .comment__reply:hover {
    border-color: #f3bc65;
    color: #f3bc65;
  }
}

.comment__reply:active,
.comment__reply.active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  border-color: #f3bc65;
  background: #f3bc65;
  color: #fff;
}

.comment__reply:disabled,
.comment__reply.disabled {
  color: #ccc;
  border-color: #efefef;
}

@media (max-width: 767px) {
  .comment__reply {
    margin-left: -80px;
  }
}

.comment__footer {
  margin: 25px 60px;
}

.comment__footer:before,
.comment__footer:after {
  content: " ";
  display: table;
}

.comment__footer:after {
  clear: both;
}

@media (max-width: 1199px) {
  .comment__footer {
    margin: 25px;
  }
}

@media (max-width: 767px) {
  .comment__footer {
    margin: 25px 15px;
  }
}

.comment__footer .listing__pagination {
  padding: 25px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.comment__form {
  margin: 0;
}

.comment__form:before,
.comment__form:after {
  content: " ";
  display: table;
}

.comment__form:after {
  clear: both;
}

.comment__form-title {
  font-size: 20px;
  color: #2c3e50;
  font-weight: 600;
  margin: 20px 0 0;
}

.comment__form-headline {
  font-size: 13px;
  color: #2c3e50;
  font-style: italic;
  display: block;
  margin-bottom: 20px;
}

.comment--page {
  display: none;
}

/*------------------------------------------------------------------
 * Contact page style
 * + Contacts / .contacts
 *   __ Contacts header / .contacts__header
 *   __ Contacts title / .contacts__title
 *   __ Contacts headline / .contacts__headline
 *   __ Contacts column / .contacts__column
 *   __ Contacts address / .contacts__address
 *   __ Contacts address-item / .contacts__address-item
 *   __ Contacts address-column / .contacts__address-column
 *   __ Contacts address-title / .contacts__address-title
 *   __ Contacts address-street / .contacts__address-street
 *   __ Contacts address-phone / .contacts__address-phone
 *   __ Contacts address-email / .contacts__address-email
 *   __ Contacts address-skype / .contacts__address-skype
 * ============================================================== */

.contacts__map {
  width: 100%;
  height: 800px; /*550*/
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
}

.contacts__map_2 {
  width: 100%;
  
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
}

@media (max-width: 767px) {
  .contacts__map {
    height: 170px;
  }
}

.contacts__map iframe {
  width: 100%;
  height: 800px;/*550*/
}

@media (max-width: 767px) {
  .contacts__map iframe {
    height: 280px;
  }
}

.contacts__header {
  margin: 49px 0 40px;
}

@media (max-width: 767px) {
  .contacts__header {
    margin: 21px 0 25px;
  }
}

.contacts__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .contacts__title {
  font-size: 34px;
}

.footer .contacts__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .contacts__title {
    font-size: 26px;
  }

  .sidebar .contacts__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .contacts__title {
    font-size: 36px;
  }
}

.contacts__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}

.contacts__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .contacts__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .contacts__headline {
  margin: 4px 0 0;
}

.contacts__column {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .contacts__column {
    float: left;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .contacts__column:last-of-type {
    padding-bottom: 0;
  }
}

.contacts__column a {
  color: #00adef;
}

.contacts__address {
  padding: 0;
  font-weight: 600;
}

@media (max-width: 767px) {
  .contacts__address {
    text-align: center;
  }
}

.contacts__address-column {
  float: left;
  width: 33%;
}

.contacts__address-column dd {
  font-weight: 600;
}

@media (max-width: 1199px) {
  .contacts__address-column {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .contacts__address-column {
    width: 100%;
    float: none;
  }
}

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

.contacts__address-title {
  border-bottom: 1px solid #d6d6d6;
  padding: 0 0 12px 0;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

.contacts__address-street {
  display: block;
}

.contacts__address-phone {
  display: block;
  margin: 5px 0;
}

.contacts__address-email {
  display: block;
  margin: 12px 0;
}

.contacts__address-email a {
  text-decoration: underline;
  color: #2c3e50;
}

.contacts__address-skype {
  display: block;
}

.contacts__address-skype a {
  text-decoration: underline;
  color: #2c3e50;
}

.contacts__form {
  margin-top: 31px;
  clear: both;
}

.contacts__social {
  border-top: 1px solid #d6d6d6;
}

.contacts__social-title {
  float: left;
  margin-right: 50px;
  padding-top: 5px;
}

.contacts__body h4 {
  font-weight: 600;
}

/*------------------------------------------------------------------
 * FAQ block styles
 * + FAQ / .faq
 *   __ FAQ item / .faq__item
 *   __ FAQ expander / .faq__expander
 *   __ FAQ content / .faq__content
 *   __ FAQ body / .faq__body
 *   __ FAQ footer / .faq__footer
 *   __ FAQ close / .faq__close
 * ============================================================== */

.faq {
  margin-bottom: 40px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .faq {
    margin-bottom: 0;
    margin-top: 30px;
  }
}

.faq__item {
  margin: 0 0 6px;
}

.faq__expander {
  font-size: 20px;
  color: #00bbaa;
  text-decoration: none;
  padding-left: 48px;
  position: relative;
  display: block;
  border: none;
  background: none;
  outline: none !important;
  font-weight: 600;
}

.faq__expander:before {
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  border: 1px solid #00bbaa;
  color: #00bbaa;
  display: inline-block;
  margin: 1px 24px 0 0;
  font-weight: normal;
  text-align: center;
  width: 24px;
  line-height: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 0;
  text-decoration: none;
}

.faq__expander:focus,
.faq__expander:hover {
  text-decoration: none;
}

.faq__expander.collapsed {
  color: #2c3e50;
}

.faq__expander.collapsed:before {
  content: "";
  border: 1px solid #2c3e50;
  color: #2c3e50;
}

@media (max-width: 767px) {
  .faq__expander {
    padding-left: 35px;
  }
}

.faq__content {
  padding: 0;
  display: block;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .faq__content {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
}

.faq__content.collapse.in {
  opacity: 1;
  height: auto;
}

.faq__body {
  margin: 26px 0 0 50px;
  padding: 19px 39px;
  background: #fff;
  border: 1px solid #dedede;
}

@media (max-width: 767px) {
  .faq__body {
    margin: 6px 0 0 35px;
    padding: 15px;
  }
}

.faq__footer {
  margin: 0 0 20px 50px;
  padding: 19px 39px;
  background: #fff;
  text-align: center;
  border: 1px solid #dedede;
  border-top: none;
}

@media (max-width: 767px) {
  .faq__footer {
    margin-left: 35px;
  }
}

.faq__close {
  background: none;
  border: none;
  outline: none;
  color: #2c3e50;
}

.faq__close:before {
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  border: 1px solid #2c3e50;
  color: #2c3e50;
  padding: 0 5px;
  display: inline-block;
  margin: 0 10px 0 0;
  font-weight: normal;
  text-align: center;
  width: 24px;
  height: 24px;
}

/*------------------------------------------------------------------
 * ERROR page styles (404, 500, etc.)
 * + error-status / .error-status
 *   __ error-status header / .error-status__header
 *   __ error-status title / .error-status__title
 *   __ error-status headline / .error-status__headline
 * ============================================================== */

.error-status__header {
  margin: 115px 0;
}

@media (max-width: 1199px) {
  .error-status__header {
    margin: 40px 0;
  }
}

@media (max-width: 767px) {
  .error-status__header {
    margin: 30px 0 0;
    padding-bottom: 30px;
  }
}

.error-status__title {
  font-size: 46px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.sidebar .error-status__title {
  font-size: 34px;
}

.footer .error-status__title {
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 767px) {
  .error-status__title {
    font-size: 26px;
  }

  .sidebar .error-status__title {
    font-size: 26px;
  }
}

.error-status__headline {
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  width: 778px;
  line-height: 1.9;
  margin-left: auto;
  margin-right: auto;
}

.error-status__headline strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .error-status__headline {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.4;
  }
}

.sidebar .error-status__headline {
  margin: 4px 0 0;
}

@media (max-width: 1199px) {
  .error-status__headline {
    width: auto;
  }
}

/*------------------------------------------------------------------
 * Authorization blocks
 *   + Authorization / .auth
 *     __ Authorization link / .auth__link
 *     __ Authorization title / .auth__title
 *     __ Authorization row / .auth__row
 *     __ Authorization in / .auth__in
 *     __ Authorization forgot / .auth__forgot
 * ============================================================== */

.auth:before,
.auth:after {
  content: " ";
  display: table;
}

.auth:after {
  clear: both;
}

.auth__nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.auth__link {
  border: none;
  background: none;
  color: #2c3e50;
  margin: 0;
  padding: 0 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.auth__link:focus,
.auth__link:hover {
  background: none;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .auth__link {
    display: none;
  }
}

.auth__link--login {
  margin-top: 19px;
}

@media (max-width: 1199px) {
  .auth__link--login {
    margin-top: 22px;
  }
}

.auth__icon-user {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: 3px;
  margin-top: -3px;
}

@media (max-width: 767px) {
  .auth__icon-user {
    width: 22px;
    height: 22px;
    top: 0;
    margin-right: 0;
  }
}

.auth .form-control-feedback {
  top: 20px;
}

.auth .help-block {
  text-align: right;
}

.auth__title {
  margin: 9px 0 18px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.auth__row {
  margin-bottom: 6px;
}

.auth__row:before,
.auth__row:after {
  content: " ";
  display: table;
}

.auth__row:after {
  clear: both;
}

.auth__coll {
  margin-bottom: 6px;
  float: left;
  width: 48%;
  margin-right: 4%;
}

.auth__coll:before,
.auth__coll:after {
  content: " ";
  display: table;
}

.auth__coll:after {
  clear: both;
}

@media (max-width: 767px) {
  .auth__coll {
    width: 100%;
    margin-right: 0;
  }
}

.auth__coll--right {
  margin-right: 0;
}

.auth__label {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-weight: normal;
}

.auth__in {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  position: relative;
  z-index: 5;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.auth__in:focus {
  border-color: #00bbaa;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 187, 170, 0.6);
}

.auth__in::-moz-placeholder {
  color: #2c3e50;
  opacity: 1;
}

.auth__in:-ms-input-placeholder {
  color: #2c3e50;
}

.auth__in::-webkit-input-placeholder {
  color: #2c3e50;
}

.auth__in[disabled],
.auth__in[readonly],
fieldset[disabled] .auth__in {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

.auth__in.parsley-error {
  border: 1px solid #e95b35;
}

.auth__in.parsley-success {
  border: 1px solid #00bbaa;
}

.auth__in--text {
  padding: 3px 5px;
  height: 30px;
}

.auth__nav-item:not(.open) .auth__in--text {
  background: none !important;
}

.auth__in--textarea {
  height: 140px;
}

.auth__in--submit {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  width: 100px;
  float: right;
  margin: 16px 0 5px 0;
}

@media (max-width: 767px) {
  .auth__in--submit {
    padding: 3px 5px 3px 5px;
  }
}

.auth__in--submit:hover,
.auth__in--submit:focus,
.auth__in--submit.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.auth__in--submit:disabled,
.auth__in--submit.disabled {
  cursor: not-allowed;
}

.auth__in--submit.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.auth__in--submit:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.auth__in--submit.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.auth__in--submit.has-error,
.auth__in--submit.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.auth__in--submit.has-error:after,
.auth__in--submit.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.auth__in--submit.has-success,
.auth__in--submit.success {
  color: transparent !important;
}

.auth__in--submit.has-success:after,
.auth__in--submit.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .auth__in--submit.button--loading:before {
  content: "";
}

.button--loading-refresh .auth__in--submit.button--loading:before {
  content: "";
}

.button--loading-spinner .auth__in--submit.button--loading:before {
  content: "";
}

.auth__in--submit.hover,
.auth__in--submit:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.auth__in--submit:active,
.auth__in--submit.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.auth__in--submit:disabled,
.auth__in--submit.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.auth__forgot {
  float: left;
  width: 100px;
  color: #2c3e50;
  margin-top: 16px;
  line-height: 1.4;
  border: none;
  background: none;
  text-align: left;
  outline: none;
  text-decoration: underline;
  padding: 0;
}

.auth__remember {
  display: block;
  clear: left;
}

.auth__links {
  clear: both;
  color: #acacac;
  padding: 21px 0 0;
  float: left;
}

.auth__links a,
.auth__links button {
  border: none;
  background: none;
  color: #2c3e50;
  text-decoration: underline;
  padding: 1px 3px;
  outline: none;
}

.auth--header {
  border: none;
  outline: none;
  margin-top: 15px;
}

.auth--header .dropdown__menu {
  left: auto;
  right: 0;
  width: 265px;
  background: #fff;
  color: #2c3e50;
  border: 1px solid #dcdcdc;
  padding: 18px 30px;
  z-index: 1000;
}

.auth--header .dropdown__menu:before {
  right: 20px;
  left: auto;
}

@media (max-width: 767px) {
  .auth--header .dropdown__menu:before {
    right: 32.3%;
  }
}

@media (max-width: 767px) {
  .auth--header .dropdown__menu {
    width: auto !important;
    left: 15px;
    right: 15px;
    top: 55px;
  }
}

.auth--header .auth__dropdown--register {
  width: 460px;
}

.auth--header .auth__dropdown--logged-in {
  width: 460px;
  padding: 10px 15px;
}

.auth--header .auth__dropdown--restore {
  margin-right: -36px;
}

@media (max-width: 767px) {
  .auth--header .auth__dropdown--restore {
    margin: 0;
  }
}

.auth--header .auth__dropdown--restore .auth__in--submit {
  width: 100%;
  margin: 16px 0;
}

.auth--header .auth__dropdown--restore .auth__links {
  width: 102%;
  display: block;
}

.auth--header .auth__nav-item {
  float: left;
}

@media (max-width: 767px) {
  .auth--header .auth__nav-item {
    float: none;
    position: inherit;
  }
}

.auth--header .auth__nav-btn {
  background: none;
  border: none;
  text-transform: uppercase;
  padding: 0;
  font-size: 13px;
  vertical-align: top;
  margin: 0 0 0 4px;
}

.header--mob-opened .auth--header .auth__nav-btn {
  visibility: hidden;
}

@media (max-width: 767px) {
  .auth--inline {
    margin-bottom: 30px;
  }
}

.auth--inline .auth__wrap {
  margin: 10px auto 0;
  padding: 18px 30px;
  width: 265px;
  background: #fff;
  color: #2c3e50;
  border: 1px solid #dcdcdc;
}

.auth--inline .auth__wrap--register {
  width: 460px;
}

@media (max-width: 767px) {
  .auth--inline .auth__wrap--register {
    width: 265px;
  }
}

.auth--inline .auth__wrap--restore .auth__in--submit {
  float: none;
  width: 100%;
}

/*------------------------------------------------------------------
 * Map widget styles
 * + Map / .map
 * __ Map address / .map__address
 * __ Map infobox / .map__infobox
 * __ Map photo / .map__photo
 * __ Map info / .map__info
 * __ Map details / .map__details
 * __ Map price / .map__price
 * -- Map index / .map--index
 * -- Map contacts / .map--contacts
 * -- Map properties / .map--properties
 * -- Map submit / .map--submit
 * ============================================================== */

.map {
  position: relative;
}

.map:before,
.map:after {
  content: " ";
  display: table;
}

.map:after {
  clear: both;
}

.map__infobox {
  background: #00bbaa;
  padding: 13px 20px 18px;
  color: #fff;
  position: absolute;
  bottom: -2px;
  left: 18px;
  font-weight: 200;
  width: 340px;
  font-size: 15px;
}

.map__infobox:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #00bbaa;
}

.map__infobox--white {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.map__infobox--white:after {
  border-left: 15px solid rgba(255, 255, 255, 0.8);
}

.map__infobox--dark {
  background: rgba(44, 62, 80, 0.8);
  color: #fff;
}

.map__infobox--dark:after {
  border-left: 15px solid rgba(44, 62, 80, 0.8);
}

.map__infobox--dark dl dt {
  color: #c7d3de;
}

.map__address {
  font-weight: 600;
  margin: 5px 0 12px;
  line-height: 1.2;
  display: block;
}

.map__photo {
  float: left;
  width: 100px;
}

.map__info {
  margin-bottom: 10px;
  display: block;
}

.map__info:before,
.map__info:after {
  content: " ";
  display: table;
}

.map__info:after {
  clear: both;
}

.map__details {
  float: left;
  width: 175px;
  margin-left: 20px;
  margin-top: -6px;
}

.map__details dl {
  display: block;
  margin: 0;
}

.map__details dl dt {
  display: inline-block;
  font-weight: normal;
}

.map__details dl dd {
  font-weight: bold;
  display: inline-block;
}

.map__price {
  float: left;
  position: relative;
  top: 9px;
}

.map__price strong {
  font-size: 26px;
  display: block;
}

.map__more {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border: none;
  border-bottom: 4px solid #d99221;
  background: #f3bc65;
  color: #222;
  width: 150px;
  float: right;
  width: 120px;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .map__more {
    padding: 3px 5px 3px 5px;
  }
}

.map__more:hover,
.map__more:focus,
.map__more.active {
  color: #333;
  text-decoration: none;
  outline: none;
}

.map__more:disabled,
.map__more.disabled {
  cursor: not-allowed;
}

.map__more.progress {
  overflow: visible;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.map__more:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  right: 0;
  text-align: center;
}

.map__more.button--loading:before {
  margin: 0 10px 0;
  font-size: 14px;
  display: inline-block;
  font-family: FontAwesome;
  content: "";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.map__more.has-error,
.map__more.error {
  -webkit-animation: shake 0.5s;
  animation: shake 0.5s;
  color: transparent !important;
}

.map__more.has-error:after,
.map__more.error:after {
  content: "Error!";
  -webkit-animation: scaleFromUp 0.5s;
  animation: scaleFromUp 0.5s;
  z-index: 1;
  color: #e95b35;
}

.map__more.has-success,
.map__more.success {
  color: transparent !important;
}

.map__more.has-success:after,
.map__more.success:after {
  content: "Success!";
  -webkit-animation: moveUp 0.5s;
  animation: moveUp 0.5s;
  z-index: 1;
  color: #00bbaa;
}

.button--loading-circle-o-notch .map__more.button--loading:before {
  content: "";
}

.button--loading-refresh .map__more.button--loading:before {
  content: "";
}

.button--loading-spinner .map__more.button--loading:before {
  content: "";
}

.map__more.hover,
.map__more:hover {
  border-bottom: 4px solid #f3bc65;
  color: #222;
}

.map__more:active,
.map__more.active {
  border-top: 4px solid #d99221;
  border-bottom: none;
  color: #222;
}

.map__more:disabled,
.map__more.disabled {
  color: #ccc;
  background: #efefef;
  border-bottom: 4px solid #dedede;
}

.map__buttons {
  z-index: 20;
  position: relative;
  text-align: center;
}

.map__buttons:before,
.map__buttons:after {
  content: " ";
  display: table;
}

.map__buttons:after {
  clear: both;
}

.map__change-map {
  font-size: 20px;
  margin: 10px 0;
  float: left;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  font-weight: 400;
  border-bottom: 1px dashed #2c3e50;
}

.map__change-map.active {
  border: none;
  font-weight: 600;
}

@media (max-width: 767px) {
  .map__change-map {
    font-size: 17px;
    color: #2c3e50;
    text-align: center;
    border: 1px solid #d6d6d6;
    padding: 15px 0;
    background: #fff;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    outline: none;
    margin-top: 40px;
    float: none;
    width: auto;
    display: block;
    padding: 3px 10px;
    font-weight: 400;
    margin: 50px auto 0;
  }

  .map__change-map:after {
    font-size: 14px;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    border: 1px solid #2c3e50;
    margin-left: 10px;
    width: 22px;
    height: 22px;
    vertical-align: top;
    text-align: center;
    line-height: 22px;
    padding: 0 0 0 2px;
  }

  .map__change-map.active:after {
    content: "";
  }

  .map__change-map:before {
    font-size: 1em;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    color: #00bbaa;
    margin-right: 10px;
  }

  .map__change-map:after {
    margin-top: 3px;
  }

  .map__change-map.active {
    border: 1px solid #d6d6d6;
  }
}

.map__change-panorama {
  float: left;
  border: none;
  background: none;
  border-bottom: 1px dashed #2c3e50;
  font-size: 20px;
  color: #2c3e50;
  margin: 17px 0 0 60px;
  line-height: 1;
  padding: 0;
  outline: none;
  font-weight: 400;
}

.map__change-panorama.active {
  border-bottom: none;
  font-weight: 600;
}

@media (max-width: 767px) {
  .map__change-panorama {
    font-size: 17px;
    color: #2c3e50;
    text-align: center;
    border: 1px solid #d6d6d6;
    padding: 15px 0;
    background: #fff;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    outline: none;
    margin-top: 40px;
    float: none;
    width: auto;
    display: block;
    padding: 5px 10px;
    font-weight: 400;
    vertical-align: bottom;
    line-height: 1.4;
    margin: 10px auto 0;
  }

  .map__change-panorama:after {
    font-size: 14px;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    border: 1px solid #2c3e50;
    margin-left: 10px;
    width: 22px;
    height: 22px;
    vertical-align: top;
    text-align: center;
    line-height: 22px;
    padding: 0 0 0 2px;
  }

  .map__change-panorama.active:after {
    content: "";
  }

  .map__change-panorama:before {
    font-size: 1em;
    display: inline-block;
    font-family: FontAwesome;
    content: "";
    color: #00bbaa;
    margin-right: 10px;
  }

  .map__change-panorama:after {
    font-size: 0.7em;
  }

  .map__change-panorama.active {
    border: 1px solid #d6d6d6;
  }
}

.map__view {
  border: 8px solid #fff;
  margin: 17px 0;
  width: 100%;
  height: 550px;
  z-index: 10;
}

.map__view--panorama {
  z-index: 5;
}

.map__view--property-form {
  height: 385px;
}

@media (max-width: 767px) {
  .map__view {
    margin: 0;
    border: 0;
  }
}

.map__view iframe {
  display: block;
  width: 100%;
  height: 380px;
}

@media (max-width: 767px) {
  .map__view iframe {
    height: 155px;
  }
}

@media (max-width: 767px) {
  .map__wrap {
    position: absolute;
    width: 100%;
    top: 0;
    background: url("../img/map-placeholder.jpg");
    background-size: cover;
    height: 170px;
    border: 8px solid #fff;
    margin: 17px 0;
    overflow: hidden;
  }
}

.map--index {
  min-height: 550px;
  z-index: 205;
}

.map--index .map__buttons {
  display: none;
}

@media (max-width: 767px) {
  .map--index .map__buttons {
    height: 170px;
    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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.map--index .map__change-map {
  margin: 0;
}

.map--index .map__view {
  position: absolute !important;
  bottom: 0;
  top: 0;
  height: auto;
  margin: 0;
  border: 0;
}

@media (max-width: 767px) {
  .map--index > .container {
    padding: 0;
  }
}

.map--index .map__wrap {
  margin: 0;
  border: 0;
}

.map--contacts {
  min-height: 500px;
}

@media (max-width: 767px) {
  .map--contacts {
    min-height: 170px;
  }
}

.map--contacts .map__buttons {
  display: none;
}

@media (max-width: 767px) {
  .map--contacts .map__buttons {
    display: block;
    height: 170px;
  }
}

.map--contacts .map__view {
  position: absolute !important;
  bottom: 0;
  top: 0;
  height: auto;
  margin: 0;
  border: 0;
}

@media (max-width: 767px) {
  .map--contacts > .container {
    padding: 0;
  }
}

.map--contacts .map__wrap {
  margin: 0;
  border: 0;
}

.map--hide {
  overflow: hidden;
}

.map--properties .map__buttons {
  display: block;
}

@media (max-width: 767px) {
  .map--properties .map__buttons {
    position: absolute;
    top: 50%;
    margin-top: -41px;
    left: 7px;
    right: 7px;
  }
}

.map--properties .map__wrap {
  position: relative;
  height: 400px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .map--properties .map__wrap {
    height: 170px;
    position: absolute;
    margin: 0;
  }
}

.map--properties .map__view {
  height: 396px;
  width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
}

.map--properties .map__change-map {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .map--properties .map__change-map {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .map--submit {
    height: 200px;
  }
}

.map--submit .map__buttons {
  display: block;
}

@media (max-width: 767px) {
  .map--submit .map__buttons {
    margin-top: 75px;
  }
}

.map--submit .map__wrap {
  position: relative;
  height: 400px;
}

@media (max-width: 767px) {
  .map--submit .map__wrap {
    height: 170px;
    position: absolute;
  }
}

.map--submit .map__view {
  height: 396px;
  width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
}

.map--submit .map__change-map {
  margin-top: 10px;
  border: none;
}

@media (min-width: 768px) {
  .map--submit .map__change-map {
    text-transform: uppercase;
    font-weight: bold;
  }
}

.map--banner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.map--banner.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .map--banner {
    display: none;
  }
}

.map .leaflet-popup-content-wrapper,
.map .leaflet-popup-tip {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.map .leaflet-popup-content {
  position: relative;
}

.map .leaflet-container a {
  color: #222;
}

.infoBox > img .infobox__close {
  position: absolute;
  top: 10px;
  right: 10px;
}

@-webkit-keyframes blink {
  from {
    margin-top: -230px;
  }

  to {
    margin-top: 0;
  }
}

@keyframes blink {
  from {
    margin-top: -230px;
  }

  to {
    margin-top: 0;
  }
}

.opened .cluster {
  -webkit-animation: blink;
  animation: blink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.cluster > div {
  background: #2c3e50 !important;
  border-radius: 10px !important;
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}

.achievement {
  background: url("../img/statistika_bg.jpg") 0 0;
  padding-bottom: 50px;
}

@media (max-width: 1199px) {
  .achievement {
    padding-bottom: 30px;
    padding-top: 100px; /* dodano, nije bilo vrijednosti*/
  }
}

@media (max-width: 767px) {
  .achievement {
    background: url("../img/statistika_bg_m.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}

@media (min-width: 1200px) {
  .achievement {
    overflow: hidden;
  }
}

.achievement__item {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .achievement__item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .achievement__item {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .achievement__item--animate-end .achievement__icon,
  .achievement__item--animate-end .achievement__name {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.achievement__icon {
  fill: #a6a6a6;
  width: 40px;
  height: 40px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .achievement__icon {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .achievement__icon {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
    -webkit-transition: 1s;
    transition: 1s;
  }
}

.achievement__name {
  color: #f3bc65;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .achievement__name {
    font-size: 13px;
  }
}

@media (min-width: 1200px) {
  .achievement__name {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

.achievement__counter {
  margin-top: 50px;
  color: #f3bc65;
  font-size: 64px;
  font-weight: 200;
  height: 102px;
}

@media (min-width: 1200px) {
  .achievement__counter {
    display: none;
  }
}

@media (max-width: 1199px) {
  .achievement__counter {
    font-size: 40px;
    margin-top: 0;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .achievement__counter {
    margin-top: 0;
    height: auto;
  }
}

@media (max-width: 1199px) {
  .achievement__counter--lg {
    display: none;
  }
}

@media (min-width: 1200px) {
  .achievement__counter--lg {
    display: block;
  }
}

/*------------------------------------------------------------------
 * Breadcrumbs
 * + Breadcrumbs / .breadcrumbs
 *   __ Breadcrumbs list / .breadcrumbs__list
 *   __ Breadcrumbs item / .breadcrumbs__item
 *   __ Breadcrumbs link / .breadcrumbs__link
 * ============================================================== */

.breadcrumbs {
  background: #f6f6f6;
  border-top: 1px solid #dedede;
}

.breadcrumbs:before,
.breadcrumbs:after {
  content: " ";
  display: table;
}

.breadcrumbs:after {
  clear: both;
}

@media (max-width: 767px) {
  .breadcrumbs .container {
    padding: 0;
  }
}

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid #dedede;
}

.breadcrumbs ul:before,
.breadcrumbs ul:after {
  content: " ";
  display: table;
}

.breadcrumbs ul:after {
  clear: both;
}

.breadcrumbs__list {
  border-left: 1px solid #dedede;
  color: transparent;
}

.breadcrumbs__list:before,
.breadcrumbs__list:after {
  content: " ";
  display: table;
}

.breadcrumbs__list:after {
  clear: both;
}

.breadcrumbs__list > li {
  float: left;
  background: #fff;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  padding: 5px 18px;
  margin-top: -1px;
}

.breadcrumbs__list > li:last-child a {
  background: none;
}

.breadcrumbs__list > li:last-child a:after {
  display: none;
}

.breadcrumbs__list > li > span {
  font-size: 12px;
  color: #808080;
  margin-top: -1px;
  text-transform: uppercase;
  display: block;
  padding-right: 10px;
  padding-bottom: 1px;
}

.breadcrumbs__list > span {
  float: left;
  background: #fff;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  padding: 5px 18px;
  margin-top: -1px;
  display: block !important;
}

.breadcrumbs__list > span:last-child a {
  background: none;
}

.breadcrumbs__list > span:last-child a:after {
  display: none;
}

.breadcrumbs__list > span > span {
  font-size: 12px;
  color: #808080;
  margin-top: -1px;
  text-transform: uppercase;
  display: block;
  padding-right: 10px;
  padding-bottom: 1px;
}

.breadcrumbs__item {
  float: left;
  background: #fff;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  padding: 5px 18px;
  margin-top: -1px;
  display: block !important;
}

.breadcrumbs__item:last-child a {
  background: none;
}

.breadcrumbs__item:last-child a:after {
  display: none;
}

.breadcrumbs a {
  font-size: 12px;
  color: #808080;
  text-transform: uppercase;
  display: block;
}

.breadcrumbs a:after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-size: 6px;
  margin: 0 0 0 10px;
}

.breadcrumbs__link {
  font-size: 12px;
  color: #808080;
  text-transform: uppercase;
  display: block;
}

.breadcrumbs__link:after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-size: 6px;
  margin: 0 0 0 10px;
}