/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 5px;
  border: 2px solid #000;
  background: #4c4c4c;
  color: #fff; }

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  overflow: hidden; }

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */ }

/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px; }

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible; }

.tooltipster-base .tooltipster-content {
  overflow: hidden; }

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; }

.tooltipster-arrow span, .tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute; }

.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px; }

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px; }

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px; }

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px; }

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto; }

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
  left: 6px; }

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px; }

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
  right: 6px; }

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px; }

.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px; }

.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px; }

.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px; }

.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px; }

/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity; }

.tooltipster-fade-show {
  opacity: 1; }

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform; }

.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  top: 0;
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0px !important;
  opacity: 0; }

.tooltipster-slide {
  left: -40px;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0px !important;
  opacity: 0; }

/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }
.tooltipster-light {
  border-radius: 5px;
  border: 1px solid #cccccc;
  background: #ededed;
  color: #666666; }

.tooltipster-light .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px; }
html, body {
  background-color: #fff;
  font-size: 13px;
  font-family: "Effra", sans-serif;
  line-height: 16px;
  font-weight: 400;
  font-style: normal;
  min-width: 1000px;
  height: 100%; }

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0; }

img {
  border: none; }

@font-face {
  font-family: "Effra";
  src: url("/assets/Effra-Regular.eot");
  src: url("/assets/Effra-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/Effra-Regular.woff") format("woff"), url("/assets/Effra-Regular.ttf") format("truetype"), url("/assets/Effra-Regular.svg#Effra") format("svg");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: "Effra";
  src: url("/assets/Effra-Italic.eot");
  src: url("/assets/Effra-Italic.eot?#iefix") format("embedded-opentype"), url("/assets/Effra-Italic.woff") format("woff"), url("/assets/Effra-Italic.ttf") format("truetype"), url("/assets/Effra-Italic.svg#Effra") format("svg");
  font-weight: 400;
  font-style: italic; }
@font-face {
  font-family: "Effra";
  src: url("/assets/Effra-Medium.eot");
  src: url("/assets/Effra-Medium.eot?#iefix") format("embedded-opentype"), url("/assets/Effra-Medium.woff") format("woff"), url("/assets/Effra-Medium.ttf") format("truetype"), url("/assets/Effra-Medium.svg#Effra") format("svg");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "Effra";
  src: url("/assets/Effra-Bold.eot");
  src: url("/assets/Effra-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/Effra-Bold.woff") format("woff"), url("/assets/Effra-Bold.ttf") format("truetype"), url("/assets/Effra-Bold.svg#Effra") format("svg");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: "Effra";
  src: url("/assets/Effra-MediumItalic.eot");
  src: url("/assets/Effra-MediumItalic.eot?#iefix") format("embedded-opentype"), url("/assets/Effra-MediumItalic.woff") format("woff"), url("/assets/Effra-MediumItalic.ttf") format("truetype"), url("/assets/Effra-MediumItalic.svg#Effra") format("svg");
  font-weight: 500;
  font-style: italic; }
@font-face {
  font-family: "Effra";
  src: url("/assets/Effra-BoldItalic.eot");
  src: url("/assets/Effra-BoldItalic.eot?#iefix") format("embedded-opentype"), url("/assets/Effra-BoldItalic.woff") format("woff"), url("/assets/Effra-BoldItalic.ttf") format("truetype"), url("/assets/Effra-BoldItalic.svg#Effra") format("svg");
  font-weight: 700;
  font-style: italic; }
.input,
.textarea {
  background-color: #fff;
  border: #a9b3c5 1px solid;
  color: #909090;
  font-family: "Effra", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
  padding: 0 10px; }
  .input::-webkit-input-placeholder,
  .textarea::-webkit-input-placeholder {
    color: #909090;
    font-style: italic; }
  .input:-moz-placeholder,
  .textarea:-moz-placeholder {
    color: #909090;
    font-style: italic; }
  .input::-moz-placeholder,
  .textarea::-moz-placeholder {
    color: #909090;
    font-style: italic; }
  .input:-ms-input-placeholder,
  .textarea:-ms-input-placeholder {
    color: #909090;
    font-style: italic; }

.input {
  height: 35px; }

.textarea {
  padding: 10px;
  resize: none; }

.field_item {
  display: inline-block;
  width: 100%;
  margin-bottom: 26px; }
  .field_item .field_error {
    width: 100%;
    float: right; }
    .field_item .field_error .input,
    .field_item .field_error .textarea {
      border: #f15a29 1px solid;
      width: 100%; }
  .field_item .input,
  .field_item .textarea {
    width: 100%;
    float: right; }
  .field_item .textarea {
    height: 90px; }

.field_files {
  width: 100%;
  float: right; }
  .field_files .field_error {
    width: 64%;
    float: left; }
    .field_files .field_error .input {
      width: 100%; }
  .field_files .input {
    width: 64%; }

.upload_files {
  display: inline-block;
  width: 100%;
  margin-top: 16px; }
  .upload_files ul {
    list-style: none; }
    .upload_files ul li {
      overflow: hidden; }
      .upload_files ul li .file_delete {
        background: url(/assets/delete_file_icon.png) no-repeat;
        display: inline-block;
        width: 11px;
        height: 11px;
        position: relative;
        top: 1px;
        margin-right: 5px; }
      .upload_files ul li a:not(.file_delete) {
        display: inline;
        color: #48a2ff;
        font-size: 13px;
        word-wrap: break-word;
        word-break: break-all;
        text-decoration: none;
        font-style: italic;
        font-weight: lighter; }
  .upload_files .attach_item {
    position: relative;
    border-left: 1px solid #c2d5e1;
    padding: 2px 0 2px 8px; }

.field_item + .captcha {
  margin-top: -16px; }

