@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Dongle&display=swap');

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none; }
  .chosen-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .chosen-container.chosen-with-drop .chosen-drop {
    left: 0; }
  .chosen-container a {
    cursor: pointer; }
  .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
    margin-right: 4px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-weight: normal;
    color: #999999; }
    .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
      content: ":";
      padding-left: 2px;
      vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: -webkit-linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  /* Standard syntax */
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }
  .chosen-container-single .chosen-single abbr:hover {
    background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }
  .chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }
  .chosen-container-single .chosen-search input[type="text"] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }
  .chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none; }
    .chosen-container .chosen-results li.active-result {
      display: list-item;
      width: 100% !important;
      cursor: pointer; }
    .chosen-container .chosen-results li.disabled-result {
      display: list-item;
      color: #ccc;
      cursor: default; }
    .chosen-container .chosen-results li.highlighted {
      background-color: #3875d7;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
      background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
      background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
      background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
      color: #fff; }
    .chosen-container .chosen-results li.no-results {
      color: #777;
      display: list-item;
      background: #f4f4f4; }
    .chosen-container .chosen-results li.group-result {
      display: list-item;
      font-weight: bold;
      cursor: default; }
    .chosen-container .chosen-results li.group-option {
      padding-left: 15px; }
    .chosen-container .chosen-results li em {
      font-style: normal;
      text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
  background-image: -o-linear-gradient(#eee 1%, #fff 15%);
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }
  .chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap; }
    .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
      margin: 1px 0;
      padding: 0;
      height: 25px;
      outline: 0;
      border: 0 !important;
      background: transparent !important;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #999;
      font-size: 100%;
      font-family: sans-serif;
      line-height: normal;
      border-radius: 0; }
  .chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 5px;
    border: 1px solid #aaa;
    max-width: 100%;
    border-radius: 3px;
    background-color: #eeeeee;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
    background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 13px;
    cursor: default; }
    .chosen-container-multi .chosen-choices li.search-choice span {
      word-wrap: break-word; }
    .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
      position: absolute;
      top: 4px;
      right: 3px;
      display: block;
      width: 12px;
      height: 12px;
      font-size: 1px; }
      .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
        background-position: -42px -10px; }
      .chosen-container-multi .chosen-choices li.search-choice .search-choice-close::before {
        content: "\f00d";
        font-family: 'FontAwesome';
        font-size: 12px;
        position: relative;
        top: 0px; }
  .chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
    background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    color: #666; }
  .chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4; }
    .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
      background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
  background-image: -o-linear-gradient(#eee 20%, #fff 80%);
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }
  .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
  .chosen-container-active .chosen-choices li.search-field input[type="text"] {
    color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }
  .chosen-disabled .chosen-single {
    cursor: default; }
  .chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }
  .chosen-rtl .chosen-single {
    overflow: visible;
    padding: 0 8px 0 0; }
  .chosen-rtl .chosen-single span {
    margin-right: 0;
    margin-left: 26px;
    direction: rtl; }
  .chosen-rtl .chosen-single-with-deselect span {
    margin-left: 38px; }
  .chosen-rtl .chosen-single div {
    right: auto;
    left: 3px; }
  .chosen-rtl .chosen-single abbr {
    right: auto;
    left: 26px; }
  .chosen-rtl .chosen-choices li {
    float: right; }
    .chosen-rtl .chosen-choices li.search-field input[type="text"] {
      direction: rtl; }
    .chosen-rtl .chosen-choices li.search-choice {
      margin: 3px 5px 3px 0;
      padding: 3px 5px 3px 19px; }
      .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
        right: auto;
        left: 4px; }
  .chosen-rtl.chosen-container-single-nosearch .chosen-search,
  .chosen-rtl .chosen-drop {
    left: 9999px; }
  .chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0; }
  .chosen-rtl .chosen-results li.group-option {
    padding-right: 15px;
    padding-left: 0; }
  .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: none; }
  .chosen-rtl .chosen-search input[type="text"] {
    padding: 4px 5px 4px 20px;
    direction: rtl; }
  .chosen-rtl.chosen-container-single .chosen-single div b {
    background-position: 6px 2px; }
  .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
    background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

/* @end */
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center; }

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5; }

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none; }

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */ }

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791; }

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1; }

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1em;
  background: #ecf0f1; }

h1, h2, h3, h4, h5, h6 {
  margin: 0.67em 0; }

h1 {
  font-size: 24px;
  font-weight: 600; }

h2 {
  font-size: 20px;
  font-weight: 600; }

h3 {
  font-size: 18px;
  font-weight: 600; }

h4 {
  font-size: 16px;
  font-weight: 600; }

h5 {
  font-size: 14px;
  font-weight: 600; }

h6 {
  font-size: 12px;
  font-weight: 600; }

a {
  text-decoration: none;
  outline: none; }
  a:hover, a:focus {
    text-decoration: none;
    outline: none; }

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none; }

/* ul > li, ol > li {
	padding: 4px 0;
} */
/* .star-off-png, .cancel-off-png {
	color:#5d5d5d;
} */
/* .cancel-on-png, .star-on-png, .star-half-png {
	color: $color_base_sixth;
}
 */
/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2017 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0); }

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto; }

