/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 *
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.2
 * Copyright MIT License: https://github.com/pawelczak/easy-autocomplete/blob/master/LICENSE.txt
 */


.easy-autocomplete {
  position: relative;
}

.easy-autocomplete:before {
  background: url(/assets/search_icon.png) right center no-repeat;
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 5px;
  right: 8px;
}
.easy-autocomplete input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  color: #555;
  font-size: 20px;
  width: 100%;
  padding: 0 40px 0 10px;
  height: 49px;
}
.easy-autocomplete input:hover, .easy-autocomplete input:focus {
  box-shadow: none;
}
.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: #f6f6f6;
}
.easy-autocomplete.eac-blue input:-moz-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input::-moz-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:-ms-input-placeholder {
  color: #f6f6f6;
}
.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;
  position: absolute;
  width: 100%;
  z-index: 3;
}
.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px solid #a4b2be;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -3px;
}
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #ccc;
  border-image: none;
  border-style: solid;
  border-width: 0 1px;
  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 #ebebeb;
  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;
  position: relative;
  vertical-align: middle;
  outline: none !important;
  position: relative; }
  .select2-container:before {
    box-shadow: 0 0px 6px #b7c4cf;
    -moz-box-shadow: 0 0px 6px #b7c4cf;
    -webkit-box-shadow: 0 0px 6px #b7c4cf;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    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: 29px;
    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 #b7c4cf;
  border-radius: 4px;
  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] {
    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 #b7c4cf;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .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 {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 24px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #2a6191 transparent transparent transparent;
      border-style: solid;
      border-width: 7px 6px 0 6px;
      height: 0;
      left: 50%;
      margin-left: -6px;
      margin-top: -3px;
      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 #2a6191 transparent;
  border-width: 0 6px 7px 6px; }
.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: #999; }
.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: #cce3f5;
  color: #45505a; }
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f6f6f6;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); }
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); }
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .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--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0; }
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }
.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }
.select2-container--classic .select2-dropdown--below {
  border-top: none; }
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }
.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #cce3f5;
  color: #45505a; }
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/* General settings */
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
  background-image: url(/assets/sprite.png);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased; }
div.selector, div.checker, div.button, div.radio, div.uploader {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  /* Keeping this as :focus to remove browser styles */ }
  div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
    outline: 0; }
div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
  margin: 0;
  padding: 0; }

.highContrastDetect {
  background: url(/assets/bg-input.png) repeat-x 0 0;
  width: 0px;
  height: 0px; }

/* Input & Textarea */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  padding: 3px;
  background: url(/assets/bg-input.png) repeat-x 0 0;
  outline: 0; }
  input.uniform-input.active,
  select.uniform-multiselect.active,
  textarea.uniform.active {
    background: url(/assets/bg-input-focus.png) repeat-x 0 0; }

/* Remove default webkit and possible mozilla .search styles.
 * Keeping this as :active to remove browser styles */
div.checker input,
input[type="search"],
input[type="search"]:active {
  -moz-appearance: none;
  -webkit-appearance: none; }

/* Select */
div.selector {
  background-position: 0 -130px;
  line-height: 26px;
  height: 26px;
  padding: 0 0 0 10px;
  position: relative;
  overflow: hidden; }
  div.selector span {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    background-position: right 0;
    height: 26px;
    line-height: 26px;
    padding-right: 25px;
    cursor: pointer;
    width: 100%;
    display: block; }
  div.selector.fixedWidth {
    width: 190px; }
    div.selector.fixedWidth span {
      width: 155px; }
  div.selector select {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    height: 22px;
    top: 2px;
    left: 0px;
    width: 100%; }
  div.selector.active {
    background-position: 0 -156px; }
    div.selector.active span {
      background-position: right -26px; }
  div.selector.hover, div.selector.focus {
    background-position: 0 -182px; }
    div.selector.hover span, div.selector.focus span {
      background-position: right -52px; }
    div.selector.hover.active, div.selector.focus.active {
      background-position: 0 -208px; }
      div.selector.hover.active span, div.selector.focus.active span {
        background-position: right -78px; }
  div.selector.disabled, div.selector.disabled.active {
    background-position: 0 -234px; }
    div.selector.disabled span, div.selector.disabled.active span {
      background-position: right -104px; }

/* Checkbox */
div.checker {
  position: relative; }
  div.checker, div.checker span, div.checker input {
    width: 19px;
    height: 19px; }
  div.checker span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: 0 -260px; }
    div.checker span.checked {
      background-position: -76px -260px; }
  div.checker input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1; }
  div.checker.active span {
    background-position: -19px -260px; }
    div.checker.active span.checked {
      background-position: -95px -260px; }
  div.checker.hover span, div.checker.focus span {
    background-position: -38px -260px; }
    div.checker.hover span.checked, div.checker.focus span.checked {
      background-position: -114px -260px; }
  div.checker.hover.active span, div.checker.focus.active span {
    background-position: -57px -260px; }
    div.checker.hover.active span.checked, div.checker.focus.active span.checked {
      background-position: -133px -260px; }
  div.checker.disabled, div.checker.disabled.active {
    background-position: -152px -260px; }
    div.checker.disabled span.checked, div.checker.disabled.active span.checked {
      background-position: -171px -260px; }

/* Radio */
div.radio {
  position: relative; }
  div.radio, div.radio span, div.radio input {
    width: 18px;
    height: 18px; }
  div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: 0 -279px; }
    div.radio span.checked {
      background-position: -72px -279px; }
  div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  div.radio.active span {
    background-position: -18px -279px; }
    div.radio.active span.checked {
      background-position: -90px -279px; }
  div.radio.hover span, div.radio.focus span {
    background-position: -36px -279px; }
    div.radio.hover span.checked, div.radio.focus span.checked {
      background-position: -108px -279px; }
  div.radio.hover.active span, div.radio.focus.active span {
    background-position: -54px -279px; }
    div.radio.hover.active span.checked, div.radio.focus.active span.checked {
      background-position: -126px -279px; }
  div.radio.disabled span, div.radio.disabled.active span {
    background-position: -144px -279px; }
    div.radio.disabled span.checked, div.radio.disabled.active span.checked {
      background-position: -162px -279px; }

/* Uploader */
div.uploader {
  background-position: 0 -297px;
  height: 28px;
  width: 190px;
  cursor: pointer;
  position: relative;
  overflow: hidden; }
  div.uploader span.action {
    background-position: right -409px;
    height: 28px;
    line-height: 28px;
    width: 85px;
    text-align: center;
    float: left;
    display: inline;
    overflow: hidden;
    cursor: pointer; }
  div.uploader span.filename {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    float: left;
    cursor: default;
    height: 24px;
    margin: 2px 0 2px 2px;
    line-height: 24px;
    width: 82px;
    padding: 0 10px; }
  div.uploader input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    float: right;
    cursor: default;
    width: 100%;
    height: 100%; }
  div.uploader.active span.action {
    background-position: right -465px; }
  div.uploader.hover, div.uploader.focus {
    background-position: 0 -353px; }
    div.uploader.hover span.action, div.uploader.focus span.action {
      background-position: right -437px; }
    div.uploader.hover.active span.action, div.uploader.focus.active span.action {
      background-position: right -493px; }
  div.uploader.disabled, div.uploader.disabled.active {
    background-position: 0 -325px; }
    div.uploader.disabled span.action, div.uploader.disabled.active span.action {
      background-position: right -381px; }

/* Buttons */
div.button {
  background-position: 0 -641px;
  height: 30px;
  cursor: pointer;
  position: relative;
  /* Keep buttons barely visible so they can get focus */ }
  div.button a, div.button button, div.button input {
    opacity: 0.01;
    filter: alpha(opacity=1);
    -moz-opacity: 0.01;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
  div.button span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    line-height: 30px;
    text-align: center;
    background-position: right -521px;
    height: 30px;
    margin-left: 13px;
    padding: 0; }
  div.button.active {
    background-position: 0 -671px; }
    div.button.active span {
      background-position: right -551px;
      cursor: default; }
  div.button.hover, div.button.focus {
    background-position: 0 -701px; }
    div.button.hover span, div.button.focus span {
      background-position: right -581px; }
  div.button.disabled, div.button.disabled.active {
    background-position: 0 -731px; }
    div.button.disabled span, div.button.disabled.active span {
      background-position: right -611px;
      cursor: default; }

/*

Uniform Theme: Uniform Default
Version: 1.8
By: Josh Pyles
License: MIT License
---
For use with the Uniform plugin:
http://uniformjs.com/

*/
/* General settings */
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
  background-image: url(/assets/sprite.png);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased; }
div.selector, div.checker, div.button, div.radio, div.uploader {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  /* Keeping this as :focus to remove browser styles */ }
  div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
    outline: 0; }
div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
  margin: 0;
  padding: 0; }

.highContrastDetect {
  background: url(/assets/bg-input.png) repeat-x 0 0;
  width: 0px;
  height: 0px; }

/* Input & Textarea */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  padding: 3px;
  background: url(/assets/bg-input.png) repeat-x 0 0;
  outline: 0; }
  input.uniform-input.active,
  select.uniform-multiselect.active,
  textarea.uniform.active {
    background: url(/assets/bg-input-focus.png) repeat-x 0 0; }

/* Remove default webkit and possible mozilla .search styles.
 * Keeping this as :active to remove browser styles */
div.checker input,
input[type="search"],
input[type="search"]:active {
  -moz-appearance: none;
  -webkit-appearance: none; }

/* Select */
div.selector {
  background-position: 0 -130px;
  line-height: 26px;
  height: 26px;
  padding: 0 0 0 10px;
  position: relative;
  overflow: hidden; }
  div.selector span {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    background-position: right 0;
    height: 26px;
    line-height: 26px;
    padding-right: 25px;
    cursor: pointer;
    width: 100%;
    display: block; }
  div.selector.fixedWidth {
    width: 190px; }
    div.selector.fixedWidth span {
      width: 155px; }
  div.selector select {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    height: 22px;
    top: 2px;
    left: 0px;
    width: 100%; }
  div.selector.active {
    background-position: 0 -156px; }
    div.selector.active span {
      background-position: right -26px; }
  div.selector.hover, div.selector.focus {
    background-position: 0 -182px; }
    div.selector.hover span, div.selector.focus span {
      background-position: right -52px; }
    div.selector.hover.active, div.selector.focus.active {
      background-position: 0 -208px; }
      div.selector.hover.active span, div.selector.focus.active span {
        background-position: right -78px; }
  div.selector.disabled, div.selector.disabled.active {
    background-position: 0 -234px; }
    div.selector.disabled span, div.selector.disabled.active span {
      background-position: right -104px; }

/* Checkbox */
div.checker {
  position: relative; }
  div.checker, div.checker span, div.checker input {
    width: 21px;
    height: 21px; }
  div.checker span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: 0 -260px; }
    div.checker span.checked {
      background-position: -84px -260px; }
  div.checker input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1; }
  div.checker.active span {
    background-position: -21px -260px; }
    div.checker.active span.checked {
      background-position: -105px -260px; }
  div.checker.hover span, div.checker.focus span {
    background-position: -42px -260px; }
    div.checker.hover span.checked, div.checker.focus span.checked {
      background-position: -126px -260px; }
  div.checker.hover.active span, div.checker.focus.active span {
    background-position: -63px -260px; }
    div.checker.hover.active span.checked, div.checker.focus.active span.checked {
      background-position: -147px -260px; }
  div.checker.disabled, div.checker.disabled.active {
    background-position: -168px -260px; }
    div.checker.disabled span.checked, div.checker.disabled.active span.checked {
      background-position: -189px -260px; }

/* Radio */
div.radio {
  position: relative; }
  div.radio, div.radio span, div.radio input {
    width: 18px;
    height: 18px; }
  div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: 0 -281px; }
    div.radio span.checked {
      background-position: -72px -281px; }
  div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  div.radio.active span {
    background-position: -18px -281px; }
    div.radio.active span.checked {
      background-position: -90px -281px; }
  div.radio.hover span, div.radio.focus span {
    background-position: -36px -281px; }
    div.radio.hover span.checked, div.radio.focus span.checked {
      background-position: -108px -281px; }
  div.radio.hover.active span, div.radio.focus.active span {
    background-position: -54px -281px; }
    div.radio.hover.active span.checked, div.radio.focus.active span.checked {
      background-position: -126px -281px; }
  div.radio.disabled span, div.radio.disabled.active span {
    background-position: -144px -281px; }
    div.radio.disabled span.checked, div.radio.disabled.active span.checked {
      background-position: -162px -281px; }

/* Uploader */
div.uploader {
  background-position: 0 -299px;
  height: 28px;
  width: 190px;
  cursor: pointer;
  position: relative;
  overflow: hidden; }
  div.uploader span.action {
    background-position: right -411px;
    height: 28px;
    line-height: 28px;
    width: 82px;
    text-align: center;
    float: left;
    display: inline;
    overflow: hidden;
    cursor: pointer; }
  div.uploader span.filename {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    float: left;
    cursor: default;
    height: 24px;
    margin: 2px 0 2px 2px;
    line-height: 24px;
    width: 85px;
    padding: 0 10px; }
  div.uploader input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    float: right;
    cursor: default;
    width: 100%;
    height: 100%; }
  div.uploader.active span.action {
    background-position: right -467px; }
  div.uploader.hover, div.uploader.focus {
    background-position: 0 -355px; }
    div.uploader.hover span.action, div.uploader.focus span.action {
      background-position: right -439px; }
    div.uploader.hover.active span.action, div.uploader.focus.active span.action {
      background-position: right -495px; }
  div.uploader.disabled, div.uploader.disabled.active {
    background-position: 0 -327px; }
    div.uploader.disabled span.action, div.uploader.disabled.active span.action {
      background-position: right -383px; }