.fileinput-button {
  position: relative; }
  .fileinput-button .button_upload {
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
    font-family: "Effra", sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    height: 37px;
    line-height: 37px;
    background-color: #4ca6df;
    width: 100%;
    height: 35px;
    line-height: 35px; }
    .fileinput-button .button_upload:hover {
      background-color: #3d97d1; }
  .fileinput-button .uploader {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    margin: 0;
    border: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer; }

.file_format_error {
  color: #f15a29;
  display: inline-block;
  width: 100%;
  font-size: 13px;
  line-height: 15px; }

.files_list .uploader-files {
  border-left: #c2d5e1 1px solid;
  list-style: none;
  padding-left: 8px;
  margin-top: 10px; }
  .files_list .uploader-files li {
    font-size: 13px;
    line-height: 13px; }
    .files_list .uploader-files li a.icon.delete {
      background: url(/assets/delete_icon.png) no-repeat;
      display: inline-block;
      vertical-align: top;
      width: 8px;
      height: 8px;
      margin: 3px 8px 5px 0; }
    .files_list .uploader-files li span {
      color: #397fdd;
      font-style: italic; }
      .files_list .uploader-files li span.file_error {
        color: #f15a29; }

.captcha {
  display: inline-block;
  width: 100%; }
  .captcha + .button_send {
    margin-top: 21px; }

.button_send {
  border: none;
  cursor: pointer;
  color: #fff;
  display: block;
  font-family: "Effra", sans-serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  font-size: 18px;
  height: 49px;
  line-height: 49px;
  background-color: #fc932c;
  clear: both;
  display: block;
  width: 100%;
  color: #fff; }
  .button_send:hover {
    background-color: #f38921; }

.validation_error {
  color: #f15a29;
  font-size: 11px;
  font-style: italic;
  display: inline-block;
  width: 100%; }

.easy-autocomplete {
  position: relative; }

.container_welcome .easy-autocomplete input {
  box-shadow: 0 4px 30px #e2e2e2;
  -moz-box-shadow: 0 4px 30px #e2e2e2;
  -webkit-box-shadow: 0 4px 30px #e2e2e2;
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border: none;
  color: #919191;
  font-size: 16px;
  width: 100%;
  padding: 0 100px 0 30px;
  height: 49px; }
.container_welcome .easy-autocomplete:before {
  background: url(/assets/icons_sprite.png) left -298px no-repeat;
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 6px;
  right: 56px; }

.easy-autocomplete a {
  display: block; }

.easy-autocomplete.eac-blue-light input:hover, .easy-autocomplete.eac-blue-light input:focus {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6); }

.easy-autocomplete.eac-blue-light ul {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6); }

.easy-autocomplete.eac-blue-light ul li, .easy-autocomplete.eac-blue-light ul .eac-category {
  border-color: #66afe9; }

.easy-autocomplete.eac-blue-light ul li.selected, .easy-autocomplete.eac-blue-light ul .eac-category.selected {
  background-color: #ecf5fc; }

.easy-autocomplete.eac-green-light input:hover, .easy-autocomplete.eac-green-light input:focus {
  border-color: #41db00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6); }

.easy-autocomplete.eac-green-light ul {
  border-color: #41db00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6); }

.easy-autocomplete.eac-green-light ul li, .easy-autocomplete.eac-green-light ul .eac-category {
  border-color: #41db00; }

.easy-autocomplete.eac-green-light ul li.selected, .easy-autocomplete.eac-green-light ul .eac-category.selected {
  background-color: #9eff75; }

.easy-autocomplete.eac-red-light input:hover, .easy-autocomplete.eac-red-light input:focus {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6); }

.easy-autocomplete.eac-red-light ul {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6); }

.easy-autocomplete.eac-red-light ul li, .easy-autocomplete.eac-red-light ul .eac-category {
  border-color: #ff5b5b; }

.easy-autocomplete.eac-red-light ul li.selected, .easy-autocomplete.eac-red-light ul .eac-category.selected {
  background-color: #ff8e8e; }

.easy-autocomplete.eac-yellow-light input:hover, .easy-autocomplete.eac-yellow-light input:focus {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6); }

.easy-autocomplete.eac-yellow-light ul {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6); }

.easy-autocomplete.eac-yellow-light ul li, .easy-autocomplete.eac-yellow-light ul .eac-category {
  border-color: #ffdb00; }

.easy-autocomplete.eac-yellow-light ul li.selected, .easy-autocomplete.eac-yellow-light ul .eac-category.selected {
  background-color: #ffe233; }

.easy-autocomplete.eac-dark-light input:hover, .easy-autocomplete.eac-dark-light input:focus {
  border-color: #333333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6); }

.easy-autocomplete.eac-dark-light ul {
  border-color: #333333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6); }

.easy-autocomplete.eac-dark-light ul li, .easy-autocomplete.eac-dark-light ul .eac-category {
  border-color: #333333; }

.easy-autocomplete.eac-dark-light ul li.selected, .easy-autocomplete.eac-dark-light ul .eac-category.selected {
  background-color: #4d4d4d;
  color: #fff; }

.easy-autocomplete.eac-dark {
  color: #fff; }

.easy-autocomplete.eac-dark input {
  background-color: #404040;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6; }

.easy-autocomplete.eac-dark input:hover, .easy-autocomplete.eac-dark input:focus {
  border-color: #333333;
  box-shadow: 0; }

.easy-autocomplete.eac-dark ul {
  border-color: #333333; }

.easy-autocomplete.eac-dark ul li, .easy-autocomplete.eac-dark ul .eac-category {
  background-color: #404040;
  border-color: #333333; }

.easy-autocomplete.eac-dark ul li.selected, .easy-autocomplete.eac-dark ul .eac-category.selected {
  background-color: #737373;
  color: #f6f6f6; }

.easy-autocomplete.eac-dark-glass {
  color: #fff; }

.easy-autocomplete.eac-dark-glass input {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6; }

.easy-autocomplete.eac-dark-glass input:hover, .easy-autocomplete.eac-dark-glass input:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0; }

.easy-autocomplete.eac-dark-glass ul {
  border-color: rgba(0, 0, 0, 0.8); }

.easy-autocomplete.eac-dark-glass ul li, .easy-autocomplete.eac-dark-glass ul .eac-category {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8); }

.easy-autocomplete.eac-dark-glass ul li.selected, .easy-autocomplete.eac-dark-glass ul .eac-category.selected {
  background-color: rgba(64, 64, 64, 0.8);
  color: #f6f6f6; }

.easy-autocomplete.eac-dark-glass ul li:last-child, .easy-autocomplete.eac-dark-glass ul .eac-category:last-child {
  border-radius: 0 0 4px 4px; }

.easy-autocomplete.eac-blue {
  color: #fff; }

.easy-autocomplete.eac-blue input {
  background-color: #6d9ed1;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6; }

.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
  color: #919191; }

.easy-autocomplete.eac-blue input:-moz-placeholder {
  color: #919191; }

.easy-autocomplete.eac-blue input::-moz-placeholder {
  color: #919191; }

.easy-autocomplete.eac-blue input:-ms-input-placeholder {
  color: #919191; }

.easy-autocomplete.eac-blue input:hover, .easy-autocomplete.eac-blue input:focus {
  border-color: #5a91cb;
  box-shadow: 0; }

.easy-autocomplete.eac-blue ul {
  border-color: #5a91cb; }

.easy-autocomplete.eac-blue ul li, .easy-autocomplete.eac-blue ul .eac-category {
  background-color: #6d9ed1;
  border-color: #5a91cb; }

.easy-autocomplete.eac-blue ul li.selected, .easy-autocomplete.eac-blue ul .eac-category.selected {
  background-color: #94b8dd;
  color: #f6f6f6; }

.easy-autocomplete.eac-yellow {
  color: #333; }

.easy-autocomplete.eac-yellow input {
  background-color: #ffdb7e;
  border-color: #333;
  border-radius: 4px;
  box-shadow: 0;
  color: #333; }

.easy-autocomplete.eac-yellow input:hover, .easy-autocomplete.eac-yellow input:focus {
  border-color: #333;
  box-shadow: 0; }

.easy-autocomplete.eac-yellow ul {
  border-color: #333; }

.easy-autocomplete.eac-yellow ul li, .easy-autocomplete.eac-yellow ul .eac-category {
  background-color: #ffdb7e;
  border-color: #333; }

.easy-autocomplete.eac-yellow ul li.selected, .easy-autocomplete.eac-yellow ul .eac-category.selected {
  background-color: #ffe9b1;
  color: #333; }

.easy-autocomplete.eac-purple {
  color: #333; }

.easy-autocomplete.eac-purple input {
  background-color: #d6d1e7;
  border-color: #b8afd5;
  box-shadow: 0;
  color: #333; }

.easy-autocomplete.eac-purple input:hover, .easy-autocomplete.eac-purple input:focus {
  border-color: #333;
  box-shadow: 0; }

.easy-autocomplete.eac-purple ul {
  border-color: #333; }

.easy-autocomplete.eac-purple ul li, .easy-autocomplete.eac-purple ul .eac-category {
  background-color: #d6d1e7;
  border-color: #333; }

.easy-autocomplete.eac-purple ul li.selected, .easy-autocomplete.eac-purple ul .eac-category.selected {
  background-color: #ebe8f3;
  color: #333; }

.easy-autocomplete.eac-bootstrap input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  color: #555;
  padding: 6px 12px; }

.easy-autocomplete-container {
  left: 0;
  top: calc(100% + 6px);
  position: absolute;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  box-shadow: 0 4px 30px #e2e2e2;
  -moz-box-shadow: 0 4px 30px #e2e2e2;
  -webkit-box-shadow: 0 4px 30px #e2e2e2; }

.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: 0; }

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 12px; }

.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 2px 2px;
  border-width: 0 1px 1px; }

.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #fbe6d2;
  cursor: pointer; }

.easy-autocomplete-container ul li.selected div {
  font-weight: normal; }

.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all; }

.easy-autocomplete-container ul li b {
  font-weight: bold; }

.easy-autocomplete-container ul .eac-category {
  font-color: #aaa;
  font-style: italic; }

.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em; }

.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px; }

.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative; }

.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  outline: none !important;
  position: relative; }
  .select2-container:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .select2-container input {
    outline: none !important; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 32px;
    font-size: 15px;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
    position: relative;
    z-index: 2; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      outline: none !important;
      border: none !important;
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #5f615f;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    color: #5a5a5a;
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #5f615f; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #5a5a5a;
    line-height: 30px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-color: #f3f3f3;
    border-left: #5f615f 1px solid;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #a46a30 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -3px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #a46a30 transparent;
  border-width: 0 4px 5px 4px; }
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }
.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0; }
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #b7c4cf; }
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0; }
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }
.select2-container--default .select2-results__option[role=group] {
  padding: 0; }
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #5a5a5a; }
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #ffb452;
  color: #5a5a5a; }
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--rate_select .select2-selection--single {
  border: #a9b3c5 1px solid; }
  .select2-container--rate_select .select2-selection--single .select2-selection__arrow {
    border-left: #a9b3c5 1px solid;
    background-color: #f1f5f9; }
    .select2-container--rate_select .select2-selection--single .select2-selection__arrow b {
      border-color: #808381 transparent transparent transparent; }
.select2-container--rate_select .select2-results__option--highlighted[aria-selected] {
  color: #fff; }
.select2-container--rate_select.select2-container--open .select2-dropdown {
  border: #a9b3c5 1px solid; }
  .select2-container--rate_select.select2-container--open .select2-dropdown.select2-dropdown--below {
    border-top: none; }
  .select2-container--rate_select.select2-container--open .select2-dropdown.select2-dropdown--above {
    border-bottom: none; }

.irs {
  position: relative;
  display: block;
  width: 130px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.irs-line {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #2f3430;
  border: #ececec 5px solid;
  height: 12px;
  position: relative;
  display: block;
  /*overflow: hidden;*/
  outline: none !important;
  top: 7px;
  width: 140px;
  left: -8px; }

.irs-line-left, .irs-line-mid, .irs-line-right {
  position: absolute;
  display: block;
  top: -2px; }

.irs-line-left {
  background-color: #2f3430;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  left: -3px;
  display: block;
  width: 6px;
  height: 6px; }

.irs-line-mid {
  left: 9%;
  width: 82%; }

.irs-line-right {
  right: -3px;
  background-color: #2f3430;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  display: block;
  width: 6px;
  height: 6px; }

.irs-bar {
  background-color: #ffaf47;
  position: absolute;
  display: block;
  left: 0;
  width: 0;
  height: 2px; }

.irs-bar-edge {
  position: absolute;
  display: block;
  top: 0;
  left: 0; }

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0; }

.irs-slider {
  position: absolute;
  display: block;
  cursor: default;
  z-index: 1; }

.irs-slider.type_last {
  z-index: 2; }

.irs-min {
  position: absolute;
  display: block;
  left: 0;
  cursor: default; }

.irs-max {
  position: absolute;
  display: block;
  right: 0;
  cursor: default; }

.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
  z-index: 1; }

.irs-single,
.irs-from,
.irs-to {
  background-color: #fff;
  box-shadow: 0px 0px 10px #d5d2cd;
  -moz-box-shadow: 0px 0px 10px #d5d2cd;
  -webkit-box-shadow: 0px 0px 10px #d5d2cd;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  width: 14px;
  height: 26px; }

.irs-single:before,
.irs-from:before,
.irs-to:before {
  display: block;
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  background-color: #ffaf47;
  top: 7px;
  left: 4px; }

.irs-single:after,
.irs-from:after,
.irs-to:after {
  display: block;
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  background-color: #ffaf47;
  top: 7px;
  right: 4px; }

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px; }

.irs-with-grid .irs-grid {
  display: block; }

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000; }

.irs-grid-pol.small {
  height: 4px; }

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000; }

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2; }

.irs-disabled {
  opacity: 0.4; }

.lt-ie9 .irs-disabled {
  filter: alpha(opacity=40); }

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

.top_services_carousel .owl-nav > div,
.compare_services_carousel .owl-nav > div {
  background: url(/assets/top_services_arrows.png) no-repeat;
  background-color: #c4d5e2;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  text-indent: -99999px; }
  .top_services_carousel .owl-nav > div:hover,
  .compare_services_carousel .owl-nav > div:hover {
    background-color: #a4bdd1; }
.top_services_carousel .owl-nav .owl-prev,
.compare_services_carousel .owl-nav .owl-prev {
  background-position: center top;
  left: -40px; }
.top_services_carousel .owl-nav .owl-next,
.compare_services_carousel .owl-nav .owl-next {
  background-position: center bottom;
  right: -40px; }

.post_carousel_content .owl-nav div {
  border: #d8d8d8 2px solid;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: url(/assets/post_carousel_arrows.png) no-repeat;
  position: absolute;
  top: 34%;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  color: transparent; }
  .post_carousel_content .owl-nav div:hover {
    background-color: #aabdcc; }
.post_carousel_content .owl-nav .owl-prev {
  background-position: center -2px;
  left: -48px; }
.post_carousel_content .owl-nav .owl-next {
  background-position: center -40px;
  right: -48px; }

.compare_services_carousel .owl-stage-outer {
  padding: 14px 0; }

.checker span {
  background: url(/assets/checkbox.png) no-repeat;
  display: block;
  width: 31px;
  height: 31px; }
  .checker span.checked {
    background-position: 0 bottom; }
  .checker span input {
    border: none;
    outline: none;
    opacity: 0;
    width: 100%;
    height: 100%; }

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  box-shadow: 0 5px 10px #ced7de;
  -moz-box-shadow: 0 5px 10px #ced7de;
  -webkit-box-shadow: 0 5px 10px #ced7de;
  border-radius: 5px;
  border-top: #cfcfcf 1px solid;
  background: #f1f1f1;
  color: #898a8a; }
  .tooltipster-default .tooltipster-content {
    font-size: 14px;
    line-height: 16px;
    padding: 8px 10px;
    overflow: hidden; }
  .tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
    /* border-color: ... !important; */ }

/* Use this next selector to style things like font-size and line-height: */
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px; }

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible; }
  .tooltipster-base .tooltipster-content {
    overflow: hidden; }

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; }
  .tooltipster-arrow span {
    display: block;
    width: 0;
    height: 0;
    position: absolute; }

.tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute; }

.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px; }

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px; }

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px; }

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px; }

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto; }

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto; }

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
  left: 6px; }

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px; }

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
  right: 6px; }

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px; }

.tooltipster-arrow-left span {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px; }
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px;
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px; }

.tooltipster-arrow-right span {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px; }
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px;
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px; }

/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity; }

.tooltipster-fade-show {
  opacity: 1; }

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform; }

.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  top: 0;
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0px !important;
  opacity: 0; }

.tooltipster-slide {
  left: -40px;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }
  .tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0px !important;
    opacity: 0; }

/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }

.top_services {
  background-color: #f3f3f3;
  padding: 18px 0 50px 0; }
  .top_services .section_title {
    width: 1000px;
    margin: 0 auto !important;
    position: relative;
    padding-bottom: 2px; }
    .top_services .section_title h1 {
      color: #3d423f;
      display: inline-block;
      line-height: 50px;
      text-align: center;
      padding-bottom: 2px;
      position: relative;
      z-index: 2;
      padding: 0 20px;
      margin-bottom: 22px; }

.service_item {
  box-shadow: 0 -5px 8px #e6eae7;
  -moz-box-shadow: 0 -5px 8px #e6eae7;
  -webkit-box-shadow: 0 -5px 8px #e6eae7;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #fff;
  width: 312px;
  float: left;
  margin: 0 32px 26px 0;
  padding: 13px 18px 24px 18px;
  text-align: left;
  position: relative; }
  .service_item:last-child {
    margin-right: 0; }
  .service_item .service_content_item {
    width: 140px;
    float: right;
    margin-top: 11px; }
  .service_item .service_links {
    float: right;
    width: 140px; }
    .service_item .service_links .button_review {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 29px;
      line-height: 25px;
      background-color: #fff;
      border: #1aba21 2px solid;
      color: #418e4e;
      width: 140px;
      float: left;
      margin-top: 14px; }
      .service_item .service_links .button_review:hover {
        background-color: #e9faec; }
    .service_item .service_links .button_visit {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 37px;
      line-height: 37px;
      background-color: #fc932c;
      width: 270px;
      float: right;
      margin-top: 26px; }
      .service_item .service_links .button_visit:hover {
        background-color: #f38921; }
  .service_item .service_title {
    padding-bottom: 11px; }
    .service_item .service_title a {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      display: block;
      color: #a3aab2;
      font-size: 20px;
      line-height: 22px;
      font-weight: 700;
      text-decoration: none; }
  .service_item .service_rate {
    width: 100%;
    float: left; }
    .service_item .service_rate .rating_wrapper div.star-rating {
      background-size: 22px;
      width: 22px;
      height: 19px;
      margin: 0 3px 0 3px; }
      .service_item .service_rate .rating_wrapper div.star-rating a {
        background-size: 22px;
        width: 22px; }
      .service_item .service_rate .rating_wrapper div.star-rating-on a {
        background-position: 0 bottom !important; }
      .service_item .service_rate .rating_wrapper div.star-rating-hover a {
        background-position: 0 bottom; }
    .service_item .service_rate .rating_wrapper div .rating-cancel + .star-rating {
      margin: 0 3px 0 0; }
  .service_item .reviews_link {
    border-top: #dee4e8 1px solid;
    border-bottom: #dee4e8 1px solid;
    color: #397fdd;
    font-size: 14px;
    font-style: italic;
    margin-top: 11px;
    width: 100%;
    padding: 9px 0;
    text-decoration: none;
    display: inline-block; }
    .service_item .reviews_link:hover {
      text-decoration: none; }
  .service_item .service_photo {
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border: #d9d9d9 2px solid;
    display: table;
    float: left;
    width: 114px;
    height: 114px;
    margin: 10px auto 13px; }
    .service_item .service_photo .service_badge {
      position: absolute;
      top: -20px;
      right: -20px; }
    .service_item .service_photo .service_align {
      display: table-cell;
      vertical-align: middle;
      text-align: center; }
      .service_item .service_photo .service_align img {
        display: inline-block;
        max-width: 80%;
        width: 80%;
        text-align: center; }
  .service_item .service_reviews {
    float: right;
    width: 45%;
    margin-bottom: 15px; }
    .service_item .service_reviews .reviews_link {
      background: url(/assets/reviews_icon.png) left center no-repeat;
      color: #00a5ff;
      display: inline-block;
      font-size: 14px;
      line-height: 25px;
      text-decoration: none;
      padding-left: 30px; }
    .service_item .service_reviews a:not(.reviews_link) {
      color: #00a5ff;
      font-size: 16px;
      text-align: center;
      margin-top: 5px; }
      .service_item .service_reviews a:not(.reviews_link):hover {
        text-decoration: none; }
  .service_item .service_comment {
    font-size: 16px;
    line-height: 19px;
    width: 100%;
    clear: both;
    overflow: hidden;
    position: relative;
    padding-top: 18px; }
    .service_item .service_comment span {
      display: inline-block;
      color: #727272;
      font-size: 16px;
      font-weight: 500;
      font-style: italic;
      margin-bottom: 13px; }
    .service_item .service_comment p {
      color: #727272;
      font-style: italic;
      line-height: 18px;
      font-size: 15px; }
    .service_item .service_comment > a {
      color: #397fdd;
      float: left;
      font-size: 14px;
      font-style: italic;
      margin-top: 7px;
      text-decoration: none; }
      .service_item .service_comment > a:hover {
        text-decoration: underline; }

/* popular services */
.services_category {
  background-color: #f3f3f3;
  padding: 36px 0 66px 0; }

.popular_services {
  overflow: hidden; }
  .popular_services .section_title {
    margin: 22px 0 26px 0; }

.popular_services_item {
  background-color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: #e5e5e5 1px solid;
  float: left;
  width: 212px;
  height: 152px;
  text-decoration: none;
  margin: 0 13px 23px 0;
  transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease; }
  .popular_services_item:last-child {
    margin-right: 0; }
  .popular_services_item:hover {
    box-shadow: 0 5px 10px #e4e4e4;
    -moz-box-shadow: 0 5px 10px #e4e4e4;
    -webkit-box-shadow: 0 5px 10px #e4e4e4;
    border: transparent 1px solid; }
  .popular_services_item .popular_services_icon {
    width: 100%;
    height: 118px;
    display: inline-block;
    text-align: center;
    margin: 0 auto; }
    .popular_services_item .popular_services_icon .popular_services_align {
      display: block;
      height: 59px;
      margin-bottom: 15px;
      margin-top: 25px; }
  .popular_services_item b {
    color: #212121;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 90%;
    margin: 0 auto; }

.popular_services_block .popular_services_icon.icon_1 .popular_services_align {
  background: url(/assets/services_icon_1.svg) no-repeat center; }
.popular_services_block .popular_services_icon.icon_2 .popular_services_align {
  background: url(/assets/services_icon_2.svg) no-repeat center; }
.popular_services_block .popular_services_icon.icon_3 .popular_services_align {
  background: url(/assets/services_icon_3.svg) no-repeat center; }
.popular_services_block:nth-child(3) .popular_services_icon.icon_1 .popular_services_align {
  background: url(/assets/services_icon_4.svg) no-repeat center; }
.popular_services_block:nth-child(3) .popular_services_icon.icon_2 .popular_services_align {
  background: url(/assets/services_icon_5.svg) no-repeat center; }
.popular_services_block:nth-child(3) .popular_services_icon.icon_3 .popular_services_align {
  background: url(/assets/services_icon_6.svg) no-repeat center; }

/* end popular services */
/* Filter */
.filter {
  float: right;
  width: 312px;
  margin-left: 20px; }

.filter_wrapper {
  box-shadow: 4px 5px 30px rgba(198, 194, 189, 0.6);
  -moz-box-shadow: 4px 5px 30px rgba(198, 194, 189, 0.6);
  -webkit-box-shadow: 4px 5px 30px rgba(198, 194, 189, 0.6);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #fff;
  width: 100%;
  display: inline-block;
  padding: 33px 19px 20px 20px;
  position: relative; }
  .filter_wrapper:before {
    content: '';
    display: block;
    width: 1px;
    height: 400px;
    position: absolute;
    border-left: #ffaf47 1px solid;
    top: 50px;
    left: 0px; }
  .filter_wrapper .button {
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
    font-family: "Effra", sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    height: 37px;
    line-height: 37px;
    background-color: #fc932c;
    display: block;
    width: 100%;
    margin-top: 12px; }
    .filter_wrapper .button:hover {
      background-color: #f38921; }

.filter_steps {
  display: inline-block;
  width: 100%; }
  .filter_steps .filter_step {
    border-bottom: #cadbe4 1px solid;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 30px; }
    .filter_steps .filter_step:nth-child(2) {
      margin-bottom: 22px;
      padding-bottom: 25px; }
      .filter_steps .filter_step:nth-child(2) h3 {
        margin-bottom: 32px; }
    .filter_steps .filter_step:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-top: 4px;
      padding-bottom: 0; }
      .filter_steps .filter_step:last-child h3 {
        margin-bottom: 8px; }
    .filter_steps .filter_step h3 {
      color: #212121;
      font-size: 22px;
      font-weight: 500;
      position: relative;
      padding-left: 7px;
      margin-bottom: 18px; }
      .filter_steps .filter_step h3 span {
        border-radius: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        background-color: #fff;
        display: inline-block;
        width: 36px;
        height: 36px;
        text-align: center;
        line-height: 34px;
        position: absolute;
        top: -11px;
        color: #212121;
        border: #ffaf47 1px solid;
        left: -37px;
        font-size: 18px; }
    .filter_steps .filter_step .select2-container {
      min-width: 100%;
      max-width: 100%; }

.select_feature_item {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 32px; }
  .select_feature_item:last-child {
    margin-bottom: 0; }
  .select_feature_item label {
    color: #5a5a5a;
    float: left;
    font-size: 14px;
    line-height: 24px;
    width: 25%; }
  .select_feature_item > .irs {
    width: 50%;
    float: left; }
    .select_feature_item > .irs + span {
      float: left; }
  .select_feature_item .feature_value {
    color: #45505a;
    float: right;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px; }
    .select_feature_item .feature_value.quality_value {
      border: 1px solid #ffaf47;
      border-radius: 50%;
      text-align: center;
      width: 32px;
      height: 32px;
      line-height: 30px;
      display: inline-block;
      margin-top: -5px;
      font-size: 20px;
      font-weight: 500;
      color: #5a5a5a; }
  .select_feature_item .irs {
    text-indent: -99999px; }
  .select_feature_item .select_feature_subitem {
    float: left;
    margin-right: 22px; }
    .select_feature_item .select_feature_subitem label {
      width: auto;
      float: left;
      line-height: 31px;
      margin-right: 10px; }
    .select_feature_item .select_feature_subitem .checker {
      float: left; }

.filter_found {
  color: #5a5a5a;
  margin-top: 3px;
  overflow: hidden;
  line-height: 70px; }
  .filter_found span {
    color: #b8b8b8;
    display: inline-block;
    vertical-align: top;
    font-size: 70px;
    font-weight: 700; }
  .filter_found p {
    display: inline-block;
    vertical-align: top;
    font-size: 20px; }

/* End Filter */
.search_section {
  background-color: #fff; }
  .search_section .section {
    border-top: #ffb452 1px solid;
    border-bottom: #ffb452 1px solid;
    display: table;
    padding: 33px 0 30px 0; }

.search h2 {
  text-align: center;
  margin-bottom: 24px; }
.search .search_input {
  outline: none;
  width: 100%;
  display: inline-block;
  font-size: 30px;
  font-weight: 300; }

/* statistics */
.statistics {
  border-top: #ffb452 1px solid;
  overflow: hidden;
  margin-top: 31px;
  padding-top: 29px; }

.statistic_item {
  border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -webkit-border-radius: 0 20px 20px 0;
  background-color: #fff;
  border: #d8d8d8 2px solid;
  float: left;
  width: 290px;
  height: 32px;
  margin-right: 65px; }
  .statistic_item:last-child {
    margin-right: 0; }
  .statistic_item .statistic_icon {
    float: left;
    width: 52px;
    height: 32px;
    margin: -2px 0 0 -2px; }
  .statistic_item.statistic_reviews .statistic_icon {
    background: #5fb070 url(/assets/icons_sprite.png) 16px -36px no-repeat; }
  .statistic_item.statistic_comments .statistic_icon {
    background: #5fb070 url(/assets/icons_sprite.png) 16px -71px no-repeat; }
  .statistic_item.statistic_services .statistic_icon {
    background: #5fb070 url(/assets/icons_sprite.png) 16px -104px no-repeat; }
  .statistic_item p {
    color: #212121;
    float: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-indent: 25px; }
  .statistic_item span {
    border-left: #d8d8d8 2px solid;
    color: #212121;
    float: right;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    width: 62px;
    text-align: center; }

/* end statistics */
.section_wrapper.recent_posts .section {
  border-top: #ffb452 1px solid;
  border-bottom: #ffb452 1px solid;
  padding: 34px 0 29px 0; }
.section_wrapper.recent_posts .section_title {
  border-bottom: none !important;
  text-align: center;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important; }

/* Post carousel */
.post_carousel {
  overflow: hidden;
  text-align: center;
  margin-top: 29px; }
  .post_carousel .post_carousel_content {
    max-width: 690px;
    width: 100%;
    margin: 0 auto; }
  .post_carousel .post_carousel_item {
    width: 210px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-top: 4px; }
    .post_carousel .post_carousel_item .post_carousel_info {
      position: relative;
      display: table;
      width: 100%;
      height: 171px;
      text-decoration: none;
      margin-bottom: 9px; }
      .post_carousel .post_carousel_item .post_carousel_info:hover .post_carousel_frame .post_carousel_blackout {
        background: #ffaf47; }
      .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 171px; }
        .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame .post_carousel_blackout {
          background: rgba(255, 175, 71, 0.8);
          position: absolute;
          z-index: 5;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          transition: background 0.3s ease;
          -moz-transition: background 0.3s ease;
          -webkit-transition: background 0.3s ease; }
        .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame .post_carousel_photo {
          width: 100%;
          height: 100%; }
          .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame .post_carousel_photo img {
            border-radius: 5px;
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            max-width: 100%;
            height: auto; }
      .post_carousel .post_carousel_item .post_carousel_info .post_carousel_text {
        color: #fff;
        display: table-cell;
        vertical-align: middle;
        height: 138px;
        position: relative;
        z-index: 5;
        text-align: center;
        font-weight: 700;
        word-break: break-word;
        font-size: 28px;
        line-height: 32px;
        text-align: left;
        padding: 0 12px; }
    .post_carousel .post_carousel_item .post_carousel_details {
      padding: 20px 0 16px 0; }
      .post_carousel .post_carousel_item .post_carousel_details p {
        color: #727272;
        font-size: 14px;
        line-height: 18px;
        text-align: justify; }
  .post_carousel + .show_more {
    margin-top: 40px; }

.show_more {
  width: 100%;
  display: inline-block;
  position: relative; }
  .show_more .button_show_more {
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
    font-family: "Effra", sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    height: 49px;
    line-height: 45px;
    background-color: #fff;
    border: #1aba21 2px solid;
    color: #418e4e;
    width: 340px;
    position: relative;
    margin: 0 auto; }
    .show_more .button_show_more:hover {
      background-color: #e9faec; }

/* End Post carousel */
/* receive discount */
.section_wrapper.receive_discount {
  margin-bottom: 0; }

.receive_discount {
  padding: 28px 0 34px 0; }
  .receive_discount label {
    color: #3d423f;
    display: block;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    margin: 5px 0 24px 0;
    text-align: center; }
  .receive_discount .field_error {
    float: left;
    width: 725px; }
    .receive_discount .field_error .input {
      border-bottom: #f15a29 1px solid;
      width: 100%; }
  .receive_discount .input {
    border-radius: 30px 0 0 30px;
    -moz-border-radius: 30px 0 0 30px;
    -webkit-border-radius: 30px 0 0 30px;
    box-shadow: 0 5px 30px #e2e2e2;
    -moz-box-shadow: 0 5px 30px #e2e2e2;
    -webkit-box-shadow: 0 5px 30px #e2e2e2;
    border: none;
    float: left;
    width: 725px;
    height: 49px;
    padding: 0 20px;
    margin-left: 0; }
  .receive_discount .button {
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
    font-family: "Effra", sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    font-size: 18px;
    height: 49px;
    line-height: 49px;
    background-color: #fc932c;
    border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -webkit-border-radius: 0 30px 30px 0;
    background: #fc932c url(/assets/icons_sprite.png) 95% 10px no-repeat;
    float: right;
    width: 275px;
    font-size: 15px;
    text-indent: -20px; }
    .receive_discount .button:hover {
      background-color: #f38921; }
  .receive_discount .section > label + span {
    color: #298447;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    width: 100%;
    line-height: 1em;
    margin-top: -15px; }
    .receive_discount .section > label + span:after {
      content: "";
      background: url(/assets/subscribe_success_icon.png) center no-repeat;
      height: 46px;
      margin-top: 25px;
      display: inline-block;
      width: 100%; }

/* end receive discount */
/* recent reviews */
.widget_recent_reviews .widget_content {
  padding: 9px 0; }

.recent_reviews_title {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px; }
  .recent_reviews_title span {
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #f7e7d4;
    color: #87919c;
    float: left;
    width: 23px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    margin-right: 6px; }
  .recent_reviews_title a {
    color: #87919c;
    float: left;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 3px; }

.recent_reviews_item {
  border-bottom: #e9e9e9 1px solid;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 20px 14px 20px;
  margin-bottom: 9px; }
  .recent_reviews_item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 5px; }
  .recent_reviews_item .recent_reviews_photo {
    border-top: #ededed 1px solid;
    border-bottom: #ededed 1px solid;
    background-color: #fff;
    display: table;
    float: left;
    width: 110px;
    height: 78px;
    margin-right: 18px; }
    .recent_reviews_item .recent_reviews_photo .recent_reviews_align {
      display: table-cell;
      vertical-align: middle;
      text-align: center; }
      .recent_reviews_item .recent_reviews_photo .recent_reviews_align img {
        max-width: 80%;
        height: auto; }
  .recent_reviews_item .recent_reviews_details .rating_wrapper {
    overflow: hidden;
    margin-bottom: 14px; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper div.star-rating {
      background-size: 22px;
      width: 22px;
      height: 19px;
      margin: 0 4px 0 4px; }
      .recent_reviews_item .recent_reviews_details .rating_wrapper div.star-rating a {
        background-size: 22px;
        width: 22px; }
      .recent_reviews_item .recent_reviews_details .rating_wrapper div.star-rating-on a {
        background-position: 0 bottom !important; }
      .recent_reviews_item .recent_reviews_details .rating_wrapper div.star-rating-hover a {
        background-position: 0 bottom; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper div .rating-cancel + .star-rating {
      margin: 0 4px 0 0; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper .star-rating-control {
      display: inline-block;
      width: 100%; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper:after {
      border-top: #ededed 2px solid;
      content: '';
      display: block;
      width: 65px;
      margin: 14px auto 0; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper .rating-cancel + .star-rating {
      margin-left: 0; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper .star-rating:last-child {
      margin-right: 0; }
  .recent_reviews_item .recent_reviews_details .button_review {
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
    font-family: "Effra", sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    height: 29px;
    line-height: 25px;
    background-color: #fff;
    border: #1aba21 2px solid;
    color: #418e4e;
    width: 142px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
    height: 27px;
    line-height: 23px; }
    .recent_reviews_item .recent_reviews_details .button_review:hover {
      background-color: #e9faec; }

/* end recent reviews */
.widget_top_service .widget_title {
  overflow: hidden; }
.widget_top_service .widget_content {
  padding: 10px 0 0 0; }

.top_service_item {
  border-bottom: #e9e9e9 1px solid;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 20px 8px 20px;
  margin-bottom: 19px; }
  .top_service_item:last-child {
    border-bottom: 0;
    margin-bottom: 0; }
  .top_service_item .top_service_title {
    display: inline-block;
    width: 100%;
    margin-bottom: 8px; }
    .top_service_item .top_service_title span {
      border-radius: 100%;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      background-color: #f7e7d4;
      color: #87919c;
      float: left;
      width: 23px;
      height: 23px;
      line-height: 23px;
      text-align: center;
      margin-right: 6px; }
    .top_service_item .top_service_title a {
      color: #87919c;
      float: left;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      margin-top: 3px; }
  .top_service_item .top_service_photo {
    border-top: #ededed 1px solid;
    border-bottom: #ededed 1px solid;
    background-color: #fff;
    display: table;
    float: left;
    width: 110px;
    height: 105px;
    margin-right: 15px; }
    .top_service_item .top_service_photo .top_service_align {
      display: table-cell;
      vertical-align: middle;
      text-align: center; }
      .top_service_item .top_service_photo .top_service_align img {
        max-width: 80%;
        width: 80%;
        height: auto; }
  .top_service_item .top_service_details {
    float: right; }
    .top_service_item .top_service_details .rating_wrapper {
      overflow: hidden;
      margin-bottom: 12px; }
      .top_service_item .top_service_details .rating_wrapper div.star-rating {
        background-size: 22px;
        width: 22px;
        height: 19px;
        margin: 0 4px 0 4px; }
        .top_service_item .top_service_details .rating_wrapper div.star-rating a {
          background-size: 22px;
          width: 22px; }
        .top_service_item .top_service_details .rating_wrapper div.star-rating-on a {
          background-position: 0 bottom !important; }
        .top_service_item .top_service_details .rating_wrapper div.star-rating-hover a {
          background-position: 0 bottom; }
      .top_service_item .top_service_details .rating_wrapper div .rating-cancel + .star-rating {
        margin: 0 4px 0 0; }
      .top_service_item .top_service_details .rating_wrapper .star-rating-control {
        display: inline-block;
        width: 100%; }
      .top_service_item .top_service_details .rating_wrapper:after {
        border-top: #ededed 2px solid;
        content: '';
        display: block;
        width: 65px;
        margin: 10px auto 0; }
      .top_service_item .top_service_details .rating_wrapper .rating-cancel + .star-rating {
        margin-left: 0; }
      .top_service_item .top_service_details .rating_wrapper .star-rating:last-child {
        margin-right: 0; }
    .top_service_item .top_service_details .button {
      float: right;
      clear: both;
      font-size: 14px;
      width: 140px;
      margin-bottom: 7px; }
    .top_service_item .top_service_details .button_review {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 29px;
      line-height: 25px;
      background-color: #fff;
      border: #1aba21 2px solid;
      color: #418e4e;
      height: 27px;
      line-height: 23px;
      font-weight: 400; }
      .top_service_item .top_service_details .button_review:hover {
        background-color: #e9faec; }
    .top_service_item .top_service_details .button_website {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 29px;
      line-height: 29px;
      background-color: #fc932c;
      height: 27px;
      line-height: 27px;
      font-weight: 400; }
      .top_service_item .top_service_details .button_website:hover {
        background-color: #f38921; }

.widget_best_dicounts .widget_content {
  padding: 10px 0 0 0; }
.widget_best_dicounts .top_service_photo {
  position: relative; }
.widget_best_dicounts .top_service_discount {
  background: url(/assets/top_discount_bg.png) no-repeat;
  width: 96px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  position: absolute;
  left: -20px;
  bottom: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500; }

/* Posts */
.post {
  overflow: hidden; }
  .post ul.list {
    margin: 20px;
    list-style: none; }
    .post ul.list li {
      color: #6e7881;
      font-size: 13px;
      line-height: 22px;
      position: relative; }
      .post ul.list li:before {
        border-radius: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        background-color: #ffc199;
        content: "";
        display: inline-block;
        width: 4px;
        height: 4px;
        position: absolute;
        top: 9px;
        left: -18px; }
  .post ol.list {
    margin: 20px; }
    .post ol.list li {
      color: #6e7881;
      font-size: 13px;
      line-height: 22px; }
  .post .post_title {
    overflow: hidden; }
    .post .post_title + .post_photo {
      margin-top: 20px; }
    .post .post_title h3, .post .post_title h1:first-child {
      background: url(/assets/date_dots.png) left bottom no-repeat;
      display: block;
      color: #3d423f;
      font-size: 18px;
      line-height: 18px;
      text-transform: uppercase;
      padding-bottom: 15px; }
    .post .post_title ul {
      overflow: hidden;
      margin: 10px 0 0 0; }
      .post .post_title ul li {
        float: left; }
        .post .post_title ul li:before {
          display: none; }
  .post .post_photo {
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px; }
    .post .post_photo img {
      border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      display: inline-block;
      vertical-align: top;
      max-width: 100%;
      height: auto; }
  .post .post_content > h1,
  .post .post_content > h2,
  .post .post_content > h3 {
    color: #3d423f;
    line-height: 22px;
    margin-bottom: 5px; }
  .post .post_content > h1 {
    font-size: 20px;
    text-transform: uppercase; }
  .post .post_content > h2 {
    font-size: 16px; }
  .post .post_content > h3 {
    font-size: 16px; }
  .post .post_content > p {
    color: #898a8a;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px; }
  .post .post_item {
    border-bottom: #d7d7d7 1px solid;
    overflow: hidden;
    padding-bottom: 21px;
    margin-bottom: 30px; }
    .post .post_item .post_photo {
      border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      text-align: center;
      float: left;
      margin: 0 25px 0 0;
      width: 224px;
      height: 171px; }
      .post .post_item .post_photo img {
        display: inline-block;
        vertical-align: top;
        max-width: 100%;
        height: auto; }
    .post .post_item .post_title {
      margin-bottom: 14px; }
      .post .post_item .post_title .post_link {
        background: url(/assets/date_dots.png) left bottom no-repeat;
        display: block;
        color: #3d423f;
        font-size: 18px;
        line-height: 18px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        padding-bottom: 15px; }
    .post .post_item .post_details {
      overflow: hidden;
      margin-top: 10px; }
      .post .post_item .post_details a {
        color: #58abf1;
        float: left;
        font-size: 14px;
        font-style: italic;
        text-decoration: none; }
        .post .post_item .post_details a:hover {
          text-decoration: underline; }
      .post .post_item .post_details p {
        color: #c7c7c7;
        float: right;
        font-size: 14px;
        font-style: italic;
        margin: 3px 0 0 0; }
    .post .post_item .post_content {
      overflow: hidden; }
      .post .post_item .post_content p {
        margin-bottom: 5px; }

/* End Posts */
/* our mission */
.our_mission {
  overflow: hidden;
  margin-top: -24px; }

.our_mission_item {
  width: 310px;
  float: left;
  margin-right: 35px; }
  .our_mission_item:last-child {
    margin-right: 0; }
  .our_mission_item .our_mission_photo {
    width: 100%;
    text-align: center; }
    .our_mission_item .our_mission_photo img {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px; }
  .our_mission_item .our_mission_title {
    background: url(/assets/points.png) left bottom no-repeat;
    margin-top: 19px;
    min-height: 66px; }
    .our_mission_item .our_mission_title h2 {
      font-size: 18px;
      line-height: 20px;
      text-transform: uppercase; }
  .our_mission_item .our_mission_content {
    margin-top: 23px;
    overflow: hidden; }
    .our_mission_item .our_mission_content p {
      color: #898a8a;
      font-size: 14px;
      line-height: 20px;
      text-align: justify; }

/* end our mission */
/* Contact us */
.contact {
  margin-bottom: 40px; }

.contact_content {
  overflow: hidden;
  padding-top: 23px; }

.contact_post {
  overflow: hidden;
  margin-bottom: 31px; }
  .contact_post .contact_post_title {
    background: url(/assets/points.png) left bottom no-repeat;
    min-height: 37px;
    padding-bottom: 10px;
    margin-bottom: 14px; }
    .contact_post .contact_post_title h2 {
      color: #3d423f;
      font-size: 18px;
      line-height: 20px;
      text-transform: uppercase; }
  .contact_post .contact_post_info {
    display: table;
    position: relative; }
    .contact_post .contact_post_info p {
      color: #898a8a;
      font-size: 14px;
      line-height: 18px; }

.contact_form {
  border: #badcf1 1px solid;
  float: right;
  width: 662px;
  margin-left: 20px; }
  .contact_form .contact_form_title {
    background-color: #f5f7f8;
    border-bottom: #ffb452 1px solid;
    padding: 16px 0; }
    .contact_form .contact_form_title h2 {
      color: #5a5d5b;
      text-align: center;
      font-size: 26px;
      line-height: 26px; }
  .contact_form .contact_form_content {
    padding: 32px 20px 6px 20px;
    display: inline-block;
    vertical-align: top;
    width: 100%; }
  .contact_form .field_block {
    width: 298px;
    float: left;
    margin-right: 24px; }
    .contact_form .field_block:last-child {
      margin-right: 0; }
  .contact_form .field_item .service_rating_item .rating_wrapper {
    width: 100%;
    float: right; }
  .contact_form .field_like_dislike label {
    width: auto;
    margin: 10px 10px 0 0; }
  .contact_form .field_like_dislike a {
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #e0f2f9;
    float: left;
    width: 42px;
    height: 42px;
    margin-right: 14px; }
    .contact_form .field_like_dislike a:hover {
      background-color: #c0e4f2; }
  .contact_form .field_like_dislike .like {
    background-image: url(/assets/like.png);
    background-repeat: no-repeat;
    background-position: center 6px; }
  .contact_form .field_like_dislike .dislike {
    background-image: url(/assets/dislike.png);
    background-repeat: no-repeat;
    background-position: center center; }

/* End Contact us */
/* Rate */
.rate_page {
  display: inline-block;
  width: 100%;
  margin-top: 11px; }

.rate_form {
  float: left;
  width: 470px;
  margin-right: 40px; }
  .rate_form .field_item {
    margin-bottom: 20px; }
    .rate_form .field_item label {
      color: #404340;
      float: left;
      font-size: 14px;
      line-height: 28px; }
      .rate_form .field_item label sup {
        color: #f94c00;
        position: relative;
        top: 4px; }
    .rate_form .field_item .field_error {
      width: 378px; }
      .rate_form .field_item .field_error .input {
        width: 100%; }
      .rate_form .field_item .field_error .textarea {
        width: 100%; }
    .rate_form .field_item .input {
      width: 378px;
      float: right; }
    .rate_form .field_item .textarea {
      width: 378px;
      float: right;
      height: 120px; }
    .rate_form .field_item .rate_field_item {
      float: left;
      width: 100px;
      margin-right: 23px; }
      .rate_form .field_item .rate_field_item:last-child {
        margin-right: 0; }
      .rate_form .field_item .rate_field_item label {
        display: block; }
      .rate_form .field_item .rate_field_item .select2-container {
        min-width: 100%;
        max-width: 100%; }
    .rate_form .field_item .liked_area {
      float: right;
      position: relative; }
      .rate_form .field_item .liked_area .validation_error {
        display: block;
        float: right;
        clear: both;
        text-align: right;
        margin-top: 8px; }
      .rate_form .field_item .liked_area .liked_area_item {
        float: left;
        position: relative;
        margin-left: 30px; }
        .rate_form .field_item .liked_area .liked_area_item:first-child {
          padding-right: 30px; }
          .rate_form .field_item .liked_area .liked_area_item:first-child:before {
            border-right: #e0e0e0 1px solid;
            display: block;
            content: '';
            width: 1px;
            height: 100%;
            position: absolute;
            right: 0px;
            top: 0; }
        .rate_form .field_item .liked_area .liked_area_item label {
          cursor: pointer; }
        .rate_form .field_item .liked_area .liked_area_item > input {
          visibility: hidden;
          position: absolute;
          cursor: pointer;
          width: 1px;
          height: 1px;
          overflow: hidden;
          -webkit-appearance: none;
          width: 59px;
          height: 59px;
          position: absolute;
          top: 0;
          left: 0; }
          .rate_form .field_item .liked_area .liked_area_item > input:checked + label.dislike {
            background-color: #f4f4f4; }
          .rate_form .field_item .liked_area .liked_area_item > input:checked + label.like {
            background-color: #f4f4f4; }
    .rate_form .field_item.field_like_dislike {
      margin: 18px 0 36px 0; }
      .rate_form .field_item.field_like_dislike > label {
        margin-top: 14px; }
      .rate_form .field_item.field_like_dislike + .field_item > label {
        margin-top: 5px; }
    .rate_form .field_item + .captcha {
      margin-top: 11px; }
  .rate_form .captcha {
    float: right;
    width: 378px;
    text-align: center; }
    .rate_form .captcha .captcha_block {
      display: inline-block; }
    .rate_form .captcha + .field_item {
      border-top: #d1d5da 1px solid;
      margin-top: 22px;
      padding: 22px 40px 0 130px; }
  .rate_form .button {
    width: 100%; }

.rate_post {
  display: table;
  position: relative;
  padding-top: 13px; }
  .rate_post:before {
    background: url(/assets/points.png) left top no-repeat;
    content: '';
    display: block;
    position: absolute;
    width: 32px;
    height: 4px;
    left: 0px;
    top: 0; }
  .rate_post p {
    color: #898a8a;
    font-size: 14px;
    line-height: 18px; }

/* End Rate */
/* Sorting */
.sorting {
  border-top: #fc932c 1px solid;
  display: inline-block;
  width: 1000px;
  margin-top: 36px;
  text-align: left;
  padding-top: 25px;
  /* sorting checkbox */
  /* sorting checkbox */ }
  .sorting div.checker {
    width: 23px;
    height: 23px; }
    .sorting div.checker span {
      background-size: 23px;
      width: 23px;
      height: 23px; }
  .sorting .field_item {
    float: left;
    width: auto;
    position: relative; }
    .sorting .field_item:first-child {
      margin-right: 25px; }
    .sorting .field_item label {
      width: auto;
      margin-right: 10px;
      font-weight: 400; }
    .sorting .field_item .select2-container {
      min-width: 195px;
      max-width: 195px; }
    .sorting .field_item .field_subitem {
      float: left;
      margin: 5px 17px 0 0; }
      .sorting .field_item .field_subitem label {
        color: #5a5a5a;
        float: left;
        font-size: 15px;
        font-weight: 400;
        line-height: 23px; }
      .sorting .field_item .field_subitem .checker {
        float: left;
        margin-right: 13px; }
      .sorting .field_item .field_subitem:last-child {
        margin-right: 0; }
    .sorting .field_item:last-child {
      float: right;
      margin-right: 0; }
      .sorting .field_item:last-child .input {
        border-radius: 30px;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px;
        width: 309px;
        font-size: 12px;
        height: 36px;
        padding-right: 40px;
        margin-top: -2px; }
        .sorting .field_item:last-child .input::-webkit-input-placeholder {
          color: #919191;
          font-weight: 300;
          font-style: italic; }
        .sorting .field_item:last-child .input:-moz-placeholder {
          color: #919191;
          font-weight: 300;
          font-style: italic; }
        .sorting .field_item:last-child .input::-moz-placeholder {
          color: #919191;
          font-weight: 300;
          font-style: italic; }
        .sorting .field_item:last-child .input:-ms-input-placeholder {
          color: #919191;
          font-weight: 300;
          font-style: italic; }
      .sorting .field_item:last-child:before {
        background: url(/assets/search_icon.png) right center no-repeat;
        background-size: 20px;
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 5px;
        left: 277px;
        z-index: 1; }
    .sorting .field_item .easy-autocomplete {
      display: inline-block; }
      .sorting .field_item .easy-autocomplete .easy-autocomplete-container {
        top: 100%; }

.sorting_results {
  display: inline-block;
  width: 1000px;
  margin: 2px 0 16px 0;
  text-align: left; }
  .sorting_results span {
    display: inline-block;
    width: 100%; }
    .sorting_results span strong {
      border-radius: 100%;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      border: #bcbcd6 1px solid;
      color: #339436;
      font-size: 32px;
      float: left;
      width: 60px;
      height: 60px;
      line-height: 58px;
      text-align: center;
      margin-right: 15px; }
    .sorting_results span b {
      color: #148b19;
      display: block;
      font-size: 14px;
      border-bottom: #fc932c 1px solid;
      overflow: hidden;
      margin-top: 23px;
      padding-bottom: 5px; }

.items_container + .show_more {
  margin: 40px 0 15px 0; }
  .items_container + .show_more .button_show_more {
    width: 394px; }
  .items_container + .show_more + .recent_posts {
    margin-top: 25px; }
    .items_container + .show_more + .recent_posts .section {
      border-bottom: none; }

/* criteria service */
.criteria_service {
  width: 1000px;
  margin: 0 auto;
  text-align: left; }

.criteria_block {
  overflow: hidden;
  padding: 25px 0; }

.criteria_block:nth-child(odd) {
  background-color: #f3f3f3; }

.criteria_service_photo {
  box-shadow: 0px 0px 6px #d6d6d1;
  -moz-box-shadow: 0px 0px 6px #d6d6d1;
  -webkit-box-shadow: 0px 0px 6px #d6d6d1;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #f1eee4;
  float: left;
  width: 228px;
  height: 148px;
  margin-right: 25px; }
  .criteria_service_photo img {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px; }

.criteria_info {
  float: right;
  width: 276px;
  margin: 2px 0 0 22px; }
  .criteria_info .criteria_info_item {
    overflow: hidden;
    margin-bottom: 4px; }
  .criteria_info .criteria_delivery {
    background: url(/assets/delivery_icon.png) left center no-repeat;
    color: #595d5a;
    font-size: 15px;
    line-height: 36px;
    padding-left: 40px; }
  .criteria_info .criteria_prices {
    background: url(/assets/prices_icon.png) left center no-repeat;
    color: #595d5a;
    float: left;
    font-size: 15px;
    line-height: 36px;
    padding-left: 40px; }
    .criteria_info .criteria_prices span {
      color: #1a8b36; }
  .criteria_info .criteria_info_item a {
    color: #397fdd;
    font-size: 14px;
    float: right;
    text-transform: uppercase;
    margin-top: 11px;
    text-decoration: none; }
    .criteria_info .criteria_info_item a:hover {
      text-decoration: underline; }
  .criteria_info .criteria_links {
    border-top: #dcdcdc 1px solid;
    border-bottom: #dcdcdc 1px solid;
    overflow: hidden;
    padding: 13px 0;
    margin-top: 6px; }
    .criteria_info .criteria_links .button_visit {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 37px;
      line-height: 37px;
      background-color: #fc932c;
      width: 160px;
      float: left; }
      .criteria_info .criteria_links .button_visit:hover {
        background-color: #f38921; }
    .criteria_info .criteria_links .button_rate {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 37px;
      line-height: 33px;
      background-color: #fff;
      border: #1aba21 2px solid;
      color: #418e4e;
      width: 94px;
      float: right; }
      .criteria_info .criteria_links .button_rate:hover {
        background-color: #e9faec; }

.criteria_service_content {
  border-right: #dcdcdc 1px solid;
  overflow: hidden;
  padding: 4px 20px 0 0; }
  .criteria_service_content > p {
    color: #727272;
    font-size: 15px;
    font-style: italic;
    line-height: 18px;
    text-align: justify; }

.criteria_service_title {
  overflow: hidden;
  margin: 0px 0 17px 0; }
  .criteria_service_title > a {
    color: #595d5a;
    float: left;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-decoration: none;
    width: 170px;
    margin: 7px 5px 0 0; }
  .criteria_service_title .mark {
    border-left: #d5d2c8 1px solid;
    border-right: #d5d2c8 1px solid;
    color: #57a555;
    float: left;
    font-size: 16px;
    width: 51px;
    text-align: center;
    padding: 8px 0; }
  .criteria_service_title .criteria_service_rating {
    float: right;
    margin: 3px 8px 0 0; }
    .criteria_service_title .criteria_service_rating .rating_wrapper {
      float: left; }
      .criteria_service_title .criteria_service_rating .rating_wrapper div.star-rating {
        background-size: 21px;
        width: 21px;
        height: 18px;
        margin: 0 3.3px 0 3.3px; }
        .criteria_service_title .criteria_service_rating .rating_wrapper div.star-rating a {
          background-size: 21px;
          width: 21px; }
        .criteria_service_title .criteria_service_rating .rating_wrapper div.star-rating-on a {
          background-position: 0 bottom !important; }
        .criteria_service_title .criteria_service_rating .rating_wrapper div.star-rating-hover a {
          background-position: 0 bottom; }
      .criteria_service_title .criteria_service_rating .rating_wrapper div .rating-cancel + .star-rating {
        margin: 0 3.3px 0 0; }
    .criteria_service_title .criteria_service_rating p {
      color: #397fdd;
      float: left;
      font-size: 14px;
      margin: 5px 0 0 10px; }

/* end criteria service */
.detailed_review {
  margin-top: 36px; }
  .detailed_review .section {
    border-top: #fc932c 1px solid;
    padding-top: 28px; }

/* review details */
.review_details {
  border-top: #e4e4e4 1px solid;
  overflow: hidden;
  position: relative;
  z-index: 10;
  padding-top: 14px;
  margin-top: 16px;
  margin-bottom: 29px; }
  .review_details .review_details_item {
    border-bottom: #e4e4e4 1px solid;
    overflow: hidden;
    padding: 10px 0; }
    .review_details .review_details_item:last-child {
      padding: 6px 0; }
    .review_details .review_details_item a {
      color: #48a2ff;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none; }
      .review_details .review_details_item a:hover {
        text-decoration: underline; }
    .review_details .review_details_item b {
      margin-left: 5px; }
    .review_details .review_details_item span {
      color: #8b939b;
      font-size: 15px;
      float: left;
      text-transform: uppercase; }
      .review_details .review_details_item span b {
        color: #596169;
        font-weight: 500; }
    .review_details .review_details_item p {
      color: #596169;
      font-size: 15px;
      line-height: 29px;
      float: left;
      text-transform: uppercase; }
      .review_details .review_details_item p b {
        color: #f57c3e;
        font-weight: 500; }
    .review_details .review_details_item .button_try_now {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 29px;
      line-height: 29px;
      background-color: #4ca6df;
      float: right;
      width: 87px; }
      .review_details .review_details_item .button_try_now:hover {
        background-color: #3d97d1; }

.review_details_nav {
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  width: 100%;
  overflow: hidden;
  margin: 2px 0 30px 0; }
  .review_details_nav ul {
    list-style: none;
    position: relative; }
    .review_details_nav ul .ui-state-default {
      float: left;
      width: 33.3333%;
      height: 44px;
      position: relative;
      outline: none; }
      .review_details_nav ul .ui-state-default a {
        background-color: #ebeef3;
        border-bottom: #5398cd 1px solid;
        color: #929a9e;
        display: block;
        font-size: 14px;
        height: 28px;
        line-height: 30px;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%; }
        .review_details_nav ul .ui-state-default a:before {
          border-left: #d1d1d5 1px solid;
          content: '';
          display: block;
          width: 1px;
          height: 19px;
          position: absolute;
          bottom: 4px;
          left: 0; }
      .review_details_nav ul .ui-state-default:first-child a {
        border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
        -webkit-border-radius: 5px 0 0 0; }
        .review_details_nav ul .ui-state-default:first-child a:before {
          display: none; }
      .review_details_nav ul .ui-state-default:last-child a {
        border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0; }
      .review_details_nav ul .ui-state-default.ui-state-active a {
        border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
        background-color: #5398cd;
        color: #fff;
        font-size: 15px;
        height: 35px;
        line-height: 38px; }
        .review_details_nav ul .ui-state-default.ui-state-active a:before {
          display: none; }
        .review_details_nav ul .ui-state-default.ui-state-active a span {
          color: #ffba7c; }
      .review_details_nav ul .ui-state-default.ui-state-active + .ui-state-default a:before {
        display: none; }
      .review_details_nav ul .ui-state-default.ui-state-focus a {
        outline: none; }
      .review_details_nav ul .ui-state-default:last-child {
        border-right: none; }

.general_rating {
  width: 310px;
  position: relative; }
  .general_rating .general_rating_links {
    overflow: hidden;
    padding: 18px 0;
    position: relative;
    z-index: 5; }
    .general_rating .general_rating_links .button_review {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 37px;
      line-height: 33px;
      background-color: #fff;
      border: #1aba21 2px solid;
      color: #418e4e;
      float: left;
      width: 130px; }
      .general_rating .general_rating_links .button_review:hover {
        background-color: #e9faec; }
    .general_rating .general_rating_links .button_visit {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      height: 37px;
      line-height: 37px;
      background-color: #fc932c;
      float: right;
      width: 160px; }
      .general_rating .general_rating_links .button_visit:hover {
        background-color: #f38921; }
  .general_rating .site_screen {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.26);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #f1eee4;
    float: left;
    width: 310px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
    z-index: 5;
    height: auto;
    min-height: 160px;
    line-height: 0; }
  .general_rating .general_rating_content {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 29px;
    position: relative;
    z-index: 5; }
    .general_rating .general_rating_content .general_rating_line {
      border-top: #e4e4e4 1px solid;
      overflow: hidden;
      padding: 9px 0;
      font-size: 17px;
      font-weight: 500;
      line-height: 20px; }
      .general_rating .general_rating_content .general_rating_line span {
        color: #596169;
        float: left;
        margin-right: 10px; }
      .general_rating .general_rating_content .general_rating_line p {
        color: #57a555;
        float: left; }
    .general_rating .general_rating_content .general_rating_section {
      border-top: #e4e4e4 1px solid;
      display: inline-block;
      vertical-align: top;
      width: 100%;
      padding-top: 28px; }
    .general_rating .general_rating_content .service_rating .service_rating_item {
      float: left;
      width: 17px;
      text-align: center;
      margin-right: 31px; }
      .general_rating .general_rating_content .service_rating .service_rating_item:first-child {
        margin-left: 13px; }
      .general_rating .general_rating_content .service_rating .service_rating_item:last-child {
        margin-right: 0; }
      .general_rating .general_rating_content .service_rating .service_rating_item p {
        color: #f8841c;
        font-size: 13px; }
      .general_rating .general_rating_content .service_rating .service_rating_item .rating_line {
        box-shadow: inset 0 0 10px #d8d8d8;
        -moz-box-shadow: inset 0 0 10px #d8d8d8;
        -webkit-box-shadow: inset 0 0 10px #d8d8d8;
        background-color: #eaeaea;
        width: 17px;
        height: 105px;
        position: relative;
        margin: 3px auto 0; }
        .general_rating .general_rating_content .service_rating .service_rating_item .rating_line .rating_line_progress {
          border-top: #a6d3aa 1px solid;
          background: #9ddca3;
          background: -moz-linear-gradient(top, #9ddca3 0%, #43b246 100%);
          background: -webkit-linear-gradient(top, #9ddca3 0%, #43b246 100%);
          background: linear-gradient(to bottom, #9ddca3 0%, #43b246 100%);
          display: block;
          width: 100%;
          position: absolute;
          bottom: 0;
          left: 0; }
      .general_rating .general_rating_content .service_rating .service_rating_item span {
        color: #596169;
        display: block;
        font-size: 12px;
        margin: 6px 0 0 -15px;
        width: 46px; }
    .general_rating .general_rating_content .service_details {
      float: right;
      width: 110px;
      padding-top: 18px; }
      .general_rating .general_rating_content .service_details .like {
        background: url(/assets/like_icons_silver.png) no-repeat;
        cursor: pointer;
        float: left;
        width: 49px;
        height: 49px; }
        .general_rating .general_rating_content .service_details .like:hover {
          background-color: #f4f4f4; }
      .general_rating .general_rating_content .service_details .dislike {
        background: url(/assets/like_icons_silver.png) -49px 0 no-repeat;
        cursor: pointer;
        float: right;
        width: 49px;
        height: 49px; }
        .general_rating .general_rating_content .service_details .dislike:hover {
          background-color: #f4f4f4; }
      .general_rating .general_rating_content .service_details .button_rate {
        border: none;
        cursor: pointer;
        color: #fff;
        display: block;
        font-family: "Effra", sans-serif;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        position: relative;
        font-size: 15px;
        outline: none;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-appearance: none;
        border-radius: 20px;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        height: 37px;
        line-height: 33px;
        background-color: #fff;
        border: #1aba21 2px solid;
        color: #418e4e;
        width: 100%;
        display: inline-block;
        margin-top: 20px; }
        .general_rating .general_rating_content .service_details .button_rate:hover {
          background-color: #e9faec; }

/* end review details */
.detailed_title {
  display: inline-block;
  vertical-align: top;
  width: 100%; }
  .detailed_title h1 {
    color: #595d5a;
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    text-align: left; }
  .detailed_title .site_rate {
    border-top: #d9d9d9 1px solid;
    overflow: hidden;
    margin-top: 13px;
    padding-top: 20px; }
    .detailed_title .site_rate .rating_wrapper div.star-rating {
      background-size: 26px;
      width: 26px;
      height: 23px;
      margin: 0 4px 0 4px; }
      .detailed_title .site_rate .rating_wrapper div.star-rating a {
        background-size: 26px;
        width: 26px; }
      .detailed_title .site_rate .rating_wrapper div.star-rating-on a {
        background-position: 0 bottom !important; }
      .detailed_title .site_rate .rating_wrapper div.star-rating-hover a {
        background-position: 0 bottom; }
    .detailed_title .site_rate .rating_wrapper div .rating-cancel + .star-rating {
      margin: 0 4px 0 0; }
    .detailed_title .site_rate > a {
      color: #397fdd;
      float: left;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      margin: 12px 0 0 20px; }

.review_details_tabs {
  overflow: hidden; }
  .review_details_tabs .post_content > p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px; }
  .review_details_tabs .post_content > h2 {
    line-height: 18px;
    margin-bottom: 10px; }
  .review_details_tabs .post_content ul.list li {
    font-size: 14px; }
  .review_details_tabs .post_content ol.list li {
    font-size: 14px; }
  .review_details_tabs .contact_form {
    border: none;
    background: none;
    width: 630px; }
    .review_details_tabs .contact_form .contact_title {
      border-top: #ffb452 1px solid;
      border-bottom: #ffb452 1px solid;
      background-color: #f5f7f8;
      position: relative;
      margin-bottom: 32px;
      text-align: center;
      padding: 14px 0; }
      .review_details_tabs .contact_form .contact_title h3 {
        color: #5a5d5b;
        font-size: 26px;
        line-height: 28px; }
    .review_details_tabs .contact_form .contact_form_content {
      padding: 0 52px 0 22px; }
      .review_details_tabs .contact_form .contact_form_content .field_item {
        margin-bottom: 21px; }
        .review_details_tabs .contact_form .contact_form_content .field_item label {
          color: #404340;
          font-size: 14px;
          float: left;
          margin-top: 5px; }
          .review_details_tabs .contact_form .contact_form_content .field_item label sup {
            color: #f94c00; }
          .review_details_tabs .contact_form .contact_form_content .field_item label i {
            color: #9e9e9e;
            display: block;
            font-size: 12px; }
        .review_details_tabs .contact_form .contact_form_content .field_item .field_error {
          width: 75%; }
          .review_details_tabs .contact_form .contact_form_content .field_item .field_error .input {
            width: 100%; }
          .review_details_tabs .contact_form .contact_form_content .field_item .field_error .textarea {
            width: 100%; }
        .review_details_tabs .contact_form .contact_form_content .field_item .input {
          width: 75%; }
        .review_details_tabs .contact_form .contact_form_content .field_item .textarea {
          width: 75%;
          height: 120px; }
    .review_details_tabs .contact_form .captcha {
      border-bottom: #d1d5da 1px solid;
      float: right;
      width: 75%;
      margin-top: 12px;
      padding-bottom: 25px; }
    .review_details_tabs .contact_form .button_post {
      border: none;
      cursor: pointer;
      color: #fff;
      display: block;
      font-family: "Effra", sans-serif;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-size: 15px;
      outline: none;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-appearance: none;
      border-radius: 30px;
      -moz-border-radius: 30px;
      -webkit-border-radius: 30px;
      font-size: 18px;
      height: 49px;
      line-height: 49px;
      background-color: #fc932c;
      float: left;
      width: 54%;
      margin: 25px 0 0 24%; }
      .review_details_tabs .contact_form .button_post:hover {
        background-color: #f38921; }

.customers_reviews {
  overflow: hidden;
  margin-bottom: 20px; }

/* message */
.message {
  background: url(/assets/points.png) left bottom no-repeat;
  overflow: hidden;
  padding-bottom: 28px;
  margin-bottom: 34px; }
  .message .message_photo {
    float: left;
    width: 75px;
    height: 75px; }
    .message .message_photo img {
      max-width: 100%;
      height: auto; }
  .message .message_rate {
    float: right;
    margin-top: 9px; }
    .message .message_rate div.star-rating {
      background-size: 21px;
      width: 21px;
      height: 18px;
      margin: 0 3.3px 0 3.3px; }
      .message .message_rate div.star-rating a {
        background-size: 21px;
        width: 21px; }
      .message .message_rate div.star-rating-on a {
        background-position: 0 bottom !important; }
      .message .message_rate div.star-rating-hover a {
        background-position: 0 bottom; }
    .message .message_rate div .rating-cancel + .star-rating {
      margin: 0 3.3px 0 0; }
  .message .message_title {
    border-bottom: #dcdcdc 1px solid;
    overflow: hidden;
    padding: 2px 0 6px 0;
    margin-bottom: 15px; }
    .message .message_title h3 {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #404340;
      font-size: 15px;
      line-height: 18px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 4px;
      max-width: 420px; }
      .message .message_title h3 span {
        color: #45545f;
        font-size: 15px;
        font-weight: 400;
        text-transform: none;
        margin-left: 10px; }
    .message .message_title > span {
      color: #397fdd;
      font-size: 14px; }
    .message .message_title a.link_reply {
      color: #397fdd;
      font-size: 15px;
      float: right;
      font-style: normal;
      margin-top: 23px; }
      .message .message_title a.link_reply:before {
        text-decoration: none; }
  .message .message_content {
    overflow: hidden; }
    .message .message_content p {
      color: #898a8a;
      font-size: 14px;
      font-style: italic;
      line-height: 20px; }

/* end message */
.comments .message {
  background: none;
  margin-bottom: 16px;
  padding-bottom: 0; }
.comments .message_photo {
  background: url(/assets/message_photo_bg.png) no-repeat;
  margin: 14px 0 0 15px;
  position: relative; }
  .comments .message_photo:before {
    border-top: #dcdcdc 1px solid;
    content: '';
    display: block;
    width: 13px;
    height: 1px;
    position: absolute;
    top: 35px;
    left: -13px; }
  .comments .message_photo:after {
    background: url(/assets/points.png) center bottom no-repeat;
    content: '';
    display: block;
    width: 32px;
    height: 5px;
    position: absolute;
    top: 99px;
    left: 50%;
    margin-left: -16px; }
  .comments .message_photo img {
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%; }
.comments .message_title {
  padding: 0 0 10px 29px;
  margin-bottom: 11px; }
.comments .message_content {
  padding-left: 29px; }
  .comments .message_content p {
    line-height: 18px; }

.show_more + .contact_form {
  margin-top: 30px; }

.error_page {
  text-align: center;
  padding-top: 72px; }
  .error_page img {
    margin-bottom: 16px; }
  .error_page p {
    color: #3d423f;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px; }
  .error_page .button {
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
    font-family: "Effra", sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    height: 49px;
    line-height: 45px;
    background-color: #fff;
    border: #1aba21 2px solid;
    color: #418e4e;
    width: 340px;
    margin: 112px auto 0; }
    .error_page .button:hover {
      background-color: #e9faec; }

.popup_overlay {
  background: rgba(40, 40, 40, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  text-align: center; }
  .popup_overlay:after {
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
    content: ''; }

.popup {
  background: #fff;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left; }
  .popup.popup_review {
    width: 660px; }
    .popup.popup_review .popup_content {
      padding: 20px; }
      .popup.popup_review .popup_content > p {
        color: #686f85;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px; }
  .popup.popup_info {
    width: 452px; }

.popup_close {
  background: url(/assets/popup_close.png) no-repeat;
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -18px;
  right: -18px; }

.popup_title {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom: #ffb452 1px solid;
  background-color: #efeeee;
  overflow: hidden;
  padding: 12px 0;
  text-align: center; }
  .popup_title h2 {
    color: #5a5d5b;
    font-size: 26px;
    line-height: 28px; }

/* popup review form */
.popup_review_form {
  display: inline-block;
  width: 100%; }
  .popup_review_form .field_block {
    float: left;
    width: 298px;
    margin-bottom: 10px; }
    .popup_review_form .field_block + .field_block {
      float: right; }
      .popup_review_form .field_block + .field_block .field_item {
        margin-bottom: 10px; }
        .popup_review_form .field_block + .field_block .field_item label {
          width: 23%; }
    .popup_review_form .field_block + .field_item {
      border-top: #dadada 1px solid;
      padding-top: 25px;
      margin-bottom: 10px; }
  .popup_review_form .field_item {
    margin-bottom: 20px; }
    .popup_review_form .field_item .textarea {
      height: 86px; }
  .popup_review_form .field_files .field_error {
    width: 70%; }
    .popup_review_form .field_files .field_error .input {
      width: 100%; }
  .popup_review_form .field_files .input {
    width: 70%; }
  .popup_review_form .field_files .button_upload {
    width: 27%; }
  .popup_review_form .captcha {
    margin-top: 10px; }
  .popup_review_form .button_send {
    width: 360px;
    margin: 0 auto; }

/* end popup review form */
.popup_info .popup_content {
  padding: 20px; }
.popup_info .popup_info_text {
  background: url(/assets/sunglass.png) center bottom no-repeat;
  text-align: center;
  padding-bottom: 50px; }
  .popup_info .popup_info_text span {
    color: #418e4e;
    display: block;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 5px; }
  .popup_info .popup_info_text p {
    color: #5a5d5b;
    font-size: 18px;
    line-height: 22px; }
.popup_info .button_ok {
  border: none;
  cursor: pointer;
  color: #fff;
  display: block;
  font-family: "Effra", sans-serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  font-size: 18px;
  height: 49px;
  line-height: 49px;
  background-color: #fc932c;
  width: 360px;
  margin: 20px auto 10px; }
  .popup_info .button_ok:hover {
    background-color: #f38921; }

h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700; }

h2 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700; }

.section_wrapper {
  display: table;
  width: 100%;
  text-align: center; }
  .section_wrapper .section {
    margin: 0 auto;
    width: 1000px;
    text-align: left;
    font-size: 13px; }

.section_title {
  position: relative;
  overflow: hidden; }
  .section_title h1, .section_title > span {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: center; }
  .section_title h2 {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-right: 15px;
    text-align: left; }

.container:not(.container_welcome) {
  margin-top: 24px;
  padding-bottom: 25px; }
  .container:not(.container_welcome) .section_title {
    border-bottom: #fc932c 1px solid;
    padding-bottom: 4px;
    margin-bottom: 40px;
    text-align: center; }
    .container:not(.container_welcome) .section_title > span {
      color: #3d423f;
      font-size: 28px;
      line-height: 32px;
      text-transform: uppercase;
      font-weight: bold; }
    .container:not(.container_welcome) .section_title h1 {
      color: #3d423f;
      font-size: 28px;
      line-height: 32px;
      text-transform: uppercase; }
      .container:not(.container_welcome) .section_title h1 span {
        font-size: 18px;
        margin-left: 10px; }

.wrapper {
  width: 100%;
  display: inline-block;
  zoom: 1;
  *display: inline;
  min-height: 100%;
  padding-bottom: 230px; }

.logo {
  float: left;
  position: relative;
  width: 160px;
  margin: 20px 0;
  line-height: 0; }
  .logo:before {
    border-radius: 0 0 100% 100%;
    -moz-border-radius: 0 0 100% 100%;
    -webkit-border-radius: 0 0 100% 100%;
    background: url(/assets/logo_ellipse.png) no-repeat;
    content: '';
    display: block;
    width: 134px;
    height: 13px;
    position: absolute;
    bottom: -33px;
    left: 5px; }
  .logo img {
    max-width: 100%;
    height: auto; }

.header {
  width: 100%;
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative; }
  .header .section_wrapper {
    margin-bottom: 0; }

.header_top {
  background-color: #2f3430;
  width: 100%;
  min-height: 49px;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top; }

.suggest_website {
  float: right; }
  .suggest_website a {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border: #1aba21 2px solid;
    color: #99e99c;
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    height: 33px;
    line-height: 31px;
    text-decoration: none;
    width: 260px;
    text-align: center;
    margin-top: 7px; }
    .suggest_website a:hover {
      text-decoration: none; }

.header_social {
  float: right;
  margin-top: 25px;
  position: relative;
  z-index: 5; }
  .header_social .like-block {
    float: left;
    margin-left: 10px; }
    .header_social .like-block.google > div {
      width: 58px !important; }

.header_bottom {
  box-shadow: 0 4px 14px rgba(207, 208, 216, 0.81);
  -moz-box-shadow: 0 4px 14px rgba(207, 208, 216, 0.81);
  -webkit-box-shadow: 0 4px 14px rgba(207, 208, 216, 0.81);
  display: inline-block;
  zoom: 1;
  *display: inline;
  background-color: #fff;
  width: 100%;
  font-size: 0;
  min-height: 64px;
  vertical-align: top; }
  .header_bottom .section {
    position: relative; }

.header_nav {
  margin-top: 12px;
  float: left;
  position: relative;
  z-index: 5; }
  .header_nav > ul {
    margin-left: -9px;
    list-style: none; }
    .header_nav > ul li {
      float: left;
      padding-right: 9px;
      margin-right: 9px;
      position: relative; }
      .header_nav > ul li:after {
        border-right: #377b45 1px solid;
        content: '';
        display: block;
        width: 1px;
        height: 8px;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -4px; }
      .header_nav > ul li a {
        color: #fff;
        font-size: 15px;
        line-height: 24px;
        padding: 0 8px;
        text-decoration: none;
        position: relative; }
      .header_nav > ul li.active a:after {
        border-bottom: #1aba21 2px solid;
        content: '';
        display: block;
        width: 12px;
        height: 2px;
        position: absolute;
        bottom: -7px;
        left: 50%;
        margin-left: -6px; }
      .header_nav > ul li.drop {
        padding-right: 12px; }
        .header_nav > ul li.drop a:before {
          background: url(/assets/icons_sprite.png) left -106px no-repeat;
          background-size: 20px;
          content: '';
          display: block;
          width: 7px;
          height: 5px;
          position: absolute;
          top: 7px;
          right: -4px; }
      .header_nav > ul li > .drop_nav {
        display: none;
        position: absolute;
        left: -10px;
        padding-top: 13px;
        top: 24px;
        background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }
        .header_nav > ul li > .drop_nav ul {
          border: #2f3430 1px solid;
          border-top: none;
          background-color: #fff;
          min-width: 140px;
          max-width: 220px;
          overflow: hidden; }
          .header_nav > ul li > .drop_nav ul li {
            width: 100%;
            overflow: hidden;
            margin-right: 0;
            padding-right: 0; }
            .header_nav > ul li > .drop_nav ul li:after {
              display: none; }
            .header_nav > ul li > .drop_nav ul li a {
              color: #5a5a5a;
              display: block;
              line-height: 16px;
              padding: 8px 8px; }
              .header_nav > ul li > .drop_nav ul li a:hover {
                color: #fff;
                background-color: #ffb452; }
              .header_nav > ul li > .drop_nav ul li a:before, .header_nav > ul li > .drop_nav ul li a:after {
                display: none; }
      .header_nav > ul li:hover > .drop_nav {
        display: block; }
      .header_nav > ul li:last-child {
        margin-right: 0; }

.slogan {
  color: #727272;
  float: left;
  font-size: 15px;
  font-style: italic;
  position: relative;
  z-index: 5;
  max-width: 348px;
  margin: 18px 0 0 87px; }
  .slogan span {
    display: block;
    float: right; }

.header_links {
  float: right; }
  .header_links a {
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    color: #3f5263;
    font-size: 15px;
    float: left;
    width: 200px;
    text-transform: uppercase;
    margin: 9px 0 0 12px; }
    .header_links a span {
      font-size: 12px; }

.container {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 100%;
  vertical-align: top;
  margin-top: 24px; }
  .container.container_welcome {
    margin-top: 0; }
    .container.container_welcome > .section_wrapper:first-child .section_title {
      margin-top: -10px;
      margin-bottom: 16px;
      text-align: center; }
      .container.container_welcome > .section_wrapper:first-child .section_title:before {
        border-top: #f16e19 1px solid; }
  .container .content > div p {
    color: #6e7881;
    font-size: 13px;
    line-height: 22px; }
  .container div.star-rating {
    width: 44px;
    height: 44px;
    background: url("/assets/stars.png") no-repeat 0 0;
    background-size: 44px;
    cursor: pointer;
    display: block;
    float: left;
    width: 44px;
    height: 44px;
    text-indent: -999em;
    overflow: hidden;
    margin: 0 5px 0 5px;
    background: transparent !important;
    overflow: hidden !important; }
    .container div.star-rating a {
      width: 44px;
      height: 100%;
      background: url("/assets/stars.png") no-repeat 0 top;
      background-size: 44px;
      border: 0;
      display: block; }
    .container div.star-rating-on a {
      background-position: 0 bottom !important; }
    .container div.star-rating-hover a {
      background-position: 0 bottom; }
    .container div.star-rating-readonly a {
      cursor: default !important; }
  .container div .rating-cancel {
    width: 0px; }
    .container div .rating-cancel a {
      width: 44px;
      height: 100%;
      display: block;
      background-position: 0 0;
      border: 0; }
    .container div .rating-cancel + .star-rating {
      margin: 0 5px 0 0; }

.footer {
  width: 100%;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  height: 230px;
  margin-top: -230px; }
  .footer .section_wrapper {
    margin-bottom: 0; }

.footer_email, .footer_copyright {
  background: url(/assets/icons_sprite.png) left -209px no-repeat;
  color: #8e8e8e;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 41px;
  padding-left: 50px;
  margin: 0 20px; }
  .footer_email a, .footer_copyright a {
    color: #8e8e8e;
    text-decoration: none; }

.footer_copyright {
  background: url(/assets/icons_sprite.png) left -153px no-repeat; }

.footer_top {
  background-color: #2f3430;
  padding: 32px 0 8px 0; }

.footer_bottom {
  background-color: #262b27;
  padding: 14px 0; }

.footer_content {
  width: 100%;
  overflow: hidden; }

.footer_nav {
  overflow: hidden;
  width: 100%; }
  .footer_nav ul {
    position: relative;
    text-align: center; }
    .footer_nav ul li {
      border-left: #49574a 1px solid;
      display: inline-block;
      zoom: 1;
      *display: inline;
      vertical-align: top;
      position: relative;
      padding-left: 40px;
      margin-right: 40px; }
      .footer_nav ul li:last-child {
        margin-right: 0;
        padding-right: 40px;
        border-right: #49574a 1px solid; }
      .footer_nav ul li a {
        color: #99e99c;
        font-size: 14px;
        line-height: 14px;
        text-decoration: none; }

.footer_links {
  text-align: center;
  margin: 40px 0 20px 0; }
  .footer_links ul {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin: 0 10px; }
    .footer_links ul li {
      float: left;
      margin-right: 80px; }
      .footer_links ul li a {
        color: #8e8e8e;
        display: inline-block;
        font-size: 14px;
        line-height: 18px;
        text-decoration: none; }
        .footer_links ul li a:hover {
          text-decoration: underline; }
      .footer_links ul li:first-child {
        padding-left: 0; }
      .footer_links ul li:last-child {
        border-right: none;
        padding-right: 0; }

.footer_logo {
  text-align: center; }
  .footer_logo img {
    display: inline-block; }

.content_title {
  margin-bottom: 17px;
  position: relative; }
  .content_title:before {
    border-top: #f15a29 1px solid;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px; }
  .content_title h1 {
    background-color: #fff;
    color: #f15a29;
    display: inline-block;
    line-height: 30px;
    padding-right: 2%;
    position: relative;
    z-index: 1; }
    .content_title h1 span {
      font-size: 30px; }
  .content_title > span {
    color: #6d8aa2;
    font-size: 20px; }

.pagination {
  text-align: center;
  margin: 0 auto 40px;
  width: 1000px;
  display: table;
  padding-right: 330px; }
  .pagination ul {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    list-style: none; }
    .pagination ul li {
      border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      float: left;
      height: 36px;
      line-height: 36px;
      text-align: center;
      margin: 0 25px; }
      .pagination ul li a,
      .pagination ul li span {
        color: #3d413d;
        text-decoration: none;
        display: block;
        font-size: 15px;
        line-height: 36px;
        width: 100%;
        height: 100%;
        outline: none;
        text-transform: uppercase; }
        .pagination ul li a.current,
        .pagination ul li span.current {
          color: #50955f; }
        .pagination ul li a:hover,
        .pagination ul li span:hover {
          color: #b5b5b5; }
      .pagination ul li.prev {
        width: 102px;
        margin: 0 20px; }
        .pagination ul li.prev a,
        .pagination ul li.prev span {
          border-radius: 20px;
          -moz-border-radius: 20px;
          -webkit-border-radius: 20px;
          background-color: #5fb070;
          color: #fff; }
          .pagination ul li.prev a:hover,
          .pagination ul li.prev span:hover {
            background-color: #6bc57e; }
      .pagination ul li.next {
        width: 102px;
        margin: 0 20px; }
        .pagination ul li.next a {
          border-radius: 20px;
          -moz-border-radius: 20px;
          -webkit-border-radius: 20px;
          background-color: #5fb070;
          width: 102px;
          color: #fff; }
          .pagination ul li.next a:hover {
            background-color: #6bc57e; }

.sidebar {
  float: right;
  width: 310px;
  margin-left: 20px; }

.sidebar.sidebar_left {
  float: left;
  margin-left: 0;
  margin-right: 60px; }

.like {
  background: url("/assets/like_icons.png") left top no-repeat;
  box-shadow: 0 3px 12px #d0d9df;
  -moz-box-shadow: 0 3px 12px #d0d9df;
  -webkit-box-shadow: 0 3px 12px #d0d9df;
  background-color: #fff;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  float: left;
  width: 59px;
  height: 59px; }
  .like:hover {
    background-color: #f4f4f4; }

.dislike {
  background: url(/assets/like_icons.png) right top no-repeat;
  box-shadow: 0 3px 12px #d0d9df;
  -moz-box-shadow: 0 3px 12px #d0d9df;
  -webkit-box-shadow: 0 3px 12px #d0d9df;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background-color: #fff;
  float: left;
  width: 59px;
  height: 59px; }
  .dislike:hover {
    background-color: #f4f4f4; }

.widget {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  display: inline-block;
  vertical-align: top;
  width: 310px;
  margin-bottom: 30px; }

.widget_title {
  background-color: #535754;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 7px 0;
  position: relative; }
  .widget_title h3 {
    color: #fff;
    font-size: 19px;
    line-height: 24px;
    font-weight: 500;
    text-align: center; }

.contact_content_mobile,
.sidebar_mobile,
.general_rating_mobile,
.review_details_mobile,
.rate_post_mobile {
  display: none; }

.cookie_policy-overlay:not([style="display: none;"]) {
  width: 100%;
  background-color: #5FB070;
  position: fixed;
  bottom: 0;
  z-index: 999999; }
  .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane {
    width: 1000px;
    margin: 0 auto;
    padding: 12px 0;
    overflow: hidden; }
    .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p {
      display: inline-block;
      vertical-align: middle;
      font-size: 14px;
      line-height: 18px;
      color: #fff;
      min-width: calc(100% - 106px);
      max-width: calc(100% - 106px);
      padding-right: 20px; }
      .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p a {
        color: #fff;
        margin-left: 5px;
        text-decoration: underline; }
        .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p a:hover {
          text-decoration: none; }
    .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane .button {
      display: inline-block;
      vertical-align: middle;
      font-size: 14px;
      color: #fff;
      background-color: transparent;
      width: 100px;
      height: 30px;
      line-height: 28px;
      border-radius: 17px;
      cursor: pointer; }
.discussion_item.children {
  border-top: none;
  padding-top: 5px;
  margin-left: 175px;
  margin-top: 5px;
  border-top: #aeaeae 1px solid; }
  .discussion_item.children .discussion_item_photo {
    background: none;
    float: left;
    width: 20%;
    margin-bottom: 20px;
    padding-right: 15px;
    box-sizing: border-box; }
    .discussion_item.children .discussion_item_photo img {
      border-radius: 5px;
      max-width: 100%; }
  .discussion_item.children .discussion_item_content {
    float: left;
    width: 80%; }
.fileinput-button {
  position: relative;
  overflow: hidden;
  display: block;
  margin-top: -4px; }
  .fileinput-button .uploader {
    opacity: 0;
    background: transparent;
    color: transparent;
    border-color: transparent;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .fileinput-button .input {
    margin-top: 4px;
    float: none; }

.comment_carousel {
  clear: both; }
  .comment_carousel:not(.owl-loaded) {
    max-height: 130px;
    overflow: hidden; }

.message.children .message_photo {
  float: right; }
.message.children .message_title > span {
  float: right; }
.message.children .message_title h3 {
  text-align: right;
  max-width: initial; }
.message.children a.link_reply {
  float: left; }

.customers_reviews .message.children {
  margin-top: 20px; }

.discussion_item.children .discussion_item_photo {
  margin-bottom: 5px; }
.discussion_item.children .discussion_item_content {
  font-size: 14px; }
  .discussion_item.children .discussion_item_content .discussion_item_title span {
    color: #397fdd; }
  .discussion_item.children .discussion_item_content p {
    color: #898a8a; }

.discussion_item.children {
  margin-left: 115px; }
  .discussion_item.children .discussion_item_photo {
    background: none;
    float: left;
    width: 20%; }
  .discussion_item.children .discussion_item_content {
    float: left;
    width: 80%; }

.comments .discussion_item.children {
  margin-top: 40px; }
@media screen and (min-width: 768px) and (max-width: 980px) {
  html,
  body {
    min-width: 100%; }

  .section_wrapper {
    display: inline-block;
    vertical-align: top;
    width: 100%; }
    .section_wrapper .section {
      width: 100%;
      padding-left: 10px;
      padding-right: 10px; }

  .header_nav > ul li {
    margin: 0; }
    .header_nav > ul li:after {
      display: none; }
    .header_nav > ul li a {
      padding: 0 4px; }

  .slogan {
    max-width: 243px; }

  .suggest_website a {
    width: 141px; }

  .pagination ul {
    padding-right: 0; }

  .footer_links ul {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; }
    .footer_links ul li {
      display: inline-block;
      vertical-align: top;
      float: none;
      margin: 0 15px; }

  .footer_nav ul li {
    border-left: none;
    padding: 0;
    margin: 0 12px; }
    .footer_nav ul li:last-child {
      margin-right: 0; }

  .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane {
    width: 100%;
    height: 100%;
    padding: 10px; }

  .top_services > .section {
    display: none; }
    .top_services > .section.owl-loaded {
      display: block; }
  .top_services .section_title {
    width: 100%; }
  .top_services .service_item {
    width: 100%; }
    .top_services .service_item .service_comment {
      width: 100%; }
  .top_services .owl-item {
    padding-left: 10px;
    padding-right: 10px; }

  .comment_carousel .owl-item {
    width: 100%; }

  .search {
    width: 100%; }
    .search .easy-autocomplete {
      width: 100% !important; }

  .statistic_item {
    width: 242px;
    margin-right: 10px; }
    .statistic_item .statistic_icon {
      width: 36px; }
    .statistic_item span {
      width: 50px; }
    .statistic_item p {
      text-indent: 8px; }

  .filter {
    width: 280px; }

  .popular_services_item {
    width: 138px; }

  .post_carousel {
    padding-left: 20px;
    padding-right: 20px; }

  .receive_discount .input {
    width: 473px;
    margin-left: 0; }

  .post .choose_item .post_photo {
    width: 100%; }
  .post .choose_item .post_info {
    width: 100%; }

  .our_mission_item {
    width: 226px; }

  .contact_form {
    width: 100%; }

  .contact_content {
    width: 100%;
    margin-top: 20px; }

  .sorting {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }
    .sorting .field_item:last-child {
      width: 100%; }
      .sorting .field_item:last-child:before {
        left: inherit;
        right: 15px; }
      .sorting .field_item:last-child .easy-autocomplete {
        width: 100% !important; }
      .sorting .field_item:last-child .input {
        width: 100%; }

  .sorting_results {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }

  .criteria_service {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }

  .criteria_info {
    width: 233px; }

  .criteria_service_title .mark {
    width: 42px; }
  .criteria_service_title .criteria_service_rating {
    float: left; }

  .criteria_info .criteria_links .button_visit {
    width: 130px; }

  .review_details_tabs .post_content img,
  .review_details_tabs .post_content iframe {
    max-width: 100%;
    height: auto; }
  .review_details_tabs .contact_form {
    width: 378px; }
    .review_details_tabs .contact_form .contact_form_content {
      width: 100%; } }
@media screen and (min-width: 0px) and (max-width: 767px) {
  html,
  body {
    min-width: 100%; }

  .wrapper {
    margin-bottom: 0; }

  h1 {
    font-size: 26px; }

  .wrapper {
    padding-bottom: 0; }

  .section_wrapper {
    display: inline-block;
    vertical-align: top; }
    .section_wrapper .section {
      width: 100%; }

  .header_nav {
    background-color: #dbeeff;
    position: fixed;
    top: 0;
    left: -84%;
    z-index: 999999;
    width: 84%;
    height: 100%;
    overflow-y: scroll;
    margin: 0;
    transition: left 0.5s ease;
    -moz-transition: left 0.5s ease;
    -webkit-transition: left 0.5s ease; }
    .header_nav.active {
      left: 0; }
    .header_nav > ul {
      padding-top: 59px; }
      .header_nav > ul li:after {
        display: none; }
      .header_nav > ul li.active a {
        border: none; }
        .header_nav > ul li.active a:after {
          display: none; }
      .header_nav > ul li.drop a:before {
        display: none; }
      .header_nav > ul li.drop.wide_drop > .drop_nav ul {
        max-width: 100%;
        min-width: 100%; }
      .header_nav > ul > li {
        width: 100%;
        padding-left: 18px;
        margin-bottom: 15px;
        height: auto;
        line-height: 18px; }
        .header_nav > ul > li.drop a:after {
          display: none; }
        .header_nav > ul > li.drop > span:after {
          display: none; }
        .header_nav > ul > li > a,
        .header_nav > ul > li > span {
          color: #3a3a3a;
          padding: 0;
          height: auto;
          line-height: 18px; }
        .header_nav > ul > li:hover > a,
        .header_nav > ul > li:hover > span {
          color: #3a3a3a; }
        .header_nav > ul > li.active {
          border-bottom: none;
          background-color: transparent; }
          .header_nav > ul > li.active > a,
          .header_nav > ul > li.active > span {
            border: none;
            color: #3a3a3a;
            padding-bottom: 0; }
            .header_nav > ul > li.active > a:before,
            .header_nav > ul > li.active > span:before {
              display: none; }
        .header_nav > ul > li .drop_nav {
          position: static; }
          .header_nav > ul > li .drop_nav > ul {
            border: none;
            background-color: transparent;
            box-shadow: none;
            padding-top: 14px;
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            width: auto;
            margin-left: 0; }
            .header_nav > ul > li .drop_nav > ul:before {
              display: none; }
            .header_nav > ul > li .drop_nav > ul li {
              background-color: transparent;
              min-width: auto;
              max-width: auto;
              padding-left: 10px;
              margin-bottom: 13px; }
              .header_nav > ul > li .drop_nav > ul li:hover {
                background-color: transparent; }
                .header_nav > ul > li .drop_nav > ul li:hover a {
                  background-color: transparent; }
              .header_nav > ul > li .drop_nav > ul li:before {
                display: none; }
              .header_nav > ul > li .drop_nav > ul li:first-child:before {
                display: none; }
              .header_nav > ul > li .drop_nav > ul li a {
                color: #3a3a3a;
                padding: 0;
                line-height: 16px; }
                .header_nav > ul > li .drop_nav > ul li a:hover {
                  color: #3a3a3a; }
              .header_nav > ul > li .drop_nav > ul li:last-child {
                margin-bottom: 9px; }

  .header_nav_button {
    float: left;
    margin: 16px 0 0 10px; }
    .header_nav_button span {
      background-color: #fff;
      display: block;
      width: 28px;
      height: 3px;
      margin-bottom: 4px; }

  .suggest_website {
    margin-right: 10px; }

  .header_nav_close {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 11px;
    right: 7px;
    width: 13px;
    height: 13px; }
    .header_nav_close span {
      display: block;
      position: absolute;
      width: 100%;
      height: 2px;
      background: #3a3a3a;
      top: 50%;
      margin: -2px 0 0 0; }
      .header_nav_close span:first-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      .header_nav_close span:last-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }

  .header_bottom .section:before, .header_bottom .section:after {
    display: none; }

  .logo {
    margin: 28px 0 0 10px; }
    .logo:before {
      display: none; }

  .slogan {
    margin: 20px 0 10px 0;
    padding: 0 10px; }

  .header_social {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px; }
    .header_social .social {
      display: inline-block;
      vertical-align: top; }

  .footer_logo {
    width: auto;
    float: none;
    border: none; }

  .section_title {
    text-align: center; }
    .section_title:before {
      display: none; }

  .footer {
    margin-top: 0; }

  .footer_content {
    width: 100%; }

  .footer_nav ul {
    text-align: center;
    display: block;
    width: 100%; }
    .footer_nav ul li {
      border-left: none;
      padding: 0 20px;
      margin-right: 0;
      margin-bottom: 10px; }
      .footer_nav ul li:last-child {
        border-right: none; }

  .footer_links ul {
    margin-bottom: 30px; }
    .footer_links ul li {
      padding: 3px 30px;
      margin-right: 0; }

  .footer_bottom .section {
    padding-left: 10px;
    padding-right: 10px; }

  .footer_copyright {
    margin-left: 0;
    margin-top: 8px; }

  .widget {
    width: 100%; }

  .sidebar {
    display: none;
    margin-left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }

  .sidebar_mobile {
    display: block; }
    .sidebar_mobile .sidebar {
      display: block; }

  .pagination {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding-right: 0;
    margin-bottom: 30px; }
    .pagination ul {
      padding-right: 0; }
      .pagination ul li {
        display: none; }
        .pagination ul li.prev, .pagination ul li.next {
          display: block; }

  .show_more {
    margin-bottom: 20px; }
    .show_more .button_show_more {
      width: 92%;
      margin: 0 auto; }

  .container_welcome .easy-autocomplete input {
    padding-right: 60px; }
  .container_welcome .easy-autocomplete:before {
    right: 30px; }

  .items_container + .show_more .button_show_more {
    width: 92%;
    margin: 0 auto; }

  .cookie_policy-overlay:not([style="display: none;"]) {
    text-align: center;
    padding: 20px; }
    .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane {
      width: 100%;
      padding: 0; }
      .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p {
        min-width: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 15px; }

  .top_services .section_title {
    width: 100%; }
    .top_services .section_title h1 {
      line-height: 35px;
      margin-bottom: 15px; }
  .top_services .section {
    padding-left: 10px;
    padding-right: 10px; }

  .service_item {
    width: 100%;
    margin: 0 0 20px 0; }

  .post_carousel {
    width: 100%;
    padding-left: 42px;
    padding-right: 42px; }

  .recent_posts .section_title {
    padding-left: 10px;
    padding-right: 10px; }

  .receive_discount label {
    width: 100%;
    font-size: 21px; }
  .receive_discount .input {
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    display: inline-block;
    vertical-align: top;
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 10px; }
  .receive_discount .button {
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    float: none;
    display: block;
    margin: 20px auto 0;
    width: 100%; }
  .receive_discount .section {
    padding-left: 10px;
    padding-right: 10px; }
    .receive_discount .section > span {
      text-align: center;
      display: block;
      position: relative;
      top: 8px; }
  .receive_discount .field_error {
    margin-left: 0;
    width: 100%; }

  .search {
    width: 100%; }
    .search h2 {
      text-align: center; }

  .easy-autocomplete {
    padding-left: 10px;
    padding-right: 10px;
    width: 100% !important; }
    .easy-autocomplete:before {
      right: 20px; }

  .statistics {
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    width: 100%;
    margin-top: 20px; }

  .statistic_item {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0; }

  .filter {
    width: calc(100% - 35px);
    margin-left: 25px;
    margin-right: 10px;
    margin-bottom: 30px; }

  .popular_services {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }

  .popular_services_item {
    width: 48%;
    margin: 0 0 20px 0;
    margin-right: 4%; }

  .popular_services .section_title:before {
    display: none; }

  .section_title + .popular_services_block .popular_services_item:first-child {
    margin-right: 4%; }
  .section_title + .popular_services_block .popular_services_item:nth-child(2) {
    margin-right: 0; }
  .section_title + .popular_services_block .popular_services_item:last-child {
    margin-right: 4%; }
  .section_title + .popular_services_block + .popular_services_block + .popular_services_block .popular_services_item:first-child {
    margin-right: 4%; }
  .section_title + .popular_services_block + .popular_services_block + .popular_services_block .popular_services_item:nth-child(2) {
    margin-right: 0; }
  .section_title + .popular_services_block + .popular_services_block + .popular_services_block .popular_services_item:last-child {
    margin-right: 4%; }

  .popular_services_block .popular_services_item:first-child {
    margin-right: 0; }
  .popular_services_block .popular_services_item:nth-child(2) {
    margin-right: 4%; }
  .popular_services_block .popular_services_item:last-child {
    margin-right: 0; }

  .text_section .section_content {
    padding-left: 10px;
    padding-right: 10px; }

  .widget_recent_reviews .top_service_item .top_service_photo {
    width: 132px; }

  .recent_reviews_item .recent_reviews_photo {
    width: 99px; }

  .widget_top_service .top_service_item .top_service_photo,
  .widget_best_dicounts .top_service_item .top_service_photo {
    width: 99px; }

  .popup_overlay {
    overflow-y: scroll; }

  .popup_close {
    top: 10px;
    right: 10px; }

  .popup.popup_review {
    width: 94%; }
    .popup.popup_review .popup_content {
      padding: 20px 10px; }
  .popup.popup_info {
    width: 90%; }
    .popup.popup_info .button {
      width: 90%; }

  .popup_review_form {
    margin-top: 0; }
    .popup_review_form .field_item .textarea {
      width: 99.8%; }
    .popup_review_form .field_block {
      width: 100%; }
    .popup_review_form .captcha {
      margin-left: -10.5px;
      width: 304px; }
    .popup_review_form .button_send {
      width: 100%;
      display: inline-block;
      vertical-align: top;
      margin-top: 12px; }

  .post {
    padding-left: 10px;
    padding-right: 10px; }
    .post .post_item .post_photo {
      width: 100%;
      margin-bottom: 20px; }
    .post .post_item .post_content {
      width: 100%; }
    .post .choose_item .post_info {
      width: 100%; }

  .post_content {
    word-break: break-word; }
    .post_content img {
      max-width: 100%;
      height: auto; }
    .post_content iframe {
      max-width: 100%;
      height: auto; }

  .our_mission_item {
    width: 100%;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px; }

  .contact {
    padding-left: 10px;
    padding-right: 10px; }

  .contact_content {
    display: none;
    width: 100%; }
    .contact_content.contact_content_mobile {
      display: block; }

  .contact_form {
    width: 100%; }
    .contact_form .contact_form_content {
      padding: 20px 10px 15px 10px;
      width: 100%; }
    .contact_form .field_block {
      width: 100%; }
      .contact_form .field_block:last-child {
        width: 100%; }
    .contact_form .captcha_block {
      margin-left: -11px; }

  .detailed_title {
    padding-left: 10px;
    padding-right: 10px; }
    .detailed_title h1 {
      font-size: 30px;
      line-height: 34px;
      word-break: break-word; }

  .review_details_nav ul {
    padding-left: 10px;
    padding-right: 10px; }

  .review_details_mobile {
    display: block; }

  .general_rating {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }
    .general_rating.general_rating_mobile {
      display: block; }
    .general_rating:before {
      display: none; }
    .general_rating .site_screen {
      width: 100%; }
      .general_rating .site_screen img {
        width: 100%; }

  .review_details {
    padding-left: 10px;
    padding-right: 10px; }

  .review_details_tabs .post_content p {
    margin-left: 0 !important; }
  .review_details_tabs .contact_form {
    margin-bottom: 30px; }
    .review_details_tabs .contact_form .contact_title:before {
      display: none; }
    .review_details_tabs .contact_form .contact_title h3 {
      width: 100%;
      text-align: center; }
    .review_details_tabs .contact_form .contact_form_content {
      width: 100%;
      padding-left: 10px;
      padding-right: 10px; }
      .review_details_tabs .contact_form .contact_form_content .field_item .field_error {
        width: 100%; }
      .review_details_tabs .contact_form .contact_form_content .field_item label {
        width: 100%; }
      .review_details_tabs .contact_form .contact_form_content .field_item .input {
        width: 100%; }
      .review_details_tabs .contact_form .contact_form_content .field_item .textarea {
        width: 100%; }
    .review_details_tabs .contact_form .captcha {
      width: 100%; }
    .review_details_tabs .contact_form .captcha_block {
      margin-left: 0; }
    .review_details_tabs .contact_form .button_post {
      width: 100%;
      margin-left: 0; }

  .customers_reviews {
    padding-left: 10px;
    padding-right: 10px; }

  .comments {
    padding-left: 10px;
    padding-right: 10px; }
    .comments .message_photo {
      width: 85px; }
      .comments .message_photo img {
        max-width: 100%;
        height: auto; }

  .review_details_tabs .contact_form {
    width: 100%; }

  .rate_page {
    padding-left: 10px;
    padding-right: 10px; }

  .rate_form {
    width: 100%;
    margin-right: 0; }
    .rate_form .field_item .liked_area {
      float: left; }
    .rate_form .field_item .field_error {
      width: 100%; }
    .rate_form .field_item > label {
      width: 100%; }
    .rate_form .field_item .input {
      width: 100%; }
    .rate_form .field_item .textarea {
      width: 100%; }
    .rate_form .field_item .rate_field_item {
      width: 48%;
      margin-right: 4%;
      margin-bottom: 15px; }
      .rate_form .field_item .rate_field_item:nth-child(2n) {
        margin-right: 0; }
    .rate_form .field_item.field_like_dislike label {
      margin-top: 0;
      margin-bottom: 10px; }
    .rate_form .liked_area {
      margin-left: 0; }
    .rate_form .captcha {
      width: 100%; }
    .rate_form .button {
      width: 100%; }

  .rate_post {
    display: none; }
    .rate_post.rate_post_mobile {
      width: 100%;
      display: inline-block;
      vertical-align: top;
      margin-bottom: 20px; }

  .sorting {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%; }
    .sorting .field_item {
      width: 100%; }
      .sorting .field_item .select2-container {
        min-width: 100%;
        max-width: 100%; }
      .sorting .field_item .easy-autocomplete {
        padding-left: 0;
        padding-right: 0; }
        .sorting .field_item .easy-autocomplete:before {
          top: 8px; }
      .sorting .field_item:first-child {
        margin-right: 0; }
      .sorting .field_item:last-child .input {
        width: 100%;
        height: 35px; }
      .sorting .field_item .field_subitem {
        width: 100%;
        margin-bottom: 10px; }
        .sorting .field_item .field_subitem:last-child {
          margin-bottom: 0; }

  .sorting_results {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }
    .sorting_results span {
      font-size: 14px; }
      .sorting_results span b {
        margin-top: 10px; }
      .sorting_results span strong {
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px; }

  .criteria_block {
    padding: 25px 10px; }

  .criteria_service {
    width: 100%; }
    .criteria_service .criteria_service_photo {
      float: none;
      margin: 0 auto 20px; }
    .criteria_service > a {
      border-bottom: #dcdcdc 1px solid;
      display: block;
      text-align: center;
      margin-bottom: 8px;
      padding-bottom: 20px; }
      .criteria_service > a .criteria_service_photo {
        float: none;
        display: inline-block;
        vertical-align: top;
        margin-right: 0; }
    .criteria_service .criteria_info {
      width: 100%;
      margin: 0; }
      .criteria_service .criteria_info .criteria_links .button_visit {
        width: 54%; }
      .criteria_service .criteria_info .criteria_links .button_rate {
        width: 40%; }
    .criteria_service .criteria_service_content {
      border-right: none;
      width: 100%;
      padding: 12px 0 0 0; }

  .criteria_service_title .criteria_service_rating {
    width: 100%;
    margin: 5px 0 0 0; }

  .error_page .button {
    width: 90%; }

  .filter_wrapper:before {
    height: 422px; }

  .select_feature_item .select_feature_subitem {
    margin-right: 10px; } }
/*








 */