.chosen-container a {
  cursor: pointer; }

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999; }

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: -webkit-linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("chosen-sprite.png") no-repeat 0px 2px; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0); }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
  background-image: -o-linear-gradient(#eee 1%, #fff 15%);
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
  background-image: -o-linear-gradient(#eee 20%, #fff 80%);
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url("chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

/* @end */
input {
  outline: 0; }
  input.text-field, .wpcf7-form > p input[type="text"], .wpcf7-form > p input[type="email"], .comments .comment-respond .comment-form p[class*='comment-form-'] input {
    height: 40px;
    border: 1px solid rgba(189, 195, 199, 0.4);
    font-size: 14px;
    width: 100%;
    line-height: normal;
    padding: 10px 14px;
    color: #5f6f81; }

.form-control {
  -webkit-box-shadow: none;
  box-shadow: none; }
  .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(189, 195, 199, 0.4); }

.error {
  position: relative; }
  .error .text-field, .error .comments .comment-respond .comment-form p[class*='comment-form-'] input, .comments .comment-respond .comment-form p[class*='comment-form-'] .error input, .error .chosen-single, .error .chosen-choices {
    border: 1px solid #eb5256; }
  .error i.fa-exclamation-triangle {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 12px;
    color: #eb5256; }
  .error.form-field i.fa-exclamation-triangle {
    top: 33px; }
  .error .message {
    font-size: 12px;
    color: #eb5256;
    text-align: right;
    padding-right: 12px;
    margin-top: 3px; }

div[class*="col-"].error i.fa-exclamation-triangle {
  right: 29px; }

.wp-editor-wrap .error i.fa-exclamation-triangle {
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%); }

.inputCheck {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  background: #e5e7e9; }
  .inputCheck input[type="checkbox"] {
    visibility: hidden; }
    .inputCheck input[type="checkbox"]:checked + label:after {
      opacity: 1; }
  .inputCheck label {
    position: absolute;
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 1px;
    left: 1px;
    background: #FFF; }
    .inputCheck label::after {
      content: " ";
      width: 12px;
      height: 7px;
      position: absolute;
      top: 4px;
      left: 2px;
      border: 3px solid #1abc9c;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .inputCheck label:hover::after {
      opacity: 0.3; }

.inputCircle {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  background: #e5e7e9;
  border-radius: 50%; }
  .inputCircle input[type="checkbox"] {
    visibility: hidden; }
    .inputCircle input[type="checkbox"]:checked + label:after {
      opacity: 1; }
  .inputCircle label {
    position: absolute;
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 1px;
    left: 1px;
    background: #FFF;
    border-radius: 50%; }
    .inputCircle label::after {
      content: " ";
      width: 6px;
      height: 6px;
      position: absolute;
      top: 5px;
      left: 5px;
      background: #1abc9c;
      opacity: 0;
      border-radius: 50%; }
    .inputCircle label:hover::after {
      opacity: 0.3; }

.inputRadio {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  background: #e5e7e9;
  border-radius: 50%; }
  .inputRadio input[type="radio"] {
    visibility: hidden; }
    .inputRadio input[type="radio"]:checked + label:after {
      opacity: 1; }
  .inputRadio label {
    position: absolute;
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 1px;
    left: 1px;
    background: #FFF;
    border-radius: 50%; }
    .inputRadio label::after {
      content: " ";
      width: 6px;
      height: 6px;
      position: absolute;
      top: 5px;
      left: 5px;
      background: #1abc9c;
      opacity: 0;
      border-radius: 50%; }
    .inputRadio label:hover::after {
      opacity: 0.3; }

textarea {
  outline: 0; }

.dropdown-menu {
  padding: 0; }

.top-user {
  text-align: center;
  border: 1px solid #bdc3c7; }
  .top-user:hover {
    background: #1d83d5; }
    .top-user:hover a {
      color: #FFF; }
  .top-user > a {
    display: block;
    line-height: 4.2em;
    font-weight: 700;
    color: #737373; }
    .top-user > a .caret {
      margin-left: 10px; }
  .top-user.open {
    background: #1d83d5; }
    .top-user.open a {
      color: #FFF; }
  .top-user .dropdown-menu {
    width: 100%;
    border-radius: 0;
    padding: 0; }
    .top-user .dropdown-menu > li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
      .top-user .dropdown-menu > li:last-child {
        border-bottom: none; }
      .top-user .dropdown-menu > li > a {
        padding: 10px 20px;
        color: #5f6f81; }
        .top-user .dropdown-menu > li > a i {
          margin-right: 15px; }
        .top-user .dropdown-menu > li > a:hover {
          background: #5f6f81;
          color: #FFF; }

.dropdown-control {
  float: right; }
  .dropdown-control .btn-base, .dropdown-control .btn-post-place, .dropdown-control .btn-load-more, .dropdown-control .load-more-post, .dropdown-control .load-refesh-post, .dropdown-control .btn-comment, .dropdown-control .btn-more, .dropdown-control .btn-submit, .dropdown-control .wpcf7-form > p input[type="submit"], .wpcf7-form > p .dropdown-control input[type="submit"], .dropdown-control .btn-continue, .dropdown-control .btn-submit-login-form, .dropdown-control .btn-select-plan, .dropdown-control .btn-search, .dropdown-control .btn-contact-owner, .dropdown-control .contact-owner-link, .dropdown-control .btn-login, .dropdown-control .btn-contact-author, .dropdown-control .claim-place, .dropdown-control .no-claim, .dropdown-control .btn-submit-price-plan {
    background: #1d83d5;
    padding: 4px 12px;
    line-height: 18px; }
    .dropdown-control .btn-base .caret, .dropdown-control .btn-post-place .caret, .dropdown-control .btn-load-more .caret, .dropdown-control .load-more-post .caret, .dropdown-control .load-refesh-post .caret, .dropdown-control .btn-comment .caret, .dropdown-control .btn-more .caret, .dropdown-control .btn-submit .caret, .dropdown-control .wpcf7-form > p input[type="submit"] .caret, .wpcf7-form > p .dropdown-control input[type="submit"] .caret, .dropdown-control .btn-continue .caret, .dropdown-control .btn-submit-login-form .caret, .dropdown-control .btn-select-plan .caret, .dropdown-control .btn-search .caret, .dropdown-control .btn-contact-owner .caret, .dropdown-control .contact-owner-link .caret, .dropdown-control .btn-login .caret, .dropdown-control .btn-contact-author .caret, .dropdown-control .claim-place .caret, .dropdown-control .no-claim .caret, .dropdown-control .btn-submit-price-plan .caret {
      margin-left: 20px; }

.single-place-control {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0; }
  .single-place-control > li {
    padding-top: 0;
    padding-bottom: 0; }
    .single-place-control > li > a {
      padding: 6px 40px 6px 20px;
      color: #5f6f81;
      font-size: 14px; }
      .single-place-control > li > a i {
        margin-right: 15px; }
      .single-place-control > li > a:hover {
        background: #5f6f81;
        color: #FFF; }

button {
  outline: none; }

.btn-base, .btn-post-place, .btn-load-more, .load-more-post, .load-refesh-post, .btn-comment, .btn-more, .btn-submit, .wpcf7-form > p input[type="submit"], .btn-continue, .btn-submit-login-form, .btn-select-plan, .btn-search, .btn-contact-owner, .contact-owner-link, .btn-login, .btn-contact-author, .claim-place, .no-claim, .btn-submit-price-plan {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  background: #bdc3c7;
  color: white;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none; }
  .btn-base-fullwidth {
    width: 100% !important; }
  .btn-base:hover, .btn-post-place:hover, .btn-load-more:hover, .load-more-post:hover, .load-refesh-post:hover, .btn-comment:hover, .btn-more:hover, .btn-submit:hover, .wpcf7-form > p input[type="submit"]:hover, .btn-continue:hover, .btn-submit-login-form:hover, .btn-select-plan:hover, .btn-search:hover, .btn-contact-owner:hover, .contact-owner-link:hover, .btn-login:hover, .btn-contact-author:hover, .claim-place:hover, .no-claim:hover, .btn-submit-price-plan:hover {
    color: white;
    text-decoration: none; }

.btn-post-place {
  padding: 16px 0;
  font-size: 18px;
  line-height: 18px;
  border-radius: 0;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  background: #1d83d5;
  border: none;
  width: 100%; }
  .btn-post-place i {
    margin-right: 15px; }

.btn-load-more, .load-more-post, .load-refesh-post {
  padding: 7px 60px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  font-size: 12px;
  line-height: 12px; }
  .btn-load-more:hover, .load-more-post:hover, .load-refesh-post:hover {
    background: #1d83d5; }

.btn-comment {
  padding: 10px 26px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  text-transform: uppercase; }

.btn-more {
  padding: 12px 27px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 0;
  background: #1d83d5;
  font-weight: 700;
  text-transform: uppercase; }

.btn-submit, .wpcf7-form > p input[type="submit"] {
  padding: 8px 26px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  background: #1d83d5;
  text-transform: uppercase; }

.btn-continue, .btn-submit-login-form, .btn-select-plan {
  padding: 8px 30px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  background: #1d83d5;
  text-transform: uppercase; }

.btn-search {
  padding: 10px 45px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  background: #f1c40f;
  color: #114f7f;
  text-transform: uppercase; }
  .btn-search:hover {
    background: #f4d03f;
    color: #114f7f; }

.btn-contact-owner, .contact-owner-link {
  padding: 10px 0;
  font-size: 12px;
  line-height: 12px;
  border-radius: 0;
  width: 100%;
  color: #114f7f;
  background: #f1c40f;
  text-transform: uppercase; }
  .btn-contact-owner:hover, .contact-owner-link:hover {
    background: #f4d03f;
    color: #114f7f; }

.ico-social-link {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  color: #FFF; }
  .ico-social-link span {
    background: #1d83d5;
    display: inline-block;
    width: 26px;
    height: 26px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 26px; }
  .ico-social-link:hover {
    color: #FFF;
    text-decoration: none; }

.ico-action-single {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  background: #1d83d5;
  color: #FFF;
  line-height: 45px; }
  .ico-action-single i {
    font-size: 14px; }
  .ico-action-single:hover {
    background: #5f6f81;
    color: #FFF; }

.btn-login {
  padding: 8px 30px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  background: #1d83d5;
  text-transform: normal; }

.load-more-post {
  background-color: #1d83d5; }

.btn-contact-author {
  padding: 8px 26px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 0;
  background: #1d83d5;
  text-transform: uppercase; }

.claim-place, .no-claim {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0;
  background: #1d83d5;
  text-transform: normal; }

.btn-submit-price-plan {
  padding: 8px 26px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 0;
  background: #1d83d5;
  text-transform: uppercase; }

.breadcrumb {
  background: none;
  line-height: 2.4;
  padding: 0 15px;
  border-left: 4px solid #eb5256;
  border-radius: 0;
  margin: 0;
  font-size: 0; }
  .breadcrumb > li {
    padding-top: 0;
    padding-bottom: 0; }
    .breadcrumb > li i {
      display: inline-block;
      font-size: 14px;
      color: #5f6f81;
      margin-right: 6px; }
    .breadcrumb > li a {
      font-size: 12px;
      color: #5f6f81; }
  .breadcrumb > li + li:before {
    content: "\f101";
    font-family: 'FontAwesome';
    font-size: 12px;
    color: #5f6f81;
    padding: 0 10px; }
.breadcrumb span {
   width: 100%;
	display:inline-block;
clear: both;
padding: 10px 20px;
border: none;
background: #f7f9f9;
line-height: 2.4;}
.breadcrumb span span {
   width: auto;
	padding:0;
	display:inline-block;
clear: none;
}
.breadcrumb span {
  font-size: 12px;
  color: #5f6f81;
}
.breadcrumb-blog-page .breadcrumb {
  width: 100%;
  clear: both;
  padding: 10px 20px;
  border: none;
  background: #f7f9f9;
  line-height: 2.4; }

.paginations {
  text-align: center;
  font-size: 0;
  clear: both; }
  .paginations .page-numbers {
    display: inline-block;
    background: #FFF;
    font-size: 14px;
    color: #5f6f81;
    min-width: 32px;
    height: 32px;
    line-height: 2em;
    border-top: 1px solid #e5e7e9;
    border-bottom: 1px solid #e5e7e9;
    border-left: 1px solid #e5e7e9; }
    .paginations .page-numbers:last-child {
      border-right: 1px solid #e5e7e9; }
    .paginations .page-numbers.prev, .paginations .page-numbers.next {
      min-width: 46px; }
    .paginations .page-numbers:hover {
      color: #1d83d5;
      cursor: pointer; }
    .paginations .page-numbers.current:hover {
      color: #5f6f81;
      cursor: default; }
  .paginations .current {
    background: #f1c40f;
    color: #fff; }

@media (max-width: 1199px) {
  .paginations .page-numbers {
    margin: 0 5px;
    border: 1px solid #e5e7e9; } }

.modal {
  z-index: 1060; }

.modal-dialog {
  margin-top: 7%; }

.modal-backdrop {
  z-index: 1050; }

.modal-content {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }

.modal-header {
  position: relative;
  background: #5f6f81;
  color: #FFF;
  padding: 10px 15px; }
  .modal-header .close {
    width: 55px;
    height: 54px;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: #1d83d5;
    color: #FFF;
    opacity: 1; }

.modal-title {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 300; }

.modal-body {
  padding: 0;
  background: #ecf0f1; }
  .modal-body .submit-style {
    padding: 0 30px 20px; }

.form_modal_style .form-field {
  margin-bottom: 20px; }
  .form_modal_style .form-field .chosen-container {
    width: 100% !important; }
  .form_modal_style .form-field.submit_singin {
    margin-top: 14px;
    margin-bottom: 0; }
  .form_modal_style .form-field.submit_signup {
    margin-bottom: 0; }

.form_modal_style label {
  font-size: 14px;
  font-weight: 600;
  color: #5f6f81;
  display: inline-block;
  text-transform: uppercase; }
  .form_modal_style label .alert-icon {
    margin-left: 5px;
    color: #c0392b;
    display: inline-block; }
  .form_modal_style label + .inputCheck {
    margin-left: 5px; }

.form_modal_style textarea {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 100%;
  min-height: 150px;
  resize: none;
  border: 1px solid #dadfea;
  padding: 15px; }

.edit-cover-image p {
  font-size: 12px;
  color: #5f6f81;
  line-height: 1.4;
  margin: 2px 0 14px 0; }

.edit-cover-image .option-cover-image {
  padding: 0; }
  .edit-cover-image .option-cover-image > li {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle; }
    .edit-cover-image .option-cover-image > li .image-cover {
      width: 70px;
      height: 70px;
      background-color: #bdc3c7;
      display: block;
      overflow: hidden;
      text-align: center;
      line-height: 68px;
      cursor: pointer; }
      .edit-cover-image .option-cover-image > li .image-cover img {
        width: 100%;
        height: auto; }
      .edit-cover-image .option-cover-image > li .image-cover i {
        color: #fff;
        line-height: 5;
        top: 0;
        z-index: 58;
        right: 40%;
        position: absolute; }
    .edit-cover-image .option-cover-image > li a {
      font-size: 12px;
      color: #5f6f81; }
      .edit-cover-image .option-cover-image > li a:hover {
        color: #1d83d5; }
      .edit-cover-image .option-cover-image > li a i {
        display: inline-block;
        margin-right: 4px; }
    .edit-cover-image .option-cover-image > li:last-child {
      margin-right: 0; }

.edit-cover-image .img-preview {
  width: 100%;
  height: 200px;
  background: #bdc3c7;
  display: block;
  position: relative;
  background-size: cover; }
  .edit-cover-image .img-preview .left-img-preview {
    position: absolute;
    top: 55px;
    left: 7%; }
  .edit-cover-image .img-preview .right-img-preview {
    position: absolute;
    top: 55px;
    right: 7%; }

.video-position {
  display: inline-block;
  margin-right: 30px;
  text-transform: uppercase;
  font-weight: 600; }
  .video-position span {
    display: inline-block;
    vertical-align: text-top; }

.edit-gallery-image {
  margin-bottom: 0; }
  .edit-gallery-image p {
    font-size: 12px;
    color: #5f6f81;
    line-height: 2;
    margin-bottom: 12px; }
  .edit-gallery-image .gallery-image {
    padding: 0; }
    .edit-gallery-image .gallery-image > li {
      text-align: center;
      display: inline-block;
      margin-right: 20px;
      vertical-align: top;
      overflow: hidden;
      padding-top: 0;
      padding-bottom: 0;
      margin-bottom: 10px; }
      .edit-gallery-image .gallery-image > li .img-gallery {
        width: 70px;
        height: 70px;
        background: #bdc3c7;
        display: block;
        margin-bottom: 10px;
        position: relative;
        z-index: 20;
        overflow: hidden; }
        .edit-gallery-image .gallery-image > li .img-gallery img {
          width: 100%; }
        .edit-gallery-image .gallery-image > li .img-gallery .delete-img {
          width: 70px;
          height: 70px;
          position: absolute;
          text-align: center;
          top: 0;
          left: 0;
          display: none; }
          .edit-gallery-image .gallery-image > li .img-gallery .delete-img i {
            font-size: 20px;
            line-height: 3.4; }
        .edit-gallery-image .gallery-image > li .img-gallery .delete-img i {
          color: #e74c3c; }
      .edit-gallery-image .gallery-image > li .add-img {
        width: 70px;
        height: 70px;
        position: absolute;
        background: #bdc3c7;
        color: #FFF;
        text-align: center;
        top: 0;
        left: 0; }
        .edit-gallery-image .gallery-image > li .add-img i {
          font-size: 20px;
          line-height: 3.4; }
      .edit-gallery-image .gallery-image > li:hover .img-gallery img {
        opacity: 0.3; }
      .edit-gallery-image .gallery-image > li:hover .delete-img, .edit-gallery-image .gallery-image > li:hover .add-img {
        display: block; }
      .edit-gallery-image .gallery-image > li:hover .add-img {
        background: #FFF;
        color: #bdc3c7; }

.form_modal_style .form-field > .mce-container {
  border: 1px solid rgba(189, 195, 199, 0.4); }

.form_modal_style .form-field .time-picker-body .event-start-date, .form_modal_style .form-field .time-picker-body .event-close-date {
  position: relative; }
  .form_modal_style .form-field .time-picker-body .event-start-date .date-picker, .form_modal_style .form-field .time-picker-body .event-close-date .date-picker {
    padding-right: 37px;
    max-width: 228px; }
  .form_modal_style .form-field .time-picker-body .event-start-date i, .form_modal_style .form-field .time-picker-body .event-close-date i {
    position: absolute;
    right: 12px;
    top: 12px; }

.form_modal_style .form-field .time-picker-body .datepicker {
  top: 37px !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(189, 195, 199, 0.4); }
  .form_modal_style .form-field .time-picker-body .datepicker::before, .form_modal_style .form-field .time-picker-body .datepicker::after {
    display: none; }

#login_register .modal-body {
  padding: 20px 30px; }

.form_modal_style .link_forgot_pass {
  color: #8b97b1;
  font-size: 13px;
  font-style: italic;
  display: inline-block; }

.form_modal_style .link_forgot_pass:hover {
  text-decoration: underline !important; }

.form_modal_style .link_sign_up, .form_modal_style .link_sign_in {
  margin-left: 30px; }

.form_modal_style label.error {
  color: #eb5256;
  margin: 10px 0 0 0; }

#contact_message .modal-body {
  padding: 20px 30px; }
  #contact_message .modal-body .form-field:last-child {
    margin-bottom: 0; }

#reject_post .modal-body {
  padding: 20px 30px; }
  #reject_post .modal-body .form-field:last-child {
    margin-bottom: 0; }

#report .modal-body {
  padding: 20px 30px; }
  #report .modal-body .form-field:last-child {
    margin-bottom: 0; }

/*
	Modal Stripe payment
 */
.modal-stripe .modal-dialog {
  width: auto !important;
  max-width: 548px; }

#stripe_modal .content .controls {
  padding-bottom: 10px; }

#stripe_modal .modal-header .modal-title {
  font-weight: 500;
  font-size: 20px; }

#stripe_modal .modal-header .close {
  background-color: transparent; }

#stripe_modal .modal-body form label {
  color: #5d605f;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600; }

#stripe_modal .modal-body form input {
  width: 100%;
  outline: none;
  height: 45px;
  padding: 0 15px;
  margin-bottom: 30px;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px; }

#stripe_modal .modal-body form button {
  margin-bottom: 1em; }

/*
    Modal Sage payment
 */
.modal-sagepay .modal-header .close {
  background-color: transparent; }

.modal-sagepay .modal-content .form-group {
  padding: 15px 20px 0; }
  .modal-sagepay .modal-content .form-group label.error {
    color: #eb5256;
    margin: 10px 0 0 0; }
  .modal-sagepay .modal-content .form-group label {
    color: #5d605f;
    font-size: 14px;
    margin-bottom: 15px; }
  .modal-sagepay .modal-content .form-group input {
    border: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px; }

.modal-sagepay .modal-content .button {
  padding-bottom: 1.5em; }

/*
    Modal PayU payment
 */
.modal-payu .modal-header .close {
  background-color: transparent;
  position: inherit;
  vertical-align: middle; }

.modal-payu .modal-body {
  padding: 10px 20px; }

.modal-payu form input {
  width: 100%;
  outline: none;
  height: 45px;
  padding: 0 15px;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px; }

.modal-payu form label {
  color: #5d605f;
  font-size: 14px;
  margin-bottom: 15px; }

/*
	Fixbug WP 4.5
 */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal-open-link {
  overflow: hidden; }

.modal-open-link .modal {
  overflow-x: hidden;
  overflow-y: auto; }

/* @media (max-width: 1024px) {
    .edit-gallery-image {
        .gallery-image {
            > li {
                margin-left: 15px;
            }
        }
    }

} */
.nav-tabs > li {
  padding-top: 0;
  padding-bottom: 0; }

.nav-tabs-list, .list-edit-place {
  border: none;
  background: #FFF; }
  .nav-tabs-list > li, .list-edit-place > li {
    display: inline-block;
    margin-right: 40px; }
    .nav-tabs-list > li > a, .list-edit-place > li > a {
      display: block;
      padding: 10px 0;
      background: none;
      border: none;
      font-size: 14px;
      color: #5f6f81; }
      .nav-tabs-list > li > a:hover, .list-edit-place > li > a:hover, .nav-tabs-list > li > a:focus, .list-edit-place > li > a:focus, .nav-tabs-list > li > a:active, .list-edit-place > li > a:active {
        background: none;
        color: #5f6f81;
        border: none;
        border-bottom: 4px solid #1d83d5; }
    .nav-tabs-list > li.active > a, .list-edit-place > li.active > a {
      border: none;
      border-bottom: 4px solid #1d83d5;
      color: #5f6f81; }
      .nav-tabs-list > li.active > a:hover, .list-edit-place > li.active > a:hover, .nav-tabs-list > li.active > a:focus, .list-edit-place > li.active > a:focus, .nav-tabs-list > li.active > a:active, .list-edit-place > li.active > a:active {
        background: none;
        color: #5f6f81;
        border: none;
        border-bottom: 4px solid #1d83d5; }

.list-edit-place {
  border-bottom: 1px solid #e6e9ea;
  padding: 0 16px; }
  .list-edit-place > li {
    padding-top: 0;
    padding-bottom: 0; }

.form_modal_style .tab-content .body-tabs {
  padding: 20px 30px 0; }

.form-modal-style .form-field {
  margin-bottom: 20px; }
  .form-modal-style .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #5f6f81;
    margin-bottom: 5px;
    text-transform: uppercase; }
    .form-modal-style .form-field label .alert-icon {
      margin-left: 2px;
      color: #c0392b; }
  .form-modal-style .form-field input[type="text"], .form-modal-style .form-field input[type="password"] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #5f6f81; }
  .form-modal-style .form-field .link-forgot-pass {
    font-size: 13px;
    font-style: italic;
    color: #78889b;
    line-height: 18px; }
    .form-modal-style .form-field .link-forgot-pass i {
      margin-left: 2px; }
  .form-modal-style .form-field.submit-signin, .form-modal-style .form-field.submit-forgotpass, .form-modal-style .form-field.submit-signup {
    margin-top: 24px;
    margin-bottom: 10px; }
  .form-modal-style .form-field .link-sign-up, .form-modal-style .form-field .link-sign-in {
    margin-left: 30px;
    text-transform: uppercase; }
  .form-modal-style .form-field .chosen-container {
    width: 100% !important; }
  .form-modal-style .form-field.submit-editplace {
    margin-bottom: 0;
    margin-top: 30px; }

.form-modal-style .nav-tabs-list, .form-modal-style .list-edit-place {
  background: #FFF;
  padding: 0 15px;
  border-bottom: 1px solid #e6e9ea; }

.form-modal-style .tab-content {
  padding: 30px; }

.modal-editplace .modal-body {
  padding: 0; }

.wpcf7-form {
  max-width: 460px;
  margin: 0 auto; }
  .wpcf7-form > p {
    color: #5f6f81;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase; }
    .wpcf7-form > p span {
      display: inline-block;
      width: 100%;
      margin-top: 10px; }
    .wpcf7-form > p input[type="text"], .wpcf7-form > p input[type="email"] {
      font-weight: normal; }
    .wpcf7-form > p input[type="submit"] {
      float: right; }
    .wpcf7-form > p textarea {
      border: 1px solid rgba(189, 195, 199, 0.4);
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      resize: none;
      font-weight: 1.6;
      padding: 10px; }
  .wpcf7-form .wpcf7-display-none {
    display: none !important; }

/*!
 * Slider for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative; }

.slider-ranger {
  width: 250px; }

.slider.slider-horizontal {
  width: calc(100% - 20px);
  height: 20px;
  margin-left: 10px;
  margin-right: 10px; }

.slider.slider-horizontal .tooltip.top {
  bottom: 20px; }

.slider.slider-horizontal .slider-track {
  height: 10px;
  width: calc(100% + 18px);
  margin-top: -3px;
  top: 50%;
  left: 2px;
  margin-left: -10px;
  margin-right: -10px; }

.slider.slider-horizontal .slider-selection {
  height: 100%;
  top: 0;
  bottom: 0; }

.slider.slider-horizontal .slider-handle {
  margin-left: -9px;
  margin-top: 2px;
  background: #1d83d5;
  cursor: pointer;
  -webkit-box-shadow: 0 0 20px 0 #b0d6f4;
  box-shadow: 0 0 20px 0 #b0d6f4; }
  .slider.slider-horizontal .slider-handle:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 5px;
    margin-left: 5px;
    background: #FFF;
    border-radius: 50%; }

.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0; }

.slider.slider-vertical {
  height: 210px;
  width: 20px; }

.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0; }

.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0; }

.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px; }

.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0; }

.slider input {
  display: none; }

.slider .tooltip-inner {
  white-space: nowrap; }

.slider-track {
  position: absolute;
  cursor: pointer;
  background-color: #eee; }

#search-location-form .slider-selection {
  position: absolute;
  background-color: #1c84d4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 0px solid transparent; }

.slider-handle.round {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px; }

.slider-handle.triangle {
  background: transparent none; }

.list-places > li {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 30px; }
  .list-places > li .place-wrapper {
    -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .list-places > li .place-wrapper .hidden-img {
      position: relative;
      overflow: hidden;
      height: 270px; }
      .list-places > li .place-wrapper .hidden-img .img-place {
        display: block;
        width: 100%;
        height: 100%; }
        .list-places > li .place-wrapper .hidden-img .img-place img {
          min-width: 100%;
          height: 100%;
          -webkit-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          -moz-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          -o-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          -ms-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1); }
    .list-places > li .place-wrapper .place-detail-wrapper {
      padding: 15px;
      background: #FFF; }
      .list-places > li .place-wrapper .place-detail-wrapper .title-place {
        margin: 0 0 7px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.3em;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .list-places > li .place-wrapper .place-detail-wrapper .title-place a {
          color: #444c63; }
          .list-places > li .place-wrapper .place-detail-wrapper .title-place a:hover {
            color: #1d83d5; }
      .list-places > li .place-wrapper .place-detail-wrapper .address-place {
        font-size: 12px;
        line-height: 1.2em;
        color: #6f7f96;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 0 0 8px;
        padding-left: 1px; }
        .list-places > li .place-wrapper .place-detail-wrapper .address-place i {
          margin-right: 2px; }
      .list-places > li .place-wrapper .place-detail-wrapper .content-place {
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: none;
        line-height: 1.3em;
        color: #5f6f81; }
      .list-places > li .place-wrapper .place-detail-wrapper .rate-it i {
        font-size: 11px; }
      .list-places > li .place-wrapper .place-detail-wrapper .rate-it.rate-cus {
        float: left; }
      .list-places > li .place-wrapper .place-detail-wrapper .view-count {
        float: right; }

.list-places.fullwidth > li .place-wrapper {
  height: 150px; }
  .list-places.fullwidth > li .place-wrapper .hidden-img {
    float: left;
    width: 200px;
    height: 150px; }
    .list-places.fullwidth > li .place-wrapper .hidden-img .img-place {
      overflow: hidden; }
    .list-places.fullwidth > li .place-wrapper .hidden-img .tag-featured {
      height: 150px; }
  .list-places.fullwidth > li .place-wrapper .place-detail-wrapper {
    overflow: hidden;
    height: 150px;
    padding: 25px 20px;
    position: relative; }
    .list-places.fullwidth > li .place-wrapper .place-detail-wrapper .title-place {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 7px; }
    .list-places.fullwidth > li .place-wrapper .place-detail-wrapper .address-place {
      margin: 0 0 14px; }
    .list-places.fullwidth > li .place-wrapper .place-detail-wrapper .content-place {
      display: block;
      margin: 0 0 10px; }
    .list-places.fullwidth > li .place-wrapper .place-detail-wrapper .rate-review {
      float: left; }
    .list-places.fullwidth > li .place-wrapper .place-detail-wrapper .rate-it.rate-cus {
      float: left;
      margin-right: 20px; }
    .list-places.fullwidth > li .place-wrapper .place-detail-wrapper .view-count {
      float: left;
      text-align: right; }

.list-places.vertical > li {
  margin-bottom: 13px; }
  .list-places.vertical > li .place-wrapper, .list-places.vertical > li .nearby {
    position: relative;
    height: 60px; }
    .list-places.vertical > li .place-wrapper .img-place, .list-places.vertical > li .nearby .img-place {
      position: relative;
      overflow: hidden;
      float: left;
      width: 70px;
      height: 60px;
      min-height: 60px;
      max-height: 60px; }
      .list-places.vertical > li .place-wrapper .img-place img, .list-places.vertical > li .nearby .img-place img {
        width: 100%;
        height: 100%; }
      .list-places.vertical > li .place-wrapper .img-place .ribbon, .list-places.vertical > li .nearby .img-place .ribbon {
        position: absolute;
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        padding: 3px 0 3px 6px;
        bottom: 5px;
        z-index: 7;
        line-height: 0.9; }
        .list-places.vertical > li .place-wrapper .img-place .ribbon::after, .list-places.vertical > li .nearby .img-place .ribbon::after {
          content: "";
          position: absolute;
          display: block;
          border: 8px solid #eb5256;
          z-index: -1;
          bottom: 0;
          right: -7px;
          border-left-width: 1.5em;
          border-right-color: transparent; }
        .list-places.vertical > li .place-wrapper .img-place .ribbon .ribbon-content, .list-places.vertical > li .nearby .img-place .ribbon .ribbon-content {
          display: block;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          white-space: nowrap;
          max-width: 60px; }
    .list-places.vertical > li .place-wrapper .tag-featured, .list-places.vertical > li .nearby .tag-featured {
      position: absolute;
      overflow: hidden;
      top: 0px;
      left: 0px;
      width: 25px;
      height: 25px;
      padding-top: 5px;
      padding-left: 5px;
      color: #ffd263;
      background: none; }
      .list-places.vertical > li .place-wrapper .tag-featured i, .list-places.vertical > li .nearby .tag-featured i {
        font-size: 14px;
        margin-right: 5px; }
    .list-places.vertical > li .place-wrapper .place-detail-wrapper, .list-places.vertical > li .nearby .place-detail-wrapper {
      overflow: hidden;
      height: 60px;
      padding: 5px 10px;
      position: relative; }
      .list-places.vertical > li .place-wrapper .place-detail-wrapper .title-place, .list-places.vertical > li .nearby .place-detail-wrapper .title-place {
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 2px; }
      .list-places.vertical > li .place-wrapper .place-detail-wrapper .address-place, .list-places.vertical > li .nearby .place-detail-wrapper .address-place {
        margin: 0 0 2px; }
      .list-places.vertical > li .place-wrapper .place-detail-wrapper .content-place, .list-places.vertical > li .nearby .place-detail-wrapper .content-place {
        display: none;
        margin: 0 0 5px; }
      .list-places.vertical > li .place-wrapper .place-detail-wrapper .rate-it i, .list-places.vertical > li .nearby .place-detail-wrapper .rate-it i {
        font-size: 11px; }

.list-places.fullwidth > li {
  margin-bottom: 13px; }
  .list-places.fullwidth > li .place-wrapper.nearby {
    height: 60px; }
    .list-places.fullwidth > li .place-wrapper.nearby .hidden-img {
      width: 70px;
      height: 60px; }
      .list-places.fullwidth > li .place-wrapper.nearby .hidden-img .edit-place-option {
        display: none; }
      .list-places.fullwidth > li .place-wrapper.nearby .hidden-img .img-place {
        position: relative;
        overflow: hidden;
        float: left;
        width: 70px;
        height: 60px;






        min-height: 60px;
        max-height: 60px; }
        .list-places.fullwidth > li .place-wrapper.nearby .hidden-img .img-place img {
          width: 100%;
          height: 100%; }
        .list-places.fullwidth > li .place-wrapper.nearby .hidden-img .img-place .ribbon {
          position: absolute;
          font-size: 12px;
          font-weight: 600;
          color: #fff;
          text-align: center;
          padding: 3px 0 3px 6px;
          bottom: 5px;
          z-index: 7;
          line-height: 0.9; }
          .list-places.fullwidth > li .place-wrapper.nearby .hidden-img .img-place .ribbon::after {
            content: "";
            position: absolute;
            display: block;
            z-index: -1;
            bottom: 0;
            right: -12px;
            border-left-width: 1.5em;
            border-right-color: transparent; }
          .list-places.fullwidth > li .place-wrapper.nearby .hidden-img .img-place .ribbon .ribbon-content {
            display: block;
            overflow: hidden;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 60px; }
    .list-places.fullwidth > li .place-wrapper.nearby .place-detail-wrapper {
      overflow: hidden;
      height: 60px;
      padding: 5px 10px;
      position: relative; }
      .list-places.fullwidth > li .place-wrapper.nearby .place-detail-wrapper .title-place {
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 2px; }
      .list-places.fullwidth > li .place-wrapper.nearby .place-detail-wrapper .address-place {
        margin: 0 0 2px; }
      .list-places.fullwidth > li .place-wrapper.nearby .place-detail-wrapper .content-place {
        display: none;
        margin: 0 0 5px; }
      .list-places.fullwidth > li .place-wrapper.nearby .place-detail-wrapper .rate-it i {
        font-size: 11px; }

#pending-places .edit-place-option li {
  margin: 0 12px; }

.list-places > li:hover .edit-place-option li {
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1); }

.list-places > li:hover .img-place img {
  opacity: 0.2;
  -ms-transform: scale(1.4, 1.4);
  /* IE 9 */
  -webkit-transform: scale(1.4, 1.4);
  /* Chrome, Safari, Opera */
  transform: scale(1.4, 1.4); }

.list-places > li:hover .tag-featured {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important; }

.infowindow {
  height: 60px; }
  .infowindow .place-wrapper .img-place {
    float: left;
    overflow: hidden;
    width: 70px;
    height: 60px;
    margin-right: 12px; }
    .infowindow .place-wrapper .img-place img {
      width: 100%;
      height: 100%; }
  .infowindow .place-wrapper .place-detail-wrapper {
    padding-right: 20px; }
    .infowindow .place-wrapper .place-detail-wrapper .title-place {
      font-size: 14px;
      font-weight: 400;
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap;
      line-height: 1.3;
      margin: 0 0 2px;
      padding-top: 4px; }
      .infowindow .place-wrapper .place-detail-wrapper .title-place a {
        color: #444c63; }
    .infowindow .place-wrapper .place-detail-wrapper .address-place {
      color: #6f7f96;
      font-size: 12px;
      display: block;
      margin: 0 0 4px;
      padding-left: 1px;
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap; }

.edit-place-option {
  position: absolute;
  top: 45.5%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5; }
  .edit-place-option li {
    display: inline-block;
    margin: 0 20px;
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -webkit-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    -moz-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    -ms-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1); }
    .edit-place-option li a {
      color: #1d83d5; }
      .edit-place-option li a i {
        font-size: 22px; }

.list-place-review > li {
  margin: 0 0 30px;
  padding-top: 0;
  padding-bottom: 0; }
  .list-place-review > li .place-review .place-review-top-wrapper {
    padding: 0 7px; }
    .list-place-review > li .place-review .place-review-top-wrapper .place-review-top {
      position: relative;
      border: 1px solid #e6e9ea;
      border-bottom: none;
      padding: 12px 10px;
      background: #FFF; }
      .list-place-review > li .place-review .place-review-top-wrapper .place-review-top h2 {
        margin: 0 0 4px;
        width: 74%;
        font-size: 16px;
        line-height: 1.3em;
        font-weight: 400;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .list-place-review > li .place-review .place-review-top-wrapper .place-review-top h2 a {
          color: #444c63; }
          .list-place-review > li .place-review .place-review-top-wrapper .place-review-top h2 a:hover {
            color: #1d83d5; }
      .list-place-review > li .place-review .place-review-top-wrapper .place-review-top .address-place {
        font-size: 12px;
        color: #6f7f96;
        line-height: 1.3em;
        padding-left: 1px;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .list-place-review > li .place-review .place-review-top-wrapper .place-review-top .address-place i {
          margin-right: 2px; }
      .list-place-review > li .place-review .place-review-top-wrapper .place-review-top .number-comment {
        position: absolute;
        top: 17px;
        right: 10px;
        color: #444c63;
        font-size: 12px; }
  .list-place-review > li .place-review .place-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #FFF;
    border: 1px solid #e6e9ea;
    height: 170px;
    padding: 7px;
    z-index: 10;
    margin-top: -1px; }
    .list-place-review > li .place-review .place-image-wrapper .hidden-img {
      overflow: hidden;
      height: 100%; }
      .list-place-review > li .place-review .place-image-wrapper .hidden-img img {
        width: 100%; }
  .list-place-review > li .place-review .place-review-bottom-wrapper {
    padding: 0 7px; }
    .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom {
      border: 1px solid #e6e9ea;
      border-top: none;
      padding: 10px;
      background: #f4f5f6; }
      .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom a {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: #1d83d5; }
      .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .quote {
        margin: 10px 0 0;
        line-height: 20px;
        font-style: italic;
        color: #444c63;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .quote img {
          vertical-align: top; }
      .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time {
        text-align: right;
        margin: 14px 0 0;
        display: flex;
        padding: 2px 0; }
        .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span {
          display: inline-block;
          font-size: 12px;
          color: #6f7f96; }
           .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span.date-review{
            max-width: 150px;
            display: inline-block;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
           }
          .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span i {
            margin-right: 2px; }
        .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time .rate-it {
          display: inline-block;
          white-space: nowrap;
          overflow: hidden;
          margin-left: 5px; }

.single-sidebar .list-place-review > li {
  width: 100%; }

.list-place-review.vertical > li {
  margin: 0 0 15px; }
  .list-place-review.vertical > li .place-review .place-image-wrapper {
    position: relative;
    height: auto;
    padding: 0; }
    .list-place-review.vertical > li .place-review .place-image-wrapper .number-comment {
      position: absolute;
      bottom: 3px;
      left: 19px;
      background: #3a4b5c;
      padding: 0 3px 2px 5px;
      font-size: 12px;
      color: #fff;
      line-height: 1; }
    .list-place-review.vertical > li .place-review .place-image-wrapper .img {
      width: 70px;
      height: 60px;
      display: inline-block;
      float: left;
      overflow: hidden;
      margin-right: 10px; }
    .list-place-review.vertical > li .place-review .place-image-wrapper .place-review-top {
      display: block;
      overflow: hidden;
      padding-top: 9px;
      padding-right: 14px; }
      .list-place-review.vertical > li .place-review .place-image-wrapper .place-review-top h2 {
        color: #434b63;
        font-size: 16px;
        line-height: 1.3em;
        margin: 0 0 5px;
        font-weight: 400; }
        .list-place-review.vertical > li .place-review .place-image-wrapper .place-review-top h2 a {
          color: #434b63;
          font-size: 16px;
          display: block;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          white-space: nowrap; }
      .list-place-review.vertical > li .place-review .place-image-wrapper .place-review-top .address-place {
        color: #434b63;
        font-size: 12px;
        padding-left: 1px;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .list-place-review.vertical > li .place-review .place-image-wrapper .place-review-top .address-place i {
          margin-right: 2px; }
  .list-place-review.vertical > li .place-review .place-review-bottom-wrapper {
    position: relative;
    padding: 0; }
    .list-place-review.vertical > li .place-review .place-review-bottom-wrapper .place-review-bottom {
      background: #f4f5f6;
      border: 1px solid #e6e9ea;
      border-top: none;
      padding: 10px;
      display: block; }
      .list-place-review.vertical > li .place-review .place-review-bottom-wrapper .place-review-bottom .name-author {
        color: #1b83d3;
        font-size: 14px;
        font-weight: 700;
        display: block;
        margin-bottom: 5px; }

.list-places .place-wrapper .img-place .ribbon,
.widget-features-wrapper .list-places .place-wrapper .img-place .ribbon {
  background: #eb5256; }

.list-places .place-wrapper .img-place .ribbon::after {
  border: 10px solid #eb5256;
  border-right-color: transparent; }

.widget-features-wrapper .list-places .place-wrapper .img-place .ribbon::after {
  border: 9px solid #eb5256;
  border-right-color: transparent; }

@media (max-width: 1199px) {
  .vc_col-md-9 .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span {
    display: block !important;
    margin-bottom: 4px; }
  .vc_col-md-3 .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span {
    display: block !important;
    margin-bottom: 4px; } }

@media (max-width: 991px) {
  .filter-wrapper .widgettitle {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600; }
  .filter-wrapper .list-option-filter {
    display: block;
    float: none;
    margin-bottom: 15px; }
    .filter-wrapper .list-option-filter > li {
      margin-right: 17px;
      margin-left: 0; }
      .filter-wrapper .list-option-filter > li .chosen-container {
        width: 180px !important; }
      .filter-wrapper .list-option-filter > li.icon-list-view {
        margin-right: 0; }
  .vc_col-md-9 .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span {
    display: inline-block !important;
    margin-bottom: 0; }
  .vc_col-md-3 .list-place-review > li .place-review .place-review-bottom-wrapper .place-review-bottom .time > span {
    display: inline-block !important;
    margin-bottom: 0; } }

.list-categories > li {
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 0; }

.list-categories.fullwidth .categories-wrapper .number-categories {
  display: inline-block; }

.categories-wrapper {
  position: relative;
  display: block;
  padding: 12px 15px;
  padding-bottom: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #e6e9ea;
  box-shadow: 0 0 0 1px #e6e9ea;
  border-right: 5px solid #000; }
  .categories-wrapper .icon-categories {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    z-index: 9;
    vertical-align: super; }
    .categories-wrapper .icon-categories i {
      color: #5f6f81; }
  .categories-wrapper .categories-name {
    font-size: 16px;
    color: #5f6f81;
    position: relative;
    z-index: 9;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 65%;
    line-height: 1.3; }
  .categories-wrapper .number-categories {
    border-radius: 10px;
    background-clip: padding-box;
    background: #5f6f81;
    float: right;
    width: 40px;
    padding: 5px 0;
    margin-top: -2px;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    position: relative;
    z-index: 9;
    text-align: center; }

.categories-wrapper::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.categories-wrapper:hover .icon-categories i {
  color: #FFF; }

.categories-wrapper:hover .categories-name {
  color: #FFF; }

.categories-wrapper:hover .number-categories {
  background: #FFF;
  color: #5f6f81; }

.categories-wrapper:hover::before {
  width: 100%;
  height: 100%; }

@media (min-width: 768px) and (max-width: 1199px) {
  .categories-wrapper {
    padding: 6px 8px; }
    .categories-wrapper .number-categories {
      width: 35px; } }

.blog-wrapper {
  width: 100%;
  min-height: 100px; }
  .blog-wrapper .list-blog {
    padding: 20px;
    background-color: #fff;
    -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px; }
    .blog-wrapper .list-blog > li {
      margin-bottom: 25px;
      padding-top: 0;
      padding-bottom: 0;
      list-style-type: none; }
      .blog-wrapper .list-blog > li .media-body {
        position: relative; }
      .blog-wrapper .list-blog > li .img-blog {
        width: 130px;
        height: 130px;
        display: block;
        overflow: hidden;
        margin-right: 25px;
        background: #ecf0f1;
        padding: 5px; }
        .blog-wrapper .list-blog > li .img-blog img {
          max-width: 100%;
          height: 100%; }
      .blog-wrapper .list-blog > li:last-child {
        margin-bottom: 0; }
      .blog-wrapper .list-blog > li .title-blog {
        color: #2c3e50;
        font-size: 24px;
        font-weight: 600;
        margin-top: 14px;
        display: block;
        vertical-align: middle;
        line-height: 1.1;
        padding-right: 170px; }
      .blog-wrapper .list-blog > li .content-event {
        font-size: 14px;
        color: #6f7f96;
        line-height: 1.5; }
      .blog-wrapper .list-blog > li .time-calendar {
        position: absolute;
        top: 24px;
        right: 0;
        display: block;
        vertical-align: middle;
        font-size: 12px;
        color: #444c63; }
        .blog-wrapper .list-blog > li .time-calendar i {
          display: inline-block;
          margin-right: 10px; }
      .blog-wrapper .list-blog > li .see-more {
        display: block;
        margin-top: 10px;
        font-size: 12px;
        color: #3498db; }

.news-wrapper {
  padding: 10px;
  background-color: #fff;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden; }
  .news-wrapper .list-news-widget > li {
    margin-bottom: 15px;
    min-height: 60px;
    padding-top: 0;
    padding-bottom: 0; }
    .news-wrapper .list-news-widget > li .img-news {
      width: 70px;
      height: 60px;
      display: inline-block;
      float: left;
      margin-right: 10px; }
      .news-wrapper .list-news-widget > li .img-news img {
        width: 100%;
        height: 100%; }
    .news-wrapper .list-news-widget > li .img-news + .content-news {
      padding-left: 80px; }
    .news-wrapper .list-news-widget > li .content-news {
      display: block;
      vertical-align: top; }
      .news-wrapper .list-news-widget > li .content-news h2 {
        line-height: 1;
        margin-top: 0;
        margin-bottom: 10px; }
        .news-wrapper .list-news-widget > li .content-news h2 a {
          color: #1d83d5;
          font-size: 14px;
          font-weight: 600; }
      .news-wrapper .list-news-widget > li .content-news p {
        font-size: 12px;
        color: #6f7f96;
        line-height: 1.2; }

@media (max-width: 991px) {
  .blog-wrapper {
    margin-bottom: 45px; }
    .blog-wrapper .list-blog > li:last-child {
      margin-bottom: 0; }
    .blog-wrapper .list-blog > li .title-blog {
      padding-right: 0;
      margin-top: 0;
      font-size: 20px;
      font-weight: 400; }
    .blog-wrapper .list-blog > li .content-event {
      font-size: 14px;
      color: #6f7f96;
      line-height: 1.5; }
    .blog-wrapper .list-blog > li .time-calendar {
      position: relative;
      top: 0;
      margin: 6px 0; } }

.comments {
  overflow: hidden; }
  .comments .section-detail-wrapper {
    padding: 0 !important; }
    .comments .section-detail-wrapper .review-wrapper .title-comments {
      margin: 20px 0;
      padding: 0 14px;
      font-size: 18px;
      font-weight: 300;
      color: #5d605f;
      text-transform: uppercase; }
    .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li {
      padding-top: 20px; }
      .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li .review-comment-rating {
        padding: 20px 40px;
        color: #6f7d95; }
        .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li .review-comment-rating .review-criteria {
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-justify-content: center;
          -webkit-align-items: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          line-height: 1.7; }
          .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li .review-comment-rating .review-criteria span:first-child {
            min-width: 100px; }
          .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li .review-comment-rating .review-criteria .progress {
            height: 10px;
            min-width: 100px;
            margin: 0 5px;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0; }
            .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li .review-comment-rating .review-criteria .progress .progress-review {
              background-color: #f1c40f; }
      .comments .section-detail-wrapper .review-wrapper .title-comments + .media-list > li .not-padding {
        padding: 0; }

#blog-page .comments .media-list .media .media-body .comment-text {
  padding-left: 0; }

#blog-page .comments .media-list .comment-respond form.comment-form .form-submit {
  margin-left: 10px; }

#blog-page .comments .comment-respond form.comment-form p[class*='comment-form-'] label {
  width: 15%; }

#blog-page .comments .comment-respond form.comment-form .form-submit {
  margin-left: 15%; }

#blog-page li.media .comment-form .form-submit input[type=submit] {
  margin-left: 14% !important; }

#blog-page .comment-form .form-submit input[type=submit] {
  margin-left: 0 !important; }

.media-list {
  margin: 0;
  /* > .media {
        padding-left: 0;
        padding-right: 0;
    } */ }
  .media-list .media {
    display: block;
    padding: 20px 14px 17px;
    margin: 0;
    border-top: 1px solid #ecf0f1; }
    .media-list .media .avatar-comment {
      margin-right: 15px; }
    .media-list .media .media-body .media-heading {
      color: #5f6f81;
      font-size: 14px;
      font-weight: 700;
      margin: 2px 0;
      line-height: 1.5em; }
      .media-list .media .media-body .media-heading > span {
        display: inline-block;
        margin-right: 10px; }
      .media-list .media .media-body .media-heading .rate-it {
        display: inline-block; }
    .media-list .media .media-body .comment-text {
      font-size: 14px;
      color: #444c63;
      line-height: 1.6;
      text-align: justify;
      margin-top: 10px; }
    .media-list .media .media-body .time-review {
      font-size: 12px;
      color: #6f7f96;
      line-height: 1.2; }
      .media-list .media .media-body .time-review i {
        margin-right: 5px; }
    .media-list .media .media-body .comment-reply-link {
      font-size: 12px;
      color: #1d83d5; }
    .media-list .media .comment-respond {
      padding: 22px 0 10px 0; }
      .media-list .media .comment-respond .comment-reply-title {
        font-size: 16px;
        font-weight: 400; }
        .media-list .media .comment-respond .comment-reply-title small {
          font-weight: 700;
          color: #1d83d5;
          margin-left: 15px; }
      .media-list .media .comment-respond .comment-form {
        margin-top: 15px; }
        .media-list .media .comment-respond .comment-form .form-submit {
          margin-top: 0px;
          margin-left: 0; }
          .media-list .media .comment-respond .comment-form .form-submit input[type=submit] {
            padding: 10px 26px;
            text-align: center;
            border: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            background-color: #1d83d5;
            color: #fff;
            font-size: 12px;
            min-width: inherit;
            border-radius: 0;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            margin-left: 15%; }
        .media-list .media .comment-respond .comment-form #comment-captcha {
          float: left;
          width: 100%; }
          .media-list .media .comment-respond .comment-form #comment-captcha .g-recaptcha > div {
            height: 78px;
            margin-bottom: 19px; }
  .media-list .children .media {
    padding-left: 0;
    padding-right: 14px;
    padding-top: 15px; }

.media-list > .media:first-child {
  /* border-top: none; */
  padding-top: 0; }

.media-list > .children {
  padding-left: 89px; }
  .media-list > .children .children {
    padding-left: 75px; }

.comments .comment-respond {
  padding: 22px 14px 32px 14px; }
  .comments .comment-respond .comment-reply-title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #5d605f;
    text-transform: uppercase; }
  .comments .comment-respond .comment-form {
    margin-top: 28px; }
    .comments .comment-respond .comment-form .rate {
      margin: 0 0 24px 0; }
      .comments .comment-respond .comment-form .rate .rating-it {
        display: inline-block;
        margin-left: 10px; }
    .comments .comment-respond .comment-form .form-item {
      font-size: 0; }
      .comments .comment-respond .comment-form .form-item label {
        font-size: 14px;
        font-weight: 400;
        color: #60606e;
        display: inline-block;
        width: 15%;
        text-transform: uppercase;
        float: left; }
        .comments .comment-respond .comment-form .form-item label.label-photo {
          padding-left: 14px; }
      .comments .comment-respond .comment-form .form-item .input {
        font-size: 14px;
        width: 85%;
        display: inline-block;
        vertical-align: top;
        padding-left: 0;
        margin-bottom: 20px; }
      .comments .comment-respond .comment-form .form-item .comment-upload-image .gallery-image {
        margin: 0; }
        .comments .comment-respond .comment-form .form-item .comment-upload-image .gallery-image > li .img-gallery {
          margin: 0;
          border: 1px solid #bdc3c7;
          z-index: 9; }
          .comments .comment-respond .comment-form .form-item .comment-upload-image .gallery-image > li .img-gallery:hover {
            z-index: 999 !important; }
      .comments .comment-respond .comment-form .form-item .gg-captcha {
        margin-left: 15%;
        display: inline-block; }
        .comments .comment-respond .comment-form .form-item .gg-captcha > .g-recaptcha {
          margin-top: 20px; }
        .comments .comment-respond .comment-form .form-item .gg-captcha > .captcha-wrapper > div {
          margin-top: 10px;
          margin-bottom: 9px; }
      .comments .comment-respond .comment-form .form-item .upload-image {
        padding-left: 0;
        width: 85%;
        float: right;
        text-align: left; }
    .comments .comment-respond .comment-form .form-submit {
      margin-left: 10px; }
      .comments .comment-respond .comment-form .form-submit input[type=submit] {
        padding: 10px 26px;
        text-align: center;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #1d83d5;
        color: #fff;
        font-size: 12px;
        min-width: inherit;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0; }
    .comments .comment-respond .comment-form p[class*='comment-form-'] {
      font-size: 0;
      margin: 15px 0; }
      .comments .comment-respond .comment-form p[class*='comment-form-'] label {
        font-size: 14px;
        font-weight: 400;
        color: #60606e;
        display: inline-block;
        width: 15%;
        text-transform: uppercase;
        float: left; }
        .comments .comment-respond .comment-form p[class*='comment-form-'] label .required {
          color: #eb5256; }
      .comments .comment-respond .comment-form p[class*='comment-form-'] input {
        width: 36%; }
    .comments .comment-respond .comment-form textarea {
      padding: 10px;
      border: 1px solid #e5e7e9;
      background-color: #fff;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      vertical-align: top;
      width: 100%;
      line-height: 1.6; }
  .comments .comment-respond .multi-rating-comment-form.comment-form .form-item label {
    width: 22%;
    padding-left: 0; }
  .comments .comment-respond .multi-rating-comment-form.comment-form .form-item .gg-captcha {
    float: left;
    margin-left: 22%; }
  .comments .comment-respond .multi-rating-comment-form.comment-form .form-item .upload-image {
    width: 78%; }

.comments > .comment-reply-title {
  padding: 22px 14px;
  margin: 0;
  font-size: 16px;
  font-weight: 600; }

.media-body-left {
  padding-left: 0; }

#review .comment-form .form-submit {
  margin: 0;
  clear: both; }
  #review .comment-form .form-submit input[type=submit] {
    padding: 10px 26px;
    text-align: center;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #1d83d5;
    color: #fff;
    font-size: 12px;
    min-width: inherit;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    margin: 10px 15% 0 15%; }

#comment-captcha .g-recaptcha {
  margin-left: 15%;
  display: inline-block; }

.list-images {
  display: block;
  padding: 0;
  overflow: hidden;
  padding-top: 22px;
  width: auto;
  margin-bottom: 10px; }
  .list-images > li {
    display: block;
    list-style-type: none;
    padding: 0;
    padding-right: 1px;
    border-top: 1px solid #fff;
    height: auto;
    overflow: hidden; }
    .list-images > li img {
      width: 100%;
      height: 100%; }

.see-more {
  display: block;
  font-size: 12px;
  color: #1d83d5;
  margin-top: 10px;
  cursor: pointer;
  text-align: right; }

.gallery_comment {
  margin-left: 75px; }

.multi-rating-comment-form #comment_gallery_container {
  padding-left: 0; }

@media (max-width: 1199px) {
  /* .media-list > .media > .gallery_comment + .see-more + .criteria-line {
        top: -174px;
    } */
  .comments .comment-respond .comment-form .form-item .comment-upload-image .gallery-image > li .img-gallery + div {
    z-index: 9999; }
  .list-images > li {
    height: 104px; } }

/*  @media (max-width: 1025px) {
    .comments {
        .comment-respond {
            .comment-form {
                p[class*='comment-form-'] {
                    margin: 5% 0 0 15px;
                }
                .form-item {
                    .input {
                        padding-left: 15px;
                        .description-form {
                            float: left;
                            width: 100%;
                        }
                    }
                    .gg-captcha {
                        margin-left: 17%;
                    }
                    #comment-captcha {
                        margin: 5% 0 0 20px;
                        .g-recaptcha {
                            margin-left: 15%;
                        }
                    }
                }
            }
        }
    }
    .media-list {
        .media {
            .comment-respond {
                .comment-form {
                    .form-submit {
                        input[type=submit] {
                            margin-left: 16%;
                        }
                    }
                }
            }
        }
    }
    #review {
        .comment-form {
            .form-submit {
                input[type="submit"] {
                    margin-left: 17%;
                }
            }
        }
    }
} */
@media (max-width: 991px) {
  .media-list .media .comment-respond .comment-form .form-submit input[type=submit] {
    margin-left: 16%; }
  #review .comment-form .form-submit input[type="submit"] {
    margin-left: 17%; }
  .list-images > li {
    height: 108px; } }

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  top: 0;
  left: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  z-index: 1051;
  font-size: 12px; }

.datepicker:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px; }

.datepicker:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 7px; }

.datepicker > div {
  display: none; }

.datepicker table {
  width: 100%;
  margin: 0; }

.datepicker td,
.datepicker th {
  text-align: center;
  width: 29px;
  height: 20px; }

.datepicker td.day:hover {
  background: #eee;
  color: #666;
  cursor: pointer; }

.datepicker td.day.disabled {
  color: #eeeeee; }

.datepicker td.old,
.datepicker td.new {
  color: #999999; }

.datepicker td.active,
.datepicker td.active:hover {
  background: #2980b9;
  color: #fff; }

.datepicker td.active:hover,
.datepicker td.active:hover:hover,
.datepicker td.active:focus,
.datepicker td.active:hover:focus,
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active,
.datepicker td.active.disabled,
.datepicker td.active:hover.disabled,
.datepicker td.active[disabled],
.datepicker td.active:hover[disabled] {
  color: #ffffff;
  background: #2980b9; }

.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active {
  background-color: #003399 \9; }

.datepicker td span {
  display: block;
  width: 47px;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 2px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.datepicker td span:hover {
  background: #eeeeee; }

.datepicker td span.active {
  color: #ffffff;
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0088cc), to(#0044cc));
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0044cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }

.datepicker td span.active:hover,
.datepicker td span.active:focus,
.datepicker td span.active:active,
.datepicker td span.active.active,
.datepicker td span.active.disabled,
.datepicker td span.active[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3; }

.datepicker td span.active:active,
.datepicker td span.active.active {
  background-color: #003399 \9; }

.datepicker td span.old {
  color: #999999; }

.datepicker th.switch {
  width: 145px;
  font-weight: 400;
  color: #666;
  padding-top: 12px;
  padding-bottom: 12px; }

.datepicker th.next,
.datepicker th.prev {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  padding-top: 4px;
  padding-bottom: 12px; }

.datepicker thead tr th.dow {
  font-weight: 600; }

.datepicker thead tr:first-child {
  background: #f7f7f7; }

.datepicker thead tr:first-child th {
  cursor: pointer; }

.datepicker thead tr:last-child th {
  padding-top: 8px;
  padding-bottom: 8px; }

/* .datepicker thead tr:first-child th:hover {
	background: #eeeeee;
} */
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 7px; }

/**
 * time picker
*/
.ui-timepicker-wrapper {
  overflow-y: auto;
  height: 150px;
  width: 17.5em;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  z-index: 10001;
  margin: 0;
  font-size: 14px; }

.ui-timepicker-wrapper.ui-timepicker-with-duration {
  width: 13em; }

.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30, .ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60 {
  width: 11em; }

.ui-timepicker-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.ui-timepicker-duration {
  margin-left: 5px;
  color: #888; }

.ui-timepicker-list:hover .ui-timepicker-duration {
  color: #888; }

.ui-timepicker-list li {
  padding: 5px 0 5px 5px;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  list-style: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.3; }

.ui-timepicker-list:hover .ui-timepicker-selected {
  background: #fff;
  color: #000; }

li.ui-timepicker-selected, .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover {
  background: #1980EC;
  color: #fff; }

li.ui-timepicker-selected .ui-timepicker-duration, .ui-timepicker-list li:hover .ui-timepicker-duration {
  color: #ccc; }

.ui-timepicker-list li.ui-timepicker-disabled, .ui-timepicker-list li.ui-timepicker-disabled:hover, .ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  color: #888;
  cursor: default; }

.ui-timepicker-list li.ui-timepicker-disabled:hover, .ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  background: #f2f2f2; }

.notification {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  opacity: 0.9;
  -moz-opacity: 0.9;
  z-index: 999999; }

.success-bg {
  background-color: #1B83D3; }

.error-bg {
  background-color: #db5f47; }

.having-adminbar {
  top: 28px !important; }

.notification-places {
  background: #F2F2F2;
  width: 100%;
  z-index: 99999; }
  .notification-places .container {
    position: relative; }
    .notification-places .container p {
      text-align: center;
      margin: 0;
      line-height: 60px; }
      .notification-places .container p i {
        margin-right: 10px;
        font-size: 18px;
        color: #ff900e; }
      .notification-places .container p span {
        color: #1d83d5; }
        .notification-places .container p span.btn-pending-places {
          text-decoration: underline;
          cursor: pointer; }
    .notification-places .container .notification-hide {
      position: absolute;
      right: 0;
      top: 20px; }
      .notification-places .container .notification-hide i {
        font-size: 18px;
        color: #5f6f81;
        cursor: pointer; }

/* 
.noti-pending-places-wrap {
	background: #ecf0f1;
	position: fixed;
	width: 100%;
	z-index:9999;
	.noti-pending-places {
		width: 50%;
		height: 610px;
		margin: 0 auto;
		padding: 30px 0;
		.list-pending-places {
			padding: 0;
			margin: 0;
			> li {
				list-style-type: none;
				padding-top: 0;
				padding-bottom: 0;
				&:first-child {
					.pending-place-wrapper {
						margin-top: 0;
					}
				}
				&.loading-active {
					display: none;
					background: #FFF;
					border: 1px solid #e6e9ea;
					text-align: center;
					padding: 20px 0;
					margin-top: 30px;
				}
				.pending-place-wrapper {
					position: relative;
					padding-right:220px;
					background: #FFF;
					border: 1px solid #e6e9ea;
					margin-top: 30px;
					overflow: hidden; 
					.img-place {
						float: left;
						width: 84px;
						height: 84px;
						margin-right: 14px;
						img {
							width: 100%;
							height: 100%;
						}
					}
					.pending-place-detail {
						min-height: 70px; 
						.title-pending-place {
							margin: 12px 0 0 0;
							font-size: 16px;
							font-weight: 600;
							line-height: 1.2;
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
							a {
								color: $color_base_third;
							}
						}
						.address-pending-place {
							color: $color_base_fourth;
							margin: 5px 0 0 0;
							line-height: 1.3;
							i {
								margin-right: 6px;
							}
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
						}
						.desc-pending-place {
							margin: 5px 0 0 0;
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
							line-height: 1.2;
						}

					}
					.action-pending-place {
						position: absolute;
						top: 0;
						right: 0;
						height: 100%;
						.enable-pending-place {
							border-left: 1px solid #e6e9ea;
							border-right: 1px solid #e6e9ea;
							display: inline-block;
							height: 100%;
							padding: 0 20px;
							line-height: 6;
							i {
								font-size: $font_size_large;
								color: #1abc9c;
								cursor: pointer;
								line-height: 84px;
							}
						}
						.disable-pending-place {
							display: inline-block;
							height: 100%;
							padding: 0 22px 0 18px;
							line-height: 6;
							i {
								font-size: $font_size_large;
								color: #eb5256;
								cursor: pointer;
								line-height: 84px;
							}
						}
						.status-pending-place {
							display: inline-block;
							height: 100%;
							padding: 0 20px;
							line-height: 6;
							font-weight: 700;
							color: $color_base_third;
						}
					}
				}
			}
		}
	}
}
.noti-marsk-black {
	position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
//== Responsive
//
@media (max-width: $screen-md-max) { // max-wdith: 1199px
	.noti-pending-places-wrap .noti-pending-places {
		width: 60%;
	}
}
@media (max-width: $screen-sm-max) { // max-width: 991px
	.noti-pending-places-wrap .noti-pending-places {
		width: 72%;
	}
} */
.activation-notification {
  display: block;
  min-height: 60px;
  background-color: #f2f2f2;
  color: #808080;
  text-align: center;
  vertical-align: middle; }
  .activation-notification .activation-notification-content {
    padding: 14px 0; }
    .activation-notification .activation-notification-content p {
      margin-bottom: 5px; }
      .activation-notification .activation-notification-content p i.fa-exclamation-circle {
        margin-right: 12px;
        color: #ff900e; }
      .activation-notification .activation-notification-content p .activation-notification-close i {
        color: #eb5256;
        margin-right: 24px;
        margin-top: 8px; }
    .activation-notification .activation-notification-content a {
      color: #ff900e; }

.google-map-wrapper {
  width: 100%;
  display: block;
  position: relative; }

#map-top-wrapper, #single-place-cover {
  width: 100%;
  min-height: 500px;
  position: relative; }

.widget-wrapper #map-top-wrapper {
  min-height: 300px; }

.map-labels {
  /*z-index: 2000 !important;*/
  font-size: 13px;
  text-align: center;
  width: 20px;
  height: 20px;
  white-space: nowrap;
  background: #FFF;
  line-height: 20px; }

.google-map-wrapper .pop-up-video {
  width: 300px;
  height: 250px;
  background-color: #efefef;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: absolute;
  z-index: 90;
  top: 18%;
  right: 5%; }

.google-map-wrapper .pop-up-video.left {
  left: 5%; }

.google-map-wrapper .pop-up-video .video-wrapper {
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.15);
  position: relative; }

.google-map-wrapper .pop-up-video .title-video {
  color: #636f80;
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  line-height: 1.4; }

.google-map-wrapper .mark-wrapper {
  position: relative;
  display: block; }

.google-map-wrapper .mark-video {
  width: 100%;
  height: 200px;
  z-index: 99;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute; }

.app-vertical-widget-holder {
  width: 30px;
  /*margin-right: 20px;
	margin-bottom: 10px;*/
  left: 29px;
  bottom: 40px !important; }

.app-vertical-widget-holder .app-vertical-item {
  margin-top: 3px; }

.app-vertical-item .widget-button {
  background-color: white;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  display: block;
  width: 29px;
  height: 29px;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  position: relative; }

.widget-button .icon {
  color: #444;
  text-align: center;
  font-size: 15px;
  display: block;
  height: 18px;
  left: 6px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 6px;
  width: 18px; }

.widget-button:hover > .icon {
  color: #049887; }

.wp-editor-wrap {
  width: 100%;
  border: 1px solid #E5E7E9; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignleft, .wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

#edit_place .modal-body .wp-editor-wrap,
#creat_event .modal-body .wp-editor-wrap {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1); }

.widget-wrapper {
  display: block;
  margin-bottom: 50px; }

.widget-wrapper .widget-heading {
  color: #5d5f5e;
  font-size: 18px;
  /*text-transform: uppercase;*/
  margin: 20px 0; }

.widget-wrapper .widget-heading .view-all-link {
  display: inline-block;
  float: right;
  font-size: 12px;
  text-transform: capitalize;
  margin-top: 5px; }

#wp-link .link-search-wrapper span {
  float: none !important; }

#wp-link .link-search-field {
  border: 1px solid #a9a9a9;
  float: none !important;
  width: 100% !important; }

span.screen-reader-text {
  display: none; }

#wp-link #link-options label span, #wp-link #search-panel label span.search-label {
  width: 150px !important; }

.form-group.custom-field {
  position: relative; }

.content-description .ae-field-title {
  color: #737373;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 14px; }

.post-place-warpper .custom-field a.chosen-single,
.custom-field .chosen-container-single a.chosen-single,
.custom-field .chosen-container-active.chosen-with-drop a.chosen-single {
  padding-top: 0; }

.custom-field .chosen-container-active.chosen-with-drop a.chosen-single div {
  top: 0; }

.form-group.custom-field.radio-field .message, .form-group.custom-field.checkbox-field .message {
  margin-top: 10px;
  text-align: right; }

.error .message, .error .fa-exclamation-triangle {
  text-align: right; }

.form-group.checkbox-field.error .fa-exclamation-triangle,
.form-group.radio-field.error .fa-exclamation-triangle,
.error .fa-exclamation-triangle {
  position: absolute;
  right: 10px;
  top: 45%; }

.list-areas {
  padding: 0; }
  .list-areas > li {
    margin-bottom: 30px;
    padding-top: 0;
    padding-bottom: 0;
    list-style-type: none; }

.area-wrapper {
  position: relative;

  width: 100%;
  height: 172px; }
  .area-wrapper img {
    min-height: 100%;
    max-height: 100%;
    min-width: 100%;
    max-width: 100%; }
  .area-wrapper .area-info {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center; }
    .area-wrapper .area-info h2 {
      color: #FFF;
      margin-bottom: 8px; }
    .area-wrapper .area-info span {
      color: #FFF; }

.list-areas.vertical li {
  margin-bottom: 15px; }
  .list-areas.vertical li a {
    position: relative;
    display: block;
    padding: 12px 15px;
    padding-bottom: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 1px #e6e9ea;
    box-shadow: 0 0 0 1px #e6e9ea; }
    .list-areas.vertical li a .area-name {
      font-size: 16px;
      color: #5f6f81;
      position: relative;
      z-index: 9;
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-right: 60px;
      line-height: 1.3; }
    .list-areas.vertical li a .area-number {
      border-radius: 10px;
      background-clip: padding-box;
      background: #5f6f81;
      position: absolute;
      top: 9px;
      right: 15px;
      width: 40px;
      padding: 5px 0;
      vertical-align: middle;
      color: #fff;
      font-size: 12px;
      z-index: 9;
      text-align: center; }

.tag-featured {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  padding-top: 10px;
  padding-left: 10px;
  color: #ffd263;
  white-space: nowrap;
  width: 90%;
  height: 90%;
  font-size: 12px;
  background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 1%, transparent 45%, transparent 78%, transparent 85%, transparent 86%, transparent 87%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(0, 0, 0, 0.25)), color-stop(11%, rgba(0, 0, 0, 0.22)), color-stop(55%, transparent), color-stop(88%, transparent), color-stop(95%, transparent), color-stop(96%, transparent), color-stop(97%, transparent));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 11%, transparent 55%, transparent 88%, transparent 95%, transparent 96%, transparent 97%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 11%, transparent 55%, transparent 88%, transparent 95%, transparent 96%, transparent 97%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 11%, transparent 55%, transparent 88%, transparent 95%, transparent 96%, transparent 97%);
  /* IE10+ */
  background: -webkit-linear-gradient(315deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 11%, transparent 55%, transparent 88%, transparent 95%, transparent 96%, transparent 97%);
  background: -o-linear-gradient(315deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 11%, transparent 55%, transparent 88%, transparent 95%, transparent 96%, transparent 97%);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.22) 11%, transparent 55%, transparent 88%, transparent 95%, transparent 96%, transparent 97%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .tag-featured i {
    font-size: 13px;
    margin-right: 5px; }

.tag-remaining {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  padding-top: 10px;
  padding-right: 10px;
  color: #ffd263;
  white-space: nowrap;
  text-align: right;
  width: 90%;
  height: 90%;
  font-size: 12px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+2,000000+31,000000+97,000000+100&amp;0+48,0.65+100 */
  background: -moz-linear-gradient(45deg, transparent 2%, transparent 31%, transparent 48%, rgba(0, 0, 0, 0.22) 97%, rgba(0, 0, 0, 0.25) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(2%, transparent), color-stop(31%, transparent), color-stop(48%, transparent), color-stop(97%, rgba(0, 0, 0, 0.22)), color-stop(100%, rgba(0, 0, 0, 0.25)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, transparent 2%, transparent 31%, transparent 48%, rgba(0, 0, 0, 0.22) 97%, rgba(0, 0, 0, 0.25) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, transparent 2%, transparent 31%, transparent 48%, rgba(0, 0, 0, 0.22) 97%, rgba(0, 0, 0, 0.25) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, transparent 2%, transparent 31%, transparent 48%, rgba(0, 0, 0, 0.22) 97%, rgba(0, 0, 0, 0.25) 100%);
  /* IE10+ */
  background: linear-gradient(45deg, transparent 2%, transparent 31%, transparent 48%, rgba(0, 0, 0, 0.22) 97%, rgba(0, 0, 0, 0.25) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .tag-remaining i {
    font-size: 13px;
    margin-right: 0px; }

.ribbon {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 3px 5px 3px 10px;
  bottom: 13px;
  z-index: 7;
  line-height: 1.25; }
  .ribbon::after {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
    bottom: 0;
    top: 0;
    right: -15px;
    border-left-width: 1.5em;
    border-right-color: transparent; }
  .ribbon .ribbon-content {
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60px; }

.ribbon-event {
  background: #f1c40f;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 2px 10px;
  z-index: 1;
  line-height: 1.4;
  min-height: 19px;
  display: inline-block;
  margin-left: 10px; }
  .ribbon-event:after {
    content: "";
    border: 10px solid #f1c40f;
    z-index: -1;
    top: 0;
    right: -15px;
    position: absolute;
    border-left-width: 1.5em;
    border-right-color: transparent; }
  .ribbon-event .ribbon-event-content {
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60px; }

.triagle-setting-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer; }
  .triagle-setting-top::after {
    content: "";
    position: absolute;
    display: block;
    overflow: hidden;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #5f6f81 transparent transparent;
    line-height: 0px;
    _border-color: #000000 #5f6f81 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    z-index: 9; }
  .triagle-setting-top:hover {
    opacity: 0.8; }
  .triagle-setting-top i {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    z-index: 98;
    color: #fff; }

.padding-top-bottom-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.limit-display {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.schema-rating-review {
  position: relative;
  z-index: -1000;
  height: 0;
  width: 0;
  color: transparent; }

.schema-rating-review strong {
  color: transparent; }

.display-none {
  display: none; }

.sidebar-main {
  padding-top: 20px; }

@media print {
  body {
    font: 12pt Georgia, "Times New Roman", Times, serif;
    line-height: 1.3; }
  .google-map-wrapper {
    display: none !important; }
  .gn-trigger {
    display: none !important; }
  .list-option-left-wrapper {
    display: none !important; }
  .top-menu-right {
    display: none !important; }
  #option-search-form {
    display: none !important; }
  a:after {
    display: none; }
  #review-list, .review-form {
    display: none !important; }
  .breadcrumb {
    display: none !important; }
  img {
    max-width: 500px; }
  #header-wrapper {
    position: relative !important; }
  #single-place {
    margin-top: 1.5em; }
  #single-place .col-md-3, #single-place .paginations-wrapper {
    display: none; }
  ul.top-menu li {
    border: none; }
  h1 {
    font-size: 24pt; }
  h2 {
    font-size: 14pt;
    margin-top: 25px; }
  aside h2 {
    font-size: 18pt; }
  ul {
    list-style: none; }
  footer {
    display: none; } }

.page-template-page-search-location #page {
  margin: 0; }

.bar-menu {
  cursor: pointer;
  margin: 0 20px;
  display: inline-block; }
  .bar-menu i {
    font-size: 22px; }

#sticky-holder {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  min-height: 60px; }

.loading-blur {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 998; }

.loading-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: url("../img/loading.gif") center center no-repeat; }

.loading-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.5;
  background: #ffffff; }

#header-wrapper {
  position: fixed;
  top: -62px;
  width: 100%;
  min-height: 60px;
  background: #FFF;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 99; }
  #header-wrapper.sticky {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    z-index: 99; }
  #header-wrapper.sticky-scroll {
    position: fixed;
    top: 0;
    z-index: 999; }

body.admin-bar #header-wrapper.sticky-scroll {
  top: 32px !important; }

body.admin-bar #header-wrapper .top-menu {
  position: relative; }

#menu-top {
  position: relative;
  width: 100%;
  min-height: 60px;
  background-color: #fff;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 100; }

.top-menu {
  float: left; }
  .top-menu > li {
    position: relative;
    display: block;
    float: left;
    height: 100%;
    min-height: 60px;
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 0;
    padding-bottom: 0; }
    .top-menu > li:after {
      content: '';
      display: block;
      width: 1px;
      height: 45%;
      background: #eee;
      position: absolute;
      right: -1px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .top-menu > li .menu-btn {
      width: 60px;
      height: 100%;
      text-align: center;
      color: #5f6f81;
      font-size: 24px;
      display: block; }
      .top-menu > li .menu-btn i {
        line-height: 2.5; }
      .top-menu > li .menu-btn:hover {
        background: #1d83d5; }
        .top-menu > li .menu-btn:hover i {
          color: #FFF; }
    .top-menu > li .logo {
      padding: 0 20px;
      text-align: center;
      line-height: 4.07; }
      .top-menu > li .logo img {
        max-height: 55px; }
    .top-menu > li:last-child {
      border-right: none; }
      .top-menu > li:last-child:after {
        display: none; }

.menu-btn.gn-icon-menu.gn-selected {
  background: #1d83d5; }

body.admin-bar .gn-menu-wrapper {
  top: 92px; }

body.admin-bar .noti-marsk-black + #menu-top .gn-menu-wrapper {
  top: 152px; }

.gn-menu-main {
  top: 0;
  left: 0;
  height: 60px;
  font-size: 14px; }
  .gn-menu-main a {
    color: #5f6f81; }

.gn-menu-wrapper {
  position: fixed;
  z-index: 2;
  top: 60px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 60px;
  background: #FFF;
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  transform: translateX(-60px);
  -webkit-transition: -webkit-transform 0.3s, width 0.3s;
  -moz-transition: -moz-transform 0.3s, width 0.3s;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s; }
  .gn-menu-wrapper.gn-open-part {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    border-right: 1px solid #cfd4d9; }
  .gn-menu-wrapper.gn-open-all {
    width: 250px;
    overflow-y: auto;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px); }
    .gn-menu-wrapper.gn-open-all.active {
      width: 500px; }
  .gn-menu-wrapper .gn-scroller {
    background: #FFF;
    position: absolute;
    width: 250px;
    border-right: 1px solid #cfd4d9;
    border-top: 1px solid #cfd4d9; }
  .gn-menu-wrapper.gn-menu-wrapper-hide {
    width: 0; }

#menu-header-menu > li {
  height: 60px; }
  #menu-header-menu > li:last-child {
    border-bottom: none; }
  #menu-header-menu > li:hover {
    background: #5f6f81; }
    #menu-header-menu > li:hover > a {
      color: #FFF; }
    #menu-header-menu > li:hover span.arrow-submenu {
      color: #FFF; }
  #menu-header-menu > li.menu-item-has-children span.arrow-submenu {
    display: inline-block; }
  #menu-header-menu > li span.arrow-submenu {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 14px;
    color: #5f6f81;
    font-size: 14px; }

span.arrow-submenu {
  display: none;
  padding: 7px;
  padding-left: 10px;
  cursor: pointer;
  min-width: 28px; }
  span.arrow-submenu:before {
    content: '\f107';
    font-family: 'FontAwesome'; }
  span.arrow-submenu .caret {
    display: none;
    /* border-top: 5px solid;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent; */ }
  span.arrow-submenu.active {
    /* .caret {
            border-left: 5px solid;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        } */ }
    span.arrow-submenu.active:before {
      content: '\f105'; }

.gn-menu {
  text-align: left;
  font-size: 18px;
  padding: 0; }
  .gn-menu > li {
    padding: 21px 0; }
  .gn-menu li {
    border-bottom: 1px solid #cfd4d9; }
    .gn-menu li::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 5px; }
    .gn-menu li .gn-icon {
      font-size: 14px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .gn-menu li .gn-icon i {
        display: inline-block;
        width: 60px;
        text-align: center;
        margin-right: 2px; }
    .gn-menu li:hover {
      background-color: #1d83d5; }
  .gn-menu .menu-item {
    position: relative;
    display: block;
    border-right: none;
    min-height: inherit;
    vertical-align: inherit; }
    .gn-menu .menu-item:hover {
      background: #1d83d5; }
      .gn-menu .menu-item:hover > a {
        color: #FFF; }
      .gn-menu .menu-item:hover > .gn-submenu {
        opacity: 1;
        display: block; }

.gn-submenu {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 250px;
  width: 250px;
  height: 100%;
  background: #fff;
  border-top: 1px solid #c6d0da;
  display: none;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, width 0.3s;
  -moz-transition: -moz-transform 0.3s, width 0.3s;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
  padding: 0; }
  .gn-submenu > li {
    background: #FFF;
    padding: 17px 0; }
    .gn-submenu > li:hover {
      background: #5f6f81; }
      .gn-submenu > li:hover > a {
        color: #FFF; }
    .gn-submenu > li a {
      color: #5f6f81; }

.menu-item-has-children span.sub-icon:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\f101";
  margin-left: 120px; }

.top-menu-right {
  float: right; }
  .top-menu-right > li {
    position: relative;
    float: left;
    display: inline-block;
    min-height: 60px;
    vertical-align: middle;
    position: relative;
    padding-top: 0;
    padding-bottom: 0; }
    .top-menu-right > li:after {
      content: '';
      display: block;
      width: 1px;
      height: 45%;
      background: #eee;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .top-menu-right > li.top-search:hover, .top-menu-right > li.top-search.active, .top-menu-right > li.top-add-place:hover, .top-menu-right > li.top-add-place.active, .top-menu-right > li.support-phone:hover, .top-menu-right > li.support-phone.active, .top-menu-right > li.support-email:hover, .top-menu-right > li.support-email.active {
      color: #1d83d5; }
    .top-menu-right > li.top-search a, .top-menu-right > li.top-add-place a, .top-menu-right > li.support-phone a, .top-menu-right > li.support-email a {
      line-height: 60px;
      min-width: 60px;
      display: block;
      text-align: center; }
      .top-menu-right > li.top-search a button, .top-menu-right > li.top-add-place a button, .top-menu-right > li.support-phone a button, .top-menu-right > li.support-email a button {
        background-color: #1d83d5;
        -webkit-box-shadow: 0.726px 2.911px 5px 0 rgba(29, 131, 213, 0.3);
        box-shadow: 0.726px 2.911px 5px 0 rgba(29, 131, 213, 0.3);
        border: none;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        margin-left: 9px;
        width: 30px;
        height: 30px;
        padding: 0; }
        .top-menu-right > li.top-search a button i, .top-menu-right > li.top-add-place a button i, .top-menu-right > li.support-phone a button i, .top-menu-right > li.support-email a button i {
          font-size: 14px;
          color: #FFF; }
      .top-menu-right > li.top-search a:hover, .top-menu-right > li.top-add-place a:hover, .top-menu-right > li.support-phone a:hover, .top-menu-right > li.support-email a:hover {
        color: #1d83d5; }
    .top-menu-right > li.top-user {
      min-width: 169px;
      text-align: center;
      border: none;
      padding: 0 20px; }
      .top-menu-right > li.top-user:after {
        left: 0; }
      .top-menu-right > li.top-user > a {
        line-height: 4.2;
        display: inline-block;
        text-decoration: none;
        font-weight: 700; }
        .top-menu-right > li.top-user > a.top-avatar img {
          width: 40px;
          height: 40px;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          border-radius: 50%;
          margin: 0 6px 0 13px; }
        .top-menu-right > li.top-user > a span.caret {
          margin-left: 0; }
      .top-menu-right > li.top-user.open, .top-menu-right > li.top-user:hover {
        background: none; }
        .top-menu-right > li.top-user.open a, .top-menu-right > li.top-user:hover a {
          color: #5f6f81; }
      .top-menu-right > li.top-user .dropdown-menu {
        min-width: 170px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        padding: 0;
        text-align: left;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0; }
        .top-menu-right > li.top-user .dropdown-menu a.hover {
          color: #ffffff; }
    .top-menu-right > li.non-login {
      min-width: 130px;
      text-align: center;
      line-height: 60px;
      display: block;
      font-weight: bold;
      margin: 0 30px 0 25px; }
      .top-menu-right > li.non-login i {
        padding-right: 7px; }
      .top-menu-right > li.non-login span {
        padding: 0 9px; }
      .top-menu-right > li.non-login a {
        color: #3c495a; }
        .top-menu-right > li.non-login a:hover {
          color: #1d83d5; }
    .top-menu-right > li.top-add-place {
      position: relative;
      padding: 0 20px; }
      .top-menu-right > li.top-add-place:after {
        content: '';
        display: block;
        width: 1px;
        height: 45%;
        background: #eee;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    .top-menu-right > li:last-child {
      border-right: none; }
    .top-menu-right > li .dropdown-menu li {
      border-bottom: 1px solid #e5e5e5;
      padding-top: 0;
      padding-bottom: 0; }
      .top-menu-right > li .dropdown-menu li:hover a:hover {
        background-color: #1d83d5;
        color: #FFF; }
      .top-menu-right > li .dropdown-menu li:first-child a:before {
        content: "";
        border-bottom: 10px solid #000;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        position: absolute;
        top: -10px;
        right: 16px;
        z-index: 10; }
      .top-menu-right > li .dropdown-menu li:first-child a:after {
        content: "";
        border-bottom: 10px solid #fff;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        position: absolute;
        top: -10px;
        right: 16px;
        z-index: 10; }
      .top-menu-right > li .dropdown-menu li:first-child a:hover {
        background-color: #1d83d5;
        color: #FFF; }
        .top-menu-right > li .dropdown-menu li:first-child a:hover::after {
          border-bottom-color: #1d83d5; }
      .top-menu-right > li .dropdown-menu li:last-child {
        border-bottom: none; }
        .top-menu-right > li .dropdown-menu li:last-child a {
          border-radius: 0 0 3px 3px; }
        .top-menu-right > li .dropdown-menu li:last-child:hover {
          border-radius: 0 0 3px 3px; }

.top-info > li {
  display: inline-block;
  border: none;
  margin: 0px 0px 0px 20px;
  font-size: 14px;
  line-height: 4.2;
  padding-top: 0;
  padding-bottom: 0; }
  .top-info > li.de-phone-info {
    color: #3c495a; }
  .top-info > li.de-email-info {
    color: #1d83d5; }
  .top-info > li i {
    margin-right: 5px;
    color: #a3b0ba; }

.top-menu-center {
  float: right; }
  .top-menu-center.top-menu-center-resp {
    width: 100%;

    -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .top-menu-center.top-menu-center-resp .menu-header-top-container {
      float: right; }
      .top-menu-center.top-menu-center-resp .menu-header-top-container #menu-header-top {
        padding: 0;
        margin: 0;
        z-index: 99; }

#menu-header-top {
  padding: 0;
  margin: 0;
  z-index: 99; }
  #menu-header-top > li {
    float: left;
    margin: 0 18px;
    padding: 0;
    text-align: center;
    list-style-type: none;
    position: relative;
    white-space: nowrap; }
    #menu-header-top > li.select > a {
      color: #1d83d5; }
      #menu-header-top > li.select > a:after {
        display: block;
        content: '';
        width: 20px;
        height: 1px;
        background-color: #1d83d5;
        position: absolute;
        left: 0;
        bottom: 16px; }
    #menu-header-top > li.select > .arrow-submenu {
      color: #1d83d5; }
    #menu-header-top > li:hover {
      color: #1d83d5; }
      #menu-header-top > li:hover > a {
        color: #1d83d5; }
        #menu-header-top > li:hover > a:after {
          display: block;
          content: '';
          width: 20px;
          height: 1px;
          background-color: #1d83d5;
          position: absolute;
          left: 0;
          bottom: 16px; }
      #menu-header-top > li:hover > .dropdown-menu {
        display: block; }
        #menu-header-top > li:hover > .dropdown-menu li {
          position: relative; }
          #menu-header-top > li:hover > .dropdown-menu li:hover > .dropdown-menu {
            display: block;
            top: 0;
            left: 100%; }
    #menu-header-top > li > a {
      position: relative;
      display: inline-block;
      height: 100%;
      line-height: 4.3;
      text-decoration: none;
      color: #3c495a;
      font-weight: 600; }
      #menu-header-top > li > a .caret {
        margin-top: -1px;
        margin-left: 15px; }
    #menu-header-top > li .dropdown-menu {
      min-width: 246px;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      box-shadow: none;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      padding: 0;
      text-align: left;
      border: 1px solid #e5e5e5;
      margin: 0;
      left: -1px; }
      #menu-header-top > li .dropdown-menu > li {
        border-bottom: 1px solid #e5e5e5; }
        #menu-header-top > li .dropdown-menu > li:last-child {
          border-bottom: none; }
        #menu-header-top > li .dropdown-menu > li a {
          background: none;
          color: #5f6f81;
          padding: 10px 20px;
          white-space: normal; }
          #menu-header-top > li .dropdown-menu > li a:hover {
            background: #5f6f81;
            color: #FFF; }
          #menu-header-top > li .dropdown-menu > li a i[class*="fa-"] {
            margin-right: 15px; }
      #menu-header-top > li .dropdown-menu span.arrow-submenu {
        margin-left: 7px; }

#menu-header-top .menu-item.menu-item-mega {
  position: inherit; }
  #menu-header-top .menu-item.menu-item-mega > .dropdown-menu {
    width: 100%;
    font-size: 0;
    padding: 0 15%; }
    #menu-header-top .menu-item.menu-item-mega > .dropdown-menu > li {
      width: 20%;
      display: inline-block;
      font-size: 14px;
      border: none;
      vertical-align: top;
      position: relative; }
      #menu-header-top .menu-item.menu-item-mega > .dropdown-menu > li > a {
        position: relative; }
        #menu-header-top .menu-item.menu-item-mega > .dropdown-menu > li > a > .arrow-submenu {
          position: absolute;
          top: 8px;
          right: 10px; }
      #menu-header-top .menu-item.menu-item-mega > .dropdown-menu > li:hover > .dropdown-menu {
        border: none; }
        #menu-header-top .menu-item.menu-item-mega > .dropdown-menu > li:hover > .dropdown-menu > li {

          border: none; }
  #menu-header-top .menu-item.menu-item-mega .dropdown-menu li:hover > .dropdown-menu {
    display: block; }

.option-contact-phone, .option-contact-email {
  background: #ecf0f1;
  position: absolute;
  display: none;
  z-index: 9999;
  width: 100%;
  padding: 27px 0; }
  .option-contact-phone p, .option-contact-email p {
    margin: 0;
    text-align: center; }
    .option-contact-phone p .txt-phone, .option-contact-phone p .txt-email, .option-contact-email p .txt-phone, .option-contact-email p .txt-email {
      color: #5e6f7f;
      margin-right: 10px; }
    .option-contact-phone p .val-phone, .option-contact-phone p .val-email, .option-contact-email p .val-phone, .option-contact-email p .val-email {
      color: #1b84d5; }

.add-place-btn {
  color: #3c495a; }
  .add-place-btn:hover {
    color: #1d83d5; }

#menu-header-top > li > .mega-wrapper > .mega-menu {
  position: absolute;
  border: 1px solid #e5e5e5;
  text-align: left;
  padding: 10px 0; }
  #menu-header-top > li > .mega-wrapper > .mega-menu > .mega-list {
    display: inline-block;
    padding: 0 20px; }
    #menu-header-top > li > .mega-wrapper > .mega-menu > .mega-list:first-of-type {
      border-left: none; }
    #menu-header-top > li > .mega-wrapper > .mega-menu > .mega-list .mega-wrapper {
      min-width: 200px;
      position: relative; }
      #menu-header-top > li > .mega-wrapper > .mega-menu > .mega-list .mega-wrapper .mega-menu {
        display: none; }
        #menu-header-top > li > .mega-wrapper > .mega-menu > .mega-list .mega-wrapper .mega-menu .mega-list li {
          width: auto; }
          #menu-header-top > li > .mega-wrapper > .mega-menu > .mega-list .mega-wrapper .mega-menu .mega-list li:last-of-type {
            margin: 0; }

.mega-wrapper {
  position: absolute; }
  .mega-wrapper .mega-menu {
    display: block;
    position: relative;
    width: auto;
    display: none;
    background: #FFF; }
    .mega-wrapper .mega-menu .mega-list {
      text-align: left;
      vertical-align: top; }
      .mega-wrapper .mega-menu .mega-list > li {
        padding: 5px 0;
        position: relative;
        margin: 15px 0; }
        .mega-wrapper .mega-menu .mega-list > li > .mega-wrapper > .mega-menu {
          display: block;
          padding-top: 5px;
          padding-left: 15px; }
        .mega-wrapper .mega-menu .mega-list > li li {
          position: relative; }
        .mega-wrapper .mega-menu .mega-list > li a {
          display: inline-block;
          color: #5f6f81;
          display: block;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          white-space: nowrap;
          line-height: normal;
          padding-right: 22px; }
        .mega-wrapper .mega-menu .mega-list > li .arrow-submenu {
          position: absolute;
          top: 0;
          right: 0;
          color: #5f6f81;
          padding-top: 7px;
          padding-bottom: 7px; }
      .mega-wrapper .mega-menu .mega-list a:hover {
        color: #1d83d5; }

@media (max-width: 1199px) {
  .top-menu > li:after {
    display: none; }
  .top-menu > li.gn-trigger:after {
    display: block; } }

@media (max-width: 782px) {
  body.admin-bar #header-wrapper.sticky-scroll {
    top: 46px !important; } }

@media (max-width: 768px) {
  body.admin-bar .gn-menu-wrapper {
    top: 105px; } }

.filter-wrapper {
  margin: 0 0 22px; }

.list-option-filter {
  display: inline-block;
  float: right;
  vertical-align: middle; }
  .list-option-filter li {
    display: inline-block;
    margin-left: 5px;
    padding-top: 0;
    padding-bottom: 0;
    list-style-type: none; }
    .list-option-filter li.filter-per-page .chosen-container-single .chosen-drop {
      min-width: auto; }
    .list-option-filter li.filter-per-page .chosen-search input {
      display: none; }
    .list-option-filter li span.title {
      font-size: 12px;
      margin-right: 10px;
      display: inline-block; }
    .list-option-filter li .sort-icon {
      color: #bdc3c7;
      margin: 0 3px; }
      .list-option-filter li .sort-icon.active:hover {
        cursor: default; }
      .list-option-filter li .sort-icon.active, .list-option-filter li .sort-icon:hover {
        color: #1d83d5; }
    .list-option-filter li .icon-view {
      display: inline-block;
      margin-left: 10px;
      cursor: pointer; }
      .list-option-filter li .icon-view:first-child {
        margin-left: 0; }
      .list-option-filter li .icon-view i {
        font-size: 20px;
        color: #bdc3c7; }
      .list-option-filter li .icon-view.active:hover {
        cursor: default; }
      .list-option-filter li .icon-view.active i, .list-option-filter li .icon-view:hover i {
        color: #1d83d5; }
    .list-option-filter li .chosen-container-single .chosen-drop {
      min-width: 220px;
      border-top: 1px solid rgba(189, 195, 199, 0.4); }

.list-option-filter .chosen-container {
  width: 130px !important; }
  .list-option-filter .chosen-container .chosen-single {
    height: 32px !important; }
    .list-option-filter .chosen-container .chosen-single span {
      line-height: 30px; }

@media (max-width: 991px) {
  h2.widgettitle, .filter-wrapper .widgettitle {
    text-align: center;
    font-weight: 600; } }

.filter-wrapper .widgettitle, .widgettitle {
  color: #5d5f5e;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0;
  line-height: 1.3; }

.widget > .widgettitle {
  margin: 0 0 22px; }

.vc_col-sm-12 .list-places .hidden-img,
.vc_col-md-12 .list-places .hidden-img {
  height: 270px; }

.vc_col-sm-12 .list-places.fullwidth .hidden-img,
.vc_col-md-12 .list-places.fullwidth .hidden-img {
  width: 200px !important;
  height: 150px !important; }

.vc_col-sm-9 .list-places .hidden-img,
.col-sm-9 .list-places .hidden-img,
.vc_col-md-9 .list-places .hidden-img,
.col-md-9 .list-places .hidden-img {
  height: 172px !important; }

.vc_col-sm-9 .list-places.fullwidth .hidden-img, .col-sm-9 .list-places.fullwidth .hidden-img,
.vc_col-md-9 .list-places.fullwidth .hidden-img, .col-md-9 .list-places.fullwidth .hidden-img {
  width: 200px !important;
  height: 150px !important; }

.vc_col-md-3 .list-place-review .col-md-4.col-sm-6.review-item {
  width: 100% !important; }

@media (max-width: 1199px) {
  .vc_col-md-12 .list-places .hidden-img {
    height: 210px !important; } }

@media (max-width: 991px) {
  .filter-wrapper {
    margin-top: 30px; }
  .vc_col-md-12 .list-places .hidden-img,
  .vc_col-md-9 .list-places .hidden-img {
    height: 270px !important; } }

.features-wrapper {
  margin: 0 0 42px; }
  .features-wrapper.hover-color {
    float: left; }
  .features-wrapper .icon-features {
    float: left;
    margin: 0 30px;
    min-width: 40px; }
    .features-wrapper .icon-features i {
      font-size: 36px;
      color: #1d83d5; }
  .features-wrapper .content-features {
    overflow: hidden;
    vertical-align: top; }
    .features-wrapper .content-features h2 {
      margin: 0 0 10px;
      color: #5f6f81;
      font-size: 18px;
      font-weight: 700; }
    .features-wrapper .content-features p {
      font-size: 14px;
      line-height: 1.45em;
      color: #5f6f81;
      margin: 0; }

.services-wrapper {
  margin-bottom: 30px;
  text-align: center; }
  .services-wrapper .icon-services {
    width: 65px;
    height: 65px;
    display: block;
    margin: 0 auto;
    border: 3px solid transparent;
    background-color: #1d83d5;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
    opacity: 0.1; }
    .services-wrapper .icon-services i {
      color: #fff;
      font-size: 36px;
      line-height: 58px; }
  .services-wrapper .content-services h2 {
    margin-top: 22px;
    margin-bottom: 10px;
    color: #5f6f81;
    font-size: 18px;
    font-weight: 700; }
  .services-wrapper .content-services p {
    color: #5f6f81;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px; }
  .services-wrapper:hover .icon-services {
    opacity: 1;
    border-color: #fff; }

.services-wrapper:hover i {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards; }

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%); }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%); }
  51% {
    opacity: 1; } }

@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(100%); }
  50% {
    opacity: 0;
    -moz-transform: translate(-100%); }
  51% {
    opacity: 1; } }

@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
    transform: translate(100%); }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
    transform: translate(-100%); }
  51% {
    opacity: 1; } }

@media (max-width: 991px) {
  .wpb_row > .wpb_column:last-child > .wpb_wrapper > *:last-child {
    margin: 0 !important; }
  .features-wrapper {
    margin: 0 0 42px !important; }
  .services-wrapper {
    margin-bottom: 30px !important; }
    .services-wrapper .icon-services {
      opacity: 1; } }

.testimonial-wrapper .customNavigation {
  display: block;
  position: relative;
  z-index: 9; }
  .testimonial-wrapper .customNavigation a {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    font-size: 24px;
    color: #6c7a8a;
    top: 23px; }
    .testimonial-wrapper .customNavigation a.prev-testi {
      left: -60px; }
    .testimonial-wrapper .customNavigation a.next-testi {
      right: -60px; }

#testimonial .avatar-info {
  min-height: 70px;
  float: left;
  margin-right: 15px; }
  #testimonial .avatar-info .avatar {
    width: 70px;
    height: 70px;
    display: inline-block;
    float: left; }
    #testimonial .avatar-info .avatar img {
      width: 100%;
      height: auto; }

#testimonial .quote-testi {
  display: block;
  vertical-align: bottom;
  color: #5f6f81;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  padding-left: 85px;
  padding-right: 30px; }
  #testimonial .quote-testi .name {
    color: #5f6f81;
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
    margin: 0;
    display: block;
    margin-bottom: 10px;
    font-style: normal; }
  #testimonial .quote-testi img {
    margin-right: 5px;
    width: auto; }

#testimonial .owl-controls {
  display: none !important; }

@media (max-width: 1199px) {
  .testimonial-wrapper .customNavigation {
    display: none; }
  #testimonial .owl-controls {
    display: block !important;
    margin-top: 16px; }
  .owl-theme .owl-controls .owl-page {
    opacity: 1; }
    .owl-theme .owl-controls .owl-page.active span::after {
      opacity: 1; }
    .owl-theme .owl-controls .owl-page span {
      background: none !important;
      border: 1px solid #d6dadb;
      width: 14px;
      height: 14px;
      position: relative;
      opacity: 1; }
      .owl-theme .owl-controls .owl-page span::after {
        content: "";
        display: block;
        position: absolute;
        top: 3px;
        left: 3px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        background: #1984d6;
        opacity: 0; } }

footer {
  padding: 50px 0;
  background: #34495e;
  color: #353535;
  border-bottom: 1.5px solid #34465f; }
  footer .widget {
    margin-bottom: 30px; }
  footer .filter-wrapper {
    margin: 0; }
  footer .filter-wrapper .widgettitle, footer .widgettitle {
    font-size: 18px;
    line-height: 1.333;
    color: #353535;
    margin: 0 0 20px; }
  footer .textwidget {
    line-height: 1.8; }
  footer ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    footer ul li {
      margin-bottom: 20px;
      padding-top: 0;
      padding-bottom: 0; }
      footer ul li a {
        color: #353535; }
        footer ul li a:hover {
          color: #353535; }

.footer-menu {
  text-align: center; }
  .footer-menu ul {
    padding: 0;
    margin: 0;
    display: inline-block; }
    .footer-menu ul.menu .sub-menu li {
      padding-left: 10px; }
      .footer-menu ul.menu .sub-menu li:last-child {
        padding-right: 0; }
    .footer-menu ul li {
      margin: 0 !important;
      padding: 0 5px; }

.social-list-footer > li {
  display: block;
  margin-bottom: 10px; }
  .social-list-footer > li i {
    width: 25px; }

.copyright-wrapper {
  background: #34495e;
  padding: 20px 0 50px;
  color: #fff; }
  .copyright-wrapper .text-copyright {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    display: inline; }
  .copyright-wrapper .menu li {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    margin-left: 10px; }
    .copyright-wrapper .menu li a {
      color: #FFF; }
  .copyright-wrapper .logo {
    color: #fff;
    font-size: 18px;
    font-weight: 600; }
  .copyright-wrapper .footer-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center; }
  .copyright-wrapper .social-icons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    display: -webkit-inline-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-justify-content: flex-end; }
    .copyright-wrapper .social-icons ul.social-network {
      list-style: none; }
      .copyright-wrapper .social-icons ul.social-network li {
        display: inline; }
      .copyright-wrapper .social-icons ul.social-network a:hover {
        background: #10a2ef; }
        .copyright-wrapper .social-icons ul.social-network a:hover i {
          color: #fff; }
    .copyright-wrapper .social-icons .social-circle li a {
      display: inline-block;
      position: relative;
      margin: 0 auto;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      text-align: center;
      width: 25px;
      height: 25px;
      font-size: 13px; }
    .copyright-wrapper .social-icons .social-circle li i {
      margin: 0;
      text-align: center;
      color: #fff;
      padding: 25%; }

@media (max-width: 1199px) {
  .footer-menu {
    padding: 10px 0; } }

#page {
  margin-bottom: 10px; }

#bar-post-place-wrapper {
  background: #fff;
  min-height: 76px; }
  #bar-post-place-wrapper .top-title-post-place {
    font-size: 84px;
font-family: 'Dongle';
font-weight: 900;
text-transform: uppercase;
color: #ffc800;
text-align: center;
line-height: 1em;
    margin: 0;
    }
  #bar-post-place-wrapper .top-btn-post-place {
    line-height: 76px; }

#wp-admin-bar-vc-inline-admin-bar-link {
  display: none; }

.sidebar-bottom {
  margin-top: 20px; }

.wpb_column > .wpb_wrapper > .widget + .widget {
  margin-top: 35px; }

.vc_separator {
  margin: 25px 0 25px; }

.section-detail-wrapper .wpb_row:first-child .vc_separator {
  margin-top: 0; }

.sidebar-fullwidth-top {
  position: relative;
  z-index: 1; }

@keyframes spinner {
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(-360deg); } }

.spinner {
  min-width: 30px;
  min-height: 30px; }

.spinner:before {
  content: 'Loading…';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -13px;
  margin-left: -13px; }

.spinner:not(:required):before {
  content: '';
  border-radius: 50%;
  border: 1px solid #ccc;
  border-top-color: #03ade0;
  /* border-left-color: #F00; */
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  animation: spinner .6s linear infinite;
  -webkit-animation: spinner .6s linear infinite; }

.load-place {
  width: 46px; }

.load-place-active {
  -webkit-animation: loading 1.5s linear infinite;
  animation: loading 1.5s linear infinite; }

.load-place .loading-inner {
  stroke-dashoffset: 0;
  stroke-dasharray: 380;
  stroke-width: 10;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke: #1abc9c;
  fill: transparent; }

.load-place .loading-inner.loading-inner-active {
  stroke-dasharray: 300;
  -webkit-animation: loading-circle 1.2s linear infinite;
  animation: loading-circle 1.2s linear infinite;
  stroke: #444c63; }

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes loading-circle {
  0% {
    stroke-dashoffset: 0; }
  100% {
    stroke-dashoffset: -600; } }

@keyframes loading-circle {
  0% {
    stroke-dashoffset: 0; }
  100% {
    stroke-dashoffset: -600; } }

.loading-check-active {
  stroke-dasharray: 200;
  stroke-dashoffset: 10;
  stroke: #1abc9c;
  stroke-width: 10;
  -webkit-animation: loadingcheck 1.5s linear;
  animation: loadingcheck 1.5s linear; }

@-webkit-keyframes loadingcheck {
  from {
    stroke-dashoffset: 200; }
  to {
    stroke-dashoffset: 10; } }

@keyframes loadingcheck {
  from {
    stroke-dashoffset: 200; }
  to {
    stroke-dashoffset: 10; } }

/*
    Search place in new Design
 */
.de-search-wrapper {
  position: relative;
  background: url("../img/banner_search.png") no-repeat;
  width: 100%;
  padding-top: 162px;
  padding-bottom: 102px;
  background-size: cover;
  background-position: top center; }
  .de-search-wrapper .de-search-desc {
    padding: 0 20%;
    text-align: center; }
    .de-search-wrapper .de-search-desc h1 {
      margin: 0;
      font-size: 84px;
		font-family:'Dongle';
      font-weight: 900;
      text-transform: uppercase;
      color: #ffc800;
      text-align: center;
      line-height: 1em; }
      .de-search-wrapper .de-search-desc h1 span {
        color: #1d83d5; }
    .de-search-wrapper .de-search-desc h4 {
      margin: 8px 0 0;
      font-size: 16px;
      font-weight: 300;
      color: #FFF;
      text-align: center;
      line-height: 1.4; }
    .de-search-wrapper .de-search-desc i {
      color: #FFF;
      margin-top: 10px; }

.de-search-wrap {
  width: 100%; }

.de-search-form {
  position: relative;
  width: 65%;
  margin: 0 auto;
  margin-top: 30px;
  background: #FFF;
  padding-right: 166px;
  padding-left: 11px;
  font-size: 14px;
  border-radius: 30px; }
  .de-search-form .row {
    margin: 0; }
    .de-search-form .row > div {
      padding: 0; }
  .de-search-form .de-scontrol {
    position: relative;
    height: 60px;
    padding: 20px 0; }
    .de-search-form .de-scontrol input {
      width: 100%;
      height: 20px;
      border: none;
      padding: 0 15px;
      color: #404b50; }
      .de-search-form .de-scontrol input.keyword-search {
        border-right: 1px solid #e4e4e4; }
      .de-search-form .de-scontrol input.address-search {
        padding-right: 40px; }
    .de-search-form .de-scontrol .address-search-icon {
      position: absolute;
      right: 5px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #a3b0ba;
      padding: 8px 10px;
      cursor: pointer; }
    .de-search-form .de-scontrol .chosen-container {
      width: 100% !important; }
  .de-search-form select.de-chosen-single {
    opacity: 0; }
  .de-search-form .chosen-container-single .chosen-single {
    border: none;
    border-left: 1px solid #e4e4e4;
    height: 20px;
    line-height: 20px;
    color: #404b50; }
    .de-search-form .chosen-container-single .chosen-single span {
      font-size: 14px;
      line-height: 20px; }
  .de-search-form .chosen-container-single .chosen-single div {
    width: 23px; }
  .de-search-form .chosen-container-single .chosen-single div b:before {
    color: #a3b0ba; }
  .de-search-form .chosen-container-single .chosen-drop {
    margin: 0; }
  .de-search-form .chosen-container.chosen-with-drop .chosen-drop {
    top: calc(100% + 20px);
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .de-search-form .de-search-btn {
    width: 150px;
    height: 40px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: none;
    background-color: #1d83d7;
    -webkit-box-shadow: 0 3px 15px 0 rgba(46, 121, 188, 0.4);
    box-shadow: 0 3px 15px 0 rgba(46, 121, 188, 0.4);
    outline: none;
    position: absolute;
    top: 10px;
    right: 11px;
    text-transform: uppercase; }
    .de-search-form .de-search-btn:hover {
      background-color: #1da4d5;
      -webkit-box-shadow: 0 1px 30px rgba(29, 131, 215, 0.1);
      box-shadow: 0 1px 30px rgba(29, 131, 215, 0.1); }

.de-collection-wrapper {
  background: #FFF;
  padding-top: 30px; }

.de-collection-wrap > .row {
  margin-left: -25px;
  margin-right: -25px; }
  .de-collection-wrap > .row > div {
    padding-left: 25px;
    padding-right: 25px; }

.de-section-title {
  position: relative;
  margin: 0 0 30px;
  padding-left: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #1c263f;
  line-height: 1em; }
  .de-section-title:before {
    content: '';
    background: #1b78c3;
    display: block;
    width: 5px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .de-section-title:after {
    content: '';
    background: #1a75bf;
    display: block;
    width: 1px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 7px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.de-collection-large {
  margin-bottom: 50px; }
  .de-collection-large > a {
    position: relative;
    display: block;
    width: 100%;
    height: 340px; }
    .de-collection-large > a:before {
      content: '';
      display: block;
      width: calc(100% - 50px);
      height: calc(100% - 50px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .de-collection-large > a:hover {
      background: #1d83d5; }
      .de-collection-large > a:hover > span, .de-collection-large > a:hover img {
        opacity: 0.25; }
    .de-collection-large > a > span {
      background: #cacaca;
      display: block;
      width: 100%;
      height: 100%;
      border: 1px solid #b6b6b6; }
    .de-collection-large > a img {
      width: 100%;
      height: 100%; }

.de-collection-small-wrap > .row {
  margin-left: -25px;
  margin-right: -25px; }
  .de-collection-small-wrap > .row > div {
    padding-left: 25px;
    padding-right: 25px; }

.de-collection-small {
  margin-bottom: 50px; }
  .de-collection-small > a {
    position: relative;
    display: block;
    width: 100%;
    height: 145px; }
    .de-collection-small > a:before {
      content: '';
      display: block;
      width: calc(100% - 26px);
      height: calc(100% - 26px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .de-collection-small > a:hover {
      background: #1d83d5; }
      .de-collection-small > a:hover > span, .de-collection-small > a:hover img {
        opacity: 0.25; }
    .de-collection-small > a > span {
      background: #cacaca;
      display: block;
      width: 100%;
      height: 100%;
      border: 1px solid #b6b6b6; }
    .de-collection-small > a img {
      width: 100%;
      height: 100%; }

.collection-info {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 30px;
  color: #FFF;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .collection-info h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600; }
  .collection-info span {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #FFF; }

.de-popular-wrapper {
  background: #FFF;
  padding-top: 0px;
  padding-bottom: 0px; }

.de-popular-wrap > .row {
  margin-left: -25px;
  margin-right: -25px; }
  .de-popular-wrap > .row > div {
    padding-left: 25px;
    padding-right: 25px; }

.de-popular-place {
  margin-bottom: 50px;
  width: 100%;
  height: 250px;
  border: 1px solid #ebebeb;
  -webkit-box-shadow: 0 3px 40px 0 rgba(46, 121, 188, 0.1);
  box-shadow: 0 3px 40px 0 rgba(46, 121, 188, 0.1);
  border: 1px solid rgba(83, 166, 233, 0.15); }
  .de-popular-place:after {
    content: '';
    display: table;
    clear: both; }
  .de-popular-place:hover {
    -webkit-box-shadow: 0 3px 40px 0 rgba(83, 166, 233, 0.3);
    box-shadow: 0 3px 40px 0 rgba(83, 166, 233, 0.3);
    border: 1px solid rgba(83, 166, 233, 0.15); }
  .de-popular-place .popular-img {
    position: relative;
    width: 46%;
    height: 100%;
    float: left;
    overflow: hidden; }
    .de-popular-place .popular-img img {
      min-height: 100%;
      min-width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .de-popular-place .popular-img + .popular-info {
      float: right;
      width: 54%; }
  .de-popular-place .popular-info {
    position: relative;
    width: 100%;
    padding: 24px 18px 15px; }
  .de-popular-place .popular-rating-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1d83d5;
    font-size: 14px;
    color: #FFF;
    text-align: center;
    line-height: 38px;
    position: absolute;
    top: 24px;
    right: 18px; }
    .de-popular-place .popular-rating-number + .popular-title {
      padding-right: 60px; }
  .de-popular-place .popular-title {
    min-height: 60px; }
    .de-popular-place .popular-title h2 {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap;
      line-height: 1.2em; }
      .de-popular-place .popular-title h2:hover {
        color: #1d83d5; }
      .de-popular-place .popular-title h2 a {
        color: #1c263f; }
        .de-popular-place .popular-title h2 a:hover {
          color: #1d83d5; }
    .de-popular-place .popular-title .rate-it {
      margin-top: 9px;
      height: 14px; }
  .de-popular-place .popular-address {
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; }
    .de-popular-place .popular-address p {
      margin: 0 0 10px;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap;
      line-height: 1.2em;
      font-size: 14px;
      color: #1c263f; }
      .de-popular-place .popular-address p:last-child {
        margin: 0; }
      .de-popular-place .popular-address p i {
        color: #a3b0ba;
        min-width: 16px;
        margin-right: 7px;
        text-align: center; }

  .de-popular-place .popular-author {
    position: relative;
    height: 30px;
    line-height: 28px;
    margin-top: 16px;
    padding-left: 40px;
    padding-right: 60px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #1d83d5; }
    .de-popular-place .popular-author img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .de-popular-place .popular-author span {
      display: inline-block;
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #a3b0ba; }
      .de-popular-place .popular-author span i {
        margin-right: 5px; }

.de-why-work-wrapper {
  background: url("../img/banner_whywork.jpg") no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
  padding: 90px 0; }
  .de-why-work-wrapper > .container > h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 400;
	  font-family: 'Dongle';
    line-height: 1em;
    color: #FFF; }
    .de-why-work-wrapper > .container > h2 span {
      color: #1d83d5; }

.de-why-work-wrap {
  margin-top: 60px; }

.de-why-work .why-work-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden; }
  .de-why-work .why-work-icon:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff !important;
    border-radius: 50%;
    opacity: 0.8 !important; }
  .de-why-work .why-work-icon:after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-color: #fff !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.5; }
  .de-why-work .why-work-icon img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10; }

.de-why-work > h2 {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  line-height: 1.2em; }

.de-why-work > p {
  margin: 16px 0 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.6em; }

.de-review-category-wrapper {
  padding-bottom: 0px; }
  .de-review-category-wrapper > .container > .row {
    margin-left: -25px;
    margin-right: -25px; }
    .de-review-category-wrapper > .container > .row > div {
      padding-left: 25px;
      padding-right: 25px; }

.de-review-wrapper {
  margin-top: 30px; }

.de-review-wrap {
  min-height: 320px; }
  .de-review-wrap .carousel-inner {
    padding-bottom: 40px; }
  .de-review-wrap .carousel-indicators {
    bottom: 0;
    margin-bottom: 0; }
    .de-review-wrap .carousel-indicators > li {
      margin: 0;
      border-radius: 0;
      background: #e4e9ee;
      border: none; }
      .de-review-wrap .carousel-indicators > li + li {
        margin-left: 5px; }
      .de-review-wrap .carousel-indicators > li.active {
        background-color: #a3b0ba;
        width: 10px;
        height: 10px; }

.de-review-item {
  background: #FFF;
  width: 100%;
  height: 130px;
  -webkit-box-shadow: 0 0 18px 2px rgba(86, 167, 232, 0.1);
  box-shadow: 0 0 18px 2px rgba(86, 167, 232, 0.1); }
  .de-review-item:after {
    content: '';
    display: table;
    clear: both; }
  .de-review-item + .de-review-item {
    margin-top: 30px; }

.review-item-img {
  position: relative;
  width: 160px;
  height: 130px;
  float: left;
  overflow: hidden; }
  .review-item-img img {

    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.review-item-info {
  float: right;
  width: calc(100% - 160px);
  padding: 16px 20px; }
  .review-item-info > h2 {
    margin: 0 0 16px;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2em;
    border-bottom: 1px solid #eee; }
    .review-item-info > h2 a {
      color: #1c263f; }

.review-item-cmt {
  margin: 0 0 16px;
  padding: 0 20px;
  font-size: 14px;
  color: #1c263f;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; }
  .review-item-cmt i {
    color: #a3b0ba;
    margin-right: 7px; }

.review-item-author {
  position: relative;
  padding-right: 120px; }
  .review-item-author p {
    position: relative;
    margin: 0;
    padding-left: 18px;
    font-weight: 600;
    color: #1d83d5;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2em; }
    .review-item-author p:before {
      content: '';
      display: block;
      width: 10px;
      height: 2px;
      border-bottom: 1px solid #1d83d5;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .review-item-author p a {
      color: #1d83d5; }
  .review-item-author .rate-it {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.de-category-wrapper {
  margin-top: 30px; }

.de-category-item {
  display: block;
  position: relative;
  background: #FFF;
  margin-bottom: 30px;
  padding-left: 16px;
  width: 100%;
  height: 50px;
  padding: 15px 14px;
  padding-right: 60px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  line-height: 20px;
  -webkit-box-shadow: 0 0 18px 2px rgba(86, 167, 232, 0.1);
  box-shadow: 0 0 18px 2px rgba(86, 167, 232, 0.1);
  color: #1d83d5; }
  .de-category-item:hover {
    background: #ffc800;
    color: #FFF; }
    .de-category-item:hover span.de-quantity-places {
      color: #FFF; }
  .de-category-item span i {
    display: inline-block;
    position: relative;
    min-width: 20px;
    min-height: 20px;
    vertical-align: middle;
    margin-right: 8px; }
    .de-category-item span i:before {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -55%);
      -ms-transform: translate(-50%, -55%);
      transform: translate(-50%, -55%); }
  .de-category-item span.de-quantity-places {
    display: inline-block;
    width: auto;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-style: italic; }

.section-review-categories .section-review {
  padding-left: 0; }

.section-review-categories .section-categories {
  padding-right: 0; }

.section-review-categories .carousel-indicators {
  position: initial;
  margin: 15px auto; }
  .section-review-categories .carousel-indicators li {
    background-color: #e4e9ee;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none; }
    .section-review-categories .carousel-indicators li.active {
      background-color: #a3b0ba; }

.section-review-categories .section-review-content {
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-box-shadow: 0 3px 20px 0 rgba(46, 121, 188, 0.1);
  box-shadow: 0 3px 20px 0 rgba(46, 121, 188, 0.1); }
  .section-review-categories .section-review-content:not(:last-child) {
    margin-bottom: 30px; }
  .section-review-categories .section-review-content .review-image {
    width: 160px; }
    .section-review-categories .section-review-content .review-image img {
      width: 125px;
      height: 125px; }
  .section-review-categories .section-review-content .review-info {
    margin: 0 15px 0 24px;
    width: 100%; }
    .section-review-categories .section-review-content .review-info .place-brand .brand-title h4 a {
      font-weight: bold;
      line-height: 1.2;
      color: #1c263f; }
    .section-review-categories .section-review-content .review-info .place-quote {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      display: -webkit-inline-flex;
      width: 100%;
      padding-left: 20px; }
      .section-review-categories .section-review-content .review-info .place-quote span {
        font-style: italic;
        -webkit-flex-basis: 90%;
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        padding-left: 10px; }
    .section-review-categories .section-review-content .review-info .place-info {
      margin-top: 20px; }
      .section-review-categories .section-review-content .review-info .place-info .star i {
        color: #f1c40f; }
      .section-review-categories .section-review-content .review-info .place-info .user-reviewed {
        color: #1d83d5; }
        .section-review-categories .section-review-content .review-info .place-info .user-reviewed h5 {
          display: inline;
          padding: 5px; }
        .section-review-categories .section-review-content .review-info .place-info .user-reviewed span {
          text-decoration: line-through;
          color: #1d83d5;
          font-weight: 400; }
    .section-review-categories .section-review-content .review-info hr {
      margin: 15px 0; }

.section-review-categories .section-categories .section-list-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }
  .section-review-categories .section-categories .section-list-categories div {
    background-color: #FFF;
    margin-right: 15px; }
    .section-review-categories .section-categories .section-list-categories div:nth-child(3n) {
      margin-right: 0; }
  .section-review-categories .section-categories .section-list-categories .list-cat-home {
    color: #0078a0;
    min-width: 180px;
    padding: 20px 0 20px 15px;
    margin-bottom: 20px;
    font-weight: 600;
    -webkit-box-shadow: 0 3px 20px 0 rgba(46, 121, 188, 0.1);
    box-shadow: 0 3px 20px 0 rgba(46, 121, 188, 0.1); }
    .section-review-categories .section-categories .section-list-categories .list-cat-home:hover {
      background-color: #0078a0; }
      .section-review-categories .section-categories .section-list-categories .list-cat-home:hover a {
        color: #FFF !important; }
  .section-review-categories .section-categories .section-list-categories i {
    padding-right: 10px; }

.de-how-work-wrapper {
  background: #FFF;
  padding: 30px 0;
  text-align: center; }
  .de-how-work-wrapper > .container > h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 400;
    line-height: 1em;font-family: 'Dongle';
    color: #1c263f; }
    .de-how-work-wrapper > .container > h2 span {
      color: #1d83d5; }

.de-how-work-wrap {
  margin-top: 60px; }

.de-how-work .how-work-icon {
  position: relative;
  display: inline-block;
  width: 96px;
  height: 96px; }
  .de-how-work .how-work-icon img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.de-how-work h2 {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #1c263f;
  line-height: 1.2em; }

.de-how-work p {
  margin: 16px 0 0;
  font-size: 14px;
  color: #8594a0;
  line-height: 1.6em; }

.de-get-started-wrapper {
  padding-top: 100px;
  padding-bottom: 94px;
  background-image: url("../img/banner-sign-up.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  margin-bottom: -40px; }

.de-get-started-wrap {
  padding: 0; }

  .de-get-started-wrap h2 {
    margin: 16px 0 0 0;
    font-size: 50px;
    font-weight: 400;
	  line-height: 1;
	  font-family:'Dongle';
    color: #1c263f; }
  .de-get-started-wrap p {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: 400;
    color: #353535;
    line-height: 1.6em; text-align: justify;}
.de-get-started-wrapper-go h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 400;
	  font-family:'Dongle';
    color: #ffc800;line-height:1; }
.de-get-started-wrapper-go p {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: 400;
    color: #ffc800;
    line-height: 1.6em; }
.de-started-btn {
  display: inline-block;
  background: #fff;
  width: auto;
  height: 50px;
  padding: 0 60px;
  margin-top: 40px;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 15px 0 rgba(46, 121, 188, 0.4);
  box-shadow: 0 3px 15px 0 rgba(46, 121, 188, 0.4);
  line-height: 48px;
  color: #ffc800;
  text-transform: uppercase; }
  .de-started-btn:hover {
    background-color: #ffc800;
    -webkit-box-shadow: 0 1px 30px rgba(29, 131, 215, 0.1);
    box-shadow: 0 1px 30px rgba(29, 131, 215, 0.1);
    color: #FFF; }

@media (max-width: 1199px) {
  .de-search-wrapper .de-search-desc {
    padding: 0 8%; }
  .de-search-form {
    width: 92%; }
  .de-collection-wrapper {
    padding-top: 50px; }
  .de-collection-wrap > .row {
    margin-left: -15px;
    margin-right: -15px; }
    .de-collection-wrap > .row > div {
      padding-left: 15px;
      padding-right: 15px; }
  .de-collection-small-wrap > .row {
    margin-left: -15px;
    margin-right: -15px; }
    .de-collection-small-wrap > .row > div {
      padding-left: 15px;
      padding-right: 15px; }
  .de-collection-small {
    margin-bottom: 30px; }
    .de-collection-small > a {
      height: 155px; } }

@media (max-width: 991px) {
  .widgettitle {
    width: 100%;
    text-align: center;
    font-weight: 600; }
  .single-sidebar .paginations-wrapper .load-more-post {
    width: auto; }
  .de-search-form {
    padding: 0;
    background: none;
    border-radius: 0; }
    .de-search-form .de-scontrol {
      padding: 13px 20px;
      height: 46px;
      background: #FFF;
      border-radius: 30px;
      margin-bottom: 15px; }
      .de-search-form .de-scontrol input.keyword-search {
        border: none;
        padding-left: 5px;
        padding-right: 30px;
        line-height: 20px; }
      .de-search-form .de-scontrol input.address-search {
        padding-left: 5px;
        padding-right: 30px;
        line-height: 20px; }
      .de-search-form .de-scontrol .address-search-icon {
        right: 16px; }
    .de-search-form .de-search-btn {
      position: inherit;
      top: inherit;
      right: inherit;
      width: 100%;
      height: 46px; }
    .de-search-form .chosen-container-single .chosen-single {
      border: none; }
    .de-search-form .chosen-container.chosen-with-drop .chosen-drop {
      top: calc(100% + 13px); }
    .de-search-form .chosen-container-single .chosen-single {
      padding-left: 5px; }
    .de-search-form .chosen-container-single .chosen-single div {
      width: 14px; }
  .de-section-title {
    margin: 0 0 20px; }
  .de-collection-large {
    margin-bottom: 30px; }
  .de-popular-wrapper {
    padding-top: 20px;
    padding-bottom: 20px; }
  .de-popular-wrap > .row {
    margin-left: -15px;
    margin-right: -15px; }
    .de-popular-wrap > .row > div {
      padding-left: 15px;
      padding-right: 15px; }
  .de-why-work-wrapper {
    padding: 50px 0; }
  .de-why-work-wrap {
    margin-top: 40px; }
  .de-review-category-wrapper {
    padding-bottom: 50px; }
    .de-review-category-wrapper > .container > .row {
      margin-left: -15px;
      margin-right: -15px; }
      .de-review-category-wrapper > .container > .row > div {
        padding-left: 15px;
        padding-right: 15px; }
  .de-review-wrapper {
    margin-top: 50px; }
  .de-category-wrapper {
    margin-top: 50px; }
  .de-category-item {
    margin-bottom: 15px; }
  .de-how-work-wrapper {
    padding-top: 50px;
    padding-bottom: 20px; }
  .de-how-work-wrap {
    margin-top: 40px; }
  .de-how-work {
    margin-bottom: 30px; }
  .de-get-started-wrapper {
    padding: 50px 0; }
  .de-get-started-wrap {
    padding: 0; } }

#page_signup_form {
  display: none; }

.login-wrapper .section-detail-wrapper {
  padding: 10px 20px;
  border-bottom: 1px solid #ecf0f1;
  overflow: hidden; }

.page_link_forgot_pass {
  color: #8B97B1;
  font-size: 13px;
  font-style: italic;
  display: inline-block;
  position: absolute; }

.form_modal_style .page_link_sign_up, .form_modal_style .page_link_sign_in {
  margin-left: 30px; }

ul.list-social-login {
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin-top: 1px; }
  ul.list-social-login > li {
    display: inline-block;
    margin-left: 5px; }
    ul.list-social-login > li .sc-icon {
      font-size: 30px; }
    ul.list-social-login > li .color-facebook {
      color: #3b5998; }
    ul.list-social-login > li .color-google {
      color: #dd4b39; }
    ul.list-social-login > li .color-twitter {
      color: #00aced; }
    ul.list-social-login > li .social-text {
      display: none; }

.social-auth {
  width: 600px;
  margin: 0 auto;
  text-align: left;
  max-width: 100%; }

.publish_place_wrapper > .filter-wrapper {
  margin-top: 20px; }

.col-left-profile .left-profile {
  border-left: 1px solid #e6e9ea;
  border-right: 1px solid #e6e9ea; }
  .col-left-profile .left-profile .user-info .content-info {
    background: #FFF;
    padding: 28px;
    overflow: hidden; }
    .col-left-profile .left-profile .user-info .content-info .avatar {
      position: relative;
      width: 58px;
      height: 58px;
      cursor: pointer;
      float: left; }
      .col-left-profile .left-profile .user-info .content-info .avatar img {
        width: 100%; }
      .col-left-profile .left-profile .user-info .content-info .avatar > a {
        display: none;
        background: #110E0E;
        opacity: 0.9;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center; }
        .col-left-profile .left-profile .user-info .content-info .avatar > a span {
          display: block; }
        .col-left-profile .left-profile .user-info .content-info .avatar > a i {
          font-size: 20px;
          margin-top: 20px;
          color: #FFF; }
      .col-left-profile .left-profile .user-info .content-info .avatar:hover > a {
        display: block; }
    .col-left-profile .left-profile .user-info .content-info .username {
      text-align: left;
      margin-left: 78px; }
      .col-left-profile .left-profile .user-info .content-info .username h4 {
        text-transform: uppercase;
        color: #2c3e50;
        font-weight: 600;
        margin: 7px 0;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .col-left-profile .left-profile .user-info .content-info .username h5 {
        color: #6f7f96;
        margin: 6px 0;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.2; }
    .col-left-profile .left-profile .user-info .content-info .detail-info {
      padding-top: 31px;
      padding-bottom: 16px;
      clear: both; }
      .col-left-profile .left-profile .user-info .content-info .detail-info > p {
        margin-bottom: 20px;
        color: #6f7f96;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.2; }
        .col-left-profile .left-profile .user-info .content-info .detail-info > p i {
          min-width: 20px;
          margin-right: 6px; }
        .col-left-profile .left-profile .user-info .content-info .detail-info > p a {
          color: #6f7f96; }
  .col-left-profile .left-profile .pakage-info {
    background: #FFF;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e9ea; }
    .col-left-profile .left-profile .pakage-info .content-package {
      background: #FFF;
      padding: 32px 28px 0px 28px; }
      .col-left-profile .left-profile .pakage-info .content-package h3 {
        position: relative;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        padding-right: 46px;
        color: #2c3e50;
        text-transform: uppercase;
        margin-bottom: 18px; }
        .col-left-profile .left-profile .pakage-info .content-package h3 span {
          position: absolute;
          right: 0;
          top: 0px; }
      .col-left-profile .left-profile .pakage-info .content-package > p {
        font-size: 14px;
        line-height: 30px;
        color: #6f7f96;
        line-height: 1.2; }
        .col-left-profile .left-profile .pakage-info .content-package > p:last-child {
          margin: 0; }
        .col-left-profile .left-profile .pakage-info .content-package > p span {
          display: inline-block; }
          .col-left-profile .left-profile .pakage-info .content-package > p span.text {
            min-width: 63%; }
          .col-left-profile .left-profile .pakage-info .content-package > p span.number {
            color: #1d83d5; }
        .col-left-profile .left-profile .pakage-info .content-package > p i {
          min-width: 20px; }
  .col-left-profile .left-profile .bar-info {
    border-top: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    position: relative;
    background: #fafafa;
    padding: 16px 28px; }
    .col-left-profile .left-profile .bar-info h3 {
      font-size: 14px;
      font-weight: 600;
      margin: 0;
      text-transform: uppercase;
      color: #5f6f81;
      line-height: 16px; }
    .col-left-profile .left-profile .bar-info span {
      display: block;
      position: absolute;
      top: 14px;
      right: 21px;
      cursor: pointer; }
      .col-left-profile .left-profile .bar-info span i {
        font-size: 16px;
        color: #5f6f81; }

.post-place-profile-btn {
  display: inline-block;
  width: 100%;
  background: #1d83d5;
  font-size: 14px;
  color: #FFF;
  padding: 12px 0;
  border-radius: 24px;
  text-align: center;
  -webkit-box-shadow: 0 6px 14px rgba(29, 131, 213, 0.25);
  box-shadow: 0 6px 14px rgba(29, 131, 213, 0.25);
  text-transform: uppercase; }
  .post-place-profile-btn i {
    margin-right: 2px; }

@media (max-width: 768px) {
  .post-place-profile-btn {
    width: 50%; }
  .post-place-profile {
    text-align: center; } }

.col-right-profile .right-profile .tabs-rigth-profile {
  padding: 0 13px; }
  .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs {
    border: none; }
    .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li {
      border-top: 1px solid #e6e9ea;
      border-right: 1px solid #e6e9ea;
      width: 20%; }
      .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li:first-child {
        border-left: 1px solid #e6e9ea; }
      .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a {
        position: relative;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        padding: 0;
        border: none;
        padding: 16px 0;
        margin: 0;
        background: #f4f5f6;
        text-align: center;
        color: #5f6f81;
        text-transform: uppercase;
        border-radius: 0;
        -web-border-radius: 0;
        -moz-border-radius: 0;
        outline: 0; }
        .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a::before {
          content: "";
          background: #1d83d5;
          display: block;
          width: 0;
          height: 3px;
          position: absolute;
          right: 50%;
          bottom: 0;
          transition: all 1s ease;
          -webkit-transition: all 1s ease;
          -o-transition: all 1s ease;
          -moz-transition: all 1s ease; }
        .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a::after {
          content: "";
          background: #1d83d5;
          display: block;
          width: 0;
          height: 3px;
          position: absolute;
          left: 50%;
          bottom: 0;
          -webkit-transition: all 1s ease;
          transition: all 1s ease;
          -o-transition: all 1s ease;
          -moz-transition: all 1s ease; }
        .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a:hover::before, .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a:hover::after {
          width: 50%; }
        .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a i {
          margin-right: 8px; }
        .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li a > span.number {
          margin-left: 6px; }
      .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li:hover a {
        background: #FFF;
        color: #1d83d5; }
      .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li.active a {
        background: #FFF;
        color: #1d83d5; }
        .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li.active a::before, .col-right-profile .right-profile .tabs-rigth-profile .list-info-user-tabs li.active a::after {
          width: 50%; }

.col-right-profile .right-profile .content-tabs-right-profile {
  border: 1px solid #e6e9ea;
  background: #FFF;
  padding-bottom: 50px; }
  .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs {
    position: relative;
    margin: 34px 25px 0 25px;
    border: none;
    float: right; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li {
      border: none;
      margin-right: 5px;
      display: inline-block; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.active a {
        background: #1d83d5;
        color: #FFF; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.place-search {
        margin: 0; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.place-search .box-search {
          position: relative;
          width: 182px;
          height: 32px; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.place-search .box-search input {
            border: 1px solid #cfd4d9;
            width: 100%;
            height: 100%;
            padding: 4px 6px 4px 32px;
            outline: none; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.place-search .box-search .btn-search-place {
            position: absolute;
            left: 11px;
            top: 6px; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.place-search .box-search .btn-search-place i {
              color: #1d83d5; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li a {
        border: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        color: #6f7f96;
        font-size: 12px;
        font-weight: 600; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li a:hover {


          background: #1d83d5;
          color: #FFF; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li a > span {
          margin-left: 6px; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li a.chosen-single:hover {
          background: none;
          color: #6f7f96; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs li.select-place:hover {
        background: none; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs .chosen-container {
      width: 180px !important; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs .chosen-container .chosen-single {
        border: 1px solid #d5d9d8;
        height: 32px; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs .chosen-container .chosen-single span {
          line-height: 30px; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs .chosen-container.chosen-with-drop .chosen-single {
        border: 1px solid #d5d9d8; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs .chosen-container .chosen-search {
        display: none; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-place .list-place-tabs .chosen-container .chosen-drop .chosen-results li {
        margin: 0;
        padding: 8px; }
  .col-right-profile .right-profile .content-tabs-right-profile .content-place .content-place-tabs {
    overflow: hidden;
    padding-left: 25px;
    padding-right: 25px;
    clear: both; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-place .content-place-tabs #place-rejected .list-place-publishing li .wrap-place-publishing {
      padding-left: 0;
      padding-right: 0; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-place .content-place-tabs .paginations-wrapper {
      margin-top: 30px; }
  .col-right-profile .right-profile .content-tabs-right-profile .content-events {
    overflow: hidden;
    padding-left: 25px;
    padding-right: 25px; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing {
      margin-left: 0;
      margin-right: 0; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li {
        padding: 0;
        border: 1px solid #e2e5e6;
        overflow: hidden; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-place-publishing {
          padding-left: 0;
          padding-right: 0;
          border: none;
          padding-right: 20px;
          padding-bottom: 0; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-place-publishing .block-place-publishing {
            border-right: 1px solid #e2e5e6;
            padding-bottom: 8px; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-place-publishing .block-place-publishing .place-publishing-img {
              display: block;
              height: 113px;
              overflow: hidden; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event {
          padding-left: 10px; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event h4 {
            text-transform: uppercase;
            margin-top: 27px; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event h4 span {
              font-size: 12px;
              font-weight: 700;
              padding: 2px 14px 3px 14px;
              text-transform: capitalize; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event h4 a {
              color: #1d83d5; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .event-config:hover {
            cursor: pointer; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .event-config:hover > i {
              color: #1d83d5; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .event-config.open > i {
            color: #1d83d5; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .config {
            position: absolute;
            top: 8px;
            right: 8px;
            color: #5f6f81;
            cursor: pointer; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .config a {
              font-size: 13px;
              padding: 0 14px 0 5px; }
              .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .config a:hover {
                background: none;
                color: #1d83d5; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .desc {
            color: #444c63;
            line-height: 22px; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-events .list-place-publishing > li .wrap-content-event .note-event {
            color: #1d83d5;
            padding: 10px 0; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-events .paginations-wrapper {
      margin-top: 30px; }
  .col-right-profile .right-profile .content-tabs-right-profile .content-reviews {
    padding-left: 25px;
    padding-right: 25px; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing {
      margin-top: 4px; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li {
        padding-left: 12px;
        padding-right: 12px; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing {
          padding: 0; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews {
            background: #f4f5f6;
            border-top: 1px solid #e6e9ea;
            padding: 10px;
            margin-top: 10px;
            overflow: hidden; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews p {
              margin: 0; }
              .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews p.username {
                text-transform: uppercase;
                font-weight: 600;
                display: block;
                overflow: hidden;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                white-space: nowrap; }
                .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews p.username a {
                  color: #1d83d5; }
              .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews p.text {

                color: #5f6f81;
                min-height: 42px;
                max-height: 42px;
                overflow: hidden;
                margin-top: 8px;
                line-height: 20px;
                font-style: italic; }
                .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews p.text img {
                  vertical-align: top;
                  margin-right: 4px; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews .time {
              font-size: 12px;
              margin-top: 2px;
              max-width: 80px;
              white-space: nowrap;
              overflow: hidden;
              -o-text-overflow: ellipsis;
              text-overflow: ellipsis; }
              .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews .time i {
                margin-right: 4px; }
            .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews .rate-it {
              margin-left: 0;
              margin-right: 0;
              margin: 0;
              display: inline-block; }
              .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .list-place-publishing li .wrap-place-publishing .reviews .rate-it i {
                margin-left: -2px; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-reviews .paginations-wrapper {
      margin-top: 30px; }
  .col-right-profile .right-profile .content-tabs-right-profile .content-togo {
    padding-left: 25px;
    padding-right: 25px; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-togo .list-place-publishing {
      margin-top: 4px; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-togo .list-place-publishing li {
        padding-left: 12px;
        padding-right: 12px; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-togo .list-place-publishing li .wrap-place-publishing {
          padding: 0; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-togo .list-place-publishing li .wrap-place-publishing .rate-it {
            margin-bottom: 8px; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-togo .paginations-wrapper {
      margin-top: 30px; }
  .col-right-profile .right-profile .content-tabs-right-profile .content-picture {
    overflow: hidden; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-picture .list-picture {
      list-style-type: none;
      padding-left: 13px;
      padding-right: 13px;
      margin-top: 9px;
      margin-bottom: 0;
      overflow: hidden; }
      .col-right-profile .right-profile .content-tabs-right-profile .content-picture .list-picture li {
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 25px;
        padding-top: 0;
        padding-bottom: 0; }
        .col-right-profile .right-profile .content-tabs-right-profile .content-picture .list-picture li .hidden-img {
          width: auto;
          height: 182px;
          overflow: hidden;
          display: block; }
          .col-right-profile .right-profile .content-tabs-right-profile .content-picture .list-picture li .hidden-img img {
            min-width: 100%;
            height: 100%; }
    .col-right-profile .right-profile .content-tabs-right-profile .content-picture .paginations-wrapper {
      margin-top: 30px; }

.left-pad-right {
  padding-right: 22px; }

.right-pad-left {
  padding-left: 8px; }

.menu-edit-event {
  position: absolute;
  left: inherit;
  right: -8px;
  top: 26px;
  border: 1px solid #e2e5e6;
  border-right: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  padding: 0;
  z-index: 0; }
  .menu-edit-event::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e2e5e6;
    position: absolute;
    right: 7px;
    top: -8px; }
  .menu-edit-event::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFF;
    position: absolute;
    right: 7px;
    top: -6px; }
  .menu-edit-event li {
    color: #5f6f81;
    line-height: 20px;
    padding: 8px 14px;
    min-width: 165px;
    border-bottom: 1px solid #e2e5e6; }
    .menu-edit-event li i {
      margin-right: 10px; }
    .menu-edit-event li:hover {
      color: #1d83d5; }
    .menu-edit-event li:last-child {
      border-bottom: none; }

.wrap-place-reason {
  padding-left: 30px; }
  .wrap-place-reason .place-publishing-title {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
    margin-top: -5px; }
    .wrap-place-reason .place-publishing-title a {
      color: #444c63;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 22px; }
  .wrap-place-reason .place-publishing-map {
    display: block;
    margin-top: 6px; }
  .wrap-place-reason .rate-it {
    margin-top: 6px; }
  .wrap-place-reason h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1d83d5;
    text-transform: uppercase;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 13px; }
  .wrap-place-reason .reason {
    margin-bottom: 20px; }
    .wrap-place-reason .reason .desc {
      color: #444c63;
      line-height: 18px; }
  .wrap-place-reason .reason-fix ol {
    padding-left: 20px; }
    .wrap-place-reason .reason-fix ol li {
      color: #444c63;
      line-height: 20px;
      margin-bottom: 3px; }

.notfound-result {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600; }

#tab-place .list-place-publishing > li {
  margin-left: -15px;
  margin-right: -15px; }

.list-place-publishing {
  list-style-type: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 4px; }
  .list-place-publishing#tab-place-publishing > li {
    margin-top: 0; }
  .list-place-publishing > li {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 30px; }
    .list-place-publishing > li.place-item.out.in {
      margin-top: 0; }
    .list-place-publishing > li > .col-lg-3.col-md-4.col-sm-4 {
      margin-top: 30px; }
    .list-place-publishing > li > div.col-md-12 {
      margin-top: 30px;
      overflow: hidden; }
    .list-place-publishing > li .wrap-place-publishing {
      position: relative;
      border: 1px solid #e2e5e6;
      padding-bottom: 8px; }
      .list-place-publishing > li .wrap-place-publishing.reject {
        padding: 0;
        border: none; }
        .list-place-publishing > li .wrap-place-publishing.reject .box-edit-place {
          top: 44%; }
      .list-place-publishing > li .wrap-place-publishing .place-publishing-img {
        display: block;
        overflow: hidden;
        height: 156px;
        position: relative; }
        .list-place-publishing > li .wrap-place-publishing .place-publishing-img img {
          min-width: 100%;
          height: 100%;
          opacity: 1;
          -webkit-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          -moz-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          -o-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          -ms-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
          transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1); }
      .list-place-publishing > li .wrap-place-publishing .place-publishing-title {

        margin: 0;
        font-size: 16px;
        font-weight: 400;
        margin-top: 12px;
        line-height: 20px;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 10px 10px 0px; }
        .list-place-publishing > li .wrap-place-publishing .place-publishing-title a {
          font-size: 16px;
          color: #444c63; }
      .list-place-publishing > li .wrap-place-publishing .place-publishing-map {
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 0 10px;
        color: #6f7f96;
        margin-top: 6px;
        font-size: 12px; }
        .list-place-publishing > li .wrap-place-publishing .place-publishing-map i {
          margin-right: 2px; }
      .list-place-publishing > li .wrap-place-publishing .tag-featured, .list-place-publishing > li .wrap-place-publishing .tag-remaining {
        height: 60%; }
      .list-place-publishing > li .wrap-place-publishing .rate-it {
        margin: 8px 10px 0; }
    .list-place-publishing > li:hover .box-edit-place li {
      -ms-transform: scale(1, 1);
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1); }
    .list-place-publishing > li:hover .place-publishing-img img {
      background: #FFF;
      opacity: 0.3;
      -ms-transform: scale(1.4, 1.4);
      /* IE 9 */
      -webkit-transform: scale(1.4, 1.4);
      /* Chrome, Safari, Opera */
      transform: scale(1.4, 1.4); }
    .list-place-publishing > li:hover .tag-featured {
      width: 0 !important;
      height: 0 !important;
      padding: 0 !important; }
    .list-place-publishing > li:hover .tag-remaining {
      width: 0 !important;
      height: 0 !important;
      padding: 0 !important; }

.ribbon-event-discount {
  background: #eb5256;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 0 10px;
  z-index: 1;
  line-height: 1.3;
  min-height: 19px;
  display: inline-block;
  margin-left: 10px;
  top: -2px; }

.ribbon-event-discount:after {
  content: "";
  border: 10px solid #eb5256;
  z-index: -1;
  top: 0; }

.ribbon-event-discount:after {
  right: -15px;
  position: absolute;
  border-left-width: 1.5em;
  border-right-color: transparent; }

.box-edit-place {
  width: 100%;
  position: absolute;
  left: 0;
  top: 30%;
  padding: 0;
  list-style-type: none;
  z-index: 100;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center; }
  .box-edit-place.overdue {
    padding-left: 15px;
    padding-right: 15px; }
  .box-edit-place li {
    text-align: center;
    display: inline-block;
    margin: 0 10px;
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -webkit-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    -moz-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    -ms-transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1);
    transition: all 0.5s cubic-bezier(0, 0.83, 0.17, 1); }
    .box-edit-place li i {
      font-size: 22px;
      color: #1d83d5;
      cursor: pointer; }

.wrapper_profile {
  margin-top: 23px; }

.profile-wrapper {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 20px 35px;
  margin-top: 25px;
  position: relative;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
  .profile-wrapper .btn-contact-author {
    position: absolute;
    right: 70px;
    top: 78px; }
  .profile-wrapper #user_avatar_container .img-author {
    width: 135px;
    height: 135px;
    display: block;
    position: relative;
    float: left;
    vertical-align: middle;
    margin-right: 30px; }
    .profile-wrapper #user_avatar_container .img-author img {
      min-width: 100%;
      height: auto; }
    .profile-wrapper #user_avatar_container .img-author .new-look {
      position: absolute;
      background: #72808f;
      opacity: 0.7;
      padding: 5px 15px;
      color: #fff;
      top: 50%;
      margin-top: -10px;
      left: 50%;
      margin-left: -58px;
      display: none; }
      .profile-wrapper #user_avatar_container .img-author .new-look i {
        display: inline-block;
        margin-right: 10px; }
    .profile-wrapper #user_avatar_container .img-author:hover .new-look {
      display: block; }
  .profile-wrapper .info-author-wrapper {
    overflow: hidden; }
    .profile-wrapper .info-author-wrapper .name-author {
      color: #2c3e50;
      font-size: 24px;
      font-weight: 600;
      margin: 10px 0 18px; }
    .profile-wrapper .info-author-wrapper .info-author-left {
      width: 320px;
      display: inline-block;
      padding: 0;
      list-style: none; }
      .profile-wrapper .info-author-wrapper .info-author-left li {
        color: #6f7f96;
        line-height: 1.85;
        padding-top: 0;
        padding-bottom: 0; }
        .profile-wrapper .info-author-wrapper .info-author-left li a {
          color: #6f7f96; }
        .profile-wrapper .info-author-wrapper .info-author-left li i {
          display: inline-block;
          margin-right: 10px; }

.tab-info-wrapper .list-info-user-tab {
  margin: 1px auto 40px;
  margin-left: 15px;
  margin-right: 15px;
  display: block;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #f3f5f5;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  border-bottom: none; }
  .tab-info-wrapper .list-info-user-tab > li {
    text-align: center;
    border-right: 1px solid #cfd4d9;
    /* width: 25%; */
    padding-left: 0;
    padding-right: 0; }
    .tab-info-wrapper .list-info-user-tab > li a {
      margin-right: 0;
      text-transform: uppercase;
      font-weight: 600;
      padding: 14px 0;
      background: none;
      border: none;
      font-size: 14px;
      color: #5f6f81; }
      .tab-info-wrapper .list-info-user-tab > li a::before {
        content: "";
        background: #1d83d5;
        display: block;
        width: 0;
        height: 3px;
        position: absolute;
        right: 50%;
        bottom: 0;
        transition: all 0.8s ease;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        -moz-transition: all 0.8s ease; }
      .tab-info-wrapper .list-info-user-tab > li a::after {
        content: "";
        background: #1d83d5;
        display: block;
        width: 0;
        height: 3px;
        position: absolute;
        left: 50%;
        bottom: 0;
        transition: all 0.8s ease;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        -moz-transition: all 0.8s ease; }
      .tab-info-wrapper .list-info-user-tab > li a:hover {
        background: none;
        border: none;
        color: #1d83d5; }
        .tab-info-wrapper .list-info-user-tab > li a:hover::before, .tab-info-wrapper .list-info-user-tab > li a:hover::after {
          width: 50%; }
      .tab-info-wrapper .list-info-user-tab > li a i {
        display: inline-block;
        margin-right: 15px; }
    .tab-info-wrapper .list-info-user-tab > li:last-child {
      border-right: none; }
    .tab-info-wrapper .list-info-user-tab > li.active a {
      color: #1d83d5; }
      .tab-info-wrapper .list-info-user-tab > li.active a::before, .tab-info-wrapper .list-info-user-tab > li.active a::after {
        width: 50%; }

.event-active-wrapper .tab-style-event {
  padding: 30px 50px;
  margin-bottom: 35px;
  position: relative;

  background-color: #fff;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
  .event-active-wrapper .tab-style-event .img-event {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 20px; }
    .event-active-wrapper .tab-style-event .img-event img {
      max-width: 100%; }
  .event-active-wrapper .tab-style-event .title-event {
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    padding-right: 100px;
    position: relative; }
    .event-active-wrapper .tab-style-event .title-event > a {
      color: #5f6f81;
      text-transform: uppercase; }
    .event-active-wrapper .tab-style-event .title-event .edit-event-option {
      position: absolute;
      top: 5px;
      right: 0; }
  .event-active-wrapper .tab-style-event .content-event {
    padding-right: 90px; }
    .event-active-wrapper .tab-style-event .content-event p {
      font-size: 14px;
      line-height: 1.75; }
  .event-active-wrapper .tab-style-event time {
    font-size: 12px;
    color: #1d83d5; }

.notfound-title {
  margin: 18px 0;
  font-weight: 300; }

.notfound-title {
  font-size: 22px; }

.notfound {
  background-color: #FFF;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 30px 50px;
  max-width: 1140px;
  margin: 0 auto;
  list-style: none; }
  .notfound.full-width {
    padding-left: 15px;
    padding-right: 15px; }

@media (max-width: 991px) {
  .profile-wrapper .info-author-wrapper .info-author-left {
    margin: 0; }
  .left-pad-right, .right-pad-left {
    padding-left: 15px;
    padding-right: 15px; } }

#single-place {
  position: relative; }

.single-sidebar .list-places li.col-md-3.col-xs-6 {
  width: 100%; }

.single-sidebar .nearby-block > .row > .widgettitle {
  padding-left: 15px;
  padding-right: 15px; }

.single-sidebar .widgettitle {
  margin: 0 0 22px; }

.single-sidebar .paginations-wrapper {
  margin-left: 15px;
  margin-right: 15px; }
  .single-sidebar .paginations-wrapper .load-more-post {
    width: 100%; }

.single-place-wrapper {
  margin-top: -47px;
  margin-bottom: 40px; }

.view-direction-btn {
  clear: both;
  text-align: center;
  font-size: 0;
  margin-top: 10px; }

.view-direction-btn a {
  display: inline-block;
  padding: 6px 60px;
  line-height: 1.3;
  background: #bdc3c7;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  border: none;
  width: 100%; }

.list-option-left-wrapper {
  width: 45px;
  float: left;
  margin-left: -15px;
  display: inline-block;
  margin-top: 60px; }
  .list-option-left-wrapper .list-option-left {
    z-index: 9; }
    .list-option-left-wrapper .list-option-left > li {
      margin-bottom: 6px;
      padding-top: 0;
      padding-bottom: 0; }
      .list-option-left-wrapper .list-option-left > li.share-social {
        position: relative; }
      .list-option-left-wrapper .list-option-left > li a {
        width: 45px;
        height: 45px;
        display: block;
        text-align: center;
        background: #1d83d5; }
        .list-option-left-wrapper .list-option-left > li a i {
          color: #fff;
          font-size: 14px;
          line-height: 3; }
        .list-option-left-wrapper .list-option-left > li a.loved i {
          color: green; }

.list-share-social {
  position: absolute;
  display: none;
  top: 0;
  left: 47px;
  z-index: 10;
  /*TRANSISTIONS*/
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .list-share-social.active {
    left: 47px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .list-share-social li {
    display: inline-block;
    margin-right: 2px; }

.detail-place-right-wrapper {
  width: 95%;
  min-height: 500px;
  background-color: #fff;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  float: right; }
  .detail-place-right-wrapper .section-detail-wrapper {
    padding: 9px 14px;
    border-bottom: 1px solid #ecf0f1; }
    .detail-place-right-wrapper .section-detail-wrapper .breadcrumb {
      float: left;
      max-width: 86%; }
    .detail-place-right-wrapper .section-detail-wrapper .claim-place, .detail-place-right-wrapper .section-detail-wrapper .no-claim {
      float: right; }
    .detail-place-right-wrapper .section-detail-wrapper .dropdown {
      float: right; }
      .detail-place-right-wrapper .section-detail-wrapper .dropdown .btn {
        padding: 4px 12px;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        background: #1c84d4;
        color: #fff;
        border: none; }
    .detail-place-right-wrapper .section-detail-wrapper .content-description > ul, .detail-place-right-wrapper .section-detail-wrapper .content-event > ul {
      margin-left: 18px !important; }
    .detail-place-right-wrapper .section-detail-wrapper .content-description ul, .detail-place-right-wrapper .section-detail-wrapper .content-event ul {
      margin: 8px 0; }
      .detail-place-right-wrapper .section-detail-wrapper .content-description ul > li, .detail-place-right-wrapper .section-detail-wrapper .content-event ul > li {
        list-style-type: disc; }
    .detail-place-right-wrapper .section-detail-wrapper .content-description ol, .detail-place-right-wrapper .section-detail-wrapper .content-event ol {
      margin: 8px 0;
      padding-left: 17px; }
      .detail-place-right-wrapper .section-detail-wrapper .content-description ol > li, .detail-place-right-wrapper .section-detail-wrapper .content-event ol > li {
        list-style-type: decimal; }
        .detail-place-right-wrapper .section-detail-wrapper .content-description ol > li ul, .detail-place-right-wrapper .section-detail-wrapper .content-event ol > li ul {
          padding-left: 24px; }

.info-address-place-wrapper {
  width: 41%;
  min-height: 200px;
  float: left;
  padding-right: 13px; }
  .info-address-place-wrapper .img-small-place img {
    width: 100%;
    height: auto; }

.review-place-info {
  text-align: center;
  margin: 25px 0 30px; }
  .review-place-info p {
    color: #6f7e95;
    line-height: 1.2; }
    .review-place-info p span {
      color: #f1c40f; }
  .review-place-info span.rating-number {
    font-size: 48px;
    color: #f1c40f;
    line-height: 1.2;
    text-align: center; }

.description-place-wrapper {
  width: 59%;
  min-height: 200px;
  float: left;
  display: inline-block;
  vertical-align: middle;
  padding-left: 13px; }
  .description-place-wrapper .place-title .title-place {
    color: #444c63;
    font-size: 24px;
    margin: 0;
    margin-bottom: 12px; }
  .description-place-wrapper .place-title .rate-wrapper {
    margin-bottom: 20px;
    padding-top: 5px; }
    .description-place-wrapper .place-title .rate-wrapper .rate-it {
      display: inline-block;
      font-size: 18px; }
  .description-place-wrapper .list-gallery > li {
    margin: 0px 24px 20px 0;
    display: inline-block;
    vertical-align: middle; }
    .description-place-wrapper .list-gallery > li:nth-child(1) {
      margin-right: 22px; }
    .description-place-wrapper .list-gallery > li a {
      width: 70px;
      height: 70px;
      display: block;
      overflow: hidden;

      outline: none; }

      .description-place-wrapper .list-gallery > li a:hover {
        opacity: 0.8; }
      .description-place-wrapper .list-gallery > li a img {
        max-width: 100%; }
    .description-place-wrapper .list-gallery > li.last {
      background: #ecf0f1;
      text-align: center;
      vertical-align: middle;
      margin-right: 0; }
      .description-place-wrapper .list-gallery > li.last a {
        padding: 15px 5px;
        font-size: 12px;
        color: #5f6f81; }
        .description-place-wrapper .list-gallery > li.last a .carousel-number {
          font-size: 24px;
          font-weight: 700;
          line-height: 1.1; }
  .description-place-wrapper .content-description {
    line-height: 1.6;
    text-align: justify; }
    .description-place-wrapper .content-description p iframe {
      max-width: 100%; }

.info-address-place {
  border-top: 1px solid #bfc9d1; }
  .info-address-place > ul > li {
    padding: 10px 0; }
    .info-address-place > ul > li:nth-child(2n) {
      background: #f7f9f9; }
    .info-address-place > ul > li span {
      position: relative;
      display: block;
      font-size: 12px;
      color: #6f7f96;
      padding-left: 16px;
      line-height: 1.7; }
      .info-address-place > ul > li span i {
        margin-right: 5px;
        display: inline-block;
        width: 15px; }
      .info-address-place > ul > li span a {
        color: #6f7f96; }
    .info-address-place > ul > li.customfield {
      padding: 0; }
      .info-address-place > ul > li.customfield .custom-field-wrapper {
        padding: 10px 16px;
        font-size: 12px;
        color: #6f7f96;
        line-height: 1.475em; }
        .info-address-place > ul > li.customfield .custom-field-wrapper span {
          display: inline-block;
          margin: 0;
          padding: 0;
          line-height: 1.475em; }
          .info-address-place > ul > li.customfield .custom-field-wrapper span.ae-field-title {
            padding: 0 5px 0 0; }
        .info-address-place > ul > li.customfield .custom-field-wrapper ul {
          padding-left: 30px; }
          .info-address-place > ul > li.customfield .custom-field-wrapper ul li {
            display: list-item;
            list-style-type: disc;
            margin: 0;
            padding: 2px 0 5px 0;
            background: none;
            font-size: 12px;
            color: #6f7f96; }

.date-time-place .date-time {
  position: relative;
  padding-left: 22px;
  font-size: 12px;
  margin-left: 16px; }
  .date-time-place .date-time > i {
    position: absolute;
    top: 6px;
    left: 0;
    color: #6f7d95; }
  .date-time-place .date-time .god {
    color: #6f7d95; }
    .date-time-place .date-time .god span {
      display: inline-block;
      padding: 0;
      line-height: 2em; }
      .date-time-place .date-time .god span.open-date {
        width: 42%; }
      .date-time-place .date-time .god span.open-time {
        margin-left: 16px; }

.event-active-wrapper .title-event-active {
  color: #5d605f;
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 27px; }

.event-active-wrapper .event-wrapper .img-event {
  display: block;
  text-align: center; }
  .event-active-wrapper .event-wrapper .img-event img {
    max-width: 100%; }

.event-active-wrapper .event-wrapper .title-envent {
  position: relative;
  margin: 27px 0 0;
  font-size: 14px;
  text-transform: uppercase;
  padding-right: 170px; }
  .event-active-wrapper .event-wrapper .title-envent > span {
    color: #5f6f81; }
  .event-active-wrapper .event-wrapper .title-envent .ribbon-event {
    top: 2px; }
  .event-active-wrapper .event-wrapper .title-envent .edit-event-option {
    position: absolute;
    top: 2px;
    right: 0; }

.event-active-wrapper .event-wrapper .content-event {
  margin-top: 16px;
  line-height: 1.64;
  text-align: justify; }

.event-active-wrapper .event-wrapper time {
  font-size: 12px;
  color: #1d83d5; }

.event-active-wrapper .event-wrapper div[itemprop="location"] {
  margin-top: 5px;
  font-size: 12px; }

.event-active-wrapper .event-wrapper .line-event {
  height: 3px;
  background-color: #ebeff1;
  margin: 30px auto; }

.event-active-wrapper .event-item:last-child .line-event, .event-active-wrapper .event-item:last-of-type .line-event {
  display: none; }

.edit-event-option {
  display: inline-block; }
  .edit-event-option > li {
    margin-left: 20px; }
    .edit-event-option > li a {
      font-size: 18px;
      color: #1d83d5; }
      .edit-event-option > li a.publish, .edit-event-option > li a.approve {
        color: #19bb9b; }
      .edit-event-option > li a.pending {
        color: #e64b3b; }
      .edit-event-option > li a.archive {
        color: #3989cb; }
      .edit-event-option > li a i {
        font-size: 18px; }

#single-more-place + .paginations-wrapper {
  width: 95%;
  float: right; }

.place-meta {
  margin-top: 40px; }

.place-meta .tag-links a {
  background-color: #1c84d4;
  border-radius: 0 2px 2px 0;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2727272727;
  margin: 2px 4px 2px 10px;
  padding: 3px 7px;
  position: relative;
  text-transform: uppercase; }

.place-meta .tag-links a:hover {
  background-color: #1c84d4;
  color: #fff; }

.place-meta .tag-links a:before {
  border-top: 10px solid transparent;
  border-right: 8px solid #1c84d4;
  border-bottom: 10px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  left: -8px;
  width: 0; }

.place-meta .tag-links a:hover:before {
  border-right-color: #1c84d4; }

.place-meta .tag-links a:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 4px;
  position: absolute;
  top: 8px;
  left: -2px;
  width: 4px; }

@media (max-width: 1199px) {
  .date-time-place .date-time .god span.open-date {
    width: 36%; }
  .date-time-place .date-time .god span.open-time {
    margin-left: 8px; } }

.post-place-warpper {
  display: block;
  min-height: 100px;
  background-color: #fff;
  border: 1px solid #e6e9ea;
  margin-top: 23px; }
  .post-place-warpper .chosen-container {
    width: 100% !important; }
  .post-place-warpper .edit-gallery-image .gallery-image > li:hover .add-img {
    background: #bdc3c7;
    color: #FFF; }

.step-wrapper.complete .step-heading .number-step, .step-wrapper.complete .step-heading .text-heading-step, .step-wrapper.complete .step-heading .fa-caret-down, .step-wrapper.complete .step-heading .fa-caret-right {
  color: #19bb9b; }

.step-wrapper .step-heading {
  display: block;
  border-bottom: 1px solid #e6e9ea;
  position: relative;
  padding: 13px 30px 13px 60px;
  line-height: 1.3; }
  .step-wrapper .step-heading .number-step {
    border-right: 1px solid #e6e9ea;
    font-size: 18px;
    color: #5d605f;
    font-weight: 300;
    width: 46px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; }
    .step-wrapper .step-heading .number-step span {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center; }
  .step-wrapper .step-heading .text-heading-step {
    font-size: 14px;
    color: #444c63; }
  .step-wrapper .step-heading .fa-caret-down, .step-wrapper .step-heading .fa-caret-right {
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    color: #444c63; }

.step-wrapper .step-content-wrapper {
  display: block; }
  .step-wrapper .step-content-wrapper .list-price > li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e6e9ea;
    padding: 30px; }
    .step-wrapper .step-content-wrapper .list-price > li .price {
      color: #c15031;
      font-size: 28px;
      font-weight: 300;
      line-height: 1;
      overflow: hidden;
      display: block;
      vertical-align: middle;
      margin-right: 23px;
      min-width: 60px;
      float: left; }
    .step-wrapper .step-content-wrapper .list-price > li .title-plan {
      font-size: 14px;
      font-weight: 700;
      color: #5f6f81;
      line-height: 1.6;
      overflow: hidden;
      display: block;
      vertical-align: middle;
      padding-right: 120px; }
      .step-wrapper .step-content-wrapper .list-price > li .title-plan span {
        display: block;
        font-weight: 400;
        line-height: 1.5; }
        .step-wrapper .step-content-wrapper .list-price > li .title-plan span p {
          margin: 0; }
    .step-wrapper .step-content-wrapper .list-price > li .block-select-plan {
      position: absolute;
      top: 0;
      right: 30px;
      height: 100%; }
      .step-wrapper .step-content-wrapper .list-price > li .block-select-plan .btn-submit-price-plan {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    .step-wrapper .step-content-wrapper .list-price > li > .btn-submit-price-plan {
      position: absolute;
      top: 49%;
      right: 30px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  .step-wrapper .step-content-wrapper .list-form-login > li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e6e9ea;
    padding: 30px; }
    .step-wrapper .step-content-wrapper .list-form-login > li .title-plan {
      font-size: 14px;
      font-weight: 700;
      color: #5f6f81;
      line-height: 1.6;
      overflow: hidden;
      display: inline-block;
      vertical-align: -webkit-baseline-middle;
      max-width: 580px; }
      .step-wrapper .step-content-wrapper .list-form-login > li .title-plan span {
        display: block;
        font-weight: 400;
        line-height: 1.5; }
        .step-wrapper .step-content-wrapper .list-form-login > li .title-plan span p {
          margin: 0; }
    .step-wrapper .step-content-wrapper .list-form-login > li div[class*="col-md-"] {
      line-height: 28px; }

/* auto complete for categories list */
.ui-autocomplete {
  width: 400px; }

.step-post .ui-autocomplete li {
  padding: 10px 0px;
  color: #696c69;
  cursor: pointer;
  font-size: 14px; }

.ui-autocomplete li .selected-root {
  color: #539f41;
  font-weight: 600; }

.step-post .ui-autocomplete li.ui-menu-item {
  padding-left: 25px; }

.step-post .ui-autocomplete {
  display: block !important;
  width: 415px !important;
  top: 20px !important;
  left: 20px !important;
  max-height: 400px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden; }

.step-post .ui-autocomplete {
  height: 400px; }

.open-block .open-times {
  position: relative;
  border: 1px solid #e5e7e9;
  background: #fff; }
  .open-block .open-times input {
    border: none !important;
    outline: none;
    text-align: center;
    width: 100% !important;
    padding-left: 36%;
    padding-right: 36%; }
  .open-block .open-times span {
    position: absolute;
    left: 48.5%;
    top: 10px; }
  .open-block .open-times .container-open-time, .open-block .open-times .container-close-time {
    position: relative;
    width: 100%; }
    .open-block .open-times .container-open-time .ui-timepicker-wrapper, .open-block .open-times .container-close-time .ui-timepicker-wrapper {
      width: 100%; }

.open-block .open-date {
  margin-top: -1px; }
  .open-block .open-date .dselect-date-all {
    display: block;
    float: left;
    padding: 14px 0;
    font-size: 12px;
    cursor: pointer;
    color: #2a7fb8; }
  .open-block .open-date .mselect-date-all {
    display: none;
    float: left;
    padding: 12px 0;
    font-size: 12px;
    cursor: pointer;
    color: #2a7fb8;
    margin-left: 10px; }
  .open-block .open-date .reset-all {
    display: none;
    float: right;
    padding: 12px 0;
    font-size: 12px;
    cursor: pointer;
    color: #2a7fb8;
    margin-right: 10px; }
  .open-block .open-date .date-list {
    float: right;
    padding: 0; }
    .open-block .open-date .date-list li {
      float: left;
      list-style-type: none;
      padding: 13px 19px;
      border-top: 1px solid #e5e7e9;
      border-bottom: 1px solid #e5e7e9;
      border-left: 1px solid #e5e7e9;
      background: #F2F2F2;
      color: #5e6e7e;
      cursor: pointer;
      font-size: 12px;
      position: relative; }
      .open-block .open-date .date-list li.lbdate {
        border-right: 1px solid #e5e7e9 !important; }
      .open-block .open-date .date-list li.bdate.active {
        background: #1d83d5;
        color: #FFF; }
      .open-block .open-date .date-list li.bdate:hover {
        background: #1d83d5;
        color: #FFF; }
      .open-block .open-date .date-list li.bdate::last-child:hover {
        border-right: 1px solid #e5e7e9 !important; }
      .open-block .open-date .date-list li.bdate.vbdate {
        color: #55ccb4;
        border-top: 1px solid #55ccb4 !important;
        border-left: 1px solid #55ccb4 !important;
        border-bottom: 1px solid #55ccb4 !important; }
        .open-block .open-date .date-list li.bdate.vbdate.lbdate {
          border-right: 1px solid #55ccb4 !important; }
        .open-block .open-date .date-list li.bdate.vbdate i {
          display: block;
          color: #1bbc9b; }
      .open-block .open-date .date-list li.nbdate {
        border-left: 1px solid #55ccb4; }
    .open-block .open-date .date-list .tooltip.bottom {
      margin-top: 8px;
      opacity: 1;
      width: 150px; }
      .open-block .open-date .date-list .tooltip.bottom .tooltip-arrow {
        border-bottom-color: #5f6f81; }
    .open-block .open-date .date-list .tooltip-inner {
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      background: #5f6f81;
      padding: 8px; }
      .open-block .open-date .date-list .tooltip-inner span {
        margin: 0 5px; }

/* // auto complete for categories list */
@media (max-width: 1199px) {
  .step-content-wrapper .list-form-login .title-plan {
    margin-bottom: 6px; }
  .open-block .open-date .date-list li {
    padding-left: 14px;
    padding-right: 14px; } }

@media (max-width: 991px) {
  .open-block .open-date .date-list li {
    padding-left: 15px;
    padding-right: 15px; } }

@media (max-width: 767px) {
  .open-block .open-date .date-list li {
    padding-left: 20px;
    padding-right: 20px; } }

@media (max-width: 640px) {
  .open-block .open-times {
    border: 1px solid #e5e7e9; }
    .open-block .open-times input {
      border: none !important;
      outline: none;
      text-align: center; }
  .open-block .open-date {
    margin-top: -1px; }
    .open-block .open-date .dselect-date-all {
      display: none; }
    .open-block .open-date .mselect-date-all {
      display: block; }
    .open-block .open-date .reset-all {
      display: block; }
    .open-block .open-date .date-list {
      float: left;
      padding: 0;
      width: 100%; }
      .open-block .open-date .date-list li {
        float: left;
        list-style-type: none;
        padding: 13px 0;
        border-top: 1px solid #e5e7e9;
        border-bottom: 1px solid #e5e7e9;
        border-left: 1px solid #e5e7e9;
        background: #F2F2F2;
        color: #5e6e7e;
        cursor: pointer;
        font-size: 12px;
        position: relative;
        width: 14.2855555%;
        text-align: center; }
        .open-block .open-date .date-list li.lbdate {
          border-right: 1px solid #e5e7e9 !important; }
        .open-block .open-date .date-list li.bdate.active {
          background: #2a80b9;
          color: #FFF; }
        .open-block .open-date .date-list li.bdate:hover {
          background: #2a80b9;
          color: #FFF; }
        .open-block .open-date .date-list li.bdate::last-child:hover {
          border-right: 1px solid #e5e7e9 !important; }
        .open-block .open-date .date-list li.bdate.vbdate {
          color: #55ccb4;
          border-top: 1px solid #55ccb4 !important;
          border-left: 1px solid #55ccb4 !important;
          border-bottom: 1px solid #55ccb4 !important; }
          .open-block .open-date .date-list li.bdate.vbdate.lbdate {
            border-right: 1px solid #55ccb4 !important; }
          .open-block .open-date .date-list li.bdate.vbdate i {
            display: block;
            color: #1bbc9b; }
        .open-block .open-date .date-list li.nbdate {
          border-left: 1px solid #55ccb4; }
      .open-block .open-date .date-list .tooltip.bottom {
        margin-top: 8px;
        opacity: 1;
        width: 150px; }
        .open-block .open-date .date-list .tooltip.bottom .tooltip-arrow {
          border-bottom-color: #5f6e81; }
      .open-block .open-date .date-list .tooltip-inner {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        background: #5f6e81;
        padding: 8px; }
        .open-block .open-date .date-list .tooltip-inner span {
          margin: 0 5px; } }

.list-user-page-wrapper {
  margin-top: 22px; }
  .list-user-page-wrapper .number-user-list {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #5d5f5e;
    text-transform: uppercase;
    vertical-align: middle;
    margin-top: 8px; }
  .list-user-page-wrapper .search-list-user-page {
    text-align: right; }
    .list-user-page-wrapper .search-list-user-page label {
      text-transform: uppercase;
      margin-bottom: 0;
      color: #656167;
      vertical-align: middle;
      display: inline-block;
      margin-right: 10px;
      font-size: 12px;
      font-weight: 400; }
    .list-user-page-wrapper .search-list-user-page input {
      min-width: 168px;
      padding: 5px 10px;
      vertical-align: middle;
      display: inline-block;
      border: 1px solid rgba(0, 0, 0, 0.1);
      background-color: #fff; }
  .list-user-page-wrapper .list-user-page-info {
    margin-top: 18px; }
    .list-user-page-wrapper .list-user-page-info > li {
      display: block;
      background: #FFF;
      padding: 23px 30px;
      margin-bottom: 18px;
      -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
      -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
      .list-user-page-wrapper .list-user-page-info > li .list-user-page-avatar {
        float: left;
        width: 60px;
        height: 60px;
        background-color: #e7e7e7;
        display: inline-block;
        vertical-align: middle;
        margin-right: 20px; }
        .list-user-page-wrapper .list-user-page-info > li .list-user-page-avatar img {
          width: 100%;
          height: auto; }
      .list-user-page-wrapper .list-user-page-info > li .info-name-user {
        display: inline-block;
        vertical-align: middle;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .list-user-page-wrapper .list-user-page-info > li .info-name-user .name {
          display: block;
          margin: 8px 0 6px 0;
          font-size: 16px;
          font-weight: 600;
          color: #444c63;
          display: block;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          white-space: nowrap;
          line-height: 1.2; }
        .list-user-page-wrapper .list-user-page-info > li .info-name-user .location-user {
          color: #6f7f96;
          line-height: 1.2; }
          .list-user-page-wrapper .list-user-page-info > li .info-name-user .location-user i {
            display: inline-block;
            margin-right: 5px; }
      .list-user-page-wrapper .list-user-page-info > li .list-item-place-user {
        margin-top: 2px; }

.list-item-place-user {
  text-align: right;
  font-size: 12px;
  color: #6f7f96;
  font-size: 0; }
  .list-item-place-user > li {
    width: 55px;
    height: 55px;
    background-color: #bdc3c7;
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    padding-top: 0;
    padding-bottom: 0; }
    .list-item-place-user > li a {
      display: block;
      width: 100%;
      height: 100%; }
      .list-item-place-user > li a.last-item-place-user {
        color: #5f6f81;
        background: #ebeff1;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        line-height: 54px; }
      .list-item-place-user > li a img {
        width: 100%;
        height: auto; }

@media (max-width: 1199px) {
  .list-user-page-wrapper .list-user-page-info > li {
    padding: 14px 18px; }
  .list-item-place-user > li {
    margin-left: 14px; }
  .list-user-page-wrapper .list-user-page-info {
    margin-top: 18px; }
    .list-user-page-wrapper .list-user-page-info > li .list-user-page-avatar {
      margin-right: 10px; } }

#blogwrapper {
  margin-top: 22px; }
  #blogwrapper .sidebar-main {
    margin-top: 30px; }

.blog-wrapper .section-detail-wrapper {
  padding: 10px 20px;
  border-bottom: 1px solid #ecf0f1;
  overflow: hidden; }

@media (max-width: 991px) {
  .widgettitle {
    width: 100%;
    text-align: center;
    font-weight: 600; }
  .single-sidebar .paginations-wrapper .load-more-post {
    width: auto; }
  #blog-page > .container {
    padding-left: 11px;
    padding-right: 11px; } }

#blog-page {
  background: #ecf0f1; }

.blog-detail-wrapper {
  margin-top: 34px;
  background: #FFF;
  border: 1px solid #ecf0f1; }
  .blog-detail-wrapper .section-detail-wrapper {
    position: relative; }
    .blog-detail-wrapper .section-detail-wrapper .title-blog {
      padding-right: 170px;
      color: #2c3e50; }
    .blog-detail-wrapper .section-detail-wrapper .time-calendar {
      position: absolute;
      top: 28px;
      right: 20px;
      color: #444c63; }
      .blog-detail-wrapper .section-detail-wrapper .time-calendar i {
        margin-right: 6px; }
    .blog-detail-wrapper .section-detail-wrapper .title-lastest {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: #444c63; }
    .blog-detail-wrapper .section-detail-wrapper .list-lastest-news li {
      padding-left: 20px;
      line-height: 1.7; }
      .blog-detail-wrapper .section-detail-wrapper .list-lastest-news li a {
        font-size: 14px;
        color: #444c63; }
        .blog-detail-wrapper .section-detail-wrapper .list-lastest-news li a i {
          color: #1d83d5;
          margin-right: 10px; }
  .blog-detail-wrapper .comments .section-detail-wrapper .review-wrapper .title-comments {
    padding: 0 20px; }
  .blog-detail-wrapper .comments .section-detail-wrapper .review-wrapper .media-list {
    padding: 0 6px; }
  .blog-detail-wrapper .comments > .comment-respond {
    padding-left: 20px;
    padding-right: 20px; }

.blog-content-wrapper {
  color: #5f6f81; }
  .blog-content-wrapper p {
    line-height: 1.65; }
  .blog-content-wrapper ul {
    padding-left: 17px; }
    .blog-content-wrapper ul li {
      list-style-type: disc;
      color: #444c63;
      line-height: 1.7;
      padding-bottom: 2px; }
  .blog-content-wrapper ol {
    padding-left: 15px; }
    .blog-content-wrapper ol li {
      list-style-type: decimal;
      color: #444c63;
      line-height: 1.6;
      padding-bottom: 2px; }
  .blog-content-wrapper img {
    max-width: 100%;
    height: auto; }

.alignnone {
  margin: 10px 0;
  max-width: 100%;
  height: auto; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

.aligncenter {
  display: block;
  margin: 10px auto; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.static-detail-wrapper {
  background: #FFF;
  margin-top: 34px; }

.static-content-wrapper {
  color: #444c63; }
  .static-content-wrapper p {
    line-height: 24px;
    margin-bottom: 5px; }
  .static-content-wrapper ul li {
    list-style-type: disc;
    color: #444c63;
    line-height: 1.7;
    padding-bottom: 2px; }
  .static-content-wrapper ol li {
    list-style-type: decimal;
    color: #444c63;
    line-height: 1.6;
    padding-bottom: 2px; }
  .static-content-wrapper label {
    font-weight: 600; }
  .static-content-wrapper img {
    max-width: 100%;
    height: auto; }
  .static-content-wrapper b {
    color: #5f6f81; }

.img-404 {
  text-align: center;
  padding: 70px 0 150px 0; }
  .img-404 img {
    margin-bottom: 50px; }
  .img-404 p {
    font-size: 16px;
    color: #5f6f81;
    margin-bottom: 14px; }
  .img-404 a {
    font-size: 16px;
    color: #1d83d5; }

#order-payment {
  background: #fff;
  width: 80%;
  margin: 100px auto;
  border: 1px solid #e1e1e1;
  text-align: center;
  padding: 50px 30px 80px 30px; }
  @media (max-width: 991px) {
    #order-payment {
      width: 100%; } }
  @media (max-width: 767px) {
    #order-payment {
      text-align: center; } }
  #order-payment h6 {
    color: #1d83d5;
    font-size: 27px;
    margin: 0 0 15px 0; }
  #order-payment .text {
    color: #5f6f81;
    font-size: 21px;
    line-height: 25px; }
  #order-payment .invoice-detail {
    margin: 60px 0; }
    @media (max-width: 767px) {
      #order-payment .invoice-detail {
        text-align: left; } }
    #order-payment .invoice-detail .name {
      color: #aaafb2;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        #order-payment .invoice-detail .name {
          width: 50%;
          float: left; } }
    @media (max-width: 767px) {
      #order-payment .invoice-detail .info {
        width: 50%;
        float: right; } }
    #order-payment .invoice-detail .name > div, #order-payment .invoice-detail .info > div {
      border-right: 1px solid #efefef; }
      #order-payment .invoice-detail .name > div:last-child, #order-payment .invoice-detail .info > div:last-child {
        border-right: none; }
      @media (max-width: 767px) {
        #order-payment .invoice-detail .name > div, #order-payment .invoice-detail .info > div {
          padding: 20px 0 !important;
          border-right: none; } }
    #order-payment .invoice-detail .name > div {
      padding-bottom: 40px; }
    #order-payment .invoice-detail .info > div {
      font-weight: bold; }
  #order-payment .invoice-note {
    margin-bottom: 70px; }
    #order-payment .invoice-note p {
      line-height: 25px; }
    #order-payment .invoice-note .type-cash {
      color: #aaafb2;
      text-transform: uppercase;
      margin-bottom: 20px !important; }
  #order-payment .btn-back-list {
    background: #1d83d5;
    padding: 13px 35px;
    color: #fff;
    font-weight: 600;
    font-size: 18px; }
    #order-payment .btn-back-list i {
      margin-left: 5px; }
  #order-payment .paypal {
    font-weight: normal !important; }
    @media (max-width: 767px) {
      #order-payment .paypal {
        margin-bottom: 0; } }
    #order-payment .paypal:before {
      content: "";
      background: url("../img/icon-payment.png") no-repeat;
      padding: 18px 24px;
      background-position: 0px -2px; }
      @media (max-width: 767px) {
        #order-payment .paypal:before {
          padding: 18px 16px;
          background-position: -15px -2px; } }
  #order-payment .checkout {
    font-weight: normal !important; }
    @media (max-width: 767px) {
      #order-payment .checkout {
        margin-bottom: 0; } }
    #order-payment .checkout:before {
      content: "";
      background: url("../img/icon-payment.png") no-repeat;
      padding: 18px 24px;
      background-position: -87px -2px; }
      @media (max-width: 767px) {
        #order-payment .checkout:before {
          padding: 18px 20px;
          background-position: -96px -2px; } }
  #order-payment .cash {
    font-weight: normal !important; }
    @media (max-width: 767px) {
      #order-payment .cash {
        margin-bottom: 0; } }
    #order-payment .cash:before {
      content: "";
      background: url("../img/icon-payment.png") no-repeat;
      padding: 18px 24px;
      background-position: -43px -2px; }
      @media (max-width: 767px) {
        #order-payment .cash:before {
          padding: 18px 19px;
          background-position: -52px -2px; } }
  #order-payment .credit {
    font-weight: normal !important; }
    #order-payment .credit:before {
      content: "";
      background: url("../img/icon-payment.png") no-repeat;
      padding: 18px 24px;
      background-position: -134px -2px; }
      @media (max-width: 767px) {
        #order-payment .credit:before {
          padding: 18px 19px;
          background-position: -141px -2px; } }
  #order-payment .text-notify {
    color: #de2b32;
    margin-bottom: 5px; }
  #order-payment .text-cancel {
    color: #5f6f81;
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 25px; }

.search-location-wrap {
  background: #FFF;
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 15px;
  -webkit-box-shadow: inset 0px 10px 30px 0px #e6e6e6;
  -moz-box-shadow: inset 0px 10px 30px 0px #e6e6e6;
  box-shadow: inset 0px 10px 30px 0px #e6e6e6; }

#search-location-form .text-field, #search-location-form .comments .comment-respond .comment-form p[class*='comment-form-'] input, .comments .comment-respond .comment-form p[class*='comment-form-'] #search-location-form input {
  margin-bottom: 30px;
  height: 50px;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  font-weight: 600;
  color: #3c495a; }

#search-location-form .chosen-container {
  width: 100% !important;
  margin-bottom: 30px; }

#search-location-form select.de-chosen-single {
  opacity: 0;
  width: 100%;
  height: 50px; }

#search-location-form .chosen-container-single .chosen-single {
  height: 50px;
  border-radius: 5px; }
  #search-location-form .chosen-container-single .chosen-single span {
    font-size: 14px;
    font-weight: 600;
    line-height: 48px; }

#search-location-form .sl-address {
  position: relative; }
  #search-location-form .sl-address input[type="text"] {
    padding-right: 30px; }
  #search-location-form .sl-address > span {
    position: absolute;
    right: 0;
    top: 6px;
    color: #1d83d5; }
    #search-location-form .sl-address > span.locate-me {
      padding: 12px; }
      #search-location-form .sl-address > span.locate-me i {
        cursor: pointer; }

#search-location-form .search-btn {
  background: #1d83d5;
  margin-top: 40px;
  width: 420px;
  height: 50px;
  border: none;
  border-radius: 30px;
  color: #FFF;
  text-align: center;
  -webkit-box-shadow: 0 0 20px 0 #b0d6f4;
  box-shadow: 0 0 20px 0 #b0d6f4; }

.sl-slider-range {
  font-weight: 600;
  color: #1c263f; }
  .sl-slider-range > span {
    color: #1d83d5;
    float: right; }

.search-location-line {
  background: #eee;
  margin-top: 60px;
  margin-left: -30px;
  margin-right: -30px;
  height: 1px; }

.result-search-location .filter-reset {
  margin-top: 60px; }
  .result-search-location .filter-reset:after {
    content: '';
    display: table;
    clear: both; }

.result-pagination {
  float: left; }
  .result-pagination.right {
    float: right; }
  .result-pagination .nrp {
    display: inline-block;
    color: #3c495a;
    margin-right: 6px; }
    .result-pagination .nrp span {
      color: #1d83d5;
      margin-right: 4px; }
  .result-pagination .prp {
    display: inline-block;
    color: #3c495a;
    padding-left: 8px;
    border-left: 1px solid #eee; }
    .result-pagination .prp span {
      margin-right: 4px; }
      .result-pagination .prp span:first-child {
        color: #1d83d5; }
      .result-pagination .prp span:last-child {
        color: #a3b0ba; }

.reset-pagination {
  float: right; }
  .reset-pagination span {
    color: #1d83d5;
    cursor: pointer;
    padding: 6px 0; }
    .reset-pagination span i {
      margin-right: 5px; }

.search-location-list-place {
  margin-top: 50px; }
  .search-location-list-place .no_result_location {
    text-align: center;
    font-size: 18px;
    margin-top: 60px; }
    .search-location-list-place .no_result_location > span {
      font-size: 20px;
      color: #1d83d5; }

.sl-place-wrap {
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 0 16px 0px #ededed;
  -moz-box-shadow: 0px 0 16px 0px #ededed;
  box-shadow: 0px 0 16px 0px #ededed; }
  .sl-place-wrap .sl-place-img {
    background: #e6e6e6;
    position: relative;
    height: 300px;
    overflow: hidden; }
    .sl-place-wrap .sl-place-img img {
      min-width: 100%;
      height: 100%; }

.sl-place-address {
  width: 100%;
  padding: 140px 26px 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.95)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
  /* IE6-9 */ }
  .sl-place-address p {
    margin: 0;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #FFF;
    line-height: 26px; }
    .sl-place-address p > i {
      min-width: 22px; }
    .sl-place-address p span {
      color: #f1c40f; }

.sl-place-info {
  padding: 10px 26px 0; }
  .sl-place-info .sl-place-title {
    position: relative;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 40px;
    padding: 20px 60px 20px 0;
    border-bottom: 1px solid #eee; }
    .sl-place-info .sl-place-title a {
      font-size: 16px;
      font-weight: 700;
      color: #1c263f; }
    .sl-place-info .sl-place-title .rate-it {
      margin-top: 10px; }
    .sl-place-info .sl-place-title .rating {
      display: block;
      position: absolute;
      top: 50%;
      right: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      color: #FFF;
      text-align: center;
      border-radius: 50%;
      background-color: #1d83d5;
      -webkit-box-shadow: 1px 1.732px 0 0 rgba(29, 131, 213, 0.25);
      box-shadow: 1px 1.732px 0 0 rgba(29, 131, 213, 0.25);
      line-height: 38px; }

.sl-place-author {
  padding: 18px 0; }
  .sl-place-author:after {
    content: '';
    display: table;
    clear: both; }

.sl-author-avatar {
  float: left;
  width: calc(100% - 130px);
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 30px; }
  .sl-author-avatar a {
    color: #1d83d5; }
  .sl-author-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px; }

.sl-place-view {
  float: right;
  line-height: 30px;
  color: #a3b0ba; }
  .sl-place-view span + span {
    margin-left: 10px; }
  .sl-place-view i {
    margin-right: 5px; }

.sl-ribbon-event {
  position: absolute;
  top: 20px;
  right: 0;
  background: #e71d36;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 3px 12px 3px 2px;
  z-index: 1;
  line-height: 1.6;
  min-height: 19px;
  display: inline-block;
  margin-left: 10px; }
  .sl-ribbon-event:before {
    content: "";
    border: 14px solid #e71d36;
    z-index: -1;
    top: 0;
    left: -15px;
    position: absolute;
    border-left-width: 0.5em;
    border-left-color: transparent; }

.search-location-pagination {
  margin-bottom: 50px;
  text-align: center; }
  .search-location-pagination .paginations-wrapper {
    background: #FFF;
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #d7d7d7;
    border-radius: 24px; }
    .search-location-pagination .paginations-wrapper a {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      color: #1c263f;
      margin: 0 10px;
      line-height: 1em; }
      .search-location-pagination .paginations-wrapper a.current {
        color: #1d83d5; }
      .search-location-pagination .paginations-wrapper a.prev {
        position: relative;
        margin: 0;
        margin-right: 10px;
        padding-left: 18px;
        padding-right: 10px;
        border-right: 1px solid #eee; }
        .search-location-pagination .paginations-wrapper a.prev:before {
          content: '\f104';
          font-family: 'Fontawesome';
          position: absolute;
          left: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
      .search-location-pagination .paginations-wrapper a.next {
        position: relative;
        margin: 0;
        margin-left: 10px;
        padding-right: 18px;
        padding-left: 10px;
        border-left: 1px solid #eee; }
        .search-location-pagination .paginations-wrapper a.next:after {
          content: '\f105';
          font-family: 'Fontawesome';
          position: absolute;
          right: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .search-location-pagination .result-pagination {
    padding: 14px 0; }
    .search-location-pagination .result-pagination .prp {
      border: none; }

@media (max-width: 1199px) {
  .search-location-wrap {
    padding-left: 15px;
    height: auto !important; }
  .search-location-line {
    margin-left: -15px;
    margin-right: -15px; }
  .search_categories select {
    margin-bottom: 30px;
    width: 100%;
    height: 50px; }
  .search_location select {
    margin-bottom: 30px;
    width: 100%;
    height: 50px; } }

@media (max-width: 767px) {
  .search-location-list-place {
    margin-top: 30px; }
  .result-search-location .filter-reset {
    margin-top: 30px; }
  #search-location-form .search-btn {
    width: 100%;
    margin-top: 30px; }
  .search-location-line {
    margin-top: 30px; }
  .sl-place-wrap {
    margin-bottom: 30px; }
  .search-location-pagination .result-pagination {
    display: none; } }

.pending-place-wrapper {
  padding-top: 60px; }
  .pending-place-wrapper > h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    color: #3c495a; }
  .pending-place-wrapper .search-location-pagination {
    margin: 80px 0 40px 0; }

.pending-place-list {
  margin-top: 24px; }
  .pending-place-list > li {
    margin-bottom: 30px; }

.pending-place-wrap {
  background: #FFF;
  width: 100%;
  height: 120px;
  border: 1px solid #f2f2f2;
  -webkit-box-shadow: 0 0 10px 0 #e2eaee;
  box-shadow: 0 0 10px 0 #e2eaee; }
  .pending-place-wrap:after {
    content: '';
    display: table;
    clear: both; }

.pending-place-img {
  float: left;
  display: block;
  width: 120px;
  height: 100%;
  overflow: hidden; }
  .pending-place-img img {
    width: 100%;
    height: auto; }

.pending-place-content {
  float: right;
  display: block;
  width: calc(100% - 120px);
  height: 100%; }

.pending-place-title-wrap {
  display: block;
  float: left;
  padding-left: 36px;
  padding-top: 20px;
  width: 410px;
  padding-right: 30px; }
  .pending-place-title-wrap span {
    display: inline-block;
    padding: 3px 11px;
    font-size: 13px;
    line-height: 1em;
    border-radius: 10px; }
    .pending-place-title-wrap span + span {
      margin-left: 6px; }
  .pending-place-title-wrap > h2 {
    margin: 12px 0 0;
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2em; }
    .pending-place-title-wrap > h2 a {
      color: #1c263f; }
      .pending-place-title-wrap > h2 a:hover {
        color: #1d83d5; }
  .pending-place-title-wrap > p {
    margin: 12px 0 0;
    color: #1c263f;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2em; }
    .pending-place-title-wrap > p i {
      margin-right: 10px;
      color: #a3b0ba;
      padding-left: 1px; }

.pending-place-location-wrap {
  position: relative;
  display: block;
  float: left;
  width: 200px;
  height: 100%; }

.pending-place-location {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 30px; }
  .pending-place-location p {
    margin: 0;
    color: #1c263f;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2em; }
    .pending-place-location p i {
      margin-right: 10px;
      color: #a3b0ba;
      padding-left: 1px; }
    .pending-place-location p + p {
      margin-top: 10px; }

.pending-place-author-wrap {
  position: relative;
  display: block;
  float: left;
  width: 180px;
  height: 100%; }

.pending-place-author {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  padding-right: 30px; }
  .pending-place-author p {
    position: relative;
    margin: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2em;
    height: 30px;
    line-height: 28px;
    padding-left: 40px; }
    .pending-place-author p img {
      width: 30px;
      height: 30px;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 50%; }
  .pending-place-author a {
    font-size: 14px;
    color: #6f7e95; }

.pending-place-status {
  position: relative;
  display: block;
  float: left;
  width: 96px;
  height: 100%; }
  .pending-place-status span {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .pending-place-status .paid {
    color: #1abc9c; }
  .pending-place-status .unpaid {
    color: #eb5256; }

.pending-place-action-wrap {
  position: relative;
  display: block;
  float: left;
  width: 100px;
  height: 100%; }

.pending-place-action {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .pending-place-action span {
    position: relative;
    display: inline-block;
    height: 30px;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer; }
  .pending-place-action .action-approve {
    color: #1abc9c;
    margin-right: 24px; }
    .pending-place-action .action-approve:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: -24px;
      height: 100%;
      border-left: 1px solid #eee; }
  .pending-place-action .action-remove {
    color: #eb5256;
    margin-left: 24px; }

.pending-place-filter-wrap {
  margin-top: 10px; }
  .pending-place-filter-wrap:after {
    content: '';
    display: table;
    clear: both; }
  .pending-place-filter-wrap > p {
    margin: 0;
    font-size: 14px;
    color: #6f7f96; }
    .pending-place-filter-wrap > p span {
      color: #1d83d5;
      margin-right: 5px; }

.place-category-filter, .place-payment-filter, .place-newlest-filter {
  display: inline-block; }

.place-category-filter {
  border-right: 1px solid #b7bfc9;
  padding-right: 15px; }
  .place-category-filter .chosen-container {
    width: 220px !important; }

.place-payment-filter {
  border-right: 1px solid #b7bfc9;
  padding-right: 15px; }
  .place-payment-filter .chosen-container {
    width: 180px !important; }

.place-newlest-filter .chosen-container {
  width: 170px !important; }

.pending-place-filter .chosen-container-single .chosen-single {
  height: auto;
  background: none;
  border: none;
  padding-left: 15px; }

.pending-place-filter .chosen-container-single .chosen-single span {
  line-height: 1.2em; }

.pending-place-filter .chosen-container-single .chosen-single div b:before {
  content: '\f107'; }

.pending-place-filter .chosen-container-active.chosen-with-drop .chosen-single {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.pending-place-filter .chosen-container-active.chosen-with-drop .chosen-single div b:before {
  content: '\f106'; }

.pending-place-filter .chosen-container-single .chosen-search {
  display: none; }

.pending-place-filter .chosen-container.chosen-with-drop .chosen-drop {
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px 4px #e2eaee;
  box-shadow: 0 0 10px 4px #e2eaee;
  left: initial;
  right: -15px;
  margin-top: 14px; }
  .pending-place-filter .chosen-container.chosen-with-drop .chosen-drop:after {
    position: absolute;
    top: -9px;
    right: 18px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 9px 10px;
    border-color: transparent transparent #FFF transparent; }

.pending-place-filter .chosen-container .chosen-results {
  padding: 0;
  margin: 0; }

.pending-place-filter .chosen-container .chosen-results li {
  padding: 11px 16px;
  border-bottom: 1px solid #ebebeb;
  color: #3c495a; }
  .pending-place-filter .chosen-container .chosen-results li:first-child {
    padding-top: 14px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .pending-place-filter .chosen-container .chosen-results li:last-child {
    padding-bottom: 14px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none; }
  .pending-place-filter .chosen-container .chosen-results li.highlighted {
    background: #1d83d5;
    color: #FFF; }
    .pending-place-filter .chosen-container .chosen-results li.highlighted:first-child:after {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 10px 10px 10px;
      border-color: transparent transparent #1d83d5 transparent; }

@media (max-width: 1199px) {
  .pending-place-location-wrap, .pending-place-author-wrap {
    display: none; }
  .pending-place-title-wrap {
    width: calc(100% - 215px); }
  .place-category-filter .chosen-container {
    width: 190px !important; }
  .place-payment-filter .chosen-container {
    width: 160px !important; }
  .place-newlest-filter .chosen-container {
    width: 150px !important; } }
