/* ECI Frontend */

.eci-content {
  font-size: 14px;
  direction: ltr;
  line-height: 1.7;
  white-space: initial;
}

.eci-content img {
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  max-width: 100%;
  object-fit: contain;
  // height: 15em !Important;
  // width: 12.5em;
}

/************************   Bootstrap Additional CSS rules   ************************/
.eci-content .eci-form-control,
.eci-content .eci-form-control:focus {
  width: 100%;
  max-width: 100%;
  float: none;
  color: #555555;
  border: 1px solid #969696;
  //border-radius: 2px;
  height: 48px;
  font-size: 16px;
  box-shadow: none !important;
  // padding: 6px 12px;
}
.eci-content textarea.eci-form-control,
.eci-content textarea.eci-form-control:focus {
  height: auto;
}
.eci-content input.eci-form-control::-webkit-input-placeholder {
  color: #777777;
}
.eci-content input.eci-form-control::-moz-placeholder {
  color: #777777;
}
.eci-content input.eci-form-control:-moz-placeholder {
  color: #777777;
}
.eci-content input.eci-form-control:-ms-input-placeholder {
  color: #777777;
}
.eci-content .eci-form-horizontal .eci-control-label {
  text-align: left;
  margin: 0;
  padding: 0;
}
.eci-content .eci-has-feedback .eci-form-control:focus {
  padding-right: 42.5px;
}
.eci-content .eci-form-control-feedback {
  z-index: 0;
  display: inline;
  top: 0;
  cursor: pointer;
  height: 100%;
  line-height: 48px;
}
.eci-content .eci-label {
  display: inline-block;
  padding: 3px 5px;
  margin-bottom: 3px;
  vertical-align: inherit;
}
.eci-content .eci-form-control-feedback.eci-glyphicon {
  color: #777777;
  font-size: 18px;
}
.eci-content .eci-form-group {
  margin-bottom: 15px !important;
  /* !important needed so JS COmposer can not break this by his *:last-child rules */
  overflow: hidden;
}
.eci-content .eci-nav-tabs > li.eci-active > a,
.eci-content .eci-nav-tabs > li.eci-active > a:hover,
.eci-content .eci-nav-tabs > li.eci-active > a:focus {
  cursor: pointer;
}
.eci-content .eci-popover {
  max-width: 500px;
}
.eci-content .eci-list-group {
  margin-left: 0;
}
.eci-content .eci-tooltip-inner {
  background-color: #3b3b3b;
  border-radius: 2px;
  padding: 10px;
}
.eci-content .eci-tooltip.eci-top .eci-tooltip-arrow {
  border-top-color: #3b3b3b;
}
.eci-content .eci-tooltip.eci-in {
  opacity: 1;
}
.eci-content .eci-btn-default:hover {
  background-color: #f3f4f7;
}
.eci-content input[type="checkbox"],
.eci-content input[type="radio"] {
  position: relative;
}
.eci-content .eci-btn-group .eci-dashboard-btn-mobile + .eci-btn,
.eci-content
  .eci-btn-group
  .eci-dashboard-btn-mobile
  + .eci-dashboard-btn-mobile {
  margin-left: -1px;
}
.eci-content .eci-progress-bar {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.eci-content .eci-panel-heading {
  padding: 10px 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.eci-content .eci-panel-heading > .eci-dropdown .eci-dropdown-toggle {
  color: inherit;
}

.eci-content .eci-btn:hover,
.eci-content .eci-btn:focus,
.eci-content .eci-btn:active,
.eci-content .eci-btn.eci-active {
  background-image: none;
  box-shadow: unset;
}

.eci-content .eci-btn {
  margin: 0;
  max-width: 100%;
  float: none;
  border-radius: 2px;
  height: 48px;
  font-size: 16px;
  // padding: 12px;
}

.eci-content .eci-dashboard-tabs-content .eci-btn-group .eci-btn {
  height: auto;
  font-size: 14px;
  // padding: 8px;
}

.eci-content .eci-checkbox,
.eci-content .eci-radio {
  margin-top: 0;
}

.eci-content .eci-checkbox label,
.eci-content .eci-radio label {
  position: relative;
  padding-left: 30px;
}

.eci-checkbox input,
.eci-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.eci-checkbox .eci-control-indicator,
.eci-radio .eci-control-indicator {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  font-family: inherit;   /* "Glyphicons Halflings";  */
  margin-right: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #2393ba;
}

.eci-radio .eci-control-indicator {
  border-radius: 50%;
}

/* Checked state */
.eci-checkbox label input:checked ~ .eci-control-indicator,
.eci-radio label input:checked ~ .eci-control-indicator {
  border: none;
  background: #2393ba;
}

/* Disabled state */
.eci-checkbox label input:disabled ~ .eci-control-indicator,
.eci-radio label input:disabled ~ .eci-control-indicator {
  pointer-events: none;
  opacity: 0.6;
  background: #e6e6e6;
}

/* Check mark */
.eci-checkbox .eci-control-indicator:after {
  position: absolute;
  display: none;
  content: "\e013";
}

.eci-radio .eci-control-indicator:after {
  position: absolute;
  display: none;
  content: "";
}

/* Show check mark */
.eci-checkbox input:checked ~ .eci-control-indicator:after,
.eci-radio input:checked ~ .eci-control-indicator:after {
  display: block;
  color: #ffffff;
}

/* Checkbox tick */
.eci-checkbox .eci-control-indicator:after {
  font-size: 12px;
  left: 5px;
}

/* Disabled tick colour */
.eci-checkbox input:disabled ~ .eci-control-indicator:after {
  border-color: #cccccc;
}

/* Radio button inner circle */
.eci-radio .eci-control-indicator:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

/* Disabled circle colour */
.eci-radio input:disabled ~ .eci-control-indicator:after {
  background: #7b7b7b;
}

.eci-content select:not(.eci-week-day-input) {
  background-image: linear-gradient(50deg, transparent 50%, white 50%),
    linear-gradient(130deg, white 50%, transparent 50%),
    linear-gradient(to right, #2393ba, #2393ba) !important;
  background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%, 100% 0 !important;
  background-size: 6px 6px, 6px 6px, 2em 48px !important;
  background-repeat: no-repeat !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 14px !important;
  line-height: 1.42857 !important;
  padding: 3px 12px !important;
}

.eci-content select:not(.eci-week-day-input)::-ms-expand {
  display: none;
}

.eci-content select:not(.eci-week-day-input):focus {
  background-image: linear-gradient(130deg, transparent 50%, white 50%),
    linear-gradient(50deg, white 50%, transparent 50%),
    linear-gradient(to right, #2393ba, #2393ba) !important;
}

.eci-content .eci-btn,
.eci-content a,
.eci-content button,
.eci-content input[type="button"] {
  transition: all 0.1s linear 0s;
}

.eci-content .eci-btn:focus,
.eci-content a:focus,
.eci-content button:focus,
.eci-content input[type="button"]:focus {
  outline: 0;
}

div.eci-content .eci-btn-primary,
div.eci-content a.eci-btn-primary,
div.eci-content .eci-btn-primary:hover,
div.eci-content
  a.eci-btn-primary:hover
  div.eci-content
  .eci-btn-primary:visited,
div.eci-content a.eci-btn-primary:visited,
div.eci-content .eci-btn-primary:focus,
div.eci-content a.eci-btn-primary:focus {
  background-image: none;
}

.eci-categories-table,
.eci-locations-table {
  margin-bottom: 20px;
}

.eci-categories-row,
.eci-locations-row {
  margin-bottom: 15px;
}

.eci-terms-menu.eci-terms-depth-1 .eci-categories-row,
.eci-terms-menu.eci-terms-depth-1 .eci-locations-row {
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .eci-categories-row,
  .eci-locations-row {
    margin-bottom: 0;
  }

  .eci-categories-column,
  .eci-locations-column {
    margin-bottom: 15px;
  }
}
.eci-category-item,
.eci-location-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.eci-category-item.eci-category-highlighted a,
.eci-location-item.eci-location-highlighted a {
  color: #ffffff;
}

.eci-content.eci-terms-menu .eci-categories-root,
.eci-content.eci-terms-menu .eci-locations-root {
  background-image: none !important;
  border-bottom: 1px solid #cccccc;
}

.eci-content .eci-categories-root a,
.eci-content .eci-subcategories a,
.eci-content .eci-locations-root a,
.eci-content .eci-sublocations a {
  display: block;
}

.eci-content .eci-categories-root a,
.eci-content .eci-locations-root a {
  padding: 35px 10px;
}

.eci-content.eci-terms-menu .eci-categories-root a,
.eci-content.eci-terms-menu .eci-locations-root a {
  padding: 10px;
}

.eci-content .eci-categories-root a,
.eci-content .eci-categories-root a:hover,
.eci-content .eci-categories-root a:visited,
.eci-content .eci-categories-root a:focus,
.eci-content .eci-locations-root a,
.eci-content .eci-locations-root a:hover,
.eci-content .eci-locations-root a:visited,
.eci-content .eci-locations-root a:focus {
  background-color: rgba(33, 33, 33, 0.45);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}

.eci-content .eci-categories-root a:hover,
.eci-content .eci-locations-root a:hover {
  background-color: rgba(33, 33, 33, 0.55);
}

.eci-content.eci-terms-menu .eci-categories-root a,
.eci-content.eci-terms-menu .eci-categories-root a:hover,
.eci-content.eci-terms-menu .eci-categories-root a:visited,
.eci-content.eci-terms-menu .eci-categories-root a:focus,
.eci-content.eci-terms-menu .eci-locations-root a,
.eci-content.eci-terms-menu .eci-locations-root a:hover,
.eci-content.eci-terms-menu .eci-locations-root a:visited,
.eci-content.eci-terms-menu .eci-locations-root a:focus {
  background-color: inherit;
  color: inherit;
  text-align: left;
}

.eci-content .eci-subcategories a,
.eci-content .eci-sublocations a {
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
  text-decoration: none;
}

.eci-content .eci-subcategories li:last-child a,
.eci-content .eci-sublocations li:last-child a,
.eci-terms-menu.eci-terms-depth-1
  .eci-categories-row:last-child
  .eci-categories-root,
.eci-terms-menu.eci-terms-depth-1
  .eci-locations-row:last-child
  .eci-locations-root {
  border-bottom: none;
}

.eci-categories-grid .eci-term-label,
.eci-locations-grid .eci-term-label {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.eci-category-count,
.eci-location-count {
  float: right;
}

.eci-categories-sidebar-widget .eci-category-count,
.eci-locations-sidebar-widget .eci-location-count {
  float: none;
}

.eci-term-label-justify {
  display: inline-block;
}

.eci-categories-sidebar-widget .eci-term-label,
.eci-locations-sidebar-widget .eci-term-label {
  display: flex;
  justify-content: space-between;
}

.eci-content ul li.eci-category-item:after,
.eci-content ul li.eci-location-item:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
}

.eci-categories-grid .eci-categories-root a,
.eci-locations-grid .eci-locations-root a {
  font-weight: bold;
  border-radius: 5px;
}

.eci-categories-grid .eci-categories-root,
.eci-locations-grid .eci-locations-root {
  border-radius: 5px;
}

.eci-categories-grid.eci-terms-columns-1 .eci-categories-root a,
.eci-locations-grid.eci-terms-columns-1 .eci-locations-root a {
  /* padding: 250px 10px; */
  height: 550px;
  font-size: 2.2em;
}

.eci-categories-grid.eci-terms-columns-2 .eci-categories-root a,
.eci-locations-grid.eci-terms-columns-2 .eci-locations-root a {
  /* padding: 150px 10px; */
  height: 345px;
  font-size: 2em;
}

.eci-categories-grid.eci-terms-columns-3 .eci-categories-root a,
.eci-locations-grid.eci-terms-columns-3 .eci-locations-root a {
  /* padding: 100px 10px; */
  height: 240px;
  font-size: 1.8em;
}

.eci-categories-grid.eci-terms-columns-4 .eci-categories-root a,
.eci-locations-grid.eci-terms-columns-4 .eci-locations-root a {
  /* padding: 60px 10px; */
  height: 155px;
  font-size: 1.2em;
}

.eci-categories-grid .eci-categories-root a.eci-grid-item-tall,
.eci-locations-grid .eci-locations-root a.eci-grid-item-tall {
  height: 535px;
  font-size: 1.8em;
}

/* Maximum width of 992 pixels. */
@media screen and (max-width: 992px) {
  .eci-categories-grid .eci-categories-root a.eci-grid-item-tall,
  .eci-locations-grid .eci-locations-root a.eci-grid-item-tall {
    height: 260px;
  }
}
.eci-categories-grid .eci-categories-root a.eci-grid-item-normal,
.eci-locations-grid .eci-locations-root a.eci-grid-item-normal {
  height: 260px;
  font-size: 1.8em;
}

.eci-categories-widget .eci-categories-root,
.eci-locations-widget .eci-locations-root {
  margin: 0;
  background-color: transparent !important;
}

.eci-subcategories ul,
.eci-sublocations ul {
  margin: 0;
  padding: 0;
}

.eci-subcategories ul li,
.eci-sublocations ul li {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  background-color: #f2f2f2;
}

.eci-terms-menu .eci-subcategories ul li,
.eci-terms-menu .eci-sublocations ul li {
  background-color: inherit;
}

.eci-subcategories ul li:before,
.eci-sublocations ul li:before,
.eci-subcategories ul li:before,
.eci-sublocations ul li:before {
  content: none !important;
}

/* Decrease gutters between search fields and submit button in one row */
/* Minimum width of 768 pixels. */
@media screen and (min-width: 992px) {
  .eci-categories-row .eci-col-md-3 ~ .eci-col-md-3,
  .eci-categories-row .eci-col-md-3 ~ .eci-col-md-6,
  .eci-categories-row .eci-col-md-4 ~ .eci-col-md-4,
  .eci-categories-row .eci-col-md-6 ~ .eci-col-md-6,
  .eci-categories-row .eci-col-md-6 ~ .eci-col-md-3,
  .eci-categories-row .eci-col-md-7 ~ .eci-col-md-5,
  .eci-locations-row .eci-col-md-3 ~ .eci-col-md-3,
  .eci-locations-row .eci-col-md-3 ~ .eci-col-md-6,
  .eci-locations-row .eci-col-md-4 ~ .eci-col-md-4,
  .eci-locations-row .eci-col-md-6 ~ .eci-col-md-6,
  .eci-locations-row .eci-col-md-6 ~ .eci-col-md-3,
  .eci-locations-row .eci-col-md-7 ~ .eci-col-md-5 {
    padding-left: 0;
  }
}
.eci-terms-order-letter {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

.eci-field-output-block {
  margin: 1em 0;
  overflow: hidden;
}

.eci-field-name {
  font-weight: bold;
}

.eci-field-caption {
  vertical-align: top;
}

.eci-field-caption .eci-field-icon {
  vertical-align: top;
  color: #2393ba;
}

.eci-field-caption .eci-field-icon-image {
  width: 25px;
  min-height: 25px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

img.eci-field-icon {
  box-shadow: none !important;
  margin: 0 5px 0 0;
  display: inline-block !important;
  vertical-align: middle !important;
}

span.eci-field-icon {
  /* padding-right: 5px;
  width: 20px; */
  padding-right: 21px;
  width: 21px;
  line-height: 1.3;
  font-size: 1.3em;
}

.eci-listings-block .eci-field-content {
  display: inline-block;
}

.eci-listings-block .eci-field-content p {
  margin-bottom: 0;
}

.eci-listings-block .eci-field-content.eci-field-description {
  display: block;
}

.eci-listings-block .eci-field-addresses {
  display: inline;
}

.eci-listings-block .eci-field-addresses address {
  display: inline;
}

.eci-listings-block .eci-field-addresses address:after {
  content: "\a";
  white-space: pre;
}

.eci-field-output-block-address .eci-field-caption {
  display: inline-block;
}

.eci-content address {
  font-style: italic;
  margin: 0;
  line-height: inherit;
  font-size: inherit;
}

.eci-hours-field strong {
  display: inline-block;
  width: 160px;
}

.eci-week-day-input {
  width: auto;
  display: inline !important;
}

.eci-content .eci-category-label,
.eci-content .eci-tag-label {
  margin-bottom: 2px;
  padding: 7px;
  font-size: 12px;
  border-radius: 2px;
  background-color: #f3f4f7;
  border: 2px solid #2393ba;
  color: #2393ba;
  text-decoration: none;
}

.eci-field-output-block-string .eci-field-phone-content,
.eci-field-output-block-website .eci-field-content {
  color: #2393ba;
  font-weight: bold;
}

.eci-listings-block .eci-field-output-block-checkbox ul,
.eci-listing-single .eci-field-output-block-checkbox ul {
  display: block;
  overflow: auto;
}

.eci-listing-single .eci-field-output-block-checkbox ul {
  margin: 0;
}

.eci-fields-group .eci-field-output-block-checkbox ul {
  display: inline-block;
  width: calc(100% - 150px);
}

.eci-field-output-block-checkbox ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0 0 1em;
}

.eci-field-output-block-checkbox ul li:last-child {
  padding-bottom: 0;
}

.eci-listing-single ul.eci-checkboxes-columns-1 li {
  float: none;
  width: 100%;
}

.eci-listing-single ul.eci-checkboxes-columns-2 li {
  float: left;
  width: 50%;
}

.eci-listing-single ul.eci-checkboxes-columns-3 li {
  float: left;
  width: 33%;
}

@media screen and (max-width: 768px) {
  .eci-field-output-block-checkbox ul li {
    float: none;
    width: 100%;
  }
}
.eci-field-checkbox-item {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 19px;
  margin: 0px 5px 0 0;
  width: 19px;
  display: inline-block;
}

.eci-field-checkbox-item-checked span {
  color: #2393ba;
}

.eci-field-checkbox-item-unchecked span {
  color: #ff6d6d;
}

.eci-field-checkbox-item-unchecked {
  opacity: 0.4;
}

.eci-fields-group {
  margin: 1px 0;
  overflow: auto;
  width: 100%;
  position: relative;
}

.eci-single-listing-text-content-wrap .eci-fields-group:first-child {
  overflow: inherit;
  /* Wrap images gallery by the first fields group */
}

.eci-fields-group:after {
  clear: both;
  content: "";
  display: table;
}

.eci-fields-group .eci-fields-group-caption {
  border-bottom: 1px solid #cccccc;
  font-size: 1.3em;
  font-weight: bold;
  margin: -2em 0 0 0;
  padding: 0 1em 1em;
  overflow: hidden;
  text-transform: uppercase;
  box-sizing: border-box;
}

.eci-fields-group .eci-fields-group-title {
  // border-bottom: 4px solid #CCCCCC;
  // font-size: 1.3em;
  //  font-size: 1.6vw;
  //  font-weight: bold;
  // margin: 3em 0 0 0;
  margin: 2em 0 0 1em;
  // padding: 0 1em 1em;
  overflow: hidden;
  text-transform: uppercase;
  box-sizing: border-box;
}



@media screen and (max-width: 480px) {
  .eci-fields-group .eci-fields-group-title {
    margin: 0;
  }
}





.eci-fields-group .eci-fields-group-post-title {
  // border-bottom: 4px solid #CCCCCC;
  font-size: 1.3em;
  font-weight: bold;
  // margin: 3em 0 0 0;
  // margin: 1em 0 0 1em;
  padding: 1em 1em 0 1em;
  overflow: hidden;
  text-transform: uppercase;
  box-sizing: border-box;
}

.eci-fields-group .eci-fields-group-title-video {
  // border-bottom: 4px solid #CCCCCC;
  font-size: 1.3em;
  font-weight: bold;
  // margin: 3em 0 0 0;
  margin: 1em 0 0 1em;
  padding: 0 1em 1em;
  overflow: hidden;
  text-transform: uppercase;
  box-sizing: border-box;
}

.eci-fields-group .eci-fields-group-bottom {
  // border-bottom: 4px solid #CCCCCC;
  font-size: 1.3em;
  font-weight: bold;
  // margin: -3em 0 0 0;
  padding: 0 1em 1em;
  overflow: hidden;
  text-transform: uppercase;
  box-sizing: border-box;
}

.eci-fields-group .eci-field-output-block {
  border-bottom: 1px solid #cccccc;
  margin: 1em 0;
  // padding: 0 2em 1em;
  overflow: hidden;
}

.eci-fields-group .eci-field-button-block {
  border-bottom: 3px solid #cccccc;
  // margin: 1em 0;
  padding: 1em 1em 1em 1em;
  overflow: hidden;
}

.eci-fields-group .eci-field-output-block:last-child {
  border-bottom: none;
}

.eci-fields-group .eci-field-caption {
  // display: inline-block;
  padding: 0;
  // padding: 0 1em;
  vertical-align: top;
  width: auto; /* Changed from 140px  */
}




.eci-fields-group .eci-field-caption-short {
  width: auto;
}

.eci-fields-group .eci-field-content {
  // display: inline-block;
  padding: 0 2rem;
}

.eci-fields-group ul.eci-field-content {
  margin: 0;
}

.eci-fields-group .eci-field-content.eci-field-description {
  display: block;
}

.eci-fields-group .eci-field-content-image {
  background-color: var(--hhc-image-background);
  // width: 220px !Important;
  // width: 20em !Important;
  object-fit: cover !important;
  // max-height: 20em !Important;
  // height: 20em !Important;
  border: 0px !important;
  // border-top-left-radius: 15px !important;
  // border-top-right-radius: 15px !important;
}

/************************   AJAX COMMENTS   ************************/
.eci-comments-profile-pic {
  float: left;
  margin: 0 10px 10px 0;
}

.eci-comments-profile-pic-container {
  margin: 0 10px 0 0;
  display: block;
  float: left;
  height: 32px;
  width: 32px;
}

.eci-comments-profile-pic:last-child {
  margin: 0 0 10px 0;
}

#eci_comments_ajax_target {
  overflow: auto;
}

.eci-comments-container > .eci-comments-container {
  margin-left: 20px;
}

.eci-comments-container .callout-container {
  width: 100%;
}

.eci-comments-container img {
  border: 0;
  max-width: 100%;
}

.eci-comments-container .eci-comments-p {
  float: left;
  font: normal 14px/1.5em helvetica, sans-serif;
  padding: 10px;
  margin: 10px 0;
  width: 97%;
}

.eci-comments-container .eci-comments-content,
.eci-comments-container .eci-comments-content-form {
  border-top: 1px solid #ddd;
  float: left;
  width: 100%;
}

.eci-comments-container .eci-comments-content-form {
  margin: 20px 0;
}

.eci-comments-container textarea {
  height: 40px;
  min-height: 40px;
  width: 80%;
  resize: none;
  overflow: auto;
  vertical-align: top;
}

.eci-comments-container time {
  font: normal 11px/1 helvetica, sans-serif;
  margin: 10px 0 0;
  float: left;
}

.eci-comments-more-container {
  display: none;
  padding: 0 0 0 42px;
}

.eci-comments-more-container .eci-comments-field {
  float: left;
  padding: 0 5px 0 0;
  width: 33%;
}

.eci-comments-more-container .eci-comments-field:last-child {
  margin: 0;
}

.eci-comments-more-handle a {
  font-weight: bold;
  left: 5px;
  position: relative;
  text-transform: uppercase;
}

.eci-comments-content-form *:focus {
  outline: none;
}

.eci-comments-content-form input[type="url"],
.eci-comments-content-form input[type="email"],
.eci-comments-content-form input[type="text"],
.eci-comments-content-form textarea {
  border: 1px solid #bbb;
  font: normal 13px/1.3em Helvetica, sans-serif, arial;
  padding: 6px;
}

.eci-comments-more-container .eci-comments-field input[type="text"],
.eci-comments-more-container .eci-comments-field input[type="email"],
.eci-comments-more-container .eci-comments-field input[type="url"] {
  margin: 5px 0 0;
  width: 100%;
}

.eci-comments-content-form input[type="text"]:hover,
.eci-comments-content-form textarea:hover {
  border: 1px solid #333;
}

.eci-comments-content-comment-fields {
  background: rgba(0, 0, 0, 0.04);
}

.eci-comments-highlight {
  background: #ffffd7;
}

.eci-comments-administrator {
  border-left: 2px solid #f00;
  margin-left: -2px;
}

.eci-comments-allowed-tags-container {
  word-wrap: normal;
  margin: 5px 50px 5px 0;
  color: #c0c0c0;
  font-weight: 300;
  text-shadow: 1px 1px 0 #fff;
}

.eci-comments-content blockquote {
  font-style: italic;
  border-left: 1px solid #ddd;
  float: left;
  padding: 3px 10px;
  margin: 5px 0;
  color: #888;
}

/* .ui-widget-content.eci-dropdowns-menu {
	background-color: $dropdown-menu-background-color;
} */
/* full screen map requires menu to have giant z-index (when it is not on sticky-scroll map)  */
body > .eci-dropdowns-menu {
  z-index: 100002;
}

.eci-dropdowns-menu-search,
.ui-widget-content .eci-dropdowns-menu-search.ui-state-active {
  line-height: 1.7;
  border: none;
  background: none;
  font-weight: normal !important;
  margin: 0;
  color: #000000;
}

.ui-widget-content .eci-dropdowns-menu-search-listing.ui-state-active {
  font-weight: bold;
}

.eci-dropdowns-menu-search-counter,
.eci-dropdowns-menu-search-note {
  font-weight: normal;
  font-size: 10px;
  right: 8px;
  position: absolute;
}

.eci-dropdowns-menu-search-sublabel {
  display: block;
  font-size: 11px;
  color: #2d2d2d;
}

.eci-dropdowns-menu-search-sublabel b {
  color: #2d2d2d;
}

.eci-dropdowns-menu-search-root.eci-dropdowns-menu-search-term {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.eci-dropdowns-menu-search-term {
  padding-right: 50px;
}

.eci-dropdowns-menu.ui-autocomplete {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 -1px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  border: 1px solid #969696;
  border-top: 0;
}

.eci-content .ui-selectmenu-menu .ui-icon,
.eci-dropdowns-menu.ui-autocomplete .ui-icon {
  width: 32px;
  height: 32px;
  left: 9px;
  position: absolute;
}

.eci-dropdowns-menu.ui-autocomplete
  .eci-dropdowns-menu-search-listing
  .ui-icon {
  width: 42px;
  height: 42px;
  left: 4px;
}

.eci-dropdowns-menu.ui-menu .ui-menu-item {
  color: #000000;
  padding: 3px 8px 3px 50px !important;
  font-family: inherit;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid #e6dada;
}

.eci-dropdowns-menu .ui-menu-item:hover {
  border-bottom: 1px solid #e6dada;
  background: none;
  background-color: #dcf0f8;
  font-weight: inherit;
  color: #000000;
}

.eci-dropdowns-menu-only-address.ui-menu .ui-menu-item,
.eci-dropdowns-menu-only-address.ui-menu .ui-menu-item.ui-state-hover,
.eci-dropdowns-menu-only-address.ui-menu .ui-menu-item.ui-state-focus {
  padding: 3px 8px 3px 8px !important;
}

.eci-dropdowns-menu.ui-menu .ui-menu-item a {
  color: #000000;
}

.eci-dropdowns-menu.ui-menu .ui-menu-item a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.eci-content .eci-form-control.ui-autocomplete-input[readonly] {
  cursor: pointer;
  background-color: #ffffff;
}

/************************ Listings Block ************************/
.eci-featured-label {
  overflow: hidden;
  padding: 3px 5px;
  font-size: 90%;
  border-radius: 2px;
  background-color: #1f82a5;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.eci-sticky-ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  /* z-index: 1; */
  overflow: hidden;
  width: 65px;
  height: 65px;
  text-align: right;
}

.eci-sticky-ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 85px;
  display: block;
  box-shadow: 0 3px 10px -5px black;
  position: absolute;
  top: 14px;
  right: -18px;
  background-color: #1f82a5;
}

.eci-sticky-ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #1f82a5;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #1f82a5;
}

.eci-sticky-ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #1f82a5;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #1f82a5;
}

.eci-search-param {
  float: left;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #2393ba;
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 3px;
}

.eci-search-param .eci-search-param-delete {
  float: right;
  margin-left: 10px;
}

.eci-search-param .eci-search-param-delete,
.eci-search-param .eci-search-param-delete:hover,
.eci-search-param .eci-search-param-delete:focus,
.eci-search-param .eci-search-param-delete:visited {
  color: #ffffff;
  text-decoration: none;
}

.eci-visible-search-params:after {
  clear: both;
  content: " ";
  display: table;
}

.eci-listings-orderby {
  position: relative;
  display: inline-block;
}

.eci-listings-orderby-links-group {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border-radius: 5px;
}

.eci-listings-orderby:hover .eci-listings-orderby-links-group {
  display: block;
}

.eci-btn.eci-listings-orderby-link {
  display: block;
  padding: 10px;
  width: 100%;
  text-align: left;
  border-radius: 0;
}

.eci-btn.eci-listings-orderby-link:hover {
  background-color: #f1f1f1;
}

.eci-listings-block {
  margin-bottom: 20px;
}

.eci-listings-block-header {
  margin-bottom: 20px;
}

.eci-listings-block-content:after {
  clear: both;
  content: " ";
  display: table;
}

.eci-listing {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
}

article.eci-listing {
  clear: none;
}

.eci-listings-block .eci-listing {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.eci-listing.eci-hidden-content {
  border-top: 0;
  border-bottom: 0;
}

.eci-listings-list-view .eci-listing-text-content-wrap {
  padding-left: 10px;
}

.eci-listings-block .eci-listing-text-content-wrap-nologo {
  padding: 0;
}

.eci-single-listing-text-content-wrap {
  position: static;
}

.eci-single-listing-text-content-wrap:after {
  content: "";
  display: block;
  clear: both;
}

header.eci-listing-header {
  overflow: hidden;
}

header.eci-listing-header h2 {
  margin: 10px 0;
  padding: 0;
}

.eci-listings-block .eci-listing-logo-wrap .eci-featured-label {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  display: block;
  margin-top: 0;
}
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header {
  width: 100%;
  text-align: left;
  // padding: 10px;
  clear: none;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header:after {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #000000 50%
  );
  /* background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, #000000 50%); */
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
  z-index: -1;
}
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header h2 {
  line-height: 1.5em;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header h2,
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header h2 a,
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header h2 a:hover,
.eci-listings-block .eci-listing-logo-wrap header.eci-listing-header h2 a:focus,
.eci-listings-block
  .eci-listing-logo-wrap
  header.eci-listing-header
  h2
  a:visited {
  color: #ffffff;
}
.eci-listings-block .eci-listing-logo-wrap .eci-listing-date {
  color: #ffffff;
}

header.eci-listing-header h2 a,
header.eci-listing-header h2 a:hover,
header.eci-listing-header h2 a:focus,
header.eci-listing-header h2 a:visited {
  font-weight: bold;
  text-decoration: none;
}

.eci-author-link,
.eci-listing-date,
.eci-views-counter {
  float: none;
  margin-right: 10px;
}

.eci-meta-data:before,
.eci-meta-data:after {
  content: "";
  display: block;
  clear: both;
}

.eci-remove-from-favourites-list {
  position: absolute;
  right: -15px;
  top: -15px;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.eci-video-iframe {
  height: 400px !important;
  width: 100% !important;
  margin-bottom: 20px;
}

.eci-tab-content .fluidvids {
  padding-top: 400px !important;
}

em.eci-listing-date {
  font-size: 0.8em;
  display: block;
}

ul.eci-listing-tabs.eci-nav {
  margin: 20px 0;
}

/************************ Breadcrumbs ************************/
ol.eci-breadcrumbs {
  margin: 10px 0 20px 0 !important;
  padding: 0 !important;
  float: none;
}

ol.eci-breadcrumbs li {
  display: inline !important;
  list-style: outside none none !important;
  margin: 0 !important;
}

.eci-options-links,
.eci-found-listings {
  margin: 10px 0;
  overflow: hidden;
}

.eci-listings-block .eci-options-links a {
  text-decoration: none;
}

/************************ Listings Grid & Carousel ************************/
/* Maximum width of 768 pixels. */
@media screen and (max-width: 768px) {
  .eci-views-links {
    display: none;
  }

  .eci-listings-block .eci-listing-text-content-wrap {
    overflow: hidden;
  }
}
/* Maximum width of 768 pixels. */
@media screen and (max-width: 768px) {
  .eci-mobile-listings-grid-2 .eci-listing {
    float: left;
  }

  .eci-mobile-listings-grid-2 .eci-listings-block-content {
    margin-left: -15px;
    margin-right: -15px;
  }

  .eci-mobile-listings-grid-2 .eci-listing .eci-listing-logo-wrap {
    float: none !important;
    width: 100% !important;
    margin: 0;
  }

  .eci-mobile-listings-grid-2 .eci-listing .eci-listing-text-content-wrap {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .eci-mobile-listings-grid-2 .eci-listing {
    width: 49% !important;
  }

  .eci-mobile-listings-grid-2
    .eci-listings-block-content
    .eci-listing:nth-child(2n + 1) {
    clear: both;
    margin-right: 2%;
    margin-left: 0;
  }

  .eci-mobile-listings-grid-2
    .eci-listings-block-content
    .eci-listing:nth-child(2n) {
    margin-right: 0;
    margin-left: 0;
  }

  .eci-mobile-listings-grid-2
    figure.eci-listing-logo
    .eci-listing-logo-img-wrap {
    display: block;
    position: relative;
    width: 100%;
  }

  .eci-mobile-listings-grid-2
    figure.eci-listing-logo
    .eci-listing-logo-img-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .eci-mobile-listings-grid-2 figure.eci-listing-logo .eci-listing-logo-img {
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .eci-mobile-listings-grid-1
    figure.eci-listing-logo
    .eci-listing-logo-img
    img {
    width: auto !important;
  }
}
/* Minimum width of 769 pixels. */
@media screen and (min-width: 769px) {
  .eci-listings-grid .eci-listing {
    float: left;
  }

  .eci-listings-grid .eci-listings-block-content {
    margin-left: -15px;
    margin-right: -15px;
  }

  .eci-listings-grid .eci-listing .eci-listing-logo-wrap {
    float: none !important;
    width: 100% !important;
    margin: 0;
  }

  .eci-listings-grid .eci-listing .eci-listing-text-content-wrap {
    margin-left: 0 !important;
  }

  .eci-listings-grid-1 .eci-listing {
    width: 100% !important;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .eci-listings-grid-2 .eci-listing {
    width: 49% !important;
  }

  .eci-listings-grid-2
    .eci-listings-block-content
    .eci-listing:nth-child(2n + 1) {
    clear: both;
    margin-right: 2%;
    margin-left: 0;
  }

  .eci-listings-grid-2 .eci-listings-block-content .eci-listing:nth-child(2n) {
    margin-right: 0;
    margin-left: 0;
  }

  .eci-listings-grid-3 .eci-listing {
    width: 32% !important;
  }

  .eci-listings-grid-3
    .eci-listings-block-content
    .eci-listing:nth-child(3n + 1) {
    clear: both;
    margin-right: 2%;
    margin-left: 0;
  }

  .eci-listings-grid-3
    .eci-listings-block-content
    .eci-listing:nth-child(3n + 2) {
    margin-right: 2%;
    margin-left: 0;
  }

  .eci-listings-grid-3 .eci-listings-block-content .eci-listing:nth-child(3n) {
    margin-left: 0;
    margin-right: 0;
  }

  .eci-listings-grid-4 .eci-listing {
    width: 24.25% !important;
  }

  .eci-listings-grid-4
    .eci-listings-block-content
    .eci-listing:nth-child(4n + 1) {
    clear: both !important;
    margin-right: 1% !important;
    margin-left: 0 !important;
  }

  .eci-listings-grid-4
    .eci-listings-block-content
    .eci-listing:nth-child(4n + 2),
  .eci-listings-grid-4
    .eci-listings-block-content
    .eci-listing:nth-child(4n + 3) {
    margin-right: 1% !important;
    margin-left: 0 !important;
  }

  .eci-listings-grid-4 .eci-listings-block-content .eci-listing:nth-child(4n) {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.eci-listings-carousel {
  position: relative;
  overflow: hidden;
}

.eci-listings-carousel .eci-listings-block-content {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  position: relative;
}

.eci-listings-carousel .eci-listing {
  float: left;
  border: 0;
}

.eci-listings-carousel .eci-listing .eci-listing-logo-wrap {
  float: none !important;
  width: 100% !important;
  margin: 0;
}

.eci-listings-carousel .eci-listing .eci-listing-text-content-wrap {
  margin-left: 0 !important;
}

.eci-listings-carousel .eci-listings-block-content .eci-listing {
  margin: 0 10px 0 0 !important;
}

.eci-listings-carousel-wrapper {
  position: relative;
  margin: 0 auto;
}

.eci-listings-carousel-button-left,
.eci-listings-carousel-button-right {
  position: absolute;
  top: calc(50% - 25px);
  color: #ffffff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
}

.eci-listings-carousel-button-left {
  left: -60px;
}

.eci-listings-carousel-button-right {
  right: -60px;
}

.eci-listings-carousel-button-left:hover,
.eci-listings-carousel-button-right:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .eci-listings-carousel-button-left,
  .eci-listings-carousel-button-right {
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 1;
  }

  .eci-listings-carousel-button-left {
    left: -5px;
  }

  .eci-listings-carousel-button-right {
    right: -5px;
  }
}
/************************ Listings Logo ************************/
.eci-listing-logo-wrap {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: relative;
}

.eci-listing-logo .eci-listing-logo-img {
  width: 100%;
}

figure.eci-listing-logo {
  margin: 0;
  padding: 0;
  position: relative;
}

figure.eci-listing-logo .eci-listing-logo-img-wrap {
  display: block;
  overflow: hidden;
}

/* listing logo will be square in grid view */
/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
  .eci-listings-grid figure.eci-listing-logo .eci-listing-logo-img-wrap {
    display: block;
    position: relative;
    width: 100%;
  }

  .eci-listings-grid figure.eci-listing-logo .eci-listing-logo-img-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .eci-listings-grid figure.eci-listing-logo .eci-listing-logo-img {
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .eci-listings-list-view .eci-listing .eci-listing-logo-wrap {
    float: left;
  }

  .eci-listings-list-view .eci-listing .eci-listing-logo-wrap:after {
    clear: both;
    content: " ";
    display: table;
  }
}
.eci-listings-carousel figure.eci-listing-logo .eci-listing-logo-img-wrap {
  display: block;
  position: relative;
  width: 100%;
}

.eci-listings-carousel
  figure.eci-listing-logo
  .eci-listing-logo-img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.eci-listings-carousel figure.eci-listing-logo .eci-listing-logo-img {
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

figure.eci-listing-logo .eci-listing-logo-img {
  max-width: 100%;
  display: block;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* We are working with background image, so hide native image */
figure.eci-listing-logo .eci-listing-logo-img img {
  visibility: hidden;
  float: none;
}

/* native image in grid view must not take place because we load high resolution images */
/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
  .eci-listings-grid figure.eci-listing-logo .eci-listing-logo-img img,
  .eci-listings-carousel figure.eci-listing-logo .eci-listing-logo-img img {
    width: 0;
  }
}
/* Maximum width of 768 pixels. */
@media screen and (max-width: 768px) {
  .eci-listings-block figure.eci-listing-logo .eci-listing-logo-img img {
    /* visibility: visible; */
    width: auto;
    max-width: 100%;
  }
}
/* hide figcaption for touchscreens and when we selected no effect */
.eci-touch figure.eci-listing-logo .eci-figcaption,
.eci-no-anim-style figure.eci-listing-logo .eci-figcaption {
  display: none;
}

figure.eci-listing-logo .eci-figcaption {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Maximum width of 768 pixels. */
@media screen and (max-width: 768px) {
  figure.eci-listing-logo .eci-figcaption {
    font-size: 18px;
    padding: 20px;
  }
}
figure.eci-listing-logo .eci-figcaption {
  height: 100%;
  margin: 0px auto;
  text-align: center;
}

figure.eci-listing-logo .eci-figcaption .eci-figcaption-middle {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.eci-figcaption-summary {
  color: #ffffff;
  padding: 0 10px;
}

.eci-figcaption-summary a,
.eci-figcaption-summary a:hover,
.eci-figcaption-summary a:visited,
.eci-figcaption-summary a:focus {
  color: #ffffff !important;
}

/* Hover Animation Style */
.eci-anim-style figure.eci-listing-logo figcaption {
  height: 100%;
  width: 100%;
  opacity: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.eci-anim-style figure.eci-listing-logo:hover figcaption {
  opacity: 0.9;
}

.eci-listing-figcaption-option a,
.eci-listing-figcaption-option a:hover,
.eci-listing-figcaption-option a:visited,
.eci-listing-figcaption-option a:focus {
  color: #ffffff !important;
  display: block;
}

/* Listing Figcaption options */
.eci-figcaption ul.eci-figcaption-options {
  padding: 10px 0;
  margin: 0;
}

.eci-figcaption li.eci-listing-figcaption-option {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.eci-figcaption li.eci-listing-figcaption-option:before,
.eci-figcaption li.eci-listing-figcaption-option:after {
  background: none;
  margin: 0;
  padding: 0;
  display: none;
}

.eci-figcaption li.eci-listing-figcaption-option a,
.eci-figcaption li.eci-listing-figcaption-option a:hover {
  text-decoration: none;
  border: none;
}

.eci-figcaption li.eci-listing-figcaption-option a span {
  font-size: 24px;
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 5px;
}

.eci-figcaption li.eci-listing-figcaption-option a span:hover {
  border: 2px solid #fff !important;
}

/************************ Listings Share buttons ************************/
.eci-content .eci-share-buttons {
  margin: 10px 0;
}

.eci-content .eci-share-button {
  margin: 0 10px 10px 0;
  display: inline-block;
}

.eci-content .eci-share-button a {
  text-decoration: none;
  box-shadow: none;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
}

.eci-content .eci-share-button a img {
  opacity: 0.5;
}

.eci-touch .eci-content .eci-share-button a img {
  opacity: 1;
}

.eci-content .eci-share-button a img:hover {
  opacity: 1;
}

.eci-share-count:after,
.eci-share-count:before {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.eci-share-count:after {
  border-color: rgba(224, 221, 221, 0);
  border-right-color: #f5f5f5;
  border-width: 5px;
  top: 50%;
  margin-top: -5px;
}

.eci-share-count:before {
  border-color: rgba(85, 94, 88, 0);
  border-right-color: #e0dddd;
  border-width: 6px;
  top: 50%;
  margin-top: -6px;
}

.eci-share-count {
  display: inline-block;
  font: 11px Arial, Helvetica, sans-serif;
  padding: 5px;
  border-radius: 6px;
  position: relative;
  border: 1px solid #e0dddd;
  background: none repeat scroll 0 0 #f5f5f5;
}

#eci-ajax-loader-overlay {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
}

.eci-ajax-target-loading {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.eci-loader:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #2393ba;
  border-bottom-color: #2393ba;
  animation: eci-spinner 0.8s ease infinite;
}

.eci-loader.eci-loader-max-top:before {
  top: 300px;
}

@keyframes eci-spinner {
  to {
    transform: rotate(360deg);
  }
}
.eci-search-input-reset:before {
  content: "\e014" !important;
  box-sizing: unset;
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin-top: 0;
  margin-left: 0;
  border-radius: 0;
  border: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.eci-search-input-loader:before {
  content: "" !important;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-top: -12px;
  margin-left: -12px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #777777;
  border-bottom-color: #777777;
  animation: eci-spinner 0.8s ease infinite;
}

.eci-ajax-iloader {
  margin: 0px auto;
  width: 50px;
  height: 22px;
  text-align: center;
  font-size: 10px;
}

.eci-ajax-iloader > div {
  background-color: #fff;
  margin-left: 3px;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.eci-ajax-iloader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.eci-ajax-iloader .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.eci-ajax-iloader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.eci-ajax-iloader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/************************ Maps and Info Window ************************/
.eci-maps-canvas {
  margin: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #ffffff;
}

.eci-maps-canvas .gm-style img {
  max-width: none !important;
  box-shadow: none !important;
}

.eci-maps-canvas .gm-style label {
  width: auto !important;
  display: inline !important;
}

/* This CSS rule will stop the vertical Google Map copyright label in IE */
.eci-maps-canvas .gm-style-cc > div {
  word-wrap: normal;
}

.eci-maps-canvas-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid #bdbdbd;
  margin-bottom: 20px;
}

.eci-maps-canvas-wrapper.eci-sticky-scroll {
  border-radius: 0;
  border: 0;
}

.eci-maps-direction-route {
  margin: 20px 0;
}

.eci-map-info-window {
  border-radius: 5px;
}

.eci-content .mapboxgl-popup-content {
  padding: 0;
}

.eci-map-info-window,
.eci-map-info-window-tongue {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}

.eci-map-info-window-title,
.eci-map-info-window-title a.eci-map-info-window-title-link,
.eci-map-info-window-title a.eci-map-info-window-title-link:hover,
.eci-map-info-window-title a.eci-map-info-window-title-link:visited,
.eci-map-info-window-title a.eci-map-info-window-title-link:focus {
  color: #ffffff;
}

.eci-map-info-window-title {
  padding: 5px;
  border-radius: 5px 5px 0 0;
}

.gm-style div.eci-map-info-window-title,
.gm-style div.eci-map-info-window-title a.eci-map-info-window-title-link,
.mapboxgl-map div.eci-map-info-window-title,
.mapboxgl-map div.eci-map-info-window-title a.eci-map-info-window-title-link {
  font-weight: bold !important;
  font-size: 14px !important;
}

.eci-map-info-window-title .eci-close-info-window {
  float: right;
  font-size: 16px !important;
  cursor: pointer;
}

.eci-map-info-window-logo {
  float: right;
  padding: 5px;
}

.gm-style div,
.gm-style span,
.gm-style label,
.gm-style a,
.mapboxgl-map div,
.mapboxgl-map span,
.mapboxgl-map label,
.mapboxgl-map a {
  font-size: 13px !important;
}

.eci-map-info-window-content {
  padding: 5px;
}

.eci-map-info-window-field {
  line-height: 1.7em;
}

.eci-map-field-icon {
  width: 12px;
  padding-right: 15px;
  vertical-align: top;
  line-height: 1.7em;
}

.eci-map-info-window-field strong {
  display: inline-block;
  width: 80px;
}

.eci-map-info-window-buttons,
.eci-map-info-window-buttons-single {
  padding: 5px;
}

.eci-map-listings-panel .eci-map-info-window-buttons,
.eci-map-listings-panel .eci-map-info-window-buttons-single {
  padding: 10px 0 0;
}

.eci-map-info-window-buttons a {
  width: 49%;
}

.eci-map-info-window-buttons a:first-child {
  float: left;
}

.eci-map-info-window-buttons a:last-child {
  float: right;
}

.eci-map-info-window-buttons-single a {
  float: none;
  width: 100%;
}

.infoBox > img {
  z-index: 100;
}

span.eci-show-on-map {
  cursor: pointer;
}

.eci-map-field-hours {
  display: inline-block;
}

/************************ Maps Draw Panel ************************/
.gm-style .eci-map-custom-controls {
  margin: 10px 10px 0;
}

.gm-style .eci-map-draw-panel {
  margin: 10px;
}

.eci-map-draw-panel button.eci-btn {
  display: block;
  border-radius: 0;
}

.eci-map-draw-panel button.eci-btn:first-child {
  border-radius: 2px 2px 0 0;
}

.eci-map-draw-panel button.eci-btn:last-child {
  border-radius: 0 0 2px 2px;
}

.eci-map-draw-panel button.eci-btn.eci-btn-primary,
.eci-map-draw-panel button.eci-btn.eci-btn-primary:hover,
.eci-map-draw-panel button.eci-btn.eci-btn-primary:focus,
.eci-map-draw-panel button.eci-btn.eci-btn-primary[disabled] {
  border-width: 1px;
  border-style: solid;
}

.eci-map-draw-panel button.eci-btn[disabled] {
  opacity: 0.75;
}

.eci-map-draw-panel button.eci-btn.eci-btn-primary.eci-btn-active {
  background: gray !important;
}

/************************ Maps Markers ************************/
.eci-map-marker,
.eci-map-marker-empty {
  border-radius: 50% 50% 50% 0;
  height: 40px;
  margin: -30% 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 40px;
  cursor: pointer;
  text-align: center;
}

.eci-map-marker:after {
  background: #fff none repeat scroll 0 0;
  border-radius: 50%;
  content: "";
  display: block;
  height: 78%;
  left: 11%;
  position: absolute;
  top: 11%;
  width: 78%;
}

.eci-map-marker-empty:after {
  background: #fff none repeat scroll 0 0;
  border-radius: 50%;
  content: "";
  display: block;
  height: 40%;
  left: 32%;
  position: absolute;
  top: 28%;
  width: 40%;
}

.eci-map-marker .eci-map-marker-icon {
  font-size: 22px !important;
  position: relative;
  top: 22%;
  left: 1%;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1;
  vertical-align: middle;
}

.eci-mapbox-marker,
.eci-mapbox-cluster {
  cursor: pointer;
}

.eci-mapbox-cluster {
  width: 40px;
  height: 40px;
  background-color: #006893;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
}

.eci-mapbox-cluster-extrasmall {
  background-color: rgba(181, 226, 140, 0.8);
  color: black;
}

.eci-mapbox-cluster-small {
  background-color: rgba(240, 194, 12, 0.8);
  color: black;
}

.eci-mapbox-cluster-medium {
  background-color: rgba(241, 211, 87, 0.8);
  color: black;
}

.eci-mapbox-cluster-large {
  background-color: rgba(253, 156, 115, 0.8);
  color: black;
}

.eci-mapbox-cluster-extralarge {
  background-color: rgba(241, 128, 23, 0.8);
  color: black;
}

/************************ Map Search ************************/
.eci-maps-canvas-wrapper .eci-btn {
  padding: 8px 10px;
  font-size: 14px;
  height: 40px;
}

.eci-map-search-wrapper {
  width: 345px;
  height: 48px;
  z-index: 2;
  position: absolute;
  top: 20px;
  left: 10px;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 -1px 0px rgba(0, 0, 0, 0.1);
}

.eci-map-search-panel-wrapper {
  height: 100%;
  width: 365px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  background-color: #ffffff;
  overflow: visible;
  margin-left: -365px;
}

.eci-sidebar-open .eci-map-search-panel-wrapper {
  margin-left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.eci-maps-canvas.eci-sidebar-open {
  margin-left: 365px;
  width: calc(100% - 365px) !important;
}

.eci-maps-canvas.mapboxgl-map.eci-sidebar-open {
  margin-left: 0;
  width: 100% !important;
  transition: none;
}

.eci-map-search-toggle-container {
  width: 48px;
  height: 48px;
  position: absolute;
  background-color: #ffffff;
  border-radius: 2px 0 0 2px;
}

.eci-map-search-toggle {
  width: 48px;
  height: 48px;
  display: block;
  padding: 12px;
  cursor: pointer;
}

.eci-map-search-toggle::before {
  content: "";
  display: block;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAENJREFUeNpi/P//PwMtARMDjcGoBQNvAQsyh5GRkSpJCpgyGQfGByBPjEYyoSCiVrkxGsmjkUxFwDhao41aQDEACDAAGC4MNf+J1i8AAAAASUVORK5CYII=");
  height: 24px;
  width: 24px;
  opacity: 0.62;
}

.eci-sidebar-open .eci-map-search-toggle::before {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMZJREFUeNrsldENgzAMRBN2SIagZf8v0h1amCc9q0ZC1HZqKqSqItJ9kdyz7Evoaq3hSHXh4HUC9gFijAM0QgkKDWWoQBeRIE0eq9An6AElo8AMzbx3FL0UQGJzC7I2v9MeD2CBTGwwbSBv5mo3DIAEyZr5XsBS7Roimn8D2LZENNcAP3HRqPob1HOiqE0DRzk1TzdaJA1UjbB3BtkYqBhhD8AyVyPsAZSGuRTh4gFc6W35aIgvCBXUS15Ryf35w/kjwFOAAQD4GtEHKMueeAAAAABJRU5ErkJggg==");
}

.eci-map-sidebar-toggle-container {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 1;
  margin-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
}

.eci-map-sidebar-toggle {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAUCAQAAAAXDMSnAAAAi0lEQVR4AX3JQcqBURQG4O/+9WNG30D3vOfSDTuQsgcZyBakZANSzMVMBme3zsBI5/VMn4ZKLP5ki1E4tYejWpilxVUtzOEUD68odYmXR5BJNp/4zllXD2phllYvamHmirsayUkfJ5ruHzueTldC08kcT5YOY9xYujqQM03XKXuaLmEtNF1e1Nz89gbL+0do6OEwRwAAAABJRU5ErkJggg==)
    7px center/7px 10px no-repeat;
  background-color: #ffffff;
  transform: scaleX(-1);
  width: 23px;
  height: 48px;
  cursor: pointer;
  display: block;
}

.eci-sidebar-open .eci-map-sidebar-toggle-container {
  margin-left: 365px;
}

.eci-sidebar-open .eci-map-sidebar-toggle {
  transform: scaleX(1);
}

.eci-map-sidebar-toggle-container-mobile {
  display: none;
}

.eci-map-search-input-container {
  position: absolute;
  left: 0;
  width: 345px;
}

/* .eci-map-search-input-container input.eci-form-control,
.eci-map-search-input-container input.eci-form-control:focus {
	border-radius: $border-radius;
	border: none !important;
	padding-left: 55px;
} */
.eci-map-search-toggle {
  width: 48px;
  height: 48px;
}

.eci-map-search-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  border-left: 1px solid #cccccc;
  height: 28px;
}

.eci-map-search-panel {
  padding: 88px 10px 20px 10px;
}

.eci-no-map-search-categories .eci-map-search-panel {
  padding: 20px 10px 20px 10px;
}

.eci-map-listings-panel {
  overflow-y: scroll;
  height: calc(100% - 233px);
  position: relative;
}

.eci-no-map-search-categories .eci-map-listings-panel {
  height: calc(100% - 138px);
}

.eci-no-map-search-locations .eci-map-listings-panel {
  height: calc(100% - 88px);
  padding-top: 88px;
}

.eci-no-map-search-form .eci-map-listings-panel {
  height: 100%;
}

/* It works with devices width less than 768 pixels. */
@media screen and (max-width: 768px) {
  .eci-map-full-screen .eci-map-search-form {
    display: none;
  }

  .eci-map-search-input-container {
    width: 100%;
    position: inherit;
    padding: 20px 10px;
  }

  .eci-maps-canvas.eci-sidebar-open {
    margin-left: 0;
    width: 100% !important;
  }

  .eci-sidebar-open .eci-map-search-wrapper {
    width: 100%;
    position: inherit;
    height: 68px;
    box-shadow: none;
  }

  .eci-map-search-panel {
    padding: 10px 10px 20px 10px;
  }

  .eci-map-search-toggle-container {
    display: none;
  }

  .eci-map-listings-panel {
    height: calc(100% - 165px);
  }

  .eci-map-search-wrapper,
  .eci-map-search-panel-wrapper {
    display: none;
    height: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .eci-map-search-panel-wrapper {
    height: 600px;
    width: 100%;
    position: relative;
    margin-left: 0;
    box-shadow: none !important;
  }

  .eci-sidebar-open .eci-map-search-wrapper,
  .eci-sidebar-open .eci-map-search-panel-wrapper {
    display: block;
  }

  .eci-map-sidebar-toggle-container {
    display: none;
  }

  .eci-map-sidebar-toggle-container-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 24px);
    z-index: 1;
    margin-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
    width: 48px;
    background-color: white;
    text-align: center;
    height: 23px;
    cursor: pointer;
  }

  .eci-map-sidebar-toggle-container-mobile .eci-map-sidebar-toggle {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAUCAQAAAAXDMSnAAAAi0lEQVR4AX3JQcqBURQG4O/+9WNG30D3vOfSDTuQsgcZyBakZANSzMVMBme3zsBI5/VMn4ZKLP5ki1E4tYejWpilxVUtzOEUD68odYmXR5BJNp/4zllXD2phllYvamHmirsayUkfJ5ruHzueTldC08kcT5YOY9xYujqQM03XKXuaLmEtNF1e1Nz89gbL+0do6OEwRwAAAABJRU5ErkJggg==)
      7px center/7px 10px no-repeat;
    background-color: #ffffff;
    transform: rotate(-90deg);
    height: 23px;
    display: inline-block;
  }

  .eci-sidebar-open
    .eci-map-sidebar-toggle-container-mobile
    .eci-map-sidebar-toggle {
    transform: rotate(90deg);
  }
}
/* It works with devices width more than 769 pixels. */
@media screen and (min-width: 769px) {
  .eci-map-search-input-container input.eci-form-control,
  .eci-map-search-input-container input.eci-form-control:focus {
    border-radius: 2px;
    border: none !important;
    padding-left: 55px;
  }
}
article.eci-listing-location {
  overflow: hidden;
  clear: both;
  padding: 20px 10px;
}

.eci-listing-location-content {
  overflow: auto;
}

.eci-map-listing-logo-wrap {
  float: left;
  width: 150px;
  margin-right: 10px;
}

.eci-map-listing-content-wrap {
  overflow: hidden;
}

header.eci-map-listing-header {
  float: none;
  padding: 0;
  margin: 0;
  clear: none;
  overflow: hidden;
}

header.eci-map-listing-header h2 {
  margin: 0;
  font-size: 16px;
}

.eci-map-listing-field {
  font-size: 13px !important;
  line-height: 1.7em;
  /* white-space: nowrap; */
}

.eci-map-listing-field-icon {
  margin-right: 5px;
  width: 12px;
  vertical-align: inherit;
}

.eci-map-listing-field-address address,
.eci-map-listing-field-address address.eci-location {
  display: inline;
}

.eci-map-listing-field-hours .eci-map-listing-field-icon {
  vertical-align: top;
}

.eci-map-listing-field-hours strong {
  display: inline-block;
  width: 40px;
}

.eci-updated,
.eci-error,
.eci-no-found-listings {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  display: block;
}

.eci-updated p,
.eci-updated div,
.eci-error p,
.eci-error div {
  margin: 1em !important;
  padding: 0;
}

.eci-updated {
  background-color: #ffffe0;
  border-color: #e6db55;
}

.eci-error {
  background-color: #ffebe8;
  border-color: #cc0000;
}

.eci-no-found-listings {
  background-color: #fff5f4;
  border-color: #fbc5c5;
}

/************************ Misc ************************/
.eci-contact-form label {
  display: block;
}

input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

a.eci-hint-icon:before {
  content: "\f059";
}

a.eci-hint-icon {
  font-family: "FontAwesome" !important;
  text-decoration: none !important;
  font-size: 24px;
}

.eci-popover {
  width: 100%;
}

.eci-print-buttons {
  margin: 10px;
}

@media print {
  .eci-print {
    margin: 0;
    padding: 0;
  }

  .eci-print-buttons {
    display: none;
  }
}
/*
print landscape

.eci-print {
	size: landscape;
	-webkit-transform: rotate(-90deg); 
	-moz-transform:rotate(-90deg);
	filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	page-break-before: avoid;
	width:100%;
	height:100%;
} */
/************************ Our plugin section in settings manager ************************/
.eci-our-plugins {
  margin: 100px 0;
}

.eci-our-plugins ul:after {
  content: "";
  clear: both;
  display: table;
}

.eci-our-plugins li {
  list-style: none;
  float: left;
  margin: 0 20px 20px 0;
}

.eci-our-plugins li img {
  width: 440px;
}

/************************ Frontpanel Buttons ************************/
.eci-directory-frontpanel {
  margin-bottom: 10px;
}

.eci-listing-single .eci-directory-frontpanel {
  margin: 0;
  float: right;
}

@media screen and (max-width: 768px) {
  .eci-listing-single .eci-directory-frontpanel {
    float: none;
  }
}
.eci-directory-frontpanel a.eci-btn {
  margin: 10px 10px 10px 0;
}

/* Avoid fluid-width-video-wrapper */
.eci-content .fluid-width-video-wrapper {
  padding-top: 0 !important;
  height: 400px !important;
}

.g-recaptcha {
  margin: 10px 0;
}

.eci-red-asterisk {
  color: red;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1px;
  padding: 2px;
}

/************************ Lightbox styles  ************************/
.eci-content .lb-prev,
.eci-content .lb-next {
  outline: 0 none !important;
}

/* 
	Bootstrap has default img max-width set to 100% and for some reason lightbox stops resizing
	http://stackoverflow.com/questions/17523977/lightbox-v2-shrinks-the-image-in-the-box
*/
.lb-image {
  max-width: inherit;
}

.lb-number {
  display: none !important;
}

/************************ Profile template ************************/
.dashicons,
.dashicons-before::before {
  line-height: inherit;
}

/************************ Adapted for Contact Fotm 7 plugin ************************/
.eci-content .wpcf7-form .wpcf7-text,
.eci-content .wpcf7-form .wpcf7-select,
.eci-content .wpcf7-form .wpcf7-number,
.eci-content .wpcf7-form .wpcf7-date,
.eci-content .wpcf7-form .wpcf7-textarea {
  width: 100%;
}

div.eci-content .wpcf7-form .wpcf7-submit,
div.eci-content
  .wpcf7-form
  .wpcf7-submit:hover
  div.eci-content
  .wpcf7-form
  .wpcf7-submit:visited,
div.eci-content .wpcf7-form .wpcf7-submit:focus {
  background-image: none;
}

/************************ Paginator ************************/
.eci-content .eci-pagination > li:first-child > a,
.eci-content .eci-pagination > li:first-child > span {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.eci-content .eci-pagination > li:last-child > a,
.eci-content .eci-pagination > li:last-child > span {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.eci-content
  .eci-pagination
  .eci-btn-group
  > .eci-btn:first-child:not(:last-child):not(.eci-dropdown-toggle) {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.eci-content
  .eci-pagination
  .eci-btn-group
  > .eci-btn:last-child:not(:first-child),
.eci-content
  .eci-pagination
  .eci-btn-group
  > .eci-dropdown-toggle:not(:first-child) {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.eci-content .eci-pagination-wrapper {
  text-align: center;
  margin: 20px 0;
}
.eci-content .eci-pagination li {
  margin: 0;
}

/************************ Top Admin Bar ************************/
#wpadminbar #wp-admin-bar-edit-listing > a::before {
  content: "\f464";
  top: 2px;
}

/************************ Badges ************************/
.eci-badge.eci-listing-status-active,
.eci-badge.eci-invoice-status-paid {
  background-color: #5bb75b;
}

.eci-badge.eci-listing-status-expired {
  background-color: #da4f49;
}

.eci-badge.eci-listing-status-unpaid,
.eci-badge.eci-invoice-status-unpaid {
  background-color: #faa732;
}

.eci-badge.eci-listing-status-stopped,
.eci-badge.eci-invoice-status-pending {
  background-color: #000000;
}

.eci-payments-free {
  font-weight: bold;
}

.eci-choose-plan .eci-payments-free {
  color: #ffffff;
}

.eci-price {
  font-size: 3em;
  line-height: normal;
}

.eci-price-period {
  font-size: 0.5em;
}

.eci-price-cents {
  vertical-align: super;
  font-size: 50%;
}

.eci-payment-method {
  float: left;
  padding: 2%;
  width: 28%;
  text-align: center;
}

.eci-payment-method > a {
  font-weight: bold;
}

.eci-payment-gateway-icon {
  margin-bottom: 20px;
}

.widefat td,
.widefat th {
  padding: 8px 10px;
}

#eci_invoice_payment.postbox .inside {
  overflow: auto;
}

.eci-rating {
  font-size: 18px;
  display: inline-block;
  margin: 5px 0;
  vertical-align: middle;
}

.eci-dashboard-listings .eci-rating {
  margin-left: 10px;
}

.eci-rating-stars {
  overflow: hidden;
}

.eci-maps-canvas .eci-rating-icon {
  font-size: 18px !important;
}

label.eci-rating-icon {
  margin: 0;
  float: right;
  color: #ffb300;
  padding-left: 2px;
  font-size: 20px;
  font-weight: normal;
}

.eci-rating-active label.eci-rating-icon {
  cursor: pointer;
}

.eci-rating-icon:last-child {
  padding-left: 0;
}

.eci-rating-active .eci-rating-icon:hover:before,
.eci-rating-active .eci-rating-icon:hover ~ .eci-rating-icon:before {
  content: "\f005" !important;
  color: #cb8e00;
}
.eci-rating-active.eci-rating-stars:hover .eci-rating-icon:before {
  content: "\f006";
}

.eci-rating-avgvalue {
  display: block;
  position: relative;
  top: -2px;
  float: right;
  margin-left: 5px;
}

.eci-rating-avgvalue span {
  border-radius: 50%;
  color: #fff;
  display: block;
  font-family: inherit; /*  font-family: Arial !important;  */
  font-size: 11px !important;
  padding: 5px;
  line-height: 15px;
  background-color: #2393ba;
  text-align: center;
}

.eci-dropdowns-menu-search .eci-rating {
  margin: 0;
}

.eci-dropdowns-menu-search label.eci-rating-icon {
  font-size: 16px;
}

.eci-range-slider-criteria-label {
  margin-bottom: 10px;
}

.eci-range-slider-wrapper {
  height: 70px;
  position: relative;
}

.eci-range-slider {
  width: calc(100% - (73px));
  display: inline-block;
  position: relative;
}

input[type="range"].eci-range-slider-input {
  display: inline;
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  outline: none;
  padding: 0;
  margin: 0;
  background-color: #428bca;
}

input[type="range"].eci-range-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -7px;
  width: 6px;
  height: 25px;
  border: 0;
  border-radius: 3px;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}

input[type="range"].eci-range-slider-input::-moz-range-thumb {
  width: 6px;
  height: 25px;
  border: 0;
  border-radius: 3px;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}

input[type="range"].eci-range-slider-input::-ms-thumb {
  width: 6px;
  height: 25px;
  border: 0;
  border-radius: 3px;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}

input[type="range"].eci-range-slider-input:hover {
  background: #428bca;
}

input[type="range"].eci-range-slider-input::-webkit-slider-thumb:hover {
  background: #428bca;
}

input[type="range"].eci-range-slider-input:active::-moz-range-thumb {
  background: #428bca;
}

input[type="range"].eci-range-slider-input:active::-ms-thumb {
  background: #428bca;
}

input[type="range"].eci-range-slider-input::-moz-range-track {
  background: #d7dcdf;
  height: 10px;
  border: 0;
}

input[type="range"].eci-range-slider-input::-webkit-slider-runnable-track {
  background: #d7dcdf;
  height: 10px;
  border: 0;
}

input[type="range"].eci-range-slider-input::-ms-track {
  background: #d7dcdf;
  height: 10px;
  border: 0;
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.eci-range-slider-value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #ffffff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #2c3e50;
  padding: 5px 10px;
  margin-right: 8px;
}

.eci-range-slider-value:after {
  position: absolute;
  top: 8px;
  right: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 7px solid #2c3e50;
  border-bottom: 7px solid transparent;
  content: "";
}

ul.eci-range-slider-labels {
  position: absolute;
  margin-top: 5px;
  width: 112.5%;
  margin-left: -6.25%;
  padding: 0;
  list-style: none;
  top: 17px;
  height: 37px;
}

ul.eci-range-slider-labels li {
  position: relative;
  float: left;
  width: 11.11%;
  text-align: center;
  color: #929292;
  font-size: 14px;
  cursor: pointer;
  margin: 0 0 6px;
}

ul.eci-range-slider-labels li::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 2px;
  height: 16px;
  background: #929292;
}

ul.eci-range-slider-labels .eci-range-slider-labels-selected::before {
  background: #428bca;
}

.eci-range-slider-labels-active.eci-range-slider-labels-selected::before {
  display: none;
}

.eci-progress-circle {
  font-size: 20px;
  margin: 20px auto;
  position: relative;
  padding: 0;
  width: 5em;
  height: 5em;
  background-color: #f2e9e1;
  border-radius: 50%;
  line-height: 5em;
}

.eci-progress-circle:after {
  border: none;
  position: absolute;
  top: 0.6em;
  left: 0.6em;
  text-align: center;
  display: block;
  border-radius: 50%;
  width: 3.8em;
  height: 3.8em;
  background-color: white;
  content: " ";
}

.eci-progress-circle span {
  position: absolute;
  line-height: 3.4em;
  width: 3.4em;
  text-align: center;
  display: block;
  color: #428bca;
  z-index: 2;
  font-size: 30px;
  font-weight: bold;
}

.eci-left-half-clipper {
  border-radius: 50%;
  width: 5em;
  height: 5em;
  position: absolute;
  clip: rect(0, 5em, 5em, 2.5em);
}

.eci-progress-circle.eci-over50 .eci-left-half-clipper {
  clip: rect(auto, auto, auto, auto);
}

.eci-value-bar {
  position: absolute;
  clip: rect(0, 2.5em, 5em, 0);
  width: 5em;
  height: 5em;
  border-radius: 50%;
  border: 1em solid #428bca;
  box-sizing: border-box;
}

.eci-progress-circle.eci-over50 .eci-first50-bar {
  position: absolute;
  clip: rect(0, 5em, 5em, 2.5em);
  background-color: #428bca;
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

.eci-progress-circle:not(.eci-over50) .eci-first50-bar {
  display: none;
}

.eci-progress-circle.p0 .eci-value-bar {
  display: none;
}

.eci-progress-circle.p1 .eci-value-bar {
  transform: rotate(4deg);
}

.eci-progress-circle.p2 .eci-value-bar {
  transform: rotate(7deg);
}

.eci-progress-circle.p3 .eci-value-bar {
  transform: rotate(11deg);
}

.eci-progress-circle.p4 .eci-value-bar {
  transform: rotate(14deg);
}

.eci-progress-circle.p5 .eci-value-bar {
  transform: rotate(18deg);
}

.eci-progress-circle.p6 .eci-value-bar {
  transform: rotate(22deg);
}

.eci-progress-circle.p7 .eci-value-bar {
  transform: rotate(25deg);
}

.eci-progress-circle.p8 .eci-value-bar {
  transform: rotate(29deg);
}

.eci-progress-circle.p9 .eci-value-bar {
  transform: rotate(32deg);
}

.eci-progress-circle.p10 .eci-value-bar {
  transform: rotate(36deg);
}

.eci-progress-circle.p11 .eci-value-bar {
  transform: rotate(40deg);
}

.eci-progress-circle.p12 .eci-value-bar {
  transform: rotate(43deg);
}

.eci-progress-circle.p13 .eci-value-bar {
  transform: rotate(47deg);
}

.eci-progress-circle.p14 .eci-value-bar {
  transform: rotate(50deg);
}

.eci-progress-circle.p15 .eci-value-bar {
  transform: rotate(54deg);
}

.eci-progress-circle.p16 .eci-value-bar {
  transform: rotate(58deg);
}

.eci-progress-circle.p17 .eci-value-bar {
  transform: rotate(61deg);
}

.eci-progress-circle.p18 .eci-value-bar {
  transform: rotate(65deg);
}

.eci-progress-circle.p19 .eci-value-bar {
  transform: rotate(68deg);
}

.eci-progress-circle.p20 .eci-value-bar {
  transform: rotate(72deg);
}

.eci-progress-circle.p21 .eci-value-bar {
  transform: rotate(76deg);
}

.eci-progress-circle.p22 .eci-value-bar {
  transform: rotate(79deg);
}

.eci-progress-circle.p23 .eci-value-bar {
  transform: rotate(83deg);
}

.eci-progress-circle.p24 .eci-value-bar {
  transform: rotate(86deg);
}

.eci-progress-circle.p25 .eci-value-bar {
  transform: rotate(90deg);
}

.eci-progress-circle.p26 .eci-value-bar {
  transform: rotate(94deg);
}

.eci-progress-circle.p27 .eci-value-bar {
  transform: rotate(97deg);
}

.eci-progress-circle.p28 .eci-value-bar {
  transform: rotate(101deg);
}

.eci-progress-circle.p29 .eci-value-bar {
  transform: rotate(104deg);
}

.eci-progress-circle.p30 .eci-value-bar {
  transform: rotate(108deg);
}

.eci-progress-circle.p31 .eci-value-bar {
  transform: rotate(112deg);
}

.eci-progress-circle.p32 .eci-value-bar {
  transform: rotate(115deg);
}

.eci-progress-circle.p33 .eci-value-bar {
  transform: rotate(119deg);
}

.eci-progress-circle.p34 .eci-value-bar {
  transform: rotate(122deg);
}

.eci-progress-circle.p35 .eci-value-bar {
  transform: rotate(126deg);
}

.eci-progress-circle.p36 .eci-value-bar {
  transform: rotate(130deg);
}

.eci-progress-circle.p37 .eci-value-bar {
  transform: rotate(133deg);
}

.eci-progress-circle.p38 .eci-value-bar {
  transform: rotate(137deg);
}

.eci-progress-circle.p39 .eci-value-bar {
  transform: rotate(140deg);
}

.eci-progress-circle.p40 .eci-value-bar {
  transform: rotate(144deg);
}

.eci-progress-circle.p41 .eci-value-bar {
  transform: rotate(148deg);
}

.eci-progress-circle.p42 .eci-value-bar {
  transform: rotate(151deg);
}

.eci-progress-circle.p43 .eci-value-bar {
  transform: rotate(155deg);
}

.eci-progress-circle.p44 .eci-value-bar {
  transform: rotate(158deg);
}

.eci-progress-circle.p45 .eci-value-bar {
  transform: rotate(162deg);
}

.eci-progress-circle.p46 .eci-value-bar {
  transform: rotate(166deg);
}

.eci-progress-circle.p47 .eci-value-bar {
  transform: rotate(169deg);
}

.eci-progress-circle.p48 .eci-value-bar {
  transform: rotate(173deg);
}

.eci-progress-circle.p49 .eci-value-bar {
  transform: rotate(176deg);
}

.eci-progress-circle.p50 .eci-value-bar {
  transform: rotate(180deg);
}

.eci-progress-circle.p51 .eci-value-bar {
  transform: rotate(184deg);
}

.eci-progress-circle.p52 .eci-value-bar {
  transform: rotate(187deg);
}

.eci-progress-circle.p53 .eci-value-bar {
  transform: rotate(191deg);
}

.eci-progress-circle.p54 .eci-value-bar {
  transform: rotate(194deg);
}

.eci-progress-circle.p55 .eci-value-bar {
  transform: rotate(198deg);
}

.eci-progress-circle.p56 .eci-value-bar {
  transform: rotate(202deg);
}

.eci-progress-circle.p57 .eci-value-bar {
  transform: rotate(205deg);
}

.eci-progress-circle.p58 .eci-value-bar {
  transform: rotate(209deg);
}

.eci-progress-circle.p59 .eci-value-bar {
  transform: rotate(212deg);
}

.eci-progress-circle.p60 .eci-value-bar {
  transform: rotate(216deg);
}

.eci-progress-circle.p61 .eci-value-bar {
  transform: rotate(220deg);
}

.eci-progress-circle.p62 .eci-value-bar {
  transform: rotate(223deg);
}

.eci-progress-circle.p63 .eci-value-bar {
  transform: rotate(227deg);
}

.eci-progress-circle.p64 .eci-value-bar {
  transform: rotate(230deg);
}

.eci-progress-circle.p65 .eci-value-bar {
  transform: rotate(234deg);
}

.eci-progress-circle.p66 .eci-value-bar {
  transform: rotate(238deg);
}

.eci-progress-circle.p67 .eci-value-bar {
  transform: rotate(241deg);
}

.eci-progress-circle.p68 .eci-value-bar {
  transform: rotate(245deg);
}

.eci-progress-circle.p69 .eci-value-bar {
  transform: rotate(248deg);
}

.eci-progress-circle.p70 .eci-value-bar {
  transform: rotate(252deg);
}

.eci-progress-circle.p71 .eci-value-bar {
  transform: rotate(256deg);
}

.eci-progress-circle.p72 .eci-value-bar {
  transform: rotate(259deg);
}

.eci-progress-circle.p73 .eci-value-bar {
  transform: rotate(263deg);
}

.eci-progress-circle.p74 .eci-value-bar {
  transform: rotate(266deg);
}

.eci-progress-circle.p75 .eci-value-bar {
  transform: rotate(270deg);
}

.eci-progress-circle.p76 .eci-value-bar {
  transform: rotate(274deg);
}

.eci-progress-circle.p77 .eci-value-bar {
  transform: rotate(277deg);
}

.eci-progress-circle.p78 .eci-value-bar {
  transform: rotate(281deg);
}

.eci-progress-circle.p79 .eci-value-bar {
  transform: rotate(284deg);
}

.eci-progress-circle.p80 .eci-value-bar {
  transform: rotate(288deg);
}

.eci-progress-circle.p81 .eci-value-bar {
  transform: rotate(292deg);
}

.eci-progress-circle.p82 .eci-value-bar {
  transform: rotate(295deg);
}

.eci-progress-circle.p83 .eci-value-bar {
  transform: rotate(299deg);
}

.eci-progress-circle.p84 .eci-value-bar {
  transform: rotate(302deg);
}

.eci-progress-circle.p85 .eci-value-bar {
  transform: rotate(306deg);
}

.eci-progress-circle.p86 .eci-value-bar {
  transform: rotate(310deg);
}

.eci-progress-circle.p87 .eci-value-bar {
  transform: rotate(313deg);
}

.eci-progress-circle.p88 .eci-value-bar {
  transform: rotate(317deg);
}

.eci-progress-circle.p89 .eci-value-bar {
  transform: rotate(320deg);
}

.eci-progress-circle.p90 .eci-value-bar {
  transform: rotate(324deg);
}

.eci-progress-circle.p91 .eci-value-bar {
  transform: rotate(328deg);
}

.eci-progress-circle.p92 .eci-value-bar {
  transform: rotate(331deg);
}

.eci-progress-circle.p93 .eci-value-bar {
  transform: rotate(335deg);
}

.eci-progress-circle.p94 .eci-value-bar {
  transform: rotate(338deg);
}

.eci-progress-circle.p95 .eci-value-bar {
  transform: rotate(342deg);
}

.eci-progress-circle.p96 .eci-value-bar {
  transform: rotate(346deg);
}

.eci-progress-circle.p97 .eci-value-bar {
  transform: rotate(349deg);
}

.eci-progress-circle.p98 .eci-value-bar {
  transform: rotate(353deg);
}

.eci-progress-circle.p99 .eci-value-bar {
  transform: rotate(356deg);
}

.eci-progress-circle.p100 .eci-value-bar {
  transform: rotate(360deg);
}

/************************ Color Picker panel ************************/
#eci-color-picker-panel {
  left: -177px;
  position: fixed;
  top: 25%;
  width: 227px;
  z-index: 100000;
}

#eci-color-picker {
  background-color: #f7ffff;
  float: left;
  padding: 5px;
  width: 170px;
  border-radius: 0 0 6px 0;
  box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.55);
}

#eci-color-picker table {
  line-height: 15px;
  margin-bottom: 10px;
  width: 100%;
  min-width: auto;
}

.eci-color-scheme-name {
  margin: 5px 0;
}

#eci-color-picker-panel-tools {
  width: 57px;
  height: 50px;
  background-color: #f7ffff;
  float: left;
  padding: 5px;
  border-radius: 0 6px 6px 0;
  box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.55);
  text-align: right;
  cursor: pointer;
}

#eci-color-picker-panel-tools img {
  display: inline;
  box-shadow: none;
  width: 40px;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.eci-color-option {
  cursor: pointer;
  padding: 3px;
  margin-bottom: 2px;
}

.eci-color-option.color-option:hover,
.eci-color-option.color-option.selected {
  background: none repeat scroll 0 0 #dddddd;
}

.eci-search-overlay {
  background: url("../images/search_overlay.png") no-repeat;
  background-repeat: repeat-y;
  background-size: 100% auto;
  /* overflow: auto; */
  padding: 15px;
}

.eci-search-form {
  border-radius: 2px;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
}

.eci-content a.eci-advanced-search-label,
.eci-content a.eci-advanced-search-label:hover,
.eci-content a.eci-advanced-search-label:focus {
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

.eci-advanced-search-toggle {
  font-size: 12px;
}

.eci-search-content-field {
  clear: both;
}

.eci-search-radius-label {
  /* margin-bottom: 20px; */
  font-size: 12px;
  line-height: 16px;
}

.eci-jquery-ui-slider {
  overflow: visible !important;
  /* margin-top: 5px; */
  padding-right: 11px;
}

.eci-submit-button-hidden {
  /* display: none !important; */
  position: absolute;
  left: -9999px;
}

.eci-on-row-button .eci-btn {
  width: 100%;
}

.eci-tax-dropdowns-wrap select {
  display: none;
}

/* Decrease gutters between search fields and submit button in one row */
/* Minimum width of 768 pixels. */
@media screen and (min-width: 992px) {
  .eci-col-md-5.eci-search-input-field-wrap ~ .eci-search-input-field-wrap,
  .eci-col-md-5.eci-search-input-field-wrap ~ .eci-search-submit-button-wrap,
  .eci-col-md-6.eci-search-input-field-wrap ~ .eci-search-input-field-wrap,
  .eci-col-md-6.eci-search-input-field-wrap ~ .eci-search-submit-button-wrap {
    padding-left: 0;
  }

  .eci-col-md-7.eci-search-datetime-input-wrap
    ~ .eci-col-md-5.eci-search-datetime-button-wrap {
    padding-left: 0;
  }

  .eci-col-md-10.eci-search-input-field-wrap ~ .eci-search-submit-button-wrap {
    padding-left: 0;
  }
}
.eci-search-form .eci-form-group .eci-radio:last-child,
.eci-search-form .eci-form-group .eci-checkbox:last-child {
  margin-bottom: 0 !important;
}

.eci-search-form .eci-search-content-field:last-child .eci-form-group,
.eci-search-form .eci-search-input-field-wrap:last-child .eci-form-group {
  /* margin-bottom: 0 !important; */
}

@media screen and (max-width: 768px) {
  .eci-field-search-block-select .eci-form-group,
  .eci-field-search-block-checkbox .eci-form-group,
  .eci-field-search-block-radio .eci-form-group {
    margin-bottom: 5px !important;
  }

  .eci-field-search-block-select .eci-form-group:last-child,
  .eci-field-search-block-checkbox .eci-form-group:last-child,
  .eci-field-search-block-radio .eci-form-group:last-child {
    margin-bottom: 15px !important;
  }
}
.eci-search-fields-block + .eci-search-form-bottom {
  margin-top: 15px;
}

.eci-search-fields-block[style*="none"] + .eci-search-form-bottom {
  margin-top: 0;
}

.eci-range-slider-scale {
  height: 35px;
  position: relative;
}

.eci-range-slider-scale label {
  position: absolute;
  width: 40px;
  text-align: center;
  margin-left: 4px;
  margin-top: -10px;
  font-size: 75%;
  font-weight: normal;
  transform: translateX(-50%);
}

.eci-range-slider-scale label span {
  display: block;
  font-size: 75%;
}

.eci-range-slider-scale label span.eci-range-slider-label {
  font-size: 100%;
}

@media screen and (max-width: 768px) {
  .eci-range-slider-scale label:nth-child(even) span.eci-range-slider-label {
    display: none;
  }
}
.eci-content p.eci-search-suggestions {
  margin-top: 5px;
  margin-bottom: 0;
  padding: 0;
}

.eci-content p.eci-search-suggestions a {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px dashed;
}

.eci-bx-wrapper {
  width: auto;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
  border: 0;
}

.eci-bx-wrapper .eci-bx-viewport {
  border: 0;
}

.eci-bx-wrapper .eci-bx-controls-direction a {
  outline: 0 none !important;
  border: none !important;
  text-indent: unset;
}

.eci-bx-wrapper img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.eci-bx-pager {
  margin: 20px;
  margin-bottom: 60px;
  text-align: center;
}

.eci-bx-pager a {
  margin: 0 3px;
  margin-bottom: 5px;
  display: inline-block;
}

.eci-bx-pager a img {
  width: auto;
  height: 60px !important;
  transition: 0.4s ease-in-out;
  border-radius: 5%;
  border: 1px solid #ffffff;
}

.eci-bx-wrapper a.eci-bx-prev,
.eci-bx-wrapper a.eci-bx-next {
  text-decoration: none !important;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  background: white;
  color: #666;
  width: 30px;
  height: 60px;
  text-align: center;
  z-index: 10;
  cursor: pointer;
}

.eci-bx-wrapper a.eci-bx-prev,
.eci-bx-wrapper a.eci-bx-next {
  opacity: 60%;
}

.eci-bx-wrapper a.eci-bx-prev:hover,
.eci-bx-wrapper a.eci-bx-next:hover {
  opacity: 90%;
}

.eci-bx-wrapper a.eci-bx-prev {
  left: 0;
  border-radius: 0 5px 5px 0;
}

.eci-bx-wrapper a.eci-bx-next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.eci-bx-wrapper a.eci-bx-prev:before,
.eci-bx-wrapper a.eci-bx-next:before {
  font-family: inherit;  /* font-family: "FontAwesome";  */
  font-size: 30px;
  line-height: 60px;
}

.eci-bx-wrapper a.eci-bx-next:before {
  content: "\f105";
}

.eci-bx-wrapper a.eci-bx-prev:before {
  content: "\f104";
}

.eci-bx-wrapper .eci-bx-caption {
  position: absolute;
  bottom: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
  color: #ffffff;
  font-family: inherit;   /* font-family: Arial; */
  font-size: 0.85em;
  padding: 10px;
}

.eci-dashboard-tabs-content h2 {
  margin-top: 40px;
  margin-bottom: 30px;
}

.eci-media-upload-wrapper {
  margin-bottom: 50px;
}

.eci-media-upload-wrapper:last-child {
  margin-bottom: 0;
}

.eci-editor-class {
  background-color: white;
  width: 100%;
}

.eci-submit-section {
  margin-bottom: 50px;
  background: #fbfbfb;
  border: 1px solid #cccccc;
  border-radius: 2px;
  padding: 0;
}

.eci-submit-section-adv {
  margin-bottom: 30px;
}

.eci-submit-section h3.eci-submit-section-label {
  border-bottom: 1px solid #cccccc;
  font-size: 18px;
  margin: 0;
  padding: 20px 10px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  color: #464646;
  background: #f3f3f3;
}

.eci-submit-section-inside {
  padding: 10px;
}

.eci-content .eci-choose-plan {
  border-width: 4px;
  border-style: solid;
  transition: all 0.2s ease-in-out;
}

.eci-choose-plan:hover,
.eci-choose-plan.eci-featured-level {
  box-shadow: 5px 0px 40px rgba(0, 0, 0, 0.2);
  /* transform: scale(1.15);
  z-index: 1; */
}

.eci-choose-plan {
  text-align: center;
}

.eci-content .eci-panel-heading.eci-choose-plan-head {
  color: #ffffff;
  border: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.eci-choose-plan-head.eci-featured h3 {
  font-size: 2em;
}

.eci-choose-plan-level h3 {
  font-size: 1.5em;
}

.eci-choose-plan-level {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.eci-choose-plan-head ins {
  background-color: inherit;
}

.eci-choose-plan-head a.eci-hint-icon,
.eci-choose-plan-head a.eci-hint-icon:hover {
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 24px;
}

.eci-choose-plan-head .eci-popover {
  color: #666666;
}

.eci-choose-plan-head.eci-featured .eci-price {
  font-size: 4em;
}

.eci-choose-plan-option {
  padding: 10px;
  border: 1px solid #cccccc;
}

.eci-choose-plan-option {
  margin: 0 0 -1px;
}

.eci-choose-plan-option:nth-child(even) {
  background: none repeat scroll 0 0 #fafafa;
}

.eci-choose-plan-option-wrapper {
  width: 210px;
  text-align: left;
  margin: 0 auto;
  font-size: 1.3em;
}

.eci-choose-plan-option-icon {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 23px;
  margin: 0px 10px 0 0;
  width: 25px;
  display: inline-block;
}

.eci-choose-plan-option-yes {
  color: #2393ba;
}

.eci-choose-plan-option-yes:after {
  content: "\f00c";
}

.eci-choose-plan-option-no {
  color: #ff6d6d;
}

.eci-choose-plan-option-no:after {
  content: "\f00d";
}

.eci-content .eci-plan-column {
  margin: 0 auto;
  display: inline-block;
  float: none;
  vertical-align: middle;
}

/* Maximum width of 800 pixels. */
@media screen and (max-width: 768px) {
  .eci-content .eci-plan-column {
    display: block;
    width: 100% !important;
  }
}
/* Categories Checkboxes List */
div.eci-categories-tree-panel {
  height: 300px;
  min-height: 42px;
  max-height: 950px;
  resize: vertical;
  overflow: auto;
  padding: 0.9em;
  margin-top: 1em;
  border: 1px solid #cccccc;
  border-radius: 2px;
}

ul.eci-categorychecklist {
  position: relative;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

ul.eci-categorychecklist,
ul.eci-categorychecklist li {
  list-style: none outside none !important;
}

ul.eci-categorychecklist li {
  line-height: 19px;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

ul.eci-categorychecklist li ul.children {
  margin-left: 12px;
}

ul.eci-categorychecklist li label {
  padding-left: 5px;
}

ul.eci-categorychecklist li.parent > .eci-category-parent {
  background-image: url("../images/plus_minus_icons.png");
  background-position: 25px center;
  display: inline-block;
  vertical-align: text-bottom;
  position: relative;
  height: 21px;
  width: 25px;
  cursor: pointer;
}

ul.eci-categorychecklist li > .eci-category-empty {
  display: inline-block;
  vertical-align: text-bottom;
  height: 21px;
  width: 25px;
}

ul.eci-categorychecklist span.eci-category-has-checked {
  background-image: url("../images/down_arrow.png");
  bottom: -2px;
  display: inline-block;
  height: 10px;
  position: absolute;
  right: -2px;
  width: 10px;
}

ul.eci-categorychecklist li.active > .eci-category-parent {
  background-position: 0 center;
}

ul.eci-categorychecklist li ul {
  border-left: 1px solid #cccccc;
  overflow: hidden;
  padding: 0 0 0 25px;
}

ul.eci-categorychecklist li ul li {
  position: relative;
}

ul.eci-categorychecklist li ul li:before {
  border-bottom: 1px dashed #cccccc;
  content: "";
  left: -20px;
  position: absolute;
  top: 12px;
  width: 15px;
}

.eci-dashboard {
  /* Maximum width of 768 pixels. */
}
.eci-dashboard a:hover {
  text-decoration: none;
}
.eci-dashboard .eci-td-listing-options {
  text-align: right;
}
.eci-dashboard .eci-td-listing-options .eci-dashboard-btn-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .eci-dashboard td {
    padding: 1px !important;
  }
  .eci-dashboard th {
    display: none;
  }
  .eci-dashboard .eci-rating {
    width: auto;
  }
  .eci-dashboard .eci-rating-stars {
    display: none;
  }
  .eci-dashboard .eci-td-listing-id {
    display: none;
  }
  .eci-dashboard .eci-td-listing-options {
    max-width: 100px !important;
  }
  .eci-dashboard .eci-td-listing-options .eci-btn {
    display: none;
  }
  .eci-dashboard .eci-td-listing-options .eci-dashboard-btn-mobile {
    display: block;
  }
}

.eci-table.eci-dashboard-listings {
  table-layout: auto;
}

.eci-table.eci-dashboard-listings td,
.eci-table.eci-dashboard-listings th {
  border: 0;
  text-align: left;
}

p.eci-description {
  margin: 10px 0;
}

/* Content fields */
.eci-delete-selection-item {
  float: left;
  margin-right: 5px;
  cursor: pointer;
}

.eci-content-fields-metabox .eci-field {
  padding: 20px 0;
  overflow: hidden;
}

.eci-content-fields-metabox .eci-field p.description {
  margin: 10px 0;
  float: none;
  clear: both;
}

.eci-content-fields-metabox .eci-field-input-select {
  min-width: 200px;
}

.eci-content-fields-metabox .eci-field-icon {
  box-shadow: none !important;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.eci-content-fields_metabox .eci-description-big {
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
}

.eci-content-fields-metabox .eci-field-checkbox-input {
  display: inline-block;
  width: 250px;
}

.eci-week-day-wrap,
.eci-week-day-clear-button {
  margin-top: 20px;
  margin-bottom: 20px;
}

.eci-week-day-wrap:first-child {
  margin-top: 0;
}

span.eci-week-day {
  display: inline-block;
  width: 160px;
}

/* Maximum width of 768 pixels. */
@media screen and (max-width: 768px) {
  span.eci-week-day {
    display: block;
  }

  span.eci-week-day-controls {
    display: block;
  }
}
/* Listing locations input */
.eci-locations-metabox {
  padding-bottom: 10px;
}

.eci-locations-metabox label {
  width: 100%;
}

.eci-location-in-metabox {
  border-bottom: 2px double #cccccc;
  padding: 25px 0;
  margin-bottom: 15px;
}

.eci-location-input {
  overflow: hidden;
}

input.eci-add-term-input {
  margin: 5px 0;
}

/* Icons selection dialog */
.eci-icons-theme-name {
  font-size: 14px;
  color: black;
  font-weight: bold;
  padding-bottom: 4px;
  text-align: center;
}

.eci-icons-theme-block {
  padding: 8px;
}

.eci-icon,
.eci-png-image,
.eci-fa-icon {
  padding: 3px;
  float: left;
  background-color: white;
  cursor: pointer;
  font-size: 25px !important;
}

.eci-icon:hover,
.eci-png-image:hover,
.eci-fa-icon:hover {
  background-color: #efefef;
}

.eci-selected-icon,
.eci-selected-icon:hover {
  background-color: #fca057;
}

#eci-upload-functions {
  margin: 20px 0 40px;
}

.eci-upload-option {
  margin: 10px 0;
}

.eci-attached-item,
.eci-upload-item {
  position: relative;
  color: #ffffff;
  float: left;
  margin: 0 20px 20px 0;
  background-color: #8d8d8d;
  width: 255px;
  height: 322px;
}

#eci-attached-videos-wrapper .eci-attached-item {
  height: 240px;
}

.eci-drop-attached-item,
.eci-attached-item-img {
  background-color: #ababab;
  border: 2px dashed #7e7e7e;
  height: 180px;
  margin: 10px;
  padding: 40px 0;
  text-align: center;
}

.eci-attached-item-img {
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.eci-btn.eci-upload-item-button {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.eci-drop-attached-item input[type="file"] {
  display: none;
}

.eci-attached-item-input,
.eci-attached-item-logo {
  margin: 10px;
}

.eci-attached-item-logo label {
  white-space: nowrap;
}

.eci-attached-item-delete {
  position: absolute;
  bottom: 10px;
  font-size: 23px;
  right: 10px;
  cursor: pointer;
}

.eci-attached-item-metadata {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: auto !important;
  /* sortable functions breaks layout without !important */
}

#eci-attached-images-wrapper .ui-sortable-placeholder {
  background-color: #fffbcc !important;
  display: inline-block;
  float: left;
  margin: 0 20px 20px 0;
}

.eci-move-label {
  cursor: move;
}

label.eci-fsubmit-contact {
  display: block;
  font-weight: bold;
  margin: 15px 0 5px;
}

ul.eci-dashboard-tabs.eci-nav {
  margin: 20px 0;
}

.dashicons,
.dashicons-before::before {
  line-height: inherit;
}

#pass-strength-result {
  background-color: #eee;
  border: 1px solid #cccccc;
  color: #23282d;
  margin: -2px 5px 5px 1px;
  padding: 3px 5px;
  text-align: center;
  width: 25em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
}

#pass-strength-result.short {
  background-color: #f1adad;
  border-color: #e35b5b;
  opacity: 1;
}

#pass-strength-result.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
  opacity: 1;
}

#pass-strength-result.good {
  background-color: #ffe399;
  border-color: #ffc733;
  opacity: 1;
}

#pass-strength-result.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
  opacity: 1;
}

#pass1.short,
#pass1-text.short {
  border-color: #e35b5b;
}

#pass1.bad,
#pass1-text.bad {
  border-color: #f78b53;
}

#pass1.good,
#pass1-text.good {
  border-color: #ffc733;
}

#pass1.strong,
#pass1-text.strong {
  border-color: #83c373;
}

.pw-weak {
  display: none;
}

.indicator-hint {
  padding-top: 8px;
}

#pass1-text,
.show-password #pass1 {
  display: none;
}

#pass1-text,
#pass1 {
  width: 25em;
}