/* Buttons */
div.button {
  background-position: 0 -643px;
  height: 30px;
  cursor: pointer;
  position: relative;
  /* Keep buttons barely visible so they can get focus */ }
  div.button a, div.button button, div.button input {
    opacity: 0.01;
    filter: alpha(opacity=1);
    -moz-opacity: 0.01;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
  div.button span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    line-height: 22px;
    text-align: center;
    background-position: right -523px;
    height: 22px;
    margin-left: 13px;
    padding: 8px 15px 0 2px; }
  div.button.active {
    background-position: 0 -673px; }
    div.button.active span {
      background-position: right -553px;
      cursor: default; }
  div.button.hover, div.button.focus {
    background-position: 0 -703px; }
    div.button.hover span, div.button.focus span {
      background-position: right -583px; }
  div.button.disabled, div.button.disabled.active {
    background-position: 0 -733px; }
    div.button.disabled span, div.button.disabled.active span {
      background-position: right -613px;
      cursor: default; }

/* INPUT & TEXTAREA */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  font-size: 12px;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #777;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }
  input.uniform-input.hover, input.uniform-input.focus,
  select.uniform-multiselect.hover,
  select.uniform-multiselect.focus,
  textarea.uniform.hover,
  textarea.uniform.focus {
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    border-color: #999; }

/* PRESENTATION */
/* Buttons */
div.button span {
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase; }
div.button.hover span, div.button.focus span {
  color: #555; }
div.button.disabled span, div.button.disabled.active span {
  color: #bbb; }

/* Select */
div.selector {
  font-size: 12px; }
  div.selector span {
    color: #666;
    text-shadow: 0 1px 0 #fff; }
  div.selector select {
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 12px; }
  div.selector.disabled span, div.selector.disabled.active span {
    color: #bbb; }

/* Checker */
div.checker {
  margin-right: 5px; }

/* Radio */
div.radio {
  margin-right: 3px; }

/* Uploader */
div.uploader span.action {
  text-shadow: #fff 0px 1px 0px;
  background-color: #fff;
  font-size: 11px;
  font-weight: bold; }
div.uploader span.filename {
  color: #777;
  border-right: solid 1px #bbb;
  font-size: 11px; }
div.uploader.disabled span.action, div.uploader.disabled.active span.action {
  color: #aaa; }
div.uploader.disabled span.filename, div.uploader.disabled.active span.filename {
  border-color: #ddd;
  color: #aaa; }

input.uniform-input, input.uniform-input:focus {
  background-color: #fff; }

html,
body {
  background-color: #fff;
  font-family: 'Cuprum', sans-serif;
  font-size: 13px;
  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; }

h1 {
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center; }

h2 {
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase; }

.button,
a.button {
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: 'Cuprum', sans-serif;
  text-decoration: none;
  text-align: center;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none; }

.input,
.textarea {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #fff;
  border: #9faab3 1px solid;
  color: #708090;
  font-size: 16px;
  font-family: 'Cuprum', sans-serif;
  outline: none;
  padding: 0 10px; }
  .input::-webkit-input-placeholder,
  .textarea::-webkit-input-placeholder {
    color: #c3c9cf;
    font-style: italic;
    font-weight: 400; }
  .input:-moz-placeholder,
  .textarea:-moz-placeholder {
    color: #c3c9cf;
    font-style: italic;
    font-weight: 400; }
  .input::-moz-placeholder,
  .textarea::-moz-placeholder {
    color: #c3c9cf;
    font-style: italic;
    font-weight: 400; }
  .input:-ms-input-placeholder,
  .textarea:-ms-input-placeholder {
    color: #c3c9cf;
    font-style: italic;
    font-weight: 400; }

.input {
  height: 29px; }

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

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

.section_title {
  position: relative;
  overflow: hidden; }
  .section_title:before {
    border-top: #5e5fb0 1px solid;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0; }
  .section_title h1,
  .section_title .h1 {
    background-color: #fff;
    display: inline-block;
    color: #f1701a;
    font-size: 30px;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: center; }
    .section_title h1 span,
    .section_title .h1 span {
      font-size: 21px; }
  .section_title h2,
  .section_title .h2 {
    background-color: #fff;
    display: inline-block;
    color: #5e5fb0;
    font-size: 30px;
    position: relative;
    z-index: 2;
    padding-right: 15px;
    text-align: left; }

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

.logo {
  float: left;
  margin-top: 25px;
  position: relative;
  width: 176px; }
  .logo img {
    max-width: 100%;
    height: auto; }
  .logo:before {
    background: #ef7c1d;
    background: -moz-linear-gradient(left, #ef7c1d 0%, #eeefed 100%);
    background: -webkit-linear-gradient(left, #ef7c1d 0%, #eeefed 100%);
    background: linear-gradient(to right, #ef7c1d 0%, #eeefed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ef7c1d', endColorstr='#eeefed', GradientType=1);
    content: '';
    display: block;
    width: 460px;
    height: 1px;
    position: absolute;
    top: 9px;
    left: 140px; }

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

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

.suggest_website {
  padding: 5px 0px 5px 0;
  float: right;
  margin: 4px 4px 0 0; }
  .suggest_website a,
  .suggest_website button {
    color: #272876;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    padding-top: 3px;
    text-decoration: underline;
    background: none;
    border: none;
    outline: none; }
    .suggest_website a:hover,
    .suggest_website button:hover {
      cursor: pointer;
      text-decoration: none; }

.header_social {
  float: right;
  margin-top: 66px;
  position: relative;
  z-index: 4; }
  .header_social .like-block,
  .header_social a {
    float: left;
    margin-left: 7px; }

.header_bottom {
  box-shadow: inset 0 3px 10px #c5cdd4;
  -moz-box-shadow: inset 0 3px 10px #c5cdd4;
  -webkit-box-shadow: inset 0 3px 10px #c5cdd4;
  display: inline-block;
  zoom: 1;
  *display: inline;
  background-color: #ebefef;
  border-bottom: #d3dae2 1px solid;
  width: 100%;
  font-size: 0;
  min-height: 95px;
  vertical-align: top; }
  .header_bottom .section {
    position: relative; }
    .header_bottom .section:before {
      background: url(/assets/header_bg.png) no-repeat;
      content: '';
      display: block;
      width: 213px;
      height: 140px;
      position: absolute;
      top: -45px;
      right: 214px;
      z-index: 2; }
    .header_bottom .section:after {
      background: url(/assets/header_bottom_bg.png) no-repeat;
      content: '';
      display: block;
      width: 465px;
      height: 95px;
      position: absolute;
      top: 0;
      right: 100px;
      z-index: 1; }

.header_nav {
  margin-top: 11px;
  float: left;
  position: relative;
  z-index: 5; }
  .header_nav > ul {
    margin-left: -8px;
    list-style: none; }
    .header_nav > ul li {
      float: left;
      margin-right: 25px;
      position: relative; }
      .header_nav > ul li span {
        cursor: default; }
      .header_nav > ul li a,
      .header_nav > ul li span {
        color: #838383;
        font-size: 16px;
        line-height: 24px;
        padding: 0 8px;
        position: relative; }
      .header_nav > ul li a {
        text-decoration: none; }
        .header_nav > ul li a:hover {
          color: #4d4d4d;
          border-bottom: #a5baed 2px solid;
          padding-bottom: 11px; }
      .header_nav > ul li.active a {
        color: #4d4d4d;
        border-bottom: #a5baed 2px solid;
        padding-bottom: 11px; }
      .header_nav > ul li.drop.wide_drop > .drop_nav ul {
        max-width: 300px;
        min-width: 300px; }
      .header_nav > ul li.drop a:after,
      .header_nav > ul li.drop > span:after {
        background: url(/assets/drop_icon.png) center 5px no-repeat;
        content: '';
        display: block;
        width: 16px;
        height: 20px;
        position: absolute;
        top: 2px;
        right: -10px; }
      .header_nav > ul li > .drop_nav {
        display: none;
        position: absolute;
        top: 22px;
        left: 0; }
        .header_nav > ul li > .drop_nav ul {
          border-bottom-right-radius: 5px;
          border-bottom-left-radius: 5px;
          box-shadow: 0px 3px 5px #dcdcdc;
          -moz-box-shadow: 0px 3px 5px #dcdcdc;
          -webkit-box-shadow: 0px 3px 5px #dcdcdc;
          background-color: #fff;
          min-width: 114px;
          max-width: 220px;
          overflow: hidden; }
          .header_nav > ul li > .drop_nav ul li {
            width: 100%;
            overflow: hidden;
            margin-right: 0; }
            .header_nav > ul li > .drop_nav ul li a {
              display: block;
              line-height: 16px;
              padding: 5px 8px; }
              .header_nav > ul li > .drop_nav ul li a:hover {
                border-bottom: none;
                background-color: #cce3f5; }
              .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;
        z-index: 1; }
      .header_nav > ul li:hover.drop a,
      .header_nav > ul li:hover.drop > span {
        border-bottom: none; }
        .header_nav > ul li:hover.drop a:after,
        .header_nav > ul li:hover.drop > span:after {
          box-shadow: 0px -2px 4px #c1c5c9;
          -moz-box-shadow: 0px -2px 4px #c1c5c9;
          -webkit-box-shadow: 0px -2px 4px #c1c5c9;
          border-top-right-radius: 8px;
          border-top-left-radius: 8px;
          background-color: #fff;
          overflow: hidden; }
      .header_nav > ul li:last-child {
        margin-right: 0; }

.slogan {
  color: #686f85;
  float: left;
  font-size: 16px;
  margin: 56px 0 0 11px;
  position: relative;
  z-index: 4;
  max-width: 410px; }

.header_links {
  float: right; }
  .header_links a {
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    background-color: #eaffff;
    border: #96b2c9 2px solid;
    height: 44px;
    line-height: 40px;
    color: #3f5263;
    font-size: 15px;
    float: left;
    width: 200px;
    text-transform: uppercase;
    margin: 9px 0 0 12px; }
    .header_links a:hover {
      background-color: #d6fbfb; }
    .header_links a span {
      font-size: 12px; }

.container {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 100%;
  vertical-align: top;
  margin-top: 24px; }
  .container .content > div p {
    color: #3a3636;
    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; }
  .container > .section_wrapper:first-child .section_title {
    margin-top: -10px;
    margin-bottom: 16px; }
    .container > .section_wrapper:first-child .section_title:before {
      border-top: #f16e19 1px solid; }

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

.footer_email {
  background: url(/assets/email_icon.png) left center no-repeat;
  color: #364586;
  float: left;
  font-size: 14px;
  line-height: 41px;
  padding-left: 50px; }
  .footer_email a {
    color: #364586;
    text-decoration: none; }

.footer_copyright {
  background: url(/assets/copyright_icon.png) left center no-repeat;
  float: left;
  color: #364586;
  font-size: 14px;
  line-height: 41px;
  padding-left: 50px;
  margin-left: 78px; }

.footer_top {
  background-color: #212d61;
  padding: 34px 0 8px 0; }

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

.footer_content {
  width: 74%;
  float: left; }

.footer_nav {
  overflow: hidden;
  width: 100%; }
  .footer_nav ul {
    position: relative;
    display: table;
    margin: 0 auto; }
    .footer_nav ul li {
      display: inline-block;
      zoom: 1;
      *display: inline;
      vertical-align: top;
      position: relative;
      margin-right: 53px; }
      .footer_nav ul li:last-child {
        margin-right: 0; }
      .footer_nav ul li a {
        color: #f8841c;
        font-size: 19px;
        line-height: 24px;
        text-decoration: none; }

.footer_links {
  margin: 28px 0 20px 0; }
  .footer_links ul {
    display: inline-block;
    zoom: 1;
    *display: inline;
    list-style: none;
    display: table;
    margin: 0 auto; }
    .footer_links ul li {
      border-right: #172148 1px solid;
      float: left;
      margin: 0 20px 20px; }
      .footer_links ul li a {
        color: #99a5d8;
        display: inline-block;
        font-size: 15px;
        line-height: 24px; }
        .footer_links ul li a:hover {
          text-decoration: none; }
      .footer_links ul li:first-child {
        padding-left: 0; }
      .footer_links ul li:last-child {
        border-right: none;
        padding-right: 0; }

.footer_links.footer_pages ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
.footer_links.footer_services {
  width: 100%;
  margin: 30px auto 0;
  text-align: center;
  clear: both;
  padding: 0; }
  .footer_links.footer_services ul {
    display: block;
    list-style: none;
    overflow: hidden;
    border-bottom: none; }
    .footer_links.footer_services ul li {
      display: inline-block;
      vertical-align: top;
      float: none;
      padding: 0;
      border-right: 0; }
      .footer_links.footer_services ul li a {
        color: #99a5d8;
        text-decoration: none; }
        .footer_links.footer_services ul li a:hover {
          text-decoration: underline; }

.footer_logo {
  border-left: #37437a 1px solid;
  border-right: #37437a 1px solid;
  float: right;
  width: 24.5%;
  padding: 12px 0;
  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 {
  background-color: #e5f1fb;
  border-top: #d3dae2 1px solid;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 23px 0; }
  .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;
      width: 36px;
      height: 32px;
      line-height: 28px;
      text-align: center;
      margin: 0 10px; }
      .pagination ul li:hover {
        background-color: #eaf9ff; }
      .pagination ul li a,
      .pagination ul li span {
        box-shadow: inset 0 -2px 0 #23326e;
        -moz-box-shadow: inset 0 -2px 0 #23326e;
        -webkit-box-shadow: inset 0 -2px 0 #23326e;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        background-color: #47579b;
        color: #fff;
        text-decoration: none;
        display: block;
        font-size: 16px;
        line-height: 32px;
        width: 100%;
        height: 100%;
        outline: none;
        text-transform: uppercase; }
        .pagination ul li a.current,
        .pagination ul li span.current {
          background-color: #384682;
          color: #fff; }
          .pagination ul li a.current:hover,
          .pagination ul li span.current:hover {
            background-color: #384682; }
        .pagination ul li a:hover,
        .pagination ul li span:hover {
          background-color: #7a8ee6; }
      .pagination ul li.prev {
        width: 107px;
        margin: 0 20px; }
        .pagination ul li.prev a,
        .pagination ul li.prev span {
          border-radius: 5px;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          background-color: #47579b;
          color: #fff; }
          .pagination ul li.prev a:hover,
          .pagination ul li.prev span:hover {
            box-shadow: inset 0 -2px 0 #1a2551;
            -moz-box-shadow: inset 0 -2px 0 #1a2551;
            -webkit-box-shadow: inset 0 -2px 0 #1a2551;
            background-color: #3d4487; }
      .pagination ul li.next {
        width: 107px;
        margin: 0 20px; }
        .pagination ul li.next a {
          border-radius: 5px;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          background-color: #47579b;
          color: #fff; }
          .pagination ul li.next a:hover {
            box-shadow: inset 0 -2px 0 #1a2551;
            -moz-box-shadow: inset 0 -2px 0 #1a2551;
            -webkit-box-shadow: inset 0 -2px 0 #1a2551;
            background-color: #3d4487; }
      .pagination ul li.page.gap {
        width: auto;
        height: auto; }
        .pagination ul li.page.gap span {
          border: none;
          width: auto;
          height: auto;
          line-height: 44px;
          background-color: transparent;
          color: #47579b;
          line-height: 44px;
          box-shadow: none; }
          .pagination ul li.page.gap span:hover {
            background-color: transparent; }

.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;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border: #acc6da 1px solid;
  background-color: #f7fbfb;
  float: left;
  width: 49px;
  height: 49px;
  -webkit-appearance: none;
  outline: none; }
  .like:hover, .like:checked {
    background-position: left -49px; }
  .like:not(:checked) {
    opacity: 0.5; }

.dislike {
  background: url(/assets/like_icons.png) right top no-repeat;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border: #acc6da 1px solid;
  background-color: #f7fbfb;
  float: left;
  width: 49px;
  height: 49px;
  -webkit-appearance: none;
  outline: none; }
  .dislike:hover, .dislike:checked {
    background-position: right -49px; }
  .dislike:not(:checked) {
    opacity: 0.5; }

.cookie_policy-overlay:not([style="display: none;"]) {
  width: 100%;
  background-color: #172249;
  position: fixed;
  bottom: 0;
  z-index: 999999; }
  .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane {
    width: 1000px;
    margin: 0 auto;
    padding: 14px 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: 21px;
      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: #80C3FB;
        margin-left: 5px;
        text-decoration: none; }
        .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p a:hover {
          text-decoration: underline; }
    .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane .button {
      display: inline-block;
      vertical-align: middle;
      font-size: 14px;
      color: #80C3FB;
      background-color: transparent;
      border: 1px solid #80C3FB;
      width: 100px;
      height: 36px;
      line-height: 34px;
      border-radius: 5px;
      cursor: pointer;
      text-transform: uppercase; }

.pagination {
  display: block; }

.pagination.pagination-for-mobile {
  display: none; }

/* statistics */
.statistics {
  border-left: #d3dae2 1px solid;
  border-right: #d3dae2 1px solid;
  float: right;
  padding: 0 45px; }

.statistic_item {
  background-color: #fff;
  border: #b0cdeb 2px solid;
  overflow: hidden;
  width: 220px;
  height: 32px;
  margin-bottom: 10px; }
  .statistic_item:last-child {
    margin-bottom: 0; }
  .statistic_item .statistic_icon {
    float: left;
    width: 48px;
    height: 28px; }
  .statistic_item.statistic_reviews .statistic_icon {
    background: #b0cdeb url(/assets/statistic_icon1.png) center center no-repeat; }
  .statistic_item.statistic_comments .statistic_icon {
    background: #b0cdeb url(/assets/statistic_icon2.png) center center no-repeat; }
  .statistic_item.statistic_services .statistic_icon {
    background: #b0cdeb url(/assets/statistic_icon3.png) center center no-repeat; }
  .statistic_item p {
    color: #4d6a91;
    float: left;
    font-size: 15px;
    line-height: 30px;
    text-indent: 7px; }
  .statistic_item span {
    border-left: #b0cdeb 2px solid;
    color: #3c3d74;
    float: right;
    font-size: 16px;
    line-height: 30px;
    width: 43px;
    text-align: center; }

/* end statistics */
/* popular services */
.popular_services {
  overflow: hidden; }
  .popular_services .section_title {
    margin-bottom: 19px; }
    .popular_services .section_title h2, .popular_services .section_title .h2 {
      line-height: 25px; }

.popular_services_item {
  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 18px 0; }
  .popular_services_item:last-child {
    margin-right: 0; }
  .popular_services_item:hover {
    border: #ced3e5 1px solid;
    background-color: #f3f9fc; }
  .popular_services_item .popular_services_icon {
    width: 90%;
    height: 112px;
    display: table;
    text-align: center;
    margin: 0 auto; }
    .popular_services_item .popular_services_icon .popular_services_align {
      display: table-cell;
      vertical-align: middle; }
  .popular_services_item b {
    color: #7675bb;
    display: block;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

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

.filter_wrapper {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #f3f9fc;
  border: #15265a 1px solid;
  width: 100%;
  display: inline-block;
  padding: 29px 14px 20px 21px;
  position: relative; }
  .filter_wrapper:before {
    border-left: #f8841c 1px solid;
    content: "";
    display: block;
    width: 1px;
    height: 400px;
    position: absolute;
    top: 40px;
    left: -1px; }
  .filter_wrapper .button {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #f8841c;
    height: 47px;
    line-height: 47px;
    box-shadow: inset 0px -2px 0 #e6520a;
    -moz-box-shadow: inset 0px -2px 0 #e6520a;
    -webkit-box-shadow: inset 0px -2px 0 #e6520a;
    display: block;
    width: 95%;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin: -15px auto 0; }
    .filter_wrapper .button:hover {
      background-color: #e87119; }

.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: 26px;
    margin-bottom: 25px; }
    .filter_steps .filter_step:nth-child(2) {
      margin-bottom: 22px;
      padding-bottom: 22px; }
      .filter_steps .filter_step:nth-child(2) h3 {
        margin-bottom: 25px; }
    .filter_steps .filter_step:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0; }
    .filter_steps .filter_step h3 {
      color: #5e5fb0;
      font-size: 22px;
      text-transform: uppercase;
      position: relative;
      padding-left: 7px;
      margin-bottom: 13px; }
      .filter_steps .filter_step h3 span {
        border-radius: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        background-color: #fff;
        border: #f8841c 2px solid;
        color: #f16538;
        display: inline-block;
        width: 38px;
        height: 38px;
        text-align: center;
        line-height: 34px;
        position: absolute;
        top: -7px;
        left: -40px; }
    .filter_steps .filter_step .select2-container {
      max-width: 100%;
      min-width: 80%;
      margin-left: 8px; }

.select_feature_item {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 31px; }
  .select_feature_item:last-child {
    margin-bottom: 0; }
  .select_feature_item label {
    color: #45505a;
    float: left;
    font-size: 16px;
    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: 16px;
    font-weight: 600;
    line-height: 24px; }
  .select_feature_item .irs {
    text-indent: -99999px; }
  .select_feature_item .select_feature_subitem {
    float: left;
    margin-right: 10px; }
    .select_feature_item .select_feature_subitem label {
      width: auto;
      line-height: 20px;
      margin-right: 10px; }

.filter_found {
  text-align: center;
  color: #244564;
  margin-top: 3px;
  overflow: hidden; }
  .filter_found span {
    display: inline-block;
    vertical-align: top;
    vertical-align: 32px;
    font-size: 32px; }
  .filter_found p {
    display: inline-block;
    vertical-align: top;
    vertical-align: 32px;
    font-size: 21px; }

/* End Filter */
/* Search */
.search_section {
  background-color: #e5f1fb;
  border-top: #d3dae2 1px solid;
  border-bottom: #d3dae2 1px solid;
  padding: 10px 0 15px 0; }

.search {
  width: 66%;
  float: left; }
  .search h2 {
    color: #5e5fb2;
    margin: 6px 0 10px 0; }
  .search .search_input {
    outline: none;
    width: 100%;
    display: inline-block;
    font-size: 30px;
    font-weight: 300; }

/* End Search */
/* Top Services */
.top_services .section_title {
  width: 1000px;
  margin: 0 auto !important;
  position: relative;
  padding-bottom: 2px; }
  .top_services .section_title:before {
    border-top: #f16e19 1px solid;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 24px;
    z-index: 1; }
  .top_services .section_title h1, .top_services .section_title .h1 {
    background-color: #fff;
    color: #f15a29;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    padding-bottom: 2px;
    position: relative;
    z-index: 2;
    padding: 0 20px; }

.service_item {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #fafafa;
  border: #e5e5e5 1px solid;
  width: 312px;
  float: left;
  margin: 4px 32px 21px 0;
  padding: 16px 18px;
  text-align: left; }
  .service_item:last-child {
    margin-right: 0; }
  .service_item .service_content_item {
    width: 92%;
    display: table;
    margin: 0 auto;
    position: relative; }
  .service_item .service_links {
    border-top: #dcdcdc 1px solid;
    border-bottom: #dcdcdc 1px solid;
    width: 92%;
    overflow: hidden;
    margin: 16px auto 0;
    padding: 15px 0; }
    .service_item .service_links .button_review {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #fff;
      border: #80c3fb 2px solid;
      height: 35px;
      line-height: 31px;
      width: 48%;
      color: #80c3fb;
      font-size: 16px;
      text-transform: uppercase;
      float: left; }
      .service_item .service_links .button_review:hover {
        background-color: #eaf9ff; }
    .service_item .service_links .button_visit {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #f8841c;
      height: 35px;
      line-height: 35px;
      box-shadow: inset 0px -2px 0 #e6520a;
      -moz-box-shadow: inset 0px -2px 0 #e6520a;
      -webkit-box-shadow: inset 0px -2px 0 #e6520a;
      width: 48%;
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      float: right;
      border: none;
      outline: none; }
      .service_item .service_links .button_visit:hover {
        background-color: #e87119; }
  .service_item .service_title {
    padding-bottom: 11px; }
    .service_item .service_title a {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      display: block;
      color: #5e5fb0;
      font-size: 19px;
      text-decoration: none;
      text-transform: uppercase;
      width: 80%; }
  .service_item .service_rate {
    width: 55%;
    float: left; }
    .service_item .service_rate .rating_wrapper div.star-rating {
      background-size: 22px;
      width: 22px;
      height: 22px;
      margin: 0 2px 0 2px; }
      .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 2px 0 0; }
  .service_item .discount_info {
    font-size: 13px;
    line-height: 16px;
    height: 28px;
    padding: 6px 7px 4px 25px;
    background: #6064c3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    right: 0;
    position: absolute;
    text-align: right;
    color: #fff;
    max-width: 112px;
    border: none;
    border-bottom: 1px solid #363a8f;
    text-decoration: none;
    outline: none; }
    .service_item .discount_info:hover {
      cursor: pointer; }
    .service_item .discount_info:before {
      position: absolute;
      display: block;
      content: "";
      border-style: solid;
      border-width: 10px 0 10px 6px;
      border-color: transparent transparent transparent #fff;
      top: 4px;
      left: 0; }
  .service_item .reviews_link {
    color: #48a2ff;
    float: right;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 9px; }
    .service_item .reviews_link:hover {
      text-decoration: none; }
  .service_item .service_photo {
    background: url(/assets/service_photo_bg.png) top right no-repeat;
    display: table;
    width: 90%;
    height: 92px;
    margin: 0 auto 13px;
    position: relative; }
    .service_item .service_photo .service_badge {
      position: absolute;
      top: -35px;
      right: -30px; }
    .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;
        width: auto;
        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: 92%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-top: 18px; }
    .service_item .service_comment span {
      display: inline-block;
      color: #45545f;
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 2px; }
    .service_item .service_comment p {
      color: #686f85;
      font-style: italic;
      line-height: 18px; }
    .service_item .service_comment > a {
      color: #48a2ff;
      float: right;
      font-size: 14px;
      text-transform: uppercase;
      margin-top: 12px; }
      .service_item .service_comment > a:hover {
        text-decoration: none; }

/* Post carousel */
.post_carousel {
  overflow: hidden;
  text-align: center;
  margin-top: 22px; }
  .post_carousel .post_carousel_content {
    width: 90%;
    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: 138px;
      text-decoration: none; }
      .post_carousel .post_carousel_item .post_carousel_info:before {
        background: #a5baed;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        content: "";
        display: block;
        width: 100%;
        height: 8px;
        position: absolute;
        top: -4px;
        left: 0; }
      .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame {
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 138px; }
        .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame .post_carousel_blackout {
          border-radius: 5px;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          background: rgba(37, 32, 32, 0.51);
          position: absolute;
          z-index: 5;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0; }
        .post_carousel .post_carousel_item .post_carousel_info .post_carousel_frame .post_carousel_photo {
          display: block;
          width: 100%;
          height: 100%;
          background-size: cover; }
          .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;
        text-transform: uppercase;
        word-break: break-word; }
        .post_carousel .post_carousel_item .post_carousel_info .post_carousel_text span {
          font-size: 25px;
          line-height: 25px;
          font-weight: 700; }
        .post_carousel .post_carousel_item .post_carousel_info .post_carousel_text p {
          font-size: 14px;
          line-height: 18px;
          font-weight: 600; }
    .post_carousel .post_carousel_item .post_carousel_details {
      border-bottom: #a5baed 2px solid;
      padding: 20px 0 16px 0; }
      .post_carousel .post_carousel_item .post_carousel_details p {
        color: #45505a;
        font-size: 15px;
        line-height: 16px; }
  .post_carousel + .show_more {
    margin-top: 40px; }

.show_more {
  width: 100%;
  display: inline-block;
  position: relative; }
  .show_more .button_show_more {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #fff;
    border: #80c3fb 2px solid;
    height: 45px;
    line-height: 41px;
    color: #58abf1;
    text-transform: uppercase;
    font-size: 20px;
    width: 280px;
    position: relative;
    margin: 20px auto 0; }
    .show_more .button_show_more:hover {
      background-color: #e6fbff; }
    .show_more .button_show_more.disabled {
      pointer-events: none;
      opacity: 0.4; }

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

.receive_discount {
  border-top: #d3dae2 1px solid;
  background-color: #e5f1fb;
  padding: 23px 0; }
  .receive_discount label {
    color: #5e5fb0;
    float: left;
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 5px; }
  .receive_discount .field_error {
    float: left;
    width: 382px;
    margin-left: 24px; }
    .receive_discount .field_error .input {
      border: #f15a29 1px solid;
      width: 100%;
      margin-left: 0; }
  .receive_discount .input {
    float: left;
    width: 382px;
    height: 35px;
    margin-left: 24px; }
  .receive_discount .button {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #f8841c;
    height: 36px;
    line-height: 36px;
    box-shadow: inset 0px -2px 0 #e6520a;
    -moz-box-shadow: inset 0px -2px 0 #e6520a;
    -webkit-box-shadow: inset 0px -2px 0 #e6520a;
    float: right;
    width: 226px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase; }
    .receive_discount .button:hover {
      background-color: #e87119; }

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

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

.contact_post {
  overflow: hidden;
  margin-bottom: 18px; }
  .contact_post .contact_post_title {
    background: url(/assets/points.png) left bottom no-repeat;
    min-height: 45px;
    padding-bottom: 10px;
    margin-bottom: 14px; }
    .contact_post .contact_post_title h2 {
      color: #3a3636;
      font-size: 23px;
      font-weight: bold; }
  .contact_post .contact_post_info {
    display: table;
    position: relative; }
    .contact_post .contact_post_info p,
    .contact_post .contact_post_info .list li,
    .contact_post .contact_post_info ul li,
    .contact_post .contact_post_info ol li {
      color: #3a3636;
      font-size: 16px;
      line-height: 22px; }
    .contact_post .contact_post_info .list li,
    .contact_post .contact_post_info ul li,
    .contact_post .contact_post_info ol li {
      list-style-position: inside; }

.contact_form {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #eaedee;
  float: right;
  width: 630px;
  margin-left: 40px; }
  .contact_form .contact_form_title {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background-color: #5e5eab;
    padding: 8px 0; }
    .contact_form .contact_form_title h2 {
      color: #fff;
      text-align: center;
      font-size: 23px; }
  .contact_form .contact_form_content {
    padding: 20px 20px 6px 20px;
    display: inline-block; }
  .contact_form .field_block {
    width: 230px;
    float: left;
    margin-right: 20px; }
    .contact_form .field_block:last-child {
      width: 302px;
      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: 18px; }

.rate_form {
  float: left;
  width: 392px;
  margin-right: 37px; }
  .rate_form .field_item label {
    color: #60676e;
    float: left;
    font-size: 17px;
    margin-bottom: 4px; }
    .rate_form .field_item label sup {
      color: #f94c00;
      position: relative;
      top: 4px; }
  .rate_form .field_item .field_error {
    width: 308px; }
    .rate_form .field_item .field_error .input {
      width: 100%; }
    .rate_form .field_item .field_error .textarea {
      width: 100%; }
  .rate_form .field_item .input {
    width: 308px;
    float: right; }
  .rate_form .field_item .textarea {
    width: 308px;
    float: right;
    height: 117px; }
  .rate_form .field_item .rate_field_item {
    float: left;
    width: 85px;
    margin-right: 17px; }
    .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.field_like_dislike label {
    margin-top: 16px; }
  .rate_form .field_item.field_like_dislike .like {
    margin-left: 1px; }
  .rate_form .field_item.field_like_dislike .dislike {
    margin-left: 24px; }
  .rate_form .field_item + .captcha {
    margin-top: 0; }
  .rate_form .captcha {
    border-top: #cddeec 1px solid;
    border-bottom: #cddeec 1px solid;
    float: right;
    width: 308px; }
    .rate_form .captcha + .button_send {
      margin-top: 20px; }
  .rate_form .button {
    clear: both;
    float: right;
    width: 308px; }

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

/* End Rate */
/* Posts */
.post ul.list,
.post ul {
  margin: 20px;
  list-style: none; }
  .post ul.list li,
  .post ul li {
    color: #3a3636;
    font-size: 13px;
    line-height: 22px;
    position: relative; }
    .post ul.list li:before,
    .post ul 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,
.post ol {
  margin: 20px; }
  .post ol.list li,
  .post ol li {
    color: #3a3636;
    font-size: 13px;
    line-height: 22px; }
.post .post_title {
  overflow: hidden; }
  .post .post_title h3,
  .post .post_title h1,
  .post .post_title .post_link {
    display: block;
    color: #3a3636;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: initial; }
  .post .post_title .post_link {
    text-decoration: none; }
    .post .post_title .post_link:hover {
      text-decoration: underline; }
  .post .post_title ul {
    display: flex;
    overflow: hidden;
    margin: 12px 0; }
    .post .post_title ul li {
      float: left; }
      .post .post_title ul li:first-child {
        margin-right: 85px; }
        .post .post_title ul li:first-child:before {
          left: inherit;
          right: -30px; }
        .post .post_title ul li:first-child:after {
          display: block;
          position: absolute;
          content: "";
          width: 4px;
          height: 4px;
          border-radius: 50%;
          background-color: #ffc199;
          top: 9px;
          right: -45px; }
      .post .post_title ul li:nth-child(2):before {
        left: -27px; }
.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;
    border: #c7d8e5 1px solid;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: auto; }
.post .post_content h1,
.post .post_content h2,
.post .post_content h3 {
  color: #3a3636;
  line-height: 26px;
  margin-bottom: 15px; }
.post .post_content h1 {
  font-size: 20px;
  text-transform: uppercase; }
.post .post_content h2 {
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 15px; }
.post .post_content h3 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 15px; }
.post .post_content > p,
.post .post_content > ul,
.post .post_content > p > ul {
  color: #3a3636;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px; }
.post .post_content a {
  color: #58abf1; }
  .post .post_content a:hover {
    text-decoration: none; }
.post .post_item {
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 20px; }
  .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: 13px; }
  .post .post_item .post_author span {
    font-size: 14px;
    color: #c7c7c7; }
  .post .post_item .post_author p {
    display: inline-block;
    vertical-align: top; }
  .post .post_item .post_details {
    overflow: hidden;
    margin-top: 6px; }
    .post .post_item .post_details a {
      float: right; }
    .post .post_item .post_details p {
      color: #c7c7c7;
      float: left;
      font-size: 14px;
      margin: 3px 0 0 0; }
  .post .post_item .post_content {
    overflow: hidden; }
    .post .post_item .post_content p {
      margin-bottom: 5px; }
.post .choose_item .post_info {
  overflow: hidden; }
  .post .choose_item .post_info .post_title {
    margin-bottom: 20px; }
  .post .choose_item .post_info .post_content {
    text-align: justify; }
    .post .choose_item .post_info .post_content h3 {
      color: #5e5eab;
      font-size: 17px;
      font-weight: 400;
      text-transform: none;
      margin-bottom: 10px; }
    .post .choose_item .post_info .post_content i {
      color: #898a8a;
      display: block;
      line-height: 20px;
      padding-left: 30px;
      margin-top: 9px; }
.post .choose_item .post_photo {
  float: right;
  margin: 0 0 0 20px; }
  .post .choose_item .post_photo img {
    border: none; }

.post_width .post {
  max-width: calc(100% - 330px); }

.post.post_view .post_content > p {
  font-size: 16px;
  line-height: 22px; }
.post.post_view .post_content h2 {
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 15px; }
.post.post_view .post_content h3 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 15px; }
.post.post_view .post_content > ul,
.post.post_view .post_content > p > ul {
  font-size: 16px;
  line-height: 22px; }
.post.post_view ul.list li,
.post.post_view ul li {
  font-size: 16px;
  line-height: 22px; }
.post.post_view ol.list li,
.post.post_view ol li {
  color: #3a3636;
  font-size: 16px;
  line-height: 22px; }

/* 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: 310px;
    height: 171px; }
    .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: 34px;
    min-height: 70px; }
    .our_mission_item .our_mission_title h2 {
      color: #3a3636;
      font-size: 23px;
      line-height: 26px; }
  .our_mission_item .our_mission_content {
    margin-top: 16px;
    overflow: hidden; }
    .our_mission_item .our_mission_content h3 {
      font-size: 20px;
      line-height: 24px;
      margin-bottom: 10px; }
    .our_mission_item .our_mission_content p,
    .our_mission_item .our_mission_content .list li,
    .our_mission_item .our_mission_content ul li,
    .our_mission_item .our_mission_content ol li {
      color: #898a8a;
      font-size: 16px;
      line-height: 22px; }
    .our_mission_item .our_mission_content .list li,
    .our_mission_item .our_mission_content ul li,
    .our_mission_item .our_mission_content ol li {
      list-style-position: inside; }

/* end our mission */
/* Sorting */
.sorting {
  display: inline-block;
  width: 1000px;
  margin-top: 23px;
  text-align: left;
  /* sorting checkbox */
  /* sorting checkbox */ }
  .sorting div.checker {
    width: 27px;
    height: 27px;
    position: relative;
    margin-right: 10px; }
    .sorting div.checker span {
      background-image: url(/assets/sprite_checkbox.png);
      display: -moz-inline-box;
      display: inline-block;
      *display: inline;
      zoom: 1;
      text-align: center;
      background-position: 0px 0px;
      width: 27px;
      height: 27px; }
      .sorting div.checker span.checked {
        background-position: -108px 0px; }
    .sorting div.checker input {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      border: none;
      background: none;
      display: -moz-inline-box;
      display: inline-block;
      *display: inline;
      zoom: 1;
      width: 27px;
      height: 27px; }
    .sorting div.checker.active span {
      background-position: -27px 0px; }
      .sorting div.checker.active span.checked {
        background-position: -135px 0px; }
    .sorting div.checker.hover span {
      background-position: -54px 0px; }
      .sorting div.checker.hover span.checked {
        background-position: -162px 0px; }
    .sorting div.checker.hover.active span {
      background-position: -81px 0px; }
      .sorting div.checker.hover.active span.checked {
        background-position: -189px 0px; }
    .sorting div.checker.focus span {
      background-position: -54px 0px; }
      .sorting div.checker.focus span.checked {
        background-position: -162px 0px; }
    .sorting div.checker.focus.active span {
      background-position: -81px 0px; }
      .sorting div.checker.focus.active span.checked {
        background-position: -189px 0px; }
    .sorting div.checker.disabled {
      background-position: -216px 0px; }
      .sorting div.checker.disabled span.checked {
        background-position: -243px 0px; }
      .sorting div.checker.disabled.active {
        background-position: -216px 0px; }
        .sorting div.checker.disabled.active span.checked {
          background-position: -243px 0px; }
  .sorting .field_item {
    float: left;
    width: auto;
    position: relative; }
    .sorting .field_item:first-child {
      margin-right: 29px; }
    .sorting .field_item label {
      width: auto;
      margin-right: 10px;
      font-weight: 400; }
    .sorting .field_item .select2-container {
      min-width: 220px;
      max-width: 220px;
      margin-top: -1px; }
    .sorting .field_item .field_subitem {
      float: left;
      margin: 0 9px 0 0; }
      .sorting .field_item .field_subitem label {
        color: #6c747b;
        float: left;
        font-size: 16px;
        line-height: 28px; }
      .sorting .field_item .field_subitem .checker {
        float: left; }
      .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 {
        width: 304px;
        font-size: 14px;
        height: 27px;
        padding-left: 30px; }
        .sorting .field_item:last-child .input::-webkit-input-placeholder {
          color: #b5bdc4;
          font-weight: 300;
          font-style: italic; }
        .sorting .field_item:last-child .input:-moz-placeholder {
          color: #b5bdc4;
          font-weight: 300;
          font-style: italic; }
        .sorting .field_item:last-child .input::-moz-placeholder {
          color: #b5bdc4;
          font-weight: 300;
          font-style: italic; }
        .sorting .field_item:last-child .input:-ms-input-placeholder {
          color: #b5bdc4;
          font-weight: 300;
          font-style: italic; }
      .sorting .field_item:last-child:before {
        background: url(/assets/search_icon.png) right center no-repeat;
        background-size: 18px;
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        position: absolute;
        top: 5px;
        left: 8px; }

.sorting_results {
  display: inline-block;
  width: 1000px;
  margin-top: 7px;
  margin-bottom: 28px;
  text-align: left; }
  .sorting_results span {
    color: #ef7c1d;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-transform: uppercase; }
    .sorting_results span .inherit_styles {
      font-size: inherit;
      text-transform: inherit;
      display: inherit; }
    .sorting_results span strong {
      border-radius: 100%;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      border: #bcbcd6 1px solid;
      color: #f1701a;
      font-size: 28px;
      display: inline-block;
      width: 50px;
      height: 50px;
      font-weight: normal;
      font-size: 28px;
      text-align: center;
      margin-right: 5px; }

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

.criteria_block {
  overflow: hidden;
  padding: 25px 0; }
  .criteria_block a.discount_info,
  .criteria_block button.discount_info {
    font-size: 13px;
    line-height: 16px;
    height: 28px;
    padding: 6px 7px 4px 25px;
    background: #6064c3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    text-align: right;
    float: right;
    margin-top: 4px;
    color: #fff !important;
    max-width: 112px;
    border: none;
    border-bottom: 1px solid #363a8f;
    text-decoration: none;
    outline: none; }
    .criteria_block a.discount_info:hover,
    .criteria_block button.discount_info:hover {
      cursor: pointer; }
    .criteria_block a.discount_info:before,
    .criteria_block button.discount_info:before {
      position: absolute;
      display: block;
      content: "";
      border-style: solid;
      border-width: 10px 0 10px 6px;
      border-color: transparent transparent transparent #fff;
      top: 4px;
      left: 0; }
  .criteria_block + .show_more {
    margin: 40px 0 15px 0; }

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

.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: 271px;
  margin: 2px 0 0 25px; }
  .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: #596169;
    font-size: 17px;
    line-height: 36px;
    padding-left: 33px; }
  .criteria_info .criteria_prices {
    background: url(/assets/prices_icon.png) left center no-repeat;
    color: #596169;
    float: left;
    font-size: 17px;
    line-height: 36px;
    padding-left: 33px; }
  .criteria_info .criteria_links {
    border-top: #dcdcdc 1px solid;
    border-bottom: #dcdcdc 1px solid;
    overflow: hidden;
    padding: 15px 0; }
    .criteria_info .criteria_links .button_visit {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #f8841c;
      height: 35px;
      line-height: 35px;
      box-shadow: inset 0px -2px 0 #e6520a;
      -moz-box-shadow: inset 0px -2px 0 #e6520a;
      -webkit-box-shadow: inset 0px -2px 0 #e6520a;
      width: 45%;
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      float: left;
      border: none;
      outline: none; }
      .criteria_info .criteria_links .button_visit:hover {
        background-color: #e87119; }
    .criteria_info .criteria_links .button_rate {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #fff;
      border: #80c3fb 2px solid;
      height: 35px;
      line-height: 31px;
      width: 45%;
      color: #80c3fb;
      font-size: 16px;
      text-transform: uppercase;
      float: right;
      outline: none; }
      .criteria_info .criteria_links .button_rate:hover {
        background-color: #eaf9ff; }

.criteria_service_content {
  overflow: hidden;
  padding-top: 4px; }
  .criteria_service_content > p {
    color: #6c747b;
    font-size: 16px;
    font-style: italic;
    line-height: 20px; }

.criteria_service_title {
  overflow: hidden;
  margin-bottom: 17px; }
  .criteria_service_title a {
    color: #5e5fb0;
    float: left;
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
    width: auto;
    padding-right: 10px;
    box-sizing: border-box; }
  .criteria_service_title .mark {
    border-left: #d5d2c8 1px solid;
    border-right: #d5d2c8 1px solid;
    color: #57a555;
    float: left;
    font-size: 25px;
    padding: 0 10px; }
  .criteria_service_title .criteria_service_rating {
    float: right; }
    .criteria_service_title .criteria_service_rating .rating_wrapper {
      display: inline-block;
      vertical-align: middle; }
      .criteria_service_title .criteria_service_rating .rating_wrapper div.star-rating {
        background-size: 21px;
        width: 21px;
        height: 21px;
        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: #48a2ff;
      display: inline-block;
      vertical-align: middle;
      font-size: 17px; }

/* end criteria service */
/* review details */
.review_details {
  overflow: hidden;
  position: relative;
  z-index: 10;
  padding-top: 26px;
  margin-bottom: 20px; }
  .review_details .review_details_item {
    border-bottom: #e4e4e4 1px solid;
    overflow: hidden;
    padding: 10px 0; }
    .review_details .review_details_item a,
    .review_details .review_details_item button {
      color: #48a2ff;
      font-size: 20px;
      font-weight: 400;
      text-decoration: underline;
      background: none;
      border: none;
      outline: none; }
      .review_details .review_details_item a:hover,
      .review_details .review_details_item button:hover {
        cursor: pointer;
        text-decoration: none; }
    .review_details .review_details_item b {
      margin-left: 5px; }
    .review_details .review_details_item span {
      color: #8b939b;
      font-size: 18px;
      float: left;
      text-transform: uppercase; }
      .review_details .review_details_item span b {
        color: #596169;
        font-size: 21px; }
    .review_details .review_details_item p {
      color: #596169;
      font-size: 18px;
      float: left;
      text-transform: uppercase; }
      .review_details .review_details_item p b {
        color: #f57c3e;
        font-size: 21px; }
    .review_details .review_details_item .button_try_now {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #8cc1f9;
      height: 29px;
      line-height: 29px;
      font-weight: 400;
      color: #fff;
      float: right;
      width: 87px;
      text-decoration: none; }
      .review_details .review_details_item .button_try_now:hover {
        background-color: #73ace7; }

.review_details_nav {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 30px; }
  .review_details_nav ul {
    list-style: none; }
    .review_details_nav ul .ui-state-default {
      border-right: #205784 1px solid;
      float: left;
      background-color: #59abf1;
      width: 33.3333%;
      position: relative;
      outline: none; }
      .review_details_nav ul .ui-state-default.ui-state-active a {
        background-color: #1e517c;
        color: #fff; }
      .review_details_nav ul .ui-state-default.ui-state-hover a {
        background-color: #1e517c;
        color: #fff; }
      .review_details_nav ul .ui-state-default.ui-state-focus a {
        outline: none; }
      .review_details_nav ul .ui-state-default a {
        border-bottom: #2c6a9f 2px solid;
        color: #235f92;
        display: block;
        font-size: 15px;
        height: 38px;
        line-height: 40px;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none; }
      .review_details_nav ul .ui-state-default:last-child {
        border-right: none; }

.general_rating {
  width: 310px;
  position: relative; }
  .general_rating:before {
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #ffffff 0%, #f8f8f8 63%, #e6ebeb 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #ffffff 0%, #f8f8f8 63%, #e6ebeb 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #ffffff 0%, #f8f8f8 63%, #e6ebeb 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    content: "";
    display: block;
    width: 330px;
    min-height: 380px;
    position: absolute;
    top: 0;
    right: -30px; }
  .general_rating .general_rating_links {
    border-bottom: #dcdcdc 1px solid;
    overflow: hidden;
    padding: 15px 0;
    position: relative;
    z-index: 5; }
    .general_rating .general_rating_links .button {
      border-radius: 30px;
      -moz-border-radius: 30px;
      -webkit-border-radius: 30px;
      width: 100%;
      font-size: 16px;
      text-transform: uppercase;
      width: 44%; }
    .general_rating .general_rating_links .button_review {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #fff;
      border: #80c3fb 2px solid;
      height: 36px;
      line-height: 32px;
      color: #80c3fb;
      float: left; }
      .general_rating .general_rating_links .button_review:hover {
        background-color: #eaf9ff; }
    .general_rating .general_rating_links .button_visit {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #f8841c;
      height: 36px;
      line-height: 36px;
      box-shadow: inset 0px -2px 0 #e6520a;
      -moz-box-shadow: inset 0px -2px 0 #e6520a;
      -webkit-box-shadow: inset 0px -2px 0 #e6520a;
      color: #fff;
      float: right;
      border: none;
      outline: none; }
      .general_rating .general_rating_links .button_visit:hover {
        background-color: #e87119; }
  .general_rating .site_screen {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #f1eee4;
    float: left;
    width: 310px;
    height: 170px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
    z-index: 5; }
  .general_rating .general_rating_content {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 16px;
    position: relative;
    z-index: 5; }
    .general_rating .general_rating_content .general_rating_line {
      border-top: #e4e4e4 1px solid;
      font-weight: bold;
      text-transform: uppercase;
      overflow: hidden;
      padding: 8px 0; }
      .general_rating .general_rating_content .general_rating_line span {
        color: #596169;
        float: left;
        font-size: 20px;
        line-height: 28px;
        margin-right: 10px; }
      .general_rating .general_rating_content .general_rating_line p {
        color: #57a555;
        float: left;
        font-size: 25px;
        line-height: 25px; }
    .general_rating .general_rating_content .general_rating_section {
      border-top: #e4e4e4 1px solid;
      display: inline-block;
      vertical-align: top;
      width: 100%;
      padding-top: 17px; }
    .general_rating .general_rating_content .service_rating .service_rating_item {
      float: left;
      width: 36px;
      text-align: center;
      margin-right: 10px; }
      .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 {
        background: url(/assets/rating_line.png) repeat;
        width: 36px;
        height: 105px;
        position: relative;
        margin: 5px auto 0; }
        .general_rating .general_rating_content .service_rating .service_rating_item .rating_line .rating_line_progress {
          border-top: #fcfefe 1px solid;
          background: url(/assets/rating_line_progress.png) repeat;
          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-top: 6px; }
    .general_rating .general_rating_content .service_details {
      float: right;
      width: 37%;
      padding-top: 18px; }
      .general_rating .general_rating_content .service_details .like {
        color: #60676d;
        font-size: 14px;
        position: relative;
        line-height: 32px;
        margin-bottom: 7px;
        float: left;
        width: 49px;
        height: 49px; }
        .general_rating .general_rating_content .service_details .like a {
          background: url(/assets/like_icons.png) no-repeat;
          float: left;
          width: 26px;
          height: 23px; }
          .general_rating .general_rating_content .service_details .like a:hover {
            background-position: 0 -36px; }
        .general_rating .general_rating_content .service_details .like b {
          background: url(/assets/like_icons.png) no-repeat;
          float: left;
          width: 26px;
          height: 23px; }
        .general_rating .general_rating_content .service_details .like span {
          float: left;
          margin-left: 10px; }
      .general_rating .general_rating_content .service_details .dislike {
        color: #60676d;
        font-size: 14px;
        position: relative;
        line-height: 16px;
        float: right;
        width: 49px;
        height: 49px; }
        .general_rating .general_rating_content .service_details .dislike a {
          background: url(/assets/like_icons.png) -32px -7px no-repeat;
          float: left;
          width: 26px;
          height: 23px; }
          .general_rating .general_rating_content .service_details .dislike a:hover {
            background-position: -32px -43px; }
        .general_rating .general_rating_content .service_details .dislike b {
          background: url(/assets/like_icons.png) -32px -7px no-repeat;
          float: left;
          width: 26px;
          height: 23px; }
        .general_rating .general_rating_content .service_details .dislike span {
          float: left;
          margin-left: 10px; }
      .general_rating .general_rating_content .service_details .button_rate {
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        background-color: #fff;
        border: #80c3fb 2px solid;
        height: 40px;
        line-height: 36px;
        width: 100%;
        display: inline-block;
        color: #80c3fb;
        font-size: 16px;
        text-transform: uppercase;
        margin-top: 11px;
        outline: none; }
        .general_rating .general_rating_content .service_details .button_rate:hover {
          background-color: #eaf9ff; }

/* end review details */
.customers_reviews {
  overflow: hidden; }

/* message */
.message {
  background: url(/assets/points.png) left bottom no-repeat;
  overflow: hidden;
  padding-bottom: 18px;
  margin-bottom: 26px; }
  .message .message_photo {
    float: left;
    width: 105px; }
  .message .message_rate {
    float: right;
    margin-top: 15px; }
    .message .message_rate div.star-rating {
      background-size: 21px;
      width: 21px;
      height: 21px;
      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 12px 0;
    margin-bottom: 10px; }
    .message .message_title h3 {
      color: #272876;
      font-size: 20px;
      line-height: 20px;
      text-transform: uppercase; }
      .message .message_title h3 span {
        color: #45545f;
        font-size: 15px;
        font-weight: 400;
        text-transform: none;
        margin-left: 10px; }
    .message .message_title a,
    .message .message_title .reviewed_service {
      color: #3f94ff;
      font-size: 15px;
      font-style: italic; }
      .message .message_title a:hover,
      .message .message_title .reviewed_service:hover {
        text-decoration: none; }
    .message .message_title a.link_reply {
      color: #58abf1;
      font-size: 16px;
      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: #686f85;
      font-size: 16px;
      font-style: italic;
      line-height: 20px; }

/* end message */
.comments .message {
  background: none;
  margin-bottom: 0; }
.comments .message_photo {
  background: url(/assets/points.png) center bottom no-repeat;
  padding-bottom: 15px; }
  .comments .message_photo img {
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border: #b9cece 2px solid; }
.comments .message_title {
  padding-left: 12px; }
.comments .message_content {
  padding-left: 12px; }

/* discounts */
.discounts {
  overflow: hidden; }

.discounts_text {
  overflow: hidden;
  margin: 23px 0 10px 0; }
  .discounts_text p {
    color: #3a3636;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 20px; }

.discount_item {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: #d3d9dd 1px solid;
  width: 210px;
  float: left;
  margin: 0 20px 20px 0; }
  .discount_item:last-child {
    margin-right: 0; }
  .discount_item .discount_photo_block {
    border-bottom: #89a6be 2px solid;
    width: 100%;
    height: 194px;
    overflow: hidden;
    position: relative;
    margin-bottom: 7px; }
    .discount_item .discount_photo_block:hover .discount_photo_link {
      opacity: 1; }
  .discount_item .discount_photo {
    position: relative;
    z-index: 1; }
  .discount_item .discount_photo_link {
    background-color: rgba(6, 59, 104, 0.56);
    position: absolute;
    z-index: 2;
    display: table;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0; }
    .discount_item .discount_photo_link .discount_visit_button {
      display: table-cell;
      vertical-align: middle;
      text-align: center; }
    .discount_item .discount_photo_link .button_visit {
      border-radius: 30px;
      -moz-border-radius: 30px;
      -webkit-border-radius: 30px;
      background-color: #f15a29;
      border: #dde4ea 2px solid;
      height: 35px;
      line-height: 31px;
      width: 70%;
      font-size: 16px;
      display: inline-block;
      text-transform: uppercase;
      border: none;
      outline: none; }
      .discount_item .discount_photo_link .button_visit:hover {
        background-color: #e04b1a; }
  .discount_item .discount_subitem {
    margin: 0 8px 10px 8px;
    overflow: hidden; }
    .discount_item .discount_subitem:last-child {
      margin-bottom: 8px; }
    .discount_item .discount_subitem .rating_wrapper {
      float: left; }
      .discount_item .discount_subitem .rating_wrapper div.star-rating {
        width: 16px;
        height: 16px;
        background: url(/assets/stars_shadow.png) no-repeat 0 0;
        background-size: 16px;
        cursor: pointer;
        display: block;
        float: left;
        width: 16px;
        height: 16px;
        text-indent: -999em;
        overflow: hidden;
        margin: 0 2px 0 2px;
        background: transparent !important;
        overflow: hidden !important; }
        .discount_item .discount_subitem .rating_wrapper div.star-rating a {
          width: 16px;
          height: 100%;
          background: url(/assets/stars_shadow.png) no-repeat 0 top;
          background-size: 16px;
          border: 0;
          display: block; }
        .discount_item .discount_subitem .rating_wrapper div.star-rating-on a {
          background-position: 0 bottom !important; }
        .discount_item .discount_subitem .rating_wrapper div.star-rating-hover a {
          background-position: 0 bottom; }
        .discount_item .discount_subitem .rating_wrapper div.star-rating-readonly a {
          cursor: default !important; }
      .discount_item .discount_subitem .rating_wrapper div .rating-cancel {
        width: 0px; }
        .discount_item .discount_subitem .rating_wrapper div .rating-cancel a {
          width: 16px;
          height: 100%;
          display: block;
          background-position: 0 0;
          border: 0; }
        .discount_item .discount_subitem .rating_wrapper div .rating-cancel + .star-rating {
          margin: 0 2px 0 0; }
    .discount_item .discount_subitem .price_page {
      color: #378a45;
      float: right;
      font-size: 14px;
      font-weight: 700;
      position: relative;
      top: 2px; }
    .discount_item .discount_subitem .discount_price {
      float: left;
      color: #0b406c;
      font-size: 25px;
      font-weight: 600;
      line-height: 25px;
      margin-top: 3px; }
    .discount_item .discount_subitem .button_visit {
      border-radius: 28px;
      -moz-border-radius: 28px;
      -webkit-border-radius: 28px;
      background-color: #f15a29;
      height: 28px;
      line-height: 28px;
      width: 44%;
      font-size: 14px;
      text-transform: uppercase;
      float: right;
      border: none;
      outline: none; }
      .discount_item .discount_subitem .button_visit:hover {
        background-color: #e04b1a; }

/* end discounts */
.detailed_title {
  border-bottom: #dcdcdc 1px solid;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding-bottom: 8px; }
  .detailed_title h1 {
    color: #5e5eab;
    font-size: 40px;
    line-height: 42px;
    font-weight: bold;
    text-align: left; }
  .detailed_title .site_rate {
    overflow: hidden;
    margin-top: 12px; }
    .detailed_title .site_rate .rating_wrapper div.star-rating {
      background-size: 21px;
      width: 21px;
      height: 21px;
      margin: 0 3px 0 3px; }
      .detailed_title .site_rate .rating_wrapper div.star-rating a {
        background-size: 21px;
        width: 21px; }
      .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 3px 0 0; }
    .detailed_title .site_rate > a {
      color: #48a2ff;
      float: left;
      font-size: 14px;
      text-decoration: none;
      text-transform: uppercase;
      margin: 8px 0 0 15px; }

.review_details_tabs {
  overflow: hidden; }
  .review_details_tabs .post_content > p {
    font-size: 16px;
    font-style: italic;
    line-height: 22px;
    margin-bottom: 20px; }
  .review_details_tabs .post_content h2,
  .review_details_tabs .post_content h3 {
    margin-bottom: 15px; }
  .review_details_tabs .post_content > ul li,
  .review_details_tabs .post_content ul.list li {
    font-size: 16px; }
  .review_details_tabs .post_content > ol li,
  .review_details_tabs .post_content ol.list li {
    font-size: 16px; }
  .review_details_tabs .contact_form {
    background: none;
    margin-top: 20px; }
    .review_details_tabs .contact_form .contact_title {
      position: relative;
      margin-bottom: 24px; }
      .review_details_tabs .contact_form .contact_title:before {
        border-top: #bac3c8 1px solid;
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 0; }
      .review_details_tabs .contact_form .contact_title h3 {
        background-color: #fff;
        color: #5e5fb0;
        display: inline-block;
        font-size: 30px;
        font-weight: normal;
        position: relative;
        z-index: 1;
        text-transform: uppercase;
        padding-right: 15px; }
    .review_details_tabs .contact_form .contact_form_content {
      padding: 0;
      width: 412px; }
      .review_details_tabs .contact_form .contact_form_content .field_item label {
        color: #60676e;
        font-size: 17px;
        float: left; }
        .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-top: #cddeec 1px solid;
      border-bottom: #cddeec 1px solid;
      float: right;
      width: 75%; }
    .review_details_tabs .contact_form .button_post {
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      background-color: #f8841c;
      height: 40px;
      line-height: 40px;
      box-shadow: inset 0px -2px 0 #e6520a;
      -moz-box-shadow: inset 0px -2px 0 #e6520a;
      -webkit-box-shadow: inset 0px -2px 0 #e6520a;
      clear: both;
      float: right;
      width: 75%;
      color: #fff;
      font-size: 20px;
      text-transform: uppercase;
      margin: 20px auto 0; }
      .review_details_tabs .contact_form .button_post:hover {
        background-color: #e87119; }

.checked {
  position: relative; }

.checked:before {
  box-shadow: 0 0 10px #408cc8;
  -moz-box-shadow: 0 0 10px #408cc8;
  -webkit-box-shadow: 0 0 10px #408cc8;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute; }

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

.scroll_top {
  display: none;
  position: fixed;
  height: 30px;
  width: 30px;
  right: 4%;
  bottom: 150px;
  z-index: 999;
  opacity: 0.8;
  background: url(/assets/icon_scroll-21448d956b1816f8faaad859a09248a1669e4a7914858388faacb29a52c7894f.png) no-repeat center; }
  .scroll_top:hover {
    cursor: pointer;
    opacity: 1; }

.post .post_content .table_content_list ul {
  margin: 0; }
  .post .post_content .table_content_list ul li:before {
    display: none; }
  .post .post_content .table_content_list ul li a {
    color: #6a7187; }
    .post .post_content .table_content_list ul li a:hover {
      color: #3d444d; }

.table_content {
  position: relative;
  margin: 0 0 20px 0;
  border: 1px solid #9fabb5;
  background-color: #f6f6f6;
  overflow: hidden;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }
  .table_content_title p {
    padding: 6px 40px 6px 10px;
    font-size: 17px;
    line-height: 22px;
    color: #6a7187;
    font-weight: 500; }
  .table_content_title:hover {
    cursor: pointer; }
  .table_content_list {
    padding: 0 10px 10px; }
    .table_content_list ul li {
      list-style: none; }
      .table_content_list ul li a {
        font-size: 15px;
        line-height: 23px;
        color: #6a7187;
        font-weight: 500;
        text-decoration: none; }
        .table_content_list ul li a span {
          color: #abafbd; }
        .table_content_list ul li a:hover {
          color: #3d444d; }

.wrapper {
  max-width: 100vw;
  overflow: hidden; }

.best_services_block .best_services_item {
  display: flex;
  align-items: center;
  padding: 27px 0;
  position: relative;
  z-index: 1; }
  .best_services_block .best_services_item:nth-child(odd):before {
    display: block;
    position: absolute;
    content: "";
    width: 500vw;
    height: 100%;
    background-color: #f4f4ee;
    left: -200vw;
    top: 0;
    z-index: -1; }
.best_services_block .best_service_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 209px;
  height: 120px;
  border-radius: 4px;
  margin-right: 29px; }
.best_services_block .best_service_rating {
  width: 276px; }
  .best_services_block .best_service_rating > a {
    display: block;
    font-size: 21px;
    color: #5e5fb0;
    text-decoration: none;
    text-transform: uppercase; }
  .best_services_block .best_service_rating .best_service_rating_value {
    border-left: #d5d2c8 1px solid;
    border-right: #d5d2c8 1px solid;
    padding: 4px 12px 0; }
    .best_services_block .best_service_rating .best_service_rating_value span {
      font-size: 25px;
      color: #57a555; }
  .best_services_block .best_service_rating .top_service_rate {
    display: flex;
    align-items: center;
    margin-top: 22px; }
    .best_services_block .best_service_rating .top_service_rate .rating_wrapper {
      margin: 0 18px 0 10px; }
  .best_services_block .best_service_rating .number_of_ratings span {
    font-size: 17px;
    color: #48a2ff; }
.best_services_block .best_service_delivery {
  background: url(/assets/delivery_icon.png) left center no-repeat;
  padding-left: 33px;
  margin-bottom: 15px; }
  .best_services_block .best_service_delivery span {
    font-size: 17px;
    line-height: 36px;
    color: #596169; }
.best_services_block .best_service_info {
  width: 298px; }
.best_services_block .best_service_price_wrapper {
  display: flex; }
.best_services_block .best_service_price {
  background: url(/assets/prices_icon.png) left center no-repeat;
  padding-left: 33px; }
  .best_services_block .best_service_price span {
    font-size: 17px;
    line-height: 36px;
    color: #596169; }
    .best_services_block .best_service_price span p {
      display: inline-block;
      vertical-align: top;
      color: #57a555; }
.best_services_block .best_service_discount {
  margin-left: 24px; }
  .best_services_block .best_service_discount a,
  .best_services_block .best_service_discount button {
    font-family: "Cuprum", sans-serif;
    font-size: 18px;
    line-height: 36px;
    text-transform: uppercase;
    color: #5e5fb0;
    border: none;
    background: none;
    text-decoration: underline; }
    .best_services_block .best_service_discount a:hover,
    .best_services_block .best_service_discount button:hover {
      text-decoration: none;
      cursor: pointer; }
.best_services_block .best_service_buttons {
  width: 190px; }
  .best_services_block .best_service_buttons .visit_site {
    font-family: "Cuprum", sans-serif;
    display: block;
    font-size: 17px;
    color: #fff;
    background-color: #f8841c;
    box-shadow: inset 0px -2px 0 #e6520a;
    border-radius: 5px;
    height: 35px;
    line-height: 35px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    width: 100%;
    border: none; }
    .best_services_block .best_service_buttons .visit_site:hover {
      cursor: pointer;
      background-color: #e87119; }
  .best_services_block .best_service_buttons .rate_site {
    font-family: "Cuprum", sans-serif;
    display: block;
    font-size: 17px;
    color: #80c3fb;
    background-color: #fff;
    border: #80c3fb 2px solid;
    border-radius: 5px;
    height: 35px;
    line-height: 31px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin-top: 12px;
    width: 100%; }
    .best_services_block .best_service_buttons .rate_site:hover {
      cursor: pointer;
      background-color: #eaf9ff; }

.container .best_services_block div.star-rating {
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0; }
  .container .best_services_block div.star-rating:last-child {
    margin: 0; }
  .container .best_services_block div.star-rating a {
    width: 20px;
    height: 20px;
    background-size: 20px; }

.field_item {
  display: inline-block;
  width: 100%;
  margin-bottom: 18px; }
  .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: 99px; }

.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: 4px; }
  .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; }
      .upload_files ul li a:not(.file_delete) {
        display: inline;
        color: #48a2ff;
        font-size: 14px;
        font-weight: bold;
        word-wrap: break-word;
        word-break: break-all;
        text-decoration: none; }

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

.button_upload {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #fff;
  border: #80c3fb 2px solid;
  height: 36px;
  line-height: 32px;
  color: #58abf1;
  font-size: 16px;
  float: left;
  width: 31%;
  text-transform: uppercase;
  float: right; }
  .button_upload:hover {
    background-color: #eaf9ff; }

.captcha {
  border-top: #fff 1px solid;
  border-bottom: #fff 1px solid;
  display: inline-block;
  width: 100%;
  padding: 14px 0; }
  .captcha .captcha_block {
    margin: 0 auto; }
  .captcha + .button_send {
    margin-top: 16px; }

.button_send {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #f8841c;
  height: 40px;
  line-height: 40px;
  box-shadow: inset 0px -2px 0 #e6520a;
  -moz-box-shadow: inset 0px -2px 0 #e6520a;
  -webkit-box-shadow: inset 0px -2px 0 #e6520a;
  clear: both;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  margin: -15px auto 0; }
  .button_send:hover {
    background-color: #e87119; }

.file_format_error,
.validation_error {
  color: #f15a29;
  font-size: 11px;
  font-style: italic; }

.post .contact_form {
  border-top: none;
  padding-top: 0; }
  .post .contact_form .detailed_title {
    margin-bottom: 20px; }
  .post .contact_form .captcha {
    float: right;
    width: 74%; }
  .post .contact_form .button {
    border-radius: 35px;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    background-color: #337cba;
    height: 47px;
    line-height: 47px;
    clear: both;
    width: 74%;
    font-size: 18px;
    float: right;
    margin-top: 25px; }
    .post .contact_form .button:hover {
      background-color: #1e69a9; }

.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: 680px; }
    .popup.popup_review .popup_content {
      padding: 20px 32px; }
      .popup.popup_review .popup_content > p {
        color: #686f85;
        font-size: 16px;
        line-height: 22px; }
  .popup.popup_info {
    width: 452px; }

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

.popup_title {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background-color: #f16e1a;
  overflow: hidden;
  padding: 4px 0;
  text-align: center; }
  .popup_title h2 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase; }

/* popup review form */
.popup_review_form {
  display: inline-block;
  width: 100%;
  margin-top: 20px; }
  .popup_review_form .field_block {
    float: left;
    width: 302px; }
    .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_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 {
    border-top: #bac3c8 1px solid;
    border-bottom: #bac3c8 1px solid; }
  .popup_review_form .button_send {
    width: 50%; }

/* end popup review form */
.popup_info .popup_title {
  background-color: #e5f1fb;
  border-bottom: #cfd5de 1px solid;
  padding: 7px 0; }
  .popup_info .popup_title h2 {
    color: #5e5fb0; }
.popup_info .popup_content {
  padding: 20px; }
.popup_info .popup_info_text {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: #dcdcdc 1px solid; }
  .popup_info .popup_info_text span {
    color: #686f85;
    font-size: 20px;
    text-transform: uppercase; }
  .popup_info .popup_info_text p {
    color: #686f85;
    font-size: 17px;
    line-height: 20px; }
.popup_info .button_ok {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #f8841c;
  height: 36px;
  line-height: 36px;
  box-shadow: inset 0px -2px 0 #e6520a;
  -moz-box-shadow: inset 0px -2px 0 #e6520a;
  -webkit-box-shadow: inset 0px -2px 0 #e6520a;
  width: 48%;
  color: #fff;
  font-size: 18px;
  margin: 20px auto 0;
  text-transform: uppercase; }
  .popup_info .button_ok:hover {
    background-color: #e87119; }

.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: #5e5eab;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 7px 0;
  position: relative; }
  .widget_title h3 {
    color: #fff;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center; }

/* widget award */
.widget_award {
  box-shadow: 0 -4px 0 #f15a29;
  -moz-box-shadow: 0 -4px 0 #f15a29;
  -webkit-box-shadow: 0 -4px 0 #f15a29;
  border: #ffbea7 1px solid;
  padding: 10px 14px; }
  .widget_award .widget_title {
    border-bottom: #c2cdd6 1px solid;
    padding-left: 60px;
    text-transform: uppercase;
    overflow: hidden;
    padding-bottom: 7px;
    position: relative; }
    .widget_award .widget_title:before {
      background: url(/assets/award_icon.png) no-repeat;
      content: '';
      display: block;
      width: 83px;
      height: 84px;
      position: absolute;
      top: 0;
      left: 0; }
    .widget_award .widget_title h3 {
      background: -webkit-linear-gradient(top, #287abd, #1e5b8f);
      background: linear-gradient(top, #287abd, #1e5b8f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 24px;
      line-height: 24px;
      margin-top: 5px; }
    .widget_award .widget_title p {
      color: #1b5383;
      font-size: 18px;
      font-weight: 600;
      line-height: 20px; }
  .widget_award .select2-container {
    min-width: 100%;
    max-width: 100%;
    margin-top: 16px; }
    .widget_award .select2-container:before {
      box-shadow: 0 2px 6px #b7c4cf;
      -moz-box-shadow: 0 2px 6px #b7c4cf;
      -webkit-box-shadow: 0 2px 6px #b7c4cf;
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
  .widget_award .award_item {
    margin-top: 20px;
    overflow: hidden; }
  .widget_award .award_item_title {
    border-top: #c4ced7 1px solid;
    overflow: hidden;
    padding-top: 10px; }
    .widget_award .award_item_title h3 {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #2eaae3;
      font-size: 25px;
      line-height: 25px;
      text-transform: uppercase;
      margin-bottom: 7px; }
    .widget_award .award_item_title .rating_wrapper {
      float: left; }
      .widget_award .award_item_title .rating_wrapper div.star-rating {
        background-size: 17px;
        width: 17px;
        height: 17px;
        margin: 0 2px 0 2px; }
        .widget_award .award_item_title .rating_wrapper div.star-rating a {
          background-size: 17px;
          width: 17px; }
        .widget_award .award_item_title .rating_wrapper div.star-rating-on a {
          background-position: 0 bottom !important; }
        .widget_award .award_item_title .rating_wrapper div.star-rating-hover a {
          background-position: 0 bottom; }
      .widget_award .award_item_title .rating_wrapper div .rating-cancel + .star-rating {
        margin: 0 2px 0 0; }
    .widget_award .award_item_title p {
      color: #00a5ff;
      float: left;
      font-size: 14px;
      margin: 3px 0 0 23px; }
  .widget_award .award_logo {
    background-color: #fff;
    border: #d8dee2 1px solid;
    text-align: center;
    overflow: hidden;
    padding: 14px 0;
    margin: 12px 0; }
  .widget_award .award_buttons {
    display: inline-block;
    width: 100%;
    margin-top: 8px; }
    .widget_award .award_buttons .button {
      border-radius: 20px;
      -moz-border-radius: 20px;
      -webkit-border-radius: 20px;
      width: 135px;
      font-size: 16px;
      text-transform: uppercase; }
    .widget_award .award_buttons .button_read {
      background-color: #fff;
      border: #1a69ac 2px solid;
      height: 35px;
      line-height: 31px;
      color: #1a69ac;
      float: left; }
      .widget_award .award_buttons .button_read:hover {
        background-color: #eaf9ff; }
    .widget_award .award_buttons .button_visit {
      background-color: #f15a29;
      height: 35px;
      line-height: 35px;
      float: right; }
      .widget_award .award_buttons .button_visit:hover {
        background-color: #e04b1a; }
  .widget_award .award_comment {
    border-top: #d6e2ec 1px solid;
    font-style: italic;
    font-size: 14px;
    line-height: 19px;
    margin: 20px 0 0 20px;
    position: relative;
    padding-top: 9px; }
    .widget_award .award_comment:before {
      background: url(/assets/arrow_award.png) no-repeat;
      content: '';
      display: block;
      width: 17px;
      height: 12px;
      position: absolute;
      top: -8px;
      left: -20px; }
    .widget_award .award_comment p {
      color: #60676d; }
    .widget_award .award_comment span {
      color: #1a69ac;
      float: right; }

/* end widget award */
/* recent reviews */
.recent_reviews_item {
  border-bottom: #dcdcdc 1px solid;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding-bottom: 18px;
  margin-bottom: 16px; }
  .recent_reviews_item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 5px; }
  .recent_reviews_item > a,
  .recent_reviews_item > span {
    color: #272876;
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 8px; }
  .recent_reviews_item .recent_reviews_photo {
    box-shadow: 0 0 15px #ececec;
    -moz-box-shadow: 0 0 15px #ececec;
    -webkit-box-shadow: 0 0 15px #ececec;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #fff;
    display: table;
    float: left;
    width: 142px;
    height: 72px;
    margin-right: 15px; }
    .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: 16px; }
    .recent_reviews_item .recent_reviews_details .rating_wrapper div.star-rating {
      background-size: 18px;
      width: 18px;
      height: 18px;
      margin: 0 3.2px 0 3.2px; }
      .recent_reviews_item .recent_reviews_details .rating_wrapper div.star-rating a {
        background-size: 18px;
        width: 18px; }
      .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 3.2px 0 0; }
  .recent_reviews_item .recent_reviews_details .button_review {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #fff;
    border: #80c3fb 2px solid;
    height: 35px;
    line-height: 31px;
    width: 120px;
    color: #80c3fb;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top; }
    .recent_reviews_item .recent_reviews_details .button_review:hover {
      background-color: #eaf9ff; }

/* end recent reviews */
.widget_top_service {
  background-color: #f8fafa; }
  .widget_top_service .top_service_item .discount_info {
    bottom: 15px; }
  .widget_top_service .widget_title {
    overflow: hidden; }
    .widget_top_service .widget_title h3:before {
      border-right: #3c3c81 1px solid;
      background: #464691 url(/assets/top_badge.png) center center no-repeat;
      content: '';
      width: 45px;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0; }

.top_service_item {
  border-bottom: #dcdcdc 1px solid;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 17px 15px 11px 15px;
  position: relative; }
  .top_service_item .discount_info {
    font-size: 12px;
    line-height: 13px;
    height: 20px;
    padding: 4px 15px 3px 7px;
    background: #F16E19;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    left: 15px;
    bottom: 11px;
    position: absolute;
    text-align: left;
    color: #fff;
    max-width: 112px;
    border: none;
    border-bottom: 1px solid #B64E0B;
    text-decoration: none;
    outline: none; }
    .top_service_item .discount_info:hover {
      cursor: pointer; }
    .top_service_item .discount_info:before {
      position: absolute;
      display: block;
      content: '';
      border-style: solid;
      border-width: 8px 6px 8px 0;
      border-color: transparent #fff transparent transparent;
      top: 2px;
      right: 0; }
  .top_service_item:nth-child(odd) {
    background-color: #fcfaf8; }
  .top_service_item:last-child {
    border-bottom: 0;
    margin-bottom: 0; }
  .top_service_item .top_service_title {
    display: inline-block;
    width: 100%;
    margin-bottom: 14px; }
    .top_service_item .top_service_title span {
      border-radius: 100%;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      background-color: #ffdab8;
      color: #f16e19;
      display: inline-block;
      vertical-align: top;
      font-size: 14px;
      width: 23px;
      height: 23px;
      text-align: center;
      line-height: 23px;
      margin-right: 7px; }
    .top_service_item .top_service_title > a,
    .top_service_item .top_service_title > p {
      color: #272876;
      display: inline-block;
      font-size: 19px;
      font-weight: 700;
      text-decoration: none; }
  .top_service_item .top_service_photo {
    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;
    background-color: #fff;
    display: table;
    float: left;
    width: 142px;
    height: 95px;
    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%;
        height: auto; }
  .top_service_item .top_service_details .rating_wrapper {
    overflow: hidden;
    margin-bottom: 7px; }
    .top_service_item .top_service_details .rating_wrapper div.star-rating {
      background-size: 18px;
      width: 18px;
      height: 18px;
      margin: 0 3.2px 0 3.2px; }
      .top_service_item .top_service_details .rating_wrapper div.star-rating a {
        background-size: 18px;
        width: 18px; }
      .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 3.2px 0 0; }
  .top_service_item .top_service_details .button {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    width: 120px;
    font-size: 16px;
    margin-bottom: 7px; }
  .top_service_item .top_service_details .button_review {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #fff;
    border: #80c3fb 2px solid;
    height: 30px;
    line-height: 26px;
    color: #80c3fb; }
    .top_service_item .top_service_details .button_review:hover {
      background-color: #eaf9ff; }
  .top_service_item .top_service_details .button_website {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #f8841c;
    height: 30px;
    line-height: 30px;
    box-shadow: inset 0px -2px 0 #e6520a;
    -moz-box-shadow: inset 0px -2px 0 #e6520a;
    -webkit-box-shadow: inset 0px -2px 0 #e6520a;
    color: #fff; }
    .top_service_item .top_service_details .button_website:hover {
      background-color: #e87119; }

.widget_best_dicounts {
  overflow: hidden; }
  .widget_best_dicounts .discount_info {
    bottom: 15px; }
  .widget_best_dicounts .widget_title {
    position: relative; }
    .widget_best_dicounts .widget_title h3:before {
      border-right: #3c3c81 1px solid;
      background: #464691 url(/assets/top_badge.png) center center no-repeat;
      content: '';
      width: 45px;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0; }
  .widget_best_dicounts .top_service_photo {
    background: #d5d5e9;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #d5d5e9 0%, #f6f6fa 26%, #ffffff 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #d5d5e9 0%, #f6f6fa 26%, #ffffff 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #d5d5e9 0%, #f6f6fa 26%, #ffffff 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: relative; }
  .widget_best_dicounts .top_service_discount {
    background: url(/assets/discount_line.png) no-repeat;
    color: #fff;
    display: block;
    font-size: 18px;
    width: 91px;
    height: 24px;
    text-align: center;
    position: absolute;
    bottom: 8px;
    left: 0; }

.irs {
  position: relative;
  display: block;
  -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: #93abd9;
  border: #e1eaee 5px solid;
  height: 12px;
  position: relative;
  display: block;
  /*overflow: hidden;*/
  outline: none !important;
  top: 7px; }

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

.irs-line-left {
  background-color: #7f98c9;
  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: #7f98c9;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  display: block;
  width: 6px;
  height: 6px; }

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

.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; }

.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: #192a5d;
  top: 7px;
  left: 4px; }

.irs-single:after,
.irs-from:after,
.irs-to:after {
  display: block;
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  background-color: #192a5d;
  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-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: url(/assets/post_carousel_arrows.png) no-repeat;
  background-color: #c5d3df;
  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 top;
  left: -48px; }
.post_carousel_content .owl-nav .owl-next {
  background-position: center bottom;
  right: -48px; }

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

/* 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); }

.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; }

.sorting .field_item:last-child .input {
  padding-right: 0px; }
.sorting .field_item:last-child .easy-autocomplete-container {
  top: 27px; }
.sorting .field_item:last-child .easy-autocomplete:before {
  left: 8px;
  width: 16px;
  height: 16px;
  background-size: 100%; }

.rate_form .liked_area {
  position: relative;
  float: left;
  margin-left: 77px; }
  .rate_form .liked_area input {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    color: #0000;
    visibility: hidden; }
    .rate_form .liked_area input:hover + label.like, .rate_form .liked_area input:checked + label.like {
      background-position: left -49px;
      opacity: 1; }
    .rate_form .liked_area input:hover + label.dislike, .rate_form .liked_area input:checked + label.dislike {
      background-position: right -49px;
      opacity: 1; }
  .rate_form .liked_area .validation_error {
    position: relative;
    top: 5px;
    overflow: hidden;
    clear: both;
    text-align: center; }

.our_mission_item .our_mission_photo {
  height: auto;
  width: 100%;
  position: relative; }
  .our_mission_item .our_mission_photo:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    background: #FED9C3;
    height: 1px;
    top: 50%;
    margin-top: -1px; }
  .our_mission_item .our_mission_photo img {
    position: relative;
    display: table;
    margin: 0 auto; }

.error_page {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 120px; }
  .error_page img {
    margin-bottom: 40px; }
  .error_page p {
    background: url(/assets/devider.png) center center no-repeat;
    color: #aeb3b3;
    font-size: 34px; }
  .error_page .button_back {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #fff;
    border: #80c3fb 2px solid;
    height: 36px;
    line-height: 32px;
    color: #58abf1;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    width: 250px;
    margin: 30px auto 0; }
    .error_page .button_back:hover {
      background-color: #eaf9ff; }

.subscribe {
  background: url(/assets/dots.png) center bottom no-repeat;
  padding-bottom: 24px;
  margin: 150px 0 200px 0; }
  .subscribe h1 {
    background: url(/assets/subscribe_devider.png) center center no-repeat;
    color: #5666ae;
    font-size: 35px; }

.section_wrapper.text_section .section_title {
  margin-bottom: 10px; }
.section_wrapper.text_section .section_content p, .section_wrapper.text_section .section_content li {
  color: #3a3636;
  font-size: 16px;
  line-height: 22px; }
.section_wrapper.text_section .section_content p:not(:last-child) {
  margin-bottom: 15px; }
.section_wrapper.text_section .section_content ul:not(:last-child), .section_wrapper.text_section .section_content ol:not(:last-child) {
  margin-bottom: 10px; }

.receive_discount label {
  width: 350px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.message.children .message_title h3 {
  text-align: right; }
  .message.children .message_title h3 span {
    color: #272876;
    margin-left: 0; }
.message.children .message_title a.link_reply {
  float: left; }
.message.children .message_photo {
  float: right; }

.discussion_item.children .discussion_item_photo {
  margin-bottom: 5px; }
.discussion_item.children .discussion_item_content {
  font-size: 16px; }
  .discussion_item.children .discussion_item_content .discussion_item_title {
    color: #272876; }
  .discussion_item.children .discussion_item_content p {
    color: #686f85; }

.discussion_item.children {
  margin-left: 105px; }
  .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: 60px; }
.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; }
.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%; }
@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-right: 15px; }

  .slogan {
    max-width: 243px; }

  .pagination ul {
    padding-right: 0; }

  .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane {
    width: 100%;
    height: 100%;
    padding: 10px; } }
@media screen and (min-width: 768px) and (max-width: 980px) and (min-width: 768px) and (max-width: 999px) {
  .best_services_block .best_services_item {
    padding: 10px 0; }
  .best_services_block .best_service_logo {
    width: 104px;
    margin-right: 20px; }
  .best_services_block .best_service_rating {
    width: calc(100% - 499px); }
    .best_services_block .best_service_rating > a {
      font-size: 18px; }
    .best_services_block .best_service_rating .top_service_rate {
      margin-top: 14px; }
      .best_services_block .best_service_rating .top_service_rate .rating_wrapper {
        margin-right: 10px; }
  .best_services_block .best_service_info {
    width: 275px; }
  .best_services_block .best_service_buttons {
    width: 100px; }
  .best_services_block .best_service_discount {
    margin-left: 15px; }
    .best_services_block .best_service_discount a {
      font-size: 16px; } }
@media screen and (min-width: 768px) and (max-width: 980px) {
  .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: 55%; }

  .filter {
    width: 280px; }

  .popular_services_item {
    width: 138px; }

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

  .receive_discount .input {
    width: 500px;
    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 .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; }

  .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; }

  .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.active a {
        border: 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 {
            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: 14px 0 0 10px; }
    .header_nav_button span {
      background-color: #272876;
      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-left: 10px; }
    .logo:before {
      display: none; }

  .slogan {
    margin-top: 30px; }

  .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_content {
    width: 100%; }

  .footer_nav ul {
    text-align: center;
    display: block;
    width: 100%; }
    .footer_nav ul li {
      padding: 0 20px;
      margin-right: 0; }

  .footer_links {
    padding: 0 20px; }
    .footer_links ul {
      display: block;
      overflow: hidden; }
      .footer_links ul li {
        float: none;
        padding: 0;
        margin-bottom: 10px; }

  .footer_links.footer_services {
    width: 100%;
    margin: 20px auto;
    padding: 0 20px; }
    .footer_links.footer_services ul li:last-child {
      margin-bottom: 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 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 70px; }
    .pagination ul {
      padding-right: 0; }
      .pagination ul li {
        margin: 0 5px; }
        .pagination ul li.prev, .pagination ul li.next {
          display: block;
          position: absolute;
          top: 67px;
          left: 50%;
          margin-left: -114px; }
        .pagination ul li.next {
          margin-left: 0; }

  .show_more {
    margin-bottom: 20px; }

  .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; }

  .pagination {
    display: none; }

  .pagination.pagination-for-mobile {
    display: block; }

  .pagination ul li.pagination-mobile-hide {
    display: none; }

  .table_content_list ul li {
    margin-bottom: 10px; } }
@media screen and (min-width: 0px) and (max-width: 767px) and (min-width: 0px) and (max-width: 767px) {
  .best_services_block .best_services_item {
    display: block;
    padding: 20px 0; }
  .best_services_block .best_service_logo {
    width: 208px;
    height: 124px;
    margin: 0 auto; }
  .best_services_block .best_service_rating {
    width: 100%;
    text-align: center;
    padding-top: 14px; }
    .best_services_block .best_service_rating .top_service_rate {
      justify-content: center;
      margin-top: 6px; }
  .best_services_block .best_service_info {
    width: 100%;
    margin-top: 12px;
    padding-left: 15px; }
  .best_services_block .best_service_price_wrapper {
    margin-top: -4px; }
  .best_services_block .best_service_buttons {
    width: 100%;
    padding-top: 14px; }
    .best_services_block .best_service_buttons .visit_site,
    .best_services_block .best_service_buttons .rate_site {
      display: block;
      width: 190px;
      margin: auto; }
    .best_services_block .best_service_buttons .rate_site {
      margin-top: 12px; } }
@media screen and (min-width: 0px) and (max-width: 767px) {
  .top_services .section_title {
    width: 100%; }
    .top_services .section_title h1,
    .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: 45px;
    padding-right: 45px; }

  .receive_discount label {
    width: 100%;
    font-size: 21px; }
  .receive_discount .input {
    display: inline-block;
    vertical-align: top;
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 10px; }
  .receive_discount .button {
    float: none;
    display: block;
    margin: 10px auto 0;
    width: 80%; }
  .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%; }

  .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; }

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

  .popup_overlay {
    overflow-y: scroll; }

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

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

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

  .post_width .post {
    max-width: 100%; }

  .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.post_view .post_title {
      overflow: visible;
      position: relative; }
      .post.post_view .post_title ul {
        position: absolute;
        top: 250px;
        padding: 0; }
        .post.post_view .post_title ul li {
          color: #c7c7c7; }
    .post.post_view .post_photo {
      margin-bottom: 50px; }

  .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%; }
    .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_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%; }

  .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; }

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

  .rate_form {
    width: 100%;
    margin-right: 0; }
    .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 {
    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 strong {
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px; }

  .criteria_block {
    padding: 25px 10px; }

  .criteria_service {
    width: 100%; }
    .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_service_content {
      width: 100%;
      padding-top: 12px; }

  .criteria_service_title .criteria_service_rating {
    width: 100%;
    margin-top: 5px; } }
.widget_recent_reviews > .collapsed .top_service_item.tail {
  display: none; }
.widget_recent_reviews .widget_buttons {
  padding: 17px 15px 11px 15px; }
  .widget_recent_reviews .widget_buttons .button {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    display: inline-block;
    width: 40%;
    vertical-align: middle;
    box-sizing: border-box; }
    .widget_recent_reviews .widget_buttons .button.show_more {
      background-color: #fff;
      border: #80c3fb 2px solid;
      color: #80c3fb;
      line-height: 26px; }
    .widget_recent_reviews .widget_buttons .button.show_all {
      background-color: #f8841c;
      box-shadow: inset 0px -2px 0 #e6520a;
      -moz-box-shadow: inset 0px -2px 0 #e6520a;
      -webkit-box-shadow: inset 0px -2px 0 #e6520a;
      color: #fff;
      float: right; }

h1.inherit_styles {
  font-size: inherit;
  display: inherit;
  text-transform: inherit; }

.footer-disclaimer {
  position: relative;
  margin: 30px auto -12px;
  padding: 0 20px;
  text-align: left;
  color: #99a5d8;
  font-size: 14px;
  line-height: 24px;
  font-weight: lighter; }
  .footer-disclaimer span > strong {
    font-weight: bold; }

@media screen and (max-width: 767px) and (min-width: 0px) {
  .footer_logo {
    display: flex;
    flex-direction: column-reverse;
    width: 100%; }

  .footer-disclaimer {
    margin: 0 auto 30px; } }
/*








 */