.show-password #pass1-text {
  display: inline-block;
}

.wp-switch-editor {
  box-sizing: content-box;
}

/* close button on WP media window */
.screen-reader-text {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Listing Info metabox */
.eci-edit-listing-info-label {
  margin: 10px 0;
}

.eci-upload-image-form input[type="file"] {
  display: none;
}

.eci-upload-image {
  background-color: #ababab;
  /* border: 2px dashed #7e7e7e; */
  text-align: center;
  margin-bottom: 10px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10%;
}

.eci-upload-image-field-icon-image {
  width: 21px;
  min-height: 21px;
  border-radius: 0;
  background-color: transparent;
}

.eci-tokenizer {
  border-radius: 2px;
}

/************************   jquery.tokenize.css   ************************/
div.TokenizeMeasure,
div.Tokenize ul li span,
div.Tokenize ul.TokensContainer li.TokenSearch input {
  /*  font-family: Arial, Helvetica, sans-serif;  */
  font-size: 12px;
}

div.Tokenize {
  position: relative;
  display: inline-block;
  zoom: 1;
  width: 100%;
}

div.Tokenize ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

div.Tokenize ul li {
  white-space: nowrap;
}

div.Tokenize ul.TokensContainer {
  cursor: text;
  padding: 0 5px 10px 0;
  overflow-y: auto;
  background-color: white;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

div.Tokenize ul.TokensContainer.Autosize {
  height: auto;
}

div.Tokenize.Disabled ul.TokensContainer,
div.Tokenize.Disabled ul.TokensContainer input {
  cursor: not-allowed;
}

div.Tokenize ul.TokensContainer li.Token {
  border: 1px solid #ccd5e3;
  background-color: #eff2f7;
  padding: 0 5px;
  line-height: 18px;
}

div.Tokenize
  ul.TokensContainer.ui-sortable:not(.ui-sortable-disabled)
  li.Token {
  cursor: move;
}

div.Tokenize ul.TokensContainer li.Token.MovingShadow {
  border: 1px solid #fcefa1;
  background-color: #fbf9ee;
}

div.Tokenize ul.TokensContainer li.Token.PendingDelete {
  opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-filter: "alpha(opacity=50)";
  filter: alpha(opacity=50);
}

div.Tokenize ul.TokensContainer li.Token,
div.Tokenize ul.TokensContainer li.TokenSearch {
  margin: 5px 0 0 5px;
  height: 22px;
  float: left;
}

div.Tokenize ul.TokensContainer li.TokenSearch input {
  margin: 0;
  padding: 1px 0;
  background-color: transparent;
  line-height: 18px;
  border: none;
  outline: none;
}

div.Tokenize ul.TokensContainer li.Placeholder {
  color: #ddd;
  position: absolute;
  line-height: 20px;
  padding: 5px 0 0 5px;
  display: none;
}

div.Tokenize ul.TokensContainer,
div.Tokenize ul.Dropdown {
  border: 1px solid #969696;
}

div.Tokenize ul.TokensContainer li.Token a.Close {
  font-family: inherit;  /*  font-family: Arial, Helvetica, sans-serif !important;  */
  font-size: 16px !important;
  line-height: 18px;
  float: right;
  margin: 1px 0 0 5px;
  padding: 0;
  cursor: pointer;
  color: #a6b4ce;
}

div.Tokenize.Disabled ul.TokensContainer li.Token a.Close {
  display: none;
}

div.Tokenize ul.TokensContainer li.Token a.Close:hover {
  background: transparent;
  text-decoration: none;
}

div.Tokenize ul.Dropdown {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  width: 100%;
  padding: 5px 0;
  margin: -1px 0 0 0;
  position: absolute;
  background-color: white;
  overflow-y: auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  z-index: 20;
}

div.Tokenize ul.Dropdown li {
  padding: 5px 20px;
  overflow: hidden;
  cursor: pointer;
  margin: 2px;
}

div.Tokenize ul.Dropdown li.Hover {
  color: white;
  text-decoration: none;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#0088cc),
    to(#0077b3)
  );
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.eci-content .ui-slider .ui-slider-handle:before,
.eci-content .ui-slider .ui-slider-handle:after {
  content: none;
}
.eci-content .ui-slider .ui-slider-handle {
  z-index: 1 !important;
  cursor: pointer;
}
.eci-content .ui-widget-overlay {
  background-repeat: repeat !important;
  z-index: 5 !important;
}
.eci-content .ui-slider.ui-slider-horizontal .ui-widget-header {
  background: none;
  background-color: #1f82a5;
}
.eci-content .ui-slider.ui-slider-horizontal,
.eci-content .ui-slider.ui-slider-horizontal .ui-slider-range {
  height: 6px;
  top: -1px;
}
.eci-content .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}
.eci-content .ui-slider.ui-slider-horizontal {
  margin: 20px 0;
}
.eci-content .ui-slider .ui-slider-handle.ui-corner-all {
  top: -13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.eci-content .ui-slider.ui-widget-content .ui-slider-handle.ui-state-default,
.eci-content
  .ui-slider.ui-widget-content
  .ui-slider-handle.ui-state-default:focus,
.eci-content
  .ui-slider.ui-widget-content
  .ui-slider-handle.ui-state-default:active,
.eci-content .ui-slider.ui-widget-content .ui-slider-handle.ui-state-focus,
.eci-content .ui-slider.ui-widget-content .ui-slider-handle.ui-state-hover {
  border: 1px solid #1f82a5;
  border-width: 1px;
  background: none;
  background-color: #2393ba;
  font-weight: bold;
}

.eci-listings-sidebar-widget .eci-listings-block .eci-listing {
  margin-bottom: 20px;
}

.eci-listings-sidebar-widget .eci-listings-block .eci-listing:last-child {
  margin-bottom: 0;
}

.eci-widget-description {
  display: block;
  padding: 0 0 15px;
  margin: 0;
  font-style: normal;
  color: #72777c;
}

/************************  WooCommerce   ************************/
.eci-price .woocommerce-Price-amount {
  font-size: 1em;
}

.eci-price del .woocommerce-Price-amount {
  font-size: 0.7em;
}

.eci-page-header-widget {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #00a6c9;
  background-size: cover;
  background-position: center center;
  margin-bottom: 50px;
}

.eci-page-header-widget a {
  text-decoration: underline;
}

.eci-page-header-widget:after {
  background: #353a41;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.5;
}

.eci-content .eci-page-header-widget,
.eci-content .eci-page-header-widget h1,
.eci-content .eci-page-header-widget a,
.eci-content .eci-page-header-widget a:hover,
.eci-content .eci-page-header-widget a:focus,
.eci-content .eci-page-header-widget a:visited {
  color: #ffffff;
}

h1.eci-page-title-widget {
  font-size: 44px;
}

.eci-breadcrumbs .eci-trail-browse,
.eci-breadcrumbs .eci-trail-items,
.eci-breadcrumbs .eci-trail-items li {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  text-indent: 0;
}

.eci-breadcrumbs .eci-trail-browse {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}

.eci-breadcrumbs .eci-trail-items {
  list-style: none;
}

.eci-trail-items li::after {
  content: "\002F";
  padding: 0 0.5em;
}

.eci-trail-items li:last-of-type::after {
  display: none;
}


@media screen and (min-width: 688px) {
  .eci-listing-logo-wrap,
  .eci-single-listing-logo-wrap {
    direction: ltr;
    line-height: 1.7;
    // white-space: initial;
    width: 100%;
    // text-align: center;
    // margin: 10px 20px 20px 10px;
    // border-color: white;
    // border: 5px;
    // position: absolute;
    // top: 200px;
    // left: 30px;
    max-width: 12vw;
    max-height: 15vw;
    // float: none;
    box-sizing: border-box;
    background-color: #fff;
    // padding: 6px;
  }
}

@media screen and (max-width: 688px) {
  .eci-listing-logo-wrap,
  .eci-single-listing-logo-wrap {
    direction: ltr;
    line-height: 1.7;
    width: 100%;
    max-width: 20vw;
    max-height: 20vw;
    box-sizing: border-box;
    background-color: #fff;
  }
}

.eci-field-content .eci-field-addresses {
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  color: #6d6d6d;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: inherit;
  font-size: 14px;
  direction: ltr;
  line-height: 1.7;
  white-space: initial;
  box-sizing: border-box;
  display: inline-block;
  padding: 0 5px;
}

.slide {
  max-width: 210px;
  max-height: 210px;
  // border: 10px solid white;
  // padding: 15px;
  // background: white;
  background-clip: border-box;
  padding-top: 5px;
}
