/* SCRIPT : Inline Script */
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
/* SCRIPT : Inline Script */
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
/* SCRIPT : https://kothrud.com/wp-content/plugins/sigma-media-manager/build/css/gallery-block.css?ver=1.7.1 */
@media all {
/*
 * Sigma Gallery — front-end + editor styles.
 *
 * Plain CSS (no Tailwind): this loads on the public front end and inside every
 * page builder, none of which carry the plugin's `.smm-wrap` scope.
 */

.smm-gallery {
  display: grid;
  grid-template-columns: repeat(var(--smm-gallery-cols, 3), minmax(0, 1fr));
  gap: var(--smm-gallery-gap, 12px);
  margin: 0 0 1.5em;
  padding: 0;
  list-style: none;
}

.smm-gallery__item {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.smm-gallery__link {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.smm-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Cropped: uniform squares regardless of source ratio. */
.smm-gallery--crop .smm-gallery__img {
  aspect-ratio: 1 / 1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Older browsers without aspect-ratio support fall back to a padded box. */
@supports not (aspect-ratio: 1 / 1) {
  .smm-gallery--crop .smm-gallery__item {
    padding-top: 100%;
  }
  .smm-gallery--crop .smm-gallery__link,
  .smm-gallery--crop .smm-gallery__img {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}

.smm-gallery__caption {
  margin: 0;
  padding: 6px 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #555;
  text-align: center;
}

.smm-gallery__link:hover .smm-gallery__img {
  opacity: 0.92;
  transition: opacity 0.15s ease;
}

.smm-gallery--empty {
  display: block;
  border: 1px dashed #c3c4c7;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  color: #757575;
  background: #f6f7f7;
}

/* Responsive column drop-down. */
@media (max-width: 782px) {
  .smm-gallery {
    grid-template-columns: repeat(
      min(var(--smm-gallery-cols, 3), 3),
      minmax(0, 1fr)
    );
  }
}

@media (max-width: 480px) {
  .smm-gallery {
    grid-template-columns: repeat(
      min(var(--smm-gallery-cols, 3), 2),
      minmax(0, 1fr)
    );
  }
}

/* ---- Lightbox ---- */

body.smm-lightbox-open {
  overflow: hidden;
}

.smm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.smm-lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.smm-lightbox__figure {
  margin: 0;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smm-lightbox__img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.smm-lightbox__caption {
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 80vw;
}

.smm-lightbox__close,
.smm-lightbox__nav {
  position: absolute;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s ease;
  padding: 8px;
}

.smm-lightbox__close:hover,
.smm-lightbox__nav:hover {
  opacity: 1;
}

.smm-lightbox__close {
  top: 16px;
  right: 20px;
  font-size: 40px;
}

.smm-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
}

.smm-lightbox__prev {
  left: 12px;
}

.smm-lightbox__next {
  right: 12px;
}

.smm-lightbox__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .smm-lightbox__nav {
    font-size: 40px;
  }
  .smm-lightbox__close {
    font-size: 32px;
  }
}

/* ---- Block editor: Image Source inspector ---- */

.smm-gi {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.smm-gi__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1e1e1e;
}

.smm-gi__count {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #757575;
}

.smm-gi__folders {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.smm-gi__folder {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 10px;
  border: none;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  color: #1e1e1e;
  transition: background-color 0.1s ease;
}

.smm-gi__folder:hover {
  background: #f0f0f0;
}

.smm-gi__folder.is-selected {
  background: #f0f6fc;
  color: #043959;
}

.smm-gi__check {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1.5px solid #949494;
  border-radius: 3px;
  box-sizing: border-box;
  position: relative;
}

.smm-gi__check.is-on {
  background: #3858e9;
  border-color: #3858e9;
}

.smm-gi__check.is-on::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.smm-gi__folder-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.smm-gi__field .components-base-control {
  margin-bottom: 0;
}

.smm-gi__field--divider {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}

.smm-gi__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.smm-gi__btn.smm-gi__btn {
  width: 100%;
  justify-content: center;
}
}
/* SCRIPT : Inline Script */
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-icon svg){width: 24px;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */
/* SCRIPT : https://kothrud.com/wp-content/plugins//listingpro-lead-form/assets/css/bootstrap-datetimepicker.min.css?ver=7.0.4 */
@media all {
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.37
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/responsive-lightbox/assets/imagelightbox/imagelightbox.min.css?ver=1.0.0 */
@media all {
#imagelightbox{position:fixed;z-index:9999;-ms-touch-action:none;touch-action:none}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/exclusive-addons-elementor-pro/assets/css/exad-header-footer.css?ver=1.5.9.4 */
@media all {
.footer-width-fixer {
    width: 100%;
}

/* Container fix for genesis themes */

.exad-hf-template-genesis.exad-hf-header .site-header .wrap,
.exad-hf-template-genesis.exad-hf-footer .site-footer .wrap,
.exad-hf-template-generatepress.exad-hf-header .site-header .inside-header {
    width: 100%;
    padding: 0;
    max-width: 100%;
}

/* Container fix for generatepress theme */

.exad-hf-template-generatepress.exad-hf-header .site-header,
.exad-hf-template-generatepress.exad-hf-footer .site-footer {
    width: 100%;
    padding: 0;
    max-width: 100%;
    background-color: transparent !important; /* override generatepress default white color for header */
}

/* Fix: Header hidden below the page content */
.exad-hf-header #exad-masthead {
	z-index: 99;
    position: relative;
}

.exad-hf-header #exad-masthead.exad-sticky-header {
    width: 100%;
    overflow: visible;
}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.4 */
@media all {
:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{display:inline-block;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-circle-logo);font-size:2.5em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3));height:100px;width:100px}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-button-align-start .e-form__buttons,[dir=rtl] .elementor-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-button-align-end .e-form__buttons,[dir=rtl] .elementor-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-tablet-button-align-start .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-tablet-button-align-end .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-mobile-button-align-start .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-mobile-button-align-end .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;fill:#fff;font-size:15px;line-height:1;padding:12px 24px;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;fill:#fff;padding:.5em}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/post-39184-4fa0792a6e.css */
@media all {
.elementor-kit-39184{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto","Roboto Fallback";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto","Roboto Fallback";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto","Roboto Fallback";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.4 */
@media all {
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.2.4 */
@media all {
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementor/assets/css/widget-video.min.css?ver=4.2.4 */
@media all {
.elementor-widget-video .elementor-widget-container,.elementor-widget-video:not(:has(.elementor-widget-container)){overflow:hidden;transform:translateZ(0)}.elementor-widget-video .elementor-wrapper{aspect-ratio:var(--video-aspect-ratio)}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{background-color:#000;border:none;display:flex;height:100%;width:100%}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{background-position:50%;background-size:cover;inset:0;position:absolute}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{aspect-ratio:var(--video-aspect-ratio);display:block;-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center;width:100%}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-con-inner>.elementor-widget-video,.e-con>.elementor-widget-video{width:var(--container-widget-width);--flex-grow:var( --container-widget-flex-grow )}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/post-37953-46d24d1381.css */
@media all {
.elementor-37953 .elementor-element.elementor-element-dacf99e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-37953 .elementor-element.elementor-element-a7144fe{text-align:center;}.elementor-37953 .elementor-element.elementor-element-a7144fe .elementor-heading-title{color:#030303;}.elementor-37953 .elementor-element.elementor-element-4b3faf9{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-2aa2b32{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-37953 .elementor-element.elementor-element-a35bf58{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-76c8a3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-a621224{text-align:center;}.elementor-37953 .elementor-element.elementor-element-a621224 .elementor-heading-title{color:#000000;}.elementor-37953 .elementor-element.elementor-element-494acde{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-2526844{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-50e67bf .elementor-wrapper{--video-aspect-ratio:1;}.elementor-37953 .elementor-element.elementor-element-b7ebe9b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-37953 .elementor-element.elementor-element-9152e4c{color:#000000;}.elementor-37953 .elementor-element.elementor-element-6b91652{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-2b6ab70{text-align:center;}.elementor-37953 .elementor-element.elementor-element-2b6ab70 .elementor-heading-title{color:#000000;}.elementor-37953 .elementor-element.elementor-element-fcb0808{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-f974ce1 .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-37953 .elementor-element.elementor-element-f354c00{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-2b3a674{text-align:center;color:#020202;}.elementor-37953 .elementor-element.elementor-element-cf75ca1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-c5b81a7{overflow:visible;}.elementor-37953 .elementor-element.elementor-element-2e2b16cb{text-align:center;}.elementor-37953 .elementor-element.elementor-element-2e2b16cb .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-37953 .elementor-element.elementor-element-57b439a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-37953 .elementor-element.elementor-element-62e60ea{text-align:center;}.elementor-37953 .elementor-element.elementor-element-62e60ea .elementor-heading-title{font-family:"Poppins","Poppins Fallback", Sans-serif;font-size:28px;font-weight:700;color:#000000;}.elementor-37953 .elementor-element.elementor-element-7dcdf55c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}@media(min-width:768px){.elementor-37953 .elementor-element.elementor-element-2aa2b32{--width:50%;}.elementor-37953 .elementor-element.elementor-element-a35bf58{--width:50%;}.elementor-37953 .elementor-element.elementor-element-2526844{--width:50%;}.elementor-37953 .elementor-element.elementor-element-b7ebe9b{--width:50%;}}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/style-14ea931ca7.css */
@media all {
/*
	Theme Name: Listingpro
	Text Domain: listingpro
	Theme URI: https://themeforest.net/item/listingpro-multipurpose-directory-theme/19386460
	Description: ListingPro is a complete solution for any type of directory/Listing theme.
	Author: Team of CridioStudio
	Author URI: https://themeforest.net/user/cridiostudio
	Version: 2.9.5
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Tags:one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-menu, featured-image-header, featured-images, post-formats, sticky-post, theme-options, translation-ready
*/


/* Theme Styling Start */


/* ------------ BASE ------------- */


/* =WordPress Core
-------------------------------------------------------------- */

.far,
.fas {
    font-family: "Font Awesome 5 Free" !important;
}

.fa {
    font-family: "FontAwesome" !important;
    font-weight: 500;
}

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

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

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

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

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

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

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

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

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

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

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

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

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

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


/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* WP Default Gallery */

.gallery {
    display: block;
    clear: both;
    overflow: hidden;
    margin: 0 auto;
}

.gallery .gallery-row {
    display: block;
    clear: both;
    overflow: hidden;
    margin: 0;
}

.gallery .gallery-item {
    overflow: hidden;
    float: left;
    text-align: center;
    list-style: none;
    padding: 0;
    border: 1px solid #efefef;
    margin: 0 10px 10px 0;
}

.gallery .gallery-item img,
.gallery .gallery-item img.thumbnail {
    max-width: 90%;
    height: auto;
    margin: 5% auto;
}

.gallery-caption {
    margin: 0 0 8px;
    font-style: italic;
    font-family: arial;
}


/* Table */

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    background-color: transparent;
}

table th,
table td {
    padding: 8px;
    border-top: 1px solid #f0f0f0;
    vertical-align: top;
    text-align: left;
    line-height: 20px;
}

table th {
    font-weight: bold;
}

table thead th {
    vertical-align: bottom;
}

table caption+thead tr:first-child th,
table caption+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

table tbody+tbody {
    border-top: 2px solid #dddddd;
}

.sticky {}

.bypostauthor {}


/* Widgets Style */

aside>ul {
    padding: 10px 0px;
}

aside h2.widget-title {
    font-size: 22px;
    margin: 0 0 20px;
}

#sidebar li a {
    padding-right: 20px;
}


/*aside > ul li a{
    color: #888888;*/


/*font-weight: bold;*/

aside>ul li a:hover {
    color: #55a8e2;
}

.widget_archive select,
.widget_categories select,
.widget_text select {
    width: 100%;
    height: 30px;
}

.widget img {
    max-width: 100%;
}

#sidebar aside.widget,
#footer aside.widget {
    margin-bottom: 30px;
}

#sidebar aside.widget ul li {
    margin-right: 15px;
    padding: 14px 0 14px;
    border-bottom: 1px solid #e1e1e1;
}

#sidebar aside.widget ul li:first-child {
    padding-top: 4px;
}

#sidebar aside.widget ul li:last-child {
    padding-bottom: 4px;
    border-bottom: 0;
}

#sidebar aside.widget [class^="icon-"] a,
#sidebar aside.widget [class*=" icon-"] a {
    padding-left: 10px;
    font-family: "Lato","Lato Fallback", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#sidebar form#searchform {
    position: relative;
}

#sidebar form#searchform .icon-search {
    position: absolute;
    top: 11px;
    left: 15px;
    color: #d6d6d6;
    font-size: 18px;
}

#sidebar form#searchform input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 8px 8px 40px;
    height: 40px;
    width: 100%;
    margin: 0 !important;
    border: 2px solid #e1e1e1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    color: #888;
}

h3.widget-title {
    margin-bottom: 13px;
    font-weight: bold;
    font-size: 18px;
}

h3.widget-title span {
    color: #fff;
    font-weight: bold;
}


/* Recent Posts Widget */

#sidebar aside ul {
    list-style: none;
}

.imo-recent-posts-widget ul {
    margin: 0;
    list-style: none;
}

.imo-recent-posts-widget ul li {
    display: inline-block;
    padding: 10px 0;
    width: 100%;
}

#sidebar aside.widget .imo-recent-posts-widget ul li {
    padding: 12px 0 0;
    border-bottom: 0;
}

#sidebar aside.widget .imo-recent-posts-widget ul li:first-child {
    padding-top: 4px;
}

#sidebar .widget .imo-recent-posts-widget ul li:before {
    display: none;
}

#sidebar .imo-recent-posts-widget h4 {
    font-weight: normal;
}

.imo-recent-posts-widget ul li:first-child {
    padding-top: 0;
}

.imo-recent-posts-widget h4 {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 20px;
}

.imo-recent-posts-widget .meta {
    color: #aaa;
    text-transform: capitalize;
    font-size: 13px;
    line-height: 20px;
}

.imo-recent-posts-widget .recent-thumb img {
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.imo-recent-posts-widget .recent-thumb {
    float: left;
    margin: 4px 22px 4px 0;
}


/* Tag Widget */

.widget_tag_cloud h2 {
    margin-bottom: 20px !important;
}

.tagcloud a {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 6px 15px;
    text-transform: capitalize;
    font-size: 14px !important;
    line-height: 20px;
    border: 1px solid #e1e1e1;
}

.tagcloud a:hover,
#footer .tagcloud a:hover {
    border: 1px solid #55a8e2;
    color: #55a8e2 !important;
}


/* Removing Child Pages from Widgets */

.widget_pages ul.children,
.widget_nav_menu ul.sub-menu {
    display: none;
}


/* New update 2.6.10 */

div#modal-2 a.md-close.lp-click-zindex i.fa.fa-close {
    margin-top: 10px !important;
}

form#claimform .col-md-6.col-xs-12.padding-0.leftside {
    margin-top: 5px;
}

.menu-height-0 {
    height: 0;
    overflow: hidden;
}

.listing-app-view-new .home-categories-area {
    display: none !important;
}

.page-heading-inner-container.cat-area .text-right p.view-on-map {
    display: block !important;
    background: transparent !important;
    position: static !important;
    top: 0 !important;
    right: 0 !important;
    overflow: auto !important;
    border-radius: 0 !important;
    padding: 0 !important;
    bottom: 0 !important;
    z-index: auto !important;
}


/* new code 2.6.15 */

textarea#lp_report_reason {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    float: left;
    line-height: 36px;
    margin-top: 5px;
    padding: 0 10px;
    width: 100%;
    font-size: 12px;
    min-height: 130px;
    font-weight: normal;
}

div#lp_report_listing button#lp-report-this-listing {
    color: #fff;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    font-size: 14px;
    height: 38px;
    font-weight: 400;
    line-height: 38px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 15px;
}

button.close-report-btn i {
    color: #fff;
}

button.close-report-btn {
    right: -10px;
    left: unset;
    position: absolute;
    background: #000;
    border-radius: 15px;
    font-size: 10px;
    color: #fff !important;
    top: -10px;
    z-index: 99999;
    padding: 3px 6px 3px 7px;
	border: none !important;
}

div#lp_report_listing .modal-dialog {
    top: 20%;
}

div#lp_report_listing .modal-content {
    border-radius: 0px !important;
    border: none !important;
}

div#lp_report_listing .modal-dialog label.col-form-label,
div#lp_report_listing .modal-dialog label.col-form-label span {
    color: #000;
    font-size: 18px;
    margin-bottom: 16px;
}

div#lp_report_listing {
    z-index: 9999;
}


/* end new code 2.6.15 */

@media only screen and (max-width: 480px) {
    body.listing-template-default.single.single-listing .pp_content {
        width: 390px !important;
        overflow: hidden !important;
    }
    img#fullResImage {
        height: auto !important;
    }
    body.listing-template-default.single.single-listing .pp_hoverContainer {
        width: 375px !important;
        overflow: hidden;
    }
    body.listing-template-default.single.single-listing .pp_pic_holder.dark_rounded {
        overflow: hidden !important;
        max-width: 100% !important;
    }
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/bootstrap-cb6e684766.css */
@media all {
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-display: block;font-family:'Glyphicons Halflings';src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.eot);src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff) format('woff'),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/lib/Magnific-Popup-master/magnific-popup.css?ver=7.0.4 */
@media all {
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100)}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px) and (orientation: landscape),screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/lib/popup/css/component.css?ver=7.0.4 */
@media all {
.md-perspective,.md-perspective body{height:100%;overflow:hidden}.md-perspective body{background:#222;-webkit-perspective:600px;-moz-perspective:600px;perspective:600px}.container{min-height:100%}.md-close i{border-radius:50%;cursor:pointer;font-size:17px;height:30px;line-height:30px;position:absolute;right:-9px;text-align:center;top:-9px;width:30px}.md-modal{position:fixed;top:50%;left:50%;height:auto;z-index:999999999;visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.md-show{visibility:visible}.md-overlay{position:fixed;width:100%;height:100%;visibility:hidden;top:0;left:0;z-index:999999;opacity:0;background:rgba(0,0,0,0.8);-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show ~ .md-overlay{opacity:1;visibility:visible}.md-content{background:#fff;position:relative;margin:0 auto}.md-content > div{padding:15px 30px 30px}.md-effect-1 .md-content{-webkit-transform:scale(0.7);-moz-transform:scale(0.7);-ms-transform:scale(0.7);transform:scale(0.7);opacity:0;-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-1 .md-content{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.md-effect-2 .md-content{-webkit-transform:translateX(20%);-moz-transform:translateX(20%);-ms-transform:translateX(20%);transform:translateX(20%);opacity:0;-webkit-transition:all .3s cubic-bezier(0.25,0.5,0.5,0.9);-moz-transition:all .3s cubic-bezier(0.25,0.5,0.5,0.9);transition:all .3s cubic-bezier(0.25,0.5,0.5,0.9)}.md-show.md-effect-2 .md-content{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1}.md-effect-3 .md-content{-webkit-transform:translateY(20%);-moz-transform:translateY(20%);-ms-transform:translateY(20%);transform:translateY(20%);opacity:0;-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-3 .md-content{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.md-effect-4 .md-content{-webkit-transform:scale(0) rotate(720deg);-moz-transform:scale(0) rotate(720deg);-ms-transform:scale(0) rotate(720deg);transform:scale(0) rotate(720deg);opacity:0}.md-show.md-effect-4 ~ .md-overlay,.md-effect-4 .md-content{-webkit-transition:opacity .5s ease,transform .5s ease;-moz-transition:opacity .5s ease,transform .5s ease;transition:opacity .5s ease,transform .5s ease}.md-show.md-effect-4 .md-content{-webkit-transform:scale(1) rotate(0deg);-moz-transform:scale(1) rotate(0deg);-ms-transform:scale(1) rotate(0deg);transform:scale(1) rotate(0deg);opacity:1}.md-effect-5.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-5 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(600px) rotateX(20deg);-moz-transform:translateZ(600px) rotateX(20deg);-ms-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0}.md-show.md-effect-5 .md-content{-webkit-transition:opacity .3s ease-in,transform .3s ease-in;-moz-transition:opacity .3s ease-in,transform .3s ease-in;transition:opacity .3s ease-in,transform .3s ease-in;-webkit-transform:translateZ(0px) rotateX(0deg);-moz-transform:translateZ(0px) rotateX(0deg);-ms-transform:translateZ(0px) rotateX(0deg);transform:translateZ(0px) rotateX(0deg);opacity:1}.md-effect-6.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-6 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);-moz-transform:translate(30%) translateZ(600px) rotate(10deg);-ms-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0}.md-show.md-effect-6 .md-content{-webkit-transition:opacity .3s ease-in,transform .3s ease-in;-moz-transition:opacity .3s ease-in,transform .3s ease-in;transition:opacity .3s ease-in,transform .3s ease-in;-webkit-transform:translate(0%) translateZ(0) rotate(0deg);-moz-transform:translate(0%) translateZ(0) rotate(0deg);-ms-transform:translate(0%) translateZ(0) rotate(0deg);transform:translate(0%) translateZ(0) rotate(0deg);opacity:1}.md-effect-7{top:0;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.md-effect-7 .md-content{-webkit-transform:translateY(-200%);-moz-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease;opacity:0}.md-show.md-effect-7 .md-content{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);border-radius:0 0 3px 3px;opacity:1}.md-effect-8.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-8 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(-70deg);-moz-transform:rotateY(-70deg);-ms-transform:rotateY(-70deg);transform:rotateY(-70deg);-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease;opacity:0}.md-show.md-effect-8 .md-content{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);opacity:1}.md-effect-9.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-9 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-70deg);-moz-transform:rotateX(-70deg);-ms-transform:rotateX(-70deg);transform:rotateX(-70deg);-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease;opacity:0}.md-show.md-effect-9 .md-content{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);-ms-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}.md-effect-10.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-10 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(-60deg);-moz-transform:rotateX(-60deg);-ms-transform:rotateX(-60deg);transform:rotateX(-60deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-10 .md-content{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);-ms-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}.md-effect-11 .md-content{-webkit-transform:scale(2);-moz-transform:scale(2);-ms-transform:scale(2);transform:scale(2);opacity:0;-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-11 .md-content{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.md-effect-12 .md-content{-webkit-transform:scale(0.8);-moz-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);opacity:0;-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-12 ~ .md-overlay{background:#e74c3c}.md-effect-12 .md-content h3,.md-effect-12 .md-content{background:transparent}.md-show.md-effect-12 .md-content{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.md-effect-13.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-13 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(-3000px) rotateY(90deg);-moz-transform:translateZ(-3000px) rotateY(90deg);-ms-transform:translateZ(-3000px) rotateY(90deg);transform:translateZ(-3000px) rotateY(90deg);opacity:0}.md-show.md-effect-13 .md-content{-webkit-animation:slit .7s forwards ease-out;-moz-animation:slit .7s forwards ease-out;animation:slit .7s forwards ease-out}@-webkit-keyframes slit{50%{-webkit-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-webkit-animation-timing-function:ease-out}100%{-webkit-transform:translateZ(0) rotateY(0deg);opacity:1}}@-moz-keyframes slit{50%{-moz-transform:translateZ(-250px) rotateY(89deg);opacity:.5;-moz-animation-timing-function:ease-out}100%{-moz-transform:translateZ(0) rotateY(0deg);opacity:1}}@keyframes slit{50%{transform:translateZ(-250px) rotateY(89deg);opacity:1;animation-timing-function:ease-in}100%{transform:translateZ(0) rotateY(0deg);opacity:1}}.md-effect-14.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-14 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateY(100%) rotateX(90deg);-moz-transform:translateY(100%) rotateX(90deg);-ms-transform:translateY(100%) rotateX(90deg);transform:translateY(100%) rotateX(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:opacity .3s ease-out,transform .3s ease-out;-moz-transition:opacity .3s ease-out,transform .3s ease-out;transition:opacity .3s ease-out,transform .3s ease-out}.md-show.md-effect-14 .md-content{-webkit-transform:translateY(0%) rotateX(0deg);-moz-transform:translateY(0%) rotateX(0deg);-ms-transform:translateY(0%) rotateX(0deg);transform:translateY(0%) rotateX(0deg);opacity:1}.md-effect-15.md-modal{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.md-effect-15 .md-content{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:translateZ(100px) translateX(-30%) rotateY(90deg);-moz-transform:translateZ(100px) translateX(-30%) rotateY(90deg);-ms-transform:translateZ(100px) translateX(-30%) rotateY(90deg);transform:translateZ(100px) translateX(-30%) rotateY(90deg);-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;transform-origin:0 100%;opacity:0;-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-15 .md-content{-webkit-transform:translateZ(0px) translateX(0%) rotateY(0deg);-moz-transform:translateZ(0px) translateX(0%) rotateY(0deg);-ms-transform:translateZ(0px) translateX(0%) rotateY(0deg);transform:translateZ(0px) translateX(0%) rotateY(0deg);opacity:1}.md-show.md-effect-16 ~ .md-overlay{background:rgba(180,46,32,0.5)}.md-show.md-effect-16 ~ .container{-webkit-filter:blur(3px);-moz-filter:blur(3px);filter:blur(3px)}.md-effect-16 .md-content{-webkit-transform:translateY(-5%);-moz-transform:translateY(-5%);-ms-transform:translateY(-5%);transform:translateY(-5%);opacity:0}.md-show.md-effect-16 ~ .container,.md-effect-16 .md-content{-webkit-transition:opacity .3s ease,transform .3s ease;-moz-transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease}.md-show.md-effect-16 .md-content{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.md-show.md-effect-17 ~ .container{height:100%;overflow:hidden;-webkit-transition:-webkit-transform .3s;-moz-transition:-moz-transform .3s;transition:transform .3s}.md-show.md-effect-17 ~ .container,.md-show.md-effect-17 ~ .md-overlay{-webkit-transform:rotateX(-2deg);-moz-transform:rotateX(-2deg);-ms-transform:rotateX(-2deg);transform:rotateX(-2deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d}.md-effect-17 .md-content{opacity:0;-webkit-transform:translateY(200%);-moz-transform:translateY(200%);-ms-transform:translateY(200%);transform:translateY(200%)}.md-show.md-effect-17 .md-content{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1;-webkit-transition:all .3s .2s;-moz-transition:all .3s .2s;transition:all .3s .2s}.md-show.md-effect-18 ~ .container{height:100%;overflow:hidden}.md-show.md-effect-18 ~ .md-overlay{background:rgba(143,27,15,0.8);-webkit-transition:all .5s;-moz-transition:all .5s;transition:all .5s}.md-show.md-effect-18 ~ .container,.md-show.md-effect-18 ~ .md-overlay{-webkit-transform-style:preserve-3d;-webkit-transform-origin:0 50%;-webkit-animation:rotateRightSideFirst .5s forwards ease-in;-moz-transform-style:preserve-3d;-moz-transform-origin:0 50%;-moz-animation:rotateRightSideFirst .5s forwards ease-in;transform-style:preserve-3d;transform-origin:0 50%;animation:rotateRightSideFirst .5s forwards ease-in}@-webkit-keyframes rotateRightSideFirst{50%{-webkit-transform:translateZ(-50px) rotateY(5deg);-webkit-animation-timing-function:ease-out}100%{-webkit-transform:translateZ(-200px)}}@-moz-keyframes rotateRightSideFirst{50%{-moz-transform:translateZ(-50px) rotateY(5deg);-moz-animation-timing-function:ease-out}100%{-moz-transform:translateZ(-200px)}}@keyframes rotateRightSideFirst{50%{transform:translateZ(-50px) rotateY(5deg);animation-timing-function:ease-out}100%{transform:translateZ(-200px)}}.md-effect-18 .md-content{-webkit-transform:translateX(200%);-moz-transform:translateX(200%);-ms-transform:translateX(200%);transform:translateX(200%);opacity:0}.md-show.md-effect-18 .md-content{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1;-webkit-transition:all .5s .1s;-moz-transition:all .5s .1s;transition:all .5s .1s}.md-show.md-effect-19 ~ .container{height:100%;overflow:hidden}.md-show.md-effect-19 ~ .md-overlay{-webkit-transition:opacity .5s ease,transform .5s ease;-moz-transition:opacity .5s ease,transform .5s ease;transition:opacity .5s ease,transform .5s ease}.md-show.md-effect-19 ~ .container,.md-show.md-effect-19 ~ .md-overlay{-webkit-transform-style:preserve-3d;-webkit-transform-origin:50% 100%;-webkit-animation:OpenTop .5s forwards ease-in;-moz-transform-style:preserve-3d;-moz-transform-origin:50% 100%;-moz-animation:OpenTop .5s forwards ease-in;transform-style:preserve-3d;transform-origin:50% 100%;animation:OpenTop .5s forwards ease-in}@-webkit-keyframes OpenTop{50%{-webkit-transform:rotateX(10deg);-webkit-animation-timing-function:ease-out}}@-moz-keyframes OpenTop{50%{-moz-transform:rotateX(10deg);-moz-animation-timing-function:ease-out}}@keyframes OpenTop{50%{transform:rotateX(10deg);animation-timing-function:ease-out}}.md-effect-19 .md-content{-webkit-transform:translateY(-200%);-moz-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);opacity:0}.md-show.md-effect-19 .md-content{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1;-webkit-transition:all .5s .1s;-moz-transition:all .5s .1s;transition:all .5s .1s}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/Font-awesome-df09762030.css */
@media all {
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-display: block;font-family:'FontAwesome';src:url('https://kothrud.com/wp-content/themes/listingpro/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('https://kothrud.com/wp-content/themes/listingpro/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('https://kothrud.com/wp-content/themes/listingpro/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('https://kothrud.com/wp-content/themes/listingpro/assets/lib/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('https://kothrud.com/wp-content/themes/listingpro/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('https://kothrud.com/wp-content/themes/listingpro/assets/lib/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal;}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/lib/jquerym.menu/css/jquery.mmenu.all.css?ver=7.0.4 */
@media all {
/*!
 * jQuery mmenu v7.3.3
 * @requires jQuery 1.7.0 or later
 *
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */.mm-menu{--mm-line-height:20px;--mm-listitem-size:44px;--mm-navbar-size:44px;--mm-offset-top:0;--mm-offset-right:0;--mm-offset-bottom:0;--mm-offset-left:0;--mm-color-border:rgba(0, 0, 0, 0.1);--mm-color-button:rgba(0, 0, 0, 0.3);--mm-color-text:rgba(0, 0, 0, 0.75);--mm-color-text-dimmed:rgba(0, 0, 0, 0.3);--mm-color-background:#f3f3f3;--mm-color-background-highlight:rgba(0, 0, 0, 0.05);--mm-color-background-emphasis:rgba(255, 255, 255, 0.4);--mm-shadow:0 0 10px rgba( 0,0,0, 0.3 )}.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:20px;line-height:var(--mm-line-height);-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:0;margin:0;position:absolute;z-index:0;top:0;right:0;bottom:0;left:0;top:var(--mm-offset-top);right:var(--mm-offset-right);bottom:var(--mm-offset-bottom);left:var(--mm-offset-left);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{color:inherit;text-decoration:none}[dir=rtl] .mm-menu{direction:rtl}.mm-panels,.mm-panels>.mm-panel{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.mm-panel,.mm-panels{-webkit-box-sizing:border-box;box-sizing:border-box;background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}.mm-panels{overflow:hidden}.mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;width:100%;padding:0 20px;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-panel:not(.mm-hidden){display:block}.mm-panel:after,.mm-panel:before{content:'';display:block;height:20px}.mm-panel_has-navbar{padding-top:44px;padding-top:var(--mm-navbar-size)}.mm-panel_opened{z-index:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-panel_opened-parent{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-panel_highest{z-index:2}.mm-panel_noanimation{-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.mm-panel_noanimation.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl] .mm-panel:not(.mm-panel_opened){-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}[dir=rtl] .mm-panel.mm-panel_opened-parent{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}.mm-listitem_vertical>.mm-panel{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;display:none;width:100%;padding:10px 0 10px 10px}.mm-listitem_vertical>.mm-panel:after,.mm-listitem_vertical>.mm-panel:before{content:none;display:none}.mm-listitem_opened>.mm-panel{display:block}.mm-listitem_vertical>.mm-listitem__btn{height:44px;height:var(--mm-listitem-size);bottom:auto}.mm-listitem_vertical .mm-listitem:last-child:after{border-color:transparent}.mm-listitem_opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}.mm-btn{-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;padding:0}.mm-btn:after,.mm-btn:before{border-color:rgba(0,0,0,.1);border-color:var(--mm-color-button);border-width:2px;border-style:solid}.mm-btn_close:after,.mm-btn_close:before{content:'';-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.mm-btn_close:before{border-right:none;border-bottom:none;right:18px}.mm-btn_close:after{border-left:none;border-top:none;right:25px}.mm-btn_next:after,.mm-btn_prev:before{content:'';border-bottom:none;border-right:none;-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0}.mm-btn_prev:before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-btn_next:after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}[dir=rtl] .mm-btn_next:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}[dir=rtl] .mm-btn_prev:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}[dir=rtl] .mm-btn_close:after,[dir=rtl] .mm-btn_close:before{right:auto}[dir=rtl] .mm-btn_close:before{left:25px}[dir=rtl] .mm-btn_close:after{left:18px}.mm-navbar{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.3);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text-dimmed);border-bottom-width:1px;border-bottom-style:solid;text-align:center;display:none;height:44px;height:var(--mm-navbar-size);padding:0 44px;margin:0;position:absolute;top:0;left:0;right:0;opacity:1;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-navbar>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:12px;padding:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-left:0;padding-right:0}.mm-navbar a,.mm-navbar a:hover{text-decoration:none}.mm-navbar__title{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-navbar__btn{position:absolute;top:0;bottom:0;z-index:1}.mm-navbar__btn:first-child{text-align:left;left:0}.mm-navbar__btn:last-child{text-align:right;right:0}.mm-panel_has-navbar .mm-navbar{display:block}[dir=rtl] .mm-navbar__btn:first-child{text-align:right;right:0;left:auto}[dir=rtl] .mm-navbar__btn:last-child{text-align:left;left:0;right:auto}.mm-listitem,.mm-listview{list-style:none;display:block;padding:0;margin:0}.mm-listitem{color:rgba(0,0,0,.75);color:var(--mm-color-text);border-color:rgba(0,0,0,.1);border-color:var(--mm-color-border);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mm-listitem:after{content:'';border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:20px;right:0;bottom:0}.mm-listitem a,.mm-listitem a:hover{text-decoration:none}.mm-listitem__btn,.mm-listitem__text{color:inherit;display:block;padding-top:12px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);padding-bottom:12px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2)}.mm-listitem__text{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%}.mm-listitem__btn{-webkit-tap-highlight-color:rgba(255,255,255,.4);tap-highlight-color:rgba(255,255,255,.4);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);tap-highlight-color:var(--mm-color-background-emphasis);background:rgba(3,2,1,0);border-color:inherit;width:auto;padding-right:54px;position:relative}.mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}.mm-listitem_selected>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}.mm-listitem_opened>.mm-listitem__btn,.mm-listitem_opened>.mm-panel{background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight)}.mm-panels>.mm-panel>.mm-listview{margin:20px -20px}.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}.mm-listitem_divider{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);font-size:75%;text-transform:uppercase;min-height:20px;min-height:var(--mm-line-height);padding:6.5px;padding:calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);padding-right:10px;padding-left:20px}.mm-listitem_spacer{padding-top:44px;padding-top:var(--mm-listitem-size)}.mm-listitem_spacer>.mm-btn_next{top:44px;top:var(--mm-listitem-size)}[dir=rtl] .mm-listitem:after{left:0;right:20px}[dir=rtl] .mm-listitem__text{padding-left:10px;padding-right:20px}[dir=rtl] .mm-listitem__btn{padding-left:54px;border-left-width:0;border-left-style:none}[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text){padding-right:0;border-right-width:1px;border-right-style:solid}
.mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}.mm-wrapper_opened{overflow-x:hidden;position:relative}.mm-wrapper_background .mm-page{background:inherit}.mm-menu_offcanvas{display:none;position:fixed;right:auto;z-index:0}.mm-menu_offcanvas.mm-menu_opened{display:block}.mm-menu_offcanvas{width:80%;min-width:240px;max-width:440px}.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper__blocker{background:rgba(3,2,1,0);overflow:hidden;display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}.mm-wrapper_blocking{overflow:hidden}.mm-wrapper_blocking body{overflow:hidden}.mm-wrapper_blocking .mm-wrapper__blocker{display:block}
.mm-sronly{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;white-space:nowrap!important;width:1px!important;min-width:1px!important;height:1px!important;min-height:1px!important;padding:0!important;overflow:hidden!important;position:absolute!important}
.mm-menu_autoheight{-webkit-transition:none .4s ease;-o-transition:none .4s ease;transition:none .4s ease;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.mm-menu_autoheight:not(.mm-menu_offcanvas){position:relative}.mm-menu_autoheight.mm-menu_position-bottom,.mm-menu_autoheight.mm-menu_position-top{max-height:80%}.mm-menu_autoheight-measuring .mm-panel{display:block!important}.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel{display:none!important}.mm-menu_autoheight-measuring .mm-panels>.mm-panel{bottom:auto!important;height:auto!important}
[class*=mm-menu_columns-]{-webkit-transition-property:width;-o-transition-property:width;transition-property:width}[class*=mm-menu_columns-] .mm-panels>.mm-panel{right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened,[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent{display:block!important}[class*=mm-panel_columns-]{border-right:1px solid;border-color:inherit}.mm-menu_columns-1 .mm-panel_columns-0,.mm-menu_columns-2 .mm-panel_columns-1,.mm-menu_columns-3 .mm-panel_columns-2,.mm-menu_columns-4 .mm-panel_columns-3{border-right:none}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_columns-0 .mm-panels>.mm-panel{z-index:0}.mm-menu_columns-0 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_columns-0{width:80%;min-width:240px;max-width:0}.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_columns-1 .mm-panels>.mm-panel{z-index:1;width:100%}.mm-menu_columns-1 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}.mm-menu_columns-1{width:80%;min-width:240px;max-width:440px}.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2{-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}.mm-menu_columns-2 .mm-panels>.mm-panel{z-index:2;width:50%}.mm-menu_columns-2 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}.mm-menu_columns-2{width:80%;min-width:240px;max-width:880px}.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(880px,0,0);transform:translate3d(880px,0,0)}}.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-880px,0,0);transform:translate3d(-880px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3{-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}.mm-menu_columns-3 .mm-panels>.mm-panel{z-index:3;width:33.34%}.mm-menu_columns-3 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}.mm-menu_columns-3{width:80%;min-width:240px;max-width:1320px}.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(1320px,0,0);transform:translate3d(1320px,0,0)}}.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1320px,0,0);transform:translate3d(-1320px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4{-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}.mm-menu_columns-4 .mm-panels>.mm-panel{z-index:4;width:25%}.mm-menu_columns-4 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(500%,0,0);transform:translate3d(500%,0,0)}.mm-menu_columns-4{width:80%;min-width:240px;max-width:1760px}.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(1760px,0,0);transform:translate3d(1760px,0,0)}}.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1760px,0,0);transform:translate3d(-1760px,0,0)}}[class*=mm-menu_columns-].mm-menu_position-bottom,[class*=mm-menu_columns-].mm-menu_position-top{width:100%;max-width:100%;min-width:100%}.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front{-webkit-transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,-webkit-transform;-o-transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform,-webkit-transform}
.mm-counter{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);text-align:right;display:block;min-width:44px;float:right}.mm-listitem_nosubitems>.mm-counter{display:none}[dir=rtl] .mm-counter{text-align:left;float:left}
.mm-listitem_divider{opacity:1;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-menu_dividers-light .mm-listitem_divider{background:inherit;font-size:inherit;color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);padding-top:18px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);padding-bottom:6px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25)}.mm-menu_border-none .mm-listitem_divider{border-top-width:1px;border-top-style:solid}.mm-listview_fixeddivider{background:inherit;display:none;width:100%;position:absolute;top:0;left:0;right:0;z-index:10}.mm-listview_fixeddivider:after{content:none!important;display:none!important}.mm-panel_dividers .mm-listview_fixeddivider{display:block}
.mm-wrapper_opened.mm-dragging .mm-menu,.mm-wrapper_opened.mm-dragging .mm-slideout{-webkit-transition-duration:0s;-o-transition-duration:0s;transition-duration:0s}
.mm-menu_dropdown{-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;overflow:visible}.mm-wrapper_dropdown .mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-wrapper_dropdown .mm-wrapper__blocker{-webkit-transition-delay:0s!important;-o-transition-delay:0s!important;transition-delay:0s!important;z-index:1}.mm-wrapper_dropdown .mm-menu_dropdown{z-index:2}.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown{display:none}[class*=mm-menu_tip-]:before{content:'';background:inherit;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);display:block;width:15px;height:15px;position:absolute;z-index:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mm-menu_tip-left:before{left:22px}.mm-menu_tip-right:before{right:22px}.mm-menu_tip-top:before{top:-8px}.mm-menu_tip-bottom:before{bottom:-8px}
.mm-menu{--mm-iconbar-size:44px}.mm-iconbar{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);border:0 solid rgba(0,0,0,.1);border-color:var(--mm-color-border);border-right-width:1px;text-align:center;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;width:var(--mm-iconbar-size);position:absolute;top:0;left:0;bottom:0;z-index:2}.mm-menu_iconbar .mm-navbars_bottom,.mm-menu_iconbar .mm-navbars_top,.mm-menu_iconbar .mm-panels{left:44px;left:var(--mm-iconbar-size)}.mm-iconbar__bottom,.mm-iconbar__top{width:inherit;position:absolute}.mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:11px 0}.mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}.mm-iconbar__top{top:0}.mm-iconbar__bottom{bottom:0}.mm-iconbar__tab_selected{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
.mm-menu_keyboardfocus a:focus,.mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus{outline:0;background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}.mm-wrapper__blocker .mm-tabstart{cursor:default;display:block;width:100%;height:100%}.mm-wrapper__blocker .mm-tabend{opacity:0;position:absolute;bottom:0}
.mm-menu{--mm-iconpanel-size:44px}.mm-panel_iconpanel-1,.mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 1));width:calc(100% - (var(--mm-iconpanel-size) * 1))}.mm-panel_iconpanel-2,.mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 2));width:calc(100% - (var(--mm-iconpanel-size) * 2))}.mm-panel_iconpanel-3,.mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 3));width:calc(100% - (var(--mm-iconpanel-size) * 3))}.mm-panel_iconpanel-first~.mm-panel,.mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - 44px);width:calc(100% - var(--mm-iconpanel-size))}.mm-menu_iconpanel .mm-panels>.mm-listview_fixeddivider,.mm-menu_iconpanel .mm-panels>.mm-panel{left:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:transform,width;transition-property:transform,width;transition-property:transform,width,-webkit-transform}.mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left-width:1px;border-left-style:solid}.mm-menu_iconpanel .mm-panels>.mm-panel_opened,.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{display:block!important}.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{overflow-y:hidden;-webkit-transform:unset;-ms-transform:unset;transform:unset}.mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider,.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar{opacity:0}.mm-panel__blocker{background:inherit;opacity:0;display:block;position:absolute;top:0;right:0;left:0;z-index:3;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-panel_opened-parent .mm-panel__blocker{opacity:.6;bottom:-100000px}[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-listview_fixeddivider,[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel{left:0;right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:transform,width;transition-property:transform,width;transition-property:transform,width,-webkit-transform}[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left:none;border-right:1px solid;border-color:inherit}
.mm-navbars_bottom,.mm-navbars_top{background:inherit;border-color:inherit;border-width:0;position:absolute;left:0;right:0;z-index:1}.mm-navbars_bottom>.mm-navbar,.mm-navbars_top>.mm-navbar{border-width:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.mm-navbars_bottom>.mm-navbar:not(.mm-navbar_has-btns),.mm-navbars_top>.mm-navbar:not(.mm-navbar_has-btns){padding:0}.mm-navbars_bottom>.mm-navbar>:not(img):not(.mm-btn),.mm-navbars_top>.mm-navbar>:not(img):not(.mm-btn){-webkit-box-flex:1;-ms-flex:1;flex:1}.mm-navbars_top{border-bottom-style:solid;border-bottom-width:1px;top:0;bottom:auto}.mm-menu_navbar_top-1 .mm-panels{top:44px;top:calc(var(--mm-navbar-size) * 1)}.mm-menu_navbar_top-2 .mm-panels{top:88px;top:calc(var(--mm-navbar-size) * 2)}.mm-menu_navbar_top-3 .mm-panels{top:132px;top:calc(var(--mm-navbar-size) * 3)}.mm-menu_navbar_top-4 .mm-panels{top:176px;top:calc(var(--mm-navbar-size) * 4)}.mm-navbars_bottom{border-top-style:solid;border-top-width:1px;bottom:0;top:auto}.mm-menu_navbar_bottom-1 .mm-panels{bottom:44px;bottom:calc(var(--mm-navbar-size) * 1)}.mm-menu_navbar_bottom-2 .mm-panels{bottom:88px;bottom:calc(var(--mm-navbar-size) * 2)}.mm-menu_navbar_bottom-3 .mm-panels{bottom:132px;bottom:calc(var(--mm-navbar-size) * 3)}.mm-menu_navbar_bottom-4 .mm-panels{bottom:176px;bottom:calc(var(--mm-navbar-size) * 4)}.mm-navbar_size-2{height:88px;height:calc(var(--mm-navbar-size) * 2)}.mm-navbar_size-3{height:132px;height:calc(var(--mm-navbar-size) * 3)}.mm-navbar_size-4{height:176px;height:calc(var(--mm-navbar-size) * 4)}.mm-navbar__breadcrumbs{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-x:auto;text-align:left;padding:0 0 0 20px}.mm-navbar__breadcrumbs>*{display:inline-block;padding-right:6px;padding-top:12px;padding-top:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-bottom:12px;padding-bottom:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5)}.mm-navbar__breadcrumbs>a{text-decoration:underline}.mm-navbar_has-btns .mm-navbar__breadcrumbs{margin-left:-44px}.mm-navbar_has-btns .mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs{margin-left:0;padding-left:0}.mm-navbar__tab_selected{background:inherit!important;color:inherit!important;border-width:1px;border-style:solid;border-color:inherit}.mm-navbar__tab_selected:first-child{border-left:none}.mm-navbar__tab_selected:last-child{border-right:none}.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs,.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar{background:inherit!important;color:inherit!important}.mm-navbars_top .mm-navbar_tabs:not(:last-child){border-bottom-width:1px;border-bottom-style:solid}.mm-navbars_top .mm-navbar__tab_selected{border-bottom:none;margin-bottom:-1px}.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected{border-top:none}.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar{background:inherit;color:inherit}.mm-navbars_bottom .mm-navbar_tabs:not(:first-child){border-top-width:1px;border-top-style:solid}.mm-navbars_bottom .mm-navbar__tab_selected{border-top:none;margin-top:-1px}.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected{border-bottom:none}.mm-navbar_tabs>a:not(.mm-navbar__tab_selected),.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar,.mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs){background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis);color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed)}
.mm-searchfield{display:-webkit-box;display:-ms-flexbox;display:flex;height:44px;height:var(--mm-navbar-size);padding:0;overflow:hidden}.mm-searchfield input{border:none!important;outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;border-radius:4px;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);color:rgba(0,0,0,.75);color:var(--mm-color-text);font:inherit;font-size:inherit;line-height:35.2px;line-height:calc(var(--mm-navbar-size) * .7);display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%;height:24px;height:calc(var(--mm-navbar-size) * .7);min-height:unset;max-height:unset;margin:0;padding:0 10px}.mm-searchfield input::-ms-clear{display:none}.mm-searchfield__input{padding:6.6px 10px 0 10px;padding-top:calc(var(--mm-navbar-size) * .15);position:relative}.mm-panel__noresultsmsg{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;padding:44px 0}.mm-searchfield__btn{position:absolute;right:0;top:0;bottom:0}.mm-panel_search{left:0!important;right:0!important;width:100%!important;border-left:none!important}.mm-searchfield__input{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%}.mm-searchfield__cancel{line-height:44px;line-height:var(--mm-navbar-size);text-decoration:none;display:block;padding-right:10px;margin-right:-100px;-webkit-transition:margin .4s ease;-o-transition:margin .4s ease;transition:margin .4s ease}.mm-searchfield__cancel-active{margin-right:0}.mm-panel>.mm-searchfield{width:100%;position:absolute;top:0;left:0}.mm-panel_has-searchfield{padding-top:44px;padding-top:var(--mm-navbar-size)}.mm-panel_has-navbar.mm-panel_has-searchfield{padding-top:88px;padding-top:calc(var(--mm-navbar-size) * 2)}.mm-panel_has-navbar.mm-panel_has-searchfield>.mm-searchfield{top:44px;top:var(--mm-navbar-size)}.mm-listitem_nosubitems>.mm-listitem__btn{display:none}.mm-listitem_nosubitems>.mm-listitem__text{padding-right:10px}
.mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:20px;position:absolute;top:0;bottom:0;right:-20px;z-index:15;-webkit-transition:right .4s ease;-o-transition:right .4s ease;transition:right .4s ease;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.mm-sectionindexer a{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}.mm-sectionindexer~.mm-panels{-webkit-transition:right .4s ease;-o-transition:right .4s ease;transition:right .4s ease}.mm-menu_has-sectionindexer .mm-sectionindexer{right:0}.mm-menu_has-sectionindexer .mm-panels{right:20px}.mm-menu_navbar_top-1 .mm-sectionindexer{top:46px;top:calc((var(--mm-navbar-size) * 1) + 2px)}.mm-menu_navbar_top-2 .mm-sectionindexer{top:90px;top:calc((var(--mm-navbar-size) * 2) + 2px)}.mm-menu_navbar_top-3 .mm-sectionindexer{top:134px;top:calc((var(--mm-navbar-size) * 3) + 2px)}.mm-menu_navbar_top-4 .mm-sectionindexer{top:178px;top:calc((var(--mm-navbar-size) * 4) + 2px)}.mm-menu_navbar_bottom-1 .mm-sectionindexer{bottom:46px;bottom:calc((var(--mm-navbar-size) * 1) + 2px)}.mm-menu_navbar_bottom-2 .mm-sectionindexer{bottom:90px;bottom:calc((var(--mm-navbar-size) * 2) + 2px)}.mm-menu_navbar_bottom-3 .mm-sectionindexer{bottom:134px;bottom:calc((var(--mm-navbar-size) * 3) + 2px)}.mm-menu_navbar_bottom-4 .mm-sectionindexer{bottom:178px;bottom:calc((var(--mm-navbar-size) * 4) + 2px)}
.mm-menu_selected-hover .mm-listitem>.mm-listitem__btn,.mm-menu_selected-hover .mm-listitem>.mm-listitem__text,.mm-menu_selected-parent .mm-listitem>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem>.mm-listitem__text{-webkit-transition:background .4s ease;-o-transition:background .4s ease;transition:background .4s ease}.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected .mm-listitem__text{background:0 0}.mm-menu_selected-hover .mm-listitem__btn:hover,.mm-menu_selected-hover .mm-listitem__text:hover{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) .mm-listitem__text{background:0 0}.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
.mm-menu,.mm-slideout{--mm-sidebar-collapsed-size:44px;--mm-sidebar-expanded-size:440px}.mm-wrapper_sidebar-collapsed body,.mm-wrapper_sidebar-expanded body{position:relative}.mm-wrapper_sidebar-collapsed .mm-slideout,.mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}.mm-wrapper_sidebar-collapsed .mm-page,.mm-wrapper_sidebar-expanded .mm-page{background:inherit;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh}.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{display:block!important;top:0!important;right:auto!important;bottom:0!important;left:0!important}.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider,.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar{opacity:0}.mm-wrapper_sidebar-collapsed .mm-slideout{width:calc(100% - 44px);width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(44px,0,0);transform:translate3d(44px,0,0);-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{border-right-width:1px;border-right-style:solid;min-width:0!important;max-width:100000px!important}.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after{content:none;display:none}.mm-wrapper_sidebar-expanded.mm-wrapper_blocking,.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body{overflow:visible}.mm-wrapper_sidebar-expanded .mm-wrapper__blocker{display:none!important}.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{width:calc(100% - 440px);width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0);-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{width:440px;width:var(--mm-sidebar-expanded-size)}.mm-menu__blocker{background:rgba(3,2,1,0);display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:3}.mm-menu_opened .mm-menu__blocker{display:none}[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
label.mm-toggle{border-radius:34px;min-width:58px;width:58px;height:34px;margin:0 10px;margin-top:5px;margin-top:calc((var(--mm-listitem-size) - 34px)/ 2)}label.mm-toggle:before{content:'';display:block;border-radius:34px;width:32px;height:32px;margin:1px}input.mm-toggle{position:absolute;left:-10000px}input.mm-toggle:checked~label.mm-toggle:before{float:right}label.mm-toggle{background:rgba(0,0,0,.1);background:var(--mm-color-border)}label.mm-toggle:before{background:#f3f3f3;background:var(--mm-color-background)}input.mm-toggle:checked~label.mm-toggle{background:#4bd963}label.mm-check{width:34px;height:34px}label.mm-check:before{border-color:rgba(0,0,0,.75);border-color:var(--mm-color-text);content:'';display:block;border-left:3px solid;border-bottom:3px solid;width:40%;height:20%;margin:25% 0 0 20%;opacity:.1;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}input.mm-check{position:absolute;left:-10000px}input.mm-check:checked~label.mm-check:before{opacity:1}[dir=rtl] input.mm-toggle:checked~label.mm-toggle:before{float:left}
.mm-menu_border-none .mm-listitem:after,.mm-panel_border-none .mm-listitem:after{content:none}.mm-menu_border-full .mm-listitem:after,.mm-panel_border-full .mm-listitem:after{left:0!important}.mm-menu_border-offset .mm-listitem:after,.mm-panel_border-offset .mm-listitem:after{right:20px}
.mm-menu_fx-menu-zoom{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-wrapper_opened .mm-menu_fx-menu-zoom{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}.mm-wrapper_opening .mm-menu_fx-menu-zoom{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(.7,.7) translate3d(30%,0,0);transform:scale(.7,.7) translate3d(30%,0,0);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}.mm-menu_fx-menu-slide{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-wrapper_opened .mm-menu_fx-menu-slide{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-wrapper_opening .mm-menu_fx-menu-slide{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-menu-fade{opacity:0;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-wrapper_opening .mm-menu_fx-menu-fade{opacity:1}.mm-menu_fx-panels-none .mm-panel,.mm-panel_fx-none{-webkit-transition-property:none;-o-transition-property:none;transition-property:none}.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,.mm-panel_fx-none.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-panels-zoom .mm-panel,.mm-panel_fx-zoom{-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1.5,1.5) translate3d(100%,0,0);transform:scale(1.5,1.5) translate3d(100%,0,0)}.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened,.mm-panel_fx-zoom.mm-panel_opened{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent,.mm-panel_fx-zoom.mm-panel_opened-parent{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0)}.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent,.mm-panel_fx-slide-0.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent,.mm-panel_fx-slide-100.mm-panel_opened-parent{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_fx-panels-slide-up .mm-panel,.mm-panel_fx-slide-up{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.mm-menu_fx-panels-slide-up .mm-panel_opened,.mm-menu_fx-panels-slide-up .mm-panel_opened-parent,.mm-panel_fx-slide-up.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-panels-slide-right .mm-panel,.mm-panel_fx-slide-right{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_fx-panels-slide-right .mm-panel_opened,.mm-menu_fx-panels-slide-right .mm-panel_opened-parent,.mm-panel_fx-slide-right.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[class*=mm-menu_fx-listitems-] .mm-listitem{-webkit-transition:none .4s ease;-o-transition:none .4s ease;transition:none .4s ease}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1){-webkit-transition-delay:50ms;-o-transition-delay:50ms;transition-delay:50ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2){-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3){-webkit-transition-delay:150ms;-o-transition-delay:150ms;transition-delay:150ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4){-webkit-transition-delay:.2s;-o-transition-delay:.2s;transition-delay:.2s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5){-webkit-transition-delay:250ms;-o-transition-delay:250ms;transition-delay:250ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6){-webkit-transition-delay:.3s;-o-transition-delay:.3s;transition-delay:.3s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7){-webkit-transition-delay:350ms;-o-transition-delay:350ms;transition-delay:350ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8){-webkit-transition-delay:.4s;-o-transition-delay:.4s;transition-delay:.4s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9){-webkit-transition-delay:450ms;-o-transition-delay:450ms;transition-delay:450ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10){-webkit-transition-delay:.5s;-o-transition-delay:.5s;transition-delay:.5s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11){-webkit-transition-delay:550ms;-o-transition-delay:550ms;transition-delay:550ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12){-webkit-transition-delay:.6s;-o-transition-delay:.6s;transition-delay:.6s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13){-webkit-transition-delay:650ms;-o-transition-delay:650ms;transition-delay:650ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14){-webkit-transition-delay:.7s;-o-transition-delay:.7s;transition-delay:.7s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15){-webkit-transition-delay:750ms;-o-transition-delay:750ms;transition-delay:750ms}.mm-menu_fx-listitems-slide .mm-listitem{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;-o-transition-property:transform,opacity;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0);opacity:0}.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.mm-menu_fx-listitems-fade .mm-listitem{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;opacity:0}.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem{opacity:1}.mm-menu_fx-listitems-drop .mm-listitem{-webkit-transition-property:opacity,top;-o-transition-property:opacity,top;transition-property:opacity,top;opacity:0;top:-25%}.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem{opacity:1;top:0}
.mm-menu_fullscreen{width:100%;min-width:140px;max-width:10000px}.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(100vw,0,0);transform:translate3d(100vw,0,0)}@media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(10000px,0,0);transform:translate3d(10000px,0,0)}}.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-100vw,0,0);transform:translate3d(-100vw,0,0)}@media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-10000px,0,0);transform:translate3d(-10000px,0,0)}}.mm-menu_fullscreen.mm-menu_position-top{height:100vh;min-height:140px;max-height:10000px}.mm-menu_fullscreen.mm-menu_position-bottom{height:100vh;min-height:140px;max-height:10000px}
.mm-menu_listview-justify .mm-panels>.mm-panel:after,.mm-menu_listview-justify .mm-panels>.mm-panel:before,.mm-panels>.mm-panel_listview-justify:after,.mm-panels>.mm-panel_listview-justify:before{content:none;display:none}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview,.mm-panels>.mm-panel_listview-justify .mm-listview{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;margin-top:0;margin-bottom:0}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem,.mm-panels>.mm-panel_listview-justify .mm-listitem{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:44px}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem:not(.mm-listitem_divider),.mm-panels>.mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text,.mm-panels>.mm-panel_listview-justify .mm-listitem__text{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mm-listview_inset{list-style:inside disc;width:100%;padding:0 30px 15px 30px;margin:0}.mm-listview_inset .mm-listitem{padding:5px 0}
.mm-menu_multiline .mm-listitem__text,.mm-panel_multiline .mm-listitem__text{-o-text-overflow:clip;text-overflow:clip;white-space:normal}
[class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:0}.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:.3;-webkit-transition:opacity .4s ease .4s;-o-transition:opacity .4s ease .4s;transition:opacity .4s ease .4s}.mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker{background:inherit}.mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker{background:#000}.mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker{background:#fff}
.mm-menu_popup{-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease;opacity:0;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;min-height:140px;max-height:880px;top:50%;left:50%;bottom:auto;right:auto;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.mm-menu_popup.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker{-webkit-transition-delay:0s!important;-o-transition-delay:0s!important;transition-delay:0s!important;z-index:1}.mm-wrapper_opening .mm-menu_popup{opacity:1}
.mm-menu_position-right{left:auto;right:0}.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}.mm-menu_position-bottom,.mm-menu_position-front,.mm-menu_position-top{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-menu_position-bottom.mm-menu_opened,.mm-menu_position-front.mm-menu_opened,.mm-menu_position-top.mm-menu_opened{z-index:2}.mm-menu_position-bottom.mm-menu_opened~.mm-slideout,.mm-menu_position-front.mm-menu_opened~.mm-slideout,.mm-menu_position-top.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker{z-index:1}.mm-menu_position-front{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_position-front.mm-menu_position-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_position-bottom,.mm-menu_position-top{width:100%;min-width:100%;max-width:100%}.mm-menu_position-top{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.mm-menu_position-top{height:80vh;min-height:140px;max-height:880px}.mm-menu_position-bottom{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);top:auto}.mm-menu_position-bottom{height:80vh;min-height:140px;max-height:880px}.mm-wrapper_opening .mm-menu_position-bottom,.mm-wrapper_opening .mm-menu_position-front,.mm-wrapper_opening .mm-menu_position-top{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.mm-menu_shadow-page:after{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow);content:"";display:block;width:20px;height:120%;position:absolute;left:100%;top:-10%;z-index:100;-webkit-clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%);clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%)}.mm-menu_shadow-page.mm-menu_position-right:after{left:auto;right:100%;-webkit-clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%);clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%)}.mm-menu_shadow-page.mm-menu_position-front:after{content:none;display:none}.mm-menu_shadow-menu{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}.mm-menu_shadow-panels .mm-panels>.mm-panel{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}
.mm-menu_theme-white{--mm-color-border:rgba( 0,0,0, 0.1 );--mm-color-button:rgba( 0,0,0, 0.3 );--mm-color-text:rgba( 0,0,0, 0.7 );--mm-color-text-dimmed:rgba( 0,0,0, 0.3 );--mm-color-background:#fff;--mm-color-background-highlight:rgba( 0,0,0, 0.06 );--mm-color-background-emphasis:rgba( 0,0,0, 0.03 );--mm-shadow:0 0 10px rgba( 0,0,0, 0.2 )}.mm-menu_theme-dark{--mm-color-border:rgba( 0,0,0, 0.3 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.85 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#333;--mm-color-background-highlight:rgba( 255,255,255, 0.08 );--mm-color-background-emphasis:rgba( 0,0,0, 0.1 );--mm-shadow:0 0 20px rgba( 0,0,0, 0.5 )}.mm-menu_theme-black{--mm-color-border:rgba( 255,255,255, 0.25 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.75 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#000;--mm-color-background-highlight:rgba( 255,255,255, 0.2 );--mm-color-background-emphasis:rgba( 255,255,255, 0.15 );--mm-shadow:none}
.mm-menu_tileview .mm-listview,.mm-panel_tileview .mm-listview{margin:0!important}.mm-menu_tileview .mm-listview:after,.mm-panel_tileview .mm-listview:after{content:'';display:block;clear:both}.mm-menu_tileview .mm-listitem,.mm-panel_tileview .mm-listitem{padding:0;float:left;position:relative;width:50%;height:0;padding-top:50%}.mm-menu_tileview .mm-listitem:after,.mm-panel_tileview .mm-listitem:after{left:0;top:0;border-right-width:1px;border-right-style:solid;z-index:-1}.mm-menu_tileview .mm-listitem.mm-tile-xs,.mm-panel_tileview .mm-listitem.mm-tile-xs{width:12.5%;padding-top:12.5%}.mm-menu_tileview .mm-listitem.mm-tile-s,.mm-panel_tileview .mm-listitem.mm-tile-s{width:25%;padding-top:25%}.mm-menu_tileview .mm-listitem.mm-tile-l,.mm-panel_tileview .mm-listitem.mm-tile-l{width:75%;padding-top:75%}.mm-menu_tileview .mm-listitem.mm-tile-xl,.mm-panel_tileview .mm-listitem.mm-tile-xl{width:100%;padding-top:100%}.mm-menu_tileview .mm-listitem__text,.mm-panel_tileview .mm-listitem__text{line-height:1px;text-align:center;padding:50% 10px 0 10px;margin:0;position:absolute;top:0;right:1px;bottom:1px;left:0}.mm-menu_tileview .mm-listitem__btn,.mm-panel_tileview .mm-listitem__btn{width:auto}.mm-menu_tileview .mm-listitem__btn:after,.mm-menu_tileview .mm-listitem__btn:before,.mm-panel_tileview .mm-listitem__btn:after,.mm-panel_tileview .mm-listitem__btn:before{content:none;display:none}.mm-menu_tileview .mm-listitem_divider,.mm-panel_tileview .mm-listitem_divider{display:none}.mm-menu_tileview .mm-panel,.mm-panel_tileview{padding-left:0;padding-right:0}.mm-menu_tileview .mm-panel:after,.mm-menu_tileview .mm-panel:before,.mm-panel_tileview:after,.mm-panel_tileview:before{content:none;display:none}
body.modal-open .mm-slideout{z-index:unset}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/mapbox-3e19813226.css */
@media all {
.leaflet-container{background:#fff;outline:0;overflow:hidden;-ms-touch-action:none}.leaflet-container *,.leaflet-container:after,.leaflet-container:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.leaflet-container .marker-description img{margin-bottom:10px}.leaflet-container a{text-decoration:none}.leaflet-container .mapbox-button,.leaflet-container.dark .mapbox-button{background-color:#3887be;display:inline-block;height:40px;line-height:40px;text-decoration:none;white-space:nowrap;text-overflow:ellipsis}.leaflet-container .mapbox-button:hover,.leaflet-container.dark .mapbox-button:hover{background-color:#3bb2d0}.leaflet-image-layer,.leaflet-layer,.leaflet-map-pane,.leaflet-marker-icon,.leaflet-marker-pane,.leaflet-marker-shadow,.leaflet-overlay-pane,.leaflet-overlay-pane svg,.leaflet-popup-pane,.leaflet-shadow-pane,.leaflet-tile,.leaflet-tile-container,.leaflet-tile-pane,.leaflet-zoom-box{position:absolute;left:0;top:0}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0}.leaflet-tile-pane{z-index:2}.leaflet-objects-pane{z-index:3}.leaflet-overlay-pane{z-index:4}.leaflet-shadow-pane{z-index:5}.leaflet-marker-pane{z-index:6}.leaflet-popup-pane{z-index:7}.leaflet-control{position:relative;z-index:7;pointer-events:auto;float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-bottom,.leaflet-top{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-fade-anim .leaflet-popup,.leaflet-fade-anim .leaflet-tile{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;-o-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup,.leaflet-fade-anim .leaflet-tile-loaded{opacity:1}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-touching .leaflet-zoom-animated,.leaflet-zoom-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-container{cursor:-webkit-grab;cursor:-moz-grab}.leaflet-container.leaflet-clickable,.leaflet-container.map-clickable,.leaflet-marker-icon,.leaflet-overlay-pane path{cursor:pointer}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging,.leaflet-dragging .leaflet-clickable,.leaflet-dragging .leaflet-container,.leaflet-dragging .map-clickable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing}.leaflet-zoom-box{background:#fff;border:2px dotted #202020;opacity:.5}.leaflet-bar,.leaflet-control-layers{background-color:#fff;border:1px solid #999;border-color:rgba(0,0,0,.4);border-radius:3px;box-shadow:none}.leaflet-bar a,.leaflet-bar a:hover{color:#404040;color:rgba(0,0,0,.75);border-bottom:1px solid #ddd;border-bottom-color:rgba(0,0,0,.1)}.leaflet-bar a:active,.leaflet-bar a:hover{background-color:#f8f8f8;cursor:pointer}.leaflet-bar a:hover:first-child{border-radius:3px 3px 0 0}.leaflet-bar a:hover:last-child{border-bottom:0;border-radius:0 0 3px 3px}.leaflet-bar a:hover:only-of-type{border-radius:3px}.leaflet-bar .leaflet-disabled{cursor:default;opacity:.75}.leaflet-control-zoom-in,.leaflet-control-zoom-out{display:block;content:'';text-indent:-999em}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{background:#fff;padding:6px 10px 6px 6px;color:#404040;color:rgba(0,0,0,.75)}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;border-top-color:rgba(0,0,0,.1);margin:5px -10px 5px -6px}.leaflet-container .leaflet-control-attribution{background-color:rgba(255,255,255,.5);margin:0;box-shadow:none}.leaflet-container .leaflet-control-attribution a,.leaflet-container .map-info-container a{color:#404040}.leaflet-control-attribution a:hover,.map-info-container a:hover{color:inherit;text-decoration:underline}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-container .leaflet-control-attribution.leaflet-compact-attribution{margin:10px;background:#fff;border-radius:3px 13px 13px 3px;padding:3px 31px 3px 3px;visibility:hidden}.leaflet-control-attribution.leaflet-compact-attribution:hover{visibility:visible}.leaflet-control-attribution.leaflet-compact-attribution:after{content:'';background-color:#fff;background-color:rgba(255,255,255,.5);background-position:0 -78px;border-radius:50%;position:absolute;display:inline-block;width:26px;height:26px;vertical-align:middle;bottom:0;z-index:1;visibility:visible;cursor:pointer}.leaflet-control-attribution.leaflet-compact-attribution:hover:after{background-color:#fff}.leaflet-right .leaflet-control-attribution.leaflet-compact-attribution:after{right:0}.leaflet-left .leaflet-control-attribution.leaflet-compact-attribution:after{left:0}.leaflet-control-scale-line{background-color:rgba(255,255,255,.5);border:1px solid #999;border-color:rgba(0,0,0,.4);border-top:0;padding:2px 5px 1px;white-space:nowrap;overflow:hidden}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #ddd;border-top-color:rgba(0,0,0,.1);border-bottom:0;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-popup{position:absolute;text-align:center;pointer-events:none}.leaflet-popup-content-wrapper{padding:1px;text-align:left;pointer-events:all}.leaflet-popup-close-button+.leaflet-popup-content-wrapper .leaflet-popup-content{padding-top:15px}.leaflet-popup-tip-container{width:20px;height:20px;margin:0 auto;position:relative;display:none}.leaflet-popup-tip{width:0;height:0;margin:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #fff;box-shadow:none}.leaflet-popup-close-button{text-indent:-999em;position:absolute;top:0;right:0;pointer-events:all}.leaflet-popup-close-button:hover{background-color:#f8f8f8}.leaflet-popup-scrolled{overflow:auto;border-bottom:1px solid #ddd;border-top:1px solid #ddd}.leaflet-div-icon{background:#fff;border:1px solid #999;border-color:rgba(0,0,0,.4)}.leaflet-editing-icon{border-radius:3px}.leaflet-bar a,.leaflet-control-layers-toggle,.leaflet-popup-close-button,.map-tooltip.closable .close,.mapbox-button-icon:before,.mapbox-icon{content:'';display:inline-block;width:26px;height:26px;vertical-align:middle;background-repeat:no-repeat}.leaflet-bar a{display:block}.leaflet-container.dark .map-tooltip .close,.leaflet-control-attribution:after,.leaflet-control-layers-toggle,.leaflet-control-zoom-in,.leaflet-control-zoom-out,.leaflet-popup-close-button,.map-tooltip .close,.mapbox-icon{opacity:.75;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-size:26px 260px}.leaflet-container.dark .leaflet-control-attribution:after,.leaflet-container.dark .leaflet-control-layers-toggle,.leaflet-container.dark .leaflet-control-zoom-in,.leaflet-container.dark .leaflet-control-zoom-out,.leaflet-container.dark .mapbox-icon,.mapbox-button-icon:before{opacity:1;background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/icons-ffffff@2x.png);background-size:26px 260px}.leaflet-bar .leaflet-control-zoom-in{background-position:0 0}.leaflet-bar .leaflet-control-zoom-out{background-position:0 -26px}.leaflet-popup-close-button,.map-tooltip.closable .close{background-position:-3px -55px;width:20px;height:20px;border-radius:0 3px 0 0;display:none}.mapbox-icon-info{background-position:0 -78px}.leaflet-control-layers-toggle{background-position:0 -104px}.mapbox-icon.mapbox-icon-share,.mapbox-icon.mapbox-icon-share:before{background-position:0 -130px}.mapbox-icon.mapbox-icon-geocoder,.mapbox-icon.mapbox-icon-geocoder:before{background-position:0 -156px}.mapbox-icon-facebook,.mapbox-icon-facebook:before{background-position:0 -182px}.mapbox-icon-twitter,.mapbox-icon-twitter:before{background-position:0 -208px}.mapbox-icon-pinterest,.mapbox-icon-pinterest:before{background-position:0 -234px}.map-legends,.map-tooltip{max-width:300px}.map-legends .map-legend{padding:10px}.map-tooltip{z-index:999999;padding:10px;min-width:180px;max-height:400px;overflow:auto;opacity:1;-webkit-transition:opacity 150ms;-moz-transition:opacity 150ms;-o-transition:opacity 150ms;transition:opacity 150ms}.map-tooltip .close{text-indent:-999em;overflow:hidden;display:none}.map-tooltip.closable .close{position:absolute;top:0;right:0;border-radius:3px}.map-tooltip.closable .close:active{background-color:#f8f8f8}.leaflet-control-interaction{position:absolute;top:10px;right:10px;width:300px}.leaflet-popup-content .marker-title{font-weight:700}.leaflet-control .mapbox-button{background-color:#fff;border:1px solid #ddd;border-color:rgba(0,0,0,.1);padding:5px 10px;border-radius:3px}.mapbox-modal>div{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;overflow-y:auto}.mapbox-modal.active>div{z-index:99999;transition:all .2s,z-index 0 0}.mapbox-modal .mapbox-modal-mask{background:rgba(0,0,0,.5);opacity:0}.mapbox-modal.active .mapbox-modal-mask{opacity:1}.mapbox-modal .mapbox-modal-content{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.mapbox-modal.active .mapbox-modal-content{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.mapbox-modal-body{position:relative;background:#fff;padding:20px;z-index:1000;width:50%;margin:20px 0 20px 25%}.mapbox-share-buttons{margin:0 0 20px}.mapbox-share-buttons a{width:33.3333%;border-left:1px solid #fff;text-align:center;border-radius:0}.mapbox-share-buttons a:last-child{border-radius:0 3px 3px 0}.mapbox-share-buttons a:first-child{border:0;border-radius:3px 0 0 3px}.mapbox-modal input{width:100%;height:40px;padding:10px;border:1px solid #ddd;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.leaflet-control.mapbox-control-info{margin:5px 30px 10px 10px;min-height:26px}.leaflet-right .leaflet-control.mapbox-control-info{margin:5px 10px 10px 30px}.mapbox-info-toggle{background-color:#fff;background-color:rgba(255,255,255,.5);border-radius:50%;position:absolute;bottom:0;left:0;z-index:1}.leaflet-right .mapbox-control-info .mapbox-info-toggle{left:auto;right:0}.mapbox-info-toggle:hover{background-color:#fff}.map-info-container{background:#fff;padding:3px 5px 3px 27px;display:none;position:relative;bottom:0;left:0;border-radius:13px 3px 3px 13px}.leaflet-right .map-info-container{left:auto;right:0;padding:3px 27px 3px 5px;border-radius:3px 13px 13px 3px}.mapbox-control-info.active .map-info-container{display:inline-block}.leaflet-container .mapbox-improve-map{font-weight:700}.leaflet-control-mapbox-geocoder{position:relative}.leaflet-control-mapbox-geocoder.searching{opacity:.75}.leaflet-control-mapbox-geocoder .leaflet-control-mapbox-geocoder-wrap{background:#fff;position:absolute;border:1px solid #999;border-color:rgba(0,0,0,.4);overflow:hidden;left:26px;height:28px;width:0;top:-1px;border-radius:0 3px 3px 0;opacity:0;-webkit-transition:opacity 100ms;-moz-transition:opacity 100ms;-o-transition:opacity 100ms;transition:opacity 100ms}.leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-wrap{width:180px;opacity:1}.leaflet-bar .leaflet-control-mapbox-geocoder-toggle,.leaflet-bar .leaflet-control-mapbox-geocoder-toggle:hover{border-bottom:0}.leaflet-control-mapbox-geocoder-toggle{border-radius:3px}.leaflet-control-mapbox-geocoder.active,.leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.leaflet-control-mapbox-geocoder .leaflet-control-mapbox-geocoder-form input{background:0 0;border:0;width:180px;padding:0 0 0 10px;height:26px;outline:0}.leaflet-control-mapbox-geocoder-results{width:180px;position:absolute;left:26px;top:25px;border-radius:0 0 3px 3px}.leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-results{background:#fff;border:1px solid #999;border-color:rgba(0,0,0,.4)}.leaflet-control-mapbox-geocoder-results a,.leaflet-control-mapbox-geocoder-results span{padding:0 10px;text-overflow:ellipsis;white-space:nowrap;display:block;width:100%;font-size:12px;line-height:26px;text-align:left;overflow:hidden}.leaflet-container.dark .leaflet-control .leaflet-control-mapbox-geocoder-results a:hover,.leaflet-control-mapbox-geocoder-results a:hover{background:#f8f8f8;opacity:1}.leaflet-right .leaflet-control-mapbox-geocoder-results,.leaflet-right .leaflet-control-mapbox-geocoder-wrap{left:auto;right:26px}.leaflet-right .leaflet-control-mapbox-geocoder-wrap{border-radius:3px 0 0 3px}.leaflet-right .leaflet-control-mapbox-geocoder.active,.leaflet-right .leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-toggle{border-radius:0 3px 3px 0}.leaflet-bottom .leaflet-control-mapbox-geocoder-results{top:auto;bottom:25px;border-radius:3px 3px 0 0}.mapbox-logo-true:before{content:'';display:inline-block;width:61px;height:19px;vertical-align:middle}.mapbox-logo-true{background-repeat:no-repeat;background-size:61px 19px;background-image:url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSI2NSIgaGVpZ2h0PSIyMCI+PGRlZnMvPjxtZXRhZGF0YT48cmRmOlJERj48Y2M6V29yayByZGY6YWJvdXQ9IiI+PGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+PGRjOnR5cGUgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIvPjxkYzp0aXRsZS8+PC9jYzpXb3JrPjwvcmRmOlJERj48L21ldGFkYXRhPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNjEuODQ4MywtOTguNTAzOTUpIj48ZyB0cmFuc2Zvcm09Im1hdHJpeCgwLjE3NDQxODM2LDAsMCwwLjE3NDQxODM2LDIyMC41MjI4MiwyOS4yMjkzNDIpIiBzdHlsZT0ib3BhY2l0eTowLjI1O2ZpbGw6I2ZmZmZmZjtzdHJva2U6IzAwMDAwMDtzdHJva2Utd2lkdGg6MTcuMjAwMDIzNjU7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjQ7c3Ryb2tlLW9wYWNpdHk6MTtzdHJva2UtZGFzaGFycmF5Om5vbmUiPjxwYXRoIGQ9Ik0gNS4yOCAxLjUgQyA0LjU0IDEuNTYgMy45IDIuMjUgMy45MSAzIGwgMCAxMS44OCBjIDAuMDIgMC43NyAwLjcyIDEuNDcgMS41IDEuNDcgbCAxLjc1IDAgYyAwLjc4IDAgMS40OCAtMC42OSAxLjUgLTEuNDcgbCAwIC00LjI4IDAuNzIgMS4xOSBjIDAuNTMgMC44NyAyLjAzIDAuODcgMi41NiAwIGwgMC43MiAtMS4xOSAwIDQuMjggYyAwLjAyIDAuNzYgMC43IDEuNDUgMS40NyAxLjQ3IGwgMS43NSAwIGMgMC43OCAwIDEuNDggLTAuNjkgMS41IC0xLjQ3IGwgMCAtMC4xNiBjIDEuMDIgMS4xMiAyLjQ2IDEuODEgNC4wOSAxLjgxIGwgNC4wOSAwIDAgMS40NyBjIC0wIDAuNzggMC42OSAxLjQ4IDEuNDcgMS41IGwgMS43NSAwIGMgMC43OSAtMCAxLjUgLTAuNzEgMS41IC0xLjUgbCAwLjAyIC0xLjQ3IGMgMS43MiAwIDMuMDggLTAuNjQgNC4xNCAtMS42OSBsIDAgMC4xOSBjIDAgMC4zOSAwLjE2IDAuNzkgMC40NCAxLjA2IDAuMjggMC4yOCAwLjY3IDAuNDQgMS4wNiAwLjQ0IGwgMy4zMSAwIGMgMi4wMyAwIDMuODUgLTEuMDYgNC45MSAtMi42OSAxLjA1IDEuNjEgMi44NCAyLjY5IDQuODggMi42OSAxLjAzIDAgMS45OCAtMC4yNyAyLjgxIC0wLjc1IDAuMjggMC4zNSAwLjczIDAuNTcgMS4xOSAwLjU2IGwgMi4xMiAwIGMgMC40OCAwLjAxIDAuOTcgLTAuMjMgMS4yNSAtMC42MiBsIDAuOTEgLTEuMjggMC45MSAxLjI4IGMgMC4yOCAwLjM5IDAuNzQgMC42MyAxLjIyIDAuNjIgbCAyLjE2IDAgQyA2Mi42NyAxNi4zMyA2My40MiAxNC44OSA2Mi44MSAxNCBMIDYwLjIyIDEwLjM4IDYyLjYyIDcgQyA2My4yNiA2LjExIDYyLjUgNC42MiA2MS40MSA0LjYyIGwgLTIuMTYgMCBDIDU4Ljc4IDQuNjIgNTguMzEgNC44NiA1OC4wMyA1LjI1IEwgNTcuMzEgNi4yOCA1Ni41NiA1LjI1IEMgNTYuMjkgNC44NiA1NS44MiA0LjYyIDU1LjM0IDQuNjIgbCAtMi4xNiAwIGMgLTAuNDkgLTAgLTAuOTcgMC4yNSAtMS4yNSAwLjY2IC0wLjg2IC0wLjUxIC0xLjg0IC0wLjgxIC0yLjkxIC0wLjgxIC0yLjAzIDAgLTMuODMgMS4wOCAtNC44OCAyLjY5IEMgNDMuMSA1LjUzIDQxLjI3IDQuNDcgMzkuMTkgNC40NyBMIDM5LjE5IDMgQyAzOS4xOSAyLjYxIDM5LjAzIDIuMjEgMzguNzUgMS45NCAzOC40NyAxLjY2IDM4LjA4IDEuNSAzNy42OSAxLjUgbCAtMS43NSAwIGMgLTAuNzEgMCAtMS41IDAuODMgLTEuNSAxLjUgbCAwIDMuMTYgQyAzMy4zOCA1LjEgMzEuOTYgNC40NyAzMC4zOCA0LjQ3IGwgLTMuMzQgMCBjIC0wLjc3IDAuMDIgLTEuNDcgMC43MiAtMS40NyAxLjUgbCAwIDAuMzEgYyAtMS4wMiAtMS4xMiAtMi40NiAtMS44MSAtNC4wOSAtMS44MSAtMS42MyAwIC0zLjA3IDAuNyAtNC4wOSAxLjgxIEwgMTcuMzggMyBjIC0wIC0wLjc5IC0wLjcxIC0xLjUgLTEuNSAtMS41IEwgMTQuNSAxLjUgQyAxMy41NSAxLjUgMTIuMjggMS44NyAxMS42NiAyLjk0IGwgLTEgMS42OSAtMSAtMS42OSBDIDkuMDMgMS44NyA3Ljc3IDEuNSA2LjgxIDEuNSBsIC0xLjQxIDAgQyA1LjM2IDEuNSA1LjMyIDEuNSA1LjI4IDEuNSB6IG0gMTYuMTkgNy43MiBjIDAuNTMgMCAwLjk0IDAuMzUgMC45NCAxLjI4IGwgMCAxLjI4IC0wLjk0IDAgYyAtMC41MiAwIC0wLjk0IC0wLjM4IC0wLjk0IC0xLjI4IC0wIC0wLjkgMC40MiAtMS4yOCAwLjk0IC0xLjI4IHogbSA4LjgxIDAgYyAwLjgzIDAgMS4xOCAwLjY4IDEuMTkgMS4yOCAwLjAxIDAuOTQgLTAuNjIgMS4yOCAtMS4xOSAxLjI4IHogbSA4LjcyIDAgYyAwLjcyIDAgMS4zNyAwLjYgMS4zNyAxLjI4IDAgMC43NyAtMC41MSAxLjI4IC0xLjM3IDEuMjggeiBtIDEwLjAzIDAgYyAwLjU4IDAgMS4wOSAwLjUgMS4wOSAxLjI4IDAgMC43OCAtMC41MSAxLjI4IC0xLjA5IDEuMjggLTAuNTggMCAtMS4xMiAtMC41IC0xLjEyIC0xLjI4IDAgLTAuNzggMC41NCAtMS4yOCAxLjEyIC0xLjI4IHoiIHRyYW5zZm9ybT0ibWF0cml4KDUuNzMzMzQxNCwwLDAsNS43MzMzNDE0LDIzNi45MzMwOCwzOTcuMTc0OTgpIiBzdHlsZT0iZm9udC1zaXplOm1lZGl1bTtmb250LXN0eWxlOm5vcm1hbDtmb250LXZhcmlhbnQ6bm9ybWFsO2ZvbnQtd2VpZ2h0Om5vcm1hbDtmb250LXN0cmV0Y2g6bm9ybWFsO3RleHQtaW5kZW50OjA7dGV4dC1hbGlnbjpzdGFydDt0ZXh0LWRlY29yYXRpb246bm9uZTtsaW5lLWhlaWdodDpub3JtYWw7bGV0dGVyLXNwYWNpbmc6bm9ybWFsO3dvcmQtc3BhY2luZzpub3JtYWw7dGV4dC10cmFuc2Zvcm06bm9uZTtkaXJlY3Rpb246bHRyO2Jsb2NrLXByb2dyZXNzaW9uOnRiO3dyaXRpbmctbW9kZTpsci10Yjt0ZXh0LWFuY2hvcjpzdGFydDtiYXNlbGluZS1zaGlmdDpiYXNlbGluZTtjb2xvcjojMDAwMDAwO2ZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZTtzdHJva2Utd2lkdGg6MTcuMjAwMDIzNjU7bWFya2VyOm5vbmU7dmlzaWJpbGl0eTp2aXNpYmxlO2Rpc3BsYXk6aW5saW5lO292ZXJmbG93OnZpc2libGU7ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZTtmb250LWZhbWlseTpTYW5zOy1pbmtzY2FwZS1mb250LXNwZWNpZmljYXRpb246U2FucyIvPjwvZz48ZyB0cmFuc2Zvcm09Im1hdHJpeCgwLjE3NDQxODM2LDAsMCwwLjE3NDQxODM2LDIyMC41MjI4MiwyOS4yMjkzNDIpIiBzdHlsZT0iZmlsbDojZmZmZmZmIj48cGF0aCBkPSJtIDUuNDEgMyAwIDEyIDEuNzUgMCAwIC05LjkxIDMuNSA1Ljk0IDMuNDcgLTUuOTQgMCA5LjkxIDEuNzUgMCAwIC0xMiBMIDE0LjUgMyBDIDEzLjggMyAxMy4yNSAzLjE2IDEyLjk0IDMuNjkgTCAxMC42NiA3LjU5IDguMzggMy42OSBDIDguMDcgMy4xNiA3LjUxIDMgNi44MSAzIHogTSAzNiAzIGwgMCAxMi4wMyAzLjI1IDAgYyAyLjQ0IDAgNC4zOCAtMS45MSA0LjM4IC00LjUzIDAgLTIuNjIgLTEuOTMgLTQuNDcgLTQuMzggLTQuNDcgQyAzOC43IDYuMDMgMzguMzIgNiAzNy43NSA2IGwgMCAtMyB6IE0gMjEuNDcgNS45NyBjIC0yLjQ0IDAgLTQuMTkgMS45MSAtNC4xOSA0LjUzIDAgMi42MiAxLjc1IDQuNTMgNC4xOSA0LjUzIGwgNC4xOSAwIDAgLTQuNTMgYyAwIC0yLjYyIC0xLjc1IC00LjUzIC00LjE5IC00LjUzIHogbSAyNy41NiAwIGMgLTIuNDEgMCAtNC4zOCAyLjAzIC00LjM4IDQuNTMgMCAyLjUgMS45NyA0LjUzIDQuMzggNC41MyAyLjQxIDAgNC4zNCAtMi4wMyA0LjM0IC00LjUzIDAgLTIuNSAtMS45NCAtNC41MyAtNC4zNCAtNC41MyB6IG0gLTIyIDAuMDMgMCAxMiAxLjc1IDAgMCAtMi45NyBjIDAuNTcgMCAxLjA0IC0wIDEuNTkgMCAyLjQ0IDAgNC4zNCAtMS45MSA0LjM0IC00LjUzIDAgLTIuNjIgLTEuOSAtNC41IC00LjM0IC00LjUgeiBtIDI2LjE2IDAgMy4wMyA0LjM4IC0zLjE5IDQuNjIgMi4xMiAwIEwgNTcuMzEgMTEuOTEgNTkuNDQgMTUgNjEuNTkgMTUgNTguMzggMTAuMzggNjEuNDEgNiA1OS4yNSA2IDU3LjMxIDguODEgNTUuMzQgNiB6IE0gMjEuNDcgNy43MiBjIDEuNCAwIDIuNDQgMS4xOSAyLjQ0IDIuNzggbCAwIDIuNzggLTIuNDQgMCBjIC0xLjQgMCAtMi40NCAtMS4yMSAtMi40NCAtMi43OCAtMCAtMS41NyAxLjA0IC0yLjc4IDIuNDQgLTIuNzggeiBtIDI3LjU2IDAgYyAxLjQ0IDAgMi41OSAxLjI0IDIuNTkgMi43OCAwIDEuNTQgLTEuMTUgMi43OCAtMi41OSAyLjc4IC0xLjQ0IDAgLTIuNjIgLTEuMjQgLTIuNjIgLTIuNzggMCAtMS41NCAxLjE4IC0yLjc4IDIuNjIgLTIuNzggeiBtIC0yMC4yNSAwLjAzIDEuNTkgMCBjIDEuNTkgMCAyLjU5IDEuMjggMi41OSAyLjc1IDAgMS40NyAtMS4xMyAyLjc4IC0yLjU5IDIuNzggbCAtMS41OSAwIHogbSA4Ljk3IDAgMS41IDAgYyAxLjQ3IDAgMi42MiAxLjI4IDIuNjIgMi43NSAwIDEuNDcgLTEuMDQgMi43OCAtMi42MiAyLjc4IGwgLTEuNSAwIHoiIHRyYW5zZm9ybT0ibWF0cml4KDUuNzMzMzQxNCwwLDAsNS43MzMzNDE0LDIzNi45MzMwOCwzOTcuMTc0OTgpIiBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIi8+PC9nPjwvZz48L3N2Zz4=)}.leaflet-container.dark .leaflet-bar{background-color:#404040;border-color:#202020;border-color:rgba(0,0,0,.75)}.leaflet-container.dark .leaflet-bar a{color:#404040;border-color:rgba(0,0,0,.5)}.leaflet-container.dark .leaflet-bar a:active,.leaflet-container.dark .leaflet-bar a:hover{background-color:#505050}.leaflet-container.dark .leaflet-control-attribution,.leaflet-container.dark .leaflet-control-attribution:after,.leaflet-container.dark .map-info-container,.leaflet-container.dark .mapbox-info-toggle{background-color:rgba(0,0,0,.5);color:#f8f8f8}.leaflet-container.dark .leaflet-control-attribution a,.leaflet-container.dark .leaflet-control-attribution a:hover,.leaflet-container.dark .map-info-container a,.leaflet-container.dark .map-info-container a:hover{color:#fff}.leaflet-container.dark .leaflet-control-attribution:hover:after{background-color:#000}.leaflet-container.dark .leaflet-control-layers-list span{color:#f8f8f8}.leaflet-container.dark .leaflet-control-layers-separator{border-top-color:rgba(255,255,255,.1)}.leaflet-container.dark .leaflet-bar a.leaflet-disabled,.leaflet-container.dark .leaflet-control .mapbox-button.disabled{background-color:#252525;color:#404040}.leaflet-container.dark .leaflet-control-mapbox-geocoder>div{border-color:#202020;border-color:rgba(0,0,0,.75)}.leaflet-container.dark .leaflet-control .leaflet-control-mapbox-geocoder-results a{border-color:#ddd #202020;border-color:rgba(0,0,0,.1) rgba(0,0,0,.75)}.leaflet-container.dark .leaflet-control .leaflet-control-mapbox-geocoder-results span{border-color:#202020;border-color:rgba(0,0,0,.75)}@media only screen and (max-width:800px){.mapbox-modal-body{width:83.3333%;margin-left:8.3333%}}@media only screen and (max-width:640px){.mapbox-modal-body{width:100%;height:100%;margin:0}}@media print{.mapbox-improve-map{display:none}}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(https://kothrud.com/wp-content/cache/wpc-hostfix/#default#VML);display:inline-block;position:absolute}.leaflet-container img.leaflet-tile{max-width:none!important}.leaflet-container img.leaflet-marker-icon{max-width:none}.leaflet-container img.leaflet-image-layer{max-width:15000px!important}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-oldie .mapbox-modal .mapbox-modal-content{display:none}.leaflet-oldie .mapbox-modal.active .mapbox-modal-content{display:block}.map-tooltip{width:280px\8}.leaflet-oldie .leaflet-container.dark .map-tooltip .close,.leaflet-oldie .leaflet-control-layers-toggle,.leaflet-oldie .leaflet-control-zoom-in,.leaflet-oldie .leaflet-control-zoom-out,.leaflet-oldie .leaflet-popup-close-button,.leaflet-oldie .map-tooltip .close,.leaflet-oldie .mapbox-icon{background-image:url(data:image/png;base64,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)}.leaflet-oldie .leaflet-container.dark .leaflet-control-layers-toggle,.leaflet-oldie .leaflet-container.dark .leaflet-control-zoom-in,.leaflet-oldie .leaflet-container.dark .leaflet-control-zoom-out,.leaflet-oldie .leaflet-container.dark .mapbox-icon,.leaflet-oldie .mapbox-button-icon:before{background-image:url(data:image/png;base64,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)}.leaflet-oldie .mapbox-logo-true{background-image:none}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/chosen-5f763c0ac7.css */
@media all {
.chosen-container{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border-top:0;background:#fff;}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container .search-choice .group-name,.chosen-container .chosen-single .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .search-choice .group-name:after,.chosen-container .chosen-single .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:40px;border:1px solid #E3E3E3;border-radius:0px;background-color:#fff;color:#444;text-decoration:none;white-space:nowrap;line-height:40px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type="text"]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:280px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{background-color:#fff;cursor:pointer;display:block;padding:10px 20px;border-top:0;color:#000;border-bottom:1px solid #f9f9f9}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;border:1px solid #E3E3E3;cursor:text;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:8px 15px}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type="text"]:placeholder{color:#e3e3e3}.chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:25px;outline:0;font-size:16px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;)}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #C1C1C1}.chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx){.chosen-rtl .chosen-search input[type="text"],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type="text"],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border-top:0;background:#fff;}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container .search-choice .group-name,.chosen-container .chosen-single .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .search-choice .group-name:after,.chosen-container .chosen-single .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:40px;border:1px solid #E3E3E3;border-radius:5px;background-color:#fff;color:#444;text-decoration:none;white-space:nowrap;line-height:40px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type="text"]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:280px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{background-color:#fff;cursor:pointer;display:block;padding:10px 20px;border-top:0;color:#000;border-bottom:1px solid #f9f9f9}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;border:1px solid #E3E3E3;cursor:text;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:8px 15px}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type="text"]:placeholder{color:#e3e3e3}.chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:25px;outline:0;font-size:16px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #C1C1C1}.chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx){.chosen-rtl .chosen-search input[type="text"],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type="text"],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}
.chosen-container{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border-top:0;background:#fff;}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container .search-choice .group-name,.chosen-container .chosen-single .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .search-choice .group-name:after,.chosen-container .chosen-single .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:40px;border:1px solid #E3E3E3;border-radius:0px;background-color:#fff;color:#444;text-decoration:none;white-space:nowrap;line-height:40px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type="text"]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;position:relative;overflow-x:hidden;overflow-y:auto;max-height:280px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{background-color:#fff;cursor:pointer;display:block;padding:10px 20px;border-top:0;color:#000;border-bottom:1px solid #f9f9f9}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;border:1px solid #E3E3E3;cursor:text;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:8px 15px}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type="text"]:placeholder{color:#e3e3e3}.chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:25px;outline:0;font-size:16px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;)}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #C1C1C1}.chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx){.chosen-rtl .chosen-search input[type="text"],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type="text"],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border-top:0;background:#fff;}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container .search-choice .group-name,.chosen-container .chosen-single .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .search-choice .group-name:after,.chosen-container .chosen-single .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:40px;border:1px solid #E3E3E3;border-radius:5px;background-color:#fff;color:#444;text-decoration:none;white-space:nowrap;line-height:40px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type="text"]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;box-shadow: 0 0 5px rgba(0,0,0,0.3);}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;position:relative;overflow-x:hidden;overflow-y:auto;max-height:280px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{background-color:#fff;cursor:pointer;display:block;padding:10px 20px;border-top:0;color:#000;border-bottom:1px solid #f9f9f9}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;border:1px solid #E3E3E3;cursor:text;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:8px 15px}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type="text"]:placeholder{color:#e3e3e3}.chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:25px;outline:0;font-size:16px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #C1C1C1}.chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx){.chosen-rtl .chosen-search input[type="text"],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type="text"],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}
.chosen-container{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border-top:0;background:#fff;}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container .search-choice .group-name,.chosen-container .chosen-single .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .search-choice .group-name:after,.chosen-container .chosen-single .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:40px;border:1px solid #E3E3E3;border-radius:0px;background-color:#fff;color:#444;text-decoration:none;white-space:nowrap;line-height:40px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type="text"]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;position:relative;overflow-x:hidden;overflow-y:auto;max-height:280px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{background-color:#fff;cursor:pointer;display:block;padding:10px 20px;border-top:0;color:#000;border-bottom:1px solid #f9f9f9}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;border:1px solid #E3E3E3;cursor:text;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:8px 15px}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type="text"]:placeholder{color:#e3e3e3}.chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:25px;outline:0;font-size:16px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;)}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #C1C1C1}.chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx){.chosen-rtl .chosen-search input[type="text"],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type="text"],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}.chosen-container{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border-top:0;background:#fff;}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container .search-choice .group-name,.chosen-container .chosen-single .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .search-choice .group-name:after,.chosen-container .chosen-single .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:40px;border:1px solid #E3E3E3;border-radius:5px;background-color:#fff;color:#444;text-decoration:none;white-space:nowrap;line-height:40px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type="text"]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:280px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{background-color:#fff;cursor:pointer;display:block;padding:10px 20px;border-top:0;color:#000;border-bottom:1px solid #f9f9f9}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;border:1px solid #E3E3E3;cursor:text;border-top-right-radius:5px;border-bottom-right-radius:5px;padding:8px 15px}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type="text"]:placeholder{color:#e3e3e3}.chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:25px;outline:0;font-size:16px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #C1C1C1}.chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx){.chosen-rtl .chosen-search input[type="text"],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type="text"],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/slick.css?ver=7.0.4 */
@media all {
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/Slick-theme-644d873fd7.css */
@media all {
@charset "UTF-8";.slick-loading .slick-list{background:#fff url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/ajax-loader.gif) center center no-repeat}@font-face{font-display: swap;font-family:'slick';font-weight:400;font-style:normal;src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/fonts/slick.eot);src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/fonts/slick.eot?#iefix) format("embedded-opentype"),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/fonts/slick.woff) format("woff"),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/fonts/slick.ttf) format("truetype"),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/slick/fonts/slick.svg#slick) format("svg");}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;margin-top:-10px\9;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:none;outline:none;background:transparent}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{color:transparent;outline:none;background:transparent}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:'slick';font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir='rtl'] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:'←'}[dir='rtl'] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir='rtl'] .slick-next{right:auto;left:-25px}.slick-next:before{content:'→'}[dir='rtl'] .slick-next:before{content:'←'}.slick-slider{margin-bottom:0px}.slick-dots{position:absolute;bottom:-50px;display:block;width:100%;padding:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:10px;height:10px;margin:0 2px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:10px;height:10px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent}.slick-dots li button:hover,.slick-dots li button:focus{outline:none}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{font-family:'slick';font-size:12px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;color:#d1d1d1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{color:#41a6df}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/prettyphoto-c8b825c079.css */
@media all {
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}div.pp_default .pp_top .pp_left{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}div.pp_default .pp_top .pp_middle{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAvCAYAAAAvgRLNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEJGMkY2QjUxMTM2ODA5MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RkQ3N0Q4RDNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RkQ3N0Q4QzNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAzODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+wcubnwAAAHlJREFUeNrs3EERACAMA8FUIP6t9AcGqACGXQmZe6eSrPC9EgJCQAgIgVsI3b3NgBAQAkJACAgBISAEhIAQEAJCQAgIASEgBISAEBACQkAICAEhIASEgBAQAkJACAgBISAEhIAQEAJCQAg8GUK8qiEEhIAQEAKDI8AA1FuTlQtMVXIAAAAASUVORK5CYII=) top left repeat-x}div.pp_default .pp_top .pp_right{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}div.pp_default .pp_content .ppt{color:#f8f8f8}div.pp_default .pp_content_container .pp_left{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAACCCAYAAAD1/sBJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEJGMkY2QjUxMTM2ODA5MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RkQ3N0Q5NTNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RkQ3N0Q5NDNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA1ODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+IJNLSgAAALpJREFUeNrsz7ENgDAMAMGYysvBsLBcOiMKmigDRMp9YVl2dVFVbSwi/vUcf733uy1WZl6T8/ONme9oGwYNDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ29Vq8AAwDEjAwBf+xdvAAAAABJRU5ErkJggg==) -7px 0 repeat-y;padding-left:13px}div.pp_default .pp_content_container .pp_right{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAACCCAYAAAD1/sBJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEJGMkY2QjUxMTM2ODA5MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RkQ3N0Q5NTNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RkQ3N0Q5NDNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA1ODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+IJNLSgAAALpJREFUeNrsz7ENgDAMAMGYysvBsLBcOiMKmigDRMp9YVl2dVFVbSwi/vUcf733uy1WZl6T8/ONme9oGwYNDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ29Vq8AAwDEjAwBf+xdvAAAAABJRU5ErkJggg==) top right repeat-y;padding-right:13px}div.pp_default .pp_content{background-color:#fff}div.pp_default .pp_next:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAeCAYAAAA/xX6fAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowNzgwMTE3NDA3MjA2ODExOEJGMkY2QjUxMTM2ODA5MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyNzU1MDMzODNFODUxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyNzU1MDMzNzNFODUxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA3ODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA3ODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+GEY9uAAAAX5JREFUeNrslzFrwkAYht8kiqIhVTBTM7pGhEKWDPVfiP9AB5dOHbKl0EI2/4D/oXuQQrJkyNI9kK2gDg0EdTD27tDWUa13kx+8OS7Lc99378fdSbvdDiKjRD+bzeYwfyR6InoguufA25aOJs9Er5wTVCRaUpIhzcynP3iXVN6PLyJgx0BTlGkOwDvRQNyANPI8R5Ik/2/8U2KxWGA8HqNarcKyLIxGI74ZzmYzqKoK2rdRFGE6nfIF9no9KIqCZrMJTdMQx/FF0JOBuq7DcRzUajXIsox6vQ7f9zGZTPiZxjAMDIdDto+SJLExDEMGvrppflco/62RlrfRaLBScwGmaQrXdVGpVFAUBYO12222v1cHzudzeJ7HnLper1lWnU4Hg8GATx8GQYAsy5hDaSm73S76/T4/l9q2jVarhXK5DNM0L4LROBzAJ11sVqsVlsslc+ulcRbwdjydA/wWDfwUDXToJVUk8GMPFWqaN3rsEb0TfXHiFZLox8yPAAMA4GRx1RbQJygAAAAASUVORK5CYII=) center right no-repeat;cursor:pointer}div.pp_default .pp_previous:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAeCAYAAADdGWXmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowNzgwMTE3NDA3MjA2ODExOEJGMkY2QjUxMTM2ODA5MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEM0IxQkE1RjNFODcxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEM0IxQkE1RTNFODcxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA3ODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA3ODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+GEjUPgAAAZBJREFUeNrsl79qwlAUxr+kAUEMEVGEhDyCUHBykSL4DM7BUV+gULcOnUoGMUPAl3B0Kv4BC4JjBsmgRKpDpvonSExvAi0d09R7odADH4QLlx/fPefcc8MFQQBWIXieR4PmEM2JnolewoVUKgXudDrRtnZP9MQK5hPdEdiYZ5CqG6LH8INnVBu3LGESSxj+Dsy2bRwOh581dRJQv9/HYDCAqqrodDooFAp0nJmmidFoBEmSsNlsMBwO6TjrdruwLAvZbBY8z0OWZdTr9evnzDAMLJdLXC4XnM9nkDsVrVYr9hHGdjadTjGbzZDJZKLj830f7XYbiqJcvxo5jkMul4MoilEFRpcqWaNS+pVKBaVSCa7rQhAEOI6DXq+H9XpNp880TUOtVsPxeESxWMRut4Ou69hut3SautFooFwuRw4/czeZTOg1dbPZRDqdxmKxwH6/R7Vajb038fBcrVbI5/MROE6QouJYTOov2P+I+W28s4TNWcHCp9wDK1gIGiee1DHijej1+/M7amqWPxYfAgwACS6Jy3cFed0AAAAASUVORK5CYII=) center left no-repeat;cursor:pointer}div.pp_default .pp_expand{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}div.pp_default .pp_expand:hover{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}div.pp_default .pp_contract{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}div.pp_default .pp_contract:hover{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}div.pp_default .pp_close{width:30px;height:30px;background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}div.pp_default #pp_full_res .pp_inline{color:#000}div.pp_default .pp_gallery ul li a{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAhCAIAAAAUH2/TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RDNCMUJBNjIzRTg3MTFFMDhFNkY5MzEyRUYzMTRFMDIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RDNCMUJBNjMzRTg3MTFFMDhFNkY5MzEyRUYzMTRFMDIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEM0IxQkE2MDNFODcxMUUwOEU2RjkzMTJFRjMxNEUwMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEM0IxQkE2MTNFODcxMUUwOEU2RjkzMTJFRjMxNEUwMiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pkr7DkwAAAJ1SURBVHja7JfJiiJBEIbbstzGXXEDxQVEPPgiHn0d8eRDiggKKoob7tu4zTeVQ4+o9JhlO3jwP0hVZETGXxGREanhdDp9vB6Uj5eE+prRetN619ablizm8/lsNttsNtvtlleLxWK1Wl0ul9Pp1L2nge10G2Pb7XaNRiMkrBoMBsN6vUYO0cPhEIlEEOqhxS76OC0Wi1arFQqF/H7/ScPfTTWMRqNerxeLxRwOx39KIh/TbDaj0ShxOh6PF6uCpc/nU1UVtUQiYbPZ5KK1XC5lOcGjXq/7NXz9VSJmIJVKKYry3GhNp1Pq6Z+cRNhQm0wmmHg8Hol2epTEfr8fj8fkjoo+lxeLxUqlcq2PGsqYYHi/F+UkCdxQ7NdVzNErl8uQq1arF0soY4Lh/V6kk8juu92OWr6odJcGVkulUi6XKxQK2Wz2T6GoKiYskfpn1RZsMCEjN30gzGQyXq8XKp878yBSc78vaVroc75o6Df7ZDKZzOfz8Xicjgp1IUQZk4ve9v0n0Ww2U0n83iS0Wq1YvTi5TCTxSff2rcFgIMWJGGBCt0un0+dyt9sNIWro2qRWq9nt9kAgQGafFS3SwQweDodMQybPp5wWcFOf+cNICIfDIo9PpGUymYLBIAORAmfCfKEM13a7zVjE5Lm0frdgRRFJaTQalPN5zC7i1Ol0WEUZEylHemiJgDFMcNbv98Vg+aGB1ZUGBg6MudjQzGRDpf8GASEOF2VOm4AWpfZTgzingAiRaHR4lg3VQ7dTnOGS8uJ8wU+MSCEXQrGqg9Ojl2ZSg3sciw4uthJ3QEWDVK/65rs8JG4Ookd2fv9PfNN6Fn4JMADwIn/wsGds/wAAAABJRU5ErkJggg==) center center #f8f8f8;border:1px solid #aaa}div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a{border-color:#fff}div.pp_default .pp_social{margin-top:7px}div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}div.pp_default .pp_details{position:relative}div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;margin:4px 0 0 0;width:20px}div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}div.pp_default .pp_content_container .pp_details{margin-top:5px}div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;margin:0;padding:0 0 0 10px;position:absolute;top:2px}div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:.7}div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}div.pp_default .pp_bottom .pp_left{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}div.pp_default .pp_bottom .pp_middle{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAvCAYAAAAvgRLNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMTgwMTE3NDA3MjA2ODExOEJGMkY2QjUxMTM2ODA5MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RkQ3N0Q4RDNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RkQ3N0Q4QzNFNkIxMUUwOEU2RjkzMTJFRjMxNEUwMiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAzODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4QkYyRjZCNTExMzY4MDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+wcubnwAAAHlJREFUeNrs3EERACAMA8FUIP6t9AcGqACGXQmZe6eSrPC9EgJCQAgIgVsI3b3NgBAQAkJACAgBISAEhIAQEAJCQAgIASEgBISAEBACQkAICAEhIASEgBAQAkJACAgBISAEhIAQEAJCQAg8GUK8qiEEhIAQEAKDI8AA1FuTlQtMVXIAAAAASUVORK5CYII=) bottom left repeat-x}div.pp_default .pp_bottom .pp_right{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}div.pp_default .pp_loaderIcon{background:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/prettyPhoto/default/loader.gif) center center no-repeat}div.light_rounded .pp_top .pp_left{background:url(data:image/png;base64,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) -88px -53px no-repeat}div.light_rounded .pp_top .pp_middle{background:#fff}div.light_rounded .pp_top .pp_right{background:url(data:image/png;base64,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) -110px -53px no-repeat}div.light_rounded .pp_content .ppt{color:#000}div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right{background:#fff}div.light_rounded .pp_content{background-color:#fff}div.light_rounded .pp_next:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABSVJREFUeNrMmMlLZEkQxqO03FcUFA+DCypoqQcRmlZccANRUTw4oIfpg3cv42UYET3YgtBHz/MHiApzcFxmxIMgOhe9KG6HHnBXxH2rqokvqCiyX1eVZV+qEpL3Kl9mvvxFfBGZr2xut5tsNhuNj4+Tj+Lg5418/ch9SvmajUZu+xoXF1cQFRXlio2NddrtdhfmCEFJ8Fzv3jPIrjcPDw/eRgbK4csnl8v1C9ccGIavUlEiIiKKXl9fxVgMTNHR0RQTE0ORkZEUYvj3QaMkJiaS0+msY8hf+dqqKgAYg3qB0I4K8JeXF1IDYDwbLFTgPwbtAR5jiA/4zfIVWLMoEK7wMLwP6NvbW4wXY8THx4c1uN2UNDwMYPWuetUEwG+rEdAX4AgR7Qu5hyu46cZPkLRYwiNnVEByshLp+ioAQz81EsBRoQCrgcLK05y5HZ6kJcnIXCxitKamRuBWVlZExmYxlQB4SBzQ8DSqNTzw/OnpSa4IH1TcQylq6OfnZ2nzeobbsC6sD8bFGBTMg3H+FIjwQ7Wuwe4Z0IgsbYVBwQLu7+8pPT2dqqqqBPzm5uabBRlZ3RvjWBAWh5ebModBMjIyRD2Xl5dScZ+Xl0fHx8d0cnJCZWVlMl6TJ+Y5ODig/Px8eY4xeAd+4xn6an5RJ6D94uJC3odnvuT90fSYuUXB4gDFBFgcwE2p4+X6MjWUZnY1hlkeHx+pqKiIWlpaqLe3l+7u7qRfQ0ODGBZAjY2NVFdXR7m5uWKMnJwcOjw8pMLCQurp6ZE+aWlp1NbWJgpISUmRvhUVFdTa2krFxcUyBuv0tQa7RwqleKgysEoFAAAHMBZWXV1Ns7Oz3/VVw8FQqGo4U15WY1RWVtLq6qrcY/uDslD29/dpYmJCgJKTkyk1NZWmpqaov7+fOjs7KTMzk87OzmhtbU12i+vrayopKaGuri7ph/dgHMLTyqOrydaFmN5Sj6vnAH51dSWx2tzcLG3az5zY9HygZDY/Py/5AvNZCzwMwL6+PqqvrxeJwpBzc3Mif0BPT0+LMeAIVI31hIQEUQI8DSUE3Kc1KfjNepxETC+pV3wVwELKmhzNMWqIyclJUU93d7fXWPA2ChLm9va2GATzYG2APj8/986FkAMY5kRc69q0r78tM0LP0tYM5wsYcQYLYhEzMzP+90Hj9BaoQJaLi4uUlZX13bPT01NaXl6m9fV12t3dFSAkVEh7b29PjNLR0SHKMzP9e/bpzUDQCoysC+CFhYXAk3qgrZlbtxJtS0pKos3NTUlm5taEAvnW1tZKciovLxcPt7e3i3QRswgNJCyHw+E9FCnDmw70yGqVB/0cLLC5Zfk7sPgCRsEOgAQE7wEacQgAZHTMj7adnR2RKNowBwyxtbUlz5aWliQEMH5jY4MKCgro6OhIlIDxaH8L2ob4Gh0dLeWJ/+QXZVtTPCzb1NQkEwUDjH761aWHDxNej6t4DzIrgPAbIBhn/jYNj3kwFvcYh/H6ZajzaOzrwchfiNk824xtbGxshO9/N19mggPmLWD9SNGTEO5D+Ln5Zky72Wp/MNisnqHNgpgLBlg9gitgg01oIfvgGB4ePuDU/4UX+q8v8GCBAavQYf+VNTIy4h4cHPyH97vfGPwvX9/S/mJYJW2Ch6uXrZ+WAHcNDQ39zZt+PyeKzwzxVeVqGkA/Ja3xq+Dh7GUzkX3zx+DAwAAII/laxttEA4N8YBAH9/vJc5j5jwHzuc2JPwfxxyBXdwg8/EN/DP4vwADzqyH4OmxBwwAAAABJRU5ErkJggg==) center right no-repeat;cursor:pointer}div.light_rounded .pp_previous:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABURJREFUeNrUWElLLFcUPj04j4gTiIqioLgQRAhOKE4YtwpZZJN/IARciQtXgsrDRVAUxUhw2ATcBSIJcSQoAU2MUdQ4NCpOOM9D534nfZpr5/Zrk8Cj34FL3aq6dep85zvDrbIPDQ1d0X+XMNfxmj6QPD4+Wu/v720PDw/Wp6cn6/PzsxXXX15e/lCHX9XxZ3Xth6ampiV17jTpsPT19TnpIxAFhhRYuru7IwWWnE4nX8OAWK1WHhaLBWNbXfrm9vb265aWlj89wVtGR0f9HjTAXlxc0NXVFYMFMLvdLgB5jThBsexeo5zwnYqId83NzT/Cb6LP+jEAPj09pcvLSz4PCAigwMBAndW/2VNHm83G97AGwJUDPlXzVsV2hY4VOUH+OhRLdH5+Tjc3N6/Y1QXgTOcAjrWK/fygoKAvGxsbMwS4XzN9fX3NAwLAwq5JwsPDKTg4mEFLfuMZlyNqoqOjv1BTG4LC7ukpCLyMsJKCgRdJ2AgDOEL0kMI1FBq5JwUGa6BH1mIO/Tji3MQg3g3AyFM8pzPpuRaAi4qK+N7ExATrlrV4P+xROj5XbH/b3t6+YDd5TVU9io+Pf+W5vb09zq2QkBBKS0tjowTU6uoqGw/lWVlZ/FJhBYDW19cpMzOTdcBheBb6IyMjaXNz082IZy6r9iQF6RUIqdiQiIgIBgxbT05OWL+JSHUtRa1Fbv9mBA22srOzGcDy8jLFxcVRTU0N9ff3szHV1dV0eHjIL0lJSeF7AwMD5HA4qLKykhnCXFiem5ujiooKmp2dpfn5edZRV1fH71pcXGSDPUU3Xj8CsDhBGBbAMzMz7uqtPwfHYa6c+wmC04oTzwEmxJu9vb3U1tbG84KCAm4bkMnJSerp6eH7kMTERHYWZGNjgzo7O9lJw8PDzNj29jbl5ubS8fExp0JsbCwtLCzwXAw02SAG60OkpKTkFWBJR9NaV5rkIDjtvooJPJ6cnMxzKJf8iomJoaSkJCouLubz3d1dd5imp6dTQ0MDnwPk1NQUM1xfX08JCQmUkZHB6xBFYWFhxveCMT2fdQAAV1tbS6oq09nZ2T8Am6q5y4HJDFqS3ltodXV18fHo6IiNDw0N5fPy8nIeEg1wiAiiYWVlhY0C+5LXEOQ2GEd6wGDoM9mgbTt97tRkl/ZGsfhsWa2tre4wRigJmyMjI9Td3c1z5BUMl6oNQKiiYHdtbY2fw72trS0qLCzkVEBog2VvLUgvYCYZGxtjsIi4srIyYzHUBboUkQ6vfVrf6UjbkGou4QaGdnZ2aHp6mnJycji/sImAIIRLS0spPz+f8vLyOHIAEAUN1RaytLTEncCb4D3vAw0ZHx9n4LDNF3BX61pGxBu1AhzCGSxFRUW5t31iCK4DCKo68gmsoYqnpqZy+0Koo/ojd9He4DTo3N/f57DHeoQt9HoTU+/2FGxN3wocupTNc8gI41cW8gO9GsaCDTFONhUYUC5hC4ZdLYHB6PmF6gyWcYSjsBaOQ6RI5TYJdAAU3qX3ZZMgeqqqqngdnCC7OI8NkkNF5mcqJc2bExgvYejpLQDV+6rsst4iKGwYbxHRq7dPX4xjnSdg0aXIGFGAf0djsJOfChwMB8lmw1d1lq8wE4FKvld7h2EEkF+DFoYAXJj+F21Jrwu/qBrz1eDg4AY6IHLar0HLh47kpbRFX+EuRRcMA3BHR8dPLsDoqU6/Bq0Dl74tX3jv+12kxIEcRkhrDD/K3xO7qs7/56feB/sxKCAV2/xjUIW6TYG3qOtW17Z1FX1Y3Zs7ODiYcBWtJ41hd3j8JcAAJ3IhvjEWLJYAAAAASUVORK5CYII=) center left no-repeat;cursor:pointer}div.light_rounded .pp_expand{background:url(data:image/png;base64,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) -31px -26px no-repeat;cursor:pointer}div.light_rounded .pp_expand:hover{background:url(data:image/png;base64,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) -31px -47px no-repeat;cursor:pointer}div.light_rounded .pp_contract{background:url(data:image/png;base64,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) 0 -26px no-repeat;cursor:pointer}div.light_rounded .pp_contract:hover{background:url(data:image/png;base64,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) 0 -47px no-repeat;cursor:pointer}div.light_rounded .pp_close{width:75px;height:22px;background:url(data:image/png;base64,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) -1px -1px no-repeat;cursor:pointer}div.light_rounded .pp_details{position:relative}div.light_rounded .pp_description{margin-right:85px}div.light_rounded #pp_full_res .pp_inline{color:#000}div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next{margin-top:12px!important}div.light_rounded .pp_nav .pp_play{background:url(data:image/png;base64,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) -1px -100px no-repeat;height:15px;width:14px}div.light_rounded .pp_nav .pp_pause{background:url(data:image/png;base64,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) -24px -100px no-repeat;height:15px;width:14px}div.light_rounded .pp_arrow_previous{background:url(data:image/png;base64,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) 0 -71px no-repeat}div.light_rounded .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.light_rounded .pp_arrow_next{background:url(data:image/png;base64,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) -22px -71px no-repeat}div.light_rounded .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.light_rounded .pp_bottom .pp_left{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAB3CAYAAADPXJhXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAD6VJREFUeNrsXXuMFdUZP3t3RV4uD3m6rAsUqwsojxUtL7mWV2lBMb6wgbCmBBPTJk1JNJVaFjRtSZSYtP/QkLA20iDWP0ygKZXArhFXQWu1yvJYXqubFQjgsrzl0e939pzr2cOZe2fmztx7597zJV9mdubMdx7f73zn+745d7bo+vXrzJKlkpUrVzrevOOOO0bRYTrxROJ7iCsCqreHOJ7LRCcBdvC1a9fY5cuXY999910x+OrVq0VXrly5KIo1U5n/UZkG4m3Lly//oqampmBmSRF11gSAoXSopoFZTIMyFAMoOWokAUAKBwgYAYARABLXZZ9isRjnoqIi8FHiv1H5Wip7qCAsggEEcToso4Gbi8HCwJSUlCQGKmogAAAuXrzIAYCj3iecq1YD5QkcFXT9xS5dulTRrVcuXLiwo6CAABDQYPyJBuN+/H3TTTcllC8HLGogICWys2fPchDofUqYRdE3HEn5CQtC1uCnVLZ/t27dns93MJRoywEswf1yxoCivBxcunSJnTt3joNA7ZO0Cmp5HRgoK6zDBDpfdvPNNx8heYfzFQjq1KjGcsDRUVIS6U5BsfADYA2kJZB9otnNbrnlFuYULfXs2ZOXUZ8hWT8rLi6uznuLgOhAOIa8825DSjnrMOCYPTRYrGvXrtz84m8QzSR+XTXX58+f589h5mHQwSgD5UFxYMiGHMhDOenkqTNWla2DAPLBkIMyuN69e3c2bdo0/vzOnTtZe3t7J8sAEEyePJmXra+v5/3CMgJ5VG4xteUtatsX+bw0TEd04OVBDM6ZM2e4oh544AF+hAIPHDjAmpqa2IQJE/j948eP8wHG4OL+t99+y+699142ePBgroQ9e/bwZ3r37s3N+G233cbuvPNODo7W1la2f/9+DoIRI0ZwEOEZKAcRwDfffMOVawIonpFglIRnAMJbb72VK/z999/n/gMIVgLX0I+TJ0/ysjKagDxqfwUBCqH0F/m8NExEZ704hBjQfv36sSVLlnAlQpmQ8dhjj7FTp06x6dOns8rKyoRphlIAgmeffZaDpLm5mYNk/vz57KGHHmItLS0cAE888QQvCwCMHj2aDR3agc9Zs2ZxAA0bNowNHz6c123yX1TvX/UF5DVYAigaCp8yZQoHqbQEEgQoI0NMaR3FcWK+O4v3YFClN51qaUDZ06dPs0WLFnFl1tbWsl69evHZ3djY2MnRlArBbB8/fjyfwWvXrmVtbW181uH67NmzuWIrKjryVRs2bODLwq5du1h5eXliSdi+fTtXEmYvwIeZrbdVzXmY+iTBAMXj+alTpyaWMAkCaUkkEAAm0YZ78h0IFXLQdI/aRBio/v37sx49erBt27ZxpfTt25c/C+VKZ0slrNeDBg3i5zDpmOm4dvDgQX4NSwKsysiRI9maNWvYkSNH2Jdffsk+//xzPmNBDz74IBs7diwHGgB37NixpFGD3iepWCwbUDiWNLQdBGslQaBaAhVgJOP2gsgj6GuqE8n1U/oK+BtKlQrAQEuFyHvqMzhXn5Fr8QcffMCfxZIyatQoDpbS0lLW0NDAy0Dxhw8f5rMXFgllddDK9qTqE8qpSwvOsYy5HYN89RGOeskaYkZCESCsszDz8AuwTMAawNuWQIAzhvsY4K+//ppfLysr42VPnDiBiCVhJXD+8ccfs/Xr17OlS5fy63369EksDXv37uUO3u7du/nzpjaLFHHCqXRqfzwe51ZMRik4xzWn0FlYluZ8BUIxOk9r5VTq5GgvySMoB2vquHHj2N13382Vj5k8b948tmXLFjZnzpxEKDdw4EC+1tfV1bFJkyaxMWPGcGDAOZwxYwZXMO498sgjbOLEiTy7h3YBMB9++CEHEp5D++AfDBkyhB9hzuFLmJYFOeP1PkkQDBgwgAPg3XffZYcOHeL+CfwcLHlwZPXnEIISGLaTFfpHPgOhjM7nyJmXimQcjxm+b98+7gDKcPC9997jYSOUCEcQAw6nDIywEooFARjwMVAejLUaVgFmH/egiB07dnD5UDqWCMiHUwlZIISXAI3JmVXBkAwEyCVgKUFfkoFBAGEdAeGjfAQCf/soEkqbaUCGerEKcl0FY9BlQglmFBZC+goyxw/FQ5m4JxNKKI/lBOdQiJ6cgqJlEkqu3+pzuimXVgiy0C4cZZ9Q/8yZM3n7JAhUAuBwH+VxH0CWywLVc5RO5+ZrQinxGprAUEMDvUJVXlRJhq0AAgCn9glggGJ1EKhgwPMSBBLEBMxVBMYVhRA11BLqq2hGzY265wyLAYsCa6ImmECqgk2kAwQWh2RtIStTWwhRA2L4I3R4lTr+UdRfOsmIAf3AbAYg/PRJ7FnYTUB6NZ/fPCacRUkUAh4hR6yJZkA/Gswfusky5jIY1BAy2WtnU6goLME/6blVhbAxpRMQFDA00GC00UAMpWNvNV8fRTAIj9+YY1ATWignGHmVP5Oj+UfiTwshoWS0l2KZqCEH8i28cSMuqM2rdN1uXrVUmBSzQ2DJAsFSZx+hsrLyusnRSuYcJnMgGxsbXe1wyVa9lnxaBHW7d6oQLMht79mqt2CBoA6iDK/0bV7qTDUNuvqcV0Vnul5LDkBQB/rxxx9P/I1z00zEOfYWymvy3Ksy1HoN+wMdz/VrFgQBWgQ52zZt2sQV65ZQFs/4Mc9qvUEsIZbSdBZVM+wFDCoIdBlerIJq3vV6pXyn6/pyYikNIKgm14s1UBUExXhdq02mXld0KkC4iTQsebAIcjB1BTiRqZwfZZiUKC2SXoe8poLBAiDg8DGIAfVjnp3q1RVuAob1EYIj/q4BiZ0g3jDK2e0loZSNei2lSCilaxX8Pp+tei0ZwseglgYvZtpUr74cpDoPMgwteCAEFX55Te4kq1f3CZKFtDapFFDUoM5Mp3jdKWxMVc6tRdDbYJLnNdllyUf46CZeTxZGpru8OC0Rqdpjcwgh5BGkQkzxerIQD8dkL4bchJzyeSfL4nTdb72WHHwEN/G6m3jfT2YxCEVaqxBgHiHZu363Ay0+h+Mpj5Dpei0lCR+TmW2nMqawze9+hEzWa8nBRzANopvZGEYiKBP1WnIAQrZSszYlnGNAsJtXLdnNq5bMzqLdvGqdxRsG1OsmUr/Ootw0q+cnTHUEkdq25ACEoMxqOhbBrWJNKWdrEQL0EXTz6/V1sN9NpKoC/WyatZtXQ1gaTEpJ9vZRvxfE5tVM1BsFWrFiBf57zALi+1jH5wh6EXcllp+jxyfw8JP+NmJ86GsX8caVK1d+4suap0oxO70FTGbCvW5Vc6rXafNqPuclCAAv0wH/N+MHQvFeCMDAN403EyB+59kimJy9VCbaBAg/MzPZ5lW3/kM+WAQCwB/o8CRxObrkUwyAg//MN5LkPUXHNwkQL3i2CH69f10hdvOqJwDMosNLxGMUsx8UYfn4jPhFAsS/XSeU7ObVjIPg93RYTzw+BBAwIROy14u6UoePqZaGVD898xOGBrlpNoIg+AsdFrLvvycVJg0g/g3VOYAswy8dLYIp/IKCkzlmpvtBb151c81PvTkCgsUZAoEk1LVY1G0GglMaN+xNpE6bZt3WG8WNrMJEL/QREQRBqHOhaZmIOa23qUI1XSlBmeds1ZtBx/CZDFsCk2V4RrTlRiDou3703xSkOk9n86qazXTz7kAFQ8Q2r74k1uts0wDRlht9hKBmmN/Nq6pFSGbyne7nuo8g8gRjcqhJY0SbOieUkg2m102kfsBjsgROP5mPaOTwZEghYjqhJdr0QidnMdXg2s2raVkDpI3Lc7Bp5aJt3y8Npn+U7WYTabq/bspGvVkgvDvIRZNVJNpmv8WcAWuAt4h1WQoX3RBeVMXtJ3jDpwU5DAKZW1hggRA+3ReFNloghE8VUWhjInwsKyuDV/so8WziKnEZu122Er/d0tLylZ8awpIbIeoVhTaWCGXhP7Q8T/ywVuAnguNUZjUprcEjCEKRGzHqGoU2xsSM1ZXVpBXEvedFWS+WwASCpnTkRpCKo9DGmDDbqrLwj7DjhsIPi7Ju6VEDCJiQ3ZyGXEshUEys3ZJaoCgy1S0O5Wd7kG0sK2THRV1+5FoKCQjSgTshQHBYKKwITKeDlfJVHmSrZQcr8pioIy7q9CrXUkhASEVB/H/gK3aocx8I8gcR/YnryHEbJpy962Bl1jKlrBtSy55Q5DFRR52o06tcSyEBYavq7AswlDmU3+pB9laHaKJMgKDMp1xLIQHhbeJ3lGu3C0Xp9I4o65Z0uZLqRB1+5UaNrkahjTGR2VutKW2EAQSrvWQBHeTqsj3LjSBdjEIbS4TSGshi/0rM1sBSwWHJjRjhR6o9c72NJdoMfk1wYBSW3AjRUc0fysk22reP4dOuKLTRAiF82pjjfgLattECIWQSH644mMNNPIg2qvsR8N68Unj1Mq3cyjreFjbSWt/mp5aw5EaMNhOPZLm3gfW6aBsrjsfj8pXxj4l/RNyXuIvgvkKBfUpLS9va29vPeARBKHKjRvX19dtpnKtZ7m1S+YqswXycxMSMnUx8l1LglPYA7k0WZb1YAl2uLtuz3AjTmyy3kktXRZs4xYTZvkuLe2sND94lyrqlSgMImJDdlobcqPoK+EXRZznUpM/Uz+rEWOdMH0x0La3bTqZ6hIeKRjjkFc4IMJzxKTfK9CLx8Rxox3HRFqYCQTpw5wQITguF1YDp9BWl/GAPlallX1HkMVFHrajTq9woWwV8x2it0u9sEOpeq39TyU34eC2Ayq8xSxIMq+jwRpZyC6jzDdEGpgOhVZzjAwrV5Lj1Ec5eDZhOn1PKt3qoVC37nCKPiTqq2fcfjGgtMDDgO0avZ9gyoK7Xk31DSd1VXCrAUOogrMlDxU0O0USpAEGpT7n5BIY1GfIZUMcaJxBIIDQS71Wu9RKK0mmvKOuWdLmS9Hjaq9x8WyaeJv5PSKHlVSH7adNyoFJxVVXVJSR16Lw7cT9xvZsBBDvJyXON3vb2dpNcXbZnuflG9fX1B4nXxeNxjFO5sJTpZiCRMcRb33UEgKdQR6oHEj+Ltynm3KBsfYvZfh8hdwGR+a+zW7JkX0NbskCwZIFgSSP5fQQ4JifIg28OoxKS/5oIG39NdVzQ/7ZqyB2LAM90LyloOXG3EOqpJl7KOjalmP62lENLAwDwsgDEz+3QWB8BP0fbQGD4iHisHSLrLGK5+JTAsI54kB0qGzX8gviA8B/sml7g4SOiiU/Iw79sh6wwgYA89jLicQSCf9nhyvM8ggP9lfi3BIBTdpgKEwj1rCPR8187PIUJhGZhAf4eQj1x1vH69KzD35ZyBAhY/2vDSvfq1sVam9yjoqj/c21LmQ0fLVkgWCoE+r8AAwAbvFC/upMiZQAAAABJRU5ErkJggg==) -88px -80px no-repeat}div.light_rounded .pp_bottom .pp_middle{background:#fff}div.light_rounded .pp_bottom .pp_right{background:url(data:image/png;base64,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) -110px -80px no-repeat}div.light_rounded .pp_loaderIcon{background:url(data:image/gif;base64,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) center center no-repeat}div.dark_rounded .pp_top .pp_left{background:url(data:image/png;base64,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) -88px -53px no-repeat}div.dark_rounded .pp_top .pp_middle{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRJREFUeNpiZGBg2M9ARcDEQGUwauCogaMGjho4auBQMRAgwAA63wDniG/BMgAAAABJRU5ErkJggg==) top left repeat}div.dark_rounded .pp_top .pp_right{background:url(data:image/png;base64,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) -110px -53px no-repeat}div.dark_rounded .pp_content_container .pp_left{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRJREFUeNpiZGBg2M9ARcDEQGUwauCogaMGjho4auBQMRAgwAA63wDniG/BMgAAAABJRU5ErkJggg==) top left repeat-y}div.dark_rounded .pp_content_container .pp_right{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRJREFUeNpiZGBg2M9ARcDEQGUwauCogaMGjho4auBQMRAgwAA63wDniG/BMgAAAABJRU5ErkJggg==) top right repeat-y}div.dark_rounded .pp_content{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRJREFUeNpiZGBg2M9ARcDEQGUwauCogaMGjho4auBQMRAgwAA63wDniG/BMgAAAABJRU5ErkJggg==) top left repeat}div.dark_rounded .pp_next:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABSVJREFUeNrMmMlLZEkQxqO03FcUFA+DCypoqQcRmlZccANRUTw4oIfpg3cv42UYET3YgtBHz/MHiApzcFxmxIMgOhe9KG6HHnBXxH2rqokvqCiyX1eVZV+qEpL3Kl9mvvxFfBGZr2xut5tsNhuNj4+Tj+Lg5418/ch9SvmajUZu+xoXF1cQFRXlio2NddrtdhfmCEFJ8Fzv3jPIrjcPDw/eRgbK4csnl8v1C9ccGIavUlEiIiKKXl9fxVgMTNHR0RQTE0ORkZEUYvj3QaMkJiaS0+msY8hf+dqqKgAYg3qB0I4K8JeXF1IDYDwbLFTgPwbtAR5jiA/4zfIVWLMoEK7wMLwP6NvbW4wXY8THx4c1uN2UNDwMYPWuetUEwG+rEdAX4AgR7Qu5hyu46cZPkLRYwiNnVEByshLp+ioAQz81EsBRoQCrgcLK05y5HZ6kJcnIXCxitKamRuBWVlZExmYxlQB4SBzQ8DSqNTzw/OnpSa4IH1TcQylq6OfnZ2nzeobbsC6sD8bFGBTMg3H+FIjwQ7Wuwe4Z0IgsbYVBwQLu7+8pPT2dqqqqBPzm5uabBRlZ3RvjWBAWh5ebModBMjIyRD2Xl5dScZ+Xl0fHx8d0cnJCZWVlMl6TJ+Y5ODig/Px8eY4xeAd+4xn6an5RJ6D94uJC3odnvuT90fSYuUXB4gDFBFgcwE2p4+X6MjWUZnY1hlkeHx+pqKiIWlpaqLe3l+7u7qRfQ0ODGBZAjY2NVFdXR7m5uWKMnJwcOjw8pMLCQurp6ZE+aWlp1NbWJgpISUmRvhUVFdTa2krFxcUyBuv0tQa7RwqleKgysEoFAAAHMBZWXV1Ns7Oz3/VVw8FQqGo4U15WY1RWVtLq6qrcY/uDslD29/dpYmJCgJKTkyk1NZWmpqaov7+fOjs7KTMzk87OzmhtbU12i+vrayopKaGuri7ph/dgHMLTyqOrydaFmN5Sj6vnAH51dSWx2tzcLG3az5zY9HygZDY/Py/5AvNZCzwMwL6+PqqvrxeJwpBzc3Mif0BPT0+LMeAIVI31hIQEUQI8DSUE3Kc1KfjNepxETC+pV3wVwELKmhzNMWqIyclJUU93d7fXWPA2ChLm9va2GATzYG2APj8/986FkAMY5kRc69q0r78tM0LP0tYM5wsYcQYLYhEzMzP+90Hj9BaoQJaLi4uUlZX13bPT01NaXl6m9fV12t3dFSAkVEh7b29PjNLR0SHKMzP9e/bpzUDQCoysC+CFhYXAk3qgrZlbtxJtS0pKos3NTUlm5taEAvnW1tZKciovLxcPt7e3i3QRswgNJCyHw+E9FCnDmw70yGqVB/0cLLC5Zfk7sPgCRsEOgAQE7wEacQgAZHTMj7adnR2RKNowBwyxtbUlz5aWliQEMH5jY4MKCgro6OhIlIDxaH8L2ob4Gh0dLeWJ/+QXZVtTPCzb1NQkEwUDjH761aWHDxNej6t4DzIrgPAbIBhn/jYNj3kwFvcYh/H6ZajzaOzrwchfiNk824xtbGxshO9/N19mggPmLWD9SNGTEO5D+Ln5Zky72Wp/MNisnqHNgpgLBlg9gitgg01oIfvgGB4ePuDU/4UX+q8v8GCBAavQYf+VNTIy4h4cHPyH97vfGPwvX9/S/mJYJW2Ch6uXrZ+WAHcNDQ39zZt+PyeKzwzxVeVqGkA/Ja3xq+Dh7GUzkX3zx+DAwAAII/laxttEA4N8YBAH9/vJc5j5jwHzuc2JPwfxxyBXdwg8/EN/DP4vwADzqyH4OmxBwwAAAABJRU5ErkJggg==) center right no-repeat;cursor:pointer}div.dark_rounded .pp_previous:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABURJREFUeNrUWElLLFcUPj04j4gTiIqioLgQRAhOKE4YtwpZZJN/IARciQtXgsrDRVAUxUhw2ATcBSIJcSQoAU2MUdQ4NCpOOM9D534nfZpr5/Zrk8Cj34FL3aq6dep85zvDrbIPDQ1d0X+XMNfxmj6QPD4+Wu/v720PDw/Wp6cn6/PzsxXXX15e/lCHX9XxZ3Xth6ampiV17jTpsPT19TnpIxAFhhRYuru7IwWWnE4nX8OAWK1WHhaLBWNbXfrm9vb265aWlj89wVtGR0f9HjTAXlxc0NXVFYMFMLvdLgB5jThBsexeo5zwnYqId83NzT/Cb6LP+jEAPj09pcvLSz4PCAigwMBAndW/2VNHm83G97AGwJUDPlXzVsV2hY4VOUH+OhRLdH5+Tjc3N6/Y1QXgTOcAjrWK/fygoKAvGxsbMwS4XzN9fX3NAwLAwq5JwsPDKTg4mEFLfuMZlyNqoqOjv1BTG4LC7ukpCLyMsJKCgRdJ2AgDOEL0kMI1FBq5JwUGa6BH1mIO/Tji3MQg3g3AyFM8pzPpuRaAi4qK+N7ExATrlrV4P+xROj5XbH/b3t6+YDd5TVU9io+Pf+W5vb09zq2QkBBKS0tjowTU6uoqGw/lWVlZ/FJhBYDW19cpMzOTdcBheBb6IyMjaXNz082IZy6r9iQF6RUIqdiQiIgIBgxbT05OWL+JSHUtRa1Fbv9mBA22srOzGcDy8jLFxcVRTU0N9ff3szHV1dV0eHjIL0lJSeF7AwMD5HA4qLKykhnCXFiem5ujiooKmp2dpfn5edZRV1fH71pcXGSDPUU3Xj8CsDhBGBbAMzMz7uqtPwfHYa6c+wmC04oTzwEmxJu9vb3U1tbG84KCAm4bkMnJSerp6eH7kMTERHYWZGNjgzo7O9lJw8PDzNj29jbl5ubS8fExp0JsbCwtLCzwXAw02SAG60OkpKTkFWBJR9NaV5rkIDjtvooJPJ6cnMxzKJf8iomJoaSkJCouLubz3d1dd5imp6dTQ0MDnwPk1NQUM1xfX08JCQmUkZHB6xBFYWFhxveCMT2fdQAAV1tbS6oq09nZ2T8Am6q5y4HJDFqS3ltodXV18fHo6IiNDw0N5fPy8nIeEg1wiAiiYWVlhY0C+5LXEOQ2GEd6wGDoM9mgbTt97tRkl/ZGsfhsWa2tre4wRigJmyMjI9Td3c1z5BUMl6oNQKiiYHdtbY2fw72trS0qLCzkVEBog2VvLUgvYCYZGxtjsIi4srIyYzHUBboUkQ6vfVrf6UjbkGou4QaGdnZ2aHp6mnJycji/sImAIIRLS0spPz+f8vLyOHIAEAUN1RaytLTEncCb4D3vAw0ZHx9n4LDNF3BX61pGxBu1AhzCGSxFRUW5t31iCK4DCKo68gmsoYqnpqZy+0Koo/ojd9He4DTo3N/f57DHeoQt9HoTU+/2FGxN3wocupTNc8gI41cW8gO9GsaCDTFONhUYUC5hC4ZdLYHB6PmF6gyWcYSjsBaOQ6RI5TYJdAAU3qX3ZZMgeqqqqngdnCC7OI8NkkNF5mcqJc2bExgvYejpLQDV+6rsst4iKGwYbxHRq7dPX4xjnSdg0aXIGFGAf0djsJOfChwMB8lmw1d1lq8wE4FKvld7h2EEkF+DFoYAXJj+F21Jrwu/qBrz1eDg4AY6IHLar0HLh47kpbRFX+EuRRcMA3BHR8dPLsDoqU6/Bq0Dl74tX3jv+12kxIEcRkhrDD/K3xO7qs7/56feB/sxKCAV2/xjUIW6TYG3qOtW17Z1FX1Y3Zs7ODiYcBWtJ41hd3j8JcAAJ3IhvjEWLJYAAAAASUVORK5CYII=) center left no-repeat;cursor:pointer}div.dark_rounded .pp_expand{background:url(data:image/png;base64,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) -31px -26px no-repeat;cursor:pointer}div.dark_rounded .pp_expand:hover{background:url(data:image/png;base64,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) -31px -47px no-repeat;cursor:pointer}div.dark_rounded .pp_contract{background:url(data:image/png;base64,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) 0 -26px no-repeat;cursor:pointer}div.dark_rounded .pp_contract:hover{background:url(data:image/png;base64,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) 0 -47px no-repeat;cursor:pointer}div.dark_rounded .pp_close{width:75px;height:22px;background:url(data:image/png;base64,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) -1px -1px no-repeat;cursor:pointer}div.dark_rounded .pp_details{position:relative}div.dark_rounded .pp_description{margin-right:85px}div.dark_rounded .currentTextHolder{color:#c4c4c4}div.dark_rounded .pp_description{color:#fff}div.dark_rounded #pp_full_res .pp_inline{color:#fff}div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next{margin-top:12px!important}div.dark_rounded .pp_nav .pp_play{background:url(data:image/png;base64,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) -1px -100px no-repeat;height:15px;width:14px}div.dark_rounded .pp_nav .pp_pause{background:url(data:image/png;base64,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) -24px -100px no-repeat;height:15px;width:14px}div.dark_rounded .pp_arrow_previous{background:url(data:image/png;base64,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) 0 -71px no-repeat}div.dark_rounded .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.dark_rounded .pp_arrow_next{background:url(data:image/png;base64,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) -22px -71px no-repeat}div.dark_rounded .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.dark_rounded .pp_bottom .pp_left{background:url(data:image/png;base64,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) -88px -80px no-repeat}div.dark_rounded .pp_bottom .pp_middle{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRJREFUeNpiZGBg2M9ARcDEQGUwauCogaMGjho4auBQMRAgwAA63wDniG/BMgAAAABJRU5ErkJggg==) top left repeat}div.dark_rounded .pp_bottom .pp_right{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAB3CAYAAADPXJhXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAD45JREFUeNrsXW1sFMcZHpvDQCDm03wZgiEmicN3gEZ8xnwYlxYIKIEflZIgBfEDqUqlVCUVqmKq/kikJGp/UhFhIdEfpPmRKrRFIGNQiEkAtaKACRgwThwHrBgwEAwhpu8znrmMJ7N3u3u7d7d380qj29udfWd23mfer52bK3j48CGzZCm2fft2x4uTJ0+eQh/LqMyjMp3KhIDaHSg+76TjIQF2lO7ubnb//v3C77//vg/KDz/8UPDgwYMuUa2F6vyP6jRQObht27bTNTU1eTNLCuhhTQAoo4+NNDCv0KCUYQBliRpJAJDAAQJGAGAEgPh5+UyFhYW8FBQUoFyhspvq11LdS3mhEQwgqKSP12ngVmGwMDCxWCw+UFEDAQDQ1dXFAYBP/ZlwrGoN1CdwTKDzfygqKppNl965e/fuobwCAkBAg/EWDcaz+N63b9+48OWARQ0EJER2+/ZtDgL9meJqUTwbPkn4cQ1C2uAXVLdkwIABW3MdDDHNHEATPCtnDCjK5uDevXvszp07HATqM0mtoNbXgYG6QjvMpePX+/Xr10z8LucqENSpsRHmgKMjFov0Q0Gw8AOgDaQmkM9Es5s9+uijzClaGjRoEK+j3kO8ftmnT5+NOa8REB0Ix5A/vNuQUs46DDhmDw0W69+/P1e/+A6imcTPq+r6u+++4/dh5mHQUVAHwoPgUMAbfMAP9aSTp85YlbcOAvBHAR/UwflHHnmEPffcc/z+o0ePslu3bvXSDADBggULeN3Dhw/z54IZAT+q9wr15QPq2+lcNg3LEB14uRGD09nZyQW1ePFi/gkBXrhwgTU1NbG5c+fy69euXeMDjMHF9Rs3brA5c+awMWPGcCGcPXuW3zNkyBCuxseOHcuefPJJDo62tjZ2/vx5DoLy8nIOItwD4SAC+Oabb7hwTQDFPRKMknAPQDh8+HAu8E8++YT7DyBoCZzDc3z77be8rowmwI/6P4EAhVD6dC6bhnl4WC8OIQZ0xIgRbNOmTVyIECZ4vPjii6yjo4MtW7aMVVRUxFUzhAIQbNmyhYOkpaWFg2Tt2rVszZo1rLW1lQNgw4YNvC4AMHXqVFZW1oPPFStWcABNnDiRTZo0ibdt8l9U71/1BeQ5aAIIGgJfuHAhB6nUBBIEqCNDTKkdxee8XHcWp2NQpTedzDSg7vXr19lLL73EhVlbW8sGDx7MZ3djY2MvR1MKBLP9mWee4TN4x44d7ObNm3zW4Xx1dTUX7IQJPfmqPXv2cLPw+eefs/Hjx8dNQl1dHRcSZi/Ah5mt91XNeZieSYIBgsf9ixYtipswCQKpSSQQACbRh+m5DoQJctB0j9pEGKiSkhI2cOBAdvDgQS6UYcOG8XshXOlsqQR7PXr0aH4MlY6ZjnMXL17k52ASoFWefvpp9t5777Hm5mZ25swZdurUKT5jQUuWLGEzZ87kQAPgrl69mjBq0J9JChZmAwKHSUPfQdBWEgSqJlABRjwey4s8gm5TnUjaT+kr4DuEKgWAgZYCkdfUe3Cs3iNt8aeffsrvhUmZMmUKB0txcTFraGjgdSD4y5cv89kLjYS6Omhlf5I9E+qppgXHMGNuxyBXfYQrXrKGmJEQBAh2FmoefgHMBLQBvG0JBDhjuI4B/uqrr/j50tJSXre9vR0RS1xL4PjEiRNs165dbPPmzfz80KFD46bh3Llz3ME7fvw4v9/UZ5EijjuVTv2vrKzkWkxGKTjGOafQWWiWllwFQh88PNnKRfSQU70kjyAc2NRZs2axadOmceFjJq9evZrt27ePrVy5Mh7KjRo1itv6+vp6Nn/+fDZjxgwODDiHy5cv5wLGtXXr1rF58+bx7B76BcAcO3aMAwn3oX/wD8aNG8c/oc7hS5jMgpzx+jNJEIwcOZID4MCBA+zSpUvcP4GfA5MHR1a/DyEogaGOtNDfcxkIpXS8Us68ZCTjeMzwL774gjuAMhw8cuQIDxshRDiCGHA4ZSgIKyFYEIABHwP1UWCroRWg9nENgjh06BDnD6HDRIA/nErwAiG8BGhMzqwKhkQgQC4BpgTPkggMAgg7CQif5SIQ+NtHkVD6mAakzItWkHYVBYMuE0pQo9AQ0leQOX4IHsLENZlQQn2YExxDIHpyCoKWSShpv9X7dFUutRB4oV/4lM+E9quqqnj/JAhUAuBwHfVxHUCWZoHauUKHq3I1oRR/DU1gqKGBflMVXlRJhq0AAgCnPhPAAMHqIFDBgPslCCSICZh/JDC+mQ9RQy2hfjbNqFVR95yhMaBRoE3UBBNIFbCJdIBA4xCvfaRlavMhakAM30wf79KDfxb1l04yYsBzYDYDEH6eSaxZOE5AejeX3zz2AoIAQz0N4hs0eB+b3ttHVSugwAl1+0yoI8zBP4nP1rxbmCLBQP5CM82GkzQQkV6qJsEg31JCwHapmksgKGaihgDxAd64Ucmrxat03i5etZSfVGiHwJIFgqXePkJFRcVDk6OVaF2CuuBDp8bGRlcrXDLVriWfGkFd7q06YInqBuX1Z6LdvAWCOojyFa6+zEudqaZBV+/zKuh0t2vJAQjqQK9fvz7+HcemmYhjrC2U5+SxV2Go7RrWBzoe6+csCALUCHK27d27lwvWLaEu7vGjntV2gzAhllJ0FlU17AUMKgh0Hl60gqre9XYlf6fzujmxlAIQVJXrRRuoAoJgvNpqk6rXBZ0MEG4iDUseNIIcTF0ATmSq50cYJiFKjaS3Ic+pYLAACDh8DGJA/ahnp3Z1gZuAYX2E4Ii/a0BiJ1Gixuvs9pJQykS7lpIklFLVCn7vz1S7lgzhY1CmwYuaNrWrm4Nkx0GGoXkPhKDCL6/JnUTt6j5BopDWJpUCihrUmekUrzuFjcnqudUIeh9M/Lwmuyz5CB/dxOuJwshUzYuTiUjWH5tDCCGPIAViitcThXj4TPRiyE3IKe930ixO5/22a8nBR3ATr7uJ9/1kFoMQpNUKAeYREr3rdzvQYjscT3mEdLdrKUH4mEhtO9UxhW1+1yOks11LDj6CaRDdzMYwEkHpaNeSAxAylZq1KeEsA4JdvGrJLl61ZHYW7eJV6yz+ZEC9LiL16yzKRbN6fsLURhCpbUsOQAhKraaiEdwK1pRythohQB9BV79eXwf7XUSqCtDPolm7eDUE02ASSqK3j/q1IBavpqPddFIKvzZ/gspSBFdURrGerQSKlMmLjR2wsyi2FsAWtI1U6qic99N+LNFgOs1QkzD8CsK0aDbZ4tUc9w9eZT2bf48Vgnci/D/BAFFGUMEfsa2h8jUVbFX7vmeNYBJkMhWtvyb2OzMTLV516z/kiI+wSWiAEjySTx4AThnr2dBkmdAQOz1rBFUwXl8Hp5oryGNnb47QAo+z4LYpwKCOxHwl04A/KHufPk+4TijZxatpp5epvEFlMgtnr4pCwfsNAsLLrsLHZKYh2U/P/IShQS6ajSC9RqWKSv80tDVEaIehVP7iqBFM4RcEnMgMmK4HvXjVzTk/7WYJCKrTBAJJaKuagPCaIxCc0rhhLyJ1WjTrtt2ILmR9WWiCogy0jTarTGai0MneJluypgslKPWcqXbT6BiuSbMmMGmGNQSGOUYg6Kt+nOJ1p+NUFq+q2Uw3UYkKhogtXn1V2OtM0xDRl5/6CEHNML+LV1WNkEjlO12PgI+wSYSI2UKPk1bY9JM8QqLB9LqI1A94TJrAKdsZ0chhKcuu7QwLRZ929nIWkw2uXbyaskkoycJ+lZBWeLWXaTD9UbabRaSp/ropE+1mgPDuIBtVVoHom128mgbCW8SxWdy/saQVnrBb8KbHNyjK4v6hb0stEMKniij00QIhfBoVhT7Gw8fS0tLx9PEC68mBzxanT1LZT+XD1tbWL/20EBbfCNHAKPQxJoQFz3Erlee1Cj8XpZLqvE1Ca/AIglD4RoyKotDHQjFjdWE1aRVxbauo60UTmEDQlArfCFIUzC//y7MXNGHhj7ArDZWfF3Xd0gsGEDDBuyUFvpZCQmu18r0VgiJV3epQv9oDb2NdwbtStOWHr6WQgCAduHYBgstCYAUodDhGqT/bA2+17hiFHxNtVIo2vfK1lCH7FcT/Az+wQ539QDgpjvFSpJ4ct4nC2XuIosxaptR1Q2rddoUfE23Usx9fxJy0osg8EParzr4AQ6lD/f0eeO93iCZKBQhKffK1FBIQPqTykXLuMSEonT4Sdd2SzldSvWjDL9+oURT+R7m7UGT23taEVm4AwdtesoAOfHXenvlGkO5HoY8xIbQG0ti/FrM1sFRwWHwjRviR6oBs72NMm8F/FiUwCotvhAi/VB6R7X20bx/Dp8Yo9NECIXyqy3I/AX2rs0AIn7BxxddZ3L+va2pqzqvrEQazntU08OplWrmN9bwtbCRbf9NPK2HxjRjhNTv2LMi2NZoPRd+YXI+A18ALqDxlCPVQyqjOUa8eflh8I0jYvQQbV4zMsn61kzbgO6sUihmrC6tDuwHXFoi6XjSBCQQdqfCNuK+QTcmlbtEnToVCbavCgqquNdz4FPO2ELPCAAImeN9MgW9UCb8ouphF/blI2mCnCgQ109cJQZGq7nS4udxDQ+UOeYVOAYZOn3yjbiJuZEE/bjBts62Y4sDdESC4LgRWI1T8IPr4ragzxkNjat13iN9tBQzXiS/AgJ9bDfTIN8qEfYz+QQW/4s3UT+O70Ad9TyU34WMQdq2bWZK0m8qBDOUW0OYBAsFu/UJMhHLlYmZupJm6S8zYGgOjNg+Ntikq/3fyzTY0DR0PRVvsx6XebXkGBrmPUVUaNUOXAIHjHkrqquJiAYZiB2ZNHhpucogmigUIin3yzSUw7E2Tz4A29jqBQAIBufBzyrnBQlA6nWPe8uY6X0kbRRt++eaamXiLyoWQzGe34P2WyRz0Mg3I7CGpo4RyoGEGEBz1kgV04Kvz9sw3Rx1IlCB2XpUklxjWqSFiQiAIoX1JQvsXHTazAFPBYfHN4TzDTuZ+L2YnZzC1vZiFQI6JEhiFxTfHcw0ogezO7hkIlsKhFLbpP+9XqH7Ivoa2ZIFgyQLBkslHIM8eq4vbybFrCaMR4o+Fq1jJ+xtq467+3YohezTCzxDTk4C2UQlj6fVGKpuVcEj/bimLTAMA8CcBiF/ZobE+An6OtofA8BmVmXaIrLMIc/EfAsNOKqPtUNmoASnPC8J/sDY9z8NHRBMnycO/b4csP4GA9wSvU5lFIPi3Ha4czyM40F+p/J4A0GGHKT+BcJj1JHr+a4cnP4HQIjTA30Jop5L1/JfxbYfvlrIECLD/tWGle3XtYrVN9lFBHv8nsyUf4aMlCwRL+UD/F2AAZDs5F9dqVQcAAAAASUVORK5CYII=) -110px -80px no-repeat}div.dark_rounded .pp_loaderIcon{background:url(data:image/gif;base64,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) center center no-repeat}div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}div.dark_square .currentTextHolder{color:#c4c4c4}div.dark_square .pp_description{color:#fff}div.dark_square .pp_loaderIcon{background:url(data:image/gif;base64,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) center center no-repeat}div.dark_square .pp_expand{background:url(data:image/png;base64,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) -31px -26px no-repeat;cursor:pointer}div.dark_square .pp_expand:hover{background:url(data:image/png;base64,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) -31px -47px no-repeat;cursor:pointer}div.dark_square .pp_contract{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEwAAAB3CAYAAACpKqZFAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADVVJREFUeNrsXWlsFMkVLh/cYO7DDGBARqzNfUUyp8GA1wmwII4fkdAiBfiBhJRoIwhCCKPkB5Z2SaT9RVgJbyTygxU/Ii0hiMsgruVQVmTBHObyMjJgcdhgbnDeV1RNiqa6p6unZ3pG6ZJK01396r16X7336nXVeJzV2trKwuK+5G7ZsoUNGzbM7vkIqmVUS6iOplrgk9xO4rMlFUrCKFDfvXvHXr16lf369esc1Ldv32a9efPmhSCrJ5r/EM0pqgc3btz4E7paeWVVVlZywJ4/fx5r7NChw2D6WEEMPqfOgyFI1kwrEigCBmAxAooRULF2qVN2djavWVlZqLep/o3oqzdt2nTjAwtTb7p06QLGpXT5BX3OA1MwyM3NjTHMNLAA1IsXLzhQ+LTqhGvVCkFPIBZQ+6a2bdtOqKqq+nL9+vVHJM8PEABY1GkrMedgtWnThlEnlpOTk7FgwXOePHnCnj17xqw6SbCEVXEd8Qw0KGSJv6Q+hFnVTMk3p7S0lPXs2RNEcMM/kpBZ6Cw7SeQzqcLN4HYvX75kLS0t3LJUnSRITgXgCX4RArfXrFmzTh06dOixajYr4IbcT3NzM3olg6IADNYFsFSdKD7z0GOXHXTu3JnTqH2I168ItBVqDBshAjwncptqgB6ziIHB/GHm7du35zOJe5R27drxdtVN4B7oh1nG4FBBAyWhICp4gw/4gU4Ga2kdGKfK2woW+KOCD2jQ3rFjRzZjxgze/8SJE9xVVUsDWFOmTOG0R48e5XrB0sCP6D7funXrdxKwMqyGJrMIJs3NzVyh6dOn808oeu3aNVZXV8cmTZrEn9+/f58PBIPA88ePH7OJEyey/Px8PthLly7xPt26dePu079/fzZ8+HAOYkNDA7t69SoHq7CwkIMtYw1WvLt373IQdBOJPnLSZEEfTBZCEIA5fvw4e/r0aWzBQxv0ePDgAaeVrgl+NP4CAr5MumQJGuP5tVoguFevXmzlypVcWSgNHkuWLGEPHz5kZWVlrKioKOYSGDzAWrNmDQezvr6eg7lw4UK2YMECFo1GOVDLli3jtABq5MiRbPDg9/M4d+5cDvSQIUPY0KFDuWxdmqOudnJFVK0blgVAAMzUqVP5ZErLkmCBRqYe0tvEZ4m0sNEQLlfCeC4J2kePHrHly5dzpaurq1nXrl25tdTW1sZ8X+Y/4AfrGT9+PLeI7du3s6amJj6LaC8vL+cAFBS8z4t37drF3fHMmTNs4MCBMVc8fPgwVwbWgEmCpVjHquaMOp0kaAAI/adNmxYLHRIsaZkSMIAuxjBaAlYgmauzYlfAsHfv3qxTp07s4MGDfPA9evTgfQGCDJpqQTzp168fv4YrwXLQdv36dd4GV4SVFhcXs23btrFbt26xixcvsgsXLnALQJk5cyYbO3YsnxBMzL179xyTVatOEgC4K4BBKMHYUWD9EizVstSJIB6Dcq1AuCnSv2Uswz2UlwPFgOTA5TO1D67VPjJWnDx5kveFK48YMYKDmpeXx06dOsVpANDNmze5NcDCQWudXDmeeDqBTnVpXCN8xMNAxrDbJokpZhgDRkEcgHshbsE9YV3yNQtgIKjiOQZy584d3h6JRDhtY2Nj7D0WVofrc+fOsZ07d7LVq1fz9u7du8dc8vLlyzxQnz17lvfXjVkmoXJxsBs/8k94hVyVcY02u5RKWGq9TFyn0c1Ik3dFKAGfHzduHBs1ahQHCZYxf/58tnfvXlZRURFb4vv27ctjUU1NDZs8eTIbM2YMBxBBfvbs2RwIPFu0aBErKSnh2TbGBWBPnz7NAUc/jA/xa8CAAfwTbqQmo6o7Sguy6iTB6tOnDwfqwIED7MaNGzx+Ig4j1GBBsvYTbzuHJWARaquQMxmvyDwIFnPlyhUeyGWacOzYMZ5OQFkEdAwMwRUV6QYAQAGAiIGgR0UsgZXB3fAMAz5y5AjnD3DgmuCPxQG8UJB2AFzdoqSC5gQWcjG4MHRxAk0A9o3crUDi+j11HGxiZdLvUTE4mbjCfGFxMpahwBIAEJTGM5m4gh5ujGsM3JoEAxCZ7Mr4ovazupC0avDCuPApdYL8OXPm8PFJsKybD3gOejzHhEt3JDm36XKelHaRBvEtDXKzCWBgBOvSJY9QyK5Y3Ujto+sHUJz4Wa1fKMiramUAAEDguRUsFLThOeglWIp1fbtu3bqf1OmpJgETaIbmuV0t07UANCgJ61QTWQmaU7ECCdCJ114CvvqD7R1yhVv08RUR/JDpL9+qlcntHC86iT2zswT4Vxs2bLj50X4YgVZDwv5AQr6HoEzbA7OzMlQsJm51Ag1oqf8/ic96dQPxI9gBGgXTW4TueeqQ0VvUEjS5qwEgfNuitrzOwD0rqdN3eEOn+n91CELtzocgYXFfskMIQsCSWngMo3fAVl3AdNoXUzfmrKW2ttbVTmRQcpNuYepxlBpInWj9WuWCkBsXMFWY3Bqxbu+qM68bnNrPFJBUy00YMHVAS5cujd3jWjezuMbeu2yT16aDVuVq9s9tr61tqfxCTbY6Syi7d+/mALgtoEUfL26hyvXDdVMW9FXzNwFNBcvKw8TKVLeyypX87dqtbpwSwFRTN7EuVREoYBpLdC5mBSQecG5W1qRYmBRqHahd0dF5GbROWWnhVhmyTQUt1V8IzPZTsBe3sJNrBUYHYBAxjL9LIoF0SghNrcUkcQ1Crm+Ja6JW5rV/UHITSiv8ckkT99DJtbphvGs/0xOjxNUPgaZJpJNca8xySnVSmbzmWmfaLt+xSyfi0bm1MOsYdPxMk+qkphVu8h2n9CJRt7ZzzXjjSWUO9lEepiavbmZTzZecXpDdpCKyv52l2rV7levLy3e8fMdNvuQl0/dD4VRZ2Qd5mNNek9sBia9hGuVhqZbr636Y036VmzTC635YKuX69vJtOrvJSDhTITdhwCgG+WrK+IMvlzsdgchNGDAK3L4eRuCxywUjELm+vUvGG2R4CBIegiQW9K2CTQ8jvAZ9efiiS1R1hy+JvpL58i7plwslmlbEA0D3qpTyYzbdK4bpNovXwwhVUS+HL6k+BMm2upj6Tuc0eN0rlB+HIKmQ64uF2bmHbvC6QXvdk1KP9kzlypf+QHYrnHY+nfbDVAW8zLTTIYjb+BbYMVsi2yyJ5lqZ8vsZ4SGI17QinkvGO7L3kp74efiSUgvTLcsAwsn9dM/9PgRx05bIgpPQq5Hu9SPZhxF2hy9u5QZxIJJtFw/ibVVbB++XWwQl1/UkY4u6uLi41a8AarJVrMqV75JuV2FrWpOqLepcayzx+7jMNIbp8ju3cSyleVi8vSaTwwgvIOsAsvsqVFrthzntV9ntRXmd6fAQxAf3zYhDkFR8r0pXgpLra1oRlhCwELAgSyyG7NixYyB9LKZaTnWCaD5PdT/VPatWrfoZDW7/vlLS+c03LSyMlMJf3H5N9c9UP6XaW9RPRdvXgsaoJItvoBYmLABKfaa011EttND+g+raaDT6sxvGkUhEx1fH24hvOljYYotS9VRLNbSfCVq3ZbEGLCZ41yfAN3DAypX7KBSiuBK1oS834K2lFbxLhSwvfAMHTAbiRgHWTaFYFipd5iv0Ewx4q7T5Cj8mZJQKmaZ80z6t8ON3ZTL7t2ksgJ0X11i9amgRGCJWuFZUxQqYQuumqLSNCj8mZNQImaZ8Awdsv7q4CdAiNvT7DXjvt0k1IgKsiEe+gQO2RyztsgwSCjFNWrHHgLeVryw1QoZXvsECJjLtKotyuhysSmblbooNX6bJwYz4pkXQpwHjZyzXUv0d1X+JuNUortG2VtAYlWTxDTTTN92Mc/vF282bNyeFb7hbEW7vhICFRSm58vSF8qOu9FEkVjH5OtQgdhdqKTg3ocHtvlWy+KaFhYktngr2fp8KinUStVC0VQgao5IsvoGuksICoNQnSvtDqj0stJep7otGo01uGEciER1fHW8jvulgYUUWpTDwag3tJ4LWbSnSgMUE76YE+AYOmJp5N0MhiivNNvSFBrwLbZLZZgFas0e+wQZ9JRC3CLAeCcUqRRzCr///XtDkG/BWab8kfk8V0B4RX4D2GxHT8jPJwuIVP368NfP+R5mDhTUoK9gKmvmdwgJ063yDAe8GxdXWET9pXZV03R2y2P9+z7UhkyysTrnPE6Dl2dDXGfCus0k18gRYeR75Bg5YrVjaZekqFGKatKLWgLeVrywrhAyvfIMFTGTaJyzK6XKwEzIrd7m1o+PLNDmYEd+0CPpiA28fe79PVSdWzBZxjbZ9Xjb5ksU30Ew//C3qcLciBCwELMMTV7m7YNwZ/7HPbXHD34RfulgYvuMwKIny/kJ1O9UONvcZB9gvRG60MUlKIGnFP11ra3OfkTEMQP1JAPfrMGq5D/pwzV1Uf6A6NoTK/SoJN/031W+o9gsBc1+w2XdNxLe2IWDuCr6biu9yvQoBcy7YTfiC6jjx0hwmrg7lr1Q3sPfHY2Gm7/DsKNXfUv0xhMkZsHphUX9PgrxSqjlUn9rcZxxgiE/VVJ8nSd6Pce7TvmRlym/eZGpaEQIWQmBW/ivAAEHJ6+6BIIcfAAAAAElFTkSuQmCC) 0 -26px no-repeat;cursor:pointer}div.dark_square .pp_contract:hover{background:url(data:image/png;base64,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) 0 -47px no-repeat;cursor:pointer}div.dark_square .pp_close{width:75px;height:22px;background:url(data:image/png;base64,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) -1px -1px no-repeat;cursor:pointer}div.dark_square .pp_details{position:relative}div.dark_square .pp_description{margin:0 85px 0 0}div.dark_square #pp_full_res .pp_inline{color:#fff}div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}div.dark_square .pp_nav{clear:none}div.dark_square .pp_nav .pp_play{background:url(data:image/png;base64,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) -1px -100px no-repeat;height:15px;width:14px}div.dark_square .pp_nav .pp_pause{background:url(data:image/png;base64,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) -24px -100px no-repeat;height:15px;width:14px}div.dark_square .pp_arrow_previous{background:url(data:image/png;base64,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) 0 -71px no-repeat}div.dark_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.dark_square .pp_arrow_next{background:url(data:image/png;base64,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) -22px -71px no-repeat}div.dark_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.dark_square .pp_next:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABSVJREFUeNrMmMlLZEkQxqO03FcUFA+DCypoqQcRmlZccANRUTw4oIfpg3cv42UYET3YgtBHz/MHiApzcFxmxIMgOhe9KG6HHnBXxH2rqokvqCiyX1eVZV+qEpL3Kl9mvvxFfBGZr2xut5tsNhuNj4+Tj+Lg5418/ch9SvmajUZu+xoXF1cQFRXlio2NddrtdhfmCEFJ8Fzv3jPIrjcPDw/eRgbK4csnl8v1C9ccGIavUlEiIiKKXl9fxVgMTNHR0RQTE0ORkZEUYvj3QaMkJiaS0+msY8hf+dqqKgAYg3qB0I4K8JeXF1IDYDwbLFTgPwbtAR5jiA/4zfIVWLMoEK7wMLwP6NvbW4wXY8THx4c1uN2UNDwMYPWuetUEwG+rEdAX4AgR7Qu5hyu46cZPkLRYwiNnVEByshLp+ioAQz81EsBRoQCrgcLK05y5HZ6kJcnIXCxitKamRuBWVlZExmYxlQB4SBzQ8DSqNTzw/OnpSa4IH1TcQylq6OfnZ2nzeobbsC6sD8bFGBTMg3H+FIjwQ7Wuwe4Z0IgsbYVBwQLu7+8pPT2dqqqqBPzm5uabBRlZ3RvjWBAWh5ebModBMjIyRD2Xl5dScZ+Xl0fHx8d0cnJCZWVlMl6TJ+Y5ODig/Px8eY4xeAd+4xn6an5RJ6D94uJC3odnvuT90fSYuUXB4gDFBFgcwE2p4+X6MjWUZnY1hlkeHx+pqKiIWlpaqLe3l+7u7qRfQ0ODGBZAjY2NVFdXR7m5uWKMnJwcOjw8pMLCQurp6ZE+aWlp1NbWJgpISUmRvhUVFdTa2krFxcUyBuv0tQa7RwqleKgysEoFAAAHMBZWXV1Ns7Oz3/VVw8FQqGo4U15WY1RWVtLq6qrcY/uDslD29/dpYmJCgJKTkyk1NZWmpqaov7+fOjs7KTMzk87OzmhtbU12i+vrayopKaGuri7ph/dgHMLTyqOrydaFmN5Sj6vnAH51dSWx2tzcLG3az5zY9HygZDY/Py/5AvNZCzwMwL6+PqqvrxeJwpBzc3Mif0BPT0+LMeAIVI31hIQEUQI8DSUE3Kc1KfjNepxETC+pV3wVwELKmhzNMWqIyclJUU93d7fXWPA2ChLm9va2GATzYG2APj8/986FkAMY5kRc69q0r78tM0LP0tYM5wsYcQYLYhEzMzP+90Hj9BaoQJaLi4uUlZX13bPT01NaXl6m9fV12t3dFSAkVEh7b29PjNLR0SHKMzP9e/bpzUDQCoysC+CFhYXAk3qgrZlbtxJtS0pKos3NTUlm5taEAvnW1tZKciovLxcPt7e3i3QRswgNJCyHw+E9FCnDmw70yGqVB/0cLLC5Zfk7sPgCRsEOgAQE7wEacQgAZHTMj7adnR2RKNowBwyxtbUlz5aWliQEMH5jY4MKCgro6OhIlIDxaH8L2ob4Gh0dLeWJ/+QXZVtTPCzb1NQkEwUDjH761aWHDxNej6t4DzIrgPAbIBhn/jYNj3kwFvcYh/H6ZajzaOzrwchfiNk824xtbGxshO9/N19mggPmLWD9SNGTEO5D+Ln5Zky72Wp/MNisnqHNgpgLBlg9gitgg01oIfvgGB4ePuDU/4UX+q8v8GCBAavQYf+VNTIy4h4cHPyH97vfGPwvX9/S/mJYJW2Ch6uXrZ+WAHcNDQ39zZt+PyeKzwzxVeVqGkA/Ja3xq+Dh7GUzkX3zx+DAwAAII/laxttEA4N8YBAH9/vJc5j5jwHzuc2JPwfxxyBXdwg8/EN/DP4vwADzqyH4OmxBwwAAAABJRU5ErkJggg==) center right no-repeat;cursor:pointer}div.dark_square .pp_previous:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABURJREFUeNrUWElLLFcUPj04j4gTiIqioLgQRAhOKE4YtwpZZJN/IARciQtXgsrDRVAUxUhw2ATcBSIJcSQoAU2MUdQ4NCpOOM9D534nfZpr5/Zrk8Cj34FL3aq6dep85zvDrbIPDQ1d0X+XMNfxmj6QPD4+Wu/v720PDw/Wp6cn6/PzsxXXX15e/lCHX9XxZ3Xth6ampiV17jTpsPT19TnpIxAFhhRYuru7IwWWnE4nX8OAWK1WHhaLBWNbXfrm9vb265aWlj89wVtGR0f9HjTAXlxc0NXVFYMFMLvdLgB5jThBsexeo5zwnYqId83NzT/Cb6LP+jEAPj09pcvLSz4PCAigwMBAndW/2VNHm83G97AGwJUDPlXzVsV2hY4VOUH+OhRLdH5+Tjc3N6/Y1QXgTOcAjrWK/fygoKAvGxsbMwS4XzN9fX3NAwLAwq5JwsPDKTg4mEFLfuMZlyNqoqOjv1BTG4LC7ukpCLyMsJKCgRdJ2AgDOEL0kMI1FBq5JwUGa6BH1mIO/Tji3MQg3g3AyFM8pzPpuRaAi4qK+N7ExATrlrV4P+xROj5XbH/b3t6+YDd5TVU9io+Pf+W5vb09zq2QkBBKS0tjowTU6uoqGw/lWVlZ/FJhBYDW19cpMzOTdcBheBb6IyMjaXNz082IZy6r9iQF6RUIqdiQiIgIBgxbT05OWL+JSHUtRa1Fbv9mBA22srOzGcDy8jLFxcVRTU0N9ff3szHV1dV0eHjIL0lJSeF7AwMD5HA4qLKykhnCXFiem5ujiooKmp2dpfn5edZRV1fH71pcXGSDPUU3Xj8CsDhBGBbAMzMz7uqtPwfHYa6c+wmC04oTzwEmxJu9vb3U1tbG84KCAm4bkMnJSerp6eH7kMTERHYWZGNjgzo7O9lJw8PDzNj29jbl5ubS8fExp0JsbCwtLCzwXAw02SAG60OkpKTkFWBJR9NaV5rkIDjtvooJPJ6cnMxzKJf8iomJoaSkJCouLubz3d1dd5imp6dTQ0MDnwPk1NQUM1xfX08JCQmUkZHB6xBFYWFhxveCMT2fdQAAV1tbS6oq09nZ2T8Am6q5y4HJDFqS3ltodXV18fHo6IiNDw0N5fPy8nIeEg1wiAiiYWVlhY0C+5LXEOQ2GEd6wGDoM9mgbTt97tRkl/ZGsfhsWa2tre4wRigJmyMjI9Td3c1z5BUMl6oNQKiiYHdtbY2fw72trS0qLCzkVEBog2VvLUgvYCYZGxtjsIi4srIyYzHUBboUkQ6vfVrf6UjbkGou4QaGdnZ2aHp6mnJycji/sImAIIRLS0spPz+f8vLyOHIAEAUN1RaytLTEncCb4D3vAw0ZHx9n4LDNF3BX61pGxBu1AhzCGSxFRUW5t31iCK4DCKo68gmsoYqnpqZy+0Koo/ojd9He4DTo3N/f57DHeoQt9HoTU+/2FGxN3wocupTNc8gI41cW8gO9GsaCDTFONhUYUC5hC4ZdLYHB6PmF6gyWcYSjsBaOQ6RI5TYJdAAU3qX3ZZMgeqqqqngdnCC7OI8NkkNF5mcqJc2bExgvYejpLQDV+6rsst4iKGwYbxHRq7dPX4xjnSdg0aXIGFGAf0djsJOfChwMB8lmw1d1lq8wE4FKvld7h2EEkF+DFoYAXJj+F21Jrwu/qBrz1eDg4AY6IHLar0HLh47kpbRFX+EuRRcMA3BHR8dPLsDoqU6/Bq0Dl74tX3jv+12kxIEcRkhrDD/K3xO7qs7/56feB/sxKCAV2/xjUIW6TYG3qOtW17Z1FX1Y3Zs7ODiYcBWtJ41hd3j8JcAAJ3IhvjEWLJYAAAAASUVORK5CYII=) center left no-repeat;cursor:pointer}div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content{background:#fff}div.light_square .pp_content .ppt{color:#000}div.light_square .pp_expand{background:url(data:image/png;base64,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) -31px -26px no-repeat;cursor:pointer}div.light_square .pp_expand:hover{background:url(data:image/png;base64,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) -31px -47px no-repeat;cursor:pointer}div.light_square .pp_contract{background:url(data:image/png;base64,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) 0 -26px no-repeat;cursor:pointer}div.light_square .pp_contract:hover{background:url(data:image/png;base64,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) 0 -47px no-repeat;cursor:pointer}div.light_square .pp_close{width:75px;height:22px;background:url(data:image/png;base64,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) -1px -1px no-repeat;cursor:pointer}div.light_square .pp_details{position:relative}div.light_square .pp_description{margin-right:85px}div.light_square #pp_full_res .pp_inline{color:#000}div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}div.light_square .pp_nav .pp_play{background:url(data:image/png;base64,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) -1px -100px no-repeat;height:15px;width:14px}div.light_square .pp_nav .pp_pause{background:url(data:image/png;base64,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) -24px -100px no-repeat;height:15px;width:14px}div.light_square .pp_arrow_previous{background:url(data:image/png;base64,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) 0 -71px no-repeat}div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.light_square .pp_arrow_next{background:url(data:image/png;base64,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) -22px -71px no-repeat}div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.light_square .pp_next:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABSVJREFUeNrMmMlLZEkQxqO03FcUFA+DCypoqQcRmlZccANRUTw4oIfpg3cv42UYET3YgtBHz/MHiApzcFxmxIMgOhe9KG6HHnBXxH2rqokvqCiyX1eVZV+qEpL3Kl9mvvxFfBGZr2xut5tsNhuNj4+Tj+Lg5418/ch9SvmajUZu+xoXF1cQFRXlio2NddrtdhfmCEFJ8Fzv3jPIrjcPDw/eRgbK4csnl8v1C9ccGIavUlEiIiKKXl9fxVgMTNHR0RQTE0ORkZEUYvj3QaMkJiaS0+msY8hf+dqqKgAYg3qB0I4K8JeXF1IDYDwbLFTgPwbtAR5jiA/4zfIVWLMoEK7wMLwP6NvbW4wXY8THx4c1uN2UNDwMYPWuetUEwG+rEdAX4AgR7Qu5hyu46cZPkLRYwiNnVEByshLp+ioAQz81EsBRoQCrgcLK05y5HZ6kJcnIXCxitKamRuBWVlZExmYxlQB4SBzQ8DSqNTzw/OnpSa4IH1TcQylq6OfnZ2nzeobbsC6sD8bFGBTMg3H+FIjwQ7Wuwe4Z0IgsbYVBwQLu7+8pPT2dqqqqBPzm5uabBRlZ3RvjWBAWh5ebModBMjIyRD2Xl5dScZ+Xl0fHx8d0cnJCZWVlMl6TJ+Y5ODig/Px8eY4xeAd+4xn6an5RJ6D94uJC3odnvuT90fSYuUXB4gDFBFgcwE2p4+X6MjWUZnY1hlkeHx+pqKiIWlpaqLe3l+7u7qRfQ0ODGBZAjY2NVFdXR7m5uWKMnJwcOjw8pMLCQurp6ZE+aWlp1NbWJgpISUmRvhUVFdTa2krFxcUyBuv0tQa7RwqleKgysEoFAAAHMBZWXV1Ns7Oz3/VVw8FQqGo4U15WY1RWVtLq6qrcY/uDslD29/dpYmJCgJKTkyk1NZWmpqaov7+fOjs7KTMzk87OzmhtbU12i+vrayopKaGuri7ph/dgHMLTyqOrydaFmN5Sj6vnAH51dSWx2tzcLG3az5zY9HygZDY/Py/5AvNZCzwMwL6+PqqvrxeJwpBzc3Mif0BPT0+LMeAIVI31hIQEUQI8DSUE3Kc1KfjNepxETC+pV3wVwELKmhzNMWqIyclJUU93d7fXWPA2ChLm9va2GATzYG2APj8/986FkAMY5kRc69q0r78tM0LP0tYM5wsYcQYLYhEzMzP+90Hj9BaoQJaLi4uUlZX13bPT01NaXl6m9fV12t3dFSAkVEh7b29PjNLR0SHKMzP9e/bpzUDQCoysC+CFhYXAk3qgrZlbtxJtS0pKos3NTUlm5taEAvnW1tZKciovLxcPt7e3i3QRswgNJCyHw+E9FCnDmw70yGqVB/0cLLC5Zfk7sPgCRsEOgAQE7wEacQgAZHTMj7adnR2RKNowBwyxtbUlz5aWliQEMH5jY4MKCgro6OhIlIDxaH8L2ob4Gh0dLeWJ/+QXZVtTPCzb1NQkEwUDjH761aWHDxNej6t4DzIrgPAbIBhn/jYNj3kwFvcYh/H6ZajzaOzrwchfiNk824xtbGxshO9/N19mggPmLWD9SNGTEO5D+Ln5Zky72Wp/MNisnqHNgpgLBlg9gitgg01oIfvgGB4ePuDU/4UX+q8v8GCBAavQYf+VNTIy4h4cHPyH97vfGPwvX9/S/mJYJW2Ch6uXrZ+WAHcNDQ39zZt+PyeKzwzxVeVqGkA/Ja3xq+Dh7GUzkX3zx+DAwAAII/laxttEA4N8YBAH9/vJc5j5jwHzuc2JPwfxxyBXdwg8/EN/DP4vwADzqyH4OmxBwwAAAABJRU5ErkJggg==) center right no-repeat;cursor:pointer}div.light_square .pp_previous:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABURJREFUeNrUWElLLFcUPj04j4gTiIqioLgQRAhOKE4YtwpZZJN/IARciQtXgsrDRVAUxUhw2ATcBSIJcSQoAU2MUdQ4NCpOOM9D534nfZpr5/Zrk8Cj34FL3aq6dep85zvDrbIPDQ1d0X+XMNfxmj6QPD4+Wu/v720PDw/Wp6cn6/PzsxXXX15e/lCHX9XxZ3Xth6ampiV17jTpsPT19TnpIxAFhhRYuru7IwWWnE4nX8OAWK1WHhaLBWNbXfrm9vb265aWlj89wVtGR0f9HjTAXlxc0NXVFYMFMLvdLgB5jThBsexeo5zwnYqId83NzT/Cb6LP+jEAPj09pcvLSz4PCAigwMBAndW/2VNHm83G97AGwJUDPlXzVsV2hY4VOUH+OhRLdH5+Tjc3N6/Y1QXgTOcAjrWK/fygoKAvGxsbMwS4XzN9fX3NAwLAwq5JwsPDKTg4mEFLfuMZlyNqoqOjv1BTG4LC7ukpCLyMsJKCgRdJ2AgDOEL0kMI1FBq5JwUGa6BH1mIO/Tji3MQg3g3AyFM8pzPpuRaAi4qK+N7ExATrlrV4P+xROj5XbH/b3t6+YDd5TVU9io+Pf+W5vb09zq2QkBBKS0tjowTU6uoqGw/lWVlZ/FJhBYDW19cpMzOTdcBheBb6IyMjaXNz082IZy6r9iQF6RUIqdiQiIgIBgxbT05OWL+JSHUtRa1Fbv9mBA22srOzGcDy8jLFxcVRTU0N9ff3szHV1dV0eHjIL0lJSeF7AwMD5HA4qLKykhnCXFiem5ujiooKmp2dpfn5edZRV1fH71pcXGSDPUU3Xj8CsDhBGBbAMzMz7uqtPwfHYa6c+wmC04oTzwEmxJu9vb3U1tbG84KCAm4bkMnJSerp6eH7kMTERHYWZGNjgzo7O9lJw8PDzNj29jbl5ubS8fExp0JsbCwtLCzwXAw02SAG60OkpKTkFWBJR9NaV5rkIDjtvooJPJ6cnMxzKJf8iomJoaSkJCouLubz3d1dd5imp6dTQ0MDnwPk1NQUM1xfX08JCQmUkZHB6xBFYWFhxveCMT2fdQAAV1tbS6oq09nZ2T8Am6q5y4HJDFqS3ltodXV18fHo6IiNDw0N5fPy8nIeEg1wiAiiYWVlhY0C+5LXEOQ2GEd6wGDoM9mgbTt97tRkl/ZGsfhsWa2tre4wRigJmyMjI9Td3c1z5BUMl6oNQKiiYHdtbY2fw72trS0qLCzkVEBog2VvLUgvYCYZGxtjsIi4srIyYzHUBboUkQ6vfVrf6UjbkGou4QaGdnZ2aHp6mnJycji/sImAIIRLS0spPz+f8vLyOHIAEAUN1RaytLTEncCb4D3vAw0ZHx9n4LDNF3BX61pGxBu1AhzCGSxFRUW5t31iCK4DCKo68gmsoYqnpqZy+0Koo/ojd9He4DTo3N/f57DHeoQt9HoTU+/2FGxN3wocupTNc8gI41cW8gO9GsaCDTFONhUYUC5hC4ZdLYHB6PmF6gyWcYSjsBaOQ6RI5TYJdAAU3qX3ZZMgeqqqqngdnCC7OI8NkkNF5mcqJc2bExgvYejpLQDV+6rsst4iKGwYbxHRq7dPX4xjnSdg0aXIGFGAf0djsJOfChwMB8lmw1d1lq8wE4FKvld7h2EEkF+DFoYAXJj+F21Jrwu/qBrz1eDg4AY6IHLar0HLh47kpbRFX+EuRRcMA3BHR8dPLsDoqU6/Bq0Dl74tX3jv+12kxIEcRkhrDD/K3xO7qs7/56feB/sxKCAV2/xjUIW6TYG3qOtW17Z1FX1Y3Zs7ODiYcBWtJ41hd3j8JcAAJ3IhvjEWLJYAAAAASUVORK5CYII=) center left no-repeat;cursor:pointer}div.light_square .pp_loaderIcon{background:url(data:image/gif;base64,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) center center no-repeat}div.facebook .pp_top .pp_left{background:url(data:image/png;base64,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) -88px -53px no-repeat}div.facebook .pp_top .pp_middle{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBJREFUeNpiZGBgaGCgImBioDIYNXDUwMFgIOOePXtOU9XA/0AwGimjBg43AwECDABqMQehO1Ts4gAAAABJRU5ErkJggg==) top left repeat-x}div.facebook .pp_top .pp_right{background:url(data:image/png;base64,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) -110px -53px no-repeat}div.facebook .pp_content .ppt{color:#000}div.facebook .pp_content_container .pp_left{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACtJREFUeNpiZGBgaGAgEvz//7+ekBomBiqDUQNHDRw1cNTAUQOHioEAAQYAGcUEJOA4znwAAAAASUVORK5CYII=) top left repeat-y}div.facebook .pp_content_container .pp_right{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACpJREFUeNpi/A8EDAQAIyNjIwORgImBymDUwFEDRw0cNXDUwKFiIECAAQDh+ASoAGHc9gAAAABJRU5ErkJggg==) top right repeat-y}div.facebook .pp_content{background:#fff}div.facebook .pp_expand{background:url(data:image/png;base64,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) -31px -26px no-repeat;cursor:pointer}div.facebook .pp_expand:hover{background:url(data:image/png;base64,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) -31px -47px no-repeat;cursor:pointer}div.facebook .pp_contract{background:url(data:image/png;base64,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) 0 -26px no-repeat;cursor:pointer}div.facebook .pp_contract:hover{background:url(data:image/png;base64,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) 0 -47px no-repeat;cursor:pointer}div.facebook .pp_close{width:22px;height:22px;background:url(data:image/png;base64,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) -1px -1px no-repeat;cursor:pointer}div.facebook .pp_details{position:relative}div.facebook .pp_description{margin:0 37px 0 0}div.facebook #pp_full_res .pp_inline{color:#000}div.facebook .pp_loaderIcon{background:url(data:image/gif;base64,R0lGODlhGAAYAPQAAP///3FxcePj4/v7++3t7dLS0vHx8b+/v+Dg4MfHx+jo6M7Oztvb2/f397Kysru7u9fX16qqqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJBwAAACwAAAAAGAAYAAAFriAgjiQAQWVaDgr5POSgkoTDjFE0NoQ8iw8HQZQTDQjDn4jhSABhAAOhoTqSDg7qSUQwxEaEwwFhXHhHgzOA1xshxAnfTzotGRaHglJqkJcaVEqCgyoCBQkJBQKDDXQGDYaIioyOgYSXA36XIgYMBWRzXZoKBQUMmil0lgalLSIClgBpO0g+s26nUWddXyoEDIsACq5SsTMMDIECwUdJPw0Mzsu0qHYkw72bBmozIQAh+QQJBwAAACwAAAAAGAAYAAAFsCAgjiTAMGVaDgR5HKQwqKNxIKPjjFCk0KNXC6ATKSI7oAhxWIhezwhENTCQEoeGCdWIPEgzESGxEIgGBWstEW4QCGGAIJEoxGmGt5ZkgCRQQHkGd2CESoeIIwoMBQUMP4cNeQQGDYuNj4iSb5WJnmeGng0CDGaBlIQEJziHk3sABidDAHBgagButSKvAAoyuHuUYHgCkAZqebw0AgLBQyyzNKO3byNuoSS8x8OfwIchACH5BAkHAAAALAAAAAAYABgAAAW4ICCOJIAgZVoOBJkkpDKoo5EI43GMjNPSokXCINKJCI4HcCRIQEQvqIOhGhBHhUTDhGo4diOZyFAoKEQDxra2mAEgjghOpCgz3LTBIxJ5kgwMBShACREHZ1V4Kg1rS44pBAgMDAg/Sw0GBAQGDZGTlY+YmpyPpSQDiqYiDQoCliqZBqkGAgKIS5kEjQ21VwCyp76dBHiNvz+MR74AqSOdVwbQuo+abppo10ssjdkAnc0rf8vgl8YqIQAh+QQJBwAAACwAAAAAGAAYAAAFrCAgjiQgCGVaDgZZFCQxqKNRKGOSjMjR0qLXTyciHA7AkaLACMIAiwOC1iAxCrMToHHYjWQiA4NBEA0Q1RpWxHg4cMXxNDk4OBxNUkPAQAEXDgllKgMzQA1pSYopBgonCj9JEA8REQ8QjY+RQJOVl4ugoYssBJuMpYYjDQSliwasiQOwNakALKqsqbWvIohFm7V6rQAGP6+JQLlFg7KDQLKJrLjBKbvAor3IKiEAIfkECQcAAAAsAAAAABgAGAAABbUgII4koChlmhokw5DEoI4NQ4xFMQoJO4uuhignMiQWvxGBIQC+AJBEUyUcIRiyE6CR0CllW4HABxBURTUw4nC4FcWo5CDBRpQaCoF7VjgsyCUDYDMNZ0mHdwYEBAaGMwwHDg4HDA2KjI4qkJKUiJ6faJkiA4qAKQkRB3E0i6YpAw8RERAjA4tnBoMApCMQDhFTuySKoSKMJAq6rD4GzASiJYtgi6PUcs9Kew0xh7rNJMqIhYchACH5BAkHAAAALAAAAAAYABgAAAW0ICCOJEAQZZo2JIKQxqCOjWCMDDMqxT2LAgELkBMZCoXfyCBQiFwiRsGpku0EshNgUNAtrYPT0GQVNRBWwSKBMp98P24iISgNDAS4ipGA6JUpA2WAhDR4eWM/CAkHBwkIDYcGiTOLjY+FmZkNlCN3eUoLDmwlDW+AAwcODl5bYl8wCVYMDw5UWzBtnAANEQ8kBIM0oAAGPgcREIQnVloAChEOqARjzgAQEbczg8YkWJq8nSUhACH5BAkHAAAALAAAAAAYABgAAAWtICCOJGAYZZoOpKKQqDoORDMKwkgwtiwSBBYAJ2owGL5RgxBziQQMgkwoMkhNqAEDARPSaiMDFdDIiRSFQowMXE8Z6RdpYHWnEAWGPVkajPmARVZMPUkCBQkJBQINgwaFPoeJi4GVlQ2Qc3VJBQcLV0ptfAMJBwdcIl+FYjALQgimoGNWIhAQZA4HXSpLMQ8PIgkOSHxAQhERPw7ASTSFyCMMDqBTJL8tf3y2fCEAIfkECQcAAAAsAAAAABgAGAAABa8gII4k0DRlmg6kYZCoOg5EDBDEaAi2jLO3nEkgkMEIL4BLpBAkVy3hCTAQKGAznM0AFNFGBAbj2cA9jQixcGZAGgECBu/9HnTp+FGjjezJFAwFBQwKe2Z+KoCChHmNjVMqA21nKQwJEJRlbnUFCQlFXlpeCWcGBUACCwlrdw8RKGImBwktdyMQEQciB7oACwcIeA4RVwAODiIGvHQKERAjxyMIB5QlVSTLYLZ0sW8hACH5BAkHAAAALAAAAAAYABgAAAW0ICCOJNA0ZZoOpGGQrDoOBCoSxNgQsQzgMZyIlvOJdi+AS2SoyXrK4umWPM5wNiV0UDUIBNkdoepTfMkA7thIECiyRtUAGq8fm2O4jIBgMBA1eAZ6Knx+gHaJR4QwdCMKBxEJRggFDGgQEREPjjAMBQUKIwIRDhBDC2QNDDEKoEkDoiMHDigICGkJBS2dDA6TAAnAEAkCdQ8ORQcHTAkLcQQODLPMIgIJaCWxJMIkPIoAt3EhACH5BAkHAAAALAAAAAAYABgAAAWtICCOJNA0ZZoOpGGQrDoOBCoSxNgQsQzgMZyIlvOJdi+AS2SoyXrK4umWHM5wNiV0UN3xdLiqr+mENcWpM9TIbrsBkEck8oC0DQqBQGGIz+t3eXtob0ZTPgNrIwQJDgtGAgwCWSIMDg4HiiUIDAxFAAoODwxDBWINCEGdSTQkCQcoegADBaQ6MggHjwAFBZUFCm0HB0kJCUy9bAYHCCPGIwqmRq0jySMGmj6yRiEAIfkECQcAAAAsAAAAABgAGAAABbIgII4k0DRlmg6kYZCsOg4EKhLE2BCxDOAxnIiW84l2L4BLZKipBopW8XRLDkeCiAMyMvQAA+uON4JEIo+vqukkKQ6RhLHplVGN+LyKcXA4Dgx5DWwGDXx+gIKENnqNdzIDaiMECwcFRgQCCowiCAcHCZIlCgICVgSfCEMMnA0CXaU2YSQFoQAKUQMMqjoyAglcAAyBAAIMRUYLCUkFlybDeAYJryLNk6xGNCTQXY0juHghACH5BAkHAAAALAAAAAAYABgAAAWzICCOJNA0ZVoOAmkY5KCSSgSNBDE2hDyLjohClBMNij8RJHIQvZwEVOpIekRQJyJs5AMoHA+GMbE1lnm9EcPhOHRnhpwUl3AsknHDm5RN+v8qCAkHBwkIfw1xBAYNgoSGiIqMgJQifZUjBhAJYj95ewIJCQV7KYpzBAkLLQADCHOtOpY5PgNlAAykAEUsQ1wzCgWdCIdeArczBQVbDJ0NAqyeBb64nQAGArBTt8R8mLuyPyEAOwAAAAAAAAAAAA==) center center no-repeat}div.facebook .pp_arrow_previous{background:url(data:image/png;base64,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) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}div.facebook .pp_arrow_next{background:url(data:image/png;base64,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) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}div.facebook .pp_nav{margin-top:0}div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}div.facebook .pp_nav .pp_play{background:url(data:image/png;base64,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) -1px -123px no-repeat;height:22px;width:22px}div.facebook .pp_nav .pp_pause{background:url(data:image/png;base64,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) -32px -123px no-repeat;height:22px;width:22px}div.facebook .pp_next:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAAvCAYAAABZl2IDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAu9JREFUeNrcmj9oGlEcx9+ZSCTGCLGU2mqHDrEUC+2QobQgBJQuBTN0MDalrkFdHBQyhA4WxUgGwSEZbJvGDg6pSAlEGhBaMjpUSs3gIKZX0hptvSSmJl5/rzkhLRnu6r+794Xv8vD0ffid7/1+7/0odL5kYAP4BlgDvsSN9UpN8FdwGfwJnOfG/hLLsry+jDpn7AJ4CnwFiUc74DXw905A3gFPguVIfGqAN8Fb7UCawXeR+PUBnBYC2fqfGSUCiLh5GoU8gCEHwBYkLU1y8+YNiVfQUYlBjnHz5g05jqSpcSGQWolC6oRAjkgUclQIpKLTvx4KhW71AFLQwtNxOZ3O+4uLi7fFEvKu5aNut/uB3++/STSkTCajfD7flNfrNRAL2QKFaD50uVzXiIX8szqAwuGwzeFwXCUWEksulw9Go9Fpm83Wl/JtsJ2HoQqY5/tZhUIxtLy8PM0wzItUKrVLXCRbUiqVw6urqzMmk2mMWEgslUo1kkwmn0xMTKiJhcRSq9Wq9fX1x0ajcYRYSCyNRjO2sbExYzAYhomFxNJqtRfT6fQjnU43RCwkll6v1y4tLZmIhiwUCkW73b5JLGSxWNyB7SReqVSOiYSkaXrXYrHES6XSEZELT7lc3gPAlXw+f0DkFlKtVn+YzebnuVyOITIZqNVqjNVqfZnNZmuSSdApinp63vjh4aEPJ+Rnx/b39w9gFV3JZDJ7RJZa9Xr9COrJV72uPnoG2Wg0jmdnZ+OJRIImsmg+AXk8ntexWKxI5PFHs9lk5+bmEpFIpNDvrKorkCzLNgOBwFowGMwjEagrkAsLC28hih+RSIRvmn2oC1cFPdAveGOe8Y0kg6Spn0JeV1qikLQQyG2JQm4LgcTNQHsSA6xw8+YNeYJO+2OkpHfcvAVtITl0pglI5Nri5itoCzkLfA+MD5UGRAiHI5cBv0dcnx2JvXVvwN/+yaz+G7IV1evotFcG31tc7gPYF3yQwL2an1EbXZK/BRgAFzPpBTpJpB8AAAAASUVORK5CYII=) center right no-repeat;cursor:pointer}div.facebook .pp_previous:hover{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAAvCAYAAABZl2IDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAt5JREFUeNrcmj9oWkEcx+9ppDXGCFpCbbRDh1iKhXbIUFoQCkoXwQwdrE3brEFdMkRwaQfBIOIgOLhY2qqDQyoOglKh0JIxQ6XUDA5iaklrtFVKUhPt78gbUkhLz+Tee/e+8F1uuPt93v3e/Xnvx41GI/Q/4jjupGYF2AK+BjaAL/JtQmkI/gJugz+Ca3zbn7GfAvICeAE8i6SjbfA6+NtZQN4C3wWrkPQ0AFfAG6eBtINvI+nrPbiMxnh/rIwAIj5OKymkEuxAbAm/UkoSSLyCTjMGqcdxk0DOITY1RwJpZBTSRAI5xSjkNAnkedrRRCKRGxS6VSqk8rhjsdhNr9d7j0bfkoAMhULX/X6/k1b/okOurq5aAoHAgkKh4GQJ6fP5rsAs3qcJKCrk0tLS5Wg06laCaI8lCqTb7Z5NJBIPVCrVhBDjkdxCnp7FgE6ncyabzT7WaDSTRIFy3DMmZtJms+nT6fQiKSAz6To/P6/L5/NPtFqt4CcnQSCtVutUsVh8pNPptGKsAdQhLRbLZKlUWjQYDHqxVnKqkCaT6Vy5XH5oNBpnxNyPqUImk0mb2WwW/YpGFdLj8VTq9XpD1pCdTucAto1Mo9HYli0kVrPZ3Hc4HJlWq7UjW0isWq32E0BfttvtXdlCYlWr1b7dbn/e7Xa/yxYSa3Nzs+dyuV70er2+kOMKfkD/1yF9b29vX61Wh2Vx1SoUCjtwn3yFoWSXrseVy+Vay8vLmcFgcCBbSKxUKtVYWVnJHoJkC4kVj8frwWAwNxwOR7KFxFpbW6uFw+F1WASHNPqfQBIRzOYHyFoqkCRbSAAJ8KuAgn6RpGsfsakfJJAtRiFbJJBbjEJukUDiYqBdxgA7OG4SSLxhVxiDfIPjJt0nq+hYEZDEtcHHO1axEn4wd8A2dFT2IjXhjHsLfof4Ojs51ta9Bn8d9zDwt2PhVXRU44M/Hl8SAewzuMun5id0QpXkbwEGAOy05C/ulRDiAAAAAElFTkSuQmCC) center left no-repeat;cursor:pointer}div.facebook .pp_bottom .pp_left{background:url(data:image/png;base64,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) -88px -80px no-repeat}div.facebook .pp_bottom .pp_middle{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBJREFUeNpi/A8EDFQETAxUBqMGjhpIBmDZu3fvGWoayAjEDaORMmrgqIEEAECAAQC+aAeosx4HmQAAAABJRU5ErkJggg==) top left repeat-x}div.facebook .pp_bottom .pp_right{background:url(data:image/png;base64,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) -110px -80px no-repeat}div.pp_pic_holder a:focus{outline:none}div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_top{height:20px;position:relative}* html .pp_top{padding:0 20px}.pp_top .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_top .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_top .pp_middle{left:0;position:static}.pp_top .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_fade{display:none}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px 0}.pp_description{display:none;margin:0}.pp_social{float:left;margin:0}.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;margin:2px 4px;white-space:nowrap}.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{float:left;overflow:hidden;position:relative}.pp_gallery ul{float:left;height:35px;margin:0 0 0 5px;padding:0;position:relative;white-space:nowrap}.pp_gallery ul a{border:1px #000 solid;border:1px rgba(0,0,0,.5) solid;display:block;float:left;height:33px;overflow:hidden}.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}.pp_gallery li.default a{background:url(data:image/gif;base64,R0lGODlhMgAhAMQAAAAAAP///2lpaXt7ewkJCTAwMOHh4VpaWgYGBvPz8zMzMxgYGBISEiEhIZycnMnJyfDw8MDAwPb29khISJmZmdXV1XJych4eHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAAyACEAAAVgICCOZGmeaKqubOu+cCzPdG3feK7vfO//OcUFCBNIBgRiSxAIGA7KFbMZeBSiqCk14FhgS9ptYoD4isLUysR83gYgljIbEKYw5qNp5IrPP/slDUmAhIWGh4iJiouMjYghADs=) 0 0 no-repeat;display:block;height:33px;width:50px}.pp_gallery li.default a img{display:none}.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}a.pp_next{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABSVJREFUeNrMmMlLZEkQxqO03FcUFA+DCypoqQcRmlZccANRUTw4oIfpg3cv42UYET3YgtBHz/MHiApzcFxmxIMgOhe9KG6HHnBXxH2rqokvqCiyX1eVZV+qEpL3Kl9mvvxFfBGZr2xut5tsNhuNj4+Tj+Lg5418/ch9SvmajUZu+xoXF1cQFRXlio2NddrtdhfmCEFJ8Fzv3jPIrjcPDw/eRgbK4csnl8v1C9ccGIavUlEiIiKKXl9fxVgMTNHR0RQTE0ORkZEUYvj3QaMkJiaS0+msY8hf+dqqKgAYg3qB0I4K8JeXF1IDYDwbLFTgPwbtAR5jiA/4zfIVWLMoEK7wMLwP6NvbW4wXY8THx4c1uN2UNDwMYPWuetUEwG+rEdAX4AgR7Qu5hyu46cZPkLRYwiNnVEByshLp+ioAQz81EsBRoQCrgcLK05y5HZ6kJcnIXCxitKamRuBWVlZExmYxlQB4SBzQ8DSqNTzw/OnpSa4IH1TcQylq6OfnZ2nzeobbsC6sD8bFGBTMg3H+FIjwQ7Wuwe4Z0IgsbYVBwQLu7+8pPT2dqqqqBPzm5uabBRlZ3RvjWBAWh5ebModBMjIyRD2Xl5dScZ+Xl0fHx8d0cnJCZWVlMl6TJ+Y5ODig/Px8eY4xeAd+4xn6an5RJ6D94uJC3odnvuT90fSYuUXB4gDFBFgcwE2p4+X6MjWUZnY1hlkeHx+pqKiIWlpaqLe3l+7u7qRfQ0ODGBZAjY2NVFdXR7m5uWKMnJwcOjw8pMLCQurp6ZE+aWlp1NbWJgpISUmRvhUVFdTa2krFxcUyBuv0tQa7RwqleKgysEoFAAAHMBZWXV1Ns7Oz3/VVw8FQqGo4U15WY1RWVtLq6qrcY/uDslD29/dpYmJCgJKTkyk1NZWmpqaov7+fOjs7KTMzk87OzmhtbU12i+vrayopKaGuri7ph/dgHMLTyqOrydaFmN5Sj6vnAH51dSWx2tzcLG3az5zY9HygZDY/Py/5AvNZCzwMwL6+PqqvrxeJwpBzc3Mif0BPT0+LMeAIVI31hIQEUQI8DSUE3Kc1KfjNepxETC+pV3wVwELKmhzNMWqIyclJUU93d7fXWPA2ChLm9va2GATzYG2APj8/986FkAMY5kRc69q0r78tM0LP0tYM5wsYcQYLYhEzMzP+90Hj9BaoQJaLi4uUlZX13bPT01NaXl6m9fV12t3dFSAkVEh7b29PjNLR0SHKMzP9e/bpzUDQCoysC+CFhYXAk3qgrZlbtxJtS0pKos3NTUlm5taEAvnW1tZKciovLxcPt7e3i3QRswgNJCyHw+E9FCnDmw70yGqVB/0cLLC5Zfk7sPgCRsEOgAQE7wEacQgAZHTMj7adnR2RKNowBwyxtbUlz5aWliQEMH5jY4MKCgro6OhIlIDxaH8L2ob4Gh0dLeWJ/+QXZVtTPCzb1NQkEwUDjH761aWHDxNej6t4DzIrgPAbIBhn/jYNj3kwFvcYh/H6ZajzaOzrwchfiNk824xtbGxshO9/N19mggPmLWD9SNGTEO5D+Ln5Zky72Wp/MNisnqHNgpgLBlg9gitgg01oIfvgGB4ePuDU/4UX+q8v8GCBAavQYf+VNTIy4h4cHPyH97vfGPwvX9/S/mJYJW2Ch6uXrZ+WAHcNDQ39zZt+PyeKzwzxVeVqGkA/Ja3xq+Dh7GUzkX3zx+DAwAAII/laxttEA4N8YBAH9/vJc5j5jwHzuc2JPwfxxyBXdwg8/EN/DP4vwADzqyH4OmxBwwAAAABJRU5ErkJggg==) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}a.pp_previous{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAWCAYAAABzCZQcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABSVJREFUeNrMmMlLZEkQxqO03FcUFA+DCypoqQcRmlZccANRUTw4oIfpg3cv42UYET3YgtBHz/MHiApzcFxmxIMgOhe9KG6HHnBXxH2rqokvqCiyX1eVZV+qEpL3Kl9mvvxFfBGZr2xut5tsNhuNj4+Tj+Lg5418/ch9SvmajUZu+xoXF1cQFRXlio2NddrtdhfmCEFJ8Fzv3jPIrjcPDw/eRgbK4csnl8v1C9ccGIavUlEiIiKKXl9fxVgMTNHR0RQTE0ORkZEUYvj3QaMkJiaS0+msY8hf+dqqKgAYg3qB0I4K8JeXF1IDYDwbLFTgPwbtAR5jiA/4zfIVWLMoEK7wMLwP6NvbW4wXY8THx4c1uN2UNDwMYPWuetUEwG+rEdAX4AgR7Qu5hyu46cZPkLRYwiNnVEByshLp+ioAQz81EsBRoQCrgcLK05y5HZ6kJcnIXCxitKamRuBWVlZExmYxlQB4SBzQ8DSqNTzw/OnpSa4IH1TcQylq6OfnZ2nzeobbsC6sD8bFGBTMg3H+FIjwQ7Wuwe4Z0IgsbYVBwQLu7+8pPT2dqqqqBPzm5uabBRlZ3RvjWBAWh5ebModBMjIyRD2Xl5dScZ+Xl0fHx8d0cnJCZWVlMl6TJ+Y5ODig/Px8eY4xeAd+4xn6an5RJ6D94uJC3odnvuT90fSYuUXB4gDFBFgcwE2p4+X6MjWUZnY1hlkeHx+pqKiIWlpaqLe3l+7u7qRfQ0ODGBZAjY2NVFdXR7m5uWKMnJwcOjw8pMLCQurp6ZE+aWlp1NbWJgpISUmRvhUVFdTa2krFxcUyBuv0tQa7RwqleKgysEoFAAAHMBZWXV1Ns7Oz3/VVw8FQqGo4U15WY1RWVtLq6qrcY/uDslD29/dpYmJCgJKTkyk1NZWmpqaov7+fOjs7KTMzk87OzmhtbU12i+vrayopKaGuri7ph/dgHMLTyqOrydaFmN5Sj6vnAH51dSWx2tzcLG3az5zY9HygZDY/Py/5AvNZCzwMwL6+PqqvrxeJwpBzc3Mif0BPT0+LMeAIVI31hIQEUQI8DSUE3Kc1KfjNepxETC+pV3wVwELKmhzNMWqIyclJUU93d7fXWPA2ChLm9va2GATzYG2APj8/986FkAMY5kRc69q0r78tM0LP0tYM5wsYcQYLYhEzMzP+90Hj9BaoQJaLi4uUlZX13bPT01NaXl6m9fV12t3dFSAkVEh7b29PjNLR0SHKMzP9e/bpzUDQCoysC+CFhYXAk3qgrZlbtxJtS0pKos3NTUlm5taEAvnW1tZKciovLxcPt7e3i3QRswgNJCyHw+E9FCnDmw70yGqVB/0cLLC5Zfk7sPgCRsEOgAQE7wEacQgAZHTMj7adnR2RKNowBwyxtbUlz5aWliQEMH5jY4MKCgro6OhIlIDxaH8L2ob4Gh0dLeWJ/+QXZVtTPCzb1NQkEwUDjH761aWHDxNej6t4DzIrgPAbIBhn/jYNj3kwFvcYh/H6ZajzaOzrwchfiNk824xtbGxshO9/N19mggPmLWD9SNGTEO5D+Ln5Zky72Wp/MNisnqHNgpgLBlg9gitgg01oIfvgGB4ePuDU/4UX+q8v8GCBAavQYf+VNTIy4h4cHPyH97vfGPwvX9/S/mJYJW2Ch6uXrZ+WAHcNDQ39zZt+PyeKzwzxVeVqGkA/Ja3xq+Dh7GUzkX3zx+DAwAAII/laxttEA4N8YBAH9/vJc5j5jwHzuc2JPwfxxyBXdwg8/EN/DP4vwADzqyH4OmxBwwAAAABJRU5ErkJggg==) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}.pp_bottom{height:20px;position:relative}* html .pp_bottom{padding:0 20px}.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_bottom .pp_middle{left:0;position:static}.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_loaderIcon{display:block;height:24px;left:50%;margin:-12px 0 0 -12px;position:absolute;top:50%;width:24px}#pp_full_res{line-height:1!important}#pp_full_res .pp_inline{text-align:left}#pp_full_res .pp_inline p{margin:0 0 15px 0}div.ppt{color:#fff;display:none;font-size:17px;margin:0 0 5px 15px;z-index:9999}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/icon8-60d37e9e34.css */
@media all {
@font-face{font-display: block;font-family:icons8-win10;src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/icon8/icons8-win10.eot);src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/icon8/icons8-win10.eot?#iefix) format("embedded-opentype"),url(data:application/x-font-woff;charset=utf-8;base64,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),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/icon8/icons8-win10.woff) format("woff"),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/icon8/icons8-win10.ttf) format("truetype"),url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/icon8/icons8-win10.svg#icons8-win10) format("svg");font-weight:400;font-style:normal;}@media screen and (-webkit-min-device-pixel-ratio:0){@font-face{font-display: block;font-family:icons8-win10;src:url(https://kothrud.com/wp-content/themes/listingpro/assets/lib/icon8/icons8-win10.svg#icons8-win10) format("svg");}}[data-icon]:before{content:attr(data-icon)}.icons8-add-shopping-cart:before,.icons8-add-user:before,.icons8-adventures:before,.icons8-advertising:before,.icons8-airport:before,.icons8-align-center:before,.icons8-align-justify:before,.icons8-align-left:before,.icons8-align-right:before,.icons8-alphabetical-sorting-2:before,.icons8-alphabetical-sorting:before,.icons8-amex:before,.icons8-angle-down:before,.icons8-angle-left:before,.icons8-angle-right:before,.icons8-angle-up:before,.icons8-archive:before,.icons8-area-chart:before,.icons8-arrows-long-down:before,.icons8-arrows-long-left:before,.icons8-arrows-long-right:before,.icons8-arrows-long-up:before,.icons8-asterisk:before,.icons8-audio-file:before,.icons8-babys-room:before,.icons8-bank-card:before,.icons8-banknotes:before,.icons8-bar-chart:before,.icons8-barcode:before,.icons8-bed:before,.icons8-binoculars:before,.icons8-bitcoin:before,.icons8-bold:before,.icons8-bookmark:before,.icons8-box:before,.icons8-briefcase:before,.icons8-british-pound:before,.icons8-brush:before,.icons8-buy:before,.icons8-calculator:before,.icons8-camera:before,.icons8-cancel-2:before,.icons8-cancel:before,.icons8-cat-footprint:before,.icons8-checked-2:before,.icons8-checked:before,.icons8-checkmark:before,.icons8-chevron-down-round:before,.icons8-chevron-down:before,.icons8-chevron-left-round:before,.icons8-chevron-left:before,.icons8-chevron-right-round:before,.icons8-chevron-right:before,.icons8-chevron-up-round:before,.icons8-chevron-up:before,.icons8-circle-notch:before,.icons8-circle-thin:before,.icons8-circle:before,.icons8-clipboard:before,.icons8-code-file:before,.icons8-color-dropper:before,.icons8-columns:before,.icons8-comments:before,.icons8-compress:before,.icons8-controller:before,.icons8-copy:before,.icons8-copyright:before,.icons8-create-new:before,.icons8-crop:before,.icons8-cut:before,.icons8-database:before,.icons8-dining-room:before,.icons8-diploma-1:before,.icons8-doctor:before,.icons8-document:before,.icons8-double-left:before,.icons8-double-right:before,.icons8-double-up:before,.icons8-down-arrow:before,.icons8-down-round:before,.icons8-down-squared:before,.icons8-download-2:before,.icons8-download:before,.icons8-electrical:before,.icons8-electricity:before,.icons8-eraser:before,.icons8-euro:before,.icons8-exclamation-mark:before,.icons8-export:before,.icons8-fantasy:before,.icons8-fax:before,.icons8-female:before,.icons8-file:before,.icons8-film:before,.icons8-filter:before,.icons8-finish-flag:before,.icons8-fire-extinguisher:before,.icons8-folder:before,.icons8-football2:before,.icons8-gender-neutral-user:before,.icons8-gender:before,.icons8-genderqueer:before,.icons8-generic-sorting-2:before,.icons8-generic-sorting:before,.icons8-generic-text:before,.icons8-gift:before,.icons8-google-wallet:before,.icons8-gps-device:before,.icons8-grid-2:before,.icons8-grid-3:before,.icons8-grid:before,.icons8-group:before,.icons8-hdd:before,.icons8-header:before,.icons8-home:before,.icons8-hospital-2:before,.icons8-idea:before,.icons8-image-file:before,.icons8-import:before,.icons8-indent:before,.icons8-info:before,.icons8-insert-table:before,.icons8-ipad:before,.icons8-iphone:before,.icons8-italic:before,.icons8-japanese-yen:before,.icons8-key:before,.icons8-keyboard:before,.icons8-last-quarter:before,.icons8-left-arrow:before,.icons8-left-round:before,.icons8-left-squared:before,.icons8-level-down:before,.icons8-level-up:before,.icons8-library:before,.icons8-list:before,.icons8-lock-2:before,.icons8-lock:before,.icons8-male:before,.icons8-mastercard:before,.icons8-minus:before,.icons8-monitor:before,.icons8-moon:before,.icons8-music:before,.icons8-news:before,.icons8-notebook:before,.icons8-numbered-list:before,.icons8-numerical-sorting-12:before,.icons8-numerical-sorting-21:before,.icons8-old-time-camera:before,.icons8-opened-folder:before,.icons8-organization:before,.icons8-outdent:before,.icons8-paragraph:before,.icons8-parallel-tasks:before,.icons8-paste:before,.icons8-paypal:before,.icons8-pdf:before,.icons8-pencil:before,.icons8-phone:before,.icons8-picture:before,.icons8-pie-chart:before,.icons8-pin-3:before,.icons8-plus:before,.icons8-powerpoint:before,.icons8-price-tag:before,.icons8-puzzle:before,.icons8-qr-code:before,.icons8-question-mark:before,.icons8-recycling:before,.icons8-refresh:before,.icons8-remove-user:before,.icons8-resize-diagonal:before,.icons8-resize-four-directions:before,.icons8-resize-horizontal:before,.icons8-resize-vertical:before,.icons8-right-arrow:before,.icons8-right-round:before,.icons8-right-squared:before,.icons8-rotate-left:before,.icons8-rotate-right:before,.icons8-rouble:before,.icons8-rounded-rectangle-filled:before,.icons8-rounded-rectangle:before,.icons8-rupee:before,.icons8-search:before,.icons8-sensor:before,.icons8-services:before,.icons8-settings:before,.icons8-share:before,.icons8-shekel:before,.icons8-shopping-cart:before,.icons8-shutdown:before,.icons8-sort-down:before,.icons8-sort-left:before,.icons8-sort-right:before,.icons8-sort-up:before,.icons8-sort:before,.icons8-spy:before,.icons8-strikethrough:before,.icons8-stripe:before,.icons8-student:before,.icons8-subscript:before,.icons8-superscript:before,.icons8-support:before,.icons8-tags:before,.icons8-tasks:before,.icons8-text-height:before,.icons8-text-width:before,.icons8-ticket:before,.icons8-timeline:before,.icons8-todo-list:before,.icons8-translation:before,.icons8-trash:before,.icons8-trophy:before,.icons8-turkish-lira:before,.icons8-umbrella:before,.icons8-underline:before,.icons8-undo:before,.icons8-unlock-2:before,.icons8-up-arrow:before,.icons8-up-round:before,.icons8-up-squared:before,.icons8-upload-2:before,.icons8-upload:before,.icons8-us-dollar:before,.icons8-user-female:before,.icons8-user-male:before,.icons8-video-call:before,.icons8-video-file:before,.icons8-visa:before,.icons8-won:before,.icons8-word:before,.icons8-xls:before,[data-icon]:before{display:inline-block;font-family:icons8-win10;font-style:normal;font-weight:400;font-variant:normal;line-height:1;text-decoration:inherit;text-rendering:optimizeLegibility;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-smoothing:antialiased}.icons8-add-shopping-cart:before{content:"\f100"}.icons8-add-user:before{content:"\f101"}.icons8-adventures:before{content:"\f102"}.icons8-advertising:before{content:"\f103"}.icons8-airport:before{content:"\f104"}.icons8-align-center:before{content:"\f105"}.icons8-align-justify:before{content:"\f106"}.icons8-align-left:before{content:"\f107"}.icons8-align-right:before{content:"\f108"}.icons8-alphabetical-sorting:before{content:"\f109"}.icons8-alphabetical-sorting-2:before{content:"\f10a"}.icons8-amex:before{content:"\f10b"}.icons8-angle-down:before{content:"\f10c"}.icons8-angle-left:before{content:"\f10d"}.icons8-angle-right:before{content:"\f10e"}.icons8-angle-up:before{content:"\f10f"}.icons8-archive:before{content:"\f110"}.icons8-area-chart:before{content:"\f111"}.icons8-arrows-long-down:before{content:"\f112"}.icons8-arrows-long-left:before{content:"\f113"}.icons8-arrows-long-right:before{content:"\f114"}.icons8-arrows-long-up:before{content:"\f115"}.icons8-asterisk:before{content:"\f116"}.icons8-audio-file:before{content:"\f117"}.icons8-babys-room:before{content:"\f118"}.icons8-bank-card:before{content:"\f119"}.icons8-banknotes:before{content:"\f11a"}.icons8-bar-chart:before{content:"\f11b"}.icons8-barcode:before{content:"\f11c"}.icons8-bed:before{content:"\f11d"}.icons8-binoculars:before{content:"\f11e"}.icons8-bitcoin:before{content:"\f11f"}.icons8-bold:before{content:"\f120"}.icons8-bookmark:before{content:"\f121"}.icons8-box:before{content:"\f122"}.icons8-briefcase:before{content:"\f123"}.icons8-british-pound:before{content:"\f124"}.icons8-brush:before{content:"\f125"}.icons8-buy:before{content:"\f126"}.icons8-calculator:before{content:"\f127"}.icons8-camera:before{content:"\f128"}.icons8-cancel:before{content:"\f129"}.icons8-cancel-2:before{content:"\f12a"}.icons8-cat-footprint:before{content:"\f12b"}.icons8-checked:before{content:"\f12c"}.icons8-checked-2:before{content:"\f12d"}.icons8-checkmark:before{content:"\f12e"}.icons8-chevron-down:before{content:"\f12f"}.icons8-chevron-down-round:before{content:"\f130"}.icons8-chevron-left:before{content:"\f131"}.icons8-chevron-left-round:before{content:"\f132"}.icons8-chevron-right:before{content:"\f133"}.icons8-chevron-right-round:before{content:"\f134"}.icons8-chevron-up:before{content:"\f135"}.icons8-chevron-up-round:before{content:"\f136"}.icons8-circle:before{content:"\f137"}.icons8-circle-notch:before{content:"\f138"}.icons8-circle-thin:before{content:"\f139"}.icons8-clipboard:before{content:"\f13a"}.icons8-code-file:before{content:"\f13b"}.icons8-color-dropper:before{content:"\f13c"}.icons8-columns:before{content:"\f13d"}.icons8-comments:before{content:"\f13e"}.icons8-compress:before{content:"\f13f"}.icons8-controller:before{content:"\f140"}.icons8-copy:before{content:"\f141"}.icons8-copyright:before{content:"\f142"}.icons8-create-new:before{content:"\f143"}.icons8-crop:before{content:"\f144"}.icons8-cut:before{content:"\f145"}.icons8-database:before{content:"\f146"}.icons8-dining-room:before{content:"\f147"}.icons8-diploma-1:before{content:"\f148"}.icons8-doctor:before{content:"\f149"}.icons8-document:before{content:"\f14a"}.icons8-double-left:before{content:"\f14b"}.icons8-double-right:before{content:"\f14c"}.icons8-double-up:before{content:"\f14d"}.icons8-down-arrow:before{content:"\f14e"}.icons8-down-round:before{content:"\f14f"}.icons8-down-squared:before{content:"\f150"}.icons8-download:before{content:"\f151"}.icons8-download-2:before{content:"\f152"}.icons8-electrical:before{content:"\f153"}.icons8-electricity:before{content:"\f154"}.icons8-eraser:before{content:"\f155"}.icons8-euro:before{content:"\f156"}.icons8-exclamation-mark:before{content:"\f157"}.icons8-export:before{content:"\f158"}.icons8-fantasy:before{content:"\f159"}.icons8-fax:before{content:"\f15a"}.icons8-female:before{content:"\f15b"}.icons8-file:before{content:"\f15c"}.icons8-film:before{content:"\f15d"}.icons8-filter:before{content:"\f15e"}.icons8-finish-flag:before{content:"\f15f"}.icons8-fire-extinguisher:before{content:"\f160"}.icons8-folder:before{content:"\f161"}.icons8-football2:before{content:"\f162"}.icons8-gender:before{content:"\f163"}.icons8-gender-neutral-user:before{content:"\f164"}.icons8-genderqueer:before{content:"\f165"}.icons8-generic-sorting:before{content:"\f166"}.icons8-generic-sorting-2:before{content:"\f167"}.icons8-generic-text:before{content:"\f168"}.icons8-gift:before{content:"\f169"}.icons8-google-wallet:before{content:"\f16a"}.icons8-gps-device:before{content:"\f16b"}.icons8-grid:before{content:"\f16c"}.icons8-grid-2:before{content:"\f16d"}.icons8-grid-3:before{content:"\f16e"}.icons8-group:before{content:"\f16f"}.icons8-hdd:before{content:"\f170"}.icons8-header:before{content:"\f171"}.icons8-home:before{content:"\f172"}.icons8-hospital-2:before{content:"\f173"}.icons8-idea:before{content:"\f174"}.icons8-image-file:before{content:"\f175"}.icons8-import:before{content:"\f176"}.icons8-indent:before{content:"\f177"}.icons8-info:before{content:"\f178"}.icons8-insert-table:before{content:"\f179"}.icons8-ipad:before{content:"\f17a"}.icons8-iphone:before{content:"\f17b"}.icons8-italic:before{content:"\f17c"}.icons8-japanese-yen:before{content:"\f17d"}.icons8-key:before{content:"\f17e"}.icons8-keyboard:before{content:"\f17f"}.icons8-last-quarter:before{content:"\f180"}.icons8-left-arrow:before{content:"\f181"}.icons8-left-round:before{content:"\f182"}.icons8-left-squared:before{content:"\f183"}.icons8-level-down:before{content:"\f184"}.icons8-level-up:before{content:"\f185"}.icons8-library:before{content:"\f186"}.icons8-list:before{content:"\f187"}.icons8-lock:before{content:"\f188"}.icons8-lock-2:before{content:"\f189"}.icons8-male:before{content:"\f18a"}.icons8-mastercard:before{content:"\f18b"}.icons8-minus:before{content:"\f18c"}.icons8-monitor:before{content:"\f18d"}.icons8-moon:before{content:"\f18e"}.icons8-music:before{content:"\f18f"}.icons8-news:before{content:"\f190"}.icons8-notebook:before{content:"\f191"}.icons8-numbered-list:before{content:"\f192"}.icons8-numerical-sorting-12:before{content:"\f193"}.icons8-numerical-sorting-21:before{content:"\f194"}.icons8-old-time-camera:before{content:"\f195"}.icons8-opened-folder:before{content:"\f196"}.icons8-organization:before{content:"\f197"}.icons8-outdent:before{content:"\f198"}.icons8-paragraph:before{content:"\f199"}.icons8-parallel-tasks:before{content:"\f19a"}.icons8-paste:before{content:"\f19b"}.icons8-paypal:before{content:"\f19c"}.icons8-pdf:before{content:"\f19d"}.icons8-pencil:before{content:"\f19e"}.icons8-phone:before{content:"\f19f"}.icons8-picture:before{content:"\f1a0"}.icons8-pie-chart:before{content:"\f1a1"}.icons8-pin-3:before{content:"\f1a2"}.icons8-plus:before{content:"\f1a3"}.icons8-powerpoint:before{content:"\f1a4"}.icons8-price-tag:before{content:"\f1a5"}.icons8-puzzle:before{content:"\f1a6"}.icons8-qr-code:before{content:"\f1a7"}.icons8-question-mark:before{content:"\f1a8"}.icons8-recycling:before{content:"\f1a9"}.icons8-refresh:before{content:"\f1aa"}.icons8-remove-user:before{content:"\f1ab"}.icons8-resize-diagonal:before{content:"\f1ac"}.icons8-resize-four-directions:before{content:"\f1ad"}.icons8-resize-horizontal:before{content:"\f1ae"}.icons8-resize-vertical:before{content:"\f1af"}.icons8-right-arrow:before{content:"\f1b0"}.icons8-right-round:before{content:"\f1b1"}.icons8-right-squared:before{content:"\f1b2"}.icons8-rotate-left:before{content:"\f1b3"}.icons8-rotate-right:before{content:"\f1b4"}.icons8-rouble:before{content:"\f1b5"}.icons8-rounded-rectangle:before{content:"\f1b6"}.icons8-rounded-rectangle-filled:before{content:"\f1b7"}.icons8-rupee:before{content:"\f1b8"}.icons8-search:before{content:"\f1b9"}.icons8-sensor:before{content:"\f1ba"}.icons8-services:before{content:"\f1bb"}.icons8-settings:before{content:"\f1bc"}.icons8-share:before{content:"\f1bd"}.icons8-shekel:before{content:"\f1be"}.icons8-shopping-cart:before{content:"\f1bf"}.icons8-shutdown:before{content:"\f1c0"}.icons8-sort:before{content:"\f1c1"}.icons8-sort-down:before{content:"\f1c2"}.icons8-sort-left:before{content:"\f1c3"}.icons8-sort-right:before{content:"\f1c4"}.icons8-sort-up:before{content:"\f1c5"}.icons8-spy:before{content:"\f1c6"}.icons8-strikethrough:before{content:"\f1c7"}.icons8-stripe:before{content:"\f1c8"}.icons8-student:before{content:"\f1c9"}.icons8-subscript:before{content:"\f1ca"}.icons8-superscript:before{content:"\f1cb"}.icons8-support:before{content:"\f1cc"}.icons8-tags:before{content:"\f1cd"}.icons8-tasks:before{content:"\f1ce"}.icons8-text-height:before{content:"\f1cf"}.icons8-text-width:before{content:"\f1d0"}.icons8-ticket:before{content:"\f1d1"}.icons8-timeline:before{content:"\f1d2"}.icons8-todo-list:before{content:"\f1d3"}.icons8-translation:before{content:"\f1d4"}.icons8-trash:before{content:"\f1d5"}.icons8-trophy:before{content:"\f1d6"}.icons8-turkish-lira:before{content:"\f1d7"}.icons8-umbrella:before{content:"\f1d8"}.icons8-underline:before{content:"\f1d9"}.icons8-undo:before{content:"\f1da"}.icons8-unlock-2:before{content:"\f1db"}.icons8-up-arrow:before{content:"\f1dc"}.icons8-up-round:before{content:"\f1dd"}.icons8-up-squared:before{content:"\f1de"}.icons8-upload:before{content:"\f1df"}.icons8-upload-2:before{content:"\f1e0"}.icons8-us-dollar:before{content:"\f1e1"}.icons8-user-female:before{content:"\f1e2"}.icons8-user-male:before{content:"\f1e3"}.icons8-video-call:before{content:"\f1e4"}.icons8-video-file:before{content:"\f1e5"}.icons8-visa:before{content:"\f1e6"}.icons8-won:before{content:"\f1e7"}.icons8-word:before{content:"\f1e8"}.icons8-xls:before{content:"\f1e9"}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/css/colors.css?ver=7.0.4 */
@media all {
.lp-primary-btn,.lp-search-btn:hover,.dashboard-tabs,.dashboard-tabs.lp-main-tabs.text-center>ul,.nav-tabs>li>a:hover,.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.lp-submit-btn,.secondary-btn:hover,.list-st-img li a,.btn-first-hover:hover,.btn-second-hover,.about-box-icon,.upload-btn:hover,.chosen-container .chosen-results li.highlighted,.secondary-btn:active,.lp_confirmation .list-st-img li a.edit-list,.secondary-btn:focus,.resurva-booking .hidden-items input.lp-review-btn,input.lp-review-btn:hover,.dashboard-content .lp-list-page-list .lp-list-view .lp-rigt-icons .remove-fav i:hover{background-color:#363F48}input,.form-group label,.lp-sub-title,.lp-blog-grid-category a,.lp-blog-grid-author li i,.user-text,.post-stat li,.post-stat li a,.menu ul.sub-menu li a,.menu ul.children li a,.listing-page-result-row p a,p a.achor-color:hover,.form-group label,.blog-tags ul li a,.post-meta-left-box .breadcrumbs li a,.post-meta-left-box .breadcrumbs li span,.tags-container li a span,.price-plan-content ul li span,.paragraph-form,.form-review-stars li i,.form-review-stars li a,.form-group p,.post-meta-right-box .post-stat li a,.parimary-link,.secodary-link:hover,blockquote,.upload-btn,.lp-blockquote,.listing-second-view a.secondary-btn i,.bottom-links a:hover,.resurva-booking .hidden-items input.lp-review-btn:hover,.lp-menu .has-menu>a:after,.listing-second-view .post-meta-right-box .post-stat a.secondary-btn i{color:#363F48}.nav-tabs>li>a:after{border-bottom-color:#363F48}.upload-btn{border-color:#363F48}.lp-primary-btn:hover,.lp-search-btn,.lp-home-categoires li a:hover,.lp-post-quick-links li a.icon-quick-eye,.md-close i,.lp-menu-bar-color,.menu ul.sub-menu li a:hover,.menu ul.children li a:hover,.user-portfolio-stat ul li i,.lp-submit-btn:hover,.secondary-btn,.list-st-img li a:hover,.price-plan-box,.btn-first-hover,.btn-second-hover:hover,.ui-autocomplete li:hover,.tes-icon i,.menu ul.sub-menu li:hover>a,.menu ul.children li:hover>a,.mm-listview .mm-next,.mm-navbar-size-1 a,.mm-listview a:hover,.active-tag:hover,.lp-user-menu li a:hover,.dashboard-content .lp-pay-options .lp-promotebtn:hover,.double-bounce1,.double-bounce2,.lpmap-icon-shape.cardHighlight{background-color:#41a6df}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover,.lp-h1 a:hover,.lp-h2 a:hover,.lp-h3 a:hover,.lp-h4 a:hover,.lp-h5 a:hover,.lp-h6 a:hover,.lp-blog-grid-category a:hover,.lp-blog-grid-title h4 a:hover,.footer-menu li a:hover,.email-address,.post-rice,.tags-container li a label .tags-container li a:hover span,.ui-accordion .ui-accordion-header span,.post-stat .fa-star,.listing-page-result-row p a:hover,p a.achor-color,.blog-tags ul li a:hover,.post-meta-left-box .breadcrumbs li a:hover,.post-meta-right-box .post-stat li a:hover,.parimary-link:hover,.secodary-link,blockquote:after,.lp-blockquote:after,.colored,.lp-add-listing-btn ul li a:hover,.listing-second-view .post-meta-right-box .post-stat a.add-to-fav:hover,.listing-second-view .post-meta-right-box .post-stat a.add-to-fav:hover span,body .lp-grid-box-contianer a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover i,.bottom-links a,.lp-list-view-content-upper h4:hover,.lp-blog-grid-author li:hover,.lp-blog-grid-author li a:hover,.overlay-video-thumb:hover i,.lp-list-view-paypal-inner h4:hover,.dashboard-content .lp-pay-options .lp-promotebtn:hover,.tags-container li a span.tag-icon,.dashboard-content .lp-pay-options .lp-promotebtn,.tags-container li a:hover span,.lp-grid-box-price li>a:hover,.lp-grid-box-bottom .pull-left a:hover,.post-stat li a:hover,.lp-tabs .lp-list-view .lp-list-view-content-upper h4:hover,.lp-tabs .lp-list-view .lp-list-view-paypal-inner h4:hover,.post-reviews .fa-star,.listing-second-view .map-area .listing-detail-infos ul li a:hover>span,.widget-contact-info .list-st-img li a:hover,.get-directions>a:hover,body .grid_view2 a.add-to-fav.lp-add-to-fav:hover span,ul.post-stat li>a:hover>span i,.lp-grid-box-left.pull-left>ul>li>a:hover,.grid_view2 .lp-post-quick-links>li a:hover,.list_view .lp-post-quick-links>li a:hover,.lp-grid-box-description h4.lp-h4>a:hover,body .list_view a.add-to-fav.lp-add-to-fav:hover span,body .list_view a.add-to-fav.lp-add-to-fav:hover,.grid_view2 .lp-post-quick-links>li a:hover>i,.list_view .lp-post-quick-links>li a:hover>i,.list_view .lp-post-quick-links>li a>i:hover,.listing-second-view .features.list-style-none>li a:hover>i,.listing-second-view .features li>a:hover span i,.menu ul.children li:hover>a,.menu ul.sub-menu li:hover>a,.lp-join-now ul.lp-user-menu>li:hover>a{color:#41a6df}.ui-autocomplete li:hover,{border-color:#41a6df!important}.lpmap-icon-shape.cardHighlight:after{border-top-color:#41a6df!important}.lpmap-icon-contianer,.dashboard-content .lp-pay-options .lp-promotebtn{border-color:#41a6df}.dashboard-tabs.lp-main-tabs.text-center>ul>li.opened:hover>a,.dashboard-tabs.lp-main-tabs.text-center>ul>li:hover>a{border-left-color:#41a6df}p,.lp-search-input,.user-name a{color:#3e3e3e}.lp-search-input,.testimonial-description,.menu ul.sub-menu li a,.menu ul.children li a,.user-portfolio,.user-description-box,.lp-grid-box,.lp-form-container,.blog-single-inner-container,.post-meta-info,.comments-container,.comments-form,.post-author-box,.widget-bg-color,.price-plan-box-bottom,.page-innner-container,.about-box-inner,.lp-list-view-inner-contianer,.post-with-map-container-right{background-color:#fff}#accordion h5 .accordion-title{color:#555}.lp-topbar-menu li a,.lp-primary-btn:hover,.lp-join-now a,.lp-add-listing-btn ul li a,.lp-banner-browse-txt,.lp-home-banner-contianer-inner,.lp-color-white,.lp-search-btn,.lp-search-description p,.lp-home-categoires li a span,.city-title .lp-h3 a,.lp-listing-quantity,.fa-star,.lp-post-quick-links li a i,.footer-menu li a,.lp-home-banner-contianer-inner h1,.footer-about-company li,.overlay-video-thumb i,.md-close i,.page-heading-inner-container h1,.breadcrumbs li a,.breadcrumbs li span,.sidebar-breadcrumbs h2,.sider-bar-reset p,.dashboard-tabs .nav>li>a,.user-portfolio-stat ul li i,.nav-tabs>li>a:hover,.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.lp-grid-box-expired i,.lp-grid-box-expired span,.blog-single-page .lp-blog-grid-author li i,.blog-single-page .lp-blog-grid-author li span,.blog-heading-inner-container h1,.lp-submit-btn,.secondary-btn,.secondary-btn:hover,.list-st-img li a,.price-plan-box-upper h1,.price-plan-box-upper p,.lp-secondary-btn:hover,.ui-autocomplete li:hover,.tes-icon i,.md-closer:hover,.lp-menu-bar-color .lp-add-listing-btn ul li a:hover,a.btn-first-hover:hover,.mm-navbar-size-1 a,.mm-listview a:hover,.secondary-btn:active,.secondary-btn:focus,.active-tag:hover,.lp-grid-box-bottom span,.lp-add-to-fav,.lp-add-to-fav:hover,.hot-post,.sider-bar-reset .achor-color:hover,.lp-menu ul li.page_item_has_children::after,.lp-menu ul li.menu-item-has-children::after,.fc-day-grid-event:hover .fc-time,.fc-day-grid-event:hover .fc-title,.bookingjs-form .bookingjs-form-button .inactive-text,.header-container.lp-header-bg .lp-menu-container .lp-menu>div>ul>li>a,.header-container.lp-vedio-bg .lp-menu-container .lp-menu>div>ul>li>a,.lp-topbar .lp-join-now a{color:#fff}a.lp-change-plan-btn{color:#fff!important}.nav-tabs>li>a:hover:after,.nav-tabs>li.active>a:after,.nav-tabs>li.active>a:hover:after,.nav-tabs>li.active>a:focus:after{border-bottom-color:#fff}.lp-topbar,.lp-home-categoires li a,.lp-grid-box-bottom,.footer-upper-bar{background-color:#363f48}.aliceblue{background-color:#eff3f6}.testimonial-description.aliceblue:after{border-top:15px solid #eff3f6}.fa-star-o{color:#ababab}[data-tooltip].simptip-position-top:before{border-top-color:#41a6df}[data-tooltip].simptip-position-top:after{background-color:#41a6df;color:#fff}[data-tooltip].simptip-position-bottom:before{border-bottom-color:#41a6df}[data-tooltip].simptip-position-bottom:after{background-color:#41a6df;color:#fff}[data-tooltip].simptip-position-left:before{border-left-color:#41a6df}[data-tooltip].simptip-position-left:after{background-color:#41a6df;color:#fff}[data-tooltip].simptip-position-right:before{border-right-color:#41a6df}[data-tooltip].simptip-position-right:after{background-color:#41a6df;color:#fff}[data-tooltip].simptip-position-top.half-arrow:before{border-right:7px solid #41a6df}[data-tooltip].simptip-position-bottom.half-arrow:before{border-right:7px solid #41a6df}@media screen and (max-width:480px){.lp-menu-container{background-color:#41a6df}}.post-meta-left-box .post-stat li{color:#7f7f7f}.widget-contact-info .list-st-img li a{background-color:transparent;color:#7f7f7f}.widget-contact-info .list-st-img li a .cat-icon{border-color:#7f7f7f}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/custom-font-c54163b384.css */
@media all {
@font-face{font-display: optional;font-family:'quicksand-light';font-style:normal;font-weight:300;src:url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Light.eot),url('https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Light.eot?#iefix') format('embedded-opentype'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Light.woff) format('woff'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Light.otf) format('opentype'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Light.svg) format('svg'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Light.ttf) format('truetype');}@font-face{font-display: optional;font-family:'quicksand-regular';font-style:normal;font-weight:400;src:url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Regular.eot),url('https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Regular.eot?#iefix') format('embedded-opentype'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Regular.woff) format('woff'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Regular.otf) format('opentype'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Regular.svg) format('svg'),url(https://kothrud.com/wp-content/themes/listingpro/assets/font/Quicksand-Regular.ttf) format('truetype');}body{font-size:14px}h1,.lp-h1,.lp-h1 a{font-size:40px}h2,.lp-h2,.lp-h2 a{font-size:35px}h3,.lp-banner-browse-txt,.lp-h3,.lp-h3 a,.listing-second-view .widget-box.business-contact .contact-form>h2,.listing-second-view .widget-box.business-contact .contact-form>h2 a{font-size:18px}h4,.lp-h4,.lp-h4 a,.faq-section .faq-form>h3{font-size:19px;line-height:24px}#accordion h5 .accordion-title{font-size:14px;font-weight:600}#searchlocation_chosen.chosen-container .chosen-results li{font-size:14px}h5,h5 a,.lp-h5,.lp-h5 a,.lp-menu .children .page_item_has_children a:after,.listing-second-view .contact-form ul li input[type="submit"],.lp-menu .sub-menu .menu-item-has-children a:after,blockquote,.lp-blockquote,.listing-second-view .online-booking-form .booking-form input[type="submit"],.lp-list-pay-btn a i,.iconsmalltext,.md-closer,.popup-post-left-bottom .user-text .user-name,.lp-post-quick-links li a i,.lp-home-categoires li a span,.lp-sub-title,.lp-signout-btn,.lp-review-btn,.lp-submit-btn,.lp-search-btn,.lp-add-listing-btn li a,.lp-tabs .lp-list-view .lp-list-view-content-upper h4,.lp-tabs .lp-list-view .lp-list-view-paypal-inner h4,.listing-second-view .post-price-row>li span,.lp-h4,.lp-h4 a{font-size:17px}.paragraph-form,.form-group label,.lp-primary-btn,.file-upload-btn,.lp-secondary-big-btn,.lp-secondary-btn,.review-post h4,.listing-second-view .post-meta-left-box>p,.listing-second-view .ask-question-area>p,.ui-widget select,.list-style-none.list-st-img span,.listing-second-view .claim-area a.phone-number.md-trigger.claimformtrigger2,.lp-search-description p,.listing-second-view .widget-box.viewed-listing>article>.details span.rate,.listing-second-view .listing-post article figure figcaption .listing-ad,.listing-second-view .widget-box.viewed-listing>article>.details>h4,.listing-second-view .widget-box.viewed-listing>article,.listing-second-view .listing-post article figure figcaption .listing-price,.listing-second-view .open-hours ul li,.listing-second-view a.secondary-btn,.lp-tabs .lp-pay-publsh,.lp-tabs .panel-heading li a h4,.lp-listing-form input[type=submit],.price-plan-content ul li,.extrafield-list li span,.form-review-stars li span,.lp-grid-box-expired,.nav-tabs>li>a,.listing-page-result-row p,.listing-page-result-row p a,.post-stat li,.lp-blog-grid-author li a,.tes-msg,.lp-search-input,.details .top-section>h3,.lp-menu ul li a,.listing-second-view .claim-area .phone-icon,.widget-box.widget-categories.listing-single-cat .list-st-img li a>span,.lp_confirmation .list-st-img li a.edit-list>span,.listing-second-view .features-listing>ul>li,.lp-tabs .lp-list-view .lp-list-view-content-upper h4,.lp-tabs .lp-list-view .lp-list-view-paypal-inner h4,.video-option>h2{font-size:15px}.list_view .lp-grid-box-description>p,.grid_view2 .lp-grid-box-description>p,.listing-second-view .ask-question-area>a.ask_question_popup,.listing-second-view .post-meta-right-box ul li a,.listing-second-view .rating-section>.rate,.listing-second-view .rating-section>span,.listing-second-view .listing-post article figure figcaption .bottom-area .rate,.listing-second-view .listing-post article figure figcaption .bottom-area .listing-location,.listing-second-view .listing-post article figure figcaption .bottom-area .listing-cats a,.listing-second-view .listing-post article figure figcaption .bottom-area .listing-location p,.listing-second-view .post-meta-left-box h1 span.claimed,.lp-checkout-wrapper .lp-booking-dt,.lp-checkout-wrapper .lp-persons,.lp-checkout-wrapper .lp-duration,.lp-list-view-paypal p,.lp-checkout-wrapper .lp-booking-type,.solitaire-infinite-scroll a,.solitaire-infinite-scroll a:focus,.lp-list-view-paypal p span,.lp-list-view-edit li a,.remove-tag,.list_view .categories-area>a,.grid_view2 .categories-area>a,.map-post-address p,.lp-grid-box-description h4.lp-h4>a>.listing-pro,.grid_view2 .lp-grid-box-left.pull-left>p>span.icon i{font-size:14px}input,a.browse-imgs,.submit-images>label,.bottom-section ul li a,.lp-input,.form-control,.details .top-section>time,.grid_view2 .lp-post-quick-links>li .slides_count,.lp-list-view-edit li a>span,.list_view .lp-post-quick-links>li .slides_count,.grid_view2 .lp-post-quick-links>li a,.list_view .lp-grid-box-left.pull-left>p,.list_view .lp-post-quick-links>li a,.list_view .lp-grid-box-right a.status-btn,.list_view a.add-to-fav.lp-add-to-fav span,.grid_view2 a.add-to-fav.lp-add-to-fav span,.vertical_view .lp-price-main .lp-title a,.review_status,.list_view .lp-grid-box-description .reviewer-details>h4,.element-price-range.list-style-none,.grid_view2 .lp-grid-box-description .reviewer-details>h4,[data-tooltip]:after,.listing-second-view span.rate,.lp-listing-clm .lp-booking-dt,.lp-tabs .list-pt-display li,.hours>a.remove-hours,.hours,.open-hours ul li span,.lp-listing-clm .lp-persons,.lp-listing-clm .lp-duration,.lp-listing-clm .lp-booking-type,.rating,.get-directions>a,.post-with-map-container-right #searchform .chosen-container-single .chosen-single,.testimonial-slider li .tes-name-tit,.viewed-listing article .details .post-reviews,.listing-second-view .post-price-row>li,.list-style-none.list-st-img span,.review-post p,.listing-second-view .features-listing>ul>li span,.grid_view2 .lp-grid-box-description .lp-grid-box-left p,a.watch-video.popup-youtube,.lp-grid-box-bottom .pull-left a,.list_view span.rate,.grid_view2 span.rate,#searchform .tags-area.form-inline ul li .checkbox label,.dashboard-content .lp-grid-box-price li>a,.dashboard-content .dashboard-contnt .dashboard-tab .lp-list-view-content-upper .lp-grid-box-price li>a,.lp-tabs .lp-list-cnt .lp-grid-box-price li:last-child,.lp-topbar-menu li,.lp-topbar-menu li a,.dashboard-content .list-pt-display li span,.promotion-sorting .select2-container--default .select2-selection--single .select2-selection__rendered,.listing_list_view.listing-simple .row.listing-page-result-row.margin-bottom-25 #listing_found p,.listing_list_view.listing-simple .row.listing-page-result-row.margin-bottom-25 .text-right>p,.listing_list_view.listing-simple .row.listing-page-result-row.margin-bottom-25 .text-right>p span,.listing_list_view.listing-simple .row.listing-page-result-row.margin-bottom-25 .text-right>p a,.grid_view2 .lp-grid-box-description .reviewer-details>p,.lp-grid-box-left.pull-left>ul>li{font-size:13px}.list_view .lp-grid-box-description .reviewer-details>p,.grid_view2 .lp-grid-box-left.pull-left>p,.listing-simple.listing_list_view .list_view.lp-grid-box-contianer .lp-grid-box-bottom span.text,.dashboard-content .dashboard-contnt .dashboard-tab .lp-list-view-content-upper .lp-grid-box-price li>a,.dashboard-content .dashboard-tab .list-pt-display li span.lp-list-sp-icon,.bottom-section form>span,.breadcrumbs li,.breadcrumbs li>span,.breadcrumbs li>a{font-size:12px}.user-description-box>ul li span.count-text,.user-description-box>ul li span.count{font-size:14px}blockquote:after,.lp-blockquote:after{font-size:71px}.listing-second-view .slides_count,.lp-listing-form input[type=radio]:checked + label:before,input[type=checkbox]:checked + label:before{font-size:11px}.listing-second-view .widget-box.viewed-listing>h2,.listing-second-view .widget-box,p.lp-list-view-paypal-tit,.listing-second-view .open-hours h2{font-size:23px}.listing-second-view .listing-post article figure figcaption .bottom-area h4,.listing-second-view .online-booking-form>a.onlineform,.listing-second-view .listing-post article figure figcaption .bottom-area h4 a,.ui-accordion .ui-accordion-header span,.secondary-btn,.lp-search-icon,.lp-grid-box .lp-h4,.lp-grid-box .lp-h4 a{font-size:19px}.listing-second-view .widget-box.viewed-listing>article>.details>p,.help-tooltip>p,.listing-second-view .open-hours ul li a,.listing-second-view .open-hours ul li a,a.status-btn>span{font-size:12px}.listing-second-view .post-meta-left-box h1 span.claimed i,.lp-grid-box h4.lp-h4 span.verified,.popup-inner-left-padding .lp-grid-box-left h4.lp-h4 .verified{font-size:8px}.lp-modal-list button.close{font-size:31px}.comments-header h3,.tes-icon i,.listing-second-view .widget-box.paid-listing h2{font-size:21px}.quick_tip h2{font-size:22px}.pg-404-p{font-size:27px}.pg-404-tit{font-size:200px}.about-box-icon i,.popup-post-left-upper h1,.popup-post-left-upper h1 a{font-size:29px}.btn-file input[type=file]{font-size:99px}.widget-social li i,.post-rice{font-size:23px}.form-review-stars li i{font-size:33px}.overlay-video-thumb i{font-size:67px}.lp-menu ul li a i{font-size:9px}.vertical_view .lp-price-main .lp-title p{font-size:58px}.lp-grid-box-description span.rate{font-size:14px!important}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/fontawesome-all-1b17ac44b8.css */
@media all {
/*!
 * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900); }

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto; }

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free'; }

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands'; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em; }

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em; }

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em; }

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em; }

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em; }

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit; }

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em); }

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em); }

.fa-beat {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-bounce {
  -webkit-animation-name: fa-bounce;
          animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }

.fa-fade {
  -webkit-animation-name: fa-fade;
          animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
          animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-flip {
  -webkit-animation-name: fa-flip;
          animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-shake {
  -webkit-animation-name: fa-shake;
          animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
          animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin-reverse {
  --fa-animation-direction: reverse; }

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
          animation-timing-function: var(--fa-animation-timing, steps(8)); }

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    -webkit-animation-delay: -1ms;
            animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
            animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s; } }

@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25)); } }

@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25)); } }

@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); } }

@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); } }

@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg); }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg); }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg); }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg); }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

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

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

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

.fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, none));
          transform: rotate(var(--fa-rotate-angle, none)); }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto); }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: var(--fa-inverse, #fff); }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-0::before {
  content: "\30"; }

.fa-1::before {
  content: "\31"; }

.fa-2::before {
  content: "\32"; }

.fa-3::before {
  content: "\33"; }

.fa-4::before {
  content: "\34"; }

.fa-5::before {
  content: "\35"; }

.fa-6::before {
  content: "\36"; }

.fa-7::before {
  content: "\37"; }

.fa-8::before {
  content: "\38"; }

.fa-9::before {
  content: "\39"; }

.fa-fill-drip::before {
  content: "\f576"; }

.fa-arrows-to-circle::before {
  content: "\e4bd"; }

.fa-circle-chevron-right::before {
  content: "\f138"; }

.fa-chevron-circle-right::before {
  content: "\f138"; }

.fa-at::before {
  content: "\40"; }

.fa-trash-can::before {
  content: "\f2ed"; }

.fa-trash-alt::before {
  content: "\f2ed"; }

.fa-text-height::before {
  content: "\f034"; }

.fa-user-xmark::before {
  content: "\f235"; }

.fa-user-times::before {
  content: "\f235"; }

.fa-stethoscope::before {
  content: "\f0f1"; }

.fa-message::before {
  content: "\f27a"; }

.fa-comment-alt::before {
  content: "\f27a"; }

.fa-info::before {
  content: "\f129"; }

.fa-down-left-and-up-right-to-center::before {
  content: "\f422"; }

.fa-compress-alt::before {
  content: "\f422"; }

.fa-explosion::before {
  content: "\e4e9"; }

.fa-file-lines::before {
  content: "\f15c"; }

.fa-file-alt::before {
  content: "\f15c"; }

.fa-file-text::before {
  content: "\f15c"; }

.fa-wave-square::before {
  content: "\f83e"; }

.fa-ring::before {
  content: "\f70b"; }

.fa-building-un::before {
  content: "\e4d9"; }

.fa-dice-three::before {
  content: "\f527"; }

.fa-calendar-days::before {
  content: "\f073"; }

.fa-calendar-alt::before {
  content: "\f073"; }

.fa-anchor-circle-check::before {
  content: "\e4aa"; }

.fa-building-circle-arrow-right::before {
  content: "\e4d1"; }

.fa-volleyball::before {
  content: "\f45f"; }

.fa-volleyball-ball::before {
  content: "\f45f"; }

.fa-arrows-up-to-line::before {
  content: "\e4c2"; }

.fa-sort-down::before {
  content: "\f0dd"; }

.fa-sort-desc::before {
  content: "\f0dd"; }

.fa-circle-minus::before {
  content: "\f056"; }

.fa-minus-circle::before {
  content: "\f056"; }

.fa-door-open::before {
  content: "\f52b"; }

.fa-right-from-bracket::before {
  content: "\f2f5"; }

.fa-sign-out-alt::before {
  content: "\f2f5"; }

.fa-atom::before {
  content: "\f5d2"; }

.fa-soap::before {
  content: "\e06e"; }

.fa-icons::before {
  content: "\f86d"; }

.fa-heart-music-camera-bolt::before {
  content: "\f86d"; }

.fa-microphone-lines-slash::before {
  content: "\f539"; }

.fa-microphone-alt-slash::before {
  content: "\f539"; }

.fa-bridge-circle-check::before {
  content: "\e4c9"; }

.fa-pump-medical::before {
  content: "\e06a"; }

.fa-fingerprint::before {
  content: "\f577"; }

.fa-hand-point-right::before {
  content: "\f0a4"; }

.fa-magnifying-glass-location::before {
  content: "\f689"; }

.fa-search-location::before {
  content: "\f689"; }

.fa-forward-step::before {
  content: "\f051"; }

.fa-step-forward::before {
  content: "\f051"; }

.fa-face-smile-beam::before {
  content: "\f5b8"; }

.fa-smile-beam::before {
  content: "\f5b8"; }

.fa-flag-checkered::before {
  content: "\f11e"; }

.fa-football::before {
  content: "\f44e"; }

.fa-football-ball::before {
  content: "\f44e"; }

.fa-school-circle-exclamation::before {
  content: "\e56c"; }

.fa-crop::before {
  content: "\f125"; }

.fa-angles-down::before {
  content: "\f103"; }

.fa-angle-double-down::before {
  content: "\f103"; }

.fa-users-rectangle::before {
  content: "\e594"; }

.fa-people-roof::before {
  content: "\e537"; }

.fa-people-line::before {
  content: "\e534"; }

.fa-beer-mug-empty::before {
  content: "\f0fc"; }

.fa-beer::before {
  content: "\f0fc"; }

.fa-diagram-predecessor::before {
  content: "\e477"; }

.fa-arrow-up-long::before {
  content: "\f176"; }

.fa-long-arrow-up::before {
  content: "\f176"; }

.fa-fire-flame-simple::before {
  content: "\f46a"; }

.fa-burn::before {
  content: "\f46a"; }

.fa-person::before {
  content: "\f183"; }

.fa-male::before {
  content: "\f183"; }

.fa-laptop::before {
  content: "\f109"; }

.fa-file-csv::before {
  content: "\f6dd"; }

.fa-menorah::before {
  content: "\f676"; }

.fa-truck-plane::before {
  content: "\e58f"; }

.fa-record-vinyl::before {
  content: "\f8d9"; }

.fa-face-grin-stars::before {
  content: "\f587"; }

.fa-grin-stars::before {
  content: "\f587"; }

.fa-bong::before {
  content: "\f55c"; }

.fa-spaghetti-monster-flying::before {
  content: "\f67b"; }

.fa-pastafarianism::before {
  content: "\f67b"; }

.fa-arrow-down-up-across-line::before {
  content: "\e4af"; }

.fa-spoon::before {
  content: "\f2e5"; }

.fa-utensil-spoon::before {
  content: "\f2e5"; }

.fa-jar-wheat::before {
  content: "\e517"; }

.fa-envelopes-bulk::before {
  content: "\f674"; }

.fa-mail-bulk::before {
  content: "\f674"; }

.fa-file-circle-exclamation::before {
  content: "\e4eb"; }

.fa-circle-h::before {
  content: "\f47e"; }

.fa-hospital-symbol::before {
  content: "\f47e"; }

.fa-pager::before {
  content: "\f815"; }

.fa-address-book::before {
  content: "\f2b9"; }

.fa-contact-book::before {
  content: "\f2b9"; }

.fa-strikethrough::before {
  content: "\f0cc"; }

.fa-k::before {
  content: "\4b"; }

.fa-landmark-flag::before {
  content: "\e51c"; }

.fa-pencil::before {
  content: "\f303"; }

.fa-pencil-alt::before {
  content: "\f303"; }

.fa-backward::before {
  content: "\f04a"; }

.fa-caret-right::before {
  content: "\f0da"; }

.fa-comments::before {
  content: "\f086"; }

.fa-paste::before {
  content: "\f0ea"; }

.fa-file-clipboard::before {
  content: "\f0ea"; }

.fa-code-pull-request::before {
  content: "\e13c"; }

.fa-clipboard-list::before {
  content: "\f46d"; }

.fa-truck-ramp-box::before {
  content: "\f4de"; }

.fa-truck-loading::before {
  content: "\f4de"; }

.fa-user-check::before {
  content: "\f4fc"; }

.fa-vial-virus::before {
  content: "\e597"; }

.fa-sheet-plastic::before {
  content: "\e571"; }

.fa-blog::before {
  content: "\f781"; }

.fa-user-ninja::before {
  content: "\f504"; }

.fa-person-arrow-up-from-line::before {
  content: "\e539"; }

.fa-scroll-torah::before {
  content: "\f6a0"; }

.fa-torah::before {
  content: "\f6a0"; }

.fa-broom-ball::before {
  content: "\f458"; }

.fa-quidditch::before {
  content: "\f458"; }

.fa-quidditch-broom-ball::before {
  content: "\f458"; }

.fa-toggle-off::before {
  content: "\f204"; }

.fa-box-archive::before {
  content: "\f187"; }

.fa-archive::before {
  content: "\f187"; }

.fa-person-drowning::before {
  content: "\e545"; }

.fa-arrow-down-9-1::before {
  content: "\f886"; }

.fa-sort-numeric-desc::before {
  content: "\f886"; }

.fa-sort-numeric-down-alt::before {
  content: "\f886"; }

.fa-face-grin-tongue-squint::before {
  content: "\f58a"; }

.fa-grin-tongue-squint::before {
  content: "\f58a"; }

.fa-spray-can::before {
  content: "\f5bd"; }

.fa-truck-monster::before {
  content: "\f63b"; }

.fa-w::before {
  content: "\57"; }

.fa-earth-africa::before {
  content: "\f57c"; }

.fa-globe-africa::before {
  content: "\f57c"; }

.fa-rainbow::before {
  content: "\f75b"; }

.fa-circle-notch::before {
  content: "\f1ce"; }

.fa-tablet-screen-button::before {
  content: "\f3fa"; }

.fa-tablet-alt::before {
  content: "\f3fa"; }

.fa-paw::before {
  content: "\f1b0"; }

.fa-cloud::before {
  content: "\f0c2"; }

.fa-trowel-bricks::before {
  content: "\e58a"; }

.fa-face-flushed::before {
  content: "\f579"; }

.fa-flushed::before {
  content: "\f579"; }

.fa-hospital-user::before {
  content: "\f80d"; }

.fa-tent-arrow-left-right::before {
  content: "\e57f"; }

.fa-gavel::before {
  content: "\f0e3"; }

.fa-legal::before {
  content: "\f0e3"; }

.fa-binoculars::before {
  content: "\f1e5"; }

.fa-microphone-slash::before {
  content: "\f131"; }

.fa-box-tissue::before {
  content: "\e05b"; }

.fa-motorcycle::before {
  content: "\f21c"; }

.fa-bell-concierge::before {
  content: "\f562"; }

.fa-concierge-bell::before {
  content: "\f562"; }

.fa-pen-ruler::before {
  content: "\f5ae"; }

.fa-pencil-ruler::before {
  content: "\f5ae"; }

.fa-people-arrows::before {
  content: "\e068"; }

.fa-people-arrows-left-right::before {
  content: "\e068"; }

.fa-mars-and-venus-burst::before {
  content: "\e523"; }

.fa-square-caret-right::before {
  content: "\f152"; }

.fa-caret-square-right::before {
  content: "\f152"; }

.fa-scissors::before {
  content: "\f0c4"; }

.fa-cut::before {
  content: "\f0c4"; }

.fa-sun-plant-wilt::before {
  content: "\e57a"; }

.fa-toilets-portable::before {
  content: "\e584"; }

.fa-hockey-puck::before {
  content: "\f453"; }

.fa-table::before {
  content: "\f0ce"; }

.fa-magnifying-glass-arrow-right::before {
  content: "\e521"; }

.fa-tachograph-digital::before {
  content: "\f566"; }

.fa-digital-tachograph::before {
  content: "\f566"; }

.fa-users-slash::before {
  content: "\e073"; }

.fa-clover::before {
  content: "\e139"; }

.fa-reply::before {
  content: "\f3e5"; }

.fa-mail-reply::before {
  content: "\f3e5"; }

.fa-star-and-crescent::before {
  content: "\f699"; }

.fa-house-fire::before {
  content: "\e50c"; }

.fa-square-minus::before {
  content: "\f146"; }

.fa-minus-square::before {
  content: "\f146"; }

.fa-helicopter::before {
  content: "\f533"; }

.fa-compass::before {
  content: "\f14e"; }

.fa-square-caret-down::before {
  content: "\f150"; }

.fa-caret-square-down::before {
  content: "\f150"; }

.fa-file-circle-question::before {
  content: "\e4ef"; }

.fa-laptop-code::before {
  content: "\f5fc"; }

.fa-swatchbook::before {
  content: "\f5c3"; }

.fa-prescription-bottle::before {
  content: "\f485"; }

.fa-bars::before {
  content: "\f0c9"; }

.fa-navicon::before {
  content: "\f0c9"; }

.fa-people-group::before {
  content: "\e533"; }

.fa-hourglass-end::before {
  content: "\f253"; }

.fa-hourglass-3::before {
  content: "\f253"; }

.fa-heart-crack::before {
  content: "\f7a9"; }

.fa-heart-broken::before {
  content: "\f7a9"; }

.fa-square-up-right::before {
  content: "\f360"; }

.fa-external-link-square-alt::before {
  content: "\f360"; }

.fa-face-kiss-beam::before {
  content: "\f597"; }

.fa-kiss-beam::before {
  content: "\f597"; }

.fa-film::before {
  content: "\f008"; }

.fa-ruler-horizontal::before {
  content: "\f547"; }

.fa-people-robbery::before {
  content: "\e536"; }

.fa-lightbulb::before {
  content: "\f0eb"; }

.fa-caret-left::before {
  content: "\f0d9"; }

.fa-circle-exclamation::before {
  content: "\f06a"; }

.fa-exclamation-circle::before {
  content: "\f06a"; }

.fa-school-circle-xmark::before {
  content: "\e56d"; }

.fa-arrow-right-from-bracket::before {
  content: "\f08b"; }

.fa-sign-out::before {
  content: "\f08b"; }

.fa-circle-chevron-down::before {
  content: "\f13a"; }

.fa-chevron-circle-down::before {
  content: "\f13a"; }

.fa-unlock-keyhole::before {
  content: "\f13e"; }

.fa-unlock-alt::before {
  content: "\f13e"; }

.fa-cloud-showers-heavy::before {
  content: "\f740"; }

.fa-headphones-simple::before {
  content: "\f58f"; }

.fa-headphones-alt::before {
  content: "\f58f"; }

.fa-sitemap::before {
  content: "\f0e8"; }

.fa-circle-dollar-to-slot::before {
  content: "\f4b9"; }

.fa-donate::before {
  content: "\f4b9"; }

.fa-memory::before {
  content: "\f538"; }

.fa-road-spikes::before {
  content: "\e568"; }

.fa-fire-burner::before {
  content: "\e4f1"; }

.fa-flag::before {
  content: "\f024"; }

.fa-hanukiah::before {
  content: "\f6e6"; }

.fa-feather::before {
  content: "\f52d"; }

.fa-volume-low::before {
  content: "\f027"; }

.fa-volume-down::before {
  content: "\f027"; }

.fa-comment-slash::before {
  content: "\f4b3"; }

.fa-cloud-sun-rain::before {
  content: "\f743"; }

.fa-compress::before {
  content: "\f066"; }

.fa-wheat-awn::before {
  content: "\e2cd"; }

.fa-wheat-alt::before {
  content: "\e2cd"; }

.fa-ankh::before {
  content: "\f644"; }

.fa-hands-holding-child::before {
  content: "\e4fa"; }

.fa-asterisk::before {
  content: "\2a"; }

.fa-square-check::before {
  content: "\f14a"; }

.fa-check-square::before {
  content: "\f14a"; }

.fa-peseta-sign::before {
  content: "\e221"; }

.fa-heading::before {
  content: "\f1dc"; }

.fa-header::before {
  content: "\f1dc"; }

.fa-ghost::before {
  content: "\f6e2"; }

.fa-list::before {
  content: "\f03a"; }

.fa-list-squares::before {
  content: "\f03a"; }

.fa-square-phone-flip::before {
  content: "\f87b"; }

.fa-phone-square-alt::before {
  content: "\f87b"; }

.fa-cart-plus::before {
  content: "\f217"; }

.fa-gamepad::before {
  content: "\f11b"; }

.fa-circle-dot::before {
  content: "\f192"; }

.fa-dot-circle::before {
  content: "\f192"; }

.fa-face-dizzy::before {
  content: "\f567"; }

.fa-dizzy::before {
  content: "\f567"; }

.fa-egg::before {
  content: "\f7fb"; }

.fa-house-medical-circle-xmark::before {
  content: "\e513"; }

.fa-campground::before {
  content: "\f6bb"; }

.fa-folder-plus::before {
  content: "\f65e"; }

.fa-futbol::before {
  content: "\f1e3"; }

.fa-futbol-ball::before {
  content: "\f1e3"; }

.fa-soccer-ball::before {
  content: "\f1e3"; }

.fa-paintbrush::before {
  content: "\f1fc"; }

.fa-paint-brush::before {
  content: "\f1fc"; }

.fa-lock::before {
  content: "\f023"; }

.fa-gas-pump::before {
  content: "\f52f"; }

.fa-hot-tub-person::before {
  content: "\f593"; }

.fa-hot-tub::before {
  content: "\f593"; }

.fa-map-location::before {
  content: "\f59f"; }

.fa-map-marked::before {
  content: "\f59f"; }

.fa-house-flood-water::before {
  content: "\e50e"; }

.fa-tree::before {
  content: "\f1bb"; }

.fa-bridge-lock::before {
  content: "\e4cc"; }

.fa-sack-dollar::before {
  content: "\f81d"; }

.fa-pen-to-square::before {
  content: "\f044"; }

.fa-edit::before {
  content: "\f044"; }

.fa-car-side::before {
  content: "\f5e4"; }

.fa-share-nodes::before {
  content: "\f1e0"; }

.fa-share-alt::before {
  content: "\f1e0"; }

.fa-heart-circle-minus::before {
  content: "\e4ff"; }

.fa-hourglass-half::before {
  content: "\f252"; }

.fa-hourglass-2::before {
  content: "\f252"; }

.fa-microscope::before {
  content: "\f610"; }

.fa-sink::before {
  content: "\e06d"; }

.fa-bag-shopping::before {
  content: "\f290"; }

.fa-shopping-bag::before {
  content: "\f290"; }

.fa-arrow-down-z-a::before {
  content: "\f881"; }

.fa-sort-alpha-desc::before {
  content: "\f881"; }

.fa-sort-alpha-down-alt::before {
  content: "\f881"; }

.fa-mitten::before {
  content: "\f7b5"; }

.fa-person-rays::before {
  content: "\e54d"; }

.fa-users::before {
  content: "\f0c0"; }

.fa-eye-slash::before {
  content: "\f070"; }

.fa-flask-vial::before {
  content: "\e4f3"; }

.fa-hand::before {
  content: "\f256"; }

.fa-hand-paper::before {
  content: "\f256"; }

.fa-om::before {
  content: "\f679"; }

.fa-worm::before {
  content: "\e599"; }

.fa-house-circle-xmark::before {
  content: "\e50b"; }

.fa-plug::before {
  content: "\f1e6"; }

.fa-chevron-up::before {
  content: "\f077"; }

.fa-hand-spock::before {
  content: "\f259"; }

.fa-stopwatch::before {
  content: "\f2f2"; }

.fa-face-kiss::before {
  content: "\f596"; }

.fa-kiss::before {
  content: "\f596"; }

.fa-bridge-circle-xmark::before {
  content: "\e4cb"; }

.fa-face-grin-tongue::before {
  content: "\f589"; }

.fa-grin-tongue::before {
  content: "\f589"; }

.fa-chess-bishop::before {
  content: "\f43a"; }

.fa-face-grin-wink::before {
  content: "\f58c"; }

.fa-grin-wink::before {
  content: "\f58c"; }

.fa-ear-deaf::before {
  content: "\f2a4"; }

.fa-deaf::before {
  content: "\f2a4"; }

.fa-deafness::before {
  content: "\f2a4"; }

.fa-hard-of-hearing::before {
  content: "\f2a4"; }

.fa-road-circle-check::before {
  content: "\e564"; }

.fa-dice-five::before {
  content: "\f523"; }

.fa-square-rss::before {
  content: "\f143"; }

.fa-rss-square::before {
  content: "\f143"; }

.fa-land-mine-on::before {
  content: "\e51b"; }

.fa-i-cursor::before {
  content: "\f246"; }

.fa-stamp::before {
  content: "\f5bf"; }

.fa-stairs::before {
  content: "\e289"; }

.fa-i::before {
  content: "\49"; }

.fa-hryvnia-sign::before {
  content: "\f6f2"; }

.fa-hryvnia::before {
  content: "\f6f2"; }

.fa-pills::before {
  content: "\f484"; }

.fa-face-grin-wide::before {
  content: "\f581"; }

.fa-grin-alt::before {
  content: "\f581"; }

.fa-tooth::before {
  content: "\f5c9"; }

.fa-v::before {
  content: "\56"; }

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6"; }

.fa-bicycle::before {
  content: "\f206"; }

.fa-staff-snake::before {
  content: "\e579"; }

.fa-rod-asclepius::before {
  content: "\e579"; }

.fa-rod-snake::before {
  content: "\e579"; }

.fa-staff-aesculapius::before {
  content: "\e579"; }

.fa-head-side-cough-slash::before {
  content: "\e062"; }

.fa-truck-medical::before {
  content: "\f0f9"; }

.fa-ambulance::before {
  content: "\f0f9"; }

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598"; }

.fa-snowman::before {
  content: "\f7d0"; }

.fa-mortar-pestle::before {
  content: "\f5a7"; }

.fa-road-barrier::before {
  content: "\e562"; }

.fa-school::before {
  content: "\f549"; }

.fa-igloo::before {
  content: "\f7ae"; }

.fa-joint::before {
  content: "\f595"; }

.fa-angle-right::before {
  content: "\f105"; }

.fa-horse::before {
  content: "\f6f0"; }

.fa-q::before {
  content: "\51"; }

.fa-g::before {
  content: "\47"; }

.fa-notes-medical::before {
  content: "\f481"; }

.fa-temperature-half::before {
  content: "\f2c9"; }

.fa-temperature-2::before {
  content: "\f2c9"; }

.fa-thermometer-2::before {
  content: "\f2c9"; }

.fa-thermometer-half::before {
  content: "\f2c9"; }

.fa-dong-sign::before {
  content: "\e169"; }

.fa-capsules::before {
  content: "\f46b"; }

.fa-poo-storm::before {
  content: "\f75a"; }

.fa-poo-bolt::before {
  content: "\f75a"; }

.fa-face-frown-open::before {
  content: "\f57a"; }

.fa-frown-open::before {
  content: "\f57a"; }

.fa-hand-point-up::before {
  content: "\f0a6"; }

.fa-money-bill::before {
  content: "\f0d6"; }

.fa-bookmark::before {
  content: "\f02e"; }

.fa-align-justify::before {
  content: "\f039"; }

.fa-umbrella-beach::before {
  content: "\f5ca"; }

.fa-helmet-un::before {
  content: "\e503"; }

.fa-bullseye::before {
  content: "\f140"; }

.fa-bacon::before {
  content: "\f7e5"; }

.fa-hand-point-down::before {
  content: "\f0a7"; }

.fa-arrow-up-from-bracket::before {
  content: "\e09a"; }

.fa-folder::before {
  content: "\f07b"; }

.fa-folder-blank::before {
  content: "\f07b"; }

.fa-file-waveform::before {
  content: "\f478"; }

.fa-file-medical-alt::before {
  content: "\f478"; }

.fa-radiation::before {
  content: "\f7b9"; }

.fa-chart-simple::before {
  content: "\e473"; }

.fa-mars-stroke::before {
  content: "\f229"; }

.fa-vial::before {
  content: "\f492"; }

.fa-gauge::before {
  content: "\f624"; }

.fa-dashboard::before {
  content: "\f624"; }

.fa-gauge-med::before {
  content: "\f624"; }

.fa-tachometer-alt-average::before {
  content: "\f624"; }

.fa-wand-magic-sparkles::before {
  content: "\e2ca"; }

.fa-magic-wand-sparkles::before {
  content: "\e2ca"; }

.fa-e::before {
  content: "\45"; }

.fa-pen-clip::before {
  content: "\f305"; }

.fa-pen-alt::before {
  content: "\f305"; }

.fa-bridge-circle-exclamation::before {
  content: "\e4ca"; }

.fa-user::before {
  content: "\f007"; }

.fa-school-circle-check::before {
  content: "\e56b"; }

.fa-dumpster::before {
  content: "\f793"; }

.fa-van-shuttle::before {
  content: "\f5b6"; }

.fa-shuttle-van::before {
  content: "\f5b6"; }

.fa-building-user::before {
  content: "\e4da"; }

.fa-square-caret-left::before {
  content: "\f191"; }

.fa-caret-square-left::before {
  content: "\f191"; }

.fa-highlighter::before {
  content: "\f591"; }

.fa-key::before {
  content: "\f084"; }

.fa-bullhorn::before {
  content: "\f0a1"; }

.fa-globe::before {
  content: "\f0ac"; }

.fa-synagogue::before {
  content: "\f69b"; }

.fa-person-half-dress::before {
  content: "\e548"; }

.fa-road-bridge::before {
  content: "\e563"; }

.fa-location-arrow::before {
  content: "\f124"; }

.fa-c::before {
  content: "\43"; }

.fa-tablet-button::before {
  content: "\f10a"; }

.fa-building-lock::before {
  content: "\e4d6"; }

.fa-pizza-slice::before {
  content: "\f818"; }

.fa-money-bill-wave::before {
  content: "\f53a"; }

.fa-chart-area::before {
  content: "\f1fe"; }

.fa-area-chart::before {
  content: "\f1fe"; }

.fa-house-flag::before {
  content: "\e50d"; }

.fa-person-circle-minus::before {
  content: "\e540"; }

.fa-ban::before {
  content: "\f05e"; }

.fa-cancel::before {
  content: "\f05e"; }

.fa-camera-rotate::before {
  content: "\e0d8"; }

.fa-spray-can-sparkles::before {
  content: "\f5d0"; }

.fa-air-freshener::before {
  content: "\f5d0"; }

.fa-star::before {
  content: "\f005"; }

.fa-repeat::before {
  content: "\f363"; }

.fa-cross::before {
  content: "\f654"; }

.fa-box::before {
  content: "\f466"; }

.fa-venus-mars::before {
  content: "\f228"; }

.fa-arrow-pointer::before {
  content: "\f245"; }

.fa-mouse-pointer::before {
  content: "\f245"; }

.fa-maximize::before {
  content: "\f31e"; }

.fa-expand-arrows-alt::before {
  content: "\f31e"; }

.fa-charging-station::before {
  content: "\f5e7"; }

.fa-shapes::before {
  content: "\f61f"; }

.fa-triangle-circle-square::before {
  content: "\f61f"; }

.fa-shuffle::before {
  content: "\f074"; }

.fa-random::before {
  content: "\f074"; }

.fa-person-running::before {
  content: "\f70c"; }

.fa-running::before {
  content: "\f70c"; }

.fa-mobile-retro::before {
  content: "\e527"; }

.fa-grip-lines-vertical::before {
  content: "\f7a5"; }

.fa-spider::before {
  content: "\f717"; }

.fa-hands-bound::before {
  content: "\e4f9"; }

.fa-file-invoice-dollar::before {
  content: "\f571"; }

.fa-plane-circle-exclamation::before {
  content: "\e556"; }

.fa-x-ray::before {
  content: "\f497"; }

.fa-spell-check::before {
  content: "\f891"; }

.fa-slash::before {
  content: "\f715"; }

.fa-computer-mouse::before {
  content: "\f8cc"; }

.fa-mouse::before {
  content: "\f8cc"; }

.fa-arrow-right-to-bracket::before {
  content: "\f090"; }

.fa-sign-in::before {
  content: "\f090"; }

.fa-shop-slash::before {
  content: "\e070"; }

.fa-store-alt-slash::before {
  content: "\e070"; }

.fa-server::before {
  content: "\f233"; }

.fa-virus-covid-slash::before {
  content: "\e4a9"; }

.fa-shop-lock::before {
  content: "\e4a5"; }

.fa-hourglass-start::before {
  content: "\f251"; }

.fa-hourglass-1::before {
  content: "\f251"; }

.fa-blender-phone::before {
  content: "\f6b6"; }

.fa-building-wheat::before {
  content: "\e4db"; }

.fa-person-breastfeeding::before {
  content: "\e53a"; }

.fa-right-to-bracket::before {
  content: "\f2f6"; }

.fa-sign-in-alt::before {
  content: "\f2f6"; }

.fa-venus::before {
  content: "\f221"; }

.fa-passport::before {
  content: "\f5ab"; }

.fa-heart-pulse::before {
  content: "\f21e"; }

.fa-heartbeat::before {
  content: "\f21e"; }

.fa-people-carry-box::before {
  content: "\f4ce"; }

.fa-people-carry::before {
  content: "\f4ce"; }

.fa-temperature-high::before {
  content: "\f769"; }

.fa-microchip::before {
  content: "\f2db"; }

.fa-crown::before {
  content: "\f521"; }

.fa-weight-hanging::before {
  content: "\f5cd"; }

.fa-xmarks-lines::before {
  content: "\e59a"; }

.fa-file-prescription::before {
  content: "\f572"; }

.fa-weight-scale::before {
  content: "\f496"; }

.fa-weight::before {
  content: "\f496"; }

.fa-user-group::before {
  content: "\f500"; }

.fa-user-friends::before {
  content: "\f500"; }

.fa-arrow-up-a-z::before {
  content: "\f15e"; }

.fa-sort-alpha-up::before {
  content: "\f15e"; }

.fa-chess-knight::before {
  content: "\f441"; }

.fa-face-laugh-squint::before {
  content: "\f59b"; }

.fa-laugh-squint::before {
  content: "\f59b"; }

.fa-wheelchair::before {
  content: "\f193"; }

.fa-circle-arrow-up::before {
  content: "\f0aa"; }

.fa-arrow-circle-up::before {
  content: "\f0aa"; }

.fa-toggle-on::before {
  content: "\f205"; }

.fa-person-walking::before {
  content: "\f554"; }

.fa-walking::before {
  content: "\f554"; }

.fa-l::before {
  content: "\4c"; }

.fa-fire::before {
  content: "\f06d"; }

.fa-bed-pulse::before {
  content: "\f487"; }

.fa-procedures::before {
  content: "\f487"; }

.fa-shuttle-space::before {
  content: "\f197"; }

.fa-space-shuttle::before {
  content: "\f197"; }

.fa-face-laugh::before {
  content: "\f599"; }

.fa-laugh::before {
  content: "\f599"; }

.fa-folder-open::before {
  content: "\f07c"; }

.fa-heart-circle-plus::before {
  content: "\e500"; }

.fa-code-fork::before {
  content: "\e13b"; }

.fa-city::before {
  content: "\f64f"; }

.fa-microphone-lines::before {
  content: "\f3c9"; }

.fa-microphone-alt::before {
  content: "\f3c9"; }

.fa-pepper-hot::before {
  content: "\f816"; }

.fa-unlock::before {
  content: "\f09c"; }

.fa-colon-sign::before {
  content: "\e140"; }

.fa-headset::before {
  content: "\f590"; }

.fa-store-slash::before {
  content: "\e071"; }

.fa-road-circle-xmark::before {
  content: "\e566"; }

.fa-user-minus::before {
  content: "\f503"; }

.fa-mars-stroke-up::before {
  content: "\f22a"; }

.fa-mars-stroke-v::before {
  content: "\f22a"; }

.fa-champagne-glasses::before {
  content: "\f79f"; }

.fa-glass-cheers::before {
  content: "\f79f"; }

.fa-clipboard::before {
  content: "\f328"; }

.fa-house-circle-exclamation::before {
  content: "\e50a"; }

.fa-file-arrow-up::before {
  content: "\f574"; }

.fa-file-upload::before {
  content: "\f574"; }

.fa-wifi::before {
  content: "\f1eb"; }

.fa-wifi-3::before {
  content: "\f1eb"; }

.fa-wifi-strong::before {
  content: "\f1eb"; }

.fa-bath::before {
  content: "\f2cd"; }

.fa-bathtub::before {
  content: "\f2cd"; }

.fa-underline::before {
  content: "\f0cd"; }

.fa-user-pen::before {
  content: "\f4ff"; }

.fa-user-edit::before {
  content: "\f4ff"; }

.fa-signature::before {
  content: "\f5b7"; }

.fa-stroopwafel::before {
  content: "\f551"; }

.fa-bold::before {
  content: "\f032"; }

.fa-anchor-lock::before {
  content: "\e4ad"; }

.fa-building-ngo::before {
  content: "\e4d7"; }

.fa-manat-sign::before {
  content: "\e1d5"; }

.fa-not-equal::before {
  content: "\f53e"; }

.fa-border-top-left::before {
  content: "\f853"; }

.fa-border-style::before {
  content: "\f853"; }

.fa-map-location-dot::before {
  content: "\f5a0"; }

.fa-map-marked-alt::before {
  content: "\f5a0"; }

.fa-jedi::before {
  content: "\f669"; }

.fa-square-poll-vertical::before {
  content: "\f681"; }

.fa-poll::before {
  content: "\f681"; }

.fa-mug-hot::before {
  content: "\f7b6"; }

.fa-car-battery::before {
  content: "\f5df"; }

.fa-battery-car::before {
  content: "\f5df"; }

.fa-gift::before {
  content: "\f06b"; }

.fa-dice-two::before {
  content: "\f528"; }

.fa-chess-queen::before {
  content: "\f445"; }

.fa-glasses::before {
  content: "\f530"; }

.fa-chess-board::before {
  content: "\f43c"; }

.fa-building-circle-check::before {
  content: "\e4d2"; }

.fa-person-chalkboard::before {
  content: "\e53d"; }

.fa-mars-stroke-right::before {
  content: "\f22b"; }

.fa-mars-stroke-h::before {
  content: "\f22b"; }

.fa-hand-back-fist::before {
  content: "\f255"; }

.fa-hand-rock::before {
  content: "\f255"; }

.fa-square-caret-up::before {
  content: "\f151"; }

.fa-caret-square-up::before {
  content: "\f151"; }

.fa-cloud-showers-water::before {
  content: "\e4e4"; }

.fa-chart-bar::before {
  content: "\f080"; }

.fa-bar-chart::before {
  content: "\f080"; }

.fa-hands-bubbles::before {
  content: "\e05e"; }

.fa-hands-wash::before {
  content: "\e05e"; }

.fa-less-than-equal::before {
  content: "\f537"; }

.fa-train::before {
  content: "\f238"; }

.fa-eye-low-vision::before {
  content: "\f2a8"; }

.fa-low-vision::before {
  content: "\f2a8"; }

.fa-crow::before {
  content: "\f520"; }

.fa-sailboat::before {
  content: "\e445"; }

.fa-window-restore::before {
  content: "\f2d2"; }

.fa-square-plus::before {
  content: "\f0fe"; }

.fa-plus-square::before {
  content: "\f0fe"; }

.fa-torii-gate::before {
  content: "\f6a1"; }

.fa-frog::before {
  content: "\f52e"; }

.fa-bucket::before {
  content: "\e4cf"; }

.fa-image::before {
  content: "\f03e"; }

.fa-microphone::before {
  content: "\f130"; }

.fa-cow::before {
  content: "\f6c8"; }

.fa-caret-up::before {
  content: "\f0d8"; }

.fa-screwdriver::before {
  content: "\f54a"; }

.fa-folder-closed::before {
  content: "\e185"; }

.fa-house-tsunami::before {
  content: "\e515"; }

.fa-square-nfi::before {
  content: "\e576"; }

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5"; }

.fa-martini-glass::before {
  content: "\f57b"; }

.fa-glass-martini-alt::before {
  content: "\f57b"; }

.fa-rotate-left::before {
  content: "\f2ea"; }

.fa-rotate-back::before {
  content: "\f2ea"; }

.fa-rotate-backward::before {
  content: "\f2ea"; }

.fa-undo-alt::before {
  content: "\f2ea"; }

.fa-table-columns::before {
  content: "\f0db"; }

.fa-columns::before {
  content: "\f0db"; }

.fa-lemon::before {
  content: "\f094"; }

.fa-head-side-mask::before {
  content: "\e063"; }

.fa-handshake::before {
  content: "\f2b5"; }

.fa-gem::before {
  content: "\f3a5"; }

.fa-dolly::before {
  content: "\f472"; }

.fa-dolly-box::before {
  content: "\f472"; }

.fa-smoking::before {
  content: "\f48d"; }

.fa-minimize::before {
  content: "\f78c"; }

.fa-compress-arrows-alt::before {
  content: "\f78c"; }

.fa-monument::before {
  content: "\f5a6"; }

.fa-snowplow::before {
  content: "\f7d2"; }

.fa-angles-right::before {
  content: "\f101"; }

.fa-angle-double-right::before {
  content: "\f101"; }

.fa-cannabis::before {
  content: "\f55f"; }

.fa-circle-play::before {
  content: "\f144"; }

.fa-play-circle::before {
  content: "\f144"; }

.fa-tablets::before {
  content: "\f490"; }

.fa-ethernet::before {
  content: "\f796"; }

.fa-euro-sign::before {
  content: "\f153"; }

.fa-eur::before {
  content: "\f153"; }

.fa-euro::before {
  content: "\f153"; }

.fa-chair::before {
  content: "\f6c0"; }

.fa-circle-check::before {
  content: "\f058"; }

.fa-check-circle::before {
  content: "\f058"; }

.fa-circle-stop::before {
  content: "\f28d"; }

.fa-stop-circle::before {
  content: "\f28d"; }

.fa-compass-drafting::before {
  content: "\f568"; }

.fa-drafting-compass::before {
  content: "\f568"; }

.fa-plate-wheat::before {
  content: "\e55a"; }

.fa-icicles::before {
  content: "\f7ad"; }

.fa-person-shelter::before {
  content: "\e54f"; }

.fa-neuter::before {
  content: "\f22c"; }

.fa-id-badge::before {
  content: "\f2c1"; }

.fa-marker::before {
  content: "\f5a1"; }

.fa-face-laugh-beam::before {
  content: "\f59a"; }

.fa-laugh-beam::before {
  content: "\f59a"; }

.fa-helicopter-symbol::before {
  content: "\e502"; }

.fa-universal-access::before {
  content: "\f29a"; }

.fa-circle-chevron-up::before {
  content: "\f139"; }

.fa-chevron-circle-up::before {
  content: "\f139"; }

.fa-lari-sign::before {
  content: "\e1c8"; }

.fa-volcano::before {
  content: "\f770"; }

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553"; }

.fa-sterling-sign::before {
  content: "\f154"; }

.fa-gbp::before {
  content: "\f154"; }

.fa-pound-sign::before {
  content: "\f154"; }

.fa-viruses::before {
  content: "\e076"; }

.fa-square-person-confined::before {
  content: "\e577"; }

.fa-user-tie::before {
  content: "\f508"; }

.fa-arrow-down-long::before {
  content: "\f175"; }

.fa-long-arrow-down::before {
  content: "\f175"; }

.fa-tent-arrow-down-to-line::before {
  content: "\e57e"; }

.fa-certificate::before {
  content: "\f0a3"; }

.fa-reply-all::before {
  content: "\f122"; }

.fa-mail-reply-all::before {
  content: "\f122"; }

.fa-suitcase::before {
  content: "\f0f2"; }

.fa-person-skating::before {
  content: "\f7c5"; }

.fa-skating::before {
  content: "\f7c5"; }

.fa-filter-circle-dollar::before {
  content: "\f662"; }

.fa-funnel-dollar::before {
  content: "\f662"; }

.fa-camera-retro::before {
  content: "\f083"; }

.fa-circle-arrow-down::before {
  content: "\f0ab"; }

.fa-arrow-circle-down::before {
  content: "\f0ab"; }

.fa-file-import::before {
  content: "\f56f"; }

.fa-arrow-right-to-file::before {
  content: "\f56f"; }

.fa-square-arrow-up-right::before {
  content: "\f14c"; }

.fa-external-link-square::before {
  content: "\f14c"; }

.fa-box-open::before {
  content: "\f49e"; }

.fa-scroll::before {
  content: "\f70e"; }

.fa-spa::before {
  content: "\f5bb"; }

.fa-location-pin-lock::before {
  content: "\e51f"; }

.fa-pause::before {
  content: "\f04c"; }

.fa-hill-avalanche::before {
  content: "\e507"; }

.fa-temperature-empty::before {
  content: "\f2cb"; }

.fa-temperature-0::before {
  content: "\f2cb"; }

.fa-thermometer-0::before {
  content: "\f2cb"; }

.fa-thermometer-empty::before {
  content: "\f2cb"; }

.fa-bomb::before {
  content: "\f1e2"; }

.fa-registered::before {
  content: "\f25d"; }

.fa-address-card::before {
  content: "\f2bb"; }

.fa-contact-card::before {
  content: "\f2bb"; }

.fa-vcard::before {
  content: "\f2bb"; }

.fa-scale-unbalanced-flip::before {
  content: "\f516"; }

.fa-balance-scale-right::before {
  content: "\f516"; }

.fa-subscript::before {
  content: "\f12c"; }

.fa-diamond-turn-right::before {
  content: "\f5eb"; }

.fa-directions::before {
  content: "\f5eb"; }

.fa-burst::before {
  content: "\e4dc"; }

.fa-house-laptop::before {
  content: "\e066"; }

.fa-laptop-house::before {
  content: "\e066"; }

.fa-face-tired::before {
  content: "\f5c8"; }

.fa-tired::before {
  content: "\f5c8"; }

.fa-money-bills::before {
  content: "\e1f3"; }

.fa-smog::before {
  content: "\f75f"; }

.fa-crutch::before {
  content: "\f7f7"; }

.fa-cloud-arrow-up::before {
  content: "\f0ee"; }

.fa-cloud-upload::before {
  content: "\f0ee"; }

.fa-cloud-upload-alt::before {
  content: "\f0ee"; }

.fa-palette::before {
  content: "\f53f"; }

.fa-arrows-turn-right::before {
  content: "\e4c0"; }

.fa-vest::before {
  content: "\e085"; }

.fa-ferry::before {
  content: "\e4ea"; }

.fa-arrows-down-to-people::before {
  content: "\e4b9"; }

.fa-seedling::before {
  content: "\f4d8"; }

.fa-sprout::before {
  content: "\f4d8"; }

.fa-left-right::before {
  content: "\f337"; }

.fa-arrows-alt-h::before {
  content: "\f337"; }

.fa-boxes-packing::before {
  content: "\e4c7"; }

.fa-circle-arrow-left::before {
  content: "\f0a8"; }

.fa-arrow-circle-left::before {
  content: "\f0a8"; }

.fa-group-arrows-rotate::before {
  content: "\e4f6"; }

.fa-bowl-food::before {
  content: "\e4c6"; }

.fa-candy-cane::before {
  content: "\f786"; }

.fa-arrow-down-wide-short::before {
  content: "\f160"; }

.fa-sort-amount-asc::before {
  content: "\f160"; }

.fa-sort-amount-down::before {
  content: "\f160"; }

.fa-cloud-bolt::before {
  content: "\f76c"; }

.fa-thunderstorm::before {
  content: "\f76c"; }

.fa-text-slash::before {
  content: "\f87d"; }

.fa-remove-format::before {
  content: "\f87d"; }

.fa-face-smile-wink::before {
  content: "\f4da"; }

.fa-smile-wink::before {
  content: "\f4da"; }

.fa-file-word::before {
  content: "\f1c2"; }

.fa-file-powerpoint::before {
  content: "\f1c4"; }

.fa-arrows-left-right::before {
  content: "\f07e"; }

.fa-arrows-h::before {
  content: "\f07e"; }

.fa-house-lock::before {
  content: "\e510"; }

.fa-cloud-arrow-down::before {
  content: "\f0ed"; }

.fa-cloud-download::before {
  content: "\f0ed"; }

.fa-cloud-download-alt::before {
  content: "\f0ed"; }

.fa-children::before {
  content: "\e4e1"; }

.fa-chalkboard::before {
  content: "\f51b"; }

.fa-blackboard::before {
  content: "\f51b"; }

.fa-user-large-slash::before {
  content: "\f4fa"; }

.fa-user-alt-slash::before {
  content: "\f4fa"; }

.fa-envelope-open::before {
  content: "\f2b6"; }

.fa-handshake-simple-slash::before {
  content: "\e05f"; }

.fa-handshake-alt-slash::before {
  content: "\e05f"; }

.fa-mattress-pillow::before {
  content: "\e525"; }

.fa-guarani-sign::before {
  content: "\e19a"; }

.fa-arrows-rotate::before {
  content: "\f021"; }

.fa-refresh::before {
  content: "\f021"; }

.fa-sync::before {
  content: "\f021"; }

.fa-fire-extinguisher::before {
  content: "\f134"; }

.fa-cruzeiro-sign::before {
  content: "\e152"; }

.fa-greater-than-equal::before {
  content: "\f532"; }

.fa-shield-halved::before {
  content: "\f3ed"; }

.fa-shield-alt::before {
  content: "\f3ed"; }

.fa-book-atlas::before {
  content: "\f558"; }

.fa-atlas::before {
  content: "\f558"; }

.fa-virus::before {
  content: "\e074"; }

.fa-envelope-circle-check::before {
  content: "\e4e8"; }

.fa-layer-group::before {
  content: "\f5fd"; }

.fa-arrows-to-dot::before {
  content: "\e4be"; }

.fa-archway::before {
  content: "\f557"; }

.fa-heart-circle-check::before {
  content: "\e4fd"; }

.fa-house-chimney-crack::before {
  content: "\f6f1"; }

.fa-house-damage::before {
  content: "\f6f1"; }

.fa-file-zipper::before {
  content: "\f1c6"; }

.fa-file-archive::before {
  content: "\f1c6"; }

.fa-square::before {
  content: "\f0c8"; }

.fa-martini-glass-empty::before {
  content: "\f000"; }

.fa-glass-martini::before {
  content: "\f000"; }

.fa-couch::before {
  content: "\f4b8"; }

.fa-cedi-sign::before {
  content: "\e0df"; }

.fa-italic::before {
  content: "\f033"; }

.fa-church::before {
  content: "\f51d"; }

.fa-comments-dollar::before {
  content: "\f653"; }

.fa-democrat::before {
  content: "\f747"; }

.fa-z::before {
  content: "\5a"; }

.fa-person-skiing::before {
  content: "\f7c9"; }

.fa-skiing::before {
  content: "\f7c9"; }

.fa-road-lock::before {
  content: "\e567"; }

.fa-a::before {
  content: "\41"; }

.fa-temperature-arrow-down::before {
  content: "\e03f"; }

.fa-temperature-down::before {
  content: "\e03f"; }

.fa-feather-pointed::before {
  content: "\f56b"; }

.fa-feather-alt::before {
  content: "\f56b"; }

.fa-p::before {
  content: "\50"; }

.fa-snowflake::before {
  content: "\f2dc"; }

.fa-newspaper::before {
  content: "\f1ea"; }

.fa-rectangle-ad::before {
  content: "\f641"; }

.fa-ad::before {
  content: "\f641"; }

.fa-circle-arrow-right::before {
  content: "\f0a9"; }

.fa-arrow-circle-right::before {
  content: "\f0a9"; }

.fa-filter-circle-xmark::before {
  content: "\e17b"; }

.fa-locust::before {
  content: "\e520"; }

.fa-sort::before {
  content: "\f0dc"; }

.fa-unsorted::before {
  content: "\f0dc"; }

.fa-list-ol::before {
  content: "\f0cb"; }

.fa-list-1-2::before {
  content: "\f0cb"; }

.fa-list-numeric::before {
  content: "\f0cb"; }

.fa-person-dress-burst::before {
  content: "\e544"; }

.fa-money-check-dollar::before {
  content: "\f53d"; }

.fa-money-check-alt::before {
  content: "\f53d"; }

.fa-vector-square::before {
  content: "\f5cb"; }

.fa-bread-slice::before {
  content: "\f7ec"; }

.fa-language::before {
  content: "\f1ab"; }

.fa-face-kiss-wink-heart::before {
  content: "\f598"; }

.fa-kiss-wink-heart::before {
  content: "\f598"; }

.fa-filter::before {
  content: "\f0b0"; }

.fa-question::before {
  content: "\3f"; }

.fa-file-signature::before {
  content: "\f573"; }

.fa-up-down-left-right::before {
  content: "\f0b2"; }

.fa-arrows-alt::before {
  content: "\f0b2"; }

.fa-house-chimney-user::before {
  content: "\e065"; }

.fa-hand-holding-heart::before {
  content: "\f4be"; }

.fa-puzzle-piece::before {
  content: "\f12e"; }

.fa-money-check::before {
  content: "\f53c"; }

.fa-star-half-stroke::before {
  content: "\f5c0"; }

.fa-star-half-alt::before {
  content: "\f5c0"; }

.fa-code::before {
  content: "\f121"; }

.fa-whiskey-glass::before {
  content: "\f7a0"; }

.fa-glass-whiskey::before {
  content: "\f7a0"; }

.fa-building-circle-exclamation::before {
  content: "\e4d3"; }

.fa-magnifying-glass-chart::before {
  content: "\e522"; }

.fa-arrow-up-right-from-square::before {
  content: "\f08e"; }

.fa-external-link::before {
  content: "\f08e"; }

.fa-cubes-stacked::before {
  content: "\e4e6"; }

.fa-won-sign::before {
  content: "\f159"; }

.fa-krw::before {
  content: "\f159"; }

.fa-won::before {
  content: "\f159"; }

.fa-virus-covid::before {
  content: "\e4a8"; }

.fa-austral-sign::before {
  content: "\e0a9"; }

.fa-f::before {
  content: "\46"; }

.fa-leaf::before {
  content: "\f06c"; }

.fa-road::before {
  content: "\f018"; }

.fa-taxi::before {
  content: "\f1ba"; }

.fa-cab::before {
  content: "\f1ba"; }

.fa-person-circle-plus::before {
  content: "\e541"; }

.fa-chart-pie::before {
  content: "\f200"; }

.fa-pie-chart::before {
  content: "\f200"; }

.fa-bolt-lightning::before {
  content: "\e0b7"; }

.fa-sack-xmark::before {
  content: "\e56a"; }

.fa-file-excel::before {
  content: "\f1c3"; }

.fa-file-contract::before {
  content: "\f56c"; }

.fa-fish-fins::before {
  content: "\e4f2"; }

.fa-building-flag::before {
  content: "\e4d5"; }

.fa-face-grin-beam::before {
  content: "\f582"; }

.fa-grin-beam::before {
  content: "\f582"; }

.fa-object-ungroup::before {
  content: "\f248"; }

.fa-poop::before {
  content: "\f619"; }

.fa-location-pin::before {
  content: "\f041"; }

.fa-map-marker::before {
  content: "\f041"; }

.fa-kaaba::before {
  content: "\f66b"; }

.fa-toilet-paper::before {
  content: "\f71e"; }

.fa-helmet-safety::before {
  content: "\f807"; }

.fa-hard-hat::before {
  content: "\f807"; }

.fa-hat-hard::before {
  content: "\f807"; }

.fa-eject::before {
  content: "\f052"; }

.fa-circle-right::before {
  content: "\f35a"; }

.fa-arrow-alt-circle-right::before {
  content: "\f35a"; }

.fa-plane-circle-check::before {
  content: "\e555"; }

.fa-face-rolling-eyes::before {
  content: "\f5a5"; }

.fa-meh-rolling-eyes::before {
  content: "\f5a5"; }

.fa-object-group::before {
  content: "\f247"; }

.fa-chart-line::before {
  content: "\f201"; }

.fa-line-chart::before {
  content: "\f201"; }

.fa-mask-ventilator::before {
  content: "\e524"; }

.fa-arrow-right::before {
  content: "\f061"; }

.fa-signs-post::before {
  content: "\f277"; }

.fa-map-signs::before {
  content: "\f277"; }

.fa-cash-register::before {
  content: "\f788"; }

.fa-person-circle-question::before {
  content: "\e542"; }

.fa-h::before {
  content: "\48"; }

.fa-tarp::before {
  content: "\e57b"; }

.fa-screwdriver-wrench::before {
  content: "\f7d9"; }

.fa-tools::before {
  content: "\f7d9"; }

.fa-arrows-to-eye::before {
  content: "\e4bf"; }

.fa-plug-circle-bolt::before {
  content: "\e55b"; }

.fa-heart::before {
  content: "\f004"; }

.fa-mars-and-venus::before {
  content: "\f224"; }

.fa-house-user::before {
  content: "\e1b0"; }

.fa-home-user::before {
  content: "\e1b0"; }

.fa-dumpster-fire::before {
  content: "\f794"; }

.fa-house-crack::before {
  content: "\e3b1"; }

.fa-martini-glass-citrus::before {
  content: "\f561"; }

.fa-cocktail::before {
  content: "\f561"; }

.fa-face-surprise::before {
  content: "\f5c2"; }

.fa-surprise::before {
  content: "\f5c2"; }

.fa-bottle-water::before {
  content: "\e4c5"; }

.fa-circle-pause::before {
  content: "\f28b"; }

.fa-pause-circle::before {
  content: "\f28b"; }

.fa-toilet-paper-slash::before {
  content: "\e072"; }

.fa-apple-whole::before {
  content: "\f5d1"; }

.fa-apple-alt::before {
  content: "\f5d1"; }

.fa-kitchen-set::before {
  content: "\e51a"; }

.fa-r::before {
  content: "\52"; }

.fa-temperature-quarter::before {
  content: "\f2ca"; }

.fa-temperature-1::before {
  content: "\f2ca"; }

.fa-thermometer-1::before {
  content: "\f2ca"; }

.fa-thermometer-quarter::before {
  content: "\f2ca"; }

.fa-cube::before {
  content: "\f1b2"; }

.fa-bitcoin-sign::before {
  content: "\e0b4"; }

.fa-shield-dog::before {
  content: "\e573"; }

.fa-solar-panel::before {
  content: "\f5ba"; }

.fa-lock-open::before {
  content: "\f3c1"; }

.fa-elevator::before {
  content: "\e16d"; }

.fa-money-bill-transfer::before {
  content: "\e528"; }

.fa-money-bill-trend-up::before {
  content: "\e529"; }

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f"; }

.fa-square-poll-horizontal::before {
  content: "\f682"; }

.fa-poll-h::before {
  content: "\f682"; }

.fa-circle::before {
  content: "\f111"; }

.fa-backward-fast::before {
  content: "\f049"; }

.fa-fast-backward::before {
  content: "\f049"; }

.fa-recycle::before {
  content: "\f1b8"; }

.fa-user-astronaut::before {
  content: "\f4fb"; }

.fa-plane-slash::before {
  content: "\e069"; }

.fa-trademark::before {
  content: "\f25c"; }

.fa-basketball::before {
  content: "\f434"; }

.fa-basketball-ball::before {
  content: "\f434"; }

.fa-satellite-dish::before {
  content: "\f7c0"; }

.fa-circle-up::before {
  content: "\f35b"; }

.fa-arrow-alt-circle-up::before {
  content: "\f35b"; }

.fa-mobile-screen-button::before {
  content: "\f3cd"; }

.fa-mobile-alt::before {
  content: "\f3cd"; }

.fa-volume-high::before {
  content: "\f028"; }

.fa-volume-up::before {
  content: "\f028"; }

.fa-users-rays::before {
  content: "\e593"; }

.fa-wallet::before {
  content: "\f555"; }

.fa-clipboard-check::before {
  content: "\f46c"; }

.fa-file-audio::before {
  content: "\f1c7"; }

.fa-burger::before {
  content: "\f805"; }

.fa-hamburger::before {
  content: "\f805"; }

.fa-wrench::before {
  content: "\f0ad"; }

.fa-bugs::before {
  content: "\e4d0"; }

.fa-rupee-sign::before {
  content: "\f156"; }

.fa-rupee::before {
  content: "\f156"; }

.fa-file-image::before {
  content: "\f1c5"; }

.fa-circle-question::before {
  content: "\f059"; }

.fa-question-circle::before {
  content: "\f059"; }

.fa-plane-departure::before {
  content: "\f5b0"; }

.fa-handshake-slash::before {
  content: "\e060"; }

.fa-book-bookmark::before {
  content: "\e0bb"; }

.fa-code-branch::before {
  content: "\f126"; }

.fa-hat-cowboy::before {
  content: "\f8c0"; }

.fa-bridge::before {
  content: "\e4c8"; }

.fa-phone-flip::before {
  content: "\f879"; }

.fa-phone-alt::before {
  content: "\f879"; }

.fa-truck-front::before {
  content: "\e2b7"; }

.fa-cat::before {
  content: "\f6be"; }

.fa-anchor-circle-exclamation::before {
  content: "\e4ab"; }

.fa-truck-field::before {
  content: "\e58d"; }

.fa-route::before {
  content: "\f4d7"; }

.fa-clipboard-question::before {
  content: "\e4e3"; }

.fa-panorama::before {
  content: "\e209"; }

.fa-comment-medical::before {
  content: "\f7f5"; }

.fa-teeth-open::before {
  content: "\f62f"; }

.fa-file-circle-minus::before {
  content: "\e4ed"; }

.fa-tags::before {
  content: "\f02c"; }

.fa-wine-glass::before {
  content: "\f4e3"; }

.fa-forward-fast::before {
  content: "\f050"; }

.fa-fast-forward::before {
  content: "\f050"; }

.fa-face-meh-blank::before {
  content: "\f5a4"; }

.fa-meh-blank::before {
  content: "\f5a4"; }

.fa-square-parking::before {
  content: "\f540"; }

.fa-parking::before {
  content: "\f540"; }

.fa-house-signal::before {
  content: "\e012"; }

.fa-bars-progress::before {
  content: "\f828"; }

.fa-tasks-alt::before {
  content: "\f828"; }

.fa-faucet-drip::before {
  content: "\e006"; }

.fa-cart-flatbed::before {
  content: "\f474"; }

.fa-dolly-flatbed::before {
  content: "\f474"; }

.fa-ban-smoking::before {
  content: "\f54d"; }

.fa-smoking-ban::before {
  content: "\f54d"; }

.fa-terminal::before {
  content: "\f120"; }

.fa-mobile-button::before {
  content: "\f10b"; }

.fa-house-medical-flag::before {
  content: "\e514"; }

.fa-basket-shopping::before {
  content: "\f291"; }

.fa-shopping-basket::before {
  content: "\f291"; }

.fa-tape::before {
  content: "\f4db"; }

.fa-bus-simple::before {
  content: "\f55e"; }

.fa-bus-alt::before {
  content: "\f55e"; }

.fa-eye::before {
  content: "\f06e"; }

.fa-face-sad-cry::before {
  content: "\f5b3"; }

.fa-sad-cry::before {
  content: "\f5b3"; }

.fa-audio-description::before {
  content: "\f29e"; }

.fa-person-military-to-person::before {
  content: "\e54c"; }

.fa-file-shield::before {
  content: "\e4f0"; }

.fa-user-slash::before {
  content: "\f506"; }

.fa-pen::before {
  content: "\f304"; }

.fa-tower-observation::before {
  content: "\e586"; }

.fa-file-code::before {
  content: "\f1c9"; }

.fa-signal::before {
  content: "\f012"; }

.fa-signal-5::before {
  content: "\f012"; }

.fa-signal-perfect::before {
  content: "\f012"; }

.fa-bus::before {
  content: "\f207"; }

.fa-heart-circle-xmark::before {
  content: "\e501"; }

.fa-house-chimney::before {
  content: "\e3af"; }

.fa-home-lg::before {
  content: "\e3af"; }

.fa-window-maximize::before {
  content: "\f2d0"; }

.fa-face-frown::before {
  content: "\f119"; }

.fa-frown::before {
  content: "\f119"; }

.fa-prescription::before {
  content: "\f5b1"; }

.fa-shop::before {
  content: "\f54f"; }

.fa-store-alt::before {
  content: "\f54f"; }

.fa-floppy-disk::before {
  content: "\f0c7"; }

.fa-save::before {
  content: "\f0c7"; }

.fa-vihara::before {
  content: "\f6a7"; }

.fa-scale-unbalanced::before {
  content: "\f515"; }

.fa-balance-scale-left::before {
  content: "\f515"; }

.fa-sort-up::before {
  content: "\f0de"; }

.fa-sort-asc::before {
  content: "\f0de"; }

.fa-comment-dots::before {
  content: "\f4ad"; }

.fa-commenting::before {
  content: "\f4ad"; }

.fa-plant-wilt::before {
  content: "\e5aa"; }

.fa-diamond::before {
  content: "\f219"; }

.fa-face-grin-squint::before {
  content: "\f585"; }

.fa-grin-squint::before {
  content: "\f585"; }

.fa-hand-holding-dollar::before {
  content: "\f4c0"; }

.fa-hand-holding-usd::before {
  content: "\f4c0"; }

.fa-bacterium::before {
  content: "\e05a"; }

.fa-hand-pointer::before {
  content: "\f25a"; }

.fa-drum-steelpan::before {
  content: "\f56a"; }

.fa-hand-scissors::before {
  content: "\f257"; }

.fa-hands-praying::before {
  content: "\f684"; }

.fa-praying-hands::before {
  content: "\f684"; }

.fa-arrow-rotate-right::before {
  content: "\f01e"; }

.fa-arrow-right-rotate::before {
  content: "\f01e"; }

.fa-arrow-rotate-forward::before {
  content: "\f01e"; }

.fa-redo::before {
  content: "\f01e"; }

.fa-biohazard::before {
  content: "\f780"; }

.fa-location-crosshairs::before {
  content: "\f601"; }

.fa-location::before {
  content: "\f601"; }

.fa-mars-double::before {
  content: "\f227"; }

.fa-child-dress::before {
  content: "\e59c"; }

.fa-users-between-lines::before {
  content: "\e591"; }

.fa-lungs-virus::before {
  content: "\e067"; }

.fa-face-grin-tears::before {
  content: "\f588"; }

.fa-grin-tears::before {
  content: "\f588"; }

.fa-phone::before {
  content: "\f095"; }

.fa-calendar-xmark::before {
  content: "\f273"; }

.fa-calendar-times::before {
  content: "\f273"; }

.fa-child-reaching::before {
  content: "\e59d"; }

.fa-head-side-virus::before {
  content: "\e064"; }

.fa-user-gear::before {
  content: "\f4fe"; }

.fa-user-cog::before {
  content: "\f4fe"; }

.fa-arrow-up-1-9::before {
  content: "\f163"; }

.fa-sort-numeric-up::before {
  content: "\f163"; }

.fa-door-closed::before {
  content: "\f52a"; }

.fa-shield-virus::before {
  content: "\e06c"; }

.fa-dice-six::before {
  content: "\f526"; }

.fa-mosquito-net::before {
  content: "\e52c"; }

.fa-bridge-water::before {
  content: "\e4ce"; }

.fa-person-booth::before {
  content: "\f756"; }

.fa-text-width::before {
  content: "\f035"; }

.fa-hat-wizard::before {
  content: "\f6e8"; }

.fa-pen-fancy::before {
  content: "\f5ac"; }

.fa-person-digging::before {
  content: "\f85e"; }

.fa-digging::before {
  content: "\f85e"; }

.fa-trash::before {
  content: "\f1f8"; }

.fa-gauge-simple::before {
  content: "\f629"; }

.fa-gauge-simple-med::before {
  content: "\f629"; }

.fa-tachometer-average::before {
  content: "\f629"; }

.fa-book-medical::before {
  content: "\f7e6"; }

.fa-poo::before {
  content: "\f2fe"; }

.fa-quote-right::before {
  content: "\f10e"; }

.fa-quote-right-alt::before {
  content: "\f10e"; }

.fa-shirt::before {
  content: "\f553"; }

.fa-t-shirt::before {
  content: "\f553"; }

.fa-tshirt::before {
  content: "\f553"; }

.fa-cubes::before {
  content: "\f1b3"; }

.fa-divide::before {
  content: "\f529"; }

.fa-tenge-sign::before {
  content: "\f7d7"; }

.fa-tenge::before {
  content: "\f7d7"; }

.fa-headphones::before {
  content: "\f025"; }

.fa-hands-holding::before {
  content: "\f4c2"; }

.fa-hands-clapping::before {
  content: "\e1a8"; }

.fa-republican::before {
  content: "\f75e"; }

.fa-arrow-left::before {
  content: "\f060"; }

.fa-person-circle-xmark::before {
  content: "\e543"; }

.fa-ruler::before {
  content: "\f545"; }

.fa-align-left::before {
  content: "\f036"; }

.fa-dice-d6::before {
  content: "\f6d1"; }

.fa-restroom::before {
  content: "\f7bd"; }

.fa-j::before {
  content: "\4a"; }

.fa-users-viewfinder::before {
  content: "\e595"; }

.fa-file-video::before {
  content: "\f1c8"; }

.fa-up-right-from-square::before {
  content: "\f35d"; }

.fa-external-link-alt::before {
  content: "\f35d"; }

.fa-table-cells::before {
  content: "\f00a"; }

.fa-th::before {
  content: "\f00a"; }

.fa-file-pdf::before {
  content: "\f1c1"; }

.fa-book-bible::before {
  content: "\f647"; }

.fa-bible::before {
  content: "\f647"; }

.fa-o::before {
  content: "\4f"; }

.fa-suitcase-medical::before {
  content: "\f0fa"; }

.fa-medkit::before {
  content: "\f0fa"; }

.fa-user-secret::before {
  content: "\f21b"; }

.fa-otter::before {
  content: "\f700"; }

.fa-person-dress::before {
  content: "\f182"; }

.fa-female::before {
  content: "\f182"; }

.fa-comment-dollar::before {
  content: "\f651"; }

.fa-business-time::before {
  content: "\f64a"; }

.fa-briefcase-clock::before {
  content: "\f64a"; }

.fa-table-cells-large::before {
  content: "\f009"; }

.fa-th-large::before {
  content: "\f009"; }

.fa-book-tanakh::before {
  content: "\f827"; }

.fa-tanakh::before {
  content: "\f827"; }

.fa-phone-volume::before {
  content: "\f2a0"; }

.fa-volume-control-phone::before {
  content: "\f2a0"; }

.fa-hat-cowboy-side::before {
  content: "\f8c1"; }

.fa-clipboard-user::before {
  content: "\f7f3"; }

.fa-child::before {
  content: "\f1ae"; }

.fa-lira-sign::before {
  content: "\f195"; }

.fa-satellite::before {
  content: "\f7bf"; }

.fa-plane-lock::before {
  content: "\e558"; }

.fa-tag::before {
  content: "\f02b"; }

.fa-comment::before {
  content: "\f075"; }

.fa-cake-candles::before {
  content: "\f1fd"; }

.fa-birthday-cake::before {
  content: "\f1fd"; }

.fa-cake::before {
  content: "\f1fd"; }

.fa-envelope::before {
  content: "\f0e0"; }

.fa-angles-up::before {
  content: "\f102"; }

.fa-angle-double-up::before {
  content: "\f102"; }

.fa-paperclip::before {
  content: "\f0c6"; }

.fa-arrow-right-to-city::before {
  content: "\e4b3"; }

.fa-ribbon::before {
  content: "\f4d6"; }

.fa-lungs::before {
  content: "\f604"; }

.fa-arrow-up-9-1::before {
  content: "\f887"; }

.fa-sort-numeric-up-alt::before {
  content: "\f887"; }

.fa-litecoin-sign::before {
  content: "\e1d3"; }

.fa-border-none::before {
  content: "\f850"; }

.fa-circle-nodes::before {
  content: "\e4e2"; }

.fa-parachute-box::before {
  content: "\f4cd"; }

.fa-indent::before {
  content: "\f03c"; }

.fa-truck-field-un::before {
  content: "\e58e"; }

.fa-hourglass::before {
  content: "\f254"; }

.fa-hourglass-empty::before {
  content: "\f254"; }

.fa-mountain::before {
  content: "\f6fc"; }

.fa-user-doctor::before {
  content: "\f0f0"; }

.fa-user-md::before {
  content: "\f0f0"; }

.fa-circle-info::before {
  content: "\f05a"; }

.fa-info-circle::before {
  content: "\f05a"; }

.fa-cloud-meatball::before {
  content: "\f73b"; }

.fa-camera::before {
  content: "\f030"; }

.fa-camera-alt::before {
  content: "\f030"; }

.fa-square-virus::before {
  content: "\e578"; }

.fa-meteor::before {
  content: "\f753"; }

.fa-car-on::before {
  content: "\e4dd"; }

.fa-sleigh::before {
  content: "\f7cc"; }

.fa-arrow-down-1-9::before {
  content: "\f162"; }

.fa-sort-numeric-asc::before {
  content: "\f162"; }

.fa-sort-numeric-down::before {
  content: "\f162"; }

.fa-hand-holding-droplet::before {
  content: "\f4c1"; }

.fa-hand-holding-water::before {
  content: "\f4c1"; }

.fa-water::before {
  content: "\f773"; }

.fa-calendar-check::before {
  content: "\f274"; }

.fa-braille::before {
  content: "\f2a1"; }

.fa-prescription-bottle-medical::before {
  content: "\f486"; }

.fa-prescription-bottle-alt::before {
  content: "\f486"; }

.fa-landmark::before {
  content: "\f66f"; }

.fa-truck::before {
  content: "\f0d1"; }

.fa-crosshairs::before {
  content: "\f05b"; }

.fa-person-cane::before {
  content: "\e53c"; }

.fa-tent::before {
  content: "\e57d"; }

.fa-vest-patches::before {
  content: "\e086"; }

.fa-check-double::before {
  content: "\f560"; }

.fa-arrow-down-a-z::before {
  content: "\f15d"; }

.fa-sort-alpha-asc::before {
  content: "\f15d"; }

.fa-sort-alpha-down::before {
  content: "\f15d"; }

.fa-money-bill-wheat::before {
  content: "\e52a"; }

.fa-cookie::before {
  content: "\f563"; }

.fa-arrow-rotate-left::before {
  content: "\f0e2"; }

.fa-arrow-left-rotate::before {
  content: "\f0e2"; }

.fa-arrow-rotate-back::before {
  content: "\f0e2"; }

.fa-arrow-rotate-backward::before {
  content: "\f0e2"; }

.fa-undo::before {
  content: "\f0e2"; }

.fa-hard-drive::before {
  content: "\f0a0"; }

.fa-hdd::before {
  content: "\f0a0"; }

.fa-face-grin-squint-tears::before {
  content: "\f586"; }

.fa-grin-squint-tears::before {
  content: "\f586"; }

.fa-dumbbell::before {
  content: "\f44b"; }

.fa-rectangle-list::before {
  content: "\f022"; }

.fa-list-alt::before {
  content: "\f022"; }

.fa-tarp-droplet::before {
  content: "\e57c"; }

.fa-house-medical-circle-check::before {
  content: "\e511"; }

.fa-person-skiing-nordic::before {
  content: "\f7ca"; }

.fa-skiing-nordic::before {
  content: "\f7ca"; }

.fa-calendar-plus::before {
  content: "\f271"; }

.fa-plane-arrival::before {
  content: "\f5af"; }

.fa-circle-left::before {
  content: "\f359"; }

.fa-arrow-alt-circle-left::before {
  content: "\f359"; }

.fa-train-subway::before {
  content: "\f239"; }

.fa-subway::before {
  content: "\f239"; }

.fa-chart-gantt::before {
  content: "\e0e4"; }

.fa-indian-rupee-sign::before {
  content: "\e1bc"; }

.fa-indian-rupee::before {
  content: "\e1bc"; }

.fa-inr::before {
  content: "\e1bc"; }

.fa-crop-simple::before {
  content: "\f565"; }

.fa-crop-alt::before {
  content: "\f565"; }

.fa-money-bill-1::before {
  content: "\f3d1"; }

.fa-money-bill-alt::before {
  content: "\f3d1"; }

.fa-left-long::before {
  content: "\f30a"; }

.fa-long-arrow-alt-left::before {
  content: "\f30a"; }

.fa-dna::before {
  content: "\f471"; }

.fa-virus-slash::before {
  content: "\e075"; }

.fa-minus::before {
  content: "\f068"; }

.fa-subtract::before {
  content: "\f068"; }

.fa-chess::before {
  content: "\f439"; }

.fa-arrow-left-long::before {
  content: "\f177"; }

.fa-long-arrow-left::before {
  content: "\f177"; }

.fa-plug-circle-check::before {
  content: "\e55c"; }

.fa-street-view::before {
  content: "\f21d"; }

.fa-franc-sign::before {
  content: "\e18f"; }

.fa-volume-off::before {
  content: "\f026"; }

.fa-hands-asl-interpreting::before {
  content: "\f2a3"; }

.fa-american-sign-language-interpreting::before {
  content: "\f2a3"; }

.fa-asl-interpreting::before {
  content: "\f2a3"; }

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3"; }

.fa-gear::before {
  content: "\f013"; }

.fa-cog::before {
  content: "\f013"; }

.fa-droplet-slash::before {
  content: "\f5c7"; }

.fa-tint-slash::before {
  content: "\f5c7"; }

.fa-mosque::before {
  content: "\f678"; }

.fa-mosquito::before {
  content: "\e52b"; }

.fa-star-of-david::before {
  content: "\f69a"; }

.fa-person-military-rifle::before {
  content: "\e54b"; }

.fa-cart-shopping::before {
  content: "\f07a"; }

.fa-shopping-cart::before {
  content: "\f07a"; }

.fa-vials::before {
  content: "\f493"; }

.fa-plug-circle-plus::before {
  content: "\e55f"; }

.fa-place-of-worship::before {
  content: "\f67f"; }

.fa-grip-vertical::before {
  content: "\f58e"; }

.fa-arrow-turn-up::before {
  content: "\f148"; }

.fa-level-up::before {
  content: "\f148"; }

.fa-u::before {
  content: "\55"; }

.fa-square-root-variable::before {
  content: "\f698"; }

.fa-square-root-alt::before {
  content: "\f698"; }

.fa-clock::before {
  content: "\f017"; }

.fa-clock-four::before {
  content: "\f017"; }

.fa-backward-step::before {
  content: "\f048"; }

.fa-step-backward::before {
  content: "\f048"; }

.fa-pallet::before {
  content: "\f482"; }

.fa-faucet::before {
  content: "\e005"; }

.fa-baseball-bat-ball::before {
  content: "\f432"; }

.fa-s::before {
  content: "\53"; }

.fa-timeline::before {
  content: "\e29c"; }

.fa-keyboard::before {
  content: "\f11c"; }

.fa-caret-down::before {
  content: "\f0d7"; }

.fa-house-chimney-medical::before {
  content: "\f7f2"; }

.fa-clinic-medical::before {
  content: "\f7f2"; }

.fa-temperature-three-quarters::before {
  content: "\f2c8"; }

.fa-temperature-3::before {
  content: "\f2c8"; }

.fa-thermometer-3::before {
  content: "\f2c8"; }

.fa-thermometer-three-quarters::before {
  content: "\f2c8"; }

.fa-mobile-screen::before {
  content: "\f3cf"; }

.fa-mobile-android-alt::before {
  content: "\f3cf"; }

.fa-plane-up::before {
  content: "\e22d"; }

.fa-piggy-bank::before {
  content: "\f4d3"; }

.fa-battery-half::before {
  content: "\f242"; }

.fa-battery-3::before {
  content: "\f242"; }

.fa-mountain-city::before {
  content: "\e52e"; }

.fa-coins::before {
  content: "\f51e"; }

.fa-khanda::before {
  content: "\f66d"; }

.fa-sliders::before {
  content: "\f1de"; }

.fa-sliders-h::before {
  content: "\f1de"; }

.fa-folder-tree::before {
  content: "\f802"; }

.fa-network-wired::before {
  content: "\f6ff"; }

.fa-map-pin::before {
  content: "\f276"; }

.fa-hamsa::before {
  content: "\f665"; }

.fa-cent-sign::before {
  content: "\e3f5"; }

.fa-flask::before {
  content: "\f0c3"; }

.fa-person-pregnant::before {
  content: "\e31e"; }

.fa-wand-sparkles::before {
  content: "\f72b"; }

.fa-ellipsis-vertical::before {
  content: "\f142"; }

.fa-ellipsis-v::before {
  content: "\f142"; }

.fa-ticket::before {
  content: "\f145"; }

.fa-power-off::before {
  content: "\f011"; }

.fa-right-long::before {
  content: "\f30b"; }

.fa-long-arrow-alt-right::before {
  content: "\f30b"; }

.fa-flag-usa::before {
  content: "\f74d"; }

.fa-laptop-file::before {
  content: "\e51d"; }

.fa-tty::before {
  content: "\f1e4"; }

.fa-teletype::before {
  content: "\f1e4"; }

.fa-diagram-next::before {
  content: "\e476"; }

.fa-person-rifle::before {
  content: "\e54e"; }

.fa-house-medical-circle-exclamation::before {
  content: "\e512"; }

.fa-closed-captioning::before {
  content: "\f20a"; }

.fa-person-hiking::before {
  content: "\f6ec"; }

.fa-hiking::before {
  content: "\f6ec"; }

.fa-venus-double::before {
  content: "\f226"; }

.fa-images::before {
  content: "\f302"; }

.fa-calculator::before {
  content: "\f1ec"; }

.fa-people-pulling::before {
  content: "\e535"; }

.fa-n::before {
  content: "\4e"; }

.fa-cable-car::before {
  content: "\f7da"; }

.fa-tram::before {
  content: "\f7da"; }

.fa-cloud-rain::before {
  content: "\f73d"; }

.fa-building-circle-xmark::before {
  content: "\e4d4"; }

.fa-ship::before {
  content: "\f21a"; }

.fa-arrows-down-to-line::before {
  content: "\e4b8"; }

.fa-download::before {
  content: "\f019"; }

.fa-face-grin::before {
  content: "\f580"; }

.fa-grin::before {
  content: "\f580"; }

.fa-delete-left::before {
  content: "\f55a"; }

.fa-backspace::before {
  content: "\f55a"; }

.fa-eye-dropper::before {
  content: "\f1fb"; }

.fa-eye-dropper-empty::before {
  content: "\f1fb"; }

.fa-eyedropper::before {
  content: "\f1fb"; }

.fa-file-circle-check::before {
  content: "\e5a0"; }

.fa-forward::before {
  content: "\f04e"; }

.fa-mobile::before {
  content: "\f3ce"; }

.fa-mobile-android::before {
  content: "\f3ce"; }

.fa-mobile-phone::before {
  content: "\f3ce"; }

.fa-face-meh::before {
  content: "\f11a"; }

.fa-meh::before {
  content: "\f11a"; }

.fa-align-center::before {
  content: "\f037"; }

.fa-book-skull::before {
  content: "\f6b7"; }

.fa-book-dead::before {
  content: "\f6b7"; }

.fa-id-card::before {
  content: "\f2c2"; }

.fa-drivers-license::before {
  content: "\f2c2"; }

.fa-outdent::before {
  content: "\f03b"; }

.fa-dedent::before {
  content: "\f03b"; }

.fa-heart-circle-exclamation::before {
  content: "\e4fe"; }

.fa-house::before {
  content: "\f015"; }

.fa-home::before {
  content: "\f015"; }

.fa-home-alt::before {
  content: "\f015"; }

.fa-home-lg-alt::before {
  content: "\f015"; }

.fa-calendar-week::before {
  content: "\f784"; }

.fa-laptop-medical::before {
  content: "\f812"; }

.fa-b::before {
  content: "\42"; }

.fa-file-medical::before {
  content: "\f477"; }

.fa-dice-one::before {
  content: "\f525"; }

.fa-kiwi-bird::before {
  content: "\f535"; }

.fa-arrow-right-arrow-left::before {
  content: "\f0ec"; }

.fa-exchange::before {
  content: "\f0ec"; }

.fa-rotate-right::before {
  content: "\f2f9"; }

.fa-redo-alt::before {
  content: "\f2f9"; }

.fa-rotate-forward::before {
  content: "\f2f9"; }

.fa-utensils::before {
  content: "\f2e7"; }

.fa-cutlery::before {
  content: "\f2e7"; }

.fa-arrow-up-wide-short::before {
  content: "\f161"; }

.fa-sort-amount-up::before {
  content: "\f161"; }

.fa-mill-sign::before {
  content: "\e1ed"; }

.fa-bowl-rice::before {
  content: "\e2eb"; }

.fa-skull::before {
  content: "\f54c"; }

.fa-tower-broadcast::before {
  content: "\f519"; }

.fa-broadcast-tower::before {
  content: "\f519"; }

.fa-truck-pickup::before {
  content: "\f63c"; }

.fa-up-long::before {
  content: "\f30c"; }

.fa-long-arrow-alt-up::before {
  content: "\f30c"; }

.fa-stop::before {
  content: "\f04d"; }

.fa-code-merge::before {
  content: "\f387"; }

.fa-upload::before {
  content: "\f093"; }

.fa-hurricane::before {
  content: "\f751"; }

.fa-mound::before {
  content: "\e52d"; }

.fa-toilet-portable::before {
  content: "\e583"; }

.fa-compact-disc::before {
  content: "\f51f"; }

.fa-file-arrow-down::before {
  content: "\f56d"; }

.fa-file-download::before {
  content: "\f56d"; }

.fa-caravan::before {
  content: "\f8ff"; }

.fa-shield-cat::before {
  content: "\e572"; }

.fa-bolt::before {
  content: "\f0e7"; }

.fa-zap::before {
  content: "\f0e7"; }

.fa-glass-water::before {
  content: "\e4f4"; }

.fa-oil-well::before {
  content: "\e532"; }

.fa-vault::before {
  content: "\e2c5"; }

.fa-mars::before {
  content: "\f222"; }

.fa-toilet::before {
  content: "\f7d8"; }

.fa-plane-circle-xmark::before {
  content: "\e557"; }

.fa-yen-sign::before {
  content: "\f157"; }

.fa-cny::before {
  content: "\f157"; }

.fa-jpy::before {
  content: "\f157"; }

.fa-rmb::before {
  content: "\f157"; }

.fa-yen::before {
  content: "\f157"; }

.fa-ruble-sign::before {
  content: "\f158"; }

.fa-rouble::before {
  content: "\f158"; }

.fa-rub::before {
  content: "\f158"; }

.fa-ruble::before {
  content: "\f158"; }

.fa-sun::before {
  content: "\f185"; }

.fa-guitar::before {
  content: "\f7a6"; }

.fa-face-laugh-wink::before {
  content: "\f59c"; }

.fa-laugh-wink::before {
  content: "\f59c"; }

.fa-horse-head::before {
  content: "\f7ab"; }

.fa-bore-hole::before {
  content: "\e4c3"; }

.fa-industry::before {
  content: "\f275"; }

.fa-circle-down::before {
  content: "\f358"; }

.fa-arrow-alt-circle-down::before {
  content: "\f358"; }

.fa-arrows-turn-to-dots::before {
  content: "\e4c1"; }

.fa-florin-sign::before {
  content: "\e184"; }

.fa-arrow-down-short-wide::before {
  content: "\f884"; }

.fa-sort-amount-desc::before {
  content: "\f884"; }

.fa-sort-amount-down-alt::before {
  content: "\f884"; }

.fa-less-than::before {
  content: "\3c"; }

.fa-angle-down::before {
  content: "\f107"; }

.fa-car-tunnel::before {
  content: "\e4de"; }

.fa-head-side-cough::before {
  content: "\e061"; }

.fa-grip-lines::before {
  content: "\f7a4"; }

.fa-thumbs-down::before {
  content: "\f165"; }

.fa-user-lock::before {
  content: "\f502"; }

.fa-arrow-right-long::before {
  content: "\f178"; }

.fa-long-arrow-right::before {
  content: "\f178"; }

.fa-anchor-circle-xmark::before {
  content: "\e4ac"; }

.fa-ellipsis::before {
  content: "\f141"; }

.fa-ellipsis-h::before {
  content: "\f141"; }

.fa-chess-pawn::before {
  content: "\f443"; }

.fa-kit-medical::before {
  content: "\f479"; }

.fa-first-aid::before {
  content: "\f479"; }

.fa-person-through-window::before {
  content: "\e5a9"; }

.fa-toolbox::before {
  content: "\f552"; }

.fa-hands-holding-circle::before {
  content: "\e4fb"; }

.fa-bug::before {
  content: "\f188"; }

.fa-credit-card::before {
  content: "\f09d"; }

.fa-credit-card-alt::before {
  content: "\f09d"; }

.fa-car::before {
  content: "\f1b9"; }

.fa-automobile::before {
  content: "\f1b9"; }

.fa-hand-holding-hand::before {
  content: "\e4f7"; }

.fa-book-open-reader::before {
  content: "\f5da"; }

.fa-book-reader::before {
  content: "\f5da"; }

.fa-mountain-sun::before {
  content: "\e52f"; }

.fa-arrows-left-right-to-line::before {
  content: "\e4ba"; }

.fa-dice-d20::before {
  content: "\f6cf"; }

.fa-truck-droplet::before {
  content: "\e58c"; }

.fa-file-circle-xmark::before {
  content: "\e5a1"; }

.fa-temperature-arrow-up::before {
  content: "\e040"; }

.fa-temperature-up::before {
  content: "\e040"; }

.fa-medal::before {
  content: "\f5a2"; }

.fa-bed::before {
  content: "\f236"; }

.fa-square-h::before {
  content: "\f0fd"; }

.fa-h-square::before {
  content: "\f0fd"; }

.fa-podcast::before {
  content: "\f2ce"; }

.fa-temperature-full::before {
  content: "\f2c7"; }

.fa-temperature-4::before {
  content: "\f2c7"; }

.fa-thermometer-4::before {
  content: "\f2c7"; }

.fa-thermometer-full::before {
  content: "\f2c7"; }

.fa-bell::before {
  content: "\f0f3"; }

.fa-superscript::before {
  content: "\f12b"; }

.fa-plug-circle-xmark::before {
  content: "\e560"; }

.fa-star-of-life::before {
  content: "\f621"; }

.fa-phone-slash::before {
  content: "\f3dd"; }

.fa-paint-roller::before {
  content: "\f5aa"; }

.fa-handshake-angle::before {
  content: "\f4c4"; }

.fa-hands-helping::before {
  content: "\f4c4"; }

.fa-location-dot::before {
  content: "\f3c5"; }

.fa-map-marker-alt::before {
  content: "\f3c5"; }

.fa-file::before {
  content: "\f15b"; }

.fa-greater-than::before {
  content: "\3e"; }

.fa-person-swimming::before {
  content: "\f5c4"; }

.fa-swimmer::before {
  content: "\f5c4"; }

.fa-arrow-down::before {
  content: "\f063"; }

.fa-droplet::before {
  content: "\f043"; }

.fa-tint::before {
  content: "\f043"; }

.fa-eraser::before {
  content: "\f12d"; }

.fa-earth-americas::before {
  content: "\f57d"; }

.fa-earth::before {
  content: "\f57d"; }

.fa-earth-america::before {
  content: "\f57d"; }

.fa-globe-americas::before {
  content: "\f57d"; }

.fa-person-burst::before {
  content: "\e53b"; }

.fa-dove::before {
  content: "\f4ba"; }

.fa-battery-empty::before {
  content: "\f244"; }

.fa-battery-0::before {
  content: "\f244"; }

.fa-socks::before {
  content: "\f696"; }

.fa-inbox::before {
  content: "\f01c"; }

.fa-section::before {
  content: "\e447"; }

.fa-gauge-high::before {
  content: "\f625"; }

.fa-tachometer-alt::before {
  content: "\f625"; }

.fa-tachometer-alt-fast::before {
  content: "\f625"; }

.fa-envelope-open-text::before {
  content: "\f658"; }

.fa-hospital::before {
  content: "\f0f8"; }

.fa-hospital-alt::before {
  content: "\f0f8"; }

.fa-hospital-wide::before {
  content: "\f0f8"; }

.fa-wine-bottle::before {
  content: "\f72f"; }

.fa-chess-rook::before {
  content: "\f447"; }

.fa-bars-staggered::before {
  content: "\f550"; }

.fa-reorder::before {
  content: "\f550"; }

.fa-stream::before {
  content: "\f550"; }

.fa-dharmachakra::before {
  content: "\f655"; }

.fa-hotdog::before {
  content: "\f80f"; }

.fa-person-walking-with-cane::before {
  content: "\f29d"; }

.fa-blind::before {
  content: "\f29d"; }

.fa-drum::before {
  content: "\f569"; }

.fa-ice-cream::before {
  content: "\f810"; }

.fa-heart-circle-bolt::before {
  content: "\e4fc"; }

.fa-fax::before {
  content: "\f1ac"; }

.fa-paragraph::before {
  content: "\f1dd"; }

.fa-check-to-slot::before {
  content: "\f772"; }

.fa-vote-yea::before {
  content: "\f772"; }

.fa-star-half::before {
  content: "\f089"; }

.fa-boxes-stacked::before {
  content: "\f468"; }

.fa-boxes::before {
  content: "\f468"; }

.fa-boxes-alt::before {
  content: "\f468"; }

.fa-link::before {
  content: "\f0c1"; }

.fa-chain::before {
  content: "\f0c1"; }

.fa-ear-listen::before {
  content: "\f2a2"; }

.fa-assistive-listening-systems::before {
  content: "\f2a2"; }

.fa-tree-city::before {
  content: "\e587"; }

.fa-play::before {
  content: "\f04b"; }

.fa-font::before {
  content: "\f031"; }

.fa-rupiah-sign::before {
  content: "\e23d"; }

.fa-magnifying-glass::before {
  content: "\f002"; }

.fa-search::before {
  content: "\f002"; }

.fa-table-tennis-paddle-ball::before {
  content: "\f45d"; }

.fa-ping-pong-paddle-ball::before {
  content: "\f45d"; }

.fa-table-tennis::before {
  content: "\f45d"; }

.fa-person-dots-from-line::before {
  content: "\f470"; }

.fa-diagnoses::before {
  content: "\f470"; }

.fa-trash-can-arrow-up::before {
  content: "\f82a"; }

.fa-trash-restore-alt::before {
  content: "\f82a"; }

.fa-naira-sign::before {
  content: "\e1f6"; }

.fa-cart-arrow-down::before {
  content: "\f218"; }

.fa-walkie-talkie::before {
  content: "\f8ef"; }

.fa-file-pen::before {
  content: "\f31c"; }

.fa-file-edit::before {
  content: "\f31c"; }

.fa-receipt::before {
  content: "\f543"; }

.fa-square-pen::before {
  content: "\f14b"; }

.fa-pen-square::before {
  content: "\f14b"; }

.fa-pencil-square::before {
  content: "\f14b"; }

.fa-suitcase-rolling::before {
  content: "\f5c1"; }

.fa-person-circle-exclamation::before {
  content: "\e53f"; }

.fa-chevron-down::before {
  content: "\f078"; }

.fa-battery-full::before {
  content: "\f240"; }

.fa-battery::before {
  content: "\f240"; }

.fa-battery-5::before {
  content: "\f240"; }

.fa-skull-crossbones::before {
  content: "\f714"; }

.fa-code-compare::before {
  content: "\e13a"; }

.fa-list-ul::before {
  content: "\f0ca"; }

.fa-list-dots::before {
  content: "\f0ca"; }

.fa-school-lock::before {
  content: "\e56f"; }

.fa-tower-cell::before {
  content: "\e585"; }

.fa-down-long::before {
  content: "\f309"; }

.fa-long-arrow-alt-down::before {
  content: "\f309"; }

.fa-ranking-star::before {
  content: "\e561"; }

.fa-chess-king::before {
  content: "\f43f"; }

.fa-person-harassing::before {
  content: "\e549"; }

.fa-brazilian-real-sign::before {
  content: "\e46c"; }

.fa-landmark-dome::before {
  content: "\f752"; }

.fa-landmark-alt::before {
  content: "\f752"; }

.fa-arrow-up::before {
  content: "\f062"; }

.fa-tv::before {
  content: "\f26c"; }

.fa-television::before {
  content: "\f26c"; }

.fa-tv-alt::before {
  content: "\f26c"; }

.fa-shrimp::before {
  content: "\e448"; }

.fa-list-check::before {
  content: "\f0ae"; }

.fa-tasks::before {
  content: "\f0ae"; }

.fa-jug-detergent::before {
  content: "\e519"; }

.fa-circle-user::before {
  content: "\f2bd"; }

.fa-user-circle::before {
  content: "\f2bd"; }

.fa-user-shield::before {
  content: "\f505"; }

.fa-wind::before {
  content: "\f72e"; }

.fa-car-burst::before {
  content: "\f5e1"; }

.fa-car-crash::before {
  content: "\f5e1"; }

.fa-y::before {
  content: "\59"; }

.fa-person-snowboarding::before {
  content: "\f7ce"; }

.fa-snowboarding::before {
  content: "\f7ce"; }

.fa-truck-fast::before {
  content: "\f48b"; }

.fa-shipping-fast::before {
  content: "\f48b"; }

.fa-fish::before {
  content: "\f578"; }

.fa-user-graduate::before {
  content: "\f501"; }

.fa-circle-half-stroke::before {
  content: "\f042"; }

.fa-adjust::before {
  content: "\f042"; }

.fa-clapperboard::before {
  content: "\e131"; }

.fa-circle-radiation::before {
  content: "\f7ba"; }

.fa-radiation-alt::before {
  content: "\f7ba"; }

.fa-baseball::before {
  content: "\f433"; }

.fa-baseball-ball::before {
  content: "\f433"; }

.fa-jet-fighter-up::before {
  content: "\e518"; }

.fa-diagram-project::before {
  content: "\f542"; }

.fa-project-diagram::before {
  content: "\f542"; }

.fa-copy::before {
  content: "\f0c5"; }

.fa-volume-xmark::before {
  content: "\f6a9"; }

.fa-volume-mute::before {
  content: "\f6a9"; }

.fa-volume-times::before {
  content: "\f6a9"; }

.fa-hand-sparkles::before {
  content: "\e05d"; }

.fa-grip::before {
  content: "\f58d"; }

.fa-grip-horizontal::before {
  content: "\f58d"; }

.fa-share-from-square::before {
  content: "\f14d"; }

.fa-share-square::before {
  content: "\f14d"; }

.fa-child-combatant::before {
  content: "\e4e0"; }

.fa-child-rifle::before {
  content: "\e4e0"; }

.fa-gun::before {
  content: "\e19b"; }

.fa-square-phone::before {
  content: "\f098"; }

.fa-phone-square::before {
  content: "\f098"; }

.fa-plus::before {
  content: "\2b"; }

.fa-add::before {
  content: "\2b"; }

.fa-expand::before {
  content: "\f065"; }

.fa-computer::before {
  content: "\e4e5"; }

.fa-xmark::before {
  content: "\f00d"; }

.fa-close::before {
  content: "\f00d"; }

.fa-multiply::before {
  content: "\f00d"; }

.fa-remove::before {
  content: "\f00d"; }

.fa-times::before {
  content: "\f00d"; }

.fa-arrows-up-down-left-right::before {
  content: "\f047"; }

.fa-arrows::before {
  content: "\f047"; }

.fa-chalkboard-user::before {
  content: "\f51c"; }

.fa-chalkboard-teacher::before {
  content: "\f51c"; }

.fa-peso-sign::before {
  content: "\e222"; }

.fa-building-shield::before {
  content: "\e4d8"; }

.fa-baby::before {
  content: "\f77c"; }

.fa-users-line::before {
  content: "\e592"; }

.fa-quote-left::before {
  content: "\f10d"; }

.fa-quote-left-alt::before {
  content: "\f10d"; }

.fa-tractor::before {
  content: "\f722"; }

.fa-trash-arrow-up::before {
  content: "\f829"; }

.fa-trash-restore::before {
  content: "\f829"; }

.fa-arrow-down-up-lock::before {
  content: "\e4b0"; }

.fa-lines-leaning::before {
  content: "\e51e"; }

.fa-ruler-combined::before {
  content: "\f546"; }

.fa-copyright::before {
  content: "\f1f9"; }

.fa-equals::before {
  content: "\3d"; }

.fa-blender::before {
  content: "\f517"; }

.fa-teeth::before {
  content: "\f62e"; }

.fa-shekel-sign::before {
  content: "\f20b"; }

.fa-ils::before {
  content: "\f20b"; }

.fa-shekel::before {
  content: "\f20b"; }

.fa-sheqel::before {
  content: "\f20b"; }

.fa-sheqel-sign::before {
  content: "\f20b"; }

.fa-map::before {
  content: "\f279"; }

.fa-rocket::before {
  content: "\f135"; }

.fa-photo-film::before {
  content: "\f87c"; }

.fa-photo-video::before {
  content: "\f87c"; }

.fa-folder-minus::before {
  content: "\f65d"; }

.fa-store::before {
  content: "\f54e"; }

.fa-arrow-trend-up::before {
  content: "\e098"; }

.fa-plug-circle-minus::before {
  content: "\e55e"; }

.fa-sign-hanging::before {
  content: "\f4d9"; }

.fa-sign::before {
  content: "\f4d9"; }

.fa-bezier-curve::before {
  content: "\f55b"; }

.fa-bell-slash::before {
  content: "\f1f6"; }

.fa-tablet::before {
  content: "\f3fb"; }

.fa-tablet-android::before {
  content: "\f3fb"; }

.fa-school-flag::before {
  content: "\e56e"; }

.fa-fill::before {
  content: "\f575"; }

.fa-angle-up::before {
  content: "\f106"; }

.fa-drumstick-bite::before {
  content: "\f6d7"; }

.fa-holly-berry::before {
  content: "\f7aa"; }

.fa-chevron-left::before {
  content: "\f053"; }

.fa-bacteria::before {
  content: "\e059"; }

.fa-hand-lizard::before {
  content: "\f258"; }

.fa-notdef::before {
  content: "\e1fe"; }

.fa-disease::before {
  content: "\f7fa"; }

.fa-briefcase-medical::before {
  content: "\f469"; }

.fa-genderless::before {
  content: "\f22d"; }

.fa-chevron-right::before {
  content: "\f054"; }

.fa-retweet::before {
  content: "\f079"; }

.fa-car-rear::before {
  content: "\f5de"; }

.fa-car-alt::before {
  content: "\f5de"; }

.fa-pump-soap::before {
  content: "\e06b"; }

.fa-video-slash::before {
  content: "\f4e2"; }

.fa-battery-quarter::before {
  content: "\f243"; }

.fa-battery-2::before {
  content: "\f243"; }

.fa-radio::before {
  content: "\f8d7"; }

.fa-baby-carriage::before {
  content: "\f77d"; }

.fa-carriage-baby::before {
  content: "\f77d"; }

.fa-traffic-light::before {
  content: "\f637"; }

.fa-thermometer::before {
  content: "\f491"; }

.fa-vr-cardboard::before {
  content: "\f729"; }

.fa-hand-middle-finger::before {
  content: "\f806"; }

.fa-percent::before {
  content: "\25"; }

.fa-percentage::before {
  content: "\25"; }

.fa-truck-moving::before {
  content: "\f4df"; }

.fa-glass-water-droplet::before {
  content: "\e4f5"; }

.fa-display::before {
  content: "\e163"; }

.fa-face-smile::before {
  content: "\f118"; }

.fa-smile::before {
  content: "\f118"; }

.fa-thumbtack::before {
  content: "\f08d"; }

.fa-thumb-tack::before {
  content: "\f08d"; }

.fa-trophy::before {
  content: "\f091"; }

.fa-person-praying::before {
  content: "\f683"; }

.fa-pray::before {
  content: "\f683"; }

.fa-hammer::before {
  content: "\f6e3"; }

.fa-hand-peace::before {
  content: "\f25b"; }

.fa-rotate::before {
  content: "\f2f1"; }

.fa-sync-alt::before {
  content: "\f2f1"; }

.fa-spinner::before {
  content: "\f110"; }

.fa-robot::before {
  content: "\f544"; }

.fa-peace::before {
  content: "\f67c"; }

.fa-gears::before {
  content: "\f085"; }

.fa-cogs::before {
  content: "\f085"; }

.fa-warehouse::before {
  content: "\f494"; }

.fa-arrow-up-right-dots::before {
  content: "\e4b7"; }

.fa-splotch::before {
  content: "\f5bc"; }

.fa-face-grin-hearts::before {
  content: "\f584"; }

.fa-grin-hearts::before {
  content: "\f584"; }

.fa-dice-four::before {
  content: "\f524"; }

.fa-sim-card::before {
  content: "\f7c4"; }

.fa-transgender::before {
  content: "\f225"; }

.fa-transgender-alt::before {
  content: "\f225"; }

.fa-mercury::before {
  content: "\f223"; }

.fa-arrow-turn-down::before {
  content: "\f149"; }

.fa-level-down::before {
  content: "\f149"; }

.fa-person-falling-burst::before {
  content: "\e547"; }

.fa-award::before {
  content: "\f559"; }

.fa-ticket-simple::before {
  content: "\f3ff"; }

.fa-ticket-alt::before {
  content: "\f3ff"; }

.fa-building::before {
  content: "\f1ad"; }

.fa-angles-left::before {
  content: "\f100"; }

.fa-angle-double-left::before {
  content: "\f100"; }

.fa-qrcode::before {
  content: "\f029"; }

.fa-clock-rotate-left::before {
  content: "\f1da"; }

.fa-history::before {
  content: "\f1da"; }

.fa-face-grin-beam-sweat::before {
  content: "\f583"; }

.fa-grin-beam-sweat::before {
  content: "\f583"; }

.fa-file-export::before {
  content: "\f56e"; }

.fa-arrow-right-from-file::before {
  content: "\f56e"; }

.fa-shield::before {
  content: "\f132"; }

.fa-shield-blank::before {
  content: "\f132"; }

.fa-arrow-up-short-wide::before {
  content: "\f885"; }

.fa-sort-amount-up-alt::before {
  content: "\f885"; }

.fa-house-medical::before {
  content: "\e3b2"; }

.fa-golf-ball-tee::before {
  content: "\f450"; }

.fa-golf-ball::before {
  content: "\f450"; }

.fa-circle-chevron-left::before {
  content: "\f137"; }

.fa-chevron-circle-left::before {
  content: "\f137"; }

.fa-house-chimney-window::before {
  content: "\e00d"; }

.fa-pen-nib::before {
  content: "\f5ad"; }

.fa-tent-arrow-turn-left::before {
  content: "\e580"; }

.fa-tents::before {
  content: "\e582"; }

.fa-wand-magic::before {
  content: "\f0d0"; }

.fa-magic::before {
  content: "\f0d0"; }

.fa-dog::before {
  content: "\f6d3"; }

.fa-carrot::before {
  content: "\f787"; }

.fa-moon::before {
  content: "\f186"; }

.fa-wine-glass-empty::before {
  content: "\f5ce"; }

.fa-wine-glass-alt::before {
  content: "\f5ce"; }

.fa-cheese::before {
  content: "\f7ef"; }

.fa-yin-yang::before {
  content: "\f6ad"; }

.fa-music::before {
  content: "\f001"; }

.fa-code-commit::before {
  content: "\f386"; }

.fa-temperature-low::before {
  content: "\f76b"; }

.fa-person-biking::before {
  content: "\f84a"; }

.fa-biking::before {
  content: "\f84a"; }

.fa-broom::before {
  content: "\f51a"; }

.fa-shield-heart::before {
  content: "\e574"; }

.fa-gopuram::before {
  content: "\f664"; }

.fa-earth-oceania::before {
  content: "\e47b"; }

.fa-globe-oceania::before {
  content: "\e47b"; }

.fa-square-xmark::before {
  content: "\f2d3"; }

.fa-times-square::before {
  content: "\f2d3"; }

.fa-xmark-square::before {
  content: "\f2d3"; }

.fa-hashtag::before {
  content: "\23"; }

.fa-up-right-and-down-left-from-center::before {
  content: "\f424"; }

.fa-expand-alt::before {
  content: "\f424"; }

.fa-oil-can::before {
  content: "\f613"; }

.fa-t::before {
  content: "\54"; }

.fa-hippo::before {
  content: "\f6ed"; }

.fa-chart-column::before {
  content: "\e0e3"; }

.fa-infinity::before {
  content: "\f534"; }

.fa-vial-circle-check::before {
  content: "\e596"; }

.fa-person-arrow-down-to-line::before {
  content: "\e538"; }

.fa-voicemail::before {
  content: "\f897"; }

.fa-fan::before {
  content: "\f863"; }

.fa-person-walking-luggage::before {
  content: "\e554"; }

.fa-up-down::before {
  content: "\f338"; }

.fa-arrows-alt-v::before {
  content: "\f338"; }

.fa-cloud-moon-rain::before {
  content: "\f73c"; }

.fa-calendar::before {
  content: "\f133"; }

.fa-trailer::before {
  content: "\e041"; }

.fa-bahai::before {
  content: "\f666"; }

.fa-haykal::before {
  content: "\f666"; }

.fa-sd-card::before {
  content: "\f7c2"; }

.fa-dragon::before {
  content: "\f6d5"; }

.fa-shoe-prints::before {
  content: "\f54b"; }

.fa-circle-plus::before {
  content: "\f055"; }

.fa-plus-circle::before {
  content: "\f055"; }

.fa-face-grin-tongue-wink::before {
  content: "\f58b"; }

.fa-grin-tongue-wink::before {
  content: "\f58b"; }

.fa-hand-holding::before {
  content: "\f4bd"; }

.fa-plug-circle-exclamation::before {
  content: "\e55d"; }

.fa-link-slash::before {
  content: "\f127"; }

.fa-chain-broken::before {
  content: "\f127"; }

.fa-chain-slash::before {
  content: "\f127"; }

.fa-unlink::before {
  content: "\f127"; }

.fa-clone::before {
  content: "\f24d"; }

.fa-person-walking-arrow-loop-left::before {
  content: "\e551"; }

.fa-arrow-up-z-a::before {
  content: "\f882"; }

.fa-sort-alpha-up-alt::before {
  content: "\f882"; }

.fa-fire-flame-curved::before {
  content: "\f7e4"; }

.fa-fire-alt::before {
  content: "\f7e4"; }

.fa-tornado::before {
  content: "\f76f"; }

.fa-file-circle-plus::before {
  content: "\e494"; }

.fa-book-quran::before {
  content: "\f687"; }

.fa-quran::before {
  content: "\f687"; }

.fa-anchor::before {
  content: "\f13d"; }

.fa-border-all::before {
  content: "\f84c"; }

.fa-face-angry::before {
  content: "\f556"; }

.fa-angry::before {
  content: "\f556"; }

.fa-cookie-bite::before {
  content: "\f564"; }

.fa-arrow-trend-down::before {
  content: "\e097"; }

.fa-rss::before {
  content: "\f09e"; }

.fa-feed::before {
  content: "\f09e"; }

.fa-draw-polygon::before {
  content: "\f5ee"; }

.fa-scale-balanced::before {
  content: "\f24e"; }

.fa-balance-scale::before {
  content: "\f24e"; }

.fa-gauge-simple-high::before {
  content: "\f62a"; }

.fa-tachometer::before {
  content: "\f62a"; }

.fa-tachometer-fast::before {
  content: "\f62a"; }

.fa-shower::before {
  content: "\f2cc"; }

.fa-desktop::before {
  content: "\f390"; }

.fa-desktop-alt::before {
  content: "\f390"; }

.fa-m::before {
  content: "\4d"; }

.fa-table-list::before {
  content: "\f00b"; }

.fa-th-list::before {
  content: "\f00b"; }

.fa-comment-sms::before {
  content: "\f7cd"; }

.fa-sms::before {
  content: "\f7cd"; }

.fa-book::before {
  content: "\f02d"; }

.fa-user-plus::before {
  content: "\f234"; }

.fa-check::before {
  content: "\f00c"; }

.fa-battery-three-quarters::before {
  content: "\f241"; }

.fa-battery-4::before {
  content: "\f241"; }

.fa-house-circle-check::before {
  content: "\e509"; }

.fa-angle-left::before {
  content: "\f104"; }

.fa-diagram-successor::before {
  content: "\e47a"; }

.fa-truck-arrow-right::before {
  content: "\e58b"; }

.fa-arrows-split-up-and-left::before {
  content: "\e4bc"; }

.fa-hand-fist::before {
  content: "\f6de"; }

.fa-fist-raised::before {
  content: "\f6de"; }

.fa-cloud-moon::before {
  content: "\f6c3"; }

.fa-briefcase::before {
  content: "\f0b1"; }

.fa-person-falling::before {
  content: "\e546"; }

.fa-image-portrait::before {
  content: "\f3e0"; }

.fa-portrait::before {
  content: "\f3e0"; }

.fa-user-tag::before {
  content: "\f507"; }

.fa-rug::before {
  content: "\e569"; }

.fa-earth-europe::before {
  content: "\f7a2"; }

.fa-globe-europe::before {
  content: "\f7a2"; }

.fa-cart-flatbed-suitcase::before {
  content: "\f59d"; }

.fa-luggage-cart::before {
  content: "\f59d"; }

.fa-rectangle-xmark::before {
  content: "\f410"; }

.fa-rectangle-times::before {
  content: "\f410"; }

.fa-times-rectangle::before {
  content: "\f410"; }

.fa-window-close::before {
  content: "\f410"; }

.fa-baht-sign::before {
  content: "\e0ac"; }

.fa-book-open::before {
  content: "\f518"; }

.fa-book-journal-whills::before {
  content: "\f66a"; }

.fa-journal-whills::before {
  content: "\f66a"; }

.fa-handcuffs::before {
  content: "\e4f8"; }

.fa-triangle-exclamation::before {
  content: "\f071"; }

.fa-exclamation-triangle::before {
  content: "\f071"; }

.fa-warning::before {
  content: "\f071"; }

.fa-database::before {
  content: "\f1c0"; }

.fa-share::before {
  content: "\f064"; }

.fa-mail-forward::before {
  content: "\f064"; }

.fa-bottle-droplet::before {
  content: "\e4c4"; }

.fa-mask-face::before {
  content: "\e1d7"; }

.fa-hill-rockslide::before {
  content: "\e508"; }

.fa-right-left::before {
  content: "\f362"; }

.fa-exchange-alt::before {
  content: "\f362"; }

.fa-paper-plane::before {
  content: "\f1d8"; }

.fa-road-circle-exclamation::before {
  content: "\e565"; }

.fa-dungeon::before {
  content: "\f6d9"; }

.fa-align-right::before {
  content: "\f038"; }

.fa-money-bill-1-wave::before {
  content: "\f53b"; }

.fa-money-bill-wave-alt::before {
  content: "\f53b"; }

.fa-life-ring::before {
  content: "\f1cd"; }

.fa-hands::before {
  content: "\f2a7"; }

.fa-sign-language::before {
  content: "\f2a7"; }

.fa-signing::before {
  content: "\f2a7"; }

.fa-calendar-day::before {
  content: "\f783"; }

.fa-water-ladder::before {
  content: "\f5c5"; }

.fa-ladder-water::before {
  content: "\f5c5"; }

.fa-swimming-pool::before {
  content: "\f5c5"; }

.fa-arrows-up-down::before {
  content: "\f07d"; }

.fa-arrows-v::before {
  content: "\f07d"; }

.fa-face-grimace::before {
  content: "\f57f"; }

.fa-grimace::before {
  content: "\f57f"; }

.fa-wheelchair-move::before {
  content: "\e2ce"; }

.fa-wheelchair-alt::before {
  content: "\e2ce"; }

.fa-turn-down::before {
  content: "\f3be"; }

.fa-level-down-alt::before {
  content: "\f3be"; }

.fa-person-walking-arrow-right::before {
  content: "\e552"; }

.fa-square-envelope::before {
  content: "\f199"; }

.fa-envelope-square::before {
  content: "\f199"; }

.fa-dice::before {
  content: "\f522"; }

.fa-bowling-ball::before {
  content: "\f436"; }

.fa-brain::before {
  content: "\f5dc"; }

.fa-bandage::before {
  content: "\f462"; }

.fa-band-aid::before {
  content: "\f462"; }

.fa-calendar-minus::before {
  content: "\f272"; }

.fa-circle-xmark::before {
  content: "\f057"; }

.fa-times-circle::before {
  content: "\f057"; }

.fa-xmark-circle::before {
  content: "\f057"; }

.fa-gifts::before {
  content: "\f79c"; }

.fa-hotel::before {
  content: "\f594"; }

.fa-earth-asia::before {
  content: "\f57e"; }

.fa-globe-asia::before {
  content: "\f57e"; }

.fa-id-card-clip::before {
  content: "\f47f"; }

.fa-id-card-alt::before {
  content: "\f47f"; }

.fa-magnifying-glass-plus::before {
  content: "\f00e"; }

.fa-search-plus::before {
  content: "\f00e"; }

.fa-thumbs-up::before {
  content: "\f164"; }

.fa-user-clock::before {
  content: "\f4fd"; }

.fa-hand-dots::before {
  content: "\f461"; }

.fa-allergies::before {
  content: "\f461"; }

.fa-file-invoice::before {
  content: "\f570"; }

.fa-window-minimize::before {
  content: "\f2d1"; }

.fa-mug-saucer::before {
  content: "\f0f4"; }

.fa-coffee::before {
  content: "\f0f4"; }

.fa-brush::before {
  content: "\f55d"; }

.fa-mask::before {
  content: "\f6fa"; }

.fa-magnifying-glass-minus::before {
  content: "\f010"; }

.fa-search-minus::before {
  content: "\f010"; }

.fa-ruler-vertical::before {
  content: "\f548"; }

.fa-user-large::before {
  content: "\f406"; }

.fa-user-alt::before {
  content: "\f406"; }

.fa-train-tram::before {
  content: "\e5b4"; }

.fa-user-nurse::before {
  content: "\f82f"; }

.fa-syringe::before {
  content: "\f48e"; }

.fa-cloud-sun::before {
  content: "\f6c4"; }

.fa-stopwatch-20::before {
  content: "\e06f"; }

.fa-square-full::before {
  content: "\f45c"; }

.fa-magnet::before {
  content: "\f076"; }

.fa-jar::before {
  content: "\e516"; }

.fa-note-sticky::before {
  content: "\f249"; }

.fa-sticky-note::before {
  content: "\f249"; }

.fa-bug-slash::before {
  content: "\e490"; }

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6"; }

.fa-bone::before {
  content: "\f5d7"; }

.fa-user-injured::before {
  content: "\f728"; }

.fa-face-sad-tear::before {
  content: "\f5b4"; }

.fa-sad-tear::before {
  content: "\f5b4"; }

.fa-plane::before {
  content: "\f072"; }

.fa-tent-arrows-down::before {
  content: "\e581"; }

.fa-exclamation::before {
  content: "\21"; }

.fa-arrows-spin::before {
  content: "\e4bb"; }

.fa-print::before {
  content: "\f02f"; }

.fa-turkish-lira-sign::before {
  content: "\e2bb"; }

.fa-try::before {
  content: "\e2bb"; }

.fa-turkish-lira::before {
  content: "\e2bb"; }

.fa-dollar-sign::before {
  content: "\24"; }

.fa-dollar::before {
  content: "\24"; }

.fa-usd::before {
  content: "\24"; }

.fa-x::before {
  content: "\58"; }

.fa-magnifying-glass-dollar::before {
  content: "\f688"; }

.fa-search-dollar::before {
  content: "\f688"; }

.fa-users-gear::before {
  content: "\f509"; }

.fa-users-cog::before {
  content: "\f509"; }

.fa-person-military-pointing::before {
  content: "\e54a"; }

.fa-building-columns::before {
  content: "\f19c"; }

.fa-bank::before {
  content: "\f19c"; }

.fa-institution::before {
  content: "\f19c"; }

.fa-museum::before {
  content: "\f19c"; }

.fa-university::before {
  content: "\f19c"; }

.fa-umbrella::before {
  content: "\f0e9"; }

.fa-trowel::before {
  content: "\e589"; }

.fa-d::before {
  content: "\44"; }

.fa-stapler::before {
  content: "\e5af"; }

.fa-masks-theater::before {
  content: "\f630"; }

.fa-theater-masks::before {
  content: "\f630"; }

.fa-kip-sign::before {
  content: "\e1c4"; }

.fa-hand-point-left::before {
  content: "\f0a5"; }

.fa-handshake-simple::before {
  content: "\f4c6"; }

.fa-handshake-alt::before {
  content: "\f4c6"; }

.fa-jet-fighter::before {
  content: "\f0fb"; }

.fa-fighter-jet::before {
  content: "\f0fb"; }

.fa-square-share-nodes::before {
  content: "\f1e1"; }

.fa-share-alt-square::before {
  content: "\f1e1"; }

.fa-barcode::before {
  content: "\f02a"; }

.fa-plus-minus::before {
  content: "\e43c"; }

.fa-video::before {
  content: "\f03d"; }

.fa-video-camera::before {
  content: "\f03d"; }

.fa-graduation-cap::before {
  content: "\f19d"; }

.fa-mortar-board::before {
  content: "\f19d"; }

.fa-hand-holding-medical::before {
  content: "\e05c"; }

.fa-person-circle-check::before {
  content: "\e53e"; }

.fa-turn-up::before {
  content: "\f3bf"; }

.fa-level-up-alt::before {
  content: "\f3bf"; }

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }
:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }

@font-face{font-display: block;font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"); ;}

.fab,
.fa-brands {
  font-weight: 400; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-aws:before {
  content: "\f375"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-pixiv:before {
  content: "\e640"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-modx:before {
  content: "\f285"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-square-js:before {
  content: "\f3b9"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-unity:before {
  content: "\e049"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-vk:before {
  content: "\f189"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-square-reddit:before {
  content: "\f1a2"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-square-font-awesome:before {
  content: "\e5ad"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-brave:before {
  content: "\e63c"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-square-instagram:before {
  content: "\e055"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-square-hacker-news:before {
  content: "\f3af"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-edge:before {
  content: "\f282"; }

.fa-threads:before {
  content: "\e618"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-square-snapchat:before {
  content: "\f2ad"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-safari:before {
  content: "\f267"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-square-font-awesome-stroke:before {
  content: "\f35c"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-square-viadeo:before {
  content: "\f2aa"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-centos:before {
  content: "\f789"; }

.fa-adn:before {
  content: "\f170"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-opensuse:before {
  content: "\e62b"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-square-dribbble:before {
  content: "\f397"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-node:before {
  content: "\f419"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-debian:before {
  content: "\e60b"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-square-twitter:before {
  content: "\f081"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-golang:before {
  content: "\e40f"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-square-youtube:before {
  content: "\f431"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-rendact:before {
  content: "\f3e4"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-nfc-directional:before {
  content: "\e530"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-meta:before {
  content: "\e49b"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-square-letterboxd:before {
  content: "\e62e"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-hips:before {
  content: "\f452"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-discord:before {
  content: "\f392"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-shoelace:before {
  content: "\e60c"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-square-steam:before {
  content: "\f1b7"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-square-vimeo:before {
  content: "\f194"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-flag:before {
  content: "\f2b4"; }

.fa-font-awesome-logo-full:before {
  content: "\f2b4"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-apple:before {
  content: "\f179"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-padlet:before {
  content: "\e4a0"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-square-github:before {
  content: "\f092"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-neos:before {
  content: "\f612"; }

.fa-square-threads:before {
  content: "\e619"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-angular:before {
  content: "\f420"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envira:before {
  content: "\f299"; }

.fa-google-scholar:before {
  content: "\e63b"; }

.fa-square-gitlab:before {
  content: "\e5ae"; }

.fa-gitlab-square:before {
  content: "\e5ae"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-square-odnoklassniki:before {
  content: "\f264"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-sith:before {
  content: "\f512"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-hashnode:before {
  content: "\e499"; }

.fa-react:before {
  content: "\f41b"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-gg:before {
  content: "\f260"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-square-pinterest:before {
  content: "\f0d3"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-xing:before {
  content: "\f168"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-less:before {
  content: "\f41d"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-signal-messenger:before {
  content: "\e663"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-nfc-symbol:before {
  content: "\e531"; }

.fa-mintbit:before {
  content: "\e62f"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-brave-reverse:before {
  content: "\e63d"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-square-google-plus:before {
  content: "\f0d4"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-square-xing:before {
  content: "\f169"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-fly:before {
  content: "\f417"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-viber:before {
  content: "\f409"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-letterboxd:before {
  content: "\e62d"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-audible:before {
  content: "\f373"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-bilibili:before {
  content: "\e3d9"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-x-twitter:before {
  content: "\e61b"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-42-group:before {
  content: "\e080"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-square-pied-piper:before {
  content: "\e01e"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-square-facebook:before {
  content: "\f082"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-square-lastfm:before {
  content: "\f203"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-figma:before {
  content: "\f799"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-cmplid:before {
  content: "\e360"; }

.fa-upwork:before {
  content: "\e641"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-docker:before {
  content: "\f395"; }

.fa-screenpal:before {
  content: "\e570"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-wirsindhandwerk:before {
  content: "\e2d0"; }

.fa-wsh:before {
  content: "\e2d0"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-apper:before {
  content: "\f371"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ab"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-square-behance:before {
  content: "\f1b5"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-webflow:before {
  content: "\e65c"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-space-awesome:before {
  content: "\e5ac"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-square-git:before {
  content: "\f1d2"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-square-tumblr:before {
  content: "\f174"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-trello:before {
  content: "\f181"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-android:before {
  content: "\f17b"; }

.fa-bots:before {
  content: "\e340"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-uber:before {
  content: "\f402"; }

.fa-github:before {
  content: "\f09b"; }

.fa-php:before {
  content: "\f457"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-stubber:before {
  content: "\e5c7"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f2c6"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-odysee:before {
  content: "\e5c6"; }

.fa-square-whatsapp:before {
  content: "\f40c"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f198"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-usb:before {
  content: "\f287"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-square-x-twitter:before {
  content: "\e61a"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f23a"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-sitrox:before {
  content: "\e44a"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-strava:before {
  content: "\f428"; }

.fa-ember:before {
  content: "\f423"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-zhihu:before {
  content: "\f63f"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-pix:before {
  content: "\e43a"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }

@font-face{font-display: block;font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"); ;}

.far,
.fa-regular {
  font-weight: 400; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face{font-display: block;font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"); ;}

.fas,
.fa-solid {
  font-weight: 900; }
@font-face{font-display: block;font-family: 'Font Awesome 5 Brands';
  
  font-weight: 400;
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"); ;}

@font-face{font-display: block;font-family: 'Font Awesome 5 Free';
  
  font-weight: 900;
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"); ;}

@font-face{font-display: block;font-family: 'Font Awesome 5 Free';
  
  font-weight: 400;
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"); ;}
@font-face{font-display: block;font-family: 'FontAwesome';
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"); ;}

@font-face{font-display: block;font-family: 'FontAwesome';
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"); ;}

@font-face{font-display: block;font-family: 'FontAwesome';
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-regular-400.ttf") format("truetype");
  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; ;}

@font-face{font-display: block;font-family: 'FontAwesome';
  
  src: url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-v4compatibility.woff2") format("woff2"), url("https://kothrud.com/wp-content/themes/listingpro/assets/lib/fontawesome/webfonts/fa-v4compatibility.ttf") format("truetype");
  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; ;}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/main-f8b2e29de6.css */
@media all {
body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Quicksand","Quicksand Fallback", sans-serif;
  font-weight: 400;
}

p,
span,
input,
.post-detail-content,
li a,
.show a,
.lp-grid-box-description ul,
.chosen-container,
.accordion-title,
.lp-grid-box-bottom a,
time,
label,
#input-dropdown li a,
#input-dropdown span {
  font-family: "Open Sans","Open Sans Fallback", sans-serif;
}

footer {
  clear: both;
  float: none;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h1 span,
h2 span,
h3 span,
h4 span,
.question-icon,
.lp-search-description p,
.lp-banner-browse-txt,
.lp-home-categoires span,
.nearby-description p,
.testimonial-description p,
.lp-blog-grid-author a,
.lp-blog-grid-author span,
.lp-menu a,
.lp-join-now li a,
.lp-add-listing-btn li a,
li.grayscale-dollar > span,
.review-form form .form-group > label,
.post-price-row .post-rice,
.currency-signs li a,
#menu-footer a,
.footer-bottom-bar a,
.footer-bottom-bar p,
.footer-bottom-bar span,
.city-girds a,
.city-girds label,
.listing-second-view .features-listing > ul > li span,
.widget-box.reservation-form a.make-reservation,
a.open-modal,
.dashboard-content .postbox table.widefat .review-content > p > span {
  font-family: "Quicksand","Quicksand Fallback", sans-serif;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.lp-h1,
.lp-h2,
.lp-h3,
.lp-h4,
.lp-h5,
.lp-h6,
.lp-h1 a,
.lp-h2 a,
.lp-h3 a,
.lp-h4 a,
.lp-h5 a,
.lp-h6 a {
  font-weight: 700;
  color: #333;
}

a:focus,
input:focus {
  outline: none !important;
}

.vc_column_container,
.row_inner,
.row_inner_wrapper {
  padding: 0 !important;
}

.vc_row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.wpb_row,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.last_toggle_el_margin,
.wpb_button {
  margin-bottom: 0 !important;
}

.row_inner_wrapper.container {
  width: auto !important;
}

.post-slide .slick-dots {
  margin-bottom: 17px;
}

.success_box {
  display: none;
}

p {
  font-weight: 400;
  line-height: 26px;
}

.paragraph-form {
  line-height: 24px;
}

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

a:focus {
  outline: none;
}

input,
.lp-input {
  border: 0;
}

input:focus,
.form-control:focus {
  box-shadow: none;
  outline: none;
}

.form-group label {
  font-weight: 600;
  line-height: 26px;
}

blockquote,
.lp-blockquote {
  font-family: "Quicksand","Quicksand Fallback";
  line-height: 30px;
  border-left: 0;
  quotes: "\201C""\201D""\2018""\2019";
  position: relative;
  font-style: italic;
  padding-left: 50px;
  text-align: center;
}

blockquote:after,
.lp-blockquote:after {
  position: absolute;
  top: 23px;
  left: 0;
  content: open-quote;
}

img {
  max-width: 100%;
  height: auto;
}

button:focus {
  outline: none;
}

.lp-border {
  border: 1px solid #e3e3e3;
}

.lp-border-bottom {
  border-bottom: 1px solid #e3e3e3;
}

.lp-border-top {
  border-top: 1px solid #e3e3e3;
}

.lp-border-right {
  border-right: 1px solid #e3e3e3;
}

.lp-border-left {
  border-left: 1px solid #e3e3e3;
}

.lp-border-radius-0 {
  border-radius: 0;
}

.lp-border-radius-5 {
  border-radius: 5px;
}

.lp-border-radius-8 {
  border-radius: 8px;
}

.lp-primary-btn {
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  line-height: 24px;
  text-align: center;
  color: #fff;
  border: 0;
  padding: 15px 60px;
  border-radius: 5px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.file-upload-btn {
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  line-height: 24px;
  text-align: center;
  color: #fff;
  border: 0;
  padding: 12px 36px;
  border-radius: 5px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-secondary-big-btn {
  border-radius: 5px;
  color: #fff;
  font-family: "Quicksand","Quicksand Fallback";
  font-weight: 700;
  padding: 15px 78px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.lp-primary-btn {
  padding: 18px 60px;
}

.lp-primary-btn:hover {
  text-decoration: none;
}

.lp-secondary-btn {
  padding: 12px 30px 12px 30px;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  border-radius: 5px;
  color: #fff;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.margin-top-subtract-55 {
  margin-bottom: -55px;
}

.margin-top-subtract-25 {
  margin-top: -25px;
}

.marker-cluster {
  z-index: 9999 !important;
}

.padding-bottom-5 {
  padding-bottom: 5px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-bottom-44 {
  padding-bottom: 44px;
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-64 {
  padding-bottom: 64px;
}

.padding-bottom-67 {
  padding-bottom: 67px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-bottom-74 {
  padding-bottom: 74px;
}

.padding-bottom-84 {
  padding-bottom: 84px;
}

.padding-bottom-77 {
  padding-bottom: 77px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}

.padding-bottom-140 {
  padding-bottom: 140px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-160 {
  padding-bottom: 160px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-190 {
  padding-bottom: 190px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-250 {
  padding-bottom: 250px;
}

.padding-bottom-270 {
  padding-bottom: 270px;
}

.padding-top-5 {
  padding-top: 5px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

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

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-64 {
  padding-top: 64px;
}

.padding-top-67 {
  padding-top: 67px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-top-74 {
  padding-top: 74px;
}

.padding-top-84 {
  padding-top: 84px;
}

.padding-top-77 {
  padding-top: 77px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-top-130 {
  padding-top: 130px;
}

.padding-top-137 {
  padding-top: 137px;
}

.padding-top-140 {
  padding-top: 140px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-170 {
  padding-top: 170px;
}

.padding-top-180 {
  padding-top: 180px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-200 {
  padding-top: 200px;
}

.padding-top-220 {
  padding-top: 220px;
}

.padding-top-250 {
  padding-top: 250px;
}

.padding-top-270 {
  padding-top: 270px;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-bottom-120 {
  margin-bottom: 150px;
}

.margin-bottom-200 {
  margin-bottom: 200px;
}

.margin-bottom-250 {
  margin-bottom: 250px;
}

.margin-bottom-270 {
  margin-bottom: 270px;
}

.margin-left-0 {
  margin-left: 0;
}

.margin-left-5 {
  margin-left: 5px;
}

.margin-left-10 {
  margin-left: 10px !important;
}

.margin-left-15 {
  margin-left: 15px !important;
}

.margin-left-20 {
  margin-left: 20px !important;
}

.margin-left-25 {
  margin-left: 25px;
}

.margin-left-30 {
  margin-left: 30px;
}

.margin-left-35 {
  margin-left: 35px;
}

.margin-left-40 {
  margin-left: 40px !important;
}

.margin-left-50 {
  margin-left: 50px;
}

.margin-left-60 {
  margin-left: 60px;
}

.margin-left-70 {
  margin-left: 70px;
}

.margin-left-100 {
  margin-bottom: 100px;
}

.margin-left-150 {
  margin-left: 150px;
}

.margin-left-120 {
  margin-left: 150px;
}

.margin-left-200 {
  margin-left: 200px;
}

.margin-left-250 {
  margin-left: 250px;
}

.margin-left-270 {
  margin-left: 270px;
}

.margin-top-0 {
  margin-top: 0;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

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

.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

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

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-top-120 {
  margin-top: 100px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-170 {
  margin-top: 170px;
}

.margin-top-200 {
  margin-top: 200px;
}

.margin-top-250 {
  margin-top: 250px;
}

.margin-top-270 {
  margin-top: 270px;
}

.margin-right-15 {
  margin-right: 2%;
}

.padding-left-0 {
  padding-left: 0 !important;
}

.padding-left-10 {
  padding-left: 15px !important;
}

.padding-left-40 {
  padding-left: 40px;
}

.padding-right-40 {
  padding-right: 40px;
}

.padding-right-0 {
  padding-right: 0;
}

.padding-right-10 {
  padding-right: 15px !important;
}

.padding-right-left-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.padding-0 {
  padding: 0 !important;
}

.padding-40 {
  padding: 40px;
}

.margin-right-0 {
  margin-right: 0 !important;
}

.margin-right-30 {
  margin-right: 30px !important;
}

.margin-left-30 {
  margin-left: -30px !important;
}

.margin-top-subtract-35 {
  margin-top: -50px;
}

.font-bold {
  font-weight: 700;
}

.showbread {
  display: none;
}

.loader {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/loader.gif);
  width: 50px;
  height: 50px;
}

.content-loading {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/content-loader.gif) no-repeat center center;
  width: 100%;
  min-height: 300px;
}

.content-loading-listing-skeleton-view-list_view {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-list_view.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-grid_view {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-grid_view.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-grid_view2 {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-grid_view2.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-grid_view3 {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-grid_view3.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-grid_view_v2 {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-grid_view_v2.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-grid_view_v3 {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-grid_view_v3.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-list_view_v2 {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-list_view_v2.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.content-loading-listing-skeleton-view-lp-list-view-compact {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/skeletons/listing-skeleton-view-lp-list-view-compact.gif)
    no-repeat center top;
  width: 100%;
  min-height: 100vh;
}

.container-fullwidth {
  padding-left: 15px;
  padding-right: 15px;
}

.overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-icons {
  padding: 0;
  margin: 0;
  list-style: none;
}

.listing-app-view .lp-list-page-grid .clearfix {
  display: block !important;
}

.listing-app-view .post-stat .fa-star {
  color: #7f7f7f !important;
}

.listing-app-view .post-meta-info {
  background-color: #fff !important;
  border: 1px solid #dbe7ef;
  border-radius: 8px;
  margin: -40px auto 0;
  position: relative;
  width: 90%;
  overflow: hidden;
}

.listing-app-view .content-white-area .single-inner-container {
  padding-top: 0;
}

.listing-app-view .post-meta-info {
  padding-top: 27px !important;
  padding-bottom: 0 !important;
}

.listing-app-view .listing-second-view .post-meta-left-box h1 {
  margin-bottom: 5px;
  font-size: 22px !important;
  margin-top: 5px;
}

.listing-app-view .listing-second-view .post-meta-right-box .post-stat li {
  margin: 0;
  text-align: center;
  width: 32%;
  border-right: 1px solid #dedede !important;
  border-radius: 0;
  padding-top: 10px !important;
  padding-bottom: 20px !important;
  line-height: 0;
}

.listing-app-view
  .listing-second-view
  .post-meta-right-box
  .post-stat
  li:last-child {
  border-right: 0 !important;
}

.listing-app-view2 .post-meta-right-box .post-stat {
  width: 100%;
  border-top: 1px solid #dedede;
  margin-top: 15px;
}

.listing-app-view2 .post-meta-right-box .post-stat > li > a i {
  margin-right: 0 !important;
  display: block;
  margin-bottom: 10px;
}

.listing-app-view .nav-tabs > li {
  width: auto;
}

.listing-app-view .tab-content {
  background-color: #eff3f6 !important;
}

.listing-app-view .nav-tabs > li > a:hover:after,
.listing-app-view .nav-tabs > li.active > a:after,
.listing-app-view .nav-tabs > li.active > a:hover:after,
.listing-app-view .nav-tabs > li.active > a:focus:after {
  border-bottom-color: #eff3f6 !important;
}

.listing-app-view .nav-tabs > li > a:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom-width: 10px;
}

.listing-app-view .nav-tabs > li.active > a {
  background-color: transparent !important;
  color: #363f48;
}

.listing-app-view .listing-app-view2 .nav-tabs > li > a:after {
  bottom: -2px !important;
}

.listing-app-view .nav-tabs > li > a::after {
  border-bottom-color: transparent;
}

.listing-app-view .tab-content .post-detail-content {
  border: none;
}

.listing-app-view .open-hours {
  border-left: none;
  border-right: none;
  border-radius: 0;
  border: none;
  padding-bottom: 0;
  width: auto;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 5px;
  padding-right: 5px;
}

.listing-app-view .open-hours ul li span {
  float: none;
  margin-left: 2px;
}

.listing-app-view .open-hours ul.hidding-timings li span {
  float: right;
}

.listing-app-view .widget-box.app-view-timings {
  margin-bottom: 0 !important;
  background-color: #eff3f6;
}

.listing-app-view .listing-second-view .listing-price.widget-box {
  width: 92%;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 12px;
  margin-bottom: 20px !important;
  padding: 0 10px;
  border: 0;
}

.listing-app-view .listing-second-view .map-area {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.listing-app-view .review-form,
.listing-app-view .reviews-section {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 30px;
}

.listing-app-view .tab-content iframe {
  max-width: 90%;
  height: auto;
  margin-left: 5%;
}

.listing-app-view2 .tab-content iframe {
  height: 225px;
}

.listing-app-view .review-thumbnail {
  float: left;
  margin-right: 10px;
}

.listing-app-view .review-post figcaption {
  text-align: left;
  width: -webkit-calc(100% - 66px);
  width: -moz-calc(100% - 66px);
  width: calc(100% - 66px);
  float: right;
}

.listing-app-view .review-post figcaption > h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.listing-app-view .review-post time {
  margin-bottom: 4px;
  display: block;
  font-size: 12px;
}

.listing-app-view .review-post .bottom-section form > span {
  display: block;
  width: 100%;
  text-align: left;
}

.listing-app-view .review-post .bottom-section ul {
  float: none;
  display: block;
  text-align: center;
}

.listing-app-view .review-post .bottom-section ul li {
  float: none;
}

.listing-app-view .review-post .bottom-section ul li a {
  padding: 5px 7px !important;
  margin-right: 5px;
}

.listing-app-view .bottom-section ul li a {
  height: 30px !important;
  line-height: 20px !important;
}

.footer-upper-bar-for-app {
  padding: 0;
}

.footer-upper-bar-for-app a {
  color: #fff;
  padding: 15px 0;
  display: inline-block;
}

.footer-upper-bar-for-app .col-sm-4 {
  border-right: 1px solid #fff;
  padding: 0;
}

.footer-upper-bar-for-app .col-sm-4:last-child {
  border-right: 0;
}

.footer-upper-bar-for-app a img {
  width: 23px;
}

.footer-upper-bar-for-app > a {
  border-right: 1px solid #fff;
}

.footer-upper-bar-for-app a i {
  margin-right: 4px;
}

.listing-app-view .review-form {
  margin-bottom: 0 !important;
}

.get-directions span.phone-number {
  background-color: #7f7f7f;
  color: #fff;
  padding: 0 5px;
}

.listing-app-view .slick-dots {
  bottom: 50px;
}

.listing-app-view .slick-dots li button {
  height: 8px;
  width: 8px;
}

.listing-app-view .slick-dots li {
  margin: 0 4px;
  height: 8px;
  width: 8px;
}

.listing-app-view a.show-all-timings {
  background-color: transparent;
  border: medium none;
  position: relative !important;
  color: #000;
  font-size: 12px;
  float: right !important;
  text-align: center;
  width: auto;
  bottom: 0;
  right: 0;
  left: auto;
  transform: none !important;
  line-height: 38px;
  padding-right: 0;
}

.app-view-header .lp-logo-container {
  float: left;
}

.app-view-header .lp-menu-bar .mobile-nav-icon {
  position: static;
  margin-top: 7px;
}

.app-view-header .lp-logo {
  float: left;
  text-align: left;
  margin-left: 10px;
}

.open-filter,
.close-filter,
.home-filter-close,
.home-filter-open {
  color: #fff;
  font-size: 20px;
  margin: 10px;
  margin-right: 3px;
  display: inline-block;
}

.open-filter:hover,
.close-filter:hover,
.home-filter-close:hover,
.home-filter-open:hover {
  color: #fff;
}

.app-view-header .lp-search-toggle .close-filter,
.app-view-header .lp-search-toggle .home-filter-open {
  display: none;
}

.app-view-header .lp-search-toggle.app-view-filter-open .close-filter {
  display: inline-block;
}

.app-view-header .lp-search-toggle.app-view-filter-open .open-filter {
  display: none;
}

.app-view-header .lp-search-toggle.app-view-filter-close .home-filter-open {
  display: inline-block;
}

.app-view-header .lp-search-toggle.app-view-filter-close .home-filter-close {
  display: none;
}

.listing-app-view2 .col-xs-12,
.listing-app-view2 .col-sm-12 {
  width: 100%;
}

.listing-app-view .rating-section {
  padding-bottom: 15px !important;
  padding-top: 0 !important;
}

.listing-app-view .open-hours ul {
  display: inline-block;
  width: auto;
}

.make-reservation-outer {
  display: inline-block;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.listing-app-view .listing-price.widget-box {
  margin: 0 20px 30px;
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: calc(100% - 40px);
}

.app-view #accordion h5 {
  border: 0 !important;
}

.listing-app-view .ui-accordion-content {
  border: 0 !important;
}

.listing-app-view .app-view .post-detail-content {
  padding: 30px 20px 23px;
}

.listing-app-view #listing-video {
  padding: 37px 20px;
}

.listing-app-view .app-view .nav-tabs > li > a:hover,
.listing-app-view .app-view .nav-tabs > li > a:focus,
.listing-app-view .app-view .nav-tabs > li > a {
  background-color: transparent;
  color: #fff;
}

.listing-app-view .app-view .nav-tabs {
  background: #363f48;
}

.listing-app-view .app-view .extra-fields {
  background: #eff3f6 none repeat scroll 0 0;
  border: 0;
  border-radius: 0;
  padding: 30px 20px 50px;
}

.listing-app-view
  .app-view
  #listing-des
  .features-listing.extra-fields
  a.show-all-timings {
  bottom: 18px;
  display: none;
}

.listing-app-view .app-view {
  border-top: 1px solid #dedede;
}

.review-post figcaption > h3 {
  margin-top: 0;
}

.listing-app-view .open-hours ul li a {
  margin-left: 6px;
}

.listing-app-view2
  .listing-second-view
  .listing-price
  .price-area
  .claim-area
  .phone-icon {
  display: inline !important;
}

.listing-app-view .Opened {
  float: right;
}

.app-view-header-container {
  padding: 0 30px;
}

section.listing-app-view
  .post-meta-info
  .post-meta-left-box
  .breadcrumbs
  li:last-child {
  display: none;
}

section.listing-app-view
  .post-meta-info
  .post-meta-left-box
  .breadcrumbs
  li:nth-child(2) {
  margin-right: 0;
}

.listing-app-view .post-meta-left-box > p {
  margin-bottom: 10px !important;
}

.listing-app-view .rating-section > .rate {
  height: 24px !important;
  line-height: 24px !important;
  width: 48px !important;
  border-radius: 2px !important;
  font-size: 12px !important;
  padding: 0 !important;
}

.listing-app-view2 .post-meta-right-box .post-stat li {
  border: 0 solid #dedede !important;
  background-color: #fff !important;
  padding: 0 !important;
  text-align: center !important;
}

.listing-app-view2 .post-meta-right-box .post-stat > li > a,
.listing-app-view2 .post-meta-right-box .post-stat > li > a i,
.listing-app-view2 .post-meta-right-box .post-stat > li > a span {
  color: #333 !important;
}

.listing-app-view2 .add-to-fav .email-icon {
  margin-right: 0 !important;
}

.listing-app-view2 .rating-section > span {
  margin-left: 0 !important;
  margin-top: 4px;
}

.review-secondary-btn {
  width: 243px !important;
  color: #fff !important;
  font-weight: 400 !important;
  margin-bottom: 27px;
  line-height: 20px;
}

.review-secondary-btn i {
  color: #fff !important;
}

.listing-app-view2 .list-st-img li {
  border-bottom: 1px solid #eee !important;
  margin-bottom: 0;
  padding-bottom: 6px;
}

.listing-app-view2 .widget-social .list-st-img li {
  border-bottom: 0 solid #eee !important;
  margin-top: 6px;
}

.listing-app-view2 .map-area .listing-detail-infos {
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

.listing-app-view2 .review-form {
  margin-top: 27px !important;
}

.listing-app-view .list_view.lp-grid-box-contianer1 .lp-grid-box-description {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.listing-app-view2 .post-meta-right-box {
  width: 100%;
}

.listing-app-view2 .post-meta-right-box .post-stat > li > a {
  float: none !important;
  margin-left: 0 !important;
  padding: 0 !important;
}

.listing-app-view
  .listing-app-view2
  .reviews-section
  article.review-post
  .review-thumbnail {
  width: 54px;
  height: 54px;
}

.listing-second-view .reviews-section span.rate {
  font-size: 12px;
  border-radius: 3px;
  color: #fff;
  height: 20px !important;
  line-height: 20px !important;
  margin-top: 0 !important;
  width: 35px;
}

.grid_view2 span.rate {
  border-radius: 3px;
  line-height: 13px !important;
  height: 18px !important;
  padding: 3px 8px !important;
  font-size: 11px !important;
  margin-top: 1px !important;
}

.listing-app-view .list_view span.rate {
  border-radius: 2px;
  line-height: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  font-size: 11px !important;
  margin-top: 1px !important;
  width: 27px !important;
  text-align: center;
}

.listing-app-view .listing-app-view2 .bottom-section {
  margin-top: 0;
}

.listing-app-view .listing-app-view2 .review-form .lp-review-btn {
  padding: 4px 10px;
  font-size: 14px;
}

.listing-app-view .listing-app-view2 .review-form #reply-title {
  font-size: 14px;
  line-height: 24px;
}

.listing-app-view .listing-app-view2 .review-form {
  padding: 9px 15px;
}

.listing-app-view-bar {
  background-color: #363f48;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 22px;
  position: relative;
}

.listing-app-view-bar .form-group {
  float: left;
  margin-right: 5px;
  margin-bottom: 0;
  line-height: 20px;
}

.listing-app-view .leaflet-control-container .leaflet-top {
  top: 125px;
}

.listing-app-view-bar .right-icons a.map-view-icon {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  border: solid 1px #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 34px;
  text-align: center;
  padding: 5px 0;
  margin-left: 6px;
  float: right;
  position: relative;
}

.listing-app-view-bar .search-filter a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  padding: 4px 0;
}

.listing-app-view .lp-grid-box {
  padding: 10px 11px !important;
  margin-bottom: 5px !important;
}

.listing-app-view .lp-grid-box-thumb {
  width: 30%;
  float: left;
}

.listing-app-view .list_view .lp-grid-desc-container {
  width: calc(100% - 70px);
  display: inline-block !important;
  vertical-align: middle !important;
  float: none !important;
  padding: 0;
  padding-left: 5px !important;
}

.listing-app-view .lp-grid-box-contianer1 {
  margin-bottom: 15px;
}

.listing-app-view .lp-grid-box-contianer1.list_view .lp-grid-box-description {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.listing-app-view .lp-grid-box-left.pull-left > ul > li {
  padding-left: 5px;
  padding-right: 5px;
}

.listing-app-view
  .listing-with-map
  .list_view.lp-grid-box-contianer1
  .lp-grid-box-description
  h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.listing-app-view .list_view .lp-grid-box-left.pull-left > ul {
  margin-bottom: 0;
}

.listing-app-view .list_view .lp-grid-box-thumb img {
  border-radius: 5px;
}

.listing-app-view .lp-grid-box-left.pull-left > ul > li:first-of-type {
  font-size: 14px !important;
}

.listing-app-view .grid_view.lp-grid-box-contianer {
  float: left;
}

.listing-app-view .content-grids-wraps .grid_view.lp-grid-box-contianer {
  width: 50% !important;
  padding: 0 5px !important;
}

.listing-app-view .map-view-list-container2 .grid_view.lp-grid-box-contianer {
  padding: 0 5px;
}

.listing-app-view .grid_view.lp-grid-box-contianer .lp-grid-box-thumb,
.listing-app-view .grid_view.lp-grid-box-contianer .lp-grid-desc-container {
  width: 100%;
  float: none;
}

.listing-app-view .grid_view.lp-grid-box-contianer .lp-grid-box {
  padding: 0 !important;
  min-height: unset;
  border-radius: 8px;
}

.listing-app-view .grid_view.lp-grid-box-contianer .lp-grid-box-description {
  padding: 0;
}

.listing-app-view .grid_view.lp-grid-box-contianer .lp-grid-box {
  background-color: transparent !important;
}

.listing-app-view
  .grid_view.lp-grid-box-contianer
  .lp-grid-box-description
  h4.lp-h4
  > a {
  font-size: 14px;
  line-height: 20px;
}

.listing-app-view
  .grid_view.lp-grid-box-contianer
  .lp-grid-box-description
  h4.lp-h4 {
  margin-bottom: 0;
}

.listing-app-view .grid_view.lp-grid-box-contianer .lp-grid-box-left.pull-left {
  width: 100%;
  padding: 0;
}

.listing-app-view .grid_view.lp-grid-box-contianer .grid-view-hide {
  display: none;
}

.listing-app-view .map-view-list-container {
  position: fixed;
  z-index: 10;
  bottom: 15px;
  display: none;
  width: 100%;
  height: 80px;
}

.listing-app-view .map-view-list-container .lp-grid-box-contianer {
  margin-left: 5px;
  margin-right: 5px;
}

.listing-app-view .map-view-list-container .lp-grid-box {
  padding: 10px !important;
}

.listing-app-view .map-view-list-container .lp-grid-box-description h4 a {
  font-size: 14px;
  line-height: 20px;
}

.listing-app-view .map-view-list-container .lp-grid-box-left ul li {
  margin-top: 5px !important;
}

.listing-app-view .listing-with-map {
  padding-bottom: 0;
}

.listing-app-view .footer-app-menu {
  background-color: #f0f0f0;
  padding: 0 10px;
  text-align: center;
}

.listing-app-view .footer-app-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
}

.listing-app-view .footer-app-menu ul li {
  display: inline-block;
  margin-right: 25px;
  list-style: none;
  border-bottom: 1px solid transparent !important;
}

.listing-app-view .footer-app-menu ul li:last-child {
  margin-right: 0;
}

.listing-app-view .footer-app-menu ul li:before {
  margin-right: 10px;
}

.listing-app-view .footer-app-menu ul li a {
  color: #7f7f7f;
  display: block;
  padding: 15px 0;
  font-size: 12px;
}

.listing-app-view .footer-app-menu ul li a i {
  margin-right: 0;
  display: inline-block;
  width: 100%;
  margin-bottom: 4px;
  font-size: 18px;
}

.listing-app-view .footer-app-menu ul li a:hover {
  color: #41a6df;
}

.listing-app-view .footer-app-menu ul li:hover {
  border-bottom: 1px solid;
}

.listing-app-view .admin-top-section .user-details .user-portfolio {
  background-color: #3e2e2e;
}

.listing-app-view .admin-top-section-bar {
  background-color: #2e313e;
}

.listing-app-view .admin-top-section-bar .admin-menue-icon {
  float: left;
  color: #fff;
  padding-left: 20px;
}

.listing-app-view .admin-top-section-bar .admin-menue-icon button {
  float: none;
}

.listing-app-view .admin-top-section-bar .lp-contact-support {
  float: right;
  color: #fff;
  padding-right: 20px;
  text-align: right;
  margin-top: 0;
}

.listing-app-view .admin-top-section-bar .lp-contact-support a {
  padding: 0 9px;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-top: 12px;
  font-weight: 400;
  border-radius: 3px !important;
}

.listing-app-view .admin-top-section-bar .lp-contact-support a,
.listing-app-view .admin-top-section-bar .lp-contact-support i {
  border-color: #fff;
  color: #fff;
}

.listing-app-view .dashboard-content {
  background-color: #f6f6f6;
  padding-bottom: 150px;
  min-height: 860px;
}

.listing-app-view .dashboard-content .dashboard-panel {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
}

.listing-app-view .dashboard-content-app-view .panel-dash-views {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.listing-app-view .dashboard-content-app-view .panel-dash-views .padding-zero {
  padding: 0;
}

.listing-app-view .dashboard-content-app-view .panel-dash-views .count-box {
  border-radius: 0;
  text-align: center;
}

.listing-app-view
  .dashboard-content-app-view
  .panel-dash-views
  .count-box
  p.views {
  font-weight: 400;
  margin-bottom: 0;
  color: #333;
  line-height: 16px;
}

.listing-app-view .dashboard-content-app-view .panel-dash-views .count-box i {
  margin-right: 3px;
}

.listing-app-view .dashboard-content-app-view .notices-area > .notice.info,
.listing-app-view .dashboard-content-app-view .notices-area > .notice.success,
.listing-app-view .dashboard-content-app-view .notices-area > .notice.warning,
.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice.info
  .notice-icon,
.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice.success
  .notice-icon,
.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice.warning
  .notice-icon {
  background-color: #fff;
}

.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice
  .notice-text {
  padding-left: 50px;
}

.listing-app-view
  .dashboard-content-app-view
  .notices-area
  > .notice
  > .notice-icon {
  width: 50px;
  border-radius: 5px;
}

.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice.warning
  .notice-icon
  i {
  color: #fdf9e1;
}

.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice.success
  .notice-icon
  i {
  color: #dbf1d6;
}

.listing-app-view
  .dashboard-content-app-view
  .notices-area
  .notice.info
  .notice-icon
  i {
  color: #00a9e5;
}

.listing-app-view .dashboard-content-app-view .user-description-box {
  width: 100%;
  margin-bottom: 20px;
}

.listing-app-view
  .dashboard-content-app-view
  .user-description-box
  .description-box {
  margin-right: 5px;
  width: calc(50% - 5px);
  border-radius: 3px;
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 5px;
}

.description-box-pending {
  background-color: #a4a4a4;
}

.description-box-publish {
  background-color: #7cc752;
}

.description-box-expire {
  background-color: #ff6c6c;
}

.description-box-campine {
  background-color: #faab2e;
}

.listing-app-view
  .dashboard-content-app-view
  .user-description-box
  .description-box
  p {
  color: #fff;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal !important;
  margin: 0;
  line-height: 18px;
}

.listing-app-view .dashboard-content-app-view .pull-left.left-panel.tbl-cell {
  width: 220px !important;
}

.listing-app-view
  .dashboard-content-app-view
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > a,
.listing-app-view
  .dashboard-content-app-view
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > a
  > i {
  text-indent: 0;
  position: relative;
}

.listing-app-view .dashboard-content-app-view {
  position: relative;
}

.listing-app-view .dashboard-content-app-view .app-view-dashboard-menu {
  position: absolute;
  height: 100%;
  background-color: #363f48;
  z-index: 2;
  margin-left: -220px;
}

.listing-app-view .admin-top-section-bar .app-dashboard-menu-toggle {
  padding: 0;
  font-size: 24px;
}

.listing-app-view .app-view-dashboard-menu ul > li > a:after {
  position: absolute;
  right: 0;
  border: 8px solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #f1f1f1;
  top: 50%;
  margin-top: -8px;
  display: none;
}

.listing-app-view .app-view-dashboard-menu ul > li > a {
  border-left: none !important;
}

.listing-app-view
  .dashboard-content-app-view
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > a.active-dash-menu,
.listing-app-view
  .dashboard-content-app-view
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li.dropdown.opened
  > a {
  background-color: #42a7df !important;
}

.listing-app-view .app-view-dashboard-menu ul > li > a.active-dash-menu:after,
.listing-app-view
  .dashboard-content-app-view
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li.dropdown.opened
  > a:after {
  display: block;
}

.listing-app-view
  .app-view-dashboard-menu
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > ul
  > li
  > a {
  font-size: 13px !important;
}

.listing-app-view
  .app-view-dashboard-menu
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > ul
  > li
  > a
  i {
  display: none;
}

.listing-app-view
  .app-view-dashboard-menu
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > ul
  > li
  > a:before {
  margin-right: 5px;
}

.listing-app-view
  .app-view-dashboard-menu
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > ul
  > li
  > a
  > span {
  margin-right: 15px;
}

.listing-app-view .admin-top-section {
  display: block !important;
}

.listing-app-view .admin-top-section .user-portfolio .user-thumb {
  width: 66px !important;
  border: 1px solid #fff;
  height: 66px;
}

.listing-app-view .admin-top-section h5.user-name {
  margin-left: 0 !important;
  margin-top: 10px !important;
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

.listing-app-view .admin-top-section .user-portfolio .user-text p {
  display: block !important;
  color: #fff !important;
  font-size: 12px !important;
  text-transform: capitalize;
}

.listing-app-view .admin-top-section .user-portfolio .user-text p:last-child {
  display: none !important;
}

.listing-app-view .admin-top-section .user-portfolio {
  padding-top: 22px !important;
  padding-bottom: 20px !important;
  padding-left: 0;
  padding-right: 0;
}

.listing-app-view
  .admin-top-section
  .user-portfolio
  .user-text
  .user-name
  > span {
  display: none !important;
}

.listing-app-view .admin-top-section .navbar-toggle {
  display: block !important;
}

.listing-app-view .panel-dash-views .count-box {
  box-shadow: none !important;
}

.listing-app-view .dashboard-content-app-view .panel-dash-views .count-box {
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.listing-app-view
  .dashboard-content-app-view
  .panel-dash-views
  .count-box
  p:last-child {
  margin-bottom: 0;
}

.listing-app-view
  .dashboard-content-app-view
  .panel-dash-views
  .padding-zero:last-child
  .count-box {
  border: 0 !important;
}

.listing-app-view .lp-dashboard-panel-outer .notices-area .notice-text p {
  display: none !important;
}

.listing-app-view .lp-dashboard-panel-outer .notices-area .notice-text h2 {
  font-size: 11px !important;
  margin: 0 !important;
}

.listing-app-view .lp-dashboard-panel-outer .notices-area {
  padding: 20px 0 0 !important;
}

.listing-app-view .dashboard-content-app-view .notices-area > .notice {
  margin-bottom: 20px !important;
}

.listing-app-view .panel-recent-activity {
  background: #f9f9f9 !important;
  padding: 20px;
}

.listing-app-view .panel-recent-activity ul li span > time {
  position: static !important;
  margin-top: 6px !important;
}

.listing-app-view .panel-recent-activity > ul > li {
  padding: 15px 5px 10px !important;
}

.listing-app-view .dashboard-content .tab-pane.fade,
.listing-app-view .user-recent-listings-innerfade {
  padding: 0 !important;
}

.listing-app-view .dashboard-content .tab-header {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 20px !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view
  .lp-list-view-inner-contianer {
  padding: 20px 20px !important;
  margin-bottom: 10px !important;
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
  padding-bottom: 0 !important;
}

.listing-app-view
  .dashboard-content
  .lp-saved-listing-tab
  .lp-list-view
  .lp-list-view-inner-contianer {
  padding-bottom: 50px !important;
}

.listing-app-view .dashboard-content .lp-list-view-inner-contianer .col-xs-12 {
  padding: 0 !important;
  vertical-align: top;
  display: inline-block;
  width: calc(100% - 100px);
}

.listing-app-view
  .dashboard-content-app-view
  .lp-listing-pending-tab
  .lp-list-view-inner-contianer
  .col-xs-12 {
  width: calc(100% - 100px) !important;
}

.listing-app-view .dashboard-content .lp-list-view-inner-contianer .col-md-4 {
  width: 100% !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view-inner-contianer
  .lp-list-view-content.lp-list-cnt {
  padding-top: 0 !important;
}

.listing-app-view .dashboard-content .lp-list-view-content-bottom {
  float: left !important;
  margin-bottom: 20px !important;
}

.listing-app-view
  .dashboard-content
  .lp-rigt-icons.lp-list-view-content-bottom
  .lp-list-view-edit.list-style-none {
  float: left !important;
  padding-top: 0 !important;
  width: auto !important;
  display: block !important;
}

.listing-app-view
  .dashboard-content
  .user-recent-listings-innerfade
  .lp-list-view-content-bottom
  .edit-list {
  margin-right: 15px !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view-content-bottom
  .list-style-none.list-st-img {
  float: left !important;
  margin-left: 0 !important;
  width: auto !important;
  display: block !important;
}

.listing-app-view
  .lp-rigt-icons.lp-list-view-content-bottom
  .list-style-none.list-st-img
  > li {
  margin-left: 0 !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view-content-bottom
  .lp-list-view-edit {
  text-align: left !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view-content-bottom
  ul.lp-list-view-edit.list-style-none.aliceblue
  > li
  > a {
  padding: 8px 8px !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view
  .lp-list-view-inner-contianer
  > .col-md-1 {
  width: 78px !important;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.listing-app-view
  .dashboard-content-app-view
  .lp-listing-pending-tab
  .lp-list-view
  .lp-list-view-inner-contianer
  > .col-md-1 {
  width: 78px !important;
}

.listing-app-view
  .dashboard-content
  .lp-invoice-table
  .invoice-section
  table
  tr
  td {
  width: 100% !important;
}

.page-template-template-dashboard.listing-app-view .aliceblue {
  background-color: #f6f6f6;
}

.listing-app-view .dashboard-content .invoice-section {
  margin-left: 20px;
  width: calc(100% - 40px);
}

.listing-app-view .dashboard-content .invoice-section .top-section > h3 {
  display: inline-block;
  width: 100%;
}

.listing-app-view
  .dashboard-content
  .invoice-section
  .top-section
  a.btn.btn-first-hover.pull-right.showme {
  float: none !important;
}

.listing-app-view .dashboard-content .resurva-booking {
  margin-left: 20px;
  width: calc(100% - 25px);
}

.listing-app-view
  .dashboard-content
  .resurva-booking
  .lp-list-view-inner-contianer {
  padding: 10px 0 !important;
  margin-bottom: 10px !important;
  width: 100% !important;
  margin: 0 !important;
}

.listing-app-view
  .dashboard-content
  .lp-list-view-inner-contianer
  #restaurant-menu
  .col-xs-12 {
  width: 100% !important;
  padding: 0 20px !important;
}

.listing-app-view .dashboard-content .row.lp-list-page-list {
  min-height: 600px;
}

.dashboard-content-app-view
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li
  > ul
  > li
  > a {
  line-height: 36px !important;
}

.listing-app-view .lp-grid-box-description h4.lp-h4 > a {
  font-size: 14px;
  line-height: 19px;
}

.listing-app-view .list_view .lp-grid-box-description h4.lp-h4 {
  line-height: 0;
  margin: 0;
}

.listing-app-view .listingpro-list-thumb img {
  height: auto;
}

.listing-app-view .list_view .lp-grid-box-left.pull-left > ul > li {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  line-height: 20px;
}

.listing-app-view .list_view .lp-grid-box-left.pull-left > ul > li a,
.listing-app-view .list_view .lp-grid-box-left.pull-left > ul > li span {
  font-size: 12px;
}

.listing-app-view .grid_view .lp-grid-box-left.pull-left > ul > li a,
.listing-app-view .grid_view .lp-grid-box-left.pull-left > ul > li span {
  font-size: 12px;
}

.listing-app-view .list_view .lp-grid-box-left.pull-left > ul > li:last-child {
  border-left: 0;
  padding-left: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.listing-app-view .list_view .lp-grid-box-thumb {
  width: 63px !important;
  height: 63px !important;
  overflow: hidden !important;
  display: inline-block !important;
  vertical-align: middle !important;
  float: none !important;
}

.listing-app-view .list_view .lp-grid-box-left.pull-left > ul > li:last-child {
  display: inline-block;
  float: left;
  text-align: left;
  width: 100%;
}

.listing-app-view .app-view-filters .close {
  opacity: 1;
  float: none;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border: 1px solid #333;
  padding: 6px 20px;
  border-radius: 3px;
  display: inline-block;
  text-transform: uppercase;
}

.listing-app-view .app-view-filters .close:hover {
  color: #fff;
}

.listing-app-view .app-view-filters .md-content {
  width: 100%;
}

.listing-app-view .app-view-filters .md-content .form-inline {
  border: none;
  border: none;
  box-shadow: none;
  padding: 0;
  position: static;
  float: none;
}

.listing-app-view .app-view-filters .md-content .search-row {
  margin-top: 10px;
}

.listing-app-view .app-view-filters .md-close i {
  top: 5px;
  right: 5px;
}

.listing-app-view .app-view-locations {
  text-align: left;
}

.listing-app-view .app-view-locations .app-view-loction-box {
  padding-left: 3px;
  padding-right: 3px;
  border-radius: 0;
  margin-bottom: 6px;
}

.listing-app-view .app-view-locations .app-view-loction-box .city-girds {
  margin-bottom: 0;
}

.listing-app-view .app-view-locations .app-view-loction-box .city-thumb {
  border-radius: 0;
  margin-bottom: 10px;
}

.listing-app-view .app-view-locations .app-view-loction-box .city-title {
  background: none;
  position: static;
}

.listing-app-view .app-view-locations .app-view-loction-box .city-title label {
  font-size: 12px;
}

.listing-app-view .app-view-locations .app-view-loction-box .city-title h3 {
  font-size: 14px;
}

.listing-app-view .app-view-locations .app-view-loction-box .city-title a,
.listing-app-view .app-view-locations .app-view-loction-box .city-title label {
  color: #333;
  line-height: 15px;
}

.listing-app-view .lp-section-title-container h1,
.listing-app-view .lp-section-title-container.text-center h1 {
  text-align: left !important;
  font-size: 22px;
  margin-bottom: 0;
  margin-top: 25px;
}

.listing-app-view .lp-section-content .lp-section-title-container {
  padding-top: 0 !important;
}

.listing-app-view .lp-section-content-container {
  padding-bottom: 0 !important;
}

.listing-app-view.home .pos-relative .lp-home-banner-contianer {
  height: 220px;
}

.listing-app-view.home .lp_auto_loc_container h1 {
  font-size: 26px !important;
  margin-top: 0;
  margin-bottom: 0;
}

.listing-app-view.home .lp_auto_loc_container .lp-banner-browse-txt {
  font-size: 14px;
  margin-bottom: 0;
}

.listing-app-view.home .app-view-search-bar {
  background: none;
  margin-top: 0;
}

.listing-app-view.home .lp-home-banner-contianer {
  height: 250px;
}

#app-view-login-popup .siginincontainer,
#app-view-login-popup .siginupcontainer,
#app-view-login-popup .forgetpasswordcontainer {
  top: 80px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: static !important;
}

#app-view-login-popup .pop-form-bottom {
  text-align: center;
}

#app-view-login-popup .login-form-pop-tabs {
  position: relative !important;
  width: 100%;
  left: 0;
  color: #fff;
  background-color: #41a6df;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: left;
  overflow: hidden;
  z-index: 99999 !important;
}

.listing-app-view .siginincontainer,
.listing-app-view .siginupcontainer,
.listing-app-view .forgetpasswordcontainer {
  top: 60px !important;
}

#app-view-login-popup .login-form-pop-tabs ul {
  padding: 0;
  margin: 0;
}

#app-view-login-popup.login-form-pop-tabs ul li {
  float: left;
  display: inline-flex;
}

#app-view-login-popup .login-form-pop-tabs a {
  color: #fff;
  font-size: 15px;
  padding: 15px;
}

#app-view-login-popup .login-form-pop-tabs a.md-close {
  display: block;
  position: absolute;
  right: 15px;
  top: 25px;
}

.listing-app-view .social-login li {
  display: block;
  margin-top: 10px;
}

.listing-app-view .social-login li a {
  width: 100%;
  float: none;
  padding-top: 8px;
  padding-bottom: 8px;
}

.listing-app-view .siginincontainer {
  padding: 10px 20px !important;
}

.listing-app-view .lp-filter-wrap-app span {
  float: left;
  line-height: 26px;
}

.listing-app-view .app-view-filters .listing-style-1 {
  background: #fff;
  border-radius: 5px;
}

.listing-app-view .app-view-filters .close {
  opacity: 1;
}

.listing-app-view .app-view-filters .search-row .form-inline {
  padding: 0 !important;
}

.listing-app-view .app-view-filters .modal-body {
  padding: 10px 25px;
}

.listing-app-view .app-view-filters .lp-filter-wrap-app {
  padding: 8px 0;
  float: left;
  width: 100%;
  padding-bottom: 2px;
  border-bottom: 1px solid #e3e3e3;
}

.listing-app-view .app-view-filters .switch {
  margin-bottom: 0;
}

.listing-app-view .app-view-filters .lp-features-filter {
  border-bottom: 0 !important;
}

.listing-app-view .app-view-filters .form-group:nth-child(2) ul li {
  margin-right: 0 !important;
}

.listing-app-view .app-view-filters p {
  margin-bottom: 5px;
  font-size: 15px;
}

.listing-app-view
  .app-view-filters
  .listing-style-1
  .lp-filter-inner
  .more-filter {
  margin-top: 0;
}

.upper-case {
  text-transform: uppercase;
}

.login-form-pop-tabs .active {
  background: #fff;
  color: #333 !important;
}

.login-form-popup-outer .social-login li button,
.login-form-popup-outer .social-login li a {
  border-radius: 0 !important;
}

.login-form-popup-outer .social-login li button span,
.login-form-popup-outer .social-login li a span {
  font-size: 12px;
  font-weight: 400;
  margin-left: 2px;
  text-transform: capitalize;
}

.login-form-popup-outer .social-login .facebook:hover {
  background-color: #3b5998;
  color: #fff;
}

.login-form-popup-outer .social-login .facebook:hover span {
  color: #fff;
}

.login-form-popup-outer .social-login .facebook {
  color: #fff;
  background: #3b5998;
  border: 0;
}

.login-form-popup-outer .social-login .facebook span {
  color: #fff;
}

.login-form-popup-outer .social-login .twitter:hover {
  background-color: #55acee;
  color: #fff;
}

.login-form-popup-outer .social-login .twitter:hover span {
  color: #fff;
}

.login-form-popup-outer .social-login .twitter {
  border: 0;
  color: #fff;
  background: #55acee;
}

.login-form-popup-outer .social-login .twitter span {
  color: #fff;
}

.login-form-popup-outer .social-login .google:hover {
  background-color: #d62d20;
  color: #fff;
}

.login-form-popup-outer .social-login .google:hover span {
  color: #fff;
}

.login-form-popup-outer .social-login .google {
  border: 0;
  color: #fff;
  background: #d62d20;
}

.login-form-popup-outer .social-login .google span {
  color: #fff;
}

.alterna {
  margin: 15px 0 15px;
}

.alterna p {
  background: #dedede;
  text-align: center;
  border-radius: 100%;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  width: 29px;
  height: 29px;
  line-height: 29px;
  margin-bottom: 0;
}

.login-form-popup-outer .form-control {
  border: 1px solid #dedede;
  background: #f4f4f4;
  color: #333;
}

.login-form-popup-outer .form-control:focus {
  border: 1px solid #dedede;
  background: #fff;
}

.login-form-popup-outer .form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
}

.login-form-popup-outer .form-horizontal .radio,
.login-form-popup-outer .form-horizontal .checkbox,
.login-form-popup-outer .form-horizontal .radio-inline,
.login-form-popup-outer .form-horizontal .checkbox-inline {
  padding-top: 0;
}

.login-form-popup-outer .form-horizontal .checkbox a {
  color: #41a6df;
  font-size: 12px;
  cursor: pointer;
}

.login-form-popup-outer .siginincontainer,
.login-form-popup-outer .siginupcontainer,
.login-form-popup-outer .forgetpasswordcontainer {
  padding: 15px 25px;
}

.login-form-popup-outer .lp-secondary-btn {
  font-family: inherit !important;
}

.login-form-popup-outer .md-close i {
  background: transparent !important;
  right: 10px !important;
}

.login-form-popup-outer {
  z-index: 99999999;
}

.login-form-popup-outer .social-login li a {
  padding: 0 !important;
  line-height: 26px;
  border-radius: 1px !important;
  border: none;
}

.login-form-popup-outer .social-login li a .fa {
  font-size: 12px;
  line-height: 20px;
}

.login-form-popup-outer .social-login li {
  margin-right: 5px;
  width: 50%;
}

.login-form-popup-outer .social-login li:last-child {
  margin-right: 0;
}

.login-form-popup-outer .social-login li {
  display: inline-block;
}

.login-form-popup-outer .social-login {
  text-align: center;
}

#app-view-login-popup .modal-body {
  padding: 0;
}

#app-view-login-popup .social-login li button .lp-pop-icon-img img,
#app-view-login-popup .social-login li a .lp-pop-icon-img img {
  width: 14px;
}

#app-view-login-popup .social-login li button .lp-pop-icon-img,
#app-view-login-popup .social-login li a .lp-pop-icon-img {
  margin: 0;
  padding: 0 5px;
}

#app-view-login-popup .social-login li a .lp-pop-icon-img {
  margin-right: 3px;
}

#app-view-login-popup .social-login li {
  width: auto;
}

#app-view-login-popup .social-login li a {
  padding: 1px 7px 1px 1px !important;
  display: inline-block;
}

#app-view-login-popup .social-login li a span {
  float: left;
}

#app-view-login-popup {
  position: fixed !important;
  top: 0%;
  transform: translateY(0%);
  z-index: 99999 !important;
  text-align: left;
}

.modal-open #app-view-login-popup {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.modal-open #app-view-login-popup {
  -webkit-box-sizing: border-box !important;
  -webkit-appearance: none !important;
}

#app-view-login-popup .modal-header {
  padding: 0;
  border-bottom: 0 solid #e5e5e5;
  margin-bottom: 10px;
}

#app-view-login-popup .siginincontainer2,
#app-view-login-popup .siginupcontainer2,
#app-view-login-popup .forgetpasswordcontainer2 {
  padding: 0 20px;
  padding-bottom: 20px;
}

.siginupcontainer2 {
  display: none;
}

.forgetpasswordcontainer2 {
  display: none;
}

#app-view-login-popup .login-form-pop-tabs a.md-close i {
  background-color: transparent !important;
  padding: 0 !important;
  width: auto;
  height: auto;
  line-height: initial;
}

#app-view-login-popup .login-form-pop-tabs a.md-close {
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 25px !important;
  padding: 0 !important;
}

#app-view-login-popup .modal {
  background: rgba(0, 0, 0, 0.9) !important;
}

.listing-app-view .lp-filter-wrap-app span.app-filter-loader {
  position: absolute;
  left: -20px;
  display: none;
}

.md-close.widget-map-click.app-filter-close-btn {
  background-color: #41a6df;
  color: #fff;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 5px;
}

.social-icons li {
  display: inline-block;
}

.page-container {
  padding-bottom: 60px;
}

.page-container-second {
  padding-top: 90px;
  padding-bottom: 60px;
}

.page-container-third {
  padding-top: 65px;
  padding-bottom: 90px;
}

.page-container-four {
  padding-top: 45px;
  padding-bottom: 90px;
}

.page-container-five {
  padding: 55px 0;
}

.page-container-six {
  padding-top: 90px;
  padding-bottom: 40px;
}

.form-page-heading {
  margin-bottom: 45px;
}

.input-group-addon {
  background-color: #f4f4f4;
  padding: 12px 16px;
}

.lp-form-container {
  padding: 40px;
}

.lp-form-container input.form-control {
  height: 40px;
}

.form-control {
  height: 40px;
  box-shadow: none;
  border: 1px solid #e3e3e3;
}

.form-control:focus {
  border: 1px solid #c1c1c1;
}

.input-group .custom-combobox {
  display: inherit;
}

.input-group .custom-combobox-input {
  border: 1px solid #e3e3e3;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group .custom-combobox-input:focus {
  border: 1px solid #c1c1c1;
}

.input-group-addon i {
  color: #3c3c3c;
}

.form-inline .form-group {
  margin-right: 11px;
}

.input-width-299 {
  width: 311px !important;
}

.full-width {
  width: 100%;
}

.width-32-percent {
  width: calc(100% - 920px);
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/sidebar-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top right;
  position: relative;
  height: 100%;
  position: fixed;
}

.width-68-percent {
  width: 920px;
  background-color: #fff;
  padding: 0 15px;
  float: right;
}

.width-49-percent {
  width: 40%;
  float: left;
}

.listing-sidebar-left {
  max-width: 270px;
  z-index: 9;
  position: relative;
  padding: 20px 0;
  margin-right: 30px;
}

.listing-sidebar-left .ui-widget {
  width: 100%;
  height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}

.listing-sidebar .ui-autocomplete,
.listing-sidebar-left .ui-widget select {
  width: 200px !important;
  position: fixed !important;
}

.listing .LPtagsContainer {
  margin-top: 5px;
}

.listing-sidebar-left .ui-widget::placeholder {
  color: #a9a9a9;
}

.form-cotnainer {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 5px;
}

.form-cotnainer .form-group {
  margin-bottom: 10px;
  margin-right: 0;
  width: 100%;
}

.form-cotnainer .form-group .input-group-addon {
  background-color: #e3e3e3;
  padding: 0;
  width: 40px !important;
  height: 35px;
  line-height: 33px;
  text-align: center;
}

.form-cotnainer .form-control {
  height: 36px;
  box-shadow: none;
}

.form-inline .input-group {
  width: 100%;
}

.form-cotnainer .form-group:last-child {
  margin-bottom: 0;
}

.listing-container-right {
  width: 100%;
}

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

.width-full {
  width: 100%;
}

.slick-slide:focus,
.slick-slide img:focus {
  outline: none;
}

.slick-slide {
  cursor: move;
}

.line-height-16 {
  line-height: 16px;
}

.width-50 {
  width: 50%;
  display: inline-block;
}

.form-inline .input-group .input-group-addon {
  width: 40px;
}

.lp-input-202 {
  width: 195px !important;
}

.ui-helper-hidden-accessible {
  display: none;
}

.pos-relative {
  position: relative;
}

.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.ui-autocomplete {
  z-index: 999999;
}

.border-right-radius {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.border-dropdown span {
  position: relative;
}

.listing-sidebar-left .border-dropdown span:after,
.listing-sidebar-left .chosen-container-multi .chosen-choices:after {
  top: 11px;
  right: 17px;
}

.chosen-container-multi .chosen-choices:after {
  position: absolute;
  top: 14px;
  right: 17px;
  content: "\f0d7";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  color: #d3d3d3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.border-dropdown span:after {
  position: absolute;
  top: 50%;
  right: 17px;
  content: "\f0d7";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  color: #d3d3d3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

input.default {
  color: #a9a9a9;
}

.accordion-title {
  display: inline-block;
  width: 80%;
  vertical-align: top;
}

.fullwidth-header {
  padding: 0 25px;
}

.lp-menu-bar .header-filter {
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.lp-header-full-width .lp-menu-bar .header-filter {
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.header-filter .form-control {
  border: none !important;
}

#inputsearch {
  border-radius: 0;
  position: relative;
}

#inputsearch:before {
  content: "Numbers only";
  color: orange;
}

.lp-search-btn-header {
  float: right;
  width: 0;
}

.lp-search-btn-header .lp-search-btn {
  padding: 11px;
  background: none;
}

.lp-search-btn-header i {
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  z-index: 0;
  left: 10px;
  position: absolute;
  top: 8px;
}

.lp-header-bg {
  position: relative;
}

.lp-header-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-fixed {
  position: fixed;
  width: 100%;
  z-index: 99999;
}

.lp-topbar {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 9;
}

.lp-topbar-menu {
  padding: 0;
  margin: 0;
  line-height: 32px;
}

.lp-topbar-menu li {
  display: inline-block;
  list-style-type: disc;
  margin-right: 25px;
  position: relative;
}

.lp-topbar-menu li:before {
  content: "";
  position: absolute;
  left: -17px;
  top: 15px;
  color: #fff;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}

.lp-join-now {
  line-height: 48px;
}

.lp-join-now a {
  text-transform: capitalize;
}

.lp-join-now ul {
  padding: 0;
  list-style: none;
}

.lp-topbar-menu li:first-child:before {
  list-style-type: none;
  display: none;
}

.lp-topbar-menu li a:hover {
  text-decoration: underline;
}

.lp-join-now span {
  border-radius: 100%;
  float: left;
  height: 22px;
  line-height: 15px;
  margin-right: 5px;
  margin-top: 12px;
  overflow: hidden;
  width: 20px;
}

.lp-join-now span img {
  width: 100%;
}

.lp-join-now.after-login span {
  height: 30px;
  line-height: 16px;
  margin-top: 7px;
  width: 30px;
}

.margin-top-6 {
  margin-top: 6px;
}

.lp-join-now a {
  position: relative;
}

.lp-join-user-info ul {
  margin-bottom: 0;
}

.lp-user-menu {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  margin-left: -16px;
  opacity: 0;
  position: absolute;
  padding-top: 20px;
  padding-bottom: 20px;
  right: 0;
  top: 100%;
  transform: scale(0);
  transform-origin: 10% top 0;
  z-index: 999999;
  width: 200px;
  -webkit-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -moz-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -ms-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -o-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
}

.header-with-topbar .lp-join-now.after-login.lp-join-user-info {
  float: right;
}

.header-with-topbar .lp-join-now.after-login.lp-join-user-info .lp-user-menu {
  top: 105%;
}

.lp-user-menu li {
  background-color: #fff;
}

.lp-user-menu li:first-child {
  padding-top: 10px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.lp-user-menu li:last-child {
  padding-bottom: 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.lp-user-menu:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: -9px;
  right: 15px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.lp-menu .children .page_item_has_children a,
.lp-menu .sub-menu .menu-item-has-children a {
  border-radius: 5px;
  position: relative;
}

.lp-menu .children .page_item_has_children a:after,
.lp-menu .sub-menu .menu-item-has-children a:after {
  content: "\f0da";
  position: absolute;
  top: 11px;
  right: 20px;
  width: 10px;
  height: 10px;
  z-index: 99999;
  font-family: "FontAwesome";
}

.lp-menu ul.children li:first-child,
.lp-menu ul.sub-menu li:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.menu ul.children li:last-child,
.menu ul.sub-menu li:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.lp-menu-container .lp-menu > ul > li > a,
.lp-menu-container .lp-menu > div > ul > li > a {
  line-height: 46px;
}

.mm-navbar-top a,
.mm-navbar-top img {
  display: inline-block;
}

.mm-navbar-top a.userimage {
  width: 60%;
  line-height: 50px;
  margin-top: 19px;
}

.mm-navbar-top a {
  margin-right: 30px;
}

.mm-navbar-top a:last-child {
  margin-right: 0;
}

.iconsmall {
  height: 40px;
  line-height: 34px;
  padding: 0;
  width: 40px;
}

.iconsmall img {
  width: 40px;
}

.userimage img {
  max-width: 100%;
}

.mobile-nav-icon {
  display: none;
  cursor: pointer;
}

.mobile-nav-icon .nav-icon {
  width: 28px;
  float: right;
}

.icon-bar {
  width: 100%;
  display: block;
  height: 3px;
  background-color: #fff;
  margin-bottom: 5px;
}

.lp-menu-bar {
  position: relative;
}

.lp-menu-bar .lp-logo-container {
  padding-bottom: 5px;
  padding-top: 5px;
}

.lp-menu ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.lp-menu ul li {
  display: inline-block;
  padding-right: 35px;
  line-height: 32px;
}

.lp-menu ul li a i {
  position: relative;
  top: -2px;
  margin-left: 4px;
}

.lp-menu a:hover {
  text-decoration: none;
}

.menu ul li {
  position: relative;
}

.menu ul.children,
.menu ul.sub-menu {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  margin-left: -16px;
  max-height: 0;
  padding: 10px 0;
  opacity: 0;
  right: 0;
  position: absolute;
  top: 85%;
  transform: scale(0);
  transform-origin: 10% top 0;
  z-index: 999999;
  width: 200px;
  -webkit-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -moz-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -ms-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -o-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
}

.lp-menu-bar-color .menu ul.children,
.lp-menu-bar-color .menu ul.sub-menu {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.menu ul.children:after,
.menu ul.sub-menu:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  top: -8px;
  left: 13px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.lp-menu ul li:hover ul.children,
.lp-menu ul li:hover ul.sub-menu,
.lp-join-user-info li:hover .lp-user-menu {
  max-height: 700px;
  opacity: 1;
  width: 200px;
  transform: scale(1);
  transition-delay: 0.2s;
  transition-duration: 0s, 0.2s, 0.2s;
}

.list-style-none.main {
  max-height: 200px;
  opacity: 1 !important;
  width: 150px !important;
  transform: scale(1) !important;
  transition-delay: 0.2s !important;
  transition-duration: 0s, 0.2s, 0.2s !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  right: 20% !important;
}

.list-style-none.main li a {
  font-size: 13px;
  line-height: 24px;
}

.app-view-header .lp-user-menu {
  width: 150px;
  max-height: 200px;
}

.list-style-none.main:after {
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

.list-style-none.main li a:before {
  display: none !important;
}

.page-template-template-dashboard .main {
  display: none !important;
}

.menu ul.children li,
.menu ul.sub-menu li {
  position: relative;
}

.menu ul.children li ul.children,
.menu ul.sub-menu li ul.sub-menu {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  margin-left: -16px;
  max-height: 0;
  opacity: 0;
  position: absolute;
  padding: 20px 0;
  left: 100%;
  right: 0;
  top: 85%;
  transform: scale(0);
  transform-origin: 10% top 0;
  width: 200px;
  z-index: 10;
  -webkit-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -moz-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -ms-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -o-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
}

.menu ul.children li ul.children:after .menu ul.sub-menu li ul.sub-menu:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 29px;
  left: -3px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  border-right: 8px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.menu ul.children li:hover ul.children,
.menu ul.sub-menu li:hover > ul.sub-menu {
  max-height: 700px;
  opacity: 1;
  width: 200px;
  transform: scale(1);
  transition-delay: 0.2s;
  transition-duration: 0s, 0.2s, 0.2s;
}

.menu ul.children li:hover ul.children:after,
.menu ul.sub-menu li:hover ul.sub-menu:after,
.lp-menu > ul > li:hover ul.children:after,
.lp-menu > ul > li:hover ul.sub-menu:after,
.lp-join-user-info li:hover .lp-user-menu:after {
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

.menu ul.children li,
.menu ul.sub-menu li {
  display: block;
  padding: 0;
  margin: 0;
  background-color: #fff;
}

.menu ul.children li a,
.menu ul.sub-menu li a,
.lp-user-menu li a {
  display: block;
  background-color: #fff;
  font-size: 14px;
  padding: 1px 20px;
  border-top: 0;
  color: #000;
  text-align: left;
}

.lp-user-menu li a{
  color: #000 !important;
}

.menu ul.children li > a::before,
.menu ul.sub-menu li > a::before,
.lp-user-menu li > a::before {
  background-color: #42a7df;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.menu ul.children li:hover > a::before,
.menu ul.sub-menu li:hover > a::before,
.lp-user-menu li:hover > a::before {
  left: -1px;
  width: 4px;
}

.menu ul.children li:hover > a,
.menu ul.sub-menu li:hover > a,
.lp-user-menu li:hover > a {
  background-color: transparent;
  border-radius: 0 !important;
}

.lp-add-listing-btn ul {
  list-style: none;
  margin: 0;
}

.lp-home-banner-contianer {
  position: relative;
}

.lp-home-banner-contianer-inner {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}

.lp-home-banner-contianer-inner h1 {
  margin-top: 10px;
  margin-bottom: 15px;
}

.lp-search-bar {
  display: block;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  margin-top: 30px;
}

.lp-shortcode-search form {
  display: flex;
}

.lp-shortcode-search .lp-search-bar .form-group.lp-suggested-search {
  width: 50%;
}

.lp-shortcode-search .lp-search-bar .form-group.lp-location-search {
  width: 33%;
}

.lp-shortcode-search .lp-search-bar .form-group.pull-right {
  width: 15%;
}

.lp-shortcode-search .lp-search-bar .ui-widget.border-dropdown,
.lp-shortcode-search .form-group.lp-suggested-search input {
  width: 100%;
}

.lp-shortcode-search i.fa-crosshairs {
  display: none;
}

.lp-shortcode-search .lp-search-icon {
  color: white;
}

/* classic updated */

.classic-view-grid-container .lp-listing-content-grid {
  margin-top: 4px;
}

.lp-home-locaton-input,
.lp-home-search-input,
.lp-search-bar-right {
  margin-bottom: 15px;
}

.lp-search-bar-left {
  float: left;
}

.lp-search-bar-right {
  float: right;
  position: relative;
}

.lp-search-input {
  padding: 12px 15px;
}

.lp-home-locaton-input {
  width: 189px;
  float: left;
  border: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.lp-home-search-input {
  width: 380px;
  float: left;
  border: 0;
  border-left: 1px solid #e3e3e3;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.lp-search-btn {
  padding: 11px 30px 11px 45px;
  font-weight: 700;
  border-radius: 5px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-submit-btn {
  padding: 11px 30px 11px 45px;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  border-radius: 5px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-review-btn {
  padding: 11px 28px 11px 28px;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  border-radius: 5px;
  color: #fff;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-signout-btn {
  padding: 15px 40px 15px 40px;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  border-radius: 5px;
  color: #fff;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-search-icon {
  position: absolute;
  top: 16px;
  font-size: 15px;
  left: 22px;
  cursor: pointer;
  z-index: 0;
  /*    -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
       -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
       transform: rotate(270deg) */
}

.header-filter .lp-search-icon {
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 0;
  font-size: 25px;
  z-index: 9999;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lp-search-description {
  margin-top: 89px;
}

.lp-search-description p {
  display: inline-block;
}

.banner-arrow {
  position: relative;
  display: inline-block;
  vertical-align: -webkit-baseline-middle;
  margin-left: -5px;
}

.lp-search-bar-left .border-dropdown .chosen-container-single span:after {
  right: 0 !important;
}

.ui-widget {
  float: left;
}

.custom-combobox {
  position: relative;
  display: inline-block;
}

.custom-combobox-toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-left: -1px;
  padding: 0;
  display: block;
  width: 35px !important;
  height: 40px;
  right: 0;
  z-index: 99999999;
}

.ui-tooltip {
  display: none;
}

.custom-combobox-toggle span {
  display: none;
}

.custom-combobox-input {
  margin: 0;
}

.ui-widget select {
  padding: 13px 20px;
  height: 48px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

#auto-res .ui-autocomplete {
  box-shadow: 0 2px 5px 0 rgba(46, 46, 46, 0.2);
  background-color: #fff;
}

.ui-widget select {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 187px !important;
  box-shadow: 0 2px 5px 0 rgba(46, 46, 46, 0.2);
  background-color: #fff;
  padding-top: 8px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 1px;
}

.ui-autocomplete::-webkit-scrollbar {
  width: 0;
  opacity: 0;
}

.ui-autocomplete::-webkit-scrollbar-track {
  border-radius: 25px;
  opacity: 0;
}

.ui-autocomplete::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: rgba(233, 233, 233, 0.58);
  opacity: 0;
}

.ui-autocomplete li:first-child {
  margin-top: -11px;
}

.ui-autocomplete li {
  background-color: #fff;
  cursor: pointer;
  display: block;
  padding: 10px 20px;
  border-top: 0;
  color: #000;
  border-bottom: 1px solid #f9f9f9;
}

.post-submit .ui-widget,
.post-submit .custom-combobox,
.post-submit .custom-combobox-input {
  width: 100% !important;
}

.post-submit .ui-autocomplete {
  width: 863px !important;
}

.post-submit .custom-combobox-input {
  border-color: #eee;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
}

.post-submit .chosen-container-single {
  float: left;
  width: 100% !important;
}

.post-submit .chosen-container-single .chosen-single {
  background-color: transparent;
  background-image: none;
  border: 1px solid #e3e3e3;
  box-shadow: none;
  height: 45px;
  line-height: 45px;
  outline: medium none;
}

.post-submit .chosen-container .chosen-drop {
  border: 1px solid #e3e3e3;
  box-shadow: none;
}

.post-submit .chosen-container .chosen-results li.group-option {
  padding-left: 30px;
}

.section-fixed {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

#page {
  background-color: #fff;
}

.lp-section-title-container {
  padding-top: 60px;
}

.lp-sub-title {
  line-height: 26px;
}

.lp-section-content-container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.lp-section-content-container-one {
  padding-top: 90px;
  padding-bottom: 90px;
}

.lp-section-content-container-second {
  padding-top: 90px;
  padding-bottom: 95px;
}

.lp-home-categoires {
  text-align: center;
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.lp-home-categoires li {
  display: inline-block;
  width: 120px;
  margin-right: 13px;
}

.lp-home-categoires li a {
  width: 100%;
  height: 110px;
  text-align: center;
  float: left;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.42);
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-home-categoires li a:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.48);
}

.lp-home-categoires:not(.lp-inside-search-view2) li a span {
  font-size: 15px;
  width: 100%;
  font-weight: 400;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.lp-home-categoires.lp-inside-search-view2 li a span {
  font-size: 15px;
  width: 100%;
  font-weight: 400;
  margin-bottom: 0;
}

.lp-home-categoires li a span img.icons-banner-cat {
  height: 35px !important;
  margin-bottom: 7px !important;
  margin-top: 5px !important;
  width: 34px !important;
}

.city-girds {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.city-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-linear-gradient(
    0deg,
    hsla(0, 0%, 0%, 1.89) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    hsla(0, 0%, 0%, 1.89) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding-bottom: 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.city-title .lp-h3 {
  margin-bottom: 3px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.lp-listing-quantity {
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  position: relative;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.city-girds:hover .lp-listing-quantity {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.city-girds:hover .city-title .lp-h3 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.nearby-download {
  width: 100%;
  margin-top: 80px;
  padding: 0;
}

.nearby-download-about li {
  margin-bottom: 0;
}

.nearby-download-top {
  margin-top: 50px;
}

.nearby-download li {
  display: inline-block;
  margin-bottom: 20px;
}

.nearby-download li {
  margin-right: 10px;
}

.nearby-download li:last-child {
  margin-right: 0;
}

.lp-grid-box-contianer {
  margin-bottom: 30px;
}

.lp-grid-box-thumb-container {
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
}

.lp-grid-box-thumb img {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.lp-grid-box-quick {
  width: 100%;
  position: absolute;
  bottom: -100px;
  left: 0;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: -webkit-linear-gradient(
    0deg,
    hsla(0, 0%, 0%, 1.89) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    hsla(0, 0%, 0%, 1.89) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding-bottom: 15px;
}

.lp-grid-desc-container {
  overflow: hidden;
  border-radius: 8px;
}

.lp-grid-box-description {
  padding: 8px 15px 20px 15px;
}

ul.lp-grid-box-price {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.lp-grid-box-price li {
  display: inline-block;
  margin-right: 3px;
}

.lp-grid-box-bottom {
  padding: 10px 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.lp-grid-box-price .category-cion {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.lp-grid-box-price .category-cion a {
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #41a6df;
  border-radius: 50%;
  display: inherit;
}

.lp-grid-box-price .category-cion img {
  width: 20px;
  height: 20px;
}

.lp-post-quick-links {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.lp-post-quick-links li {
  display: inline-block;
}

.lp-post-quick-links li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  float: left;
  border-radius: 50%;
}

.lp-post-quick-links li a.icon-fire {
  background-color: #f65342;
}

.quickmap {
  height: 520px;
  width: 100%;
  overflow: hidden;
}

.lp-add-to-fav {
  position: relative;
}

.lp-add-to-fav i {
  font-size: 16px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ui-tooltip {
  background-color: #41a6df;
  width: 150px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.ui-tooltip-content {
  padding: 8px;
}

.ui-tooltip:after {
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #41a6df;
}

.hot-post {
  margin-right: 8px;
}

.video-thumb {
  position: relative;
  text-align: center;
}

.video-thumb img {
  border-radius: 5px;
}

.user-thumb,
.user-text {
  display: inline-block;
  vertical-align: bottom;
}

.user-thumb {
  margin-right: 15px;
}

.user-thumb img {
  border-radius: 50%;
}

.overlay-video-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay-video-thumb i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.testimonial-description {
  padding: 30px 30px 20px 30px;
  position: relative;
}

.testimonial-description:after {
  content: "";
  bottom: -15px;
  left: 50px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.testimonial-user-thumb.user-thumb {
  background-color: #e6e6e6;
  border: 1px solid #a6a6a6;
  border-radius: 100%;
  height: 63px;
  overflow: hidden;
  width: 63px;
}

.testimonial-user-info {
  padding-left: 0;
  margin-top: 35px;
}

.user-position {
  font-weight: 400;
}

.testimonial-inner-box h3 {
  margin-bottom: 40px;
  line-height: 20px;
}

.testimonial-box {
  margin-bottom: 30px;
}

.testimonial-image {
  position: relative;
  left: 14px;
  padding-bottom: 30px;
}

.testimonial-image img {
  height: auto;
  width: 100px;
}

.testimonial-tit {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.testimonial-tit h3 {
  display: inline;
}

.testimonial-rating {
  color: #ffd925;
  float: right;
  margin-top: 7px;
}

.testimonial-msg {
  position: relative;
}

.triangle-isosceles.top::after {
  border-color: #fff transparent;
  border-width: 0 15px 15px;
  bottom: auto;
  left: 50px;
  top: -15px;
}

.triangle-isosceles::after {
  border-color: #fff transparent;
  border-style: solid;
  border-width: 15px 15px 0;
  bottom: -15px;
  content: "";
  display: block;
  left: 50px;
  position: absolute;
  width: 0;
}

.triangle-isosceles.top {
  background-color: #fff;
}

.triangle-isosceles {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  position: relative;
}

.testimonial-rating {
  color: #ffd925;
  float: right;
  margin-top: 7px;
}

.testimonial-rating .fa-star {
  color: #ffd925;
}

.testimonial-slider .slick-dots li button::before {
  line-height: 33px;
}

.testimonial-slider .slick-dots {
  bottom: 0;
}

.testimonial-slider {
  width: 675px;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-left: 0;
}

.testimonial-slider li {
  max-width: 675px;
}

.testimonial-slider li:focus {
  outline: none;
}

.tes-icon {
  margin-top: 0;
  margin-bottom: 30px;
}

.tes-icon i {
  border-radius: 50%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  width: 70px;
}

.testimonial-slider li .tes-name-tit {
  text-transform: uppercase;
  margin-bottom: -5px;
  margin-top: 20px;
}

.tes-msg {
  font-style: italic;
  color: #7f7f7f;
}

.tes-role {
  color: #292929;
}

.lp-blog-grid-box {
  margin-bottom: 30px;
}

.lp-blog-grid-box-container {
  overflow: hidden;
  text-align: center;
}

.blog-single-page .lp-blog-user-thumb {
  border: 2px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
  overflow: hidden;
  vertical-align: top;
  border-radius: 50%;
  height: 50px;
  margin: -25px auto 0;
  overflow: hidden;
  width: 50px;
}

.blog-single-page .lp-blog-user-thumb img {
  border-radius: 0;
}

.blog-single-page .blog-heading-inner-container .lp-blog-grid-author {
  padding: 23px 0 0;
}

.blog-heading-inner-container h1 {
  line-height: normal;
}

.lp-blog-grid-box-description {
  padding-bottom: 26px;
}

.lp-blog-grid-category {
  margin-top: 15px;
}

.lp-blog-grid-title {
  padding: 0 30px 0 30px;
}

.lp-blog-grid-author li,
.lp-blog-grid-author li a {
  color: #333;
  font-size: 13px;
}

.lp-blog-grid-author {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lp-blog-grid-author li {
  display: inline-block;
  margin-right: 25px;
}

.lp-blog-grid-author li i {
  margin-right: 5px;
}

.lp-blog-grid-author li:last-child {
  margin-right: 0;
}

.image-popup-margin {
  margin-left: 33px;
}

.comments-description {
  margin-top: 18px;
}

.md-content {
  position: relative;
}

.post-stat {
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-stat li {
  display: inline-block;
}

.post-row .post-stat li {
  margin-right: 58px;
}

.post-row .post-stat li:last-child {
  margin-right: 0;
}

.post-stat .icon {
  width: 15px;
  margin-right: 5px;
}

.post-socials .icon {
  width: 22px;
}

.popup-post-left-upper h1 {
  margin-bottom: 20px;
}

.popup-post-left-upper .post-stat li {
  margin-bottom: 15px;
  margin-right: 5px;
}

.popup-post-price-container {
  margin-bottom: 27px;
}

.popup-post-left-bottom {
  margin-top: 25px;
}

.popup-post-left-bottom .user-info {
  margin-top: 25px;
  margin-bottom: 30px;
}

.popup-post-left-bottom .user-thumb,
.popup-post-left-bottom .user-text {
  vertical-align: middle;
}

.popup-post-left-bottom .user-position {
  padding-bottom: 4px;
}

.popup-left-pad {
  padding: 15px 40px 30px;
}

.popup-map-position {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.popup-inner-left-padding {
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

.popup-inner-left-padding .md-close {
  position: absolute;
  top: 2px;
  right: 16px;
  z-index: 9999;
}

.md-close i {
  z-index: 99999999;
}

.mobilemap .md-content > div {
  padding: 0;
}

.md-closer {
  border-radius: 50%;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #41a6df;
  color: #fff;
  font-family: "Quicksand","Quicksand Fallback";
}

.reviews-stars {
  margin-right: 5px;
}

.sbutton .reviews-stars {
  margin-right: 4px;
}

.add-to-fav .email-icon {
  margin-right: 7px !important;
}

.sbutton .reviews-stars i {
  color: #7f7f7f;
}

.popup-post-left-bottom .social-icons li {
  margin-right: 5px;
}

.popup-post-price {
  margin-right: 5px;
}

.md-modal .lp-secondary-btn,
.md-modal .checkbox label::before {
  -o-transition: all 0s ease;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  transition: all 0s ease;
}

.page-heading {
  height: 216px;
  position: relative;
}

.about-page-heading {
  height: 256px;
  position: relative;
}

.page-heading-inner-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.listing-page {
  /*  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/header-banner-1.jpg); */
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  z-index: 0;
}

.about-page {
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/about-banner.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 13px !important;
  padding-left: 16px !important;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs li:first-child {
  padding-left: 0 !important;
  padding-right: 4px !important;
  margin-right: 0 !important;
}

.breadcrumbs li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  color: #fff;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li:last-child {
  margin-right: 0;
}

.col-md-4 .view-on-map {
  transform: translateX(66px);
}

.view-on-map img {
  position: relative;
  top: -2px;
}

.listing-sidebar-left .chosen-container-multi .chosen-choices {
  padding: 4px 20px;
  background-color: #fff;
}

.view-on-map .icon {
  width: 15px;
}

.search-row .form-inline {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08) inset;
  float: left;
  padding: 15px 15px 0;
  position: relative;
  width: 100%;
}

.search-row .form-control {
  height: 44px;
}

.search-row .form-inline .form-group {
  margin-bottom: 15px;
}

.app-view-filters .search-row .form-inline .form-group {
  margin-bottom: 0;
}

.search-row .form-inline .input-group {
  margin-right: 5px;
}

.listing-with-map .search-row .form-inline .input-group {
  margin-right: 0;
  border: 1px solid #eaeaea;
  border-radius: 3px;
}

.listing-with-map .sidebar-filters-wrap .form-inline .input-group {
  border: 0 solid #eaeaea;
}

.listing-with-map .search-row .lp-search-cats-filter-dropdown .input-group {
  background-color: #f8f8f8;
}

.app-view-filters .search-row .form-inline .input-group {
  height: 40px;
}

.app-view-filters .search-row .form-inline .input-group .comboboxCategory {
  height: 40px;
  border: 0;
}

.listing-with-map .input-group-addon {
  background-color: #f8f8f8;
  padding: 0;
}

.listing-with-map .chosen-container-single .chosen-single {
  border: none;
}

.search-row .chosen-container-single .chosen-single {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.listing-sidebar-left .chosen-container-single .chosen-single {
  height: 35px;
  color: #444;
  border-top-left-radius: 0;
  line-height: 35px;
  border-bottom-left-radius: 0;
}

.chosen-container-single .chosen-single div {
  display: none;
}

.post-with-map-container-right
  #searchform
  .chosen-container-single
  .chosen-single {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  color: #9f9f9f;
  height: 35px;
  line-height: 35px;
}

.listing-simple
  .post-with-map-container-right
  #searchform
  .chosen-container-single
  .chosen-single {
  height: 37px;
  line-height: 37px;
}

.listing-simple .post-with-map-container-right #lp-find-near-me a.active:hover,
.listing-with-map
  .post-with-map-container-right
  #lp-find-near-me
  a.active:hover {
  color: #fff !important;
}

.post-with-map-container-right .search-row {
  padding: 0 30px;
}

.post-with-map-container-right .search-row .lp-filter-inner {
  padding: 10px 0 !important;
  border-bottom: 1px solid #f6f6f6 !important;
}

.post-with-map-container-right .search-row .form-inline .form-group {
  margin-bottom: 5px;
}

.post-with-map-container-right .input-group-addon i {
  color: #9f9f9f;
  font-size: 14px;
  margin-top: 2px;
}

.post-with-map-container-right .form-inline .input-group .input-group-addon {
  width: 0;
  padding-left: 12px;
}

.post-with-map-container-right
  .search-row
  #searchform
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  width: 130px !important;
}

.post-with-map-container-right .chosen-container-single .chosen-single {
  background-color: #f8f8f8;
}

.post-with-map-container-right
  #searchform
  .chosen-container-single
  .chosen-single
  span {
  padding-left: 0;
}

.post-with-map-container-right
  #searchform
  .chosen-container-multi
  .chosen-choices:after {
  right: 12px;
}

.post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop {
  width: 119%;
  left: -28px;
  box-shadow: none;
  border: 1px solid #dedede;
}

.post-with-map-container-right .search-filters > ul > li > a i {
  margin-right: 6px;
}

.app-view-filters .search-filters > ul > li {
  position: relative;
}

.app-view-filters
  .lp-tooltip-outer
  .lp-tool-tip-content
  .location-filters-wrapper {
  padding-top: 10px !important;
}

.app-view-filters
  .lp-tooltip-outer
  .lp-tool-tip-content
  .location-filters-wrapper
  #distance_range_div
  .slider {
  position: relative !important;
}

.post-with-map-container-right
  .search-row
  #searchform
  .chosen-container
  .chosen-results
  li.active-result {
  font-size: 13px;
}

.search-row .chosen-container-single .chosen-single span,
.listing-sidebar-left .chosen-container-single .chosen-single span {
  margin-right: 0;
}

.search-row .chosen-container .chosen-drop {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.chosen-container .chosen-drop {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.archive-page .page-heading-inner-container {
  top: 39%;
}

.mapSidebar {
  min-height: 100vh;
}

.sidemap-fixed {
  position: fixed;
  right: 0;
}

.post-with-map-container {
  width: 815px;
  padding: 0 10px;
  float: right !important;
}

.sidemap-container {
  width: -webkit-calc(100% - 815px);
  width: -moz-calc(100% - 815px);
  width: calc(100% - 815px);
}

.post-map-container .ui-autocomplete,
.post-map-container .ui-widget select {
  width: 140px !important;
}

.post-with-map-container .fstMultipleMode .fstControls {
  max-width: 100% !important;
  min-width: 100% !important;
}

.post-with-map-container .lp-home-locaton-input {
  width: 100% !important;
}

.map-post {
  float: left;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.53);
  position: relative;
  margin-bottom: 50px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 270px;
  margin-right: 10px;
}

.map-post:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  display: block;
  width: 40px;
  height: 64px;
  background-color: white;
  -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.53);
}

.listing-app-view .leaflet-popup-content .map-post:after {
  display: none !important;
}

.listing-app-view .leaflet-popup-content .map-post {
  margin-bottom: 59px !important;
}

.map-post-des {
  position: relative;
  z-index: 99999;
  background-color: #fff;
  padding: 10px 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.map-post-address p {
  color: #7f7f7f;
  font-size: 12px;
}

.input-group-addon {
  border-width: 1px;
  border-color: transparent;
  border-style: solid;
  border-right: 0;
}

.attireMainNav {
  display: none;
}

.listing-sidebar-left .fstElement {
  background-color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.listing-sidebar-left .fstChoiceItem {
  padding: 0 0.33333em 0 1.5em;
  margin: 4px 0.41667em 0 0;
}

.listing-sidebar-left .fstMultipleMode .fstControls {
  padding-top: 0;
}

.tag-select-one {
  width: 190px;
}

.tag-select-second {
  width: 126px;
}

.tag-select-third {
  width: 100%;
}

.tag-select-four {
  width: 189px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  display: none;
}

.active-tag {
  display: inline-block;
  background-color: #f5f5f5;
  color: #424141;
  margin-right: 5px;
  border: 1px solid #e9e9e9;
  padding: 7px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.remove-tag {
  display: inline-block;
  margin-left: 9px;
  cursor: pointer;
}

.chosen-container-multi .chosen-choices:focus,
.chosen-container-multi .chosen-choices:hover {
  outline: none;
}

.mapin {
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 50% 0;
  background: #89849b;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

.mapin:after {
  content: "";
  width: 40px;
  height: 40px;
  margin: 8px 0 0 8px;
  background: #2f2f2f;
  position: absolute;
  border-radius: 50%;
}

.pin {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50% 50% 50% 0;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -20px;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.47);
}

.lpmap-icon-contianer {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: 8px;
  border-width: 1px;
  border-style: solid;
  left: 3px;
  transform: rotate(45deg);
}

.lpmap-icon-contianer img {
  margin-top: 0;
  position: relative;
  top: -1px;
  width: 17px;
}

.lpmap-icon-shape {
  z-index: -1;
}

.leaflet-map-pane {
  z-index: 2 !important;
}

.leaflet-google-layer {
  z-index: 1 !important;
}

.leaflet-popup-close-button
  + .leaflet-popup-content-wrapper
  .leaflet-popup-content {
  margin-left: 20px;
  margin-bottom: 20px;
}

.map-post-thumb {
  max-height: 142px;
  overflow: hidden;
  background-color: #fff;
}

.listing-app-view .leaflet-popup-content .map-post-thumb {
  height: 50px;
  overflow: hidden;
  background-color: #fff;
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 5px;
}

.listing-app-view .map-post-thumb img {
  border-radius: 0;
}

.listing-app-view .leaflet-popup-content .map-post-des {
  width: calc(100% - 50px) !important;
  display: inline-block;
  vertical-align: middle;
  border-radius: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.listing-app-view .leaflet-popup-content .map-post-title h5 {
  margin: 0 !important;
}

.listing-app-view .leaflet-popup-content .map-post-title a {
  font-size: 13px !important;
}

.listing-app-view .leaflet-popup-content .map-post-address p {
  margin: 0 !important;
  font-size: 12px;
}

.listing-app-view .leaflet-popup-content .map-post {
  background: #fff !important;
  padding: 10px;
}

.map-post-thumb img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.app-view-filters .lp-tooltip-outer {
  width: 100%;
}

.lp-join-user-info li {
  position: relative;
  line-height: 46px;
}

.tab-content {
  padding-top: 0;
  padding-bottom: 0;
}

.tab-header {
  padding-bottom: 35px;
}

.nav-tabs,
.nav-tabs > li > a,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
}

.nav-tabs > li {
  margin-bottom: 0;
}

.nav-tabs > li > a {
  position: relative;
  padding: 14px 15px;
  border-radius: 0;
  position: relative;
  text-align: center;
}

.nav-tabs > li > a:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom-width: 7px;
  border-bottom-style: solid;
  position: absolute;
  bottom: -2px;
  left: 46%;
}

.lp-grid-box-expired {
  background-color: #f65342;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 40px;
  line-height: 40px;
}

.user-portfolio-stat ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.user-portfolio-stat ul li {
  margin-bottom: 10px;
}

.user-portfolio-stat ul li:last-child {
  margin-bottom: 0;
}

.user-portfolio-stat ul li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
}

.user-portfolio-stat {
  padding-top: 40px;
}

.user-portfolio .user-thumb {
  margin-right: 20px;
}

.user-portfolio .user-position {
  padding-bottom: 5px;
  margin-top: 0;
}

.user-portfolio .user-thumb,
.user-portfolio .user-text {
  vertical-align: middle;
}

.text-about {
  padding-bottom: 20px;
}

.user-avatar-upload {
  display: inline-block;
  margin-bottom: 30px;
}

.user-avatar-preview {
  width: 20%;
  float: left;
}

.avatar-circle {
  border: 1px solid #dedede;
  border-radius: 50%;
  overflow: hidden;
  width: 94px;
  height: 94px;
}

.admin-top-section .avatar-circle {
  border: none;
}

.user-avatar-description {
  width: 80%;
  float: right;
}

.dashboard-content-app-view .user-avatar-preview {
  float: none !important;
}

.dashboard-content-app-view .user-avatar-upload {
  text-align: center;
}

.dashboard-content-app-view .user-avatar-description .paragraph-form {
  margin: 20px 0;
}

.lp-update-password-outer {
  margin: 0 !important;
}

.blog-single-page {
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/blog-post.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  height: 637px;
  position: relative;
  background-size: cover;
}

.blog-heading-inner-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-37%);
  -moz-transform: translateY(-37%);
  -o-transform: translateY(-37%);
  transform: translateY(-37%);
  z-index: 999;
}

.blog-single-inner-container {
  padding: 35px 0 30px 0;
}

.blog-tags ul {
  padding: 0;
  list-style: none;
}

.blog-tags ul li {
  display: inline-block;
}

.blog-social img {
  width: 25px;
}

.blog-meta {
  margin-top: 55px;
}

.blog-social li {
  margin-right: 2px;
}

.image-popup {
  border-radius: 5px;
  float: left;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.image-popup:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAECklEQVR4Xu2aj1HVQBDGdytQKxAqECoQK1ArECpQKlArECoQKlAqECsQKhAqECpY5+dc9DhzySVvc+9N8nbmDTC83N1+++2f243KwkUXrr9sAdgyYOEIbF1g3QQwsz0ReSki/NwJP+NjXYnIjYhcish3VeVvN1kLA8wMRd+KyKug9BCFAOOriJyqKr+vJFUBMLPHIvJeRN6tdOp/D5+IyEdVvRu7XjUAzAxrfxYRQPAUlD9SVVgxWKoAYGafeqx+EWgNpe8aPw/xAcBwGQAkVuTkRFWPhyIwKQCB8lidw6dyKyIfULyUwmE91uK5py1rnonIcel6PD81AF9alL8XEXwXi43y3QAEcYTPowSIM1U9KmXCZACYGUoS6WNB+QOvVBZchPSYgkCGKAq0kwAQAh7Wj+U6KD/K6jmLBjYAwrPkO69LAqM7AOFAP5Noj+V3xlK+j85hTwJozASA3u3bcwoAUuq70r6DCVSSqTv0uoIrAKHCw/qxUKgQtScXM2MfCq1YYEG2YvQGILU+qW6vj4ZeyARX4K4Qp8hOA3gDgPUpWhqhQiM3VxMzOwwVZ7Pnjaru5g7gBkBIST+SjZ7Usn6zb2DBr+Qc+7nU6wlA6n8XqtpWAU7OBjPjXhCXzVSHuOd/4glAuml1+kcsSN0gawxPAKA/qaiRF6pKWqouZnYgIt+ija9UdX9qBlip302NSFs8UtVWY3sy4AEAuQ2nVj5yg6LzbAHwsoiZUW3FBUg29XjtmVtnXS5AwHu+oUHwWlXjAP33mJ4usPg0SAOC3l8jiyuEoNhyS2HM3hIIq1eDLZehW1WNL2gPYqdbDAgApPcBMgPZwLUN1hH9aaGn3aiq12EOkLamltMQCSzg/v8mshLW517gOtRMWRByP/V/PHmq2xILALSxoKhBObZAWqUR6xoDojo8vY3xLxgAE1zjQVAey6eFznra4hEIaWHEv1zdIUN79umlfnPOqRiQNiRidgMC3RkOOYoNwepMnSi+0mnzuaqyf5G4A9CSh3MHIVuQNqkYi4AIitPqAsC2Mfs5oJSux8FcAehQnvF312gbd+EDKPfJeJxpTzMe7+oxFtM+togbAB3K/6kGQ5sKJdNBZhFVO77E5OmwZA7YtoYLAH3KR4ER2kJ7fNQDiFPWG0L5FISVAShVPt44mu8DRNuLDl2sYNpEscV7AOt9SWqM8pkKjrqBT/M6TAwKY/XmNblL74pyNAM8lF/V+T2eHwXAXJQflQbnpPxgAOam/CAA5qh8MQBzVb4IgDkr3wvA3JXvBCDzwhPPVO/0euT73BqddUALA2alfK8L8IUIhNkpXwRAAIG3PFe+eExJ5bFrjyqFx262ic9tAdhEq9Q805YBNdHexL0Wz4Df89TcUCiYGmIAAAAASUVORK5CYII);
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  background-size: 45px;
}

.image-popup:hover:after {
  opacity: 1;
}

.comments-thumb,
.comments-content,
.comments-box,
.comments-author,
.comments-replay {
  display: inline-block;
  vertical-align: top;
}

.comments-thumb {
  width: 13%;
}

.comments-content {
  width: 86.5%;
}

.comments-author {
  width: 78%;
}

#commentform .logged-in-as {
  padding-bottom: 15px;
}

.comments-replay {
  width: 20%;
}

#reply-title {
  cursor: pointer;
}

.review-form > form#rewies_form,
.review-form > form#rewies_formm {
  border-top: 1px solid #e3e3e3;
  display: none;
  margin-top: 15px;
  padding: 25px 15px 5px;
}

.comments-header {
  padding-top: 0;
  padding-bottom: 15px;
}

.comments-header h3 {
  margin-top: 0;
}

.comments-box {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #e3e3e3;
  width: 100%;
}

.comments-box-sub {
  width: 87%;
  float: right;
}

.comments-thumb {
  width: 15%;
}

.comments-content {
  width: 83.5%;
}

.form-review-stars li {
  display: inline-block;
  margin-right: 7px;
}

.form-review-stars li a {
  text-align: center;
}

.form-review-stars li span {
  display: block;
}

.single-page-slider-container {
  padding-top: 80px;
  padding-bottom: 60px;
  opacity: 0;
}

.post-meta-info {
  padding-top: 90px;
  padding-bottom: 90px;
}

.post-meta-left-box .breadcrumbs li:before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
  color: #7f7f7f;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  top: 0 !important;
}

.post-meta-left-box h1 {
  margin-bottom: 25px;
}

.post-meta-left-box .post-stat li {
  margin-right: 10px;
}

.secondary-btn {
  width: 300px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-weight: 700;
  border-radius: 5px;
  display: inline-block;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-price-row li {
  display: inline-block;
  vertical-align: middle;
}

.post-rice {
  font-weight: 700;
}

.features li {
  width: 245px;
  min-height: 58px;
  line-height: 58px;
  background-color: #fff;
  margin-right: 2px;
  margin-bottom: 20px;
  border-radius: 3px;
  padding-left: 17px;
}

.features li img {
  width: 20px;
  position: relative;
  top: -3px;
}

.features li .tick-icon {
  margin-right: 5px;
}

.extrafield-list li {
  width: 40%;
  display: inline-block;
  border-bottom: 1px solid #e3e3e3;
  margin-right: 40px;
  margin-left: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.extrafield-list li span {
  color: #737373;
  font-family: "quicksand-regular";
}

.extrafield-list li span:first-child {
  font-family: "Quicksand","Quicksand Fallback";
  text-transform: capitalize;
}

.extrafield-list li span:last-child {
  float: right;
}

.single-inner-container {
  padding-bottom: 50px;
  padding-top: 50px;
}

.single-inner-container .post-row {
  line-height: 27px;
}

.faq-section h3 {
  margin-bottom: 15px;
}

#accordion {
  width: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 12px 10px 25px;
}

.post-meta-right-box .post-stat li {
  margin-right: 10px;
}

.listingmap,
.singlebigpost {
  min-height: 80vh;
  width: 90vw;
  overflow: hidden;
}

.widget-map {
  overflow: hidden;
}

.singlebigpost {
  min-height: 80vh !important;
  width: 90vw !important;
}

#singlepostmap {
  height: 180px;
  overflow: hidden;
}

.single-page-popup {
  min-height: 50vh;
  width: 50vw;
}

.single-page-popup .md-content {
  padding: 30px;
}

.single-page-popup .md-content > div {
  padding: 15px 16px 19px;
}

.symbol {
  display: inline-block;
  border-radius: 50%;
  border: 5px double white;
  width: 30px;
  height: 30px;
}

.symbol-empty {
  background-color: #ccc;
}

.symbol-filled {
  background-color: black;
}

.rating-symbol {
  margin-right: 4px;
}

.user-info {
  position: relative;
}

.sidebar-post .user-text {
  position: relative;
  top: -9px;
}

.sbutton {
  position: relative;
}

.sbutton:hover {
  cursor: pointer;
}

.smenu {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  left: -34px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  position: absolute;
  top: -50px;
  -webkit-transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
  width: 138px;
  text-align: left;
}

.smenu:after {
  height: 10px;
  left: 50%;
  position: absolute;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ccc;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.smenu.share {
  opacity: 1;
  visibility: visible;
  top: -131px;
}

.smenu li {
  display: block;
  margin-right: 0 !important;
  padding-top: 15px;
  padding-left: 15px;
}

.smenu li a {
  display: block;
  line-height: 16px;
}

.smenu li:last-child {
  border-bottom: 0;
  padding-bottom: 15px;
}

.smenu li span {
  position: relative;
  top: 3px;
  left: 7px;
}

.slick-slide {
  overflow: hidden;
}

.slick-slide img {
  margin: auto auto;
  display: block;
}

.claimformtrigger,
.claimform,
.quickformtrigger,
.quickform {
  display: none;
  vertical-align: top;
}

.singlebigmaptrigger span {
  position: relative;
}

.post-reviews {
  display: inline-block;
  margin-left: 40px;
}

.comments-container {
  border-radius: 8px;
  background-color: #fff;
}

.lp_confirmation {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  background: rgba(61, 81, 99, 0.9);
  padding: 10px 0;
}

.lp_confirmation .widget-box.padding-0 {
  margin-bottom: 0;
}

.lp_confirmation .list-st-img li a {
  padding-right: 15px;
}

.listing-app-view .lp_confirmation {
  bottom: 6%;
}

.widget-box {
  padding: 25px;
  margin-bottom: 50px;
}

.widget-box .user-thumb {
  margin-right: 10px;
}

.widget-box .user-text .user-position {
  margin-bottom: 10px;
}

.widget-video iframe {
  width: 100%;
  height: 258px;
}

.user-abailable-table li {
  margin-bottom: 15px;
}

.user-abailable-table li:last-child {
  margin-bottom: 0;
}

.user-abailable-table li img {
  width: 15px;
  margin-right: 5px;
}

.timing-hours {
  float: right;
}

.tags-container li a {
  display: block;
  margin-bottom: 5px;
}

.widget-social li {
  display: inline;
  float: left;
  padding-right: 10px;
  margin-bottom: 0 !important;
}

.widget-social li:last-child {
  padding-right: 0;
}

.widget-social li.lp-fb a {
  background-color: #3b5998;
}

.widget-social li.lp-tw a {
  background-color: #5ac6ea;
}

.widget-social li.lp-li a {
  background-color: #3b6dac;
}

.widget-social li a:hover {
  opacity: 0.7;
}

.widget-social li:nth-child(1):nth-last-child(1) {
  width: 100%;
}

.widget-social li:nth-child(1):nth-last-child(2),
.widget-social li:nth-child(2):nth-last-child(1) {
  width: 50%;
}

.widget-social li:nth-child(1):nth-last-child(3),
.widget-social li:nth-child(2):nth-last-child(2),
.widget-social li:nth-child(3):nth-last-child(1) {
  width: 33.3333%;
}

.widget-social li:nth-child(1):nth-last-child(4),
.widget-social li:nth-child(2):nth-last-child(3),
.widget-social li:nth-child(3):nth-last-child(2),
.widget-social li:nth-child(4):nth-last-child(1) {
  width: 25%;
}

.list-st-img li {
  margin-bottom: 10px;
}

.list-st-img li:last-child {
  margin-bottom: 0;
}

.list-st-img li a {
  display: block;
  padding-bottom: 7px;
  padding-left: 12px;
  padding-top: 11px;
  border-radius: 5px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-contact-info .list-st-img li a {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.list-st-img li a .cat-icon {
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.list-st-img li a .cat-icon img {
  width: 18px;
}

.price-plan-box {
  overflow: hidden;
  margin-bottom: 50px;
}

.price-plan-box-upper {
  padding: 10px 40px 40px 40px;
}

.price-plan-box-upper h1 span,
.price-plan-box-upper p span {
  color: #fff !important;
}

.price-plan-box-bottom {
  padding: 30px;
}

.price-plan-content ul li {
  display: inline-block;
  margin-right: 30px;
  line-height: 43px;
}

.price-plan-content ul li:last-child {
  margin-right: 0;
}

.price-plan-content ul li img {
  width: 18px;
  margin-right: 5px;
}

.ui-accordion .ui-accordion-header span {
  margin-right: 12px;
}

.checkbox label:before {
  background-color: #ababab;
}

.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 3px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border-radius: 2px;
}

.radio label,
.checkbox label {
  padding-left: 32px;
}

input[type="checkbox"]:checked + label:before {
  content: "\f00c";
  text-align: center;
  line-height: 20px;
  font-family: FontAwesome;
  color: #7f7f7f;
  background-color: transparent;
  border: 1px solid #7f7f7f;
}

.checkbox label {
  font-weight: 400;
}

.lp-form-row-left {
  width: 60%;
}

.lp-form-row-left p {
  display: inline-block;
  margin-left: 20px;
}

.not-logged-in-msg {
  width: 100% !important;
}

.not-logged-in-msg > p {
  vertical-align: middle;
  margin-bottom: 0;
}

.lp-form-row-right {
  width: 40%;
}

.featuresDataContainer {
  position: relative;
}

.featuresData {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.featuresDataselected {
  opacity: 1;
  visibility: visible;
}

.featuresDataRow {
  display: none;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
}

.btn-file input[readonly] {
  background-color: white !important;
  cursor: text !important;
}

.post-submit .chosen-container-single .chosen-single span {
  margin-right: 0;
}

.postSubmitCat.border-dropdown span:after {
  top: 17px;
}

.lp-search-bar .chosen-container-single .chosen-single {
  padding: 0 0 0 15px;
  height: 46px;
  border: 0 solid #e3e3e3;
  color: #a6a6a6;
  border-radius: 0;
  line-height: 46px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.lp-blog-grid-container .lp-blog-user-thumb {
  border-radius: 50%;
  height: 50px;
  margin: -25px auto 0;
  overflow: hidden;
  width: 50px;
}

.post-submit .ui-tabs .ui-tabs-panel {
  padding: 0 !important;
}

.post-submit .ui-widget-header {
  border-top: 0 solid #d3d3d3;
}

.post-submit .ui-widget {
  margin-top: 25px;
}

.post-submit .ui-tabs .ui-tabs-nav {
  margin-top: 0;
  padding: 0 !important;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
}

.post-submit .ui-tabs .ui-tabs-nav li {
  border-top: 0;
  margin-bottom: 5px;
  margin-right: 5px;
  margin-left: 5px;
}

.post-submit .ui-tabs .ui-tabs-nav li a {
  background-color: #41a6df;
  color: #fff;
  border-radius: 5px;
  text-align: center;
}

.post-submit .ui-tabs .ui-tabs-nav li.ui-state-active a {
  background-color: #363f48;
}

.post-submit .ui-tabs .ui-tabs-nav li.ui-state-active {
  margin-bottom: 4px !important;
}

#tabsbtn {
  cursor: pointer;
  display: inline;
  float: left;
  margin-left: 15px;
  margin-top: 1px;
  padding: 7px 22px;
  margin-bottom: 0;
}

.btn-container ul {
  float: left;
}

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

.about-box-inner {
  padding-top: 40px;
  padding-left: 23px;
  padding-right: 23px;
  padding-bottom: 30px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  max-height: 254px;
}

.about-box-icon {
  width: 68px;
  height: 68px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.09, 0.68, 0.53);
  -moz-transition: all 0.6s cubic-bezier(0.55, 0.09, 0.68, 0.53);
  -o-transition: all 0.6s cubic-bezier(0.55, 0.09, 0.68, 0.53);
  transition: all 0.6s cubic-bezier(0.55, 0.09, 0.68, 0.53);
  position: relative;
}

.about-box-icon i {
  color: #fff;
  line-height: 68px;
}

.about-box-icon img {
  width: 34px;
}

.about-box {
  margin-bottom: 30px;
}

.about-box-title {
  margin-top: 10px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.about-box-slide {
  position: relative;
}

.about-gallery-box {
  margin-bottom: 30px;
}

.about-box-inner:hover .about-box-icon {
  -webkit-transform: translateY(-75px);
  -moz-transform: translateY(-75px);
  -o-transform: translateY(-75px);
  transform: translateY(-75px);
}

.about-box-description {
  height: 60px;
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.about-box-inner:hover .about-box-description {
  height: 104px;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}

.about-box-inner:hover .about-box-title {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}

.contact-left {
  width: calc(100% - 650px);
  float: left;
}

.contact-right {
  width: 650px;
  float: right;
  padding-left: 30px;
  padding-right: 30px;
}

.contactmap {
  height: 832px;
  overflow: hidden;
}

.address-box p i {
  margin-right: 5px;
}

.contact-social {
  margin-top: 13px;
}

#contact {
  position: relative;
}

#success,
#error {
  display: none;
  position: absolute;
  bottom: -75px;
  left: 0;
}

#success span,
#error span {
  display: block;
}

#success span p {
  color: #fff;
  background-color: #41a6df;
  border-radius: 5px;
  padding: 10px 10px;
}

#error span p {
  color: #fff;
  background-color: #c0392b;
  border-radius: 5px;
  padding: 10px 10px;
}

.login-form-popup {
  width: 556px;
  margin: 0 auto;
  position: relative;
  min-height: 557px;
}

.siginincontainer,
.siginupcontainer,
.forgetpasswordcontainer {
  position: absolute !important;
  top: 0;
  left: 0;
  padding: 37px;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 0;
  padding-bottom: 25px;
  width: 100%;
}

.siginincontainer h3,
.siginupcontainer h3,
.forgetpasswordcontainer h3 {
  font-size: 30px;
}

.social-login li {
  display: inline-block;
  margin-right: 4px;
}

.social-login li:last-child {
  margin-right: 0;
}

.social-login li button,
.social-login li a {
  display: block;
  float: left;
  margin: 0;
  border-radius: 2px;
  position: relative;
  color: #fff;
  padding: 1px;
  text-align: left;
  width: 160px;
  border: 0;
  padding: 10px;
}

.social-login li button:hover,
.social-login li a:hover {
  opacity: 1;
}

.social-login li button span,
.social-login li a span {
  color: #fff;
  font-weight: 700;
  margin-left: 3px;
  text-transform: capitalize;
}

.social-login li button .lp-pop-icon-img,
.social-login li a .lp-pop-icon-img {
  padding: 2px 5px;
  margin: 0;
  border-radius: 2px;
  background: #fff;
}

.social-login li button .lp-pop-icon-img img,
.social-login li a .lp-pop-icon-img img {
  width: 15px;
}

.google {
  background-color: #db402c;
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #55acee;
}

.pop-form-bottom {
  margin-left: -15px;
  margin-right: -15px;
}

.login-form-popup .md-close {
  display: block !important;
}

.md-trigger {
  cursor: pointer;
}

.siginupcontainer {
  display: none;
}

.forgetpasswordcontainer {
  display: none;
}

.bottom-links a {
  cursor: pointer;
}

.iconsmalltext {
  line-height: 38px;
  font-weight: 100;
  color: rgb(65, 166, 223);
  margin-top: 0;
  position: relative;
  top: 2px;
}

.iconsmalltext:hover {
  color: rgb(65, 166, 223);
}

.pg-404-tit {
  padding: 0;
  margin-bottom: 0;
}

[data-tooltip] {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[data-tooltip]:before {
  content: "";
  border: 6px solid transparent;
}

[data-tooltip]:after {
  border-radius: 3px;
  content: attr(data-tooltip);
  font-size: 13px;
  height: 22px;
  line-height: 22px;
  padding: 1px 11px;
  white-space: nowrap;
  font-weight: 500;
}

[data-tooltip]:hover,
[data-tooltip]:focus {
  background-color: transparent;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
  opacity: 1;
  visibility: visible;
}

.simptip-position-right:before,
.simptip-position-left:before,
.simptip-position-right:after,
.simptip-position-left:after {
  bottom: 50%;
}

.simptip-position-right:before,
.simptip-position-left:before {
  margin-bottom: -5px;
}

.simptip-position-right:after,
.simptip-position-left:after {
  margin-bottom: -14.66667px;
}

.half-arrow.simptip-position-right:before,
.half-arrow.simptip-position-left:before {
  bottom: 16px;
  border-style: none;
  border-top: 7px solid transparent;
}

.simptip-multiline.simptip-position-right:before,
.simptip-multiline.simptip-position-left:before,
.simptip-multiline.simptip-position-right:after,
.simptip-multiline.simptip-position-left:after {
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-filter: blur(0);
  filter: blur(0);
  margin-bottom: 0;
}

.simptip-multiline.simptip-position-right:before,
.simptip-multiline.simptip-position-left:before {
  margin-bottom: 0;
}

.simptip-multiline.half-arrow.simptip-position-right:before,
.simptip-multiline.half-arrow.simptip-position-left:before {
  margin-bottom: -2px;
}

.simptip-position-right:before,
.simptip-position-right:after {
  left: 100%;
}

.simptip-position-right:before {
  margin-left: -2px;
}

.simptip-position-right:after {
  margin-left: 10px;
}

.simptip-position-right.simptip-movable:before {
  margin-left: -10px;
}

.simptip-position-right.simptip-movable:after {
  margin-left: 2px;
}

.simptip-position-right.simptip-movable:hover:before,
.simptip-position-right.simptip-movable:hover:after {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}

.simptip-position-right.simptip-movable.half-arrow:before {
  margin-left: -5px;
}

.simptip-position-right.simptip-movable.simptip-multiline:hover:before,
.simptip-position-right.simptip-movable.simptip-multiline:hover:after {
  -webkit-transform: translate(10px, 50%);
  -moz-transform: translate(10px, 50%);
  -ms-transform: translate(10px, 50%);
  -o-transform: translate(10px, 50%);
  transform: translate(10px, 50%);
}

.simptip-position-right.half-arrow:before {
  margin-left: 3px;
  border-right: 7px solid #323232;
}

.simptip-position-left:before,
.simptip-position-left:after {
  right: 100%;
}

.simptip-position-left:before {
  margin-right: -2px;
}

.simptip-position-left:after {
  margin-right: 10px;
}

.simptip-position-left.simptip-movable:before {
  margin-right: -10px;
}

.simptip-position-left.simptip-movable:after {
  margin-right: 2px;
}

.simptip-position-left.simptip-movable:hover:before,
.simptip-position-left.simptip-movable:hover:after {
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}

.simptip-position-left.simptip-movable.half-arrow:before {
  margin-right: -5px;
}

.simptip-position-left.simptip-movable.simptip-multiline:hover:before,
.simptip-position-left.simptip-movable.simptip-multiline:hover:after {
  -webkit-transform: translate(-10px, 50%);
  -moz-transform: translate(-10px, 50%);
  -ms-transform: translate(-10px, 50%);
  -o-transform: translate(-10px, 50%);
  transform: translate(-10px, 50%);
}

.simptip-position-left.half-arrow:before {
  margin-right: 3px;
  border-left: 7px solid #323232;
}

.simptip-position-bottom:before,
.simptip-position-top:before,
.simptip-position-bottom:after,
.simptip-position-top:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.simptip-position-bottom:after,
.simptip-position-top:after {
  width: auto;
}

.half-arrow.simptip-position-bottom:before,
.half-arrow.simptip-position-top:before {
  border-style: none;
  border-right: 7px solid #323232;
}

.simptip-position-bottom:before,
.simptip-position-bottom:after {
  top: 100%;
}

.simptip-position-bottom:before {
  margin-top: -5px;
}

.simptip-position-bottom:after {
  margin-top: 7px;
}

.simptip-position-bottom:hover:before,
.simptip-position-bottom:hover:after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.simptip-position-bottom.simptip-movable:before {
  margin-top: -15px;
}

.simptip-position-bottom.simptip-movable:after {
  margin-top: -3px;
}

.simptip-position-bottom.simptip-movable:hover:before,
.simptip-position-bottom.simptip-movable:hover:after {
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
}

.simptip-position-bottom.simptip-movable.half-arrow:before {
  margin-top: -10px;
}

.simptip-position-bottom.half-arrow:before {
  margin-top: 0;
  border-top: 7px solid transparent;
}

.simptip-position-top:before,
.simptip-position-top:after {
  bottom: 70%;
}

.simptip-position-top:before {
  margin-bottom: -5px;
}

.simptip-position-top:after {
  margin-bottom: 7px;
}

.simptip-position-top:hover:before,
.simptip-position-top:hover:after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.simptip-position-top.simptip-movable:before {
  margin-bottom: -4px;
}

.simptip-position-top.simptip-movable:after {
  margin-bottom: 3px;
  border-radius: 5px;
}

.simptip-position-top.simptip-movable:hover:before,
.simptip-position-top.simptip-movable:hover:after {
  -webkit-transform: translate(-50%, -10px);
  -moz-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  -o-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}

.simptip-position-top.simptip-movable.half-arrow:before {
  margin-bottom: -10px;
}

.simptip-positiong-top.half-arrow:before {
  margin-bottom: 0;
  border-bottom: 7px solid transparent;
}

.simptip-movable:before,
.simptip-movable:after {
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.simptip-smooth:after {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.simptip-fade:before,
.simptip-fade:after {
  -webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
  -moz-transition: opacity 0.2s linear, visibility 0.2s linear;
  -o-transition: opacity 0.2s linear, visibility 0.2s linear;
  -ms-transition: opacity 0.2s linear, visibility 0.2s linear;
  transition: opacity 0.2s linear, visibility 0.2s linear;
}

.simptip-multiline:after {
  height: auto;
  width: 240px;
  padding: 11px;
  line-height: 19px;
  white-space: normal;
  text-align: left;
}

.simptip-success.simptip-position-top:before {
  border-top-color: #62c462;
}

.simptip-success.simptip-position-top:after {
  background-color: #62c462;
  color: #ecf0f1;
}

.simptip-success.simptip-position-bottom:before {
  border-bottom-color: #62c462;
}

.simptip-success.simptip-position-bottom:after {
  background-color: #62c462;
  color: #ecf0f1;
}

.simptip-success.simptip-position-left:before {
  border-left-color: #62c462;
}

.simptip-success.simptip-position-left:after {
  background-color: #62c462;
  color: #ecf0f1;
}

.simptip-success.simptip-position-right:before {
  border-right-color: #62c462;
}

.simptip-success.simptip-position-right:after {
  background-color: #62c462;
  color: #ecf0f1;
}

.simptip-success.simptip-position-top.half-arrow:before {
  border-right: 7px solid #62c462;
}

.simptip-success.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #62c462;
}

.simptip-info.simptip-position-top:before {
  border-top-color: #5bc0de;
}

.simptip-info.simptip-position-top:after {
  background-color: #5bc0de;
  color: #ecf0f1;
}

.simptip-info.simptip-position-bottom:before {
  border-bottom-color: #5bc0de;
}

.simptip-info.simptip-position-bottom:after {
  background-color: #5bc0de;
  color: #ecf0f1;
}

.simptip-info.simptip-position-left:before {
  border-left-color: #5bc0de;
}

.simptip-info.simptip-position-left:after {
  background-color: #5bc0de;
  color: #ecf0f1;
}

.simptip-info.simptip-position-right:before {
  border-right-color: #5bc0de;
}

.simptip-info.simptip-position-right:after {
  background-color: #5bc0de;
  color: #ecf0f1;
}

.simptip-info.simptip-position-top.half-arrow:before {
  border-right: 7px solid #5bc0de;
}

.simptip-info.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #5bc0de;
}

.simptip-danger.simptip-position-top:before {
  border-top-color: #e74c3c;
}

.simptip-danger.simptip-position-top:after {
  background-color: #e74c3c;
  color: #ecf0f1;
}

.simptip-danger.simptip-position-bottom:before {
  border-bottom-color: #e74c3c;
}

.simptip-danger.simptip-position-bottom:after {
  background-color: #e74c3c;
  color: #ecf0f1;
}

.simptip-danger.simptip-position-left:before {
  border-left-color: #e74c3c;
}

.simptip-danger.simptip-position-left:after {
  background-color: #e74c3c;
  color: #ecf0f1;
}

.simptip-danger.simptip-position-right:before {
  border-right-color: #e74c3c;
}

.simptip-danger.simptip-position-right:after {
  background-color: #e74c3c;
  color: #ecf0f1;
}

.simptip-danger.simptip-position-top.half-arrow:before {
  border-right: 7px solid #e74c3c;
}

.simptip-danger.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #e74c3c;
}

.simptip-warning.simptip-position-top:before {
  border-top-color: #e67e22;
}

.simptip-warning.simptip-position-top:after {
  background-color: #e67e22;
  color: #ecf0f1;
}

.simptip-warning.simptip-position-bottom:before {
  border-bottom-color: #e67e22;
}

.simptip-warning.simptip-position-bottom:after {
  background-color: #e67e22;
  color: #ecf0f1;
}

.simptip-warning.simptip-position-left:before {
  border-left-color: #e67e22;
}

.simptip-warning.simptip-position-left:after {
  background-color: #e67e22;
  color: #ecf0f1;
}

.simptip-warning.simptip-position-right:before {
  border-right-color: #e67e22;
}

.simptip-warning.simptip-position-right:after {
  background-color: #e67e22;
  color: #ecf0f1;
}

.simptip-warning.simptip-position-top.half-arrow:before {
  border-right: 7px solid #e67e22;
}

.simptip-warning.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #e67e22;
}

.lp-list-view {
  margin-bottom: 30px;
}

.lp-list-view-thumb,
.lp-list-view-content,
.lp-list-view-paypal {
  padding: 30px 0 30px 30px;
  display: inline-block;
  vertical-align: top;
}

.list-pt-display li {
  float: left;
  margin-right: 25px;
}

.lp-list-view-content-upper {
  min-height: 170px;
}

.list-pt-display li span,
.lp-list-view .lp-grid-box-price {
  color: #9e9e9e;
}

.lp-list-sp-icon {
  margin-right: 3px;
}

.lp-list-view-paypal {
  background-color: #41a6df;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  height: 294px;
  position: relative;
  width: 257px;
  text-align: center;
  padding-right: 30px;
  color: #fff;
  float: right;
}

.lp-list-view-paypal h4,
.lp-list-view-paypal p {
  color: #fff;
}

p.lp-list-view-paypal-tit {
  color: #fff;
  font-weight: 700;
}

.lp-list-view-edit {
  float: left;
  padding: 10px 21px;
}

.lp-list-view-edit li {
  float: left;
}

.lp-list-view-edit li a {
  border-right: 1px solid #dfdfdf;
  padding: 0 10px;
  color: #616161;
}

.lp-list-view-edit li:last-child a {
  border-right: 0;
}

.lp-list-view-edit li a i {
  margin-right: 6px;
}

.lp-list-view-edit li a:hover {
  color: #41a6df;
}

.lp-list-view-paypal h4 {
  margin-bottom: 4px;
}

.lp-list-view-paypal p span {
  font-weight: 400;
}

.lp-list-pay-btn a {
  width: 154px;
  height: 40px;
  background-color: #fff;
  float: left;
  line-height: 40px;
  color: #484848;
}

.lp-list-pay-btn {
  margin-top: 17px;
  float: left;
  text-align: center;
  margin-left: 0;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  transform: translate(-50%);
}

.lp-list-view-content {
  width: 560px;
}

.lp-list-view-content-upper h4,
.lp-list-view-paypal-inner h4 {
  margin-top: 0;
}

.lp-list-view-paypal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lp-list-view-select .lp-home-locaton-input,
.lp-list-view-select .chosen-container-single .chosen-single {
  border-radius: 5px;
  background-color: #ededed;
  color: #7f7f7f;
  text-align: left;
}

.lp-list-view-select .chosen-container-single .chosen-single {
  height: 46px;
  line-height: 46px;
  border: 0;
}

.chosen-container .chosen-results {
  text-align: left;
}

.lp-list-view-select .chosen-container-single.chosen-with-drop .chosen-single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.lp-list-view-select .chosen-container-single .chosen-single span {
  margin-right: 0;
}

.author-page .ui-autocomplete li {
  background-color: #ededed;
  color: #7f7f7f;
}

.author-page .border-dropdown span:after {
  color: #7f7f7f;
}

.lp-list-pay-btn a:hover {
  background-color: #363f48;
  color: #fff;
}

.author-page .ui-autocomplete li:hover {
  border-bottom-color: #fff !important;
}

.footer-upper-bar {
  padding: 25px 0 25px 0;
}

.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}

.footer-menu li:before {
  content: "";
  position: absolute;
  left: -17px;
  top: 9px;
  color: #fff;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}

.footer-menu li:first-child:before {
  display: none;
}

.footer-bottom-bar {
  padding: 25px 0;
}

.footer-about-company {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-about-company li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  color: #96a0a9;
}

.footer-about-company li:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 9px;
  color: #fff;
  width: 5px;
  height: 5px;
  background-color: #96a0a9;
  border-radius: 50%;
}

.credit-links {
  color: #96a0a9;
  margin-top: 10px;
  margin-bottom: 0;
}

.credit-links a {
  color: #96a0a9;
}

.credit-links a:hover {
  color: #fff;
}

.footer-about-company li:first-child:before {
  display: none;
}

.footer-social-icons {
  margin-top: 30px;
}

.footer-social-icons li {
  margin-right: 3px;
}

.footer-social-icons li img {
  width: 28px;
  height: 28px;
}

.add-listing-mobile {
  display: none;
}

.notification {
  border-radius: 3px;
  margin: 20px 0;
  min-height: 52px;
  padding: 0;
  position: relative;
  width: 100%;
}

.notification p {
  color: #27ae60;
  float: left;
  line-height: 50px;
  margin: 0;
}

.notification .noti-icon {
  border-radius: 0;
  float: left;
  height: 51px;
  line-height: 51px;
  margin-right: 30px;
  position: relative;
  text-align: center;
  width: 52px;
}

.notification .noti-icon:before {
  font-family: FontAwesome;
  width: 32px;
  height: 32px;
  color: #fff;
}

.success .noti-icon {
  background-color: #27ae60;
}

.error .noti-icon {
  background: #d54040;
}

.info .noti-icon {
  background: #4789d3;
}

.warning .noti-icon {
  background: #ff892a;
}

.success {
  background-color: #dbf1d6;
  border: 1px solid #27ae60;
}

.success .noti-icon:before {
  content: "\f00c";
}

.error {
  background: #fccac1;
  border: 1px solid #eb5439;
}

.error:after {
  border-color: #fccac1 #fccac1 transparent transparent;
}

.error::before {
  border-color: #eb5439 #eb5439 transparent transparent;
}

.error .noti-icon:before {
  content: "\f00d";
}

.info {
  background: #d1e4f3;
  border: 1px solid #4d8fcb;
  position: relative;
}

.info:after {
  border-color: #d1e4f3 #d1e4f3 transparent transparent;
}

.info::before {
  border-color: #4d8fcb #4d8fcb transparent transparent;
}

.info .noti-icon:before {
  content: "\f129";
}

.warning {
  background: #ffe9ad;
  border: 1px solid #fab418;
  position: relative;
}

.warning:after {
  border-color: #ffe9ad #ffe9ad transparent transparent;
}

.warning::before {
  border-color: #fab418 #fab418 transparent transparent;
}

.warning .noti-icon:before {
  content: "\f071";
}

.favourite-grid .remove-fav {
  position: absolute;
  top: 0;
  right: 0;
}

p.status {
  margin-left: -15px;
}

.listing-app-view p.status {
  margin-left: 0;
  margin-bottom: 0;
}

.listing-app-view p.status span {
  margin-top: 0 !important;
}

.lp-section-content-container .nearby-description {
  max-width: 545px;
  margin: 0 auto;
}

.formsubmitting {
  visibility: hidden;
}

.lp-menu ul li.page_item_has_children::after,
.lp-menu ul li.menu-item-has-children::after {
  content: "\f107";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  margin-left: 4px;
}

.lp-menu
  ul
  li.page_item_has_children
  .children
  li.page_item_has_children::after,
.lp-menu
  ul
  li.menu-item-has-children
  .sub-menu
  li.menu-item-has-children::after {
  content: "";
  display: none;
}

.lp-menu ul.children::after,
.lp-menu ul > li > ul.sub-menu > li > ul.sub-menu::after {
  display: none;
}

.lp-menu ul.children:after,
.lp-menu ul.sub-menu:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: -9px;
  left: 13px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

.lp-menu .children .menu-item-has-children li a:after,
.lp-menu .children .page_item_has_children li a:after,
.lp-menu .sub-menu .menu-item-has-children li a:after {
  content: "";
  display: none;
}

.lp-home-banner-contianer-inner {
  z-index: 9;
}

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

.solitaire-infinite-scroll {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
}

.solitaire-infinite-scroll .no-more,
.solitaire-infinite-scroll .loading {
  display: none;
}

.solitaire-infinite-scroll a,
.solitaire-infinite-scroll a:focus {
  border: 1px solid;
  padding: 8px 20px;
}

.solitaire-infinite-scroll .loading {
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/loading.GIF);
  width: 64px;
  height: 64px;
  border: none;
  padding: 0;
}

.lploading {
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/ajax-load.gif);
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  position: absolute;
  z-index: 9999;
  background-color: #000;
  opacity: 0.5;
  display: none;
}

.md-overlay {
  z-index: 99999999 !important;
}

.lp-listing-form h3 {
  text-align: center;
  margin-bottom: 45px;
}

.lp-checkout-wrapper {
  background-color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #ececec;
  margin-bottom: 30px;
}

.lp-checkout-wrapper .lp-booking-dt,
.lp-checkout-wrapper .lp-persons,
.lp-checkout-wrapper .lp-duration,
.lp-checkout-wrapper .lp-booking-type {
  text-transform: uppercase;
}

.lp-rightbnk-transfer-msg {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ececec;
}

.lp-rightbnk-transfer-msg label {
  letter-spacing: 2px;
  line-height: 43px;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}

.lp-rightbnk-transfer-msg input[type="radio"] {
  margin-right: 5px;
}

.lp-tranfer-info {
  color: #949494;
  line-height: 25px;
}

.lp-user-listings {
  border-bottom: solid 1px #ececec;
  width: 100%;
  float: none;
  padding: 20px 0;
}

.lp-user-listings:last-child {
  border: none;
}

.lp-listing-form .radio.radio-danger {
  width: 23px;
  height: 23px;
  border: 1px solid #ececec;
  display: inline-block;
  margin-top: 5px;
  margin-right: 10px;
  float: left;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #f9f9f9;
}

.lp-listing-form input[type="radio"] {
  opacity: 0;
}

.lp-listing-form .radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}

.lp-listing-form input[type="radio"] {
  width: inherit;
  height: inherit;
  margin-left: 0;
}

.lp-listing-form input[type="radio"]:hover {
  cursor: pointer;
}

.lp-listing-form input[type="radio"]:checked + label:before {
  background-color: #41a6df;
  border: medium none;
  color: #7f7f7f;
  content: "";
  height: 18px;
  left: 22px;
  top: -5px;
  width: 18px;
}

.lp-listing-form .radio label {
  padding: 0;
  color: transparent;
}

.lp-listing-form .radio label:before {
  background-color: transparent;
  border: none;
  top: 2px;
  left: 2px;
}

.lp-listing-form .radio label:before {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

.checkbox label:before {
  background-color: #ababab;
}

.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 3px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border-radius: 2px;
}

.radio label,
.checkbox label {
  padding-left: 32px;
}

input[type="checkbox"]:checked + label:before {
  content: "\f00c";
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  font-family: FontAwesome;
  color: #7f7f7f;
  background-color: transparent;
  border: 1px solid #7f7f7f;
}

.checkbox label {
  font-weight: 400;
}

.lp-rightbnk-transfer-msg .lp-tranfer-info {
  margin-left: 35px;
}

.formfields input[type="text"] {
  border: 1px solid #ececec;
  line-height: 48px;
  padding-left: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.formfields label,
.formfields input[type="text"] {
  width: 100%;
}

.lp-listing-form input[type="submit"] {
  background: #41a6df;
  color: #fff;
  height: 46px;
  border-radius: 5px;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  padding-left: 18px;
  padding-right: 18px;
}

.lp-listing-form .lp-listing-clm h5 {
  width: 428px;
  float: right;
  max-width: 428px;
}

.lp-listing-form .lp-listing-clm div {
  padding: 0;
}

.lp-listing-form .lp-listing-clm img {
  padding-right: 10px;
}

.lp-tabs .lp-list-cnt {
  margin-left: -30px;
}

.lp-tabs .lp-list-view-thumb {
  padding: 10px 0 0 0 !important;
}

.lp-list-cnt .lp-list-view-content-upper {
  min-height: unset;
  padding-bottom: 0;
}

.lp-tabs .lp-rigt-icons {
  padding: 0 10px;
}

.lp-tabs .lp-rigt-icons .lp-list-view-edit {
  padding: 10px 10px;
  float: right;
}

.lp-tabs .lp-list-view-content {
  width: auto;
  max-width: 100%;
}

.lp-main-tabs .nav-tabs > li > a:focus::after {
  border-bottom-color: #fff;
}

.lp-main-tabs li a:focus {
  background-color: transparent;
}

.lp-tabs {
  border: 0;
  margin: 0;
  width: auto;
  box-shadow: none;
}

.lp-tabs .nav.nav-tabs li {
  margin-bottom: 8px;
}

.lp-tabs .panel-heading li a:after {
  border: transparent;
}

.lp-tabs .panel-heading li a:hover {
  cursor: pointer;
}

.lp-tabs .lp-list-view {
  padding: 0;
}

.lp-tabs .panel-heading {
  color: #333;
  background-color: transparent;
  border: 0;
  background: #eff3f6 !important;
  padding: 0;
}

.lp-tabs .tab-content {
  padding-top: 0;
}

.lp-tabs .panel-body {
  padding: 0 15px;
}

.lp-tabs .panel-heading li a h4 {
  padding: 0;
  margin: 0;
  color: #292929 !important;
}

.lp-tabs .panel-heading li a {
  background-color: #fff;
  margin-right: 5px;
  padding: 6px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.lp-tabs .panel-heading li.active a h4 {
  color: #fff !important;
}

.lp-tabs .panel-heading li.active a {
  background-color: #41a6df !important;
}

.lp-tabs .panel-body {
  background: #eff3f6;
}

.lp-tabs .lp-list-view-inner-contianer {
  border-bottom: 1px solid #dedede;
}

.lp-tabs .lp-list-view:last-of-type .lp-list-view-inner-contianer {
  border-bottom: none;
}

.dashboard-contnt {
  padding-left: 15px;
  padding-right: 15px;
}

.lp-invoice-table {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.lp-invoice-table th,
.lp-invoice-table td {
  padding: 20px 15px;
  vertical-align: middle;
}

.lp-invoice-table tbody tr td {
  border-top: 1px solid #ddd;
  padding: 10px 15px;
}

.lp-invoice-table tbody tr:hover {
  background: #eff3f6;
}

.lp-invoice-table tr td a {
  border-radius: 5px;
  background: #41a6df;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  line-height: 32px;
  padding: 0 15px;
  vertical-align: middle;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  float: right;
}

.lp-list-detail {
  background: #fff;
  padding: 20px;
}

.lp-list-detail .lp-list-date p {
  line-height: 22px;
  margin: 0;
}

.lp-modal-list {
  z-index: 9999999999;
  background: #fff;
  width: 620px;
  left: 25%;
  top: 25px;
  bottom: 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.lp-modal-list button.close {
  height: auto;
  text-align: center;
  display: block;
}

.lp-modal-list .lp-print-list {
  float: right;
  background: #41a6df;
  width: 70px;
  line-height: 32px;
  height: 32px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  vertical-align: middle;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
}

.lp-modal-list .lp-print-list:hover {
  background: #363f48;
}

.lp-list-detail .invoice-total {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.lp-tabs .lp-pay-publsh:hover {
  background-color: #363f48 !important;
}

.lp-tabs .lp-pay-publsh {
  background: #41a6df;
  border: 0;
  color: #fff;
  border-radius: 5px;
  padding: 10px 23px;
  font-weight: 700;
  font-family: "Quicksand","Quicksand Fallback";
  margin-top: 20px;
  float: right;
}

.lp-main-tabs .nav-tabs > li {
  margin-bottom: -5px;
}

.aligncenter {
  float: none !important;
  margin: 0 auto;
}

.dashboard-tabs.lp-main-tabs .nav-tabs {
  display: inline-block;
}

.lp-tabs .lp-list-view-thumb,
.lp-tabs .lp-list-view-content,
.lp-tabs .lp-list-view-paypal {
  padding: 20px 0 10px 0;
}

.lp-tabs .list-pt-display li {
  margin-right: 15px;
}

.lp-tabs .lp-list-view-thumb {
  padding: 10px 0 0 15px;
  float: left;
}

.lp-posi {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.lp-tabs .lp-list-cnt .lp-grid-box-price .category-cion {
  margin-right: 0;
}

.lp-tabs .lp-list-cnt .lp-grid-box-price li:last-child {
  margin-left: 8px;
}

.vcenter1 {
  display: table-cell;
  float: none;
}

.vcenter {
  display: table-cell;
  vertical-align: middle;
  float: none;
  text-align: center;
}

.lp-listing-clm .lp-booking-dt,
.lp-listing-clm .lp-persons,
.lp-listing-clm .lp-duration,
.lp-listing-clm .lp-booking-type {
  border-bottom: 1px solid #dedede;
  float: left;
  font-size: 13px;
  font-weight: 600;
  line-height: 27px;
  width: 100%;
}

.lp-user-listings.clearfix .lp-listing-clm .col-md-2 p {
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  margin-bottom: 0;
  padding: 6px 1px 0 0;
}

.lp-listing-form .lp-listing-clm .radio.radio-danger {
  float: right;
  margin-right: 0;
}

.lp-tabs .lp-list-view .lp-list-view-content-upper h4,
.lp-tabs .lp-list-view .lp-list-view-paypal-inner h4 {
  margin-bottom: 8px;
}

.lp-tabs .lp-list-view .list-pt-display {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.lp-pay-options ul {
  padding: 0;
  margin: 0;
}

.lp-pay-options > ul > li {
  list-style-type: none;
  display: block;
  line-height: 27px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.lp-pay-options {
  padding: 0;
}

.lp-pay-options .promotebtn {
  color: #fff;
  float: right;
  padding: 5px 20px;
  position: relative;
  text-transform: capitalize;
}

.lp-pay-options .lp-promotebtn {
  color: #fff;
  width: 71px;
  float: right;
  padding: 3px;
}

.lp-flip {
  width: 100%;
  float: right;
}

.lp-flip .lp-pay-options {
  border-radius: 5px;
}

.lp-flip .lp-card {
  position: relative;
}

.lp-flip .lp-card .lp-front {
  float: left;
  width: 100%;
}

.lp-flip .lp-card .lp-back1,
.lp-flip .lp-card .lp-back2 {
  width: 100%;
  display: none;
}

.lp-inner {
  margin: 0 !important;
}

.lp-flip .lp-card .lp-front::-webkit-scrollbar-track,
.lp-flip .lp-card .lp-back1::-webkit-scrollbar-track,
.lp-flip .lp-card .lp-back2::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #f5f5f5;
}

.lp-flip .lp-card .lp-front::-webkit-scrollbar,
.lp-flip .lp-card .lp-back1::-webkit-scrollbar,
.lp-flip .lp-card .lp-back2::-webkit-scrollbar {
  width: 12px;
  background-color: #ddd;
}

.lp-flip .lp-card .lp-front::-webkit-scrollbar-thumb,
.lp-flip .lp-card .lp-back1::-webkit-scrollbar-thumb,
.lp-flip .lp-card .lp-back2::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ddd;
}

.lp-dropdown-menu #menu {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 1px 5px #ccc;
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 135%;
  width: 200px;
  z-index: 999;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: none;
}

.lp-dropdown-menu.open #menu {
  display: block;
}

.lp-dropdown-menu ul {
  border: 0;
  box-shadow: none;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  margin-bottom: 0;
}

.lp-dropdown-menu ul li a {
  line-height: 33px;
  display: block;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  color: #000;
}

.lp-dropdown-menu ul li a:hover {
  background: #41a6df;
  color: #fff;
}

.lp-dropdown-menu ul:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  top: -8px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  right: 20px;
}

.listing-second-view .post-meta-right-box .post-stat li {
  background-color: transparent;
  border: 1px solid #dbe7ef;
  border-radius: 5px;
  float: right;
  margin: 0 0 10px 9px;
  padding: 0;
}

.listing-second-view .post-meta-right-box .post-stat > li > a {
  float: left;
  margin-left: -2px;
  padding: 6px 20px 6px 21px;
  font-size: 12px !important;
}

.listing-second-view .post-meta-right-box .post-stat > li {
  background-color: #fff;
}

.listing-second-view .post-meta-right-box .post-stat li ul.social-icons {
  text-align: center;
}

.listing-second-view .post-meta-right-box .post-stat li ul.social-icons li {
  border: transparent;
  background-color: #aeaeae;
  border-radius: 3px;
  display: inline-block;
  float: none;
  height: 35px;
  margin: 0 6px;
  padding: 0;
  text-align: center;
  vertical-align: top;
  width: 35px;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li:first-of-type {
  margin-left: 0;
}

.listing-second-view .post-meta-right-box .post-stat li ul.social-icons li a {
  float: left;
  line-height: 35px;
  width: 100%;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa,
.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-brands {
  border-radius: 3px;
  color: #333;
  float: left;
  line-height: 34px !important;
  width: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.reviews.sbutton .md-overlay.show {
  opacity: 1;
  visibility: visible;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-facebook:hover {
  background-color: #3b5998;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-twitter:hover {
  background-color: #55acee;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-google-plus:hover {
  background-color: #e37167;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-linkedin:hover {
  background-color: #0077b5;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-pinterest:hover {
  background-color: #cb2027;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-reddit:hover {
  background-color: #ff4500;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-stumbleupon:hover {
  background-color: #eb4924;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa-delicious:hover {
  background-color: #205cc0;
}

.listing-second-view .social-icons.post-socials.smenu::after {
  border-bottom: 8px solid #fff;
  top: -10px;
  left: auto;
  right: 20px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  border-top: 0;
}

.listing-second-view .social-icons.post-socials.smenu:before {
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 9px solid #dedede;
  top: -9px;
  content: "";
  position: absolute;
  right: 19px;
}

.listing-second-view .content-white-area {
  background-color: #fff;
}

.listing-second-view a.secondary-btn {
  background-color: transparent;
  border: 1px solid #2458ff !important;
  color: #2458ff !important;
  font-size: 16px;
  height: 43px;
  line-height: 41px;
  width: 190px;
}

.listing-second-view a.secondary-btn i {
  color: #2458ff !important;
}

.listing-second-view a.secondary-btn:hover,
.listing-second-view a.secondary-btn:hover i {
  color: #fff !important;
  border: 1px solid #363f48 !important;
}

.lp_confirmation .list-st-img li a.edit-list > span img {
  float: left;
  margin-right: 5px;
  width: 16px;
}

.lp_confirmation .list-st-img li a.edit-list > span {
  color: #fff;
  display: inline-block;
  padding-top: 0;
  line-height: 14px;
  width: 100%;
}

.listing-second-view .post-price-row > li {
  color: #7f7f7f;
  float: left;
  font-size: 14px;
  line-height: 22px;
  margin-right: 15px;
}

.listing-second-view .online-booking-form {
  float: left;
  margin-bottom: 30px;
  width: 100%;
}

.listing-second-view .online-booking-form > a.onlineform {
  background-color: #363f48;
  border-radius: 3px;
  color: #fff;
  float: left;
  font-weight: 700;
  height: 59px;
  line-height: 59px;
  padding: 0 20px;
  width: 100%;
}

.listing-second-view .online-booking-form > a.onlineform.active,
.listing-second-view .online-booking-form > a.onlineform:hover {
  background-color: #41a6df;
}

.listing-second-view .listing-price.widget-box {
  border: 1px solid #dedede;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 14px 24px;
  width: 100%;
}

.listing-second-view .events-sidebar-wrap {
  float: left;
  width: 100%;
}

.listing-second-view .events-sidebar-wrap:before,
.listing-second-view .events-sidebar-wrap:after {
  content: "";
  clear: both;
}

.listing-second-view .online-booking-form > a.onlineform i {
  float: right;
  line-height: 59px;
}

.listing-second-view .widget-box {
  float: left;
  margin-bottom: 30px;
  padding: 0;
  width: 100%;
}

.listing-second-view .map-area {
  background-color: #fafafa;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  overflow: hidden;
  width: 100%;
}

.listing-second-view .post-meta-left-box h1 {
  font-size: 42px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.listing-second-view .map-area .list-st-img li a {
  background-color: transparent;
  color: #292929;
}

.listing-second-view .map-area .claim-area {
  padding-left: 28px;
  padding-top: 18px;
}

.listing-second-view .map-area .listing-detail-infos {
  margin-top: 5px;
}

.listing-second-view .map-area .listing-detail-infos ul li a {
  padding: 0 25px 16px;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  display: block;
}

.listing-second-view .map-area .listing-detail-infos ul li a span.cat-icon {
  border: medium none;
  border-radius: 0;
  display: inline-block;
  font-size: 18px;
  height: auto;
  vertical-align: middle;
  text-align: left;
  width: 30px;
}

ul.list-style-none.list-st-img li:last-child a span:last-child {
  color: #337ab7;
}

.listing-second-view .open-hours ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.listing-second-view .open-hours ul li {
  border-bottom: 1px solid #e3e3e3;
  color: #7f7f7f;
  line-height: 40px;
  width: 100%;
}

.listing-second-view .open-hours ul li:last-child {
  border: none;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .list-style-none.list-st-img
  > li {
  border-bottom: 1px solid #dedede;
  line-height: 34px;
  margin-bottom: 0;
  padding: 3px 0 6px;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .list-style-none.list-st-img
  > li:first-of-type {
  padding-top: 0;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .list-style-none.list-st-img
  > li:last-of-type {
  border-bottom: none;
}

.listing-second-view .open-hours h2 {
  line-height: normal;
}

.listing-second-view .open-hours ul li strong {
  font-size: 14px;
  text-transform: capitalize;
  line-height: 22px;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  > li
  > a
  i.fa-spinner::before {
  font-weight: 600;
}

.listing-second-view .open-hours ul.hidding-timings li strong {
  line-height: 40px;
}

.listing-second-view .open-hours ul li a,
.open-hours ul li span {
  font-size: 14px;
  margin-left: 5px;
}

.open-hours ul li span {
  float: right;
}

.listing-second-view .contact-form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.listing-second-view .contact-form ul li {
  float: left;
  margin-bottom: 15px;
  width: 100%;
}

.listing-second-view .contact-form input[type="text"],
.listing-second-view .contact-form input[type="email"],
.listing-second-view .contact-form textarea {
  background-color: #fafafa;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  padding: 0 15px;
  line-height: 36px;
  width: 100%;
}

.listing-second-view .contact-form input[type="text"]:focus,
.listing-second-view .contact-form input[type="email"]:focus,
.listing-second-view .contact-form textarea:focus {
  background-color: #fff;
}

.listing-second-view .contact-form textarea {
  height: 156px;
  resize: none;
}

.listing-second-view .contact-form ul li input[type="submit"] {
  background-color: #363f48;
  border: 1px solid #363f48;
  border-radius: 3px;
  color: #fff;
  float: left;
  font-weight: 700;
  height: 42px;
  text-align: center;
  width: 100%;
}

.listing-second-view .contact-form ul li input[type="submit"]:hover {
  background-color: transparent;
  color: #363f48;
}

.listing-second-view .post-meta-left-box h1 span.claimed {
  color: #7f7f7f;
  font-weight: 400;
  vertical-align: middle;
}

.popup-inner-left-padding .lp-grid-box-left h4.lp-h4 .verified,
.listing-second-view .post-meta-left-box h1 span.claimed i,
.lp-grid-box h4.lp-h4 span.verified {
  background-color: #2458ff;
  border-radius: 100%;
  color: #fff;
  display: inline-block;
  height: 15px;
  line-height: 15px;
  margin-top: -3px;
  text-align: center;
  vertical-align: middle;
  width: 15px;
}

.lp-grid-box ul {
  margin-bottom: 12px;
}

.listing-second-view .widget-box.business-contact {
  border: 1px solid #dedede;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 25px 25px;
}

.listing-second-view .widget-box.business-contact:last-child {
  margin-bottom: 0;
}

.listing-second-view .contact-form.quickform {
  display: block;
}

.listing-second-view .widget-box.business-contact .contact-form > h2,
.listing-second-view .widget-box.business-contact .contact-form > h2 a {
  margin-bottom: 25px;
  text-transform: capitalize;
}

.listing-second-view .widget-box.business-contact .contact-form > h2 {
  margin-top: 25px;
}

.listing-second-view .widget-box.business-contact .user_text {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}

.listing-second-view
  .widget-box
  .listing-second-view
  .widget-box.paid-listing
  h2 {
  margin-bottom: 20px;
}

.listing-second-view .widget-box.widget-video iframe {
  height: 420px;
}

.listing-second-view .listing-post article {
  background-color: #000;
  border-radius: 5px;
  float: left;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.listing-second-view
  .sidebar
  .widget_listingpro_ads_widget
  .listing-post
  article:last-child {
  margin-bottom: 0;
}

.listing-second-view .listing-post article figure {
  float: left;
  position: relative;
  width: 100%;
}

.listing-second-view .listing-post article figure img {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.listing-second-view .listing-post article:hover > figure img {
  opacity: 0.7;
}

.listing-second-view .listing-post article figure figcaption {
  border-radius: 5px;
  height: 100%;
  left: 0;
  padding: 10px 12px;
  position: absolute;
  top: 0;
  width: 100%;
}

.listing-second-view .listing-post article figure figcaption .listing-price {
  color: #fff;
  float: left;
  font-weight: 500;
}

.listing-second-view .listing-post article figure figcaption .listing-pro {
  background-color: #ebac2c;
  border-radius: 3px;
  color: #fff;
  float: right;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  padding: 0 3px 0 4px;
}

.listing-second-view .listing-post article figure figcaption .bottom-area {
  bottom: 0;
  left: 0;
  padding: 10px 12px;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .listing-cats {
  background-color: #41a6df;
  border-radius: 3px;
  float: left;
  margin-right: 10px;
}

.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .listing-cats
  a {
  color: #fff;
  font-weight: 500;
  float: left;
  padding: 0 8px;
  line-height: 24px;
  position: relative;
}

.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .listing-cats
  a::before {
  content: "/";
  float: left;
  text-align: left;
  width: 15px;
}

.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .listing-cats
  a:first-child::before {
  display: none;
}

.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .rate {
  background-color: #73cf42;
  border-radius: 2px;
  color: #fff;
  float: left;
  font-weight: 700;
  height: 24px;
  line-height: 24px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  width: auto;
}

.listing-second-view .listing-post article figure figcaption .bottom-area h4,
.listing-second-view .listing-post article figure figcaption .bottom-area h4 a {
  color: #fff;
  float: left;
  font-weight: 700;
  line-height: normal;
  margin: 2px 0 0;
  width: 100%;
}

.listing-page-sidebar
  .listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  h4
  a {
  font-weight: 500;
  font-size: 16px;
}

.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .listing-location,
.listing-second-view
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .listing-location
  p {
  color: #fff;
  float: left;
  line-height: normal;
  margin: 0;
  width: 100%;
}

.listing-second-view .widget-box.paid-listing,
.widget-box.viewed-listing {
  margin-bottom: 30px;
}

.widget-box.viewed-listing > h2 {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 0;
  text-transform: capitalizel;
  font-weight: 500;
}

.widget-box.viewed-listing > article {
  margin-bottom: 10px;
  width: 100%;
}

.widget-box.viewed-listing > article > figure {
  background-color: #000;
  float: left;
  border-radius: 5px;
  overflow: hidden;
  width: 90px;
}

.widget-box.viewed-listing > article > figure img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-box.viewed-listing > article:hover > figure img {
  opacity: 0.7;
}

.grid_view2 .lp-grid-box-description h4 {
  margin-top: 7px;
}

.widget-box.viewed-listing > article > .details {
  float: left;
  padding-left: 10px;
  max-width: 70%;
}

.widget-box.viewed-listing > article > .details > h4,
.widget-box.viewed-listing > article > .details > h4 a {
  color: #292929;
  line-height: 17px;
  font-size: 16px;
}

.widget-box.viewed-listing > article > .details > h4 {
  margin: 0 0 3px;
}

.widget-box.viewed-listing > article > .details > h4 a:hover {
  color: #41a6df;
}

.widget-box.viewed-listing > article > .details span.price-listing {
  color: #7f7f7f;
  float: left;
  margin-right: 10px;
}

.widget-box.viewed-listing > article > .details span.rate {
  background-color: #73cf42;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  float: left;
  font-weight: 700;
  height: 23px;
  line-height: 23px;
  margin-top: 0;
  padding: 0 5px;
  text-align: center;
  width: 34px;
}

.viewed-listing article .details .post-reviews {
  color: #7f7f7f;
  margin-left: 8px;
}

.widget-box.viewed-listing > article > .details > p {
  color: #7f7f7f;
  float: left;
  line-height: 20px;
  margin: 0;
  width: 100%;
}

.widget-box.viewed-listing > article > .details .listing-options {
  margin-bottom: 3px;
}

.listing-second-view .claim-area a.phone-number.md-trigger.claimformtrigger2 {
  border-radius: 3px;
  color: #337ab7;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  line-height: 20px;
  padding: 0 10px;
  vertical-align: top;
}

.listing-second-view .claim-area .phone-icon {
  color: #7f7f7f;
  font-size: 14px;
  font-weight: 500;
}

.listing-second-view .social-icons.post-socials.smenu {
  background-color: #fff;
  height: auto;
  left: auto;
  opacity: 1;
  display: none;
  padding: 20px;
  right: 0;
  top: 50px;
  text-align: center;
  visibility: visible;
  width: 260px;
  z-index: 9999999999;
  -webkit-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
  -moz-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
  -ms-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
  -o-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
  transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
}

.listing-second-view .rating-section > span {
  color: #7f7f7f;
  display: inline-block;
  font-size: 12px;
  line-height: 13px;
  margin-left: 5px;
  margin-top: 3px;
  text-align: left;
  vertical-align: top;
}

.listing-second-view .rating-section > .no-review {
  margin-top: 10px;
}

.listing-second-view .rating-section > span small {
  color: #111;
}

.faq-section .post-row-header {
  margin-bottom: 13px !important;
}

.listing-second-view .rating-section > .rate {
  background-color: #73cf42;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  height: 36px;
  line-height: 36px;
  margin-top: -2px;
  padding: 0 10px;
  text-align: center;
  vertical-align: top;
  width: 60px;
}

.listing-second-view .post-meta-right-box .post-stat {
  float: right;
  width: 100%;
}

.listing-second-view .post-meta-right-box .padding-top-30 {
  float: right;
  padding-top: 0;
  width: 100%;
}

.listing-second-view span.rating-section {
  display: inline-block;
  padding: 6px 6px 0 0;
  vertical-align: top;
}

.listing-second-view .open-hours ul li a {
  font-size: 13px;
  margin-left: 14px;
}

.listing-app-view2 .open-hours ul li a {
  margin-left: 4px !important;
}

.listing-second-view .open-hours ul li a.Opened,
a.status-btn > .grid-opened {
  color: #41a700;
  font-weight: 500;
  line-height: 22px;
}

.today-hrs span.Opened {
  color: #41a700;
}

.listing-second-view .open-hours ul li a.closed,
a.status-btn > span.grid-closed {
  color: red;
  cursor: default;
  font-weight: 500;
  line-height: 22px;
}

.listing-second-view .open-hours ul li a.closing_soon {
  color: red;
  font-weight: 500;
}

.listing-second-view .open-hours ul li a.opening_soon {
  color: #41a700;
  font-weight: 500;
}

.listing-second-view .slide.slick-slide.slick-active.slick-center > img {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.listing-second-view
  .slide.slick-slide.slick-current.slick-active.slick-center
  > img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.listing-second-view .single-page-slider-container {
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  width: 100%;
  opacity: 1;
}

.listing-second-view .online-booking-form .select2-container {
  float: left;
  min-width: 50%;
  padding: 0 5px;
}

.listing-second-view .online-booking-form .select2-container:first-of-type {
  padding-left: 0;
}

.listing-second-view .online-booking-form .select2-container:last-of-type {
  padding-right: 0;
}

.listing-second-view .online-booking-form input.datepicker.hasDatepicker {
  border: 1px solid #dedede;
  float: left;
  height: 40px;
  line-height: 40px;
  margin: 15px 0;
  padding: 0 15px;
  width: 100%;
}

.listing-second-view .online-booking-form .booking-form {
  background-color: #363f48;
  display: none;
  float: left;
  padding: 25px;
  width: 100%;
}

.listing-second-view .online-booking-form > a.onlineform.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.listing-second-view .select2-container--default .select2-selection--single {
  border: medium none;
  height: 40px;
}

.listing-second-view
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
}

.listing-second-view
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 7px;
}

.listing-second-view .online-booking-form input.datepicker.hasDatepicker {
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  height: 40px;
  line-height: 40px;
  margin: 15px 0;
  padding: 0 15px;
  width: 100%;
}

.listing-second-view .online-booking-form .booking-form input[type="submit"] {
  background-color: #41a6df;
  border-radius: 5px;
  color: #fff;
  float: left;
  font-weight: 700;
  height: 45px;
  line-height: 38px;
  width: 100%;
}

.listing-second-view .features.list-style-none > li {
  background-color: rgba(0, 0, 0, 0);
  border: medium none;
  border-radius: 0;
  float: left;
  font-size: 14px;
  line-height: 24px;
  margin-right: 0;
  min-height: 0;
  width: 25%;
}

.listing-second-view .features.list-style-none > li:nth-child(4n) {
  padding-right: 0;
}

.features.list-style-none {
  padding: 11px 20px 0 0;
}

.listing-second-view .features.list-style-none > li a {
  font-size: 14px;
  padding: 0;
}

.listing-second-view .features li span i {
  color: #363f48;
}

.list-style-none.list-st-img span:last-child {
  color: #7f7f7f;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  padding-top: 6px;
  vertical-align: top;
  width: 80%;
}

.listing-second-view .post-meta-right-box .post-stat > li > a span.email-icon {
  color: #363f48;
  margin-top: 0;
}

.listing-app-view2 .list-style-none.list-st-img span:last-child {
  padding-top: 10px;
}

.listing-second-view .ui-accordion-content {
  border-bottom: 4px solid #dedede;
  border-left: 1px solid #dedede;
  border-radius: 0 0 4px 4px;
  border-right: 1px solid #dedede;
  padding-left: 18px;
  padding-right: 18px;
}

.listing-second-view .ui-accordion-header.ui-state-default,
.listing-second-view .ui-widget-content .ui-state-default,
.listing-second-view .ui-widget-header .ui-state-default {
  border: 1px solid #dedede;
  margin-top: 15px;
}

.listing-second-view
  .detail-page2-tab-content
  .ui-accordion-header.ui-state-default,
.listing-second-view
  .detail-page2-tab-content
  .ui-widget-content
  .ui-state-default,
.listing-second-view
  .detail-page2-tab-content
  .ui-widget-header
  .ui-state-default {
  margin-top: 15px !important;
}

.listing-second-view
  .detail-page2-tab-content
  .ui-accordion-header.ui-state-default:first-child,
.listing-second-view
  .detail-page2-tab-content
  .ui-widget-content
  .ui-state-default:first-child,
.listing-second-view
  .detail-page2-tab-content
  .ui-widget-header
  .ui-state-default:first-child {
  margin-top: 0 !important;
}

.listing-second-view .ask-question-area {
  float: left;
  padding: 40px 0 0;
  width: 100%;
}

.listing-second-view .ask-question-area > p {
  color: #7f7f7f;
  display: inline-block;
  line-height: 26px;
  margin: 0;
}

.listing-second-view .ask-question-area > a.ask_question_popup {
  background-color: #363f48;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  height: 34px;
  line-height: 34px;
  margin-left: 10px;
  padding: 0 12px;
  text-align: center;
  vertical-align: middle;
  width: 135px;
}

.listing-second-view .widget-header.hideonmobile {
  float: left;
}

.listing-second-view .post-meta-left-box > p {
  color: #7f7f7f;
  font-size: 16px;
  margin: 0;
}

.widget-box.business-contact
  .contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative:hover
  input.lp-review-btn,
.listing-second-view a.secondary-btn:hover {
  background-color: #363f48;
  color: #fff;
}

input.lp-review-btn {
  background-color: transparent;
  border: 1px solid #363f48;
  color: #363f48;
}

.contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative
  .lp-search-icon {
  font-size: 15px;
  left: 38%;
  top: 17px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.widget-box.business-contact
  .contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative
  i.lp-search-icon.fa-spinner.fa-spin {
  left: 36%;
}

.contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative:hover
  > .fa-send.lp-search-icon {
  color: #fff;
}

.contact-form input.lp-review-btn,
.listing-second-view a.secondary-btn,
.listing-second-view a.secondary-btn i {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.listing-second-view a.secondary-btn:hover i {
  color: #fff;
}

.listing-second-view
  .ui-accordion-header.ui-state-default.ui-accordion-icons.ui-accordion-header-active.ui-state-active.ui-corner-top {
  border-bottom: 0 none;
  border-radius: 5px 5px 0 0;
  padding-bottom: 8px;
}

.listing-second-view .faq-form {
  display: none;
  float: left;
  width: 100%;
}

.listing-second-view .faq-form textarea {
  resize: none;
}

.listing-second-view .comments-container {
  float: left;
  width: 100%;
}

.listing-second-view .comments-container .comments-form {
  background-color: #f0f3f6;
  float: left;
  width: 100%;
}

.listing-second-view .features-listing {
  float: left;
  position: relative;
  width: 100%;
}

.listing-second-view .features-listing > ul {
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.listing-second-view .features-listing > ul > li {
  border-bottom: 1px solid #e3e3e3;
  display: inline-block;
  line-height: 40px;
  margin: 0 30px;
  width: 40%;
}

.listing-second-view .features-listing > ul > li strong,
.listing-second-view .features-listing > ul > li span {
  color: #7f7f7f;
}

.listing-second-view .features-listing > ul > li strong {
  float: left;
  font-family: "Open Sans","Open Sans Fallback", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.listing-second-view .features-listing > ul > li span {
  float: right;
}

.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
  background-color: #fff;
  padding: 0;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  text-indent: -9999px;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
  background-color: #41a6df;
  color: #fff;
}

.ui-state-default.ui-state-highlight {
  background-color: #41a6df !important;
  background-image: none;
  border: 1px solid #41a6df;
  color: #fff;
}

.ui-datepicker td {
  padding: 0;
}

.zabuto_calendar table.table {
  background-color: #fff;
  border: medium none;
  float: left;
  margin-top: 20px;
  width: 100%;
}

.calendar-month-header {
  background-color: #41a6df;
  color: #fff;
  text-align: center;
}

.zabuto_calendar tr.calendar-month-header th {
  border: medium none;
  text-align: center;
}

.zabuto_calendar tr td {
  text-align: center;
}

.calendar-month-navigation {
  cursor: pointer;
}

.listing-second-view .single-page-slider-container .slick-list.draggable {
  overflow: visible;
}

.listing-second-view .slick-initialized .slick-slide {
  margin: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.listing-second-view
  .slick-initialized
  .slick-slide.slick-current.slick-active.slick-center {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.listing-second-view .slides_count {
  color: #7f7f7f;
  display: inline-block;
  margin-top: -10px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.listing-second-view .rating-symbol::before {
  background-color: #73cf42;
  bottom: -23px;
  display: none;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.rating-symbol:first-of-type::after,
.rating-symbol:nth-child(2)::after,
.rating-symbol:nth-child(3)::after,
.rating-symbol:nth-child(4)::after,
.rating-symbol:nth-child(5)::after {
  bottom: -20px;
  content: "1";
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.rating-symbol:nth-child(2)::after {
  content: "2";
}

.rating-symbol:nth-child(3)::after {
  content: "3";
}

.rating-symbol:nth-child(4)::after {
  content: "4";
}

.rating-symbol:nth-child(5)::after {
  content: "5";
}

.listing-second-view .rating-symbol:hover::before {
  display: block;
}

.listing-second-view .post-stat .icon {
  display: inline-block;
  margin-right: 0;
  margin-top: 4px;
  vertical-align: top;
  width: 12px;
}

.listing-second-view span.rate {
  background-color: #73cf42;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  height: 27px;
  line-height: 27px;
  margin-top: -3px;
  padding: 0 5px;
  text-align: center;
  vertical-align: top;
  width: 42px;
}

span.rate sup {
  font-size: 75%;
  margin-left: 2px;
  top: -0.2em;
}

.listing-second-view .slick-prev,
.listing-second-view .slick-next {
  height: 60px;
  width: 60px;
  z-index: 9;
}

.listing-second-view .slick-next {
  right: 15px;
}

.listing-second-view .slick-prev {
  left: 15px;
}

.listing-second-view .post-stat .social-icons .icon {
  margin: 0 3px;
  width: auto;
}

.listing-second-view .business-contact .contact-form .form-group {
  margin-left: 0;
  margin-right: 0;
  z-index: 9;
}

.listing-second-view
  .business-contact
  .contact-form
  .form-group
  .lp-review-btn {
  width: 100%;
}

span.rate {
  background-color: #73cf42;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  line-height: 19px;
  margin-right: 5px;
  padding: 3px 6px;
}

.list_view .lp-grid-box-description > p,
.grid_view2 .lp-grid-box-description > p {
  color: #7f7f7f;
  line-height: normal;
  margin-bottom: 15px;
}

.grid_view2 .lp-grid-box-bottom {
  background-color: transparent;
  border-top: 1px solid #dedede;
  float: left;
  padding: 5px 13px 5px 9px;
  width: 100%;
}

.list_view a.status-btn,
.grid_view2 a.status-btn {
  border-radius: 5px;
  color: #7f7f7f;
  float: right;
  padding: 0 7px;
}

.list_view .categories-area,
.grid_view2 .categories-area {
  float: left;
}

.list_view .categories-area > .cat-icon,
.grid_view2 .categories-area > .cat-icon {
  float: left;
  margin-right: 5px;
  width: 15px;
}

.list_view .categories-area > a,
.grid_view2 .categories-area > a {
  color: #7f7f7f;
  float: left;
  line-height: 24px;
}

.list_view .lp-grid-box-description .review,
.grid_view2 .lp-grid-box-description .review {
  float: left;
  width: 100%;
}

.list_view .lp-grid-box-description .review-post,
.grid_view2 .lp-grid-box-description .review-post {
  float: left;
  position: relative;
  width: 100%;
}

.list_view .lp-grid-box-description .review-post .reviewer-thumb,
.grid_view2 .lp-grid-box-description .review-post .reviewer-thumb {
  background-color: #ebebeb;
  border-radius: 100%;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.list_view .lp-grid-box-description .reviewer-details,
.grid_view2 .lp-grid-box-description .reviewer-details {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 42px);
  float: right;
}

.grid_view2 .lp-grid-box.lp-border {
  float: left;
  padding: 0;
  width: 100%;
}

.list_view .lp-grid-box-description .reviewer-details > h4,
.grid_view2 .lp-grid-box-description .reviewer-details > h4 {
  color: #7f7f7f;
  font-weight: 400;
  margin: 0;
}

.list_view .lp-grid-box-description .reviewer-details > p,
.grid_view2 .lp-grid-box-description .reviewer-details > p {
  color: #292929;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 20px;
}

.grid_view2 .lp-grid-box-thumb-container {
  float: left;
  width: 100%;
}

.grid_view2 .lp-grid-box-description {
  float: left;
  padding: 15px 20px 20px;
  width: 100%;
}

.list_view a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable,
.grid_view2 a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable {
  color: #7f7f7f;
  float: left;
  margin-right: 15px;
  line-height: 30px;
}

.list_view a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable {
  margin-top: 3px;
}

.list_view a.add-to-fav.lp-add-to-fav span,
.grid_view2 a.add-to-fav.lp-add-to-fav span {
  color: #7f7f7f;
  margin-left: 3px;
}

.list_view .lp-grid-box-thumb-container {
  border-radius: 8px 0 0 8px;
  float: left;
  width: 24%;
}

.list_view .lp-grid-box-thumb img {
  border-radius: 8px 0 0 8px;
}

.list_view .lp-grid-box-description {
  float: left;
  padding: 4px 20px 20px;
  width: 80%;
}

.list_view .lp-grid-box-right .categories-area .icon.icons8-house {
  width: 15px;
}

.list_view .lp-grid-box-right.pull-right {
  text-align: right;
  width: 20%;
}

.lp-grid-box-left.pull-left {
  padding: 0 10px;
  width: 80%;
}

.list_view a.add-to-fav.lp-add-to-fav {
  width: 100%;
}

.lp-grid-box-right .pull-left,
.lp-grid-box-right .pull-right {
  float: left;
  width: 100%;
}

.list_view .lp-grid-box-right a.status-btn {
  margin-top: 5px;
  min-width: 60px;
  padding: 0;
  text-align: center;
}

.list_view .lp-grid-box-left.pull-left > p {
  color: #7f7f7f;
}

.lp-grid-box-right .categories-area {
  float: right;
}

.list_view .lp-grid-box {
  border-radius: 8px !important;
  float: left;
  position: relative;
  width: 100%;
}

.list_view .lp-grid-box .lp-grid-box-right a.status-btn {
  bottom: 20px;
  color: red;
  font-weight: 700;
  min-width: 60px;
  padding: 5px 10px;
  position: absolute;
  right: 19px;
}

.list_view .lp-grid-box-left.pull-left > p {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 50px;
  width: 100%;
}

.grid_view2 .categories-area,
.grid_view2 .categories-area a {
  line-height: 27px;
}

.grid_view2 .categories-area a {
  line-height: 31px;
}

.grid_view2 .lp-grid-box-quick,
.list_view .lp-grid-box-quick {
  background: rgba(0, 0, 0, 0)
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 8%, rgba(0, 0, 0, 0) 94%) repeat
    scroll 0 0;
  bottom: 0;
  padding: 15px 14px 5px 14px;
}

.grid_view2 .lp-post-quick-links > li:first-child,
.list_view .lp-post-quick-links > li:first-child {
  float: left;
}

.grid_view2 .lp-post-quick-links > li:last-child,
.list_view .lp-post-quick-links > li:last-child {
  float: right;
}

.grid_view2 .lp-post-quick-links > li,
.list_view .lp-post-quick-links > li {
  color: #fff;
}

.grid_view2 .lp-post-quick-links > li a,
.list_view .lp-post-quick-links > li a {
  background-color: rgba(0, 0, 0, 0);
  border: medium none;
  color: #fff;
  float: left;
  height: auto;
  line-height: 24px;
  margin: 0;
  padding: 0;
  width: auto;
}

.grid_view2 .lp-post-quick-links > li .slides_count,
.list_view .lp-post-quick-links > li .slides_count {
  float: left;
  margin-top: 20px;
  padding-right: 2px;
}

.grid_view2 .lp-post-quick-links > li a > i,
.list_view .lp-post-quick-links > li a > i {
  float: left;
  font-size: 14px;
  line-height: 25px;
  margin-right: 5px;
}

.grid_view2 .lp-grid-box-thumb img {
  width: 100%;
}

.listing-container-right .list_view .lp-grid-box-thumb-container {
  width: 27%;
}

.listing-container-right .list_view .lp-grid-box-description {
  width: 73%;
}

.listing-container-right
  .lp-grid-box-contianer.grid_view2.card1.lp-grid-box-contianer1 {
  display: inline-block;
  float: none;
  vertical-align: top;
  width: 48%;
}

.listing-second-view #reply-title {
  margin: 0;
}

.reviews-section {
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  padding: 30px 20px 20px;
  width: 100%;
}

.review-form {
  background-color: #fafafa;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  padding: 15px;
  width: 100%;
}

.listing-second-view #reply-title i.fa-star-o {
  color: #989898;
  margin-right: 5px;
}

.listing-second-view #reply-title i.fa-caret-down {
  color: #afafaf;
  float: right;
  font-size: 24px;
}

.listing-second-view #reply-title.active i.fa-caret-down::before {
  content: "\f0d8";
}

#submitreview h3.comment-reply-title {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 0;
  margin-bottom: 20px;
}

article.review-post {
  border-bottom: 1px solid #dedede;
  float: left;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.app-view-reviews-section article.review-post {
  display: none;
}

.app-view-reviews-all {
  display: inline-block;
  margin: 0 auto;
  border: solid 1px;
  border-radius: 5px;
  padding: 5px 15px;
  cursor: pointer;
}

.app-view-reviews-section article.review-post:nth-child(-n + 10) {
  display: block;
}

article.review-post > figure {
  float: left;
  margin-top: -2px;
  text-align: center;
  width: 76px;
}

.review-post h4 {
  color: #333;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.review-post p {
  color: #7f7f7f;
  font-size: 13px;
  line-height: 22px;
}

.review-post figure figcaption > p {
  font-size: 12px;
  line-height: 17px;
  margin-top: 0;
}

.review-post p i {
  color: #41a6df;
}

article.review-post > .details {
  float: right;
  width: calc(100% - 98px);
}

.details .top-section > h3 {
  color: #555;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
  margin-top: 0;
  padding-right: 140px;
}

.details .top-section > time {
  color: #7f7f7f;
  float: left;
  font-size: 12px;
  line-height: 22px;
  margin-right: 40px;
}

.review-count {
  float: left;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}

.top-section .review-count {
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.top-section {
  float: left;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}

.rating {
  float: left;
  line-height: 23px;
  margin-right: 15px;
}

.rating i {
  color: #73cf42;
}

.rating i.fa-star-o {
  color: #7f7f7f;
}

.content-section {
  float: left;
  padding-top: 5px;
  width: 100%;
}

.images-gal-section {
  float: left;
  margin-bottom: 16px;
  margin-top: 12px;
  padding: 0 9px;
  width: 100%;
}

.col-md-4.img-col {
  height: 135px;
  padding: 0 5px 0 6px;
}

.bottom-section {
  float: left;
  margin-top: 10px;
  width: 100%;
}

.bottom-section form > span {
  color: #7f7f7f;
  float: left;
  font-size: 12px;
  line-height: 34px;
  margin-right: 20px;
  text-transform: capitalize;
}

.bottom-section ul {
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.bottom-section ul li {
  float: left;
  padding: 0 10px 0 0;
}

.bottom-section ul li a {
  border: 1px solid;
  border-radius: 3px;
  color: #fff;
  float: left;
  font-size: 12px;
  height: 34px;
  line-height: 22px;
  padding: 5px 12px;
  position: relative;
  text-align: left;
}

.bottom-section ul li a.instresting {
  border-color: #417cdf;
  color: #417cdf;
}

.bottom-section ul li a.instresting:hover {
  background-color: #417cdf;
  color: #fff;
}

.bottom-section ul li a.lol {
  border-color: #ff8e29;
  color: #ff8e29;
}

.bottom-section ul li a.lol:hover {
  background-color: #ff8e29;
  color: #fff;
}

.bottom-section ul li a.love {
  border-color: #ff2357;
  color: #ff2357;
}

.bottom-section ul li a.love:hover {
  background-color: #ff2357;
  color: #fff;
}

.bottom-section ul li a > span {
  float: none;
  margin: 0;
}

.bottom-section > form {
  float: left;
  width: 100%;
}

.review-post figure > img {
  border-radius: 100%;
  display: inline-block;
  height: 70px;
  width: 70px;
}

article.review-post .label.label-default {
  display: none;
}

article.review-post:last-of-type {
  border: medium none;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.submit-images {
  float: right;
  margin-top: 41px;
  position: relative;
  text-align: right;
}

.submit-images > label {
  color: #7f7f7f;
  font-weight: 400;
  margin-right: 10px;
}

.review-form form .form-group > label {
  color: #7f7f7f;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-form > form#rewies_form > .form-group {
  margin-bottom: 20px;
}

.review-form > form#rewies_form > .form-group textarea.form-control {
  height: 120px;
  resize: none;
}

.form-group.submit-images > input[type="file"] {
  cursor: pointer;
  height: 30px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: -2px;
  width: 65px;
}

.review-form .form-group > p {
  font-size: 12px;
  margin-bottom: 0;
}

a.browse-imgs {
  background-color: transparent;
  border: 1px solid #363f48;
  border-radius: 3px;
  color: #363f48;
  font-weight: 500;
  padding: 5px 10px;
}

.submit-images:hover > a.browse-imgs {
  background-color: #363f48;
  color: #fff;
}

.listing-second-view .post-meta-info {
  background-color: #f7fbfe;
  border-bottom: 1px solid #dbe7ef;
  border-top: none;
  padding-bottom: 50px;
  padding-top: 50px;
}

.listing-second-view .author-img {
  float: left;
  width: 20%;
}

.listing-second-view .author-img > img {
  border-radius: 100%;
}

.listing-second-view .author-social {
  float: left;
  width: 55%;
  padding-left: 10px;
}

.lp-author-profile-link {
  width: 25%;
  float: left;
}

.lp-author-profile-link a {
  color: #7e7e7e;
  font-size: 11px;
  border: 1px solid #c5c5c5;
  background: white;
  padding: 5px 8px;
  font-weight: 500;
  border-radius: 15px;
}

.listing-second-view .contact-form .author-social ul {
  float: left;
  padding-left: 10px;
  padding-top: 4px;
  width: 100%;
}

.listing-second-view .contact-form .author-social ul li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
  width: auto;
}

.listing-second-view .contact-form .author-social ul li a {
  display: inline-block;
  line-height: 17px;
  text-align: center;
  vertical-align: top;
  width: 18px;
}

.listing-second-view .contact-form .author-social ul li {
  display: inline-block;
  float: none;
  margin: 0 0 0 -1px;
  vertical-align: middle;
  width: auto;
}

.listing-second-view .contact-form .author-social ul li:first-of-type {
  margin-left: 0;
}

.bottom-section form ul li a > img {
  display: inline-block;
  margin-top: 4px;
  vertical-align: top;
  width: 15px;
}

.review-form > form#rewies_form .form-group.margin-bottom-40 {
  margin-bottom: 61px !important;
}

.list_view .lp-grid-box-description .lp-grid-box-left.pull-left {
  padding: 0;
  width: 100%;
}

.get-directions {
  left: 2px;
  padding: 0;
  position: absolute;
  bottom: 0;
}

.get-directions > a {
  background-color: rgba(255, 255, 255, 0.5);
  color: #111;
  float: left;
  font-weight: 500;
  line-height: 26px;
  margin-left: -6px;
  padding: 0 10px;
}

.get-directions > a span.phone-icon {
  float: left;
  width: 20px;
}

.status {
  float: left;
  padding-left: 0;
  width: 100%;
}

.status > span {
  color: #7f7f7f;
  display: block;
  font-size: 14px;
  margin-top: 5px;
  padding-left: 0;
  position: relative;
}

.status > span.offline {
  display: none;
}

.img-col a.galImgFull {
  float: left;
  overflow: hidden;
  width: 100%;
}

.img-col > a.galImgFull > img {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.img-col > a.galImgFull:hover > img {
  opacity: 0.7;
}

.widget-box.widget-categories.listing-single-cat .list-st-img li a {
  padding-bottom: 5px;
  padding-top: 5px;
}

.widget-box.widget-categories.listing-single-cat
  .list-st-img
  li
  a
  span.cat-icon {
  border: medium none;
  height: 40px;
  line-height: 45px;
  vertical-align: top;
  width: 40px;
}

.widget-box.widget-categories.listing-single-cat .list-st-img li a > span {
  line-height: 49px;
}

.widget-box.widget-categories.listing-single-cat
  .list-st-img
  li
  a
  span.cat-icon
  img {
  border-radius: 100%;
  width: 100%;
}

.switch {
  display: inline-block;
  height: 26px;
  position: relative;
  width: 52px;
}

.switch input {
  display: none;
}

.listing-app-view .app-view-filters .slider {
  position: absolute !important;
}

.app-view-filters .listing-style-3 {
  background: #fff;
  border-radius: 5px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -moz-transform: translateX(26px);
  -ms-transform: translateX(26px);
  -o-transform: translateX(26px);
  transform: translateX(26px);
}

input:checked + .slider2:before {
  -webkit-transform: translateX(26px) !important;
  -moz-transform: translateX(26px) !important;
  -ms-transform: translateX(26px) !important;
  -o-transform: translateX(26px) !important;
  transform: translateX(26px) !important;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  opacity: 0.5;
}

.lp-price-main {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -ms-transition: all 500ms ease-in;
  -o-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  margin-bottom: 40px;
}

.lp-price-main .lp-price-list .lp-listprc {
  padding: 0;
  margin: 0;
  text-align: left;
  padding-bottom: 20px;
}

.lp-price-main .lp-price-list .lp-listprc li {
  list-style: none;
  line-height: 34px;
}

.lp-price-main .lp-title {
  background: #41a6df;
  padding-top: 60px;
  padding-bottom: 60px;
}

.lp-price-main .lp-title a {
  border: 2px solid #fff;
  padding: 3px 15px;
  border-radius: 15px;
  text-transform: uppercase;
}

.lp-price-main .lp-title a,
.lp-price-main .lp-title p {
  color: #fff;
}

.lp-price-main .lp-title p {
  margin-bottom: 0;
}

.lp-price-main .lp-price-list {
  background-color: #fff;
  padding: 20px 20px 30px;
  position: relative;
}

.lp-price-main .lp-price-list .lp-listprc li span.icon,
.lp-price-main .lp-price-list .lp-listprc li span.icon-text {
  float: left;
  margin-right: 10px;
  width: 20px;
  margin-top: 5px;
}

.lp-price-main .lp-price-list .lp-listprc li span img {
  width: 18px;
}

.lp-price-free:active,
.lp-price-free:focus {
  outline: none;
  box-shadow: none;
}

.lp-price-free {
  color: #363f48;
  background: transparent;
  border: 2px solid #363f48;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 25px;
}

.lp-sales-option {
  position: absolute;
  width: 115px;
  height: 30px;
  background-color: #202111;
  z-index: 1;
  left: -31px;
  top: 10px;
  color: #fff;
  line-height: 30px;
  font-weight: 700;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.lp-price-list .lp-hot {
  background-color: #c0392b;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  left: 50%;
  line-height: 30px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: -16px;
  width: 88px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.lp-price-main .lp-upgrade {
  color: #c0392b;
  border-color: #c0392b;
}

.lp-price-main .lp-upgrade-color {
  background-color: #363f48;
  color: #fff;
}

.lp-price-main .lp-upgrade:hover {
  color: #fff;
  background-color: #c0392b;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.lp-price-main .lp-upgrade-color:hover {
  background-color: #fff;
  color: #363f48;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.lp-price-main .lp-without-prc:hover {
  background-color: #363f48;
  color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.lp-price-main:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.featured-plan .lp-price-main {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  z-index: 9;
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}

.featured-plan .lp-price-free.lp-without-prc.btn {
  background-color: #363f48;
  color: #fff;
  font-weight: 600;
}

.featured-plan .lp-price-free.lp-without-prc.btn:hover {
  background-color: #42a7df;
  border-color: #42a7df;
}

.vertical_view .lp-price-main .lp-title p {
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 30px;
}

.vertical_view .lp-price-main .lp-title {
  padding-bottom: 45px;
}

.lp-header-full-width .lp-add-listing-btn li a {
  font-size: 15px;
}

.lp-header-full-width .lp-menu-bar .lp-logo-container {
  padding: 5px 15px;
}

.lp-header-full-width .lp-add-listing-btn ul li {
  line-height: 46px;
}

.lp-header-full-width .lp-menu.menu {
  float: right;
}

.lp-header-full-width .lp-add-listing-btn ul {
  padding: 0;
}

.lp-header-full-width .lp-add-listing-btn li a {
  border: 1px solid #fff;
  padding: 7px 20px;
  border-radius: 5px;
}

.lp-header-full-width .lp-menu-container .lp-joinus-icon {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  float: none;
}

.lp-header-full-width .lp-join-user-info li:hover .lp-user-menu {
  top: 100%;
}

.lp-header-full-width .lp-user-menu.list-style-none {
  line-height: normal;
}

.lp-header-full-width .lp-menu-container .col-md-4 {
  padding: 0;
  text-align: right;
}

.lp-header-full-width .lp-search-bar .lp-interest-bar:last-child {
  margin-right: 12px;
}

.lp-header-bg-grey .navbar-toggle,
.lp-header-bg-black .navbar-toggle {
  color: #fff;
  display: inline-block;
  float: left;
  margin: -3px 0 0;
  padding: 0;
  vertical-align: top;
}

.lp-dropdown-menu.dropdown > button.navbar-toggle i {
  border-radius: 5px;
  display: inline-block;
  float: left;
  line-height: 18px;
  padding: 8px 10px 7px;
  vertical-align: top;
}

.lp-header-bg-grey .lp-menu-container .lp-without-icon-bar-right,
.lp-header-bg-black .lp-menu-container .lp-without-icon-bar-right {
  text-align: right;
}

.lp-header-bg-black .lp-add-listing-btn {
  display: inline-block;
}

.lp-header-bg-grey .lp-joinus-icon,
.lp-header-bg-grey .lp-add-listing-btn,
.lp-header-bg-black .lp-joinus-icon,
.lp-header-bg-black .lp-add-listing-btn {
  padding-right: 8px;
}

.lp-header-bg-grey .lp-menu-bar.lp-menu-bar-color {
  background-color: #fafafa !important;
}

.lp-header-full-width.lp-header-bg-grey
  .lp-menu-container
  .lp-joinus-icon
  .lp-join-now
  a {
  color: #4aa2e2;
}

.lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn li a:hover,
.lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn li a {
  color: #41a6df;
  border-color: #41a6df;
}

.lp-header-bg-grey .navbar-toggle {
  color: #41a6df;
  border: 1px solid #41a6df;
}

.lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn {
  display: inline-block;
}

.lp-dropdown-menu #main-nav:hover #menu {
  display: block;
}

.lp-without-icon-bar-right .dropdown {
  display: inline-block;
  vertical-align: middle;
}

.lp-without-icon-bar-right .dropdown ul li {
  line-height: 69px;
}

.lp-dropdown-menu ul {
  right: -38px;
  top: 30px;
  left: auto;
  border: 0;
  box-shadow: none;
  padding-top: 15px;
  padding-bottom: 15px;
  list-style: none;
}

.lp-dropdown-menu ul li a {
  line-height: 33px;
}

.lp-dropdown-menu ul li a:hover {
  background: #41a6df;
  color: #fff;
}

.lp-dropdown-menu ul:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  top: -8px;
  right: 12px;
  opacity: 1;
  overflow: visible;
  visibility: hidden;
}

.lp-search-bar-all-demo {
  padding: 11px;
}

.lp-search-bar-all-demo .lp-search-bar {
  margin: 0;
  padding: 0;
  background: transparent;
}

.lp-search-bar-all-demo .chosen-container {
  width: 100% !important;
}

.lp-search-bar-all-demo .chosen-container .chosen-single {
  border: 1px solid #dedede;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.lp-search-bar-all-demo .icons8-Define-Location {
  width: 18px;
  height: 18px;
}

.lp-search-bar-all-demo .add-more {
  display: inline-block;
  height: 38px;
  line-height: 38px;
  color: #41a6df;
}

.lp-search-bar-all-demo .add-more:hover {
  cursor: pointer;
}

.lp-right-grid .add-more {
  line-height: normal;
}

.lp-search-bar-all-demo .border-dropdown:after {
  top: 12px;
}

.lp-search-bar-all-demo .border-dropdown {
  width: 100%;
}

.lp-search-bar-all-demo .lp-search-bar-left .input-group {
  width: 100%;
}

.lp-search-bar-all-demo .lp-search-bar .chosen-container-single .chosen-single {
  height: 38px;
  line-height: 38px;
}

.lp-search-bar-all-demo .lp-search-btn {
  width: 66px;
  height: 38px;
}

.lp-search-bar-all-demo .lp-search-bar-right {
  margin: 0;
}

.lp-search-bar-all-demo .form-control {
  height: 40px;
  line-height: 38px;
}

.lp-search-bar-all-demo .lp-search-btn:hover {
  background: #41a6df;
}

.lp-search-bar-all-demo .lp-search-icon {
  color: #fff;
  top: 5px;
  left: 30px;
}

.lp-search-bar-all-demo .lp-interest-bar input[type="text"] {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lp-search-bar-all-demo .lp-interest-bar,
.lp-search-bar-all-demo .lp-location-bar,
.lp-search-bar-all-demo .lp-catagory-bar {
  width: 280px;
  float: left;
  margin-right: 10px;
}

.lp-search-bar-all-demo .lp-feature-event {
  margin-right: 15px;
  padding: 15px 0;
}

.lp-search-bar-all-demo .lp-feature-event .form-group {
  width: auto;
  float: left;
}

.lp-search-bar-all-demo .lp-feature-event .form-group label {
  padding-right: 20px;
  padding-left: 25px;
}

.lp-search-bar-all-demo .lp-feature-event .lp-feature-title {
  display: block;
  float: left;
  height: 25px;
  line-height: 25px;
  margin-right: 25px;
}

.lp-search-bar-all-demo
  .lp-search-bar-left
  .border-dropdown
  .chosen-container-single
  span:after {
  top: 10px;
}

.lp-right-grid #lp_feature_panel5,
.lp-right-grid #lp_feature_panel4,
.lp-bg-black #lp_feature_panel3,
.lp-bg-with-header-grey #lp_feature_panel2,
.lp-bg-grey #lp_feature_panel1,
.lp-search-bar-all-demo #lp_feature_panel {
  display: none;
}

.lp-bg-grey {
  background: #eff3f6;
}

.lp-bg-grey .input-group-addon i {
  color: #fff;
}

.lp-bg-grey .input-group-addon {
  background: #41a6df;
}

.lp-bg-grey .lp-interest-bar input[type="text"] {
  border-color: #41a6df;
}

.lp-bg-grey .chosen-container .chosen-single {
  border-color: #41a6df;
}

.lp-bg-grey
  .lp-search-bar-left
  .border-dropdown
  .chosen-container-single
  span:after {
  color: #41a6df;
}

.lp-bg-black {
  background: #333;
}

.lp-bg-black .lp-search-bar {
  background: #333;
}

.lp-bg-black p,
.lp-bg-black,
.lp-bg-black .form-group label {
  color: #fff;
}

.lp-search-bar-all-demo.lp-right-grid .lp-interest-bar,
.lp-right-grid.lp-search-bar-all-demo .lp-location-bar,
.lp-right-grid.lp-search-bar-all-demo .lp-catagory-bar {
  float: none;
}

.lp-right-grid {
  width: 320px;
  float: right;
  border-radius: 6px;
  margin-right: 100px;
}

.lp-right-grid .lp-search-title {
  font-size: 24px;
  text-align: center;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.lp-search-bar-all-demo.lp-right-grid .lp-interest-bar,
.lp-right-grid.lp-search-bar-all-demo .lp-location-bar,
.lp-right-grid.lp-search-bar-all-demo .lp-catagory-bar {
  width: 100%;
  margin-right: 0;
  margin-bottom: 15px;
}

.lp-right-grid .lp-search-bar-right {
  float: none;
}

.lp-right-grid .lp-search-icon {
  left: 80px;
}

.lp-right-grid .lp-search-btn {
  width: 100%;
}

.lp-right-grid .lp-search-btn {
  height: 38px;
  line-height: 38px;
  padding: 0;
}

.lp-right-grid .add-more {
  display: block;
  width: 100%;
  text-align: left;
  color: #41a6df;
}

.lp-right-grid .lp-feature-event .lp-feature-title {
  margin-right: 0;
  width: 100%;
  text-align: left;
}

.lp-right-grid .lp-feature-event {
  margin-top: 0;
  margin-bottom: 0;
}

.lp-search-bar-all-demo .lp-feature-event .form-group {
  margin-bottom: 0;
}

.lp-search-bar-all-demo .lp-feature-event .form-group .checkbox {
  margin: 0;
}

.lp-search-bar-all-demo .lp-search-bar-price {
  float: none;
}

.lp-search-bar-all-demo .lp-search-bar-price input[type="text"] {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.lp-search-bar-all-demo .input-group-addon {
  width: 40px;
  height: 38px;
}

.lp-search-bar-all-demo .input-group {
  width: 100%;
}

.lp-bottom-with-map-back {
  border-radius: 5px;
}

.lp-bottom-with-map-back,
.lp-right-with-white-bg {
  box-shadow: 0 1px 5px #ccc;
}

.lp-bottom-border {
  border-radius: 5px;
}

.lp-bottom-border .lp-search-bar {
  background: transparent;
}

.lp-search-bar-all-demo input[type="range"] {
  width: 295px;
}

.lp-search-bar-all-demo input[type="range"].multirange {
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
}

.lp-search-bar-all-demo input[type="range"].multirange.original {
  position: absolute;
}

.lp-search-bar-all-demo
  input[type="range"].multirange.original::-webkit-slider-thumb {
  position: relative;
  z-index: 2;
}

.lp-search-bar-all-demo
  input[type="range"].multirange.original::-moz-range-thumb {
  transform: scale(1);
  z-index: 1;
}

.lp-search-bar-all-demo input[type="range"].multirange::-moz-range-track {
  border-color: transparent;
}

.lp-search-bar-all-demo input[type="range"].multirange.ghost {
  position: relative;
}

.lp-search-bar-all-demo
  input[type="range"].multirange.ghost::-webkit-slider-runnable-track {
  background: var(--track-background);
}

.lp-search-bar-all-demo input[type="range"].multirange.ghost::-moz-range-track {
  background: var(--track-background);
}

.lp-search-bar-all-demo .lp-range-slider {
  display: inline-block;
}

.img-col.review-img-slider img {
  border-radius: 3px;
  cursor: pointer;
}

.ui-accordion .ui-accordion-header span.question-icon {
  float: left;
  font-weight: 700;
  margin-top: -3px;
}

.listing-second-view .ui-accordion-header.ui-state-default,
.listing-second-view .ui-widget-content .ui-state-default,
.listing-second-view .ui-widget-header .ui-state-default {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 15px 15px 15px 20px;
}

.listing-second-view .ui-accordion-header.ui-state-default:first-child,
.listing-second-view .ui-widget-content .ui-state-default:first-child,
.listing-second-view .ui-widget-header .ui-state-default:first-child {
  margin-top: 0;
}

.lp-header-full-width .lp-menu > .menu-main-menu-container > ul > li > ul > li {
  line-height: normal;
  padding-right: 0;
}

.lp-header-full-width
  .lp-menu
  > .menu-main-menu-container
  > ul
  > li
  > ul
  > li
  > a {
  line-height: 32px !important;
}

header.stickytop.sticky_header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.logged-in.admin-bar header.stickytop.sticky_header {
  top: 32px;
}

.lp-left-grid {
  float: left;
  width: 320px;
  border-radius: 6px;
}

.lp-search-bar-all-demo {
  padding: 11px;
}

.lp-search-bar-all-demo .lp-search-bar {
  margin: 0;
  padding: 0;
  background: transparent;
  text-align: center;
}

.lp-search-bar-all-demo .chosen-container {
  width: 100% !important;
}

.lp-search-bar-all-demo .chosen-container .chosen-single {
  border: 1px solid #dedede;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.lp-search-bar-all-demo .icons8-Define-Location {
  width: 18px;
  height: 18px;
}

.lp-search-bar-all-demo .add-more {
  display: none;
  height: 38px;
  line-height: 38px;
  color: #41a6df;
}

.lp-search-bar-all-demo .add-more:hover {
  cursor: pointer;
}

.lp-right-grid .add-more {
  line-height: normal;
}

.lp-search-bar-all-demo .border-dropdown:after {
  top: 12px;
}

.lp-search-bar-all-demo .border-dropdown {
  width: 100%;
}

.lp-search-bar-all-demo .lp-search-bar-left .input-group {
  width: 100%;
}

.lp-search-bar-all-demo .lp-search-bar .chosen-container-single .chosen-single {
  height: 38px;
  line-height: 38px;
}

.lp-search-bar-all-demo .lp-search-btn {
  width: 66px;
  height: 38px;
}

.lp-search-bar-all-demo .lp-search-bar-right {
  margin: 0;
}

.lp-search-bar-all-demo .form-control {
  height: 40px;
  line-height: 38px;
}

.lp-search-bar-all-demo .lp-search-btn:hover {
  background: #41a6df;
}

.lp-search-bar-all-demo .lp-search-icon {
  color: #fff;
  top: 5px;
  left: 30px;
}

.lp-search-bar-all-demo .lp-interest-bar input[type="text"] {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lp-search-bar-all-demo .lp-interest-bar,
.lp-search-bar-all-demo .lp-location-bar,
.lp-search-bar-all-demo .lp-catagory-bar {
  display: inline-block;
  float: none;
  margin-right: 5px;
  padding-right: 15px;
  text-align: left;
  vertical-align: top;
  width: 280px;
}

.lp-search-bar-all-demo .lp-feature-event {
  margin-right: 15px;
  padding: 15px 0 0 65px;
  text-align: left;
  width: 100%;
}

.lp-search-bar-all-demo .lp-feature-event .form-group {
  width: auto;
  float: left;
}

.lp-search-bar-all-demo .lp-feature-event .form-group label {
  padding-right: 20px;
  padding-left: 25px;
}

.lp-search-bar-all-demo .lp-feature-event .lp-feature-title {
  display: block;
  float: left;
  height: 25px;
  line-height: 25px;
  margin-right: 25px;
}

.lp-search-bar-all-demo
  .lp-search-bar-left
  .border-dropdown
  .chosen-container-single
  span:after {
  top: 10px;
}

.lp-right-grid #lp_feature_panel5,
.lp-right-grid #lp_feature_panel4,
.lp-bg-black #lp_feature_panel3,
.lp-bg-with-header-grey #lp_feature_panel2,
.lp-bg-grey #lp_feature_panel1,
.lp-search-bar-all-demo #lp_feature_panel {
  display: none;
}

.lp-bg-grey {
  background: #eff3f6;
}

.lp-bg-grey .input-group-addon i {
  color: #fff;
}

.lp-bg-grey .input-group-addon {
  background: #41a6df;
}

.lp-bg-grey .lp-interest-bar input[type="text"] {
  border-color: #41a6df;
}

.lp-bg-grey .chosen-container .chosen-single {
  border-color: #41a6df;
}

.lp-bg-grey
  .lp-search-bar-left
  .border-dropdown
  .chosen-container-single
  span:after {
  color: #41a6df;
}

.lp-bg-black {
  background: #333;
}

.lp-bg-black .lp-search-bar {
  background: #333;
}

.lp-bg-black p,
.lp-bg-black,
.lp-bg-black .form-group label {
  color: #fff;
}

.vertical-view .lp-search-bar-all-demo .lp-interest-bar,
.vertical-view .lp-search-bar-all-demo .lp-location-bar,
.vertical-view .lp-search-bar-all-demo .lp-catagory-bar {
  float: none;
}

.lp-right-grid {
  width: 320px;
  float: right;
  border-radius: 6px;
}

.vertical-view .lp-search-title {
  font-size: 24px;
  text-align: center;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.vertical-view .lp-search-bar-all-demo .lp-interest-bar,
.vertical-view .lp-search-bar-all-demo .lp-location-bar,
.vertical-view .lp-search-bar-all-demo .lp-catagory-bar {
  margin-bottom: 15px;
  margin-right: 0;
  padding: 0 10px;
  width: 100%;
}

.lp-right-grid .lp-search-bar-right {
  float: none;
}

.lp-right-grid .lp-search-icon {
  left: 80px;
}

.lp-right-grid .lp-search-btn {
  width: 100%;
}

.lp-right-grid .lp-search-btn {
  height: 38px;
  line-height: 38px;
  padding: 0;
}

.lp-right-grid .add-more {
  display: block;
  width: 100%;
  text-align: left;
  color: #41a6df;
}

.lp-right-grid .lp-feature-event .lp-feature-title {
  margin-right: 0;
  width: 100%;
  text-align: left;
}

.lp-right-grid .lp-feature-event {
  margin-top: 0;
  margin-bottom: 0;
}

.lp-search-bar-all-demo .lp-feature-event .form-group {
  margin-bottom: 0;
}

.lp-search-bar-all-demo .lp-feature-event .form-group .checkbox {
  margin: 0;
}

.lp-search-bar-all-demo .lp-search-bar-price {
  float: none;
}

.lp-search-bar-all-demo .lp-search-bar-price input[type="text"] {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.lp-search-bar-all-demo .input-group-addon {
  width: 40px;
  height: 38px;
}

.lp-search-bar-all-demo .input-group {
  width: 100%;
}

.lp-bottom-with-map-back {
  border-radius: 0;
}

.vertical-view .lp-search-bar-all-demo {
  box-shadow: 0 1px 5px #ccc;
  margin-bottom: 45px;
  margin-right: 0;
  margin-top: 45px;
  position: relative;
  z-index: 9999;
}

.vertical-view .lp-search-bar-all-demo.lp-right-with-white-bg {
  background-color: #fff;
}

.lp-bottom-border {
  border-radius: 5px;
}

.lp-bottom-border .lp-search-bar {
  background: transparent;
}

.lp-align-bottom .lp-search-bar-all-demo {
  border-radius: 0 0 5px 5px;
  padding: 40px 0;
}

.lp-interest-bar.text-center {
  margin-right: 0;
  padding-right: 0;
  width: 135px;
}

.top-section {
  position: relative;
}

.container.lp-align-underBanner {
  min-height: 0;
}

.top-section .lp-align-underBanner {
  position: relative;
}

.top-section .lp-align-underBanner .lp-search-bar-all-demo {
  border-radius: 0;
  bottom: 40px;
  box-shadow: none;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.lp-align-top .lp-search-bar-all-demo {
  border-radius: 0 0 5px 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  float: left;
  width: 100%;
}

.top-section .absolute {
  left: 0;
  position: absolute;
  top: 66px;
  width: 100%;
  z-index: 9999;
}

.lp-align-bottom .lp-search-bar-all-demo.lp-bg-black {
  box-shadow: none;
}

.vertical-view.absolute .lp-feature-event {
  padding-left: 0;
}

.vertical-view .lp-search-bar-all-demo input[type="range"] {
  width: 100%;
}

.vertical-view .lp-search-bar-all-demo .lp-feature-event .lp-feature-title {
  width: 100%;
}

.vertical-view .lp-search-bar-all-demo .lp-search-btn {
  padding: 5px 30px 6px 45px;
  width: auto;
}

.vertical-view .lp-search-bar-all-demo i.lp-search-icon {
  left: 20px;
}

.vertical-view .lp-search-bar-all-demo.lp-bg-black {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.lp-search-description p {
  display: inline-block;
  max-width: 42%;
}

.top-section .lp-align-underBanner .lp-search-bar-all-demo.lp-bg-white {
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 1px 5px #ccc;
}

.top-section .lp-search-bar-all-demo .add-more {
  display: none;
}

.top-section .lp-search-bar-all-demo .lp-search-btn {
  min-width: 130px;
  padding: 3px 30px 6px 45px;
  text-indent: 0;
  width: auto;
}

.top-section .lp-search-bar-all-demo .lp-search-bar-right i {
  left: 20px;
}

.top-section .lp-search-bar-all-demo .container {
  width: 100%;
}

.top-section > .container,
.top-section > .absolute > .container {
  width: 1030px;
}

.lp-bg-white {
  background-color: #fff;
}

.top-section .container .lp-search-bar-all-demo {
  border-radius: 5px;
}

.top-section .container.lp-align-top .lp-search-bar-all-demo {
  border-radius: 0 0 5px 5px;
}

section.aliceblue {
  float: left;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.top-section {
  margin-bottom: 0;
}

.pos-relative .container {
  position: relative;
}

body div.pp_overlay {
  z-index: 99999;
}

body div.pp_pic_holder {
  z-index: 999999;
}

header .lp-without-icon-bar-right .lp-join-now span {
  float: left;
}

header .lp-without-icon-bar-right .lp-join-now a {
  position: relative;
  top: -1px;
  margin-left: 3px;
  text-transform: capitalize;
}

.lp-without-icon-bar-right .lp-dropdown-menu ul ul {
  padding: 3px 0 3px 15px;
}

.featuresDataContainer .radio-inline {
  margin-left: 0 !important;
}

.header-with-topbar .lp-topbar .lp-join-now > ul ul.lp-user-menu > li > a {
  line-height: 32px;
}

.header-with-topbar .lp-menu-container .lp-add-listing-btn > ul > li > a {
  display: inline-block;
  padding: 11px 0;
}

.listing-simple .list_view .lp-grid-box-description {
  width: 77%;
}

.listing-simple .list_view .lp-grid-box-thumb-container {
  width: 23%;
}

.listing-with-map .list_view .lp-grid-box-thumb-container {
  width: 33%;
}

.listing-with-map .list_view .lp-grid-box-description {
  width: 67%;
}

.lp-grid-box-price li > a {
  color: #7f7f7f;
  line-height: 24px;
}

.radio-inline > input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
}

.radio-inline > span strong {
  font-weight: 400;
}

.featuresDataContainer.row .col-xs-12 {
  margin: 5px 0;
}

.slick-prev::before,
.slick-next::before {
  background-color: #42a7df;
  border-radius: 100%;
  color: #fff;
  content: "";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  opacity: 0.5;
  width: 50px;
}

.slick-prev::before {
  content: "\f060";
}

.slick-next::before {
  content: "\f061";
}

footer.text-center {
  float: left;
  width: 100%;
}

.form-group .panel-default > .panel-heading {
  background-color: transparent;
  border: medium none;
  box-shadow: none;
}

.form-group .panel-default > .panel-heading > h4 > a > i {
  color: #333;
  margin-right: 6px;
}

.availableprice_options .checkboxx input[type="checkbox"] {
  margin-right: 10px;
}

body .list_view a.add-to-fav.lp-add-to-fav span {
  color: #fff;
  float: left;
}

body .list_view a.lp-add-to-fav.remove-fav span {
  color: #fff !important;
}

body .list_view a.add-to-fav.lp-add-to-fav span,
.grid_view2 a.add-to-fav.lp-add-to-fav span {
  margin: 0;
}

body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable {
  float: none;
  line-height: normal;
  margin-top: 3px;
  padding: 0;
}

.listing-second-view .features-listing > ul > li {
  float: left;
  line-height: 23px;
  margin: 0;
  padding: 10px 0;
  width: 100%;
}

.listing-second-view .features-listing > ul > li:last-child {
  border: medium none;
  padding-bottom: 0;
}

.listing-second-view .features-listing > ul > li span {
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
}

.lp-review-btn:hover {
  color: #fff;
}

.day-hours,
.hours-display {
  float: left;
  width: 100%;
}

.hours {
  float: left;
  width: 100%;
  line-height: 27px;
}

.hours > span.weekday {
  font-weight: 700;
  width: 140px;
  float: left;
  text-transform: capitalize;
}

.hours > span.start {
  width: 65px;
  float: left;
}

.hours > span {
  float: left;
  width: 7px;
}

.hours > span.end {
  float: left;
  margin-left: 15px;
  width: 60px;
}

.hours > a.remove-hours {
  margin-left: 15px;
  color: red;
}

.day-hours ul.hours-select {
  float: left;
  padding: 0;
  width: 100%;
  margin: 10px 0 0;
  list-style-type: none;
}

.day-hours ul.hours-select li {
  float: left;
  margin-right: 10px;
}

.hours-select > li > button.add-hours {
  background-color: #41a6df;
  color: #fff;
  font-size: 31px;
  border: none;
  padding: 0 15px;
  border-radius: 5px;
  vertical-align: top;
  margin-left: 5px;
  font-weight: 700;
}

.hours-select > li > button.add-hours:hover {
  background-color: #363f48;
}

.day-hours span.select2.select2-container {
  max-width: 100%;
  min-width: 90px;
}

.day-hours .select2-container--default .select2-selection--single {
  height: 40px;
  line-height: 40px;
}

.day-hours
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
  padding-right: 30px;
}

.day-hours
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  width: 30px;
}

.form-group .panel.panel-default {
  float: left;
  width: 100%;
}

.lp-search-bar span.typeahead__filter {
  display: none;
}

.lp-search-bar input.js-typeahead-input.lp-home-search-input {
  margin-bottom: 15px;
  height: 40px;
  border: 1px solid #fff;
}

.lp-search-bar span.typeahead__button {
  padding: 0;
  float: left;
}

.typeahead__list > li.typeahead__group.active > a,
.typeahead__list > li.typeahead__group > a,
.typeahead__list > li.typeahead__group > a:focus,
.typeahead__list > li.typeahead__group > a:hover {
  text-transform: capitalize;
}

.typeahead__container .typeahead__button > button {
  background-color: #41a6df;
}

a.toggle-currencey-area {
  color: #333;
  display: inline-block;
  font-weight: 700;
  margin: -3px 0 10px;
  line-height: 26px;
}

a.toggle-currencey-area > span {
  width: 25px;
  height: 25px;
  float: left;
  background-color: #d3d3d3;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  margin-right: 7px;
  position: relative;
}

a.toggle-currencey-area.active span {
  background-color: #fff;
}

a.toggle-currencey-area.active > span:before {
  content: "\f00c";
  color: #42a7df;
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  line-height: 24px;
  text-align: center;
}

.currency-area {
  float: left;
  width: 100%;
  display: none;
}

.typeahead__container button.lp-search-btn {
  border: 1px solid #42a7df;
  color: #fff;
  float: left;
  padding: 0;
  position: relative;
  width: 50px;
  height: 40px;
  text-align: center;
}

.typeahead__container button.lp-search-btn i.lp-search-icon {
  width: 50px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  line-height: 40px;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}

.typeahead__container button.lp-search-btn:hover {
  background-color: #42a7df;
}

.typeahead__container .typeahead__field .typeahead__cancel-button {
  top: 13px;
}

form#lp-submit-form .form-group > label {
  color: #7f7f7f;
  float: left;
}

.help-text {
  float: left;
  position: relative;
  width: 17px;
  margin-left: 10px;
}

.help-text a.help {
  border: 1px solid #a0a0a0;
  border-radius: 100%;
  color: #a0a0a0;
  float: left;
  font-size: 11px;
  height: 15px;
  line-height: 14px;
  margin-top: 6px;
  text-align: center;
  width: 15px;
}

.help-tooltip {
  background-color: #f0f0f0;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  bottom: 94%;
  display: none;
  left: -10px;
  margin-bottom: 5px;
  padding: 10px 12px;
  position: absolute;
  width: 270px;
  z-index: 99;
}

.lp-appview-ppolicy .help-tooltip {
  width: 220px !important;
}

.checkbox.form-group.check_policy.termpolicy.pull-left.termpolicy-wraper.lp-appview-ppolicy {
  padding-top: 0 !important;
  padding-bottom: 10px;
}

.help-text:hover .help-tooltip {
  display: block;
}

.help-tooltip > p {
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  text-transform: capitalize;
}

.help-tooltip:before {
  border-color: #d8d8d8 transparent;
  border-style: solid;
  border-width: 7px 7px 0;
  bottom: -7px;
  content: "";
  left: 11px;
  position: absolute;
}

.help-tooltip > h5 {
  margin: 0 0 5px;
  font-size: 14px;
}

.lp-menu-bar.sticky_header.sticky {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.4 ease;
  -moz-transition: all 0.4 ease;
  -ms-transition: all 0.4 ease;
  -o-transition: all 0.4 ease;
  transition: all 0.4 ease;
}

.error_box {
  color: red;
  margin-bottom: 20px;
}

.header-with-topbar
  .lp-menu-bar.lp-menu-bar-color
  .fullwidth-header
  .lp-menu.pull-right.menu {
  text-align: right;
  width: 70%;
}

.header-with-topbar .lp-menu-bar .menu > .menu-main-menu-container > ul > li {
  padding-left: 20px;
  padding-right: 0;
}

.header-with-topbar .lp-menu-bar .lp-add-listing-btn > ul {
  padding-left: 30px;
}

.header-without-topbar .header-filter .input-group-addon.lp-border,
.header-with-topbar .header-filter .input-group-addon.lp-border {
  background-color: #fff;
  border-radius: 0;
  color: #333;
  font-weight: 600;
  height: 46px;
  left: 1px;
  line-height: 47px;
  padding: 0 10px 0 15px;
  position: absolute;
  top: 0;
  width: 70px;
  z-index: 9;
}

.header-filter .chosen-container-single .chosen-single span {
  line-height: 46px;
  margin-right: 0;
}

.header-with-topbar .fullwidth-header .lp-join-user-info > ul > li {
  display: inline-block;
}

.lp-without-icon-bar-right .lp-dropdown-menu ul ul {
  padding: 0;
}

.lp-without-icon-bar-right .lp-dropdown-menu ul ul > li > a {
  padding: 3px 0 3px 25px;
}

header .lp-without-icon-bar-right .lp-join-now > ul > li > ul > li > a {
  margin: 0;
}

.header-menu-dropdown .lp-join-now ul li > ul.lp-user-menu,
.header-without-topbar .lp-join-now ul li > ul.lp-user-menu {
  left: auto;
  right: 0;
  top: 115%;
}

header.header-without-topbar .menu ul li:hover > ul.children,
header.header-without-topbar .lp-menu-bar .menu ul li:hover > ul.sub-menu {
  left: auto;
  right: 0;
  top: 100%;
}

.lp-menu ul.children::after,
.lp-menu ul.sub-menu::after {
  left: auto;
  right: 34px;
}

.lp-menu ul.children,
.header-with-topbar .lp-menu ul.sub-menu {
  left: auto;
  right: 0;
}

.lp-home-banner-contianer .lp-search-bar .form-group {
  background-color: #fff;
  border-radius: 0 4px 4px 0;
  vertical-align: top;
}

.lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
  height: 46px;
  margin: 0;
  position: relative;
  width: 50%;
  float: left;
}

.form-group .lp-search-bar-right {
  background-color: #41a6df;
  border-radius: 5px;
  margin: 0;
  z-index: 0;
}

.form-group .lp-search-bar-right:hover {
  background-color: #2186bf;
}

.lp-home-banner-contianer
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  border-color: #fff #f3f3f3 -moz-use-text-color -moz-use-text-color;
  border-radius: 5px 0 0 5px;
  border-style: solid solid none none;
  border-width: 1px 1px medium 0;
  height: 46px;
  width: 100%;
  line-height: 21px;
}

.lp-home-banner-contianer
  .video-bottom-search-container
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  border: none !important;
}

.lp-search-bar .custom-combobox .lp-home-locaton-input {
  border-radius: 0 5px 5px 0;
  height: 44px;
  width: 158px;
}

body .ui-autocomplete li.ui-menu-item {
  margin-top: 0;
  padding: 7px 20px;
}

.lp-home-banner-contianer .lp-search-bar {
  padding-bottom: 10px;
}

.lp-home-banner-contianer .lp-search-bar .form-group:last-of-type {
  background-color: transparent;
  margin-right: 0;
}

.lp-home-banner-contianer .lp-search-bar .form-group button.lp-search-btn {
  text-align: center;
  width: 58px;
}

.lp-home-banner-contianer .lp-search-bar .form-group button.lp-search-btn i {
  width: 100%;
}

.custom-combobox {
  overflow: hidden;
}

body .simptip-position-top.simptip-movable::before {
  margin-bottom: -8px;
}

.list_view
  a.status-btn.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable {
  border: medium none;
  font-weight: 400;
  margin: 0;
  padding: 0;
  position: static;
  text-align: right;
}

.grid_view2 .lp-grid-box-left.pull-left {
  padding: 0;
  width: 100%;
}

.grid_view2 a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable {
  text-align: center;
}

header {
  position: relative;
}

.lp-header-overlay {
  z-index: 9;
}

.lp-menu-bar {
  z-index: 10;
}

.input-group.width-49-percent.margin-right-15 {
  width: 43%;
}

.input-group.width-49-percent.margin-right-15 input.form-control {
  background-color: transparent;
  border-radius: 5px 0 0 5px;
  min-width: 0;
  padding-left: 58px;
  line-height: 23px;
}

.input-group span.custom-combobox .custom-combobox-input {
  border: medium none;
  padding: 12px 32px 12px 15px;
  color: #7f7f7f;
}

.form-group.lp-location-search {
  margin-left: -4px;
  margin-right: 0;
  position: relative;
}

body .nav-tabs > li > a::after {
  bottom: 0;
}

.vcenter {
  padding: 10px;
  vertical-align: top;
}

.lp-tabs .lp-rigt-icons .lp-list-view-edit.aliceblue {
  background-color: transparent;
  padding-right: 0;
  padding-top: 0;
}

body .lp-tabs .lp-list-view-thumb {
  padding: 20px 5px !important;
}

table td.comment.column-comment.has-row-actions.column-primary {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 5px 15px;
}

table td.author.column-author {
  padding: 15px;
  text-align: center;
  width: 120px;
}

.avatar.avatar-32.photo.avatar-default {
  text-align: center;
  width: 60px;
}

.author.column-author > strong {
  text-transform: capitalize;
}

textarea.review_reply {
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  height: 125px;
  margin-bottom: 15px;
  padding: 10px 15px;
  resize: none;
}

.reviews h4 i {
  color: #73cf42;
  font-size: 16px;
}

td.comment.column-comment.has-row-actions .reviews h4 {
  font-size: 15px;
  margin-right: 10px;
  margin-top: 20px;
}

td.comment.column-comment.has-row-actions .reviews h4 span {
  margin-right: 5px;
}

td.comment.column-comment.has-row-actions.column-primary > h4 {
  font-size: 15px;
  font-weight: 400;
}

td.comment.column-comment.has-row-actions.column-primary > p {
  line-height: 24px;
}

.reply-response {
  background-color: #fff;
  float: left;
  padding: 10px 0 10px 25px;
  width: 100%;
}

.reply-response > h4 {
  margin-bottom: 5px;
  margin-top: 0;
}

.reply-response > p {
  line-height: 24px;
}

.open-reply.pull-right {
  color: #42a7df;
  margin-top: 0;
}

.post_response {
  display: none;
  float: left;
  width: 100%;
}

.reviews > span {
  color: #7f7f7f;
  float: right;
  margin-top: 5px;
}

span.custom-combobox .custom-combobox-input {
  width: 120px;
}

header .lp-topbar {
  z-index: 11;
}

.lp-menu-bar .ui-widget.border-dropdown,
.lp-menu-bar .ui-widget.border-dropdown span.custom-combobox input {
  height: 46px;
  width: 100%;
}

.lp-search-bar .lp-suggested-search .input-group-addon.lp-border {
  background-color: transparent;
  color: #333;
  float: left;
  font-weight: 600;
  height: 46px;
  left: 0;
  line-height: 43px;
  padding: 0 0 0 15px;
  position: absolute;
  top: 0;
  width: 55px;
  z-index: 0;
}

.header-filter .top-search-form .chosen-container-single .chosen-single {
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  color: #444;
  display: block;
  height: 46px;
  line-height: 40px;
  overflow: hidden;
  padding: 0 0 0 70px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}

.lp-home-banner-contianer
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  background-color: transparent;
  border: medium none;
  border-radius: 5px 0 0 5px;
  min-width: 295px;
  padding-left: 65px;
  width: 100%;
}

.lp-search-bar .lp-search-btn {
  height: 40px;
}

span.custom-combobox {
  border-left: 0 solid #f5f5f5;
  float: left;
}

.lp-home-banner-contianer .lp-search-bar {
  padding-bottom: 15px;
}

.lp-home-banner-contianer::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lp-menu-bar .lp-menu .children .page_item_has_children a::after,
.lp-menu-bar .lp-menu .sub-menu .menu-item-has-children a::after {
  top: 6px;
}

.header-filter .input-group:first-child .input-group-addon.lp-border {
  background-color: transparent;
  border-radius: 5px 0 0 5px;
  font-weight: 700;
  height: 46px;
  left: 0;
  line-height: 46px;
  padding: 0 0 0 4px;
  position: absolute;
  top: 0;
  width: 55px;
  z-index: 0;
}

.header-filter .input-group.width-49-percent.margin-right-15 {
  margin-right: 0;
  padding-right: 0;
  width: 50%;
}

.search-row .form-group.margin-right-0 {
  padding-right: 0;
}

.search-row .form-inline .form-group {
  margin-right: 0;
  padding-right: 5px;
}

.search-row .form-inline .form-group.margin-right-0 {
  padding-right: 0;
}

.lp-without-icon-bar-right .lp-dropdown-menu ul ul ul > li > a {
  padding-left: 35px;
}

.header-menu-dropdown.lp-header-full-width .lp-menu-bar .lp-logo-container {
  margin: 0;
}

header.header-without-topbar .menu ul li:hover > ul.children,
header.header-without-topbar .lp-menu-bar .menu ul ul li:hover > ul.sub-menu {
  border-radius: 3px;
  left: 100%;
  margin: 0;
  right: auto;
  top: 0;
}

.lp-header-full-width
  .lp-menu
  > .menu-main-menu-container
  > ul
  > li
  > ul
  > li
  > ul
  > li {
  padding-right: 0;
}

.lp-header-full-width
  .lp-menu
  > .menu-main-menu-container
  > ul
  > li
  > ul
  > li
  > ul
  > li
  > a {
  line-height: 32px;
}

.reviewer-details span {
  display: block;
}

body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable
  i {
  border-radius: 5px;
  float: left;
  font-size: 14px;
  line-height: normal;
  margin-top: 6px;
  padding: 0 2px 0 5px;
}

body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable
  i:hover,
body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:focus
  i,
body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover
  i {
  color: #fff;
}

.grid_view2
  .lp-grid-box-bottom
  a.status-btn.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable {
  border: medium none;
}

.aliceblue > .pos-relative {
  background-color: #fff;
}

.list-style-none span {
  color: #97959a;
  font-weight: 600;
  padding: 0;
}

.list-style-none span.post-rice {
  line-height: 24px;
}

.list-style-none span:first-of-type {
  padding-left: 0;
}

.list-style-none .grayscale-dollar span.active {
  color: #fff;
}

.list-style-none span.post-rice {
  font-weight: 700;
}

.list-style-none span.post-rice span.text {
  float: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-right: 8px;
}

.listing-second-view .post-price-row > li.grayscale-dollar {
  margin-right: 8px;
  width: 40px;
}

.claim-area {
  float: left;
  margin-top: 16px;
  width: 100%;
}

.md-content.claimform-box > h3 {
  margin-bottom: 10px;
  margin-top: 0;
}

.md-effect-3 #claimform .form-group {
  margin: 0;
}

.single-page-popup.md-effect-3 .md-content > div {
  padding: 10px 0 0;
}

textarea {
  resize: none;
}

.md-show.md-effect-3 .md-content {
  border-radius: 6px;
}

.form-control.textarea1 {
  margin-bottom: 10px;
}

.fa.fa-circle-o-notch.fa-spin.fa-2x.formsubmitting {
  font-size: 20px;
}

.alert.alert-success {
  font-size: 15px;
  margin-left: 0;
  padding: 9px 10px;
  width: 100%;
}

.status > span.alert.alert-danger {
  color: #c42020;
  padding: 9px 10px;
}

.status > span.alert.alert-info {
  padding: 9px 10px;
}

.extra-fields.widget-box .post-row-header > h3 {
  margin: 0;
}

.extra-fields {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 25px;
}

.listing-second-view .open-hours ul.hidding-timings {
  display: none;
  margin-top: 10px;
}

.open-hours {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 14px 20px;
}

.listing-second-view .open-hours ul li.today-timing {
  line-height: normal;
}

a.show-all-timings {
  float: right;
  font-size: 12px;
}

a.show-all-timings {
  background-color: #fff;
  border: 1px solid #dedede;
  bottom: -24px;
  color: #939393;
  float: left;
  font-size: 9px;
  font-weight: 400;
  left: 50%;
  letter-spacing: 0.7px;
  line-height: 12px;
  padding: 2px 5px;
  position: absolute;
  text-transform: capitalize;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

a.show-all-timings::before {
  content: "+";
  display: inline-block;
  margin-top: -2px;
  vertical-align: top;
  width: 10px;
}

a.show-all-timings.opened::before {
  content: "-";
}

.video-option {
  background-color: #fafafa;
  border: 1px solid #dedede;
  border-radius: 5px;
  display: inline-block;
  padding: 8px 8px 8px 15px;
  width: 100%;
}

.video-option > h2 {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 33px;
  margin: 0;
}

.video-option > h2 > span:first-of-type {
  float: left;
  height: 33px;
  line-height: 33px;
  width: 33px;
}

.video-option > h2 > span:first-of-type i {
  color: #41a6df;
  font-size: 26px;
  line-height: 35px;
}

a.watch-video.popup-youtube,
a.blog-detail-link {
  border: 1px solid #41a6df;
  border-radius: 5px;
  color: #41a6df;
  float: right;
  font-size: 14px;
  line-height: 26px;
  padding: 3px 15px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

a.watch-video.popup-youtube:hover {
  background-color: #41a6df;
  color: #fff;
}

.blog-detail-link:hover {
  color: #fff !important;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li {
  border: medium none;
  padding: 0;
  text-align: left;
  width: 35px;
}

.sidebar-post .map-area .listing-detail-infos .widget-social.widget-box {
  border-top: 1px solid #dedede;
  float: left;
  margin-bottom: 0;
  padding-top: 5px;
  width: 100%;
  padding-bottom: 8px;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li
  a {
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li
  a
  i {
  font-size: 25px;
  vertical-align: middle;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li {
  border: medium none;
  border-radius: 5px;
  display: inline-block;
  float: none;
  height: 35px;
  margin-right: 5px;
  padding: 0;
  text-align: left;
  vertical-align: top;
  width: 35px;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li
  a {
  border-radius: 5px;
  color: #363f48;
  float: left;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  width: 100%;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li:hover {
  border: none !important;
}

.lp-user-menu li a {
  line-height: 32px;
}

header .menu ul li:hover > ul.children,
header .lp-menu-bar .menu ul ul li:hover > ul.sub-menu li:first-child,
header .menu ul li:hover > ul.children,
header .lp-menu-bar .menu ul ul li:hover > ul.sub-menu:last-child {
  padding: 0;
}

.menu ul.children li ul.children,
.menu ul.sub-menu li ul.sub-menu {
  top: 0;
}

.single-page-slider-container .slick-list {
  overflow: visible;
}

.container .header-filter .input-group.width-49-percent.margin-right-15 {
  width: 52%;
}

.container .input-group.width-49-percent {
  width: 45%;
}

form#lp-submit-form input[type="file"] {
  cursor: pointer;
  height: 30px;
}

.listing-second-view .open-hours ul li.today-timing img,
.listing-second-view .open-hours ul li.today-timing i {
  margin-right: 2px;
  width: 18px;
}

.submit_new_style .author-section.lp-form-row {
  background-color: #bdc3c7;
  border-radius: 5px;
  float: left;
  margin-bottom: 20px;
  padding: 26px 68px;
  width: 100%;
}

.submit_new_style .lp-form-row-left > p {
  color: #fff;
}

.submit_new_style a.btn-first-hover.lp-signout-btn {
  background-color: #bdc3c7;
  border: 1px solid #fff;
  display: inline-block;
  height: 48px;
  line-height: 44px;
  padding: 0;
  text-align: center;
  width: 139px;
}

.submit_new_style .lp-form-row-right.text-right.pull-right.margin-top-35 {
  margin-top: 23px;
}

.border-bottom {
  position: relative;
}

.border-bottom::before {
  border-bottom: 1px solid #dedede;
  bottom: -11px;
  content: "";
  height: 1px;
  left: 3%;
  position: absolute;
  width: 94%;
}

.submit_new_style {
  padding: 35px 40px 90px;
}

.white-section {
  background-color: #fff;
  border-radius: 5px;
  float: left;
  margin-bottom: 20px;
  padding: 30px;
  width: 100%;
}

.quick_tip {
  background-color: #f7fbfe;
  border-radius: 5px;
  float: left;
  margin-bottom: 25px;
  padding: 20px;
  width: 100%;
}

.quick_tip h2 {
  color: #7f7f7f;
  line-height: 26px;
  margin-top: 0;
}

.quick_tip > p {
  color: #7f7f7f;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}

p.paragraph-form {
  float: left;
  width: 100%;
}

.blue-section {
  background-color: #fff;
  border-radius: 5px;
  color: #fff;
  float: left;
  padding: 30px 30px 30px;
  width: 100%;
}

form#lp-submit-form .blue-section .form-group label {
  color: #1e2a36;
  font-weight: 700;
}

.blue-section .preview-section .lp-secondary-btn.btn-first-hover {
  background-color: #27ae60;
  font-size: 20px;
  height: 55px;
  line-height: 24px;
  width: 100%;
}

.blue-section .preview-section .lp-secondary-btn.btn-first-hover:hover {
  background-color: #078e40;
}

.submit_new_style .form-control {
  height: 44px;
}

.form-group.preview-section {
  padding-right: 0;
  text-align: center;
}

form#lp-submit-form .blue-section .form-group .preview-section label {
  text-align: center;
  width: 100%;
}

.blue-section .form-group input.form-control {
  height: 55px;
}

.blue-section .form-group .checkbox.form-group {
  margin-bottom: 0;
  margin-top: 60px;
}

.blue-section .preview-section i {
  float: right;
  font-size: 25px;
  margin-right: 25px;
  margin-top: -42px;
  position: relative;
}

.blue-section .preview-section .error_box {
  background-color: #fff;
  border: 1px solid red;
  border-radius: 5px;
  bottom: 55px;
  display: none;
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 12px;
  padding: 10px 15px;
  position: absolute;
  right: 0;
  text-align: left;
  width: 100%;
}

.blue-section .preview-section .error_box::before {
  border-color: #fff transparent;
  border-style: solid;
  border-width: 10px 10px 0;
  bottom: -9px;
  content: "";
  position: absolute;
  right: 20px;
  z-index: 1;
}

.blue-section .preview-section .error_box::after {
  border-color: red transparent;
  border-style: solid;
  border-width: 10px 11px 0;
  bottom: -10px;
  content: "";
  position: absolute;
  right: 19px;
  z-index: 0;
}

.page-container-four .jFiler-items-grid .jFiler-item {
  width: 25%;
}

.page-container-four
  .jFiler-items-grid
  .jFiler-item
  .jFiler-item-container
  .jFiler-item-thumb {
  height: auto;
  width: 100%;
}

.page-container-four
  .jFiler-items-grid
  .jFiler-item
  .jFiler-item-container
  .jFiler-item-assets {
  padding: 3px;
  position: absolute;
  right: 4px;
  text-align: center;
  top: 0;
}

.page-container-four
  .jFiler-items-grid
  .jFiler-item
  .jFiler-item-container
  .jFiler-item-assets
  a.icon-jfi-trash.jFiler-item-trash-action {
  background-color: rgba(255, 255, 255, 0.7);
  float: left;
  padding: 5px 2px 5px 5px;
  text-align: center;
  width: 35px;
}

.extra-fields h3 {
  margin: 0;
}

.submit_new_style .checkbox label::before {
  opacity: 0.3;
}

.submit_new_style textarea.form-control {
  height: 100px;
}

.page-template-template-dashboard .page-heading.listing-page {
  display: none;
}

.admin-top-section {
  background-color: #fff;
  float: left;
  width: 100%;
}

.admin-top-section .user-portfolio .user-thumb {
  float: left;
  margin-right: 0;
  width: 20%;
}

.admin-top-section .user-portfolio .user-text {
  float: left;
  padding-left: 20px;
  width: 80%;
}

.admin-top-section .user-text p span {
  float: left;
  margin-right: 6px;
  width: 15px;
}

.admin-top-section .user-text > p {
  color: #7f7f7f;
  font-size: 12px;
  margin-bottom: 0;
  line-height: normal;
}

.admin-top-section h5.user-name {
  margin-top: 13px;
  text-transform: capitalize;
}

.admin-top-section .social-icons.post-socials {
  display: inline-block;
  margin-left: 10px;
  margin-top: 0;
}

.user-description-box > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.admin-top-section .user-portfolio {
  float: left;
  padding: 30px;
  width: 100%;
}

.count-text.all-listing {
  color: #41a6df;
}

.count-text.pending-listing {
  color: #7f7f7f;
}

.count-text.published-listing {
  color: #67a33b;
}

.count-text.expired-listing {
  color: #d56d6d;
}

.dashboard-content .lp-main-tabs .nav-tabs > li {
  text-align: left;
  margin: 0;
  width: 100%;
}

.dashboard-content .lp-main-tabs .nav-tabs > li a {
  border-left: 4px solid transparent;
  border-top: 1px solid #576370;
  float: left;
  margin: 0;
  text-align: left;
  width: 100%;
}

.dashboard-content .lp-main-tabs .nav-tabs > li.active > a,
.dashboard-content .lp-main-tabs .nav-tabs > li a:hover {
  border-left-color: #41a6df;
}

.dashboard-content .lp-main-tabs .nav-tabs > li a::after {
  display: none;
}

.dashboard-content .dashboard-tabs ul li span.icon {
  float: left;
  width: 25px;
}

.dashboard-content {
  background-color: #363f48;
  float: left;
  width: 100%;
}

.user-recent-listings-container {
  float: left;
  margin-bottom: 30px;
  padding-top: 5px;
  width: 100%;
}

.user-recent-listings-container > h3 {
  margin-bottom: 24px;
}

.dashboard-content .lp-list-view-content.lp-list-cnt {
  margin-left: -16px;
}

.dashboard-content .dashboard-tab .panel-body {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  overflow: hidden;
  float: left;
  width: 100%;
}

.col-md-12.col-sm-6.col-xs-12.lp-list-view {
  margin-bottom: 0;
}

.lp-tabs .lp-list-view .lp-list-view-content-upper h4,
.lp-tabs .lp-list-view .lp-list-view-paypal-inner h4 {
  line-height: normal;
  margin-bottom: 3px;
}

.dashboard-content .dashboard-tab .lp-rigt-icons .lp-list-view-edit.aliceblue {
  float: left;
  padding: 0;
}

.lp-list-view-edit li a {
  margin-right: 10px;
  padding: 0;
}

.lp-list-view-edit li a > span {
  font-weight: 500;
}

.dashboard-content .tab-content.dashboard-contnt #updateprofile .tab-header {
  padding-bottom: 5px;
}

.upload-photo.margin-top-25 {
  float: left;
  margin-top: 10px;
  width: 100%;
}

.btn-file input.upload-author-image[type="file"] {
  cursor: pointer;
}

.dashboard-content .tab-content.dashboard-contnt .comments-box {
  border: medium none;
  padding: 0;
}

.dashboard-content .tab-content.dashboard-contnt .ui-sortable-handle {
  color: #363f48;
  font-size: 24px;
  margin-bottom: 30px;
}

.dashboard-content .postbox table.widefat .review-count span.rate {
  background-color: #73cf42;
  border-radius: 5px;
  color: #fff;
  float: left;
  font-weight: 700;
  height: 28px;
  line-height: 27px;
  min-width: 50px;
  padding: 0 5px;
  text-align: center;
}

.dashboard-content .postbox table.widefat .review-count .reviews {
  float: left;
}

.dashboard-content .postbox table.widefat .review-count .reviews > h4 {
  line-height: 28px;
  margin-bottom: 0;
  margin-top: 0;
}

.dashboard-content .postbox table.widefat .review-content .reviews {
  float: left;
  margin-bottom: 10px;
  width: 100%;
}

.dashboard-content .postbox table.widefat .review-content > p {
  float: left;
  width: 100%;
}

.dashboard-content .postbox table.widefat .review-count {
  margin-bottom: 5px;
  width: auto;
}

.dashboard-content .postbox table.widefat .review-content {
  background-color: #fff;
  display: none;
  float: left;
  padding: 10px 0;
  width: 100%;
}

.dashboard-content .postbox table.widefat h4 span {
  font-weight: 700;
}

.dashboard-content .postbox table.widefat a.see_more_btn {
  border: 1px solid #363f48;
  border-radius: 5px;
  color: #363f48;
  float: right;
  margin-top: -21px;
  padding: 5px 10px 5px 30px;
  position: relative;
}

.dashboard-content .postbox table.widefat a.see_more_btn.active::before {
  content: "\f062";
}

.dashboard-content .postbox table.widefat a.see_more_btn:hover {
  background-color: #363f48;
  color: #fff;
}

.widefat.fixed.striped.comments.wp-list-table.comments-box > tbody,
.widefat.fixed.striped.comments.wp-list-table.comments-box > tbody tr,
.widefat.fixed.striped.comments.wp-list-table.comments-box > tbody tr td {
  float: left;
  width: 100%;
}

.lp-pay-options > ul > li {
  border-bottom: 1px solid #dedede;
}

.lp-pay-options ul li:last-of-type {
  border-bottom: none;
}

#invoices.tab-pane.fade.in.active {
  padding-top: 45px;
}

.tab-header {
  padding-bottom: 5px;
}

.dashboard-content .tab-content.dashboard-contnt h4 a {
  color: #41a6df;
}

.day-hours ul.hours-select li {
  overflow: hidden;
  width: 100px;
}

.day-hours ul.hours-select li:last-of-type {
  width: auto;
}

#tabs.clearfix.ui-tabs.ui-widget.ui-widget-content.ui-corner-all {
  margin-top: 0;
}

.submit-img {
  padding-top: 30px;
  text-align: center;
}

.submit_new_style .jFiler-input-dragDrop {
  height: 180px;
}

.submit_new_style .form-group label {
  color: #7f7f7f;
}

.submit_new_style .form-group .featuresDataContainer label {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.submit_new_style .form-group label span {
  font-weight: 400;
}

.submit_new_style a.btn-first-hover.lp-signout-btn:hover {
  background-color: #fff;
  color: #bdc3c7;
}

ul.list-style-none.list-st-img li:last-child a.edit-list > span {
  color: #fff;
  padding: 0;
}

.lp-home-banner-contianer
  .lp-search-bar
  .lp-suggested-search
  .input-group-addon.lp-border {
  height: 46px;
  line-height: 44px;
}

.single-page-popup .md-content.claimform-box,
.single-page-popup.md-effect-3 .md-content.claimform-box > div {
  padding: 0;
}

.claim-text h1 {
  color: #fff;
  float: left;
  font-size: 58px;
  margin: 0 0 33px;
  padding: 20px 30px 0 !important;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.claim-text h1 > span {
  background-color: #fff;
  color: #c1392b;
  display: inline-block;
  font-size: 64px;
  line-height: 60px;
  vertical-align: top;
  width: 260px;
}

.claim-text h1 > small {
  color: #fff;
  float: left;
  font-size: 35px;
  line-height: 36px;
  text-align: center;
  width: 100%;
}

.claim-details > h3 {
  color: #2c2c2c;
  float: left;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 7px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.claim-details > h2 {
  font-size: 27px;
  text-align: center;
  text-transform: uppercase;
}

.claim-details > h2 > span {
  color: #3eace1;
}

.claim-details > ul {
  border-bottom: 1px solid #f8f8f8;
  list-style-type: none;
  margin: 15px 0 5px;
  padding: 0 0 4px;
  text-align: center;
}

.claim-details ul li i {
  color: #3eace1;
  display: inline-block;
  font-size: 15px;
  margin-right: 3px;
  margin-top: 2px;
  vertical-align: top;
}

.claim-details ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  width: 310px;
}

.claim-details .form-group > label {
  float: left;
  font-size: 17px;
  margin-top: -25px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.claim-details .form-group > input[type="text"] {
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  line-height: 34px;
  margin-bottom: 10px;
  padding: 0 10px;
  width: 100%;
}

.claim-details .form-group > .form-control.textarea1 {
  height: 100px;
}

.claim-text h1 > span.big {
  background-color: transparent;
  color: #fff;
  font-size: 69px;
}

.md-effect-3 #claimform .claim-details .form-group {
  text-align: center;
}

#claimform .claim-details .form-group .lp-review-btn {
  background-color: #c1392b;
  color: #fff;
  text-transform: uppercase;
}

#claimform .claim-details .form-group .lp-review-btn:hover {
  background-color: #a1190b;
}

.secure-text {
  font-size: 11px;
  font-weight: 500;
  padding: 8px 0 0;
  text-align: center;
  text-transform: uppercase;
}

.secure-text > i {
  color: #3eace1;
  font-size: 14px;
}

.currency-signs > ul,
.search-filters > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.currency-signs > ul > li {
  float: left;
  line-height: 27px;
  min-width: 37px;
  text-align: center;
}

.listing-app-view .app-view-filters .currency-signs > ul > li {
  min-width: 24.8888%;
}

.listing-app-view .app-view-filters div#lp-find-near-me ul li a {
  padding: 5px 0;
  width: 100%;
  display: inline-block;
}

.listing-style-3 .currency-signs > ul > li {
  min-width: 33px;
}

.currency-signs > ul > li:last-of-type a {
  border-radius: 0 3px 3px 0;
  border-right: 1px solid #eaeaea;
}

.currency-signs > ul > li:first-child a {
  border-radius: 3px 0 0 3px;
}

.currency-signs > ul > li > a {
  background-color: #f8f8f8;
  color: #9f9f9f;
  float: left;
  font-size: 13px;
  font-weight: 500;
  padding: 3px 10px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
}

.currency-signs > ul > li > a:hover {
  background-color: #f7fbfe;
}

.search-filters > ul > li {
  float: left;
  margin-right: 8px;
}

.search-filters > ul > li > a {
  background-color: #f8f8f8;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  color: #9f9f9f;
  float: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 27px;
  padding: 3px 15px;
  width: 100%;
}

.listing-style-3 .search-filters > ul > li > a {
  padding: 3px 10px;
}

.search-filters > ul > li > a:hover,
.currency-signs > ul > li > a:hover {
  background-color: #f7fbfe;
  box-shadow: none;
}

.input-group.margin-right-0 > ul {
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.input-group.margin-right-0 > ul > li {
  float: left;
  margin-right: 13px;
}

.input-group.margin-right-0 input[type="checkbox"] {
  cursor: pointer;
  display: block;
  float: left;
  height: 20px;
  margin-right: 5px;
  margin-top: 5px;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.search-row .form-inline.tags-area {
  border: 1px solid #dedede;
  box-shadow: none;
  margin-top: 15px;
}

.tags-area ul li label {
  color: #7f7f7f;
  font-weight: 500;
}

.app-view-filters .tags-area ul li label {
  font-size: 14px;
}

.listing-view-layout {
  display: inline-block;
  vertical-align: top;
}

.view-on-map {
  display: inline-block;
  line-height: 38px;
  vertical-align: top;
}

.view-on-map a {
  color: #fff;
}

.listing-view-layout > ul {
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.listing-view-layout > ul li {
  float: left;
  margin-left: 8px;
}

.listing-view-layout > ul li a {
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  float: left;
  font-size: 14px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  width: 35px;
}

.listing-view-layout > ul li a i {
  line-height: 32px;
}

.post-with-map-container-right .listing-view-layout > ul li a {
  border-color: #a3a3a3;
  color: #a3a3a3;
  border-width: 1px;
  line-height: 34px;
}

.post-with-map-container-right .listing-view-layout > ul li a i {
  line-height: 34px;
}

.lp-title-new-style .listing-view-layout > ul li a i {
  line-height: 41px;
  font-size: 20px;
}

.listing-view-layout > ul li a.active,
.listing-view-layout > ul li a:hover {
  border-color: #42a7df;
  color: #42a7df;
}

a.md-trigger.mobilelink.all-list-map {
  margin-right: 5px;
}

.col-md-4 .view-on-map {
  margin-top: 6px;
  -webkit-transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  -o-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

body .grid_view2 a.add-to-fav.lp-add-to-fav span,
body .grid_view2 a.remove-fav.lp-add-to-fav span {
  color: #fff;
  line-height: 26px;
}

.grid_view2 .lp-grid-box-right.pull-right {
  width: 100%;
}

.grid_view2 .categories-area {
  float: left;
}

.grid_view2 .lp-grid-box-right .pull-left,
.grid_view2 .lp-grid-box-right .pull-right {
  width: auto;
}

.grid_view2 .lp-grid-box-description {
  padding: 6px 13px 16px;
}

.grid_view2 .lp-grid-box-description .lp-grid-box-right {
  padding: 10px;
}

.grid_view2 .lp-grid-box-description .lp-grid-box-left.pull-left {
  padding: 15px;
}

.home .grid_view2 .lp-grid-box-description .lp-grid-box-left.pull-left {
  padding: 0 !important;
}

.grid_view2 .lp-grid-box-description .reviewer-details > p,
.grid_view2 .lp-grid-box-description .reviewer-details > h4,
.grid_view2 .lp-grid-box-left.pull-left > p {
  color: #7f7f7f;
}

.cat-area h1 {
  margin-top: 5px;
}

.cat-area .col-md-6.col-sm-6.text-right {
  padding-top: 23px;
}

.page-heading-inner-container.cat-area {
  margin-top: -30px;
}

.currency-signs > ul > li > a.active,
.search-filters > ul > li > a.active {
  background-color: #62c7ff;
  border-color: #62c7ff;
  color: #fff;
}

.form-inline.tags-area .radio label,
.form-inline.tags-area .checkbox label {
  padding-left: 27px;
}

.jFiler-input-dragDrop input[type="file"] {
  height: 100% !important;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lp-grid-box-bottom .pull-left {
  max-width: 65%;
}

input.dropdown_fields {
  border: 1px solid #fff;
  border-radius: 0;
  height: 46px;
  line-height: 34px;
  min-width: 365px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

#input-dropdown {
  background-color: #fff;
  border: 1px solid #dedede;
  border-top: 0;
  left: -45px;
  min-width: 100%;
  max-height: 260px;
  display: none;
  position: absolute;
  top: 42px;
}

#input-dropdown option {
  border-bottom: 1px solid #dedede;
  cursor: pointer;
  padding: 8px 10px;
}

select::-webkit-scrollbar {
  width: 1px;
  background-color: transparent;
}

select::-moz-scrollbar {
  width: 1px;
  background-color: transparent;
}

select::-o-scrollbar {
  width: 1px;
  background-color: transparent;
}

select::-google-ms-scrollbar {
  width: 1px;
  background-color: transparent;
}

select::-khtml-scrollbar {
  width: 1px;
  background-color: transparent;
}

#input-dropdown > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

#input-dropdown > ul li {
  border-bottom: 1px solid #f9f9f9;
  color: #484848;
  cursor: pointer;
  float: left;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 22px;
  padding: 8px 15px;
  text-decoration: none;
  width: 100%;
}

#input-dropdown > ul li:last-of-type {
  border-bottom: medium none;
}

#input-dropdown > ul li:first-of-type {
  border-top: medium none;
}

.lp-s-tag {
  font-weight: 700;
}

#input-dropdown > ul li i {
  margin-right: 4px;
  width: 20px;
}

img.loadinerSearch {
  height: 30px;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 30px;
  z-index: 99;
  display: none;
}

#rewies_form img.loadinerSearch {
  bottom: 39px;
  height: 30px;
  left: 31%;
  position: static;
  right: 100%;
  top: auto;
  width: 30px;
  z-index: 99;
}

.lp-home-banner-contianer
  .lp-search-bar
  .chosen-container-single
  .chosen-single {
  border-radius: 0 5px 5px 0;
  height: 46px;
}

.lp-home-banner-contianer
  .lp-search-bar
  .chosen-container-single
  .chosen-single
  > span {
  margin-right: 0;
}

.lp-home-banner-contianer
  .lp-search-bar
  .form-group.lp-location-search
  .ui-widget.border-dropdown
  .chosen-container {
  max-width: none;
}

.lp-home-banner-contianer .lp-search-bar .chosen-container .chosen-results {
  float: right;
  height: 250px;
  width: 100%;
}

.header-container.lp-header-bg .lp-section-row .lp-home-categoires {
  z-index: 0;
}

.list_view.lp-grid-box-contianer .lp-grid-box-description {
  padding-bottom: 45px;
  padding-top: 5px;
  vertical-align: top;
  width: 67%;
}

.list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom {
  background-color: transparent;
  bottom: 0;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  text-align: right;
  vertical-align: top;
  width: calc(100% - 260px) !important;
}

.listing-with-map
  .list_view.lp-grid-box-contianer
  .lp-grid-box
  .lp-grid-box-bottom {
  width: calc(100% - 250px) !important;
}

.listing-simple
  .list_view.lp-grid-box-contianer
  .lp-grid-box
  .lp-grid-box-bottom {
  width: 70%;
}

.listing-simple .list_view.lp-grid-box-contianer .lp-grid-box-thumb-container {
  vertical-align: top;
  width: 30%;
}

.list_view .lp-grid-box {
  border-radius: 5px;
  float: left;
  position: relative;
  width: 100%;
}

.list_view a.add-to-fav.lp-add-to-fav i.fa {
  display: inline-block;
  font-size: 13px;
  margin-right: 5px;
}

.listing-simple .search-row .form-inline.tags-area .form-group {
  padding: 0;
  width: 100%;
}

.list_view .categories-area {
  display: inline-block;
  float: none;
}

.listing-simple
  .search-row
  .form-inline
  .input-group
  .input-group-addon.lp-border {
  background-color: #f8f8f8;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-top: 1px solid #dedede;
  float: left;
  height: 37px;
  line-height: 37px;
  padding: 0 0 0 12px;
  width: 30px;
}

.listing-simple
  .search-row
  .form-inline
  .input-group
  .chosen-container-single-nosearch.chosen-container
  a {
  border-left: 0 none;
}

.lp-search-bar .lp-search-btn {
  background-color: transparent;
  height: 46px;
  z-index: 999999;
}

.form-group.lp-location-search .chosen-container.chosen-container-single {
  width: 214px !important;
}

.form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  margin-left: 25px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single {
  background-color: transparent;
  border-radius: 0 5px 5px 0;
  float: left;
  height: 46px;
  line-height: 47px;
  margin: 0;
  padding-left: 70px;
  width: 100%;
}

.form-group.lp-location-search .lp-where {
  background-color: transparent;
  border-radius: 0;
  color: #333;
  font-weight: 600;
  height: 46px;
  left: 1px;
  line-height: 46px;
  padding: 0 0 0 10px;
  position: absolute;
  top: 0;
  width: 65px;
  z-index: 0;
}

.lp-search-bar .lp-s-cat {
  font-weight: 400;
}

#input-dropdown {
  background: #fff none repeat scroll 0 0;
  border: medium none;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.3);
  margin-top: 1px;
  padding-bottom: 10px;
  padding-top: 0;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

#input-dropdown .lp-s-caticon,
#input-dropdown .lp-wrap-cats > img {
  margin-right: 10px;
  margin-top: 3px;
  vertical-align: top;
  width: 17px;
}

#input-dropdown li a {
  color: #7e7e7e;
  font-size: 14px;
}

#input-dropdown li span {
  font-size: 14px;
  line-height: 26px;
  vertical-align: top;
}

#input-dropdown li:hover span,
#input-dropdown li:hover a,
#input-dropdown li:hover {
  background-color: #363f48;
  color: #fff;
}

#input-dropdown li .lp-s-extra {
  font-size: 11px;
}

#input-dropdown li {
  line-height: 29px;
  padding-bottom: 5px;
  padding-top: 5px;
}

.form-group.lp-suggested-search input {
  border-right: 1px solid #ddd !important;
  padding-left: 56px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.lp-search-bar .lp-s-title {
  display: block;
  line-height: 13px;
}

.lp-search-bar .lp-s-extra {
  display: inline-block;
  font-size: 11px;
  color: #999;
  line-height: normal;
}

.lp-search-bar .form-group.lp-suggested-search {
  border-radius: 0;
}

.lp-search-bar .form-group.lp-suggested-search {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.what-placeholder::after {
  color: #000;
  content: attr(data-holder);
  font-size: 13px;
  left: 55px;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
  top: 13px;
  z-index: 999999;
}

.lp-list-page-grid
  .grid_view2
  .lp-grid-box-description
  .lp-grid-box-left.pull-left {
  padding: 0 !important;
}

.lp-grid-style3-outer .lp-grid-box-left.pull-left {
  padding: 0 !important;
}

.list_view .lp-grid-style3-outer .lp-grid-box-left.pull-left .lp-h4 {
  margin-bottom: 2px;
  margin-top: 0;
}

.list_view
  .lp-grid-style3-outer
  .lp-grid-box-left.pull-left
  .description-container {
  margin-bottom: 0;
}

.lp-list-page-grid .grid_view2 .lp-grid-box-description .lp-grid-box-right {
  margin: 0;
  padding: 0;
}

.lp-section-content-container
  .grid_view2
  .lp-grid-box-description
  .lp-grid-box-right {
  border: medium none;
}

.lp-grid-box-description h4.lp-h4 > a {
  color: #292929;
  line-height: 27px;
}

.list_view .lp-grid-box-description h4.lp-h4 > a {
  display: inline-block;
  width: 100%;
}

.grid_view2 .lp-grid-box-description .reviewer-details > p {
  color: #7f7f7f;
  height: 40px !important;
  line-height: normal;
  overflow: hidden;
}

.grid_view2 .lp-grid-box-description .reviewer-details > h4,
.grid_view2 .lp-grid-box-left.pull-left > p {
  margin-bottom: 7px;
}

.grid_view2 .lp-grid-box-left.pull-left > p i {
  font-size: 17px;
  margin-right: 5px;
}

.lp-grid-box-description h4.lp-h4 > a > .listing-pro {
  border: 1px solid #ebac2c;
  border-radius: 3px;
  color: #ebac2c;
  float: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-right: 7px;
  margin-top: 5px;
  padding: 0 3px 0 4px;
}

.vc_column_container
  .grid_view2.lp-grid-box-contianer
  .lp-grid-box-description
  .lp-grid-box-right {
  display: none;
}

.element-price-range.list-style-none {
  padding-left: 0;
  position: relative;
}

.lp-grid-box-contianer.grid_view2
  .lp-grid-box-description
  .lp-grid-box-left
  p
  > span {
  position: relative;
}

.lp-grid-box-contianer.grid_view2
  .lp-grid-box-description
  .lp-grid-box-left
  p
  > span::before {
  background-color: #e9e9e9;
  content: "";
  height: 20px;
  left: 4px;
  position: absolute;
  top: 0;
  width: 1px;
}

.lp-grid-box-contianer.grid_view2
  .lp-grid-box-description
  .lp-grid-box-left
  p
  > span:first-child::before {
  display: none;
}

.lp-grid-box-description span.cat-icon {
  display: inline-block;
  line-height: 17px;
  margin-right: 5px;
  width: 15px;
}

.lp-grid-box-description span.cat-icon img.icon {
  margin-top: 0;
  vertical-align: top;
}

.lp-grid-box-description .lp-grid-box-left.pull-left > p > a {
  color: #7f7f7f;
}

.lp-grid-box-bottom span.cat-icon {
  float: left;
  line-height: 27px;
  margin-right: 2px;
  width: 17px;
}

.lp-grid-box-bottom .pull-left a {
  color: #7f7f7f;
  line-height: 30px;
  margin-right: 2px;
  position: relative;
}

.lp-grid-box-bottom .pull-left a::before {
  bottom: -6px;
  content: ",";
  display: inline-block;
  left: -5px;
  position: absolute;
}

.lp-grid-box-bottom .pull-left a:first-of-type::before {
  display: none;
}

.lp-grid-box-left.pull-left > ul {
  float: left;
  padding: 0;
  width: 100%;
}

.lp-grid-box-left.pull-left > ul > li {
  border-right: 1px solid #f1f1f1;
  float: left;
  line-height: 24px;
  padding: 0;
  padding-right: 14px;
  margin-right: 14px;
  text-align: center;
}

.lp-grid-box-left.pull-left > ul > li:first-of-type {
  padding-left: 0;
  color: #7f7f7f;
  text-align: left;
}

.lp-grid-box-left.pull-left > ul > li:last-child {
  border-right: medium none;
  padding-right: 0;
  margin-right: 0;
}

.lp-grid-box-left.pull-left > ul > li > a {
  color: #7f7f7f;
}

.lp-menu ul.inner_menu > li {
  padding-right: 14px;
}

.lp-grid-box-contianer.list_view
  .lp-grid-box-left.pull-left
  > ul
  > li:last-child {
  padding-right: 0;
}

.lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left > ul > li.middle {
  padding-right: 17px;
}

.list_view .lp-grid-box-description .reviewer-details > p {
  color: #7f7f7f;
  height: 33px;
  line-height: normal;
  overflow: hidden;
}

.listing-simple.listing_list_view .lp-list-page-grid {
  margin: 0 auto;
  width: 900px;
}

.list_view .lp-grid-box-quick {
  background: rgba(0, 0, 0, 0)
    linear-gradient(0deg, rgba(0, 0, 0, 0) 8%, rgba(0, 0, 0, 0.9) 94%) repeat
    scroll 0 0;
  bottom: auto;
  border-radius: 8px 0 0;
  padding: 4px 10px 15px;
  top: 0;
}

.listing-simple.listing_list_view
  .list_view.lp-grid-box-contianer
  .lp-grid-box-bottom
  .show {
  display: none !important;
}

.listing-simple.listing_list_view
  .list_view.lp-grid-box-contianer
  .lp-grid-box-bottom
  .hide {
  display: block !important;
}

.listing-simple.listing_list_view
  .list_view.lp-grid-box-contianer
  .lp-grid-box-bottom
  span.text {
  color: #7f7f7f;
  line-height: 30px;
}

.list_view .lp-grid-box-left.pull-left > p .icon,
.grid_view2 .lp-grid-box-left.pull-left > p .icon {
  float: left;
  width: 22px;
}

.list_view .lp-grid-box-bottom span.cat-icon {
  margin-right: 3px;
  width: 15px;
}

.grid_view2 .lp-grid-box-thumb-container > .lp-grid-box-thumb > .hide {
  display: block !important;
}

.grid_view2 .lp-grid-box-thumb-container > .lp-grid-box-thumb > .show {
  display: none !important;
}

.hide-img {
  display: none;
}

.show-img {
  display: block;
}

.list_view .show-img {
  display: none;
}

.list_view .hide-img {
  display: block;
}

.post-detail-content {
  border: 1px solid #dedede;
  border-radius: 5px;
  color: #7f7f7f;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  padding: 14px 20px 15px;
  display: inline-block;
}

.lp-detail-page-template-3 .post-detail-content {
  margin-bottom: 30px;
}

.listing-second-view .ui-accordion-content {
  color: #7f7f7f;
  font-size: 14px;
}

.ui-accordion p {
  color: #7f7f7f;
}

.listing-second-view .ui-accordion-content:last-of-type {
  margin-bottom: 0;
}

.img_1 .slick-slide img {
  border-radius: 5px;
}

.review_status {
  float: right;
  line-height: 45px;
}

.listing-second-view .images-gal-section .slick-prev,
.listing-second-view .images-gal-section .slick-next {
  height: 30px;
  width: 30px;
}

.images-gal-section .slick-prev::before,
.images-gal-section .slick-next::before {
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  width: 30px;
}

.listing-second-view .images-gal-section .slick-prev {
  left: 10px;
}

.listing-second-view .images-gal-section .slick-next {
  right: 10px;
}

.slick-prev:focus::before,
.slick-next:focus::before {
  opacity: inherit;
}

.lp-header-full-width .lp-add-listing-btn ul li a i {
  display: inline-block;
  line-height: 17px;
  margin-top: 4px;
}

.listing-second-view .open-hours ul li a.closed.dayoff {
  float: right;
  text-transform: uppercase;
}

.post-row-header > h3 {
  margin-bottom: 0;
}

form#searchform {
  position: relative;
  z-index: 1;
}

.search-filters > ul > li > a i {
  margin-right: 3px;
}

.search-filters > ul > li > a.active i {
  color: #fff;
}

#searchform .tags-area.form-inline ul li .checkbox label::before {
  background-color: #fff;
  border: 1px solid #dedede;
}

#searchform .tags-area.form-inline ul li .checkbox label {
  font-weight: 300;
}

.lp-row {
  display: flex;
  flex-wrap: wrap;
}

.help-text a.help {
  pointer-events: none;
}

.form-group.lpfeatures_fields::after {
  display: none;
}

.fa-heart.fa-heart-o::before {
  content: "\f08a";
}

.fa-heart.fa-spin.fa-spinner::before {
  content: "\f110";
}

.mm-menu_offcanvas.mm-menu_navbar_top-3 {
  display: none !important;
}
.mm-menu_offcanvas.mm-menu_navbar_top-3.mm-menu_opened {
  display: block !important;
}
.listing-app-view.listing-app-view-new
  .app-view-header
  .lp-home-banner-contianer.home-banner-animated {
  min-height: 50vh !important;
  background: #ffffff !important;
}

.lp-home-categoires.lp-inside-search-view4:not(.lp-inside-search-view2) li a span {
  font-size: 14px;    font-family: 'Open Sans',"Open Sans Fallback";    line-height: 0px !important;
}

.list_view .lp-grid-box-left.pull-left > p > span.icon i,
.grid_view2 .lp-grid-box-left.pull-left > p > span.icon i {
  font-size: 14px;
}

.lp-left-filter #searchform .chosen-container-single .chosen-single > span {
  font-size: 13px;
  padding-left: 5px;
  line-height: 46px;
}

.search-row .form-inline .form-group:nth-child(2) {
  padding-right: 0;
}

.search-row .form-inline .form-group:nth-child(2) ul li {
  margin-right: 4px;
}

.dashboard-tabs.lp-main-tabs.text-center > ul {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li {
  border-top: 1px solid #42474c;
  float: left;
  line-height: 47px;
  text-align: left;
  width: 100%;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li:hover > a {
  background-color: #3a4a59;
}

.dashboard-tabs.lp-main-tabs .opened > a {
  border-left-color: transparent;
  color: #fff;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > a {
  border-left: 5px solid transparent;
  color: #fff;
  float: left;
  font-size: 14px;
  padding: 0 15px;
  width: 100%;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > a > i {
  width: 20px;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > ul {
  display: none;
  float: left;
  padding-bottom: 13px;
  padding-left: 32px;
  padding-right: 40px;
  padding-top: 15px;
  width: 100%;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > ul.opened {
  display: block;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > ul > li {
  float: left;
  line-height: 28px;
  width: 100%;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > ul > li > a {
  border-top: 1px solid #42474c;
  color: #fff;
  float: left;
  font-size: 13px;
  line-height: 34px;
  padding: 0 28px 0 30px;
  width: 100%;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > ul > li > a i {
  margin-right: 5px;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > ul > li > a > span {
  float: right;
}

.dashboard-tabs.lp-main-tabs.text-center > ul > li > a > i.fa.fa-angle-down {
  float: right;
  line-height: 47px;
}

.dashboard-tabs.lp-main-tabs.text-center
  > ul
  > li.opened
  > a
  > i.fa.fa-angle-down {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}

.listing-second-view .review-form #reply-title {
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
}

.listing-second-view .review-form #reply-title i {
  color: #33334d;
}

.dashboard-content
  .dashboard-contnt
  .dashboard-tab
  .lp-list-view-content-upper
  .category-cion
  > a {
  border: medium none;
  border-radius: 0;
  height: 20px;
  line-height: normal;
  width: 20px;
}

.dashboard-content
  .dashboard-contnt
  .dashboard-tab
  .lp-list-view-content-upper
  .category-cion
  > a
  > img {
  float: left;
  height: auto;
  margin-top: 4px;
  width: 14px;
}

.dashboard-content
  .dashboard-contnt
  .dashboard-tab
  .lp-list-view-content-upper
  li.category-cion {
  height: 20px;
  float: left;
  width: 20px;
}

.dashboard-tab .list-pt-display li span,
.dashboard-tab .lp-list-view .lp-grid-box-price {
  font-weight: 400;
  margin-bottom: 3px;
}

.dashboard-content
  .dashboard-contnt
  .dashboard-tab
  .lp-list-view-content-upper
  .lp-grid-box-price
  li
  > a {
  line-height: 20px;
}

.dashboard-tab .lp-rigt-icons {
  float: left;
  padding: 0;
  width: 100%;
}

.dashboard-tab .lp-rigt-icons ul li span {
  font-weight: 400;
  padding-right: 10px;
}

.dashboard-content .dashboard-tab .lp-rigt-icons .lp-list-view-edit.aliceblue {
  margin-top: -4px;
}

.dashboard-tab .lp-list-view-edit li a i {
  color: #9f9f9f;
  float: left;
  font-size: 13px;
  line-height: 24px;
}

.dashboard-content .tab-header {
  background-color: #464f58;
  margin-bottom: 30px;
  margin-left: -30px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-top: 15px;
  width: 110%;
}

.promotion-sorting {
  float: right;
  padding: 8px 0 0;
  margin-bottom: 12px;
}

.promotion-sorting .select2.select2-container {
  min-width: 200px;
}

.promotion-sorting .select2-container--default .select2-selection--single {
  height: 40px;
}

.promotion-sorting
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
  padding-left: 12px;
}

.promotion-sorting
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
}

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

.dashboard-content .lp-flip {
  float: right;
  width: 100%;
}

.dashboard-content .promotional-section {
  border-radius: 5px;
  float: left;
  text-align: center;
  width: 100%;
}

.dashboard-content .promotional-section.padding {
  background-color: #fff;
  border: 1px solid #dedede;
  margin-bottom: 30px;
  padding: 30px;
}

.dashboard-content .promotiona-text {
  display: inline-block;
  width: 470px;
}

.dashboard-content .promotiona-text > h3 {
  color: #363f48;
  font-size: 24px;
  margin-bottom: 20px;
}

.dashboard-content .promotiona-text > p {
  color: #626262;
  font-size: 14px;
  margin-bottom: 50px;
}

.dashboard-content .promotional-section > img {
  height: auto;
  width: auto;
}

.dashboard-content .lp-card > form#ads_promotion {
  display: none;
}

.dashboard-content .promotional-section a.lp-submit-btn {
  background-color: #42a7df;
  color: #fff;
  display: inline-block;
  height: 59px;
  line-height: 59px;
  margin-top: 45px;
  padding: 0;
  width: 369px;
}

.dashboard-content .promotional-section a.lp-submit-btn:hover {
  background-color: #363f48;
}

.dashboard-content .promotional-section .lp-list-view-thumb {
  float: left;
  padding: 0;
  text-align: left;
  width: 5%;
}

.dashboard-content .promotional-section .lp-list-view-content-upper {
  float: left;
  min-height: 0;
  padding-left: 15px;
  text-align: left;
  width: 95%;
}

.dashboard-content .lp-pay-options .lp-inner > li {
  float: left;
  padding: 15px;
  width: 100%;
}

.dashboard-content .lp-grid-box-price .category-cion {
  float: left;
  height: 20px;
  margin-right: 2px;
  width: 20px;
}

.dashboard-content .lp-grid-box-price .category-cion img {
  float: left;
  height: auto;
  margin-top: 5px;
  width: 17px;
}

.dashboard-content .list-pt-display li span {
  font-weight: 400;
}

.dashboard-content .lp-face.lp-front.lp-pay-options > h3,
.dashboard-content .lp-face.lp-dash-sec > h4 {
  color: #363f48;
  font-size: 24px;
  margin-bottom: 20px;
  padding: 0 17px;
  text-align: left;
}

.dashboard-content .lp-face.lp-dash-sec > h4 {
  margin-top: 20;
  margin-bottom: 0;
}

.dashboard-content .promotional-section .margin-bottom-30.lp-dash-sec {
  border-radius: 5px;
  padding: 20px;
}

.dashboard-content .lp-list-view-content-upper > a {
  display: inline-block;
}

.dashboard-content .promote-btn.pull-right {
  margin-top: -17px;
  position: relative;
}

.dashboard-content .lp-list-view-content-bottom {
  float: left;
  width: 100%;
}

.dashboard-content .lp-pay-options .lp-promotebtn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #363f48;
  height: 32px;
  padding: 5px 15px 5px 40px;
  position: relative;
  width: auto;
}

.dashboard-content .promote-btn.pull-right::before {
  color: #363f48;
  content: "\f145";
  font-family: "FontAwesome";
  left: 15px;
  position: absolute;
  top: 2px;
}

.dashboard-content .lp-pay-options .promote-btn.pull-right {
  border: 1px solid #363f48;
  border-radius: 4px;
}

.dashboard-content .lp-pay-options .promote-btn.pull-right:hover {
  background-color: #363f48;
}

.dashboard-content .lp-pay-options .promote-btn.pull-right:hover::before,
.dashboard-content
  .lp-pay-options
  .promote-btn.pull-right:hover
  .lp-promotebtn {
  background-color: transparent;
  color: #fff;
}

.lp-list-view-content-upper h4,
.lp-list-view-paypal-inner h4 {
  margin-bottom: 5px;
}

.dashboard-content .lp-pay-options .lp-inner > li:last-child {
  margin-bottom: 0;
}

.dashboard-content .promotional-section.lp-promote-listing-margin {
  border-radius: 0;
}

.dashboard-content .margin-bottom-30.lp-dash-sec {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 0;
  float: left;
  text-align: left;
  width: 100%;
}

.dashboard-content .availableprice_options .checkboxx {
  float: left;
  margin-bottom: 40px;
  text-align: left;
  width: 33%;
}

.dashboard-content .availableprice_options .checkboxx .checkbox.pad-bottom-10 {
  display: inline-block;
  padding-left: 18px;
}

.dashboard-content .availableprice_options .checkboxx input[type="checkbox"] {
  bottom: 0;
  cursor: pointer;
  display: block;
  height: 245px;
  left: 0;
  margin-left: 0;
  margin-right: 10px;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 9;
}

.dashboard-content .availableprice_options.padding-top-30 {
  float: left;
  width: 100%;
}

.dashboard-content .checkboxx .checkbox label {
  font-weight: 400;
  line-height: 25px;
}

.dashboard-content .lp-dash-sec .form-group {
  background-color: #f4f4f6;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  height: 71px;
  line-height: 71px;
  margin-bottom: 35px;
  margin-top: 20px;
  padding: 0 25px;
  width: 100%;
}

.dashboard-content .promotional-section .lp-method-wrap.lp-listing-form {
  display: inline-block;
  margin: 30px 0 50px;
  padding-right: 10px;
  vertical-align: middle;
  width: 200px;
}

.dashboard-content
  .promotional-section
  .lp-method-wrap.lp-listing-form
  label
  img {
  position: relative;
}

.dashboard-content
  .promotional-section
  .lp-method-wrap.lp-listing-form
  input[type="radio"]:checked
  + label::before {
  top: 2px;
}

.dashboard-content .promotional-section > label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 5px;
  max-width: 100%;
  padding-left: 30px;
  position: relative;
  vertical-align: top;
}

.dashboard-content .lp-listing-form .radio.radio-danger {
  left: 10px;
  margin-top: 0;
  top: 18px;
}

.dashboard-content
  .lp-listing-form
  input[type="radio"]:checked
  + label::before {
  background-color: #999;
  height: 18px;
  width: 18px;
}

.lp-method-wrap.lp-listing-form > label {
  cursor: pointer;
}

.lp-pay-options #lp-next.promotebtn {
  display: none;
}

.promotional-section > .lp-face.lp-pay-options.lp-dash-sec > span.show {
  background-color: #e3e3e3;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  float: right;
  padding: 3px 10px;
  text-align: center;
  text-transform: capitalize;
  width: 71px;
}

.listing-app-view
  .promotional-section
  > .lp-face.lp-pay-options.lp-dash-sec
  > span.show {
  padding: 5px 10px !important;
  width: 86px !important;
}

.plan-img {
  float: left;
  padding-left: 4%;
  width: 96%;
}

.promotional-section .checkbox label::before {
  background-color: #f8f8f8;
  border: 1px solid #cecece;
}

.review-form > form#rewies_form.open_review_form {
  display: block;
}

.faq-section .post-row-header > h3 {
  font-size: 18px;
  margin-bottom: 0 !important;
  margin-top: 11px;
  text-transform: capitalize;
}

.post-row-header > h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.md-modal.md-effect-3.single-page-popup.md-show {
  width: 70%;
}

.listing-second-view .post-price-row > li.grayscale-dollar > span {
  font-size: 14px;
  font-weight: 400;
}

.listing-second-view .claim-area .phone-icon i {
  margin-right: 6px;
  width: 10px;
}

.listing-second-view .claim-area .phone-icon > strong {
  display: inline-block;
  font-weight: 500;
  line-height: 20px;
  vertical-align: top;
}

.widget-box
  .features-listing.extra-fields
  .post-row-header.clearfix.margin-bottom-15 {
  margin-bottom: 0 !important;
}

a.open-modal {
  border-radius: 5px;
  border-bottom: 1px solid #dedede;
  color: #53af22;
  float: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  margin: 0 0 12px;
  padding: 0 0 7px;
  text-transform: capitalize;
  width: 100%;
}

a.open-modal > img {
  float: left;
  margin: 5px 7px 0 0;
  width: 20px;
}

.widget-box.reservation-form a.make-reservation {
  background-color: #363f48;
  border: 1px solid #363f48;
  border-radius: 5px;
  color: #fff;
  float: left;
  font-size: 15px;
  font-weight: 700;
  height: 52px;
  line-height: 40px;
  margin-bottom: 0;
  padding: 5px 25px;
  width: 100%;
}

.reservation-form > a.make-reservation > img {
  display: inline-block;
  margin-right: 3px;
  margin-top: 10px;
  vertical-align: top;
  width: 20px;
}

.widget-box.reservation-form a.make-reservation i.fa-calendar-check-o,
a.open-modal i.fa-calendar {
  width: 25px;
}

.widget-box.reservation-form a.make-reservation i.fa-caret-down {
  float: right;
  line-height: 42px;
}

.widget-box.reservation-form a.make-reservation span {
  color: #fff;
}

.ifram-reservation,
.hotel-menu {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #dedede;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.inner-reservations {
  background-color: #fff;
  border-radius: 5px;
  height: 450px;
  left: 50%;
  overflow: hidden;
  padding: 20px 20px 0;
  position: absolute;
  top: 50%;
  width: 340px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.inner-menu {
  background-color: #fff;
  border-radius: 5px;
  left: 50%;
  padding: 20px 20px;
  position: absolute;
  top: 50%;
  width: 640px;
  max-width: 90%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.inner-reservations::before {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 21px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.inner-reservations > iframe {
  height: 450px;
}

a.close-btn,
a.close-menu-popup {
  border-radius: 100%;
  color: #000;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: -4px;
  top: -5px;
  width: 30px;
}

a.close-menu-popup {
  right: -15px;
  top: -15px;
}

.fullwidth-header .header-filter .input-group-addon.lp-border {
  background-color: transparent;
  border-radius: 0;
  font-weight: 700;
  height: 100%;
  left: 0;
  line-height: 46px;
  padding: 0 0 0 11px;
  position: absolute;
  top: 0;
  width: 55px;
  z-index: 0;
}

.fullwidth-header .header-filter .chosen-container-single .chosen-single {
  background-color: transparent;
  border: 0 solid #fff;
  border-radius: 0 5px 5px 0;
  height: 46px;
  padding-left: 65px;
  padding-top: 1px;
}

.fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15 {
  border-radius: 4px 0 0 4px;
  border-right: 1px solid #f0f0f0;
  width: 62%;
}

.fullwidth-header .header-filter .input-group.width-49-percent {
  background-color: #fff;
  border-radius: 0 4px 4px 0;
  float: left;
  position: relative;
  width: 36%;
  border-left: 1px solid #dedede !important;
}

.fullwidth-header
  .lp-search-chnage-styles-st
  .header-filter
  .input-group.width-49-percent {
  width: 42%;
}

.container .header-filter .search-form-field {
  background-color: #fff;
  border-radius: 4px 0 0 4px;
  border: none !important;
}

.container .header-filter .input-group.width-49-percent,
.container
  .header-filter
  .top-search-form
  .chosen-container-single
  .chosen-single {
  border: none !important;
}

.container .header-filter .lp-search-icon {
  -ms-transform: rotate(1deg);
  -webkit-transform: rotate(1deg);
  -moz-transform: rotate(1deg);
  -o-transform: rotate(1deg);
  transform: rotate(1deg);
}

.lp-menu-bar .fullwidth-header .header-filter .ui-widget.border-dropdown {
  height: 46px;
  line-height: 21px;
}

.fullwidth-header .header-filter .chosen-container-single .chosen-single span {
  font-size: 13px;
  height: 46px;
  line-height: 44px;
  margin-right: 0;
}

#input-dropdown .lp-s-title > a {
  color: #333;
  display: block;
  line-height: 14px;
}

#input-dropdown .lp-s-title > a > .lp-loc {
  display: block;
  margin-top: 0;
  font-size: 12px;
}

#input-dropdown .lp-wrap-title > img {
  border-radius: 3px;
  float: left;
  height: 40px;
  margin-right: 10px;
  width: 40px;
}

.fullwidth-header .header-filter .lp-search-btn-header i {
  top: 12px;
}

.fullwidth-header .lp-search-chnage-styles-st .header-filter i {
  top: 9px;
}

#input-dropdown .lp-default-cats > img {
  margin-right: 8px;
  width: 25px;
}

#full-overlay {
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  z-index: 5000;
}

.reviews-section span.interests-score {
  display: inline-block;
  text-align: center;
}

.lp-header-search-form
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  height: 46px !important;
}

.lp-archive-banner
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  height: 46px !important;
  width: 404px !important;
}

.chosen-container.chosen-container-single.chosen-container-single-nosearch {
  float: left;
  height: 46px;
  min-width: 100%;
  width: auto !important;
}

.header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
  height: 46px;
  position: relative;
  width: 6%;
}

.lp-section-title-container.text-center > h1 {
  text-transform: capitalize;
}

.list_view .lp-grid-box-left.pull-left > ul {
  text-align: right;
}

.list_view .lp-grid-box-left.pull-left > ul > li:first-of-type {
  float: left;
}

.list_view span.rate,
.grid_view2 span.rate {
  border-radius: 3px;
  line-height: 18px;
  padding: 3px 10px;
}

.list_view span.rate sup,
.grid_view2 span.rate sup {
  display: none;
}

.lp-menu-bar .header-filter.pos-relative.form-group {
  display: none;
}

.search-row
  #searchform
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  height: 35px;
  min-width: 0;
  width: 160px !important;
}

.search-row #searchform .chosen-container .chosen-results li.active-result {
  font-size: 12px;
}

.listing_list_view.listing-simple
  .row.listing-page-result-row.margin-bottom-25 {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 870px;
}

.fullwidth-header .header-filter .chosen-container .chosen-results {
  float: right;
  width: 100%;
}

.mfp-title {
  display: none;
}

.listing-with-map .search-row .lp-filter-inner,
.listing-with-map .search-row .lp-features-filter {
  background-color: transparent;
  border: medium none;
  box-shadow: none;
  float: left;
  padding-top: 0;
  width: 100%;
  border-radius: 0;
}

.lp-features-filter strong {
  font-size: 14px;
}

.listing-simple .search-row .lp-features-filter,
.listing-with-map .search-row .lp-features-filter {
  background-color: #fff;
  border-bottom: 1px solid #dedede;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  padding: 14px 14px 9px;
}

.listing-simple .search-row .lp-features-filter ul > li,
.listing-with-map .search-row .lp-features-filter ul > li {
  display: inline-block;
  float: none;
  margin-bottom: 5px;
  margin-right: 0;
  padding-right: 26px;
  vertical-align: top;
  width: 25%;
}

.listing-app-view .app-view-filters .lp-features-filter ul > li {
  width: 50% !important;
  margin: 0 !important;
  padding: 5px 0 !important;
  border-top: 0 solid #e3e3e3 !important;
}

.listing-app-view .app-view-filters .lp-features-filter ul > li:last-child {
  border-bottom: 0 solid #e3e3e3 !important;
}

.listing-simple .search-row .lp-features-filter .input-group,
.listing-with-map .search-row .lp-features-filter .input-group {
  border: medium none;
}

.listing-with-map .search-row > form > .form-inline.tags-area > .form-group {
  width: 100%;
}

.listing-with-map
  .search-row
  > form
  > .form-inline
  > .search-filters.form-group,
.listing-with-map
  .search-row
  > form
  > .form-inline
  > .form-group.pull-right.margin-right-0 {
  width: auto;
}

.listing-with-map .filter-top-section {
  margin-top: 36px;
  margin-bottom: 26px;
}

.filter-top-section > h3 {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  padding-left: 14px;
  vertical-align: top;
}

.listing-with-map .lp-title h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
}

.listing-with-map .lp-title h3 span {
  font-size: 18px;
}

.listing-view-layout {
  display: inline-block;
  float: right;
  vertical-align: top;
}

.listing-with-map .filter-top-section .listing-view-layout {
  margin-top: -9px;
  position: absolute;
  right: -24px;
}

.filter-top-section {
  float: left;
  width: 100%;
}

.filter-top-section > .form-group.pull-right {
  margin-bottom: 0;
}

#searchform > .form-inline > .search-filters > ul > li {
  margin-right: 0;
}

#searchform > .form-inline > .search-filters > ul.search-filter-attr > li {
  padding-right: 9px;
}

#searchform
  > .form-inline
  > .search-filters
  > ul.search-filter-attr
  > li:last-child {
  padding-right: 5px;
}

.post-with-map-container-right .breadcrumbs {
  margin-left: 2px;
}

.post-with-map-container-right .breadcrumbs li a,
.post-with-map-container-right .breadcrumbs li span {
  color: #a3a3a3;
}

.post-with-map-container-right .breadcrumbs li::before {
  color: #a3a3a3;
  background-color: #a3a3a3;
}

.post-with-map-container-right
  #searchform
  .chosen-container-single
  .chosen-single:focus {
  border-color: #dedede;
  outline: medium none;
}

.post-with-map-container .m-text-center {
  display: none;
}

.post-with-map-container #listing_found.m-text-center {
  display: block;
  font-size: 13px;
  position: absolute;
  top: 125px;
}

form#searchform {
  padding: 13px 0 0;
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border-color: #dedede;
}

.header-container .fullwidth-header .header-filter #input-dropdown {
  border: medium none;
  left: -45px;
  top: 41px;
  width: initial;
}

.search-page-header {
  margin-top: -17px;
}

.search-page-header h1 {
  font-size: 30px;
  margin-top: 10px;
}

.page-heading-inner-container h1 span {
  font-weight: 400;
}

.search-page-header .col-md-6.col-sm-6.text-right {
  padding-top: 23px;
}

.top-search-form.form-inline .input-group .form-control {
  width: 100%;
}

.top-search-form .lp-search-btn-header .lp-search-btn {
  padding: 9px 32px;
}

span.package-type {
  display: inline-block;
  color: #fff;
  margin-top: 22px;
}

.dashboard-tabs ul li ul li.active a {
  color: #41a6df !important;
}

.dashboard-tabs.lp-main-tabs.text-center ul li a.active-dash-menu {
  border-left-color: #41a6df !important;
  color: #fff !important;
  background-color: #3a4a59 !important;
}

.city-thumb {
  float: left;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

.city-thumb > img {
  margin-left: -13px;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.city-girds:hover > .city-thumb > img {
  margin-left: 13px;
}

.header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
  width: 3%;
}

.fullwidth-header
  .lp-search-chnage-styles-st
  .header-filter
  .lp-search-btn-header.pos-relative {
  width: 5%;
}

.header-filter.form-group.pos-relative .form-inline.top-search-form {
  float: left;
  padding: 0;
  position: relative;
  width: 100%;
}

.header-container .fullwidth-header .header-filter #input-dropdown {
  left: 0;
  max-height: 293px;
  overflow: hidden;
  padding-bottom: 0;
}

.dashboard-content form.form-horizontal {
  padding: 0 44px 0 0;
  width: 100%;
}

body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover
  > i,
body
  .grid_view2
  a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover
  > span {
  color: #41a6df;
}

form.form-inline .chosen-container.chosen-with-drop .chosen-drop {
  top: 46px;
}

.archive-search
  form.form-inline
  .chosen-container.chosen-with-drop
  .chosen-drop {
  top: 46px;
}

form.form-inline div#input-dropdown {
  padding-bottom: 0;
}

.lp-grid-box-contianer .lp-grid-desc-container {
  overflow: visible;
}

.lp-grid-box-contianer .lp-grid-box-thumb-container {
  overflow: hidden;
  position: relative;
}

.lp-grid-box-thumb img {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.promotiona-col-left,
.promotiona-col-right {
  float: left;
  width: 50%;
}

.promotiona-col-right {
  padding: 20px 30px 0;
}

.promotional-element {
  float: left;
  position: relative;
  width: 100%;
}

.promotional-row {
  float: left;
  padding-top: 177px;
  width: 100%;
}

.promotiona-col:first-of-type {
  margin-bottom: -2px;
}

.promotional-row .promotiona-col-right h3 {
  color: #fff;
  font-size: 48px;
  line-height: 47px;
  margin-bottom: 20px;
}

.promotiona-col-right > p {
  color: #fff;
  font-size: 15px;
  line-height: normal;
  margin-bottom: 30px;
}

a.lp-sent-btn {
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  height: 46px;
  line-height: 46px;
  margin-bottom: 7px;
  padding: 0 20px;
  text-transform: uppercase;
}

.promotiona-col-right > p.phone_content {
  margin-bottom: 0;
}

.promotional-service {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 6px;
  float: left;
  padding: 10px;
  width: 100%;
}

.promotiona-thumb {
  float: left;
  text-align: center;
  width: 100%;
}

.promotiona-thumb > img {
  display: inline-block;
}

.promotiona-text-details {
  float: left;
  padding: 30px 10px 15px;
  text-align: center;
  width: 100%;
}

.promotiona-text-details > h3 {
  font-size: 22px;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.promotiona-text-details > p {
  color: #7f7f7f;
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}

.promotional-timeline {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  padding: 60px 70px;
  width: 100%;
}

.top-desc {
  float: left;
  text-align: center;
  width: 100%;
}

.top-desc h2 {
  color: #535353;
  font-size: 27px;
  margin: 0 0 10px;
  text-align: center;
}

.top-desc > p {
  color: #7f7f7f;
  font-size: 15px;
}

.timeline-section {
  float: left;
  margin-bottom: 30px;
  width: 100%;
}

.promotional-thumb {
  float: left;
  width: 50%;
}

.promotional-text-details {
  float: left;
  width: 50%;
}

.promotional-text-details > h3 {
  color: #535353;
  font-size: 20px;
}

.promotional-text-details > p {
  color: #7f7f7f;
  font-size: 15px;
}

.promotional-text-details {
  float: left;
  padding: 60px 30px 0 0;
  width: 50%;
}

.timeline-section:last-of-type {
  margin-bottom: 0;
}

.timeline-section:last-of-type .promotional-text-details {
  padding-left: 30px;
  padding-right: 0;
}

.promotional-presentation {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  padding: 48px 70px 0;
  text-align: center;
  width: 100%;
}

.promotional-presentation .top-desc {
  margin-bottom: 27px;
}

.presentation-section {
  display: inline-block;
  margin-left: -2px;
  padding: 0 10px;
  vertical-align: top;
  width: 48%;
}

.presentation-text-details {
  float: left;
  text-align: center;
  width: 100%;
}

.presentation-text-details > h3 {
  color: #535353;
  font-size: 20px;
  margin: 0;
}

.presentation-text-details > p {
  color: #7f7f7f;
  font-size: 16px;
  margin-bottom: 10px;
}

.support-section {
  float: left;
  padding: 123px 70px 41px;
  position: relative;
  width: 100%;
}

.support-section::before {
  content: "\f10d";
  color: #dedbdb;
  font-family: "FontAwesome";
  font-size: 100px;
  left: 50px;
  position: absolute;
  top: 3px;
}

.promotional-support {
  background-repeat: no-repeat;
  float: left;
  width: 100%;
}

.support-text-details {
  float: left;
  width: 70%;
}

.testi-detail {
  float: left;
  width: 100%;
}

.testi-detail > p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 15px;
}

.support-text-details > h3 {
  display: inline-block;
  font-size: 16px;
  margin: 0 0 6px;
  padding-bottom: 10px;
  position: relative;
}

.support-text-details > h3::before {
  background-color: #2ba1ec;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 67px;
}

.support-text-details > p {
  font-size: 14px;
}

.call-to-action {
  float: left;
  padding: 70px 0 80px;
  width: 100%;
}

.calltoaction-left-panel {
  float: left;
  width: 75%;
}

.calltoaction-right-panel {
  float: left;
  width: 25%;
}

.calltoaction-left-panel > h3 {
  color: #000;
  font-size: 35px;
  margin: 0 0 1px;
}

.calltoaction-left-panel > p {
  color: #000;
  font-size: 15px;
  margin-bottom: 0;
}

.calltoaction-right-panel > a {
  background-color: #d80000;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  height: 42px;
  line-height: 42px;
  min-width: 217px;
  text-align: center;
}

.calltoaction-right-panel > a:hover {
  background-color: #c80000;
}

.calltoaction-right-panel > p {
  margin: 0;
  padding-left: 26px;
}

.thankyou-page {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.thankyou-panel h3 {
  color: #292929;
  font-size: 35px;
  margin: 20px 0 50px;
}

.thankyou-panel > p {
  color: #333;
  font-size: 15px;
  margin-bottom: 35px;
}

.thankyou-panel > ul {
  padding: 0;
}

.thankyou-panel ul li {
  display: inline-block;
  margin: 0 2px;
}

.thankyou-panel ul li a {
  border: 1px solid #363f48;
  border-radius: 4px;
  color: #363f48;
  display: inline-block;
  height: 34px;
  line-height: 31px;
  padding: 0 25px;
  vertical-align: top;
}

.thankyou-panel ul li a:hover {
  background-color: #363f48;
  color: #fff;
}

.lp-section-content .submit_new_style .author-section.lp-form-row {
  background-color: #f7fbfe;
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 18px 20px;
  text-align: left;
}

.lp-section-content .submit_new_style .lp-form-row-left > p {
  color: #1e2a36;
  margin-left: 5px;
}

.author-section p a.md-trigger,
.author-section p a.lp-signout-btn {
  color: #008df3;
}

.submit_new_style form#lp-submit-form .blue-section .form-group label {
  font-weight: 600;
}

.author-section p a.lp-signout-btn {
  font-size: 15px;
  padding: 0;
}

.submit_new_style .lp-form-row-left strong {
  font-weight: 600;
  text-transform: capitalize;
}

.error-msg {
  border: 1px solid #ff0000 !important;
}

.error-msg::-webkit-input-placeholder {
  color: red;
}

.error-msg::-moz-placeholder {
  color: red;
}

.error-msg:-ms-input-placeholder {
  color: red;
}

.error-msg:-moz-placeholder {
  color: red;
}

#invoices .lp-invoice-table {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  margin: 0;
}

.invoice-section {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  margin-bottom: 30px;
  width: 100%;
}

.dashboard-content .top-section {
  border-bottom: 1px solid #dedede;
  padding: 18px 18px 18px;
}

.dashboard-content .invoice-section .top-section > h3 {
  color: #7f7f7f;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  margin: 0;
}

.invoice-section .top-section a.btn.btn-first-hover.pull-right.showme {
  color: #fff;
  font-weight: 700;
  padding-left: 30px;
  position: relative;
}

.invoice-section .top-section a.btn.btn-first-hover.pull-right.showme::before {
  content: "\f06e";
  font-family: "FontAwesome";
  left: 10px;
  position: absolute;
  top: 6px;
}

.invoice-section table tr th {
  line-height: 21px;
  padding: 10px 15px;
}

.lp-invoice-table .invoice-section table tr td {
  line-height: 33px;
  width: 18%;
}

.lp-invoice-table > h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.invoice-section a.author-link {
  color: #42a7df;
}

.author-section .avatar-circle {
  height: 40px;
  width: 40px;
}

.author-social .status > span {
  margin-left: 10px;
}

.blue-section
  .preview-section
  i.fa-check
  .blue-section
  .preview-section
  i.fa-check {
  margin-right: 20px;
}

.listing-slide.img_1 .slick-slide img {
  border-radius: 0;
}

.widget-box.listing-price .claim-area {
  border: medium none;
  line-height: 17px;
  margin-top: 0;
}

.single-inner-container .price-area > div {
  border-bottom: 1px solid #ececec;
  float: left;
  padding: 10px 0;
  width: 100%;
}

.listing-app-view2 .listing-price .price-area .app-view-lead-form-row {
  border-bottom: 0 !important;
}

.listing-app-view2 .widget-box.listing-price .price-area .claim-area {
  border-bottom: 1px solid #ececec !important;
}

.single-inner-container .price-area > div:first-of-type {
  padding-top: 0;
}

.single-inner-container .price-area > div:last-of-type {
  border-bottom: 0 none !important;
  padding-bottom: 0;
}

.listing-app-view2 .single-inner-container .price-area > div:last-of-type {
  border-bottom: 1px solid #e3e3e3 !important;
  padding-bottom: 30px !important;
}

.price-area {
  float: left;
  width: 100%;
}

.table-responsive.campaign {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  margin-bottom: 25px;
  width: 100%;
}

.table-responsive.campaign .listing_pro {
  border: 1px solid #ebac2c;
  border-radius: 3px;
  color: #ebac2c;
  font-size: 14px;
  float: left;
  line-height: 24px;
  margin-right: 10px;
  padding: 0 2px;
}

.table-responsive.campaign .top-section > h3 span {
  float: left;
  font-size: 18px;
  line-height: 25px;
  position: relative;
}

.campaign.table-responsive .top-section > h3 {
  float: left;
  margin: 4px 0 15px;
  width: 100%;
}

.campaign-options {
  float: left;
  width: 100%;
}

.campaign-options > ul {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

.campaign-options ul > li {
  color: #7f7f7f;
  float: left;
  margin-right: 20px;
}

.campaign-options ul li i.fa-bar-chart {
  color: #41a6df;
}

.campaign-options ul li i {
  font-size: 17px;
  margin-right: 2px;
}

.campaign-options ul li i.fa-check-circle {
  color: #3dcc4e;
}

.campaign-options ul li i.fa-close {
  color: #d93b3b;
}

span.active-status {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
  padding-left: 15px;
  position: relative;
  vertical-align: middle;
}

span.active-status::before {
  background-color: #afafaf;
  border-radius: 100%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

span.active-status.active::before {
  background-color: #3dcc4e;
}

.table-responsive.campaign .table.table-striped > thead > tr > th {
  border-bottom: 0 none;
  border-top: 0 none;
  line-height: 31px;
}

.table-responsive.campaign .table-striped > tbody > tr:nth-of-type(2n + 1) {
  background-color: #fff;
}

.table-responsive.campaign .table.table-striped > tbody > tr > td,
.table-responsive.campaign .table.table-striped > thead > tr > th {
  color: #7f7f7f;
  font-size: 14px;
  line-height: 34px;
  padding-left: 15px;
  width: 18%;
}

.table-responsive.campaign .table.table-striped > thead > tr > th {
  color: #333;
}

.table-responsive.campaign table {
  border: medium none;
  margin-bottom: 0;
}

.dashboard-content .tab-header h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
  width: 100%;
}

.active-packages-area .table-responsive {
  background-color: #fff;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-radius: 5px;
  border-right: 1px solid #dedede;
  float: left;
  margin-bottom: 25px;
  width: 100%;
}

.active-packages-area .table-responsive .top-area {
  background-color: #41a6df;
  color: #fff;
  float: left;
  padding: 20px;
  width: 100%;
}

.listing-app-view .active-packages-area .table-responsive .top-area {
  background-color: #fff !important;
  color: #333 !important;
  border: 0 !important;
}

.listing-app-view .active-packages-area .table-responsive .top-area h2 {
  color: #333 !important;
  text-align: left !important;
}

.listing-app-view .active-packages-area .table-responsive .top-area h2 span {
  color: #333 !important;
}

.listing-app-view
  .dashboard-content
  .active-packages-area
  span.active-status::before {
  background-color: #333 !important;
}

.active-packages-area .table-responsive .top-area > h2 {
  color: #fff;
  float: left;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

.listing-options {
  float: right;
}

.listing-options > ul {
  float: left;
  margin: 0;
  padding: 0;
}

.listing-options > ul > li {
  float: left;
  font-size: 16px;
  line-height: 26px;
  margin-left: 25px;
}

.dashboard-content-app-view .packages .listing-options > ul > li {
  margin-left: 0 !important;
}

.dashboard-content .active-packages-area span.active-status::before {
  background-color: #ffe779;
}

.dashboard-content .active-packages-area span.active-status.active::before {
  background-color: #3dcc4e;
}

.dashboard-content
  .active-packages-area
  .table-responsive
  .table.table-striped
  thead
  th,
.dashboard-content
  .active-packages-area
  .table-responsive
  .table.table-striped
  tbody
  td {
  border: medium none;
  color: #7f7f7f;
  line-height: 34px;
  padding: 5px 20px;
}

.dashboard-content
  .active-packages-area
  .table-responsive
  .table.table-striped
  thead
  th {
  color: #292929;
}

.dashboard-content
  .active-packages-area
  .table-responsive
  .table.table-striped
  tbody
  td {
  border-top: 1px solid #dedede;
}

.dashboard-content
  .active-packages-area
  .table-responsive
  .table.table-striped {
  margin-bottom: 0;
}

.dashboard-content
  .active-packages-area
  .table-striped
  > tbody
  > tr:nth-of-type(2n + 1) {
  background-color: transparent;
  border-top: 1px solid #dedede;
}

.dashboard-content .lp-invoice-table .wp-list-table tbody tr:hover {
  background-color: transparent;
}

.dashboard-content .lp-list-view-content .lp-grid-box-price .category-cion a {
  border: medium none;
  height: 20px;
  width: 20px;
}

.dashboard-content
  .lp-list-view-content-bottom
  .lp-rigt-icons
  .lp-list-view-edit {
  background-color: transparent;
  padding: 4px 0 0;
  width: 100%;
}

.dashboard-content .lp-list-view-content-bottom .list-pt-display li {
  line-height: 26px;
}

.dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a {
  color: #7f7f7f;
  font-size: 13px;
  padding-right: 11px;
}

.dashboard-content
  .lp-list-view-inner-contianer
  .lp-list-view-content.lp-list-cnt,
.dashboard-content
  .lp-list-view
  .lp-list-view-inner-contianer
  .lp-list-view-thumb {
  margin-left: 0;
  padding: 6px 0 0;
}

.dashboard-content .lp-list-view .lp-list-view-inner-contianer {
  float: left;
  padding: 10px;
  width: 100%;
}

#pending .row.lp-list-page-list {
  float: left;
  margin-bottom: 30px;
  margin-left: 0;
  padding-right: 0;
  width: 100%;
}

.dashboard-content
  .lp-list-view-inner-contianer
  input.lp-pay-publsh.btn-first-hover {
  border-radius: 4px;
  color: #fff;
  float: right;
  font-weight: 700;
  line-height: 27px;
  padding: 5px 20px;
  text-transform: uppercase;
  vertical-align: bottom;
}

.lp-list-view-content-bottom ul.lp-list-view-edit > li > a:hover,
.lp-list-view-content-bottom ul.lp-list-view-edit > li > a:hover > span {
  color: #42a7df;
}

.dashboard-content .updateprofile-tab.aligncenter {
  margin: 0;
}

.dashboard-content .dashboard-tabs.lp-main-tabs.text-center > ul > li > ul {
  background-color: #2e3740;
  padding: 0;
}

.dashboard-content .tab-pane.fade,
.user-recent-listings-innerfade {
  float: left;
  padding-right: 30px;
  width: 100%;
}

.active-packages-area {
  float: left;
  width: 100%;
}

.packages > p {
  padding: 20px 0;
  text-align: center;
}

.dashboard-content form.form-horizontal {
  padding: 0;
}

#invoices .aligncenter,
#invoices div.aligncenter {
  margin: 0;
}

.lp-modal-list .modal-footer a.lp-print-list,
.lp-modal-list .modal-footer button.btn.btn-white {
  border: 1px solid #dedede;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  height: 35px;
  line-height: 35px;
  margin-left: 10px;
  padding: 0 35px;
  text-transform: uppercase;
  width: auto;
}

#modal-invoice.modal.lp-modal-list .modal-body .lp-list-detail {
  float: left;
  padding: 0;
  width: 100%;
}

#modal-invoice.modal.in .modal-dialog {
  float: left;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}

#modal-invoice.modal.fade.lp-modal-list.in {
  background-color: rgba(0, 0, 0, 0);
  left: 50%;
  padding-right: 0 !important;
  top: 50px;
  z-index: 100000000;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

#modal-invoice .modal-content {
  float: left;
  width: 100%;
}

#modal-invoice .modal-body {
  float: left;
  padding: 0 15px;
  position: relative;
  width: 100%;
}

#modal-invoice .modal-footer {
  border-top: 1px solid #e5e5e5;
  float: left;
  padding: 15px 30px;
  width: 100%;
}

.dashboard-content .packages {
  float: left;
  width: 100%;
}

.dashboard-content .row.lp-list-page-list {
  float: left;
  margin: 0 0 0 -15px;
  padding-right: 15px;
  width: 100%;
}

.dashboard-content
  .btn-file.file-upload-btn
  input.upload-author-image[type="file"] {
  height: 100%;
  left: 0;
  width: 100%;
}

.dashboard-content table.wp-list-table.comments-box {
  border-top: 0 none;
  padding-top: 0;
}

.dashboard-content .postbox table.wp-list-table.widefat.fixed tbody tr td {
  border-radius: 0;
}

.dashboard-content .col-md-12.col-sm-6.col-xs-12.lp-list-view {
  margin-bottom: 15px;
  padding: 0;
}

.dashboard-content .col-md-12.col-sm-6.col-xs-12.lp-list-view:first-of-type {
  margin-top: 0;
}

.dashboard-content .user-recent-listings-inner .row.lp-list-page-list,
.dashboard-content .user-recent-listings-innerfade .row.lp-list-page-list {
  margin-left: 0;
}

.dashboard-content .lp-list-view-content-bottom .lp-list-view-edit {
  background-color: transparent;
  float: right;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
}

.dashboard-content .lp-list-view-content-bottom .lp-list-view-edit > li {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.dashboard-content-app-view
  .lp-rigt-icons.lp-list-view-content-bottom
  .list-style-none.list-st-img
  > li {
  float: none !important;
  margin-bottom: 10px !important;
}

.dashboard-content .lp-list-view-content-upper ul.lp-grid-box-price li {
  display: inline-block;
  margin-right: 14px;
}

.dashboard-content .lp-list-view-thumb .lp-list-view-thumb-inner img {
  border-radius: 0;
  display: inline-block;
  height: auto;
  width: 70px;
}

.dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a {
  border: 1px solid #363f48;
  border-radius: 3px;
  color: #363f48;
  display: inline-block;
  height: 35px;
  margin-left: 10px;
  margin-right: 0;
  padding: 8px 10px;
  vertical-align: top;
}

.dashboard-content
  .lp-list-view-content-bottom
  ul.lp-list-view-edit
  > li
  > a
  > span {
  color: #363f48;
}

.dashboard-content
  .lp-list-view-content-bottom
  ul.lp-list-view-edit
  > li
  > a:hover {
  background-color: #363f48;
  color: #fff;
}

.dashboard-content
  .lp-list-view-content-bottom
  ul.lp-list-view-edit
  > li
  > a:hover
  > span {
  background-color: #363f48;
  color: #fff;
}

.dashboard-content
  .lp-list-view-content-bottom
  ul.lp-list-view-edit
  > li:first-of-type
  > a {
  margin-left: 0;
}

.dashboard-content
  .lp-list-view-content-upper
  ul.lp-grid-box-price
  li.category-cion {
  margin-right: 3px;
}

.dashboard-content
  .lp-list-view
  .lp-list-view-inner-contianer
  .lp-list-view-thumb {
  padding: 0;
}

.dashboard-content .lp-list-view .lp-list-view-inner-contianer > .col-md-1 {
  padding-left: 0;
  padding-right: 10px;
  width: 80px;
}

#pending.user-recent-listings-inner .col-md-8.col-sm-8.col-xs-12 {
  width: calc(75% - 80px);
}

.dashboard-content .container {
  float: left;
  width: 100%;
}

.promote-listing-box > h4 {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 0;
}

.promote-listing-box .thumb {
  float: left;
  width: 35%;
}

.promote-listing-box .texual-area {
  float: left;
  padding-left: 20px;
  text-align: left;
  width: 65%;
}

.promote-listing-box .promote-listing-box .texual-area > p {
  color: #7f7f7f;
  font-size: 14px;
}

.promote-listing-box .texual-area > ul {
  margin: 0;
  padding: 0;
}

.promote-listing-box .texual-area ul li {
  font-size: 14px;
  line-height: 26px;
}

.promote-listing-box .texual-area > ul li i {
  color: #41a6df;
  font-size: 11px;
}

.promote-listing-box {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 3px;
  float: left;
  padding: 20px;
  width: 70%;
}

.wpb_wrapper > ul {
  margin: 0;
  padding: 0;
}

.wpb_wrapper > ul > li {
  line-height: 26px;
  padding-left: 20px;
  position: relative;
}

.wpb_wrapper > ul > li::before {
  content: "\f054";
  color: #41a6df;
  font-family: "FontAwesome";
  font-size: 11px;
  left: 0;
  position: absolute;
  top: 0;
}

.dashboard-content .promotiona-text-details > h3 {
  font-size: 22px;
}

.dashboard-content .promotiona-text-details > p {
  font-size: 13px;
  line-height: 22px;
}

.ui-widget.border-dropdown {
  background-color: transparent;
  border-radius: 0 5px 5px 0;
}

.submit_new_style .form-page-heading {
  margin-bottom: 0;
}

#tags-by-cat .col-md-2.col-sm-4.col-xs-6 {
  width: 25%;
}

.pre-load {
  display: inline-block;
}

.submit_new_style .form-group #features-by-cat > label.featuresBycat,
.submit_new_style
  form#lp-submit-form
  .form-group
  > label.lp-nested.labelforfeatures {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 13px;
  padding-left: 15px;
}

.submit_new_style .form-group label.switch {
  margin-bottom: 10px;
}

.submit_new_style .featuresDataContainer.row {
  border-bottom: 1px solid #dedede;
  float: left;
  margin-bottom: 20px;
  margin-left: 0;
  padding: 0 0 20px;
  width: 100%;
}

.submit_new_style .featuresDataContainer.row:last-of-type {
  border-bottom: 0 !important;
}

.labelforfeatures {
  font-size: 13px;
  color: #7f7f7f;
  font-weight: 500;
}

.submit_new_style .featuresDataContainer.row:last-of-type {
  margin-bottom: 10px;
  padding-bottom: 25px;
}

.md-effect-3 #claimform .claim-details .form-group {
  display: inline-block;
  position: relative;
  vertical-align: top;
  max-width: 100%;
  width: 450px;
}

.md-effect-3 #claimform .claim-details {
  text-align: center;
}

.statuss {
  display: inline-block;
}

.claim-details .alert.alert-success {
  background-color: rgba(0, 0, 0, 0);
  border: medium none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 0;
}

.md-effect-3 #claimform .claim-details .form-group i.formsubmitting {
  position: absolute;
  right: 30px;
  top: 0;
  color: #fff;
  line-height: 38px;
}

.dashboard-content
  .tab-pane
  .lp-list-page-list
  .lp-list-view-inner-contianer
  .lp-list-view-content-upper
  h4 {
  font-size: 17px;
}

.dashboard-content .lp-list-view-content-upper ul.lp-grid-box-price li a {
  font-size: 12px;
}

.no-result-found h1 {
  font-size: 70px;
  margin-bottom: 5px;
}

.dashboard-content
  .lp-list-page-list
  .lp-list-view-inner-contianer
  .col-md-3.col-sm-12.col-xs-12.vcenter {
  padding: 0;
}

.dashboard-content
  .lp-list-page-list
  .lp-list-view-inner-contianer
  .col-md-3.col-sm-12.col-xs-12.vcenter
  .lp-rigt-icons.lp-list-view-content-bottom
  ul {
  padding-bottom: 0;
  float: right;
}

.table-responsive.campaign .top-section > h3 span.active-status {
  font-size: 13px;
}

.dashboard-panel {
  border-right: 1px solid #e7eef2;
  float: left;
  padding-right: 30px;
  vertical-align: top;
  width: calc(100% - 373px);
}

.dashboard-right-panel {
  float: right;
  padding: 30px 30px 25px;
  vertical-align: top;
  width: 370px !important;
}

.nothing-inn {
  border: 2px dashed #dedede;
  padding: 100px 0;
  text-align: center;
  margin-top: 30px;
}

.panel-dash-dismiss {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  margin-top: 30px;
  position: relative;
  width: 100%;
}

.panel-dash-dismiss > img {
  float: left;
  margin-top: -13px;
  width: 32%;
}

.dash-text-area {
  float: left;
  padding: 0 65px 0 0;
  position: relative;
  width: 68%;
}

.panel-dash-dismiss .dash-text-area::before {
  border-color: transparent #fff;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  content: "";
  position: absolute;
  right: -12px;
  top: 30px;
  z-index: 1;
}

.panel-dash-dismiss .dash-text-area::after {
  border-color: transparent #dedede;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  content: "";
  position: absolute;
  right: -13px;
  top: 30px;
  z-index: -1;
}

.dash-text-area > h3 {
  font-size: 17px;
  margin: 20px 0 7px;
}

.dash-text-area > p {
  color: #7f7f7f;
  font-size: 11px;
  line-height: 18px;
}

.dashboard-content .welcome-banner-area .user-thumb,
.dashboard-content .welcome-banner-area .user-text {
  position: relative;
  vertical-align: middle;
  z-index: 1;
}

.welcome-banner-area {
  background-attachment: fixed;
  background-color: #000;
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/dashboard-img.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  margin: 0 -30px;
  padding: 50px 30px;
  position: relative;
}

.welcome-banner-area::before {
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.welcome-banner-area .user-text > h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.welcome-banner-area .avatar-circle {
  height: auto;
  width: 80px;
}

a.dismiss {
  color: #1074ae;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  right: 12px;
  top: 10px;
}

a.dismiss > i {
  background-color: #adb4ba;
  border-radius: 100%;
  color: #fff;
  float: left;
  font-size: 7px;
  height: 10px;
  line-height: 10px;
  margin-right: 3px;
  margin-top: 3px;
  text-align: center;
  width: 10px;
}

.panel-dash-dismiss .promotional-service {
  border: medium none;
  text-align: center;
}

a.lp-add-new-listing {
  background-color: #27ae60;
  border: 1px solid #26a550;
  border-radius: 5px;
  color: #fff;
  float: left;
  line-height: 45px;
  width: 100%;
}

a.lp-add-new-listing i {
  border-right: 1px solid #34be6e;
  float: left;
  font-size: 19px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  width: 40px;
}

a.lp-add-new-listing > span {
  border-left: 1px solid #249e57;
  float: left;
  font-weight: 700;
  padding: 0 14px;
  text-transform: uppercase;
}

a.lp-add-new-listing:hover {
  background-color: #1ea557;
}

.panel-dash-dismiss .promotional-service > h2 {
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  font-size: 17px;
  height: 70px;
  line-height: 70px;
  margin-bottom: 0;
  margin-top: -60px;
  text-transform: uppercase;
  width: 70px;
}

.panel-dash-dismiss.das-services {
  margin-top: 50px;
}

.strp {
  float: left;
  margin-top: -40px;
  width: 100%;
}

.strp > h2 {
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  font-size: 15px;
  height: 70px;
  line-height: 70px;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  vertical-align: top;
  width: 70px;
  z-index: 0;
}

.strp > h2::before {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 40px;
  left: -2px;
  position: absolute;
  width: 80px;
  z-index: -2;
}

.strp > h2::after {
  border-left: 1px solid #dedede;
  border-radius: 100%;
  border-right: 1px solid #dedede;
  border-top: 1px solid #dedede;
  content: "";
  height: 72px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 72px;
  z-index: -3;
}

.promotional-service > h3 {
  font-size: 17px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.panel-dash-dismiss .promotiona-text-details {
  padding-bottom: 13px;
  padding-top: 15px;
}

.dashboard-content .panel-dash-dismiss .promotiona-text-details > p {
  font-size: 11px;
  line-height: 18px;
}

.panel-dash-views {
  float: left;
  margin-bottom: 40px;
  margin-top: 20px;
  width: 100%;
}

.panel-dash-views .count-box {
  border-radius: 0;
  float: left;
  padding: 30px;
  width: 100%;
  margin-left: -1px;
  padding-bottom: 10px;
  padding-right: 10px;
  position: relative;
}

.panel-dash-views .count-box.green-box {
  background: #ad90b4;
  background: -moz-linear-gradient(45deg, #ad90b4 0%, #dabecb 100%);
  background: -webkit-linear-gradient(45deg, #ad90b4 0%, #dabecb 100%);
  background: linear-gradient(45deg, #ad90b4 0%, #dabecb 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ad90b4', endColorstr='#dabecb', GradientType=1);
}

.panel-dash-views .count-box.orange-box {
  background: #9eb3bb;
  background: -moz-linear-gradient(45deg, #9eb3bb 0%, #b7bcaf 100%);
  background: -webkit-linear-gradient(45deg, #9eb3bb 0%, #b7bcaf 100%);
  background: linear-gradient(45deg, #9eb3bb 0%, #b7bcaf 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#9eb3bb', endColorstr='#b7bcaf', GradientType=1);
}

.panel-dash-views .count-box.blue-box {
  background: #648dbd;
  background: -moz-linear-gradient(45deg, #648dbd 0%, #9cc2e7 100%);
  background: -webkit-linear-gradient(45deg, #648dbd 0%, #9cc2e7 100%);
  background: linear-gradient(45deg, #648dbd 0%, #9cc2e7 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#648dbd', endColorstr='#9cc2e7', GradientType=1);
}

.icon-area {
  color: #fff;
  float: left;
  text-align: center;
  position: relative;
  width: auto;
}

.panel-dash-views .col-md-4:first-child .icon-area::before {
  background-color: transparent;
}

.dash-right-area {
  float: left;
  padding: 0;
  margin-top: 7px;
  text-align: right;
  vertical-align: top;
  width: 75%;
}

.icon-area {
  display: none;
}

.panel-dash-views .icon-area i {
  font-size: 20px;
}

.dash-right-area h3 span {
  color: #fff;
  font-size: 10px;
}

h3.blue-color {
  color: #3498db;
}

h3.orange-color {
  color: #e67e22;
}

h3.yellow-color {
  color: #f1c40f;
}

.dash-right-area > h3 {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.dash-right-area h3 p.views {
  color: #fff;
  float: left;
  font-size: 40px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  width: 100%;
}

.count-box p {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  display: inline-block;
  float: left;
}

.count-box p span {
  color: #fff;
  font-weight: 600;
}

.dash-right-area h3 span {
  color: #fff;
  float: left;
  font-size: 10px;
  width: 100%;
}

.panel-dash-views .icon-area.orange i {
  background-color: #ff7676;
}

.panel-dash-views .icon-area.yellow i {
  background-color: #53e69d;
}

.panel-recent-activity {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}

.section-title {
  float: left;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 10px;
}

.lp-dashboard-panel-outer .section-title {
  border-radius: 5px 5px 0 0;
  float: left;
  padding: 9px 20px;
  width: 100%;
  margin: 0;
  background: #eef2f4;
}

.section-title > h3 {
  color: #354052;
  float: left;
  font-weight: 500;
  margin: 0;
}

.lp-dashboard-panel-outer .section-title > h3 {
  color: #8697a8;
  float: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
}

.lp-select-listing {
  float: right;
}

.lp-select-listing
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 11px;
}

.lp-select-listing .select2-container--default .select2-selection--single {
  background-color: transparent;
  border-color: #d9dee6;
}

.lp-select-listing
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #9fa9ba;
  font-size: 11px;
}

.lp-select-listing
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #9fa9ba transparent transparent;
}

.lp-select-listing .select2-container {
  min-width: 95px;
}

.lp-dashboard-panel-outer .panel-recent-activity > ul {
  padding: 0;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
}

.lp-dashboard-panel-outer .panel-recent-activity > ul > li {
  padding: 15px 20px;
}

.panel-recent-activity > ul {
  background-color: #fff;
  border: 1px solid #dedede;
  float: left;
  margin: 0;
  padding: 0 20px;
  width: 100%;
}

.panel-recent-activity > ul > li {
  border-bottom: 1px solid #dedede;
  color: #828282;
  float: left;
  padding: 15px 5px;
  width: 100%;
}

.panel-recent-activity > ul > li:last-of-type {
  border: none;
}

.panel-recent-activity > ul > li i {
  float: left;
  margin: 3px 5px 0 0;
}

.panel-recent-activity span {
  color: #354052;
  font-size: 12px;
}

.panel-recent-activity span strong {
  font-size: 12px;
  font-weight: 600;
  margin-right: 2px;
}

.panel-recent-activity span a {
  color: #354052;
  font-weight: 600;
}

.panel-recent-activity span a:hover {
  color: #2b9ffd;
}

.lp-dashboard-right-panel-listing {
  float: left;
  width: 100%;
}

.lp-dashboard-right-panel-listing h4 {
  border-bottom: 1px solid #dedede;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0 0 20px;
  text-transform: capitalize;
}

a.lp-show-all {
  color: #2b9ffd;
  float: right;
  font-weight: 500;
}

.lp-dashboard-right-panel-listing > ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.lp-dashboard-right-panel-listing > ul > li {
  border-bottom: 1px solid #dedede;
  float: left;
  padding: 19px 0;
  width: 100%;
}

.lp-dashboard-right-panel-listing ul li > i {
  font-size: 14px;
  margin-right: 8px;
  width: 13px;
}

.lp-dashboard-right-panel-listing ul li span {
  font-size: 13px;
  font-weight: 400;
  margin-left: 1px;
}

.lp-dashboard-right-panel-listing ul li span .author-name {
  text-transform: capitalize;
  font-weight: 600;
}

.lp-dashboard-right-panel-listing ul li a.reply {
  border: 1px solid #363f48;
  border-radius: 2px;
  color: #363f48;
  font-size: 11px;
  margin-left: 14px;
  padding: 1px 7px 2px;
}

.lp-dashboard-right-panel-listing ul li a.reply:hover {
  background-color: #363f48;
  color: #fff;
}

.lp-dashboard-right-panel-listing ul li p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}

.lp-social-area .form-group.col-md-6.col-xs-12 {
  padding-left: 0;
}

.submit_new_style .lp-social-area textarea.form-control {
  height: 130px;
}

.page-container-four.submit_new_style ul.jFiler-items-list.jFiler-items-grid {
  background-color: #f3f3f3;
  border: 1px solid #dedede;
  float: left;
  margin: 10px 0 0 10px;
  padding: 3px;
  position: relative;
  width: 22%;
  z-index: 9;
}

.page-container-four.submit_new_style .jFiler-items-grid .jFiler-item {
  position: relative;
  width: 100%;
}

.submit_new_style.page-container-four
  .jFiler-items-grid
  .jFiler-item
  .jFiler-item-container {
  margin-right: 0;
  margin-top: 0;
  padding: 0;
}

.submit_new_style.page-container-four
  .jFiler-items-grid
  .jFiler-item
  .jFiler-item-container
  img.thumbnail {
  border: none;
  border-radius: 0;
  height: 60px;
  margin-bottom: 0;
  padding: 0;
  width: auto;
}

.submit_new_style.page-container-four
  .jFiler-items-grid
  .jFiler-item
  .jFiler-item-container
  .jFiler-item-thumb {
  border: none;
}

.jFiler-input-inner > div#filediv {
  margin-left: -15px;
}

a.icon-jfi-trash.jFiler-item-trash-action {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 30px;
}

a.icon-jfi-trash.jFiler-item-trash-action:hover {
  color: #2b9ffd;
}

.lp-rigt-icons.lp-list-view-content-bottom .list-st-img li input.lp-review-btn,
.lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #363f48;
  border-radius: 3px;
  color: #363f48;
  display: inline-block;
  font-size: 16px;
  height: 35px;
  padding: 2px 15px 2px 40px;
  position: relative;
  text-align: left;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.lp-rigt-icons.lp-list-view-content-bottom
  .list-st-img
  li
  input.lp-review-btn::before,
.lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list::before {
  color: #363f48;
  content: "\f044";
  font-family: "FontAwesome";
  left: 15px;
  position: absolute;
  top: 7px;
  vertical-align: middle;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list > span {
  color: #363f48;
  font-weight: 500;
  line-height: 30px;
  padding: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.lp-rigt-icons.lp-list-view-content-bottom
  .list-st-img
  li
  input.lp-review-btn:hover::before,
.lp-rigt-icons.lp-list-view-content-bottom
  .list-st-img
  li
  a.edit-list:hover::before {
  color: #fff;
}

.lp-rigt-icons.lp-list-view-content-bottom
  .list-st-img
  li
  input.lp-review-btn:hover,
.lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list:hover {
  background-color: #363f48;
  color: #fff;
}

.lp-rigt-icons.lp-list-view-content-bottom
  .list-st-img
  li
  a.edit-list:hover
  > span {
  color: #fff;
}

.lp-rigt-icons.lp-list-view-content-bottom .list-style-none.list-st-img > li {
  display: inline-block;
  float: right;
  margin-bottom: 0;
  margin-left: 10px;
  vertical-align: top;
}

.lp-rigt-icons.lp-list-view-content-bottom
  .list-style-none.list-st-img
  > li:last-of-type {
  margin-left: 0;
  margin-bottom: 0;
}

.lp-rigt-icons.lp-list-view-content-bottom
  .list-st-img
  li
  a.edit-list
  > span
  img {
  display: none;
}

.lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.lp-review-btn {
  border-radius: 3px;
  float: left;
  font-size: 13px;
  font-weight: 500;
  height: 35px;
  padding: 8px 20px;
}

.panel-recent-activity ul li span > time {
  color: #7f8fa4;
  float: right;
  font-size: 11px;
  line-height: 20px;
}

.dashboard-content .left-panel.tbl-cell .dashboard-tabs.lp-main-tabs {
  float: left;
  padding-left: 0;
}

.dashboard-content .pull-left.left-panel.tbl-cell {
  width: 220px;
}

.dashboard-content .right-panel {
  background-color: #f6f6f6;
  float: right;
  min-height: 600px;
  width: calc(100% - 220px);
  padding-left: 30px;
}

.listing-second-view
  .widget-box.listing-price
  .price-area
  .price-range.post-row
  ul.post-price-row
  > li.grayscale-dollar
  span.active {
  color: #73cf42;
}

.listing-second-view
  .widget-box.listing-price
  .price-area
  .price-range.post-row
  ul.post-price-row
  > li.grayscale-dollar
  > span {
  font-size: 14px;
}

.listing-with-sidebar form#searchform {
  padding-top: 0;
}

.features-listing.extra-fields a.show-all-timings {
  bottom: -9px;
}

.listing-second-view .features-listing > ul.hidding-timings {
  display: none;
  padding: 10px 0 0;
}

.listing-second-view .features-listing > ul.hidding-timings > li:first-of-type {
  border-top: 1px solid #e3e3e3;
}

.widget-box.business-contact
  .contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative
  i.lp-search-icon {
  color: #363f48;
}

.widget-box.business-contact
  .contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative:hover
  > i.lp-search-icon {
  color: #fff;
}

.page-load {
  background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/page-load.gif) no-repeat center center;
  width: 100%;
  min-height: 50px;
  margin-top: -300px;
}

.dashboard-content
  .user-recent-listings-inner
  .lp-list-page-list
  .remove-fav.md-close {
  border: 1px solid #363f48;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  height: 35px;
  line-height: 14px;
  padding: 8px 15px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dashboard-content
  .user-recent-listings-inner
  .lp-list-page-list
  .remove-fav.md-close:hover {
  background-color: #363f48;
}

.dashboard-content
  .user-recent-listings-inner
  .lp-list-page-list
  .remove-fav.md-close
  > span {
  color: #363f48;
  display: inline-block;
  line-height: 16px;
  vertical-align: top;
}

.dashboard-content
  .user-recent-listings-inner
  .lp-list-page-list
  .remove-fav.md-close:hover
  > i,
.dashboard-content
  .user-recent-listings-inner
  .lp-list-page-list
  .remove-fav.md-close:hover
  > span {
  color: #fff;
}

.dashboard-content .lp-list-page-list .lp-list-view .remove-fav i {
  background-color: transparent;
  border-radius: 0;
  color: #363f48;
  display: inline-block;
  height: auto;
  line-height: 16px;
  margin: 0 5px 0 0;
  position: static;
  vertical-align: middle;
  width: auto;
}

.lp-grid-box
  .lp-grid-box-thumb-container
  .lp-grid-box-quick
  .lp-post-quick-links.clearfix {
  margin-bottom: 0;
}

.widget-box.listing-price .price-area .claim-area > span.phone-icon > img.icon {
  display: inline-block;
  margin-left: -2px;
  vertical-align: top;
  width: 20px;
  margin-right: 4px;
}

a.switch-fields {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  padding-left: 50px;
  position: relative;
}

a.switch-fields::before {
  background-color: #cfcfcf;
  border-radius: 20px;
  content: "";
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

a.switch-fields::after {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 100%;
  content: "";
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.switch-fields.active::before {
  background-color: #42a7df;
}

a.switch-fields.active::after {
  left: 20px;
}

.resurva-booking {
  background-color: #fff;
  border-radius: 5px;
  float: left;
  margin-bottom: 30px;
  padding: 15px;
  width: 100%;
}

.hidden-items.clearfix {
  border-top: 1px solid #dedede;
  display: none;
  margin-top: 30px;
  padding: 40px 0 3px;
  text-align: left;
  width: 100%;
}

.resurva-booking ul {
  margin: 0;
}

.resurva-booking input[type="text"],
.resurva-booking input[type="url"] {
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  height: 42px;
  line-height: 42px;
  padding: 0 15px;
  width: 100%;
}

.resurva-booking .hidden-items .select2.select2-container {
  min-width: 100%;
}

.resurva-booking
  .hidden-items
  .select2.select2-container
  .select2-selection.select2-selection--single {
  border-color: #dedede;
  height: 42px;
  line-height: 42px;
}

.resurva-booking
  .hidden-items
  .select2.select2-container
  .select2-selection.select2-selection--single
  .select2-selection__rendered {
  color: #7f7f7f;
  line-height: 42px;
  padding-left: 15px;
  padding-right: 30px;
  text-transform: capitalize;
}

.resurva-booking
  .hidden-items
  .select2.select2-container
  .select2-selection.select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  width: 30px;
}

.resurva-booking .hidden-items label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.resurva-booking .hidden-items input.lp-review-btn {
  color: #fff;
}

.resurva-booking .hidden-items input.lp-review-btn:hover {
  background-color: transparent;
}

.dashboard-content .updateprofile-tab form#profileupdate .tab-header {
  background-color: rgba(0, 0, 0, 0);
  float: none;
  margin-top: 25px;
}

.dashboard-content .updateprofile-tab form#profileupdate .tab-header h3 {
  background-color: rgba(0, 0, 0, 0);
  color: #333;
  float: none;
}

.reservation-form .inner-reservations .close-btn {
  background-color: rgba(0, 0, 0, 0);
  color: #333;
  font-size: 20px;
  right: -5px;
  top: -5px;
}

.title-field > img {
  margin: 10px 0 20px;
}

p.desc {
  color: #7f7f7f;
  font-size: 12px;
  font-weight: 400;
}

.upload-btn {
  background-color: transparent;
  border: 1px solid;
  border-radius: 5px;
  float: left;
  height: 45px;
  line-height: 45px;
  min-width: 120px;
  margin-bottom: 20px;
  padding: 0 20px;
  text-align: center;
}

.upload-btn:hover {
  color: #fff;
}

.upload-field {
  float: left;
  margin-top: 20px;
  position: relative;
  width: 100%;
}

.upload-field > img {
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  width: 200px;
}

.send-btn {
  float: left;
  margin-top: 20px;
  width: 100%;
}

.listing-simple .list_view .lp-grid-box-description h4.lp-h4 > a {
  max-width: 72%;
}

.full-width .list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom {
  padding-left: 0;
  width: 71%;
}

.listing-with-map .list_view.lp-grid-box-contianer .lp-grid-box-description h4 {
  margin-top: 2px !important;
}

.listing-with-map .list_view.lp-grid-box-contianer .lp-grid-box-description h4 {
  margin-bottom: 5px !important;
}

.lp-grid-desc-container {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.lp-section-content-container .city-girds.lp-border-radius-8 {
  transform: translateZ(0);
}

.submit_new_style .post-submit .white-section .btn-container.clearfix #tabsbtn {
  padding: 6px 22px;
  float: right;
}

.header-filter .input-group.width-49-percent .ui-widget.border-dropdown select,
.lp-home-banner-contianer-inner
  .lp-search-bar
  .ui-widget.border-dropdown
  select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.header-filter .chosen-select.chosen-select5:focus,
.lp-home-banner-contianer-inner
  .lp-search-bar
  .ui-widget.border-dropdown:focus {
  outline: none;
}

.header-filter .chosen-select.chosen-select5,
.lp-home-banner-contianer-inner
  .lp-search-bar
  .ui-widget.border-dropdown
  select {
  border: none;
  box-shadow: none;
  height: 46px;
  padding-top: 0;
  -webkit-appearance: none;
}

.listing-second-view.paid-listing.lp-list-page-grid.lp-section-content-container
  .listing-post
  article {
  border-radius: 8px;
  margin-bottom: 30px;
}

.listing-second-view.paid-listing.lp-list-page-grid.lp-section-content-container
  .listing-post
  article
  figure
  figcaption
  .bottom-area
  .rate {
  height: auto;
  line-height: 23px;
  margin: 0;
}

.listing-second-view.paid-listing.lp-list-page-grid.lp-section-content-container
  .listing-post
  article
  figure
  figcaption
  h4
  a {
  font-size: 22px;
}

.pp_top,
.pp_bottom,
div.dark_rounded .pp_details {
  display: none;
}

div.dark_rounded .pp_content_container .pp_left,
div.dark_rounded .pp_content_container .pp_right {
  background-image: none !important;
  width: 100%;
}

div.dark_rounded .pp_content {
  background-image: none;
}

div.dark_rounded .pp_expand {
  right: 40px;
  top: 0;
}

.rating-symbol-background.fa-star-o {
  color: #7f7f7f;
}

.review-emoticons {
  display: inline-block;
  height: 35px;
  margin-left: -2px;
  margin-top: -2px;
  position: relative;
  vertical-align: top;
  width: 35px;
}

.review-emoticons .review {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  visibility: hidden;
  width: 100%;
}

.review.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.lp-header-full-width .lp-menu-container .pull-right.padding-right-10 {
  padding-right: 0 !important;
}

.list_view .lp-grid-desc-container .lp-grid-box-bottom .text.gaddress {
  color: #7f7f7f;
  font-size: 13px;
  line-height: 28px;
}

.list_view .lp-grid-desc-container .lp-grid-box-bottom .hide {
  display: inline-block !important;
}

.list_view.lp-grid-box-contianer
  .lp-grid-desc-container
  .lp-grid-box-bottom
  .show {
  display: none !important;
}

.popup-inner-left-padding .lp-insert-data .lp-grid-box-thumb img {
  border-radius: 0;
}

.popup-inner-left-padding .lp-insert-data .lp-grid-box-bottom {
  background-color: #fff;
  border: medium none;
  border-radius: 0;
  padding-bottom: 20px;
  padding-left: 5px;
}

.popup-inner-left-padding
  .lp-insert-data
  .lp-grid-desc-container.lp-border.clearfix {
  border: medium none;
  border-radius: 0;
}

.popup-inner-left-padding .lp-insert-data .lp-grid-box-description {
  border: medium none;
  border-radius: 0;
  display: inline-block;
  padding: 8px 0 0;
  vertical-align: top;
  width: 100%;
}

.popup-inner-left-padding .col-md-6.lp-insert-data {
  padding-left: 0;
  padding-right: 0;
}

.popup-inner-left-padding .lp-insert-data .lp-grid-box-left.pull-left {
  width: 100%;
}

.popup-inner-left-padding .lp-insert-data .lp-grid-box-thumb {
  margin: 0 -15px;
  overflow: hidden;
}

.popup-inner-left-padding .lp-insert-data .lp-grid-box-thumb .pos-relative {
  padding: 0 15px;
}

.popup-inner-left-padding .lp-insert-data .single-page-slider-container {
  padding: 0;
}

.popup-inner-left-padding .lp-insert-data .slick-prev.slick-arrow,
.popup-inner-left-padding .lp-insert-data .slick-next.slick-arrow {
  height: 50px;
  left: 20px;
  opacity: 1;
  width: 50px;
  z-index: 99999999;
}

.popup-inner-left-padding .lp-insert-data .slick-next.slick-arrow {
  left: auto;
  right: 20px;
}

.popup-inner-left-padding .lp-insert-data .slick-prev.slick-arrow::before {
  content: "\f104";
  font-size: 35px;
  padding-right: 3px;
}

.popup-inner-left-padding .lp-insert-data .slick-next.slick-arrow::before {
  content: "\f105";
  font-size: 35px;
  padding-left: 3px;
}

.popup-inner-left-padding .lp-insert-data .text.gaddress {
  color: #7f7f7f;
  font-size: 13px;
  line-height: 28px;
}

.listingpro-row {
  float: left;
  width: 100%;
}

.listingpro-columns .listingpro-row .promotiona-col-right {
  padding-top: 0;
  padding-left: 0;
}

.listingpro-row .promotiona-col-right > article {
  float: left;
  margin-bottom: 30px;
  width: 100%;
}

.listingpro-row .promotiona-col-right > article > h3 {
  font-weight: 600;
  margin-top: 0;
}

.listingpro-row .promotiona-col-right > article > p {
  font-size: 13px;
  line-height: 24px;
  max-width: 80%;
}

.listingpro-columns .listingpro-row .promotiona-col-right i {
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 8px;
  background: #1e3050;
  margin-right: 10px;
  color: white;
}

.popup-inner-left-padding .lp-grid-desc {
  float: left;
  padding: 5px 0 0;
  width: 100%;
}

.bookingjs {
  margin-top: 0 !important;
}

.bookingjs-poweredby {
  display: none !important;
}

.h-icon {
  display: none;
}

#input-dropdown ul li:hover .d-icon {
  display: none;
}

#input-dropdown ul li:hover .h-icon {
  display: inline-block;
}

#stripe-submit {
  visibility: hidden !important;
}

.lp-rightbnk-transfer-msg {
  margin-bottom: 20px;
}

.lp-rightbnk-transfer-msg .lp-tranfer-info {
  margin-bottom: 15px;
}

.lp-listing-form .lp-listing-clm h5 {
  margin: 6px 0;
}

.page-container-four .col-md-10.col-md-offset-1 > table {
  background-color: #fff;
  border: 1px solid #dedede;
}

.lp-listing-form .lp-listing-clm div.col-md-1.col-sm-2.col-xs-6:last-of-type {
  float: right;
}

#listings_checkout .lp-rightbnk-transfer-msg .lp-method-wrap .lp-tranfer-info {
  margin-bottom: 0;
}

#see_filter {
  display: none;
}

.top-heading-area {
  background-color: #41a6df;
  border-radius: 5px 5px 0 0;
  padding: 30px;
}

.top-heading-area p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.invoice-area {
  background-color: #fff;
  padding: 20px 30px;
}

.checkout-invoice-area ul {
  margin: 0;
  padding: 0;
}

.checkout-invoice-area .invoice-area ul {
  margin-bottom: 20px;
}

.invoice-area .row.heading-area {
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  margin-bottom: 10px;
}

.invoice-area .row.heading-area p {
  line-height: 35px;
  margin-bottom: 0;
}

.invoice-area .row.heading-area p strong {
  font-weight: 600;
}

.row.invoices-company-details a {
  color: #333;
  font-weight: 700;
  line-height: 27px;
  text-transform: capitalize;
}

.row.invoices-company-details a:hover {
  color: #41a6df;
}

.invoices-company-details p {
  font-size: 13px;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

.invoice-price-details > .col-md-6.col-sm-6.col-xs-12:last-of-type {
  background-color: #f9f9f9;
  border: 1px solid #dedede;
  border-radius: 5px;
  padding-bottom: 20px;
  padding-top: 20px;
}

.checkout-invoice-area .invoice-area .invoice-price-details .col-md-6 > ul {
  border-bottom: 1px solid #dedede;
  margin-bottom: 0;
  width: 100%;
}

.checkout-invoice-area
  .invoice-area
  .invoice-price-details
  .col-md-6
  > ul
  > li:first-of-type {
  font-weight: 600;
  float: left;
}

.checkout-invoice-area
  .invoice-area
  .invoice-price-details
  .col-md-6
  > ul
  > li:last-of-type {
  float: right;
}

.checkout-invoice-area
  .invoice-area
  .invoice-price-details
  .col-md-6
  > ul
  > li {
  color: #7f7f7f;
  line-height: 35px;
}

.checkout-invoice-area
  .invoice-area
  .invoice-price-details
  .col-md-6
  > ul:last-of-type {
  border-bottom: 0 none;
  margin-bottom: 0;
}

.invoice-area > .row {
  margin: 0;
}

.invoice-area > .row > .col-md-6.col-sm-6.col-xs-12:first-of-type {
  padding-left: 0;
}

.thankyou-text.text-center {
  background-color: #f9f9f9;
  border: 1px solid #dedede;
  border-radius: 5px;
  margin-top: 30px;
  padding: 20px 0;
}

.thankyou-text.text-center > p {
  color: #7f7f7f;
  margin-bottom: 0;
}

.checkout-bottom-area {
  background-color: #f7f7f7;
  border-radius: 5px;
  border: 1px solid #dedede;
  padding: 20px 30px;
  margin: 0 28px 20px 28px;
}

.checkout-bottom-area ul.clearfix > li {
  color: #7f7f7f;
  float: left;
  font-size: 12px;
  margin-right: 19px;
  position: relative;
}

.checkout-bottom-area ul.clearfix > li::before {
  background-color: #7f7f7f;
  content: "";
  height: 15px;
  left: -10px;
  position: absolute;
  top: 2px;
  width: 1px;
}

.checkout-bottom-area ul.clearfix > li:first-of-type::before {
  display: none;
}

.checkout-bottom-area ul.clearfix > li > a {
  color: #7f7f7f;
}

.checkout-bottom-area ul.clearfix > li > a:hover {
  color: #41a6df;
}

.checkout-bottom-area > p {
  color: #7f7f7f;
  font-size: 12px;
}

.row.invoices-company-details {
  border-bottom: 1px solid #dedede;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.lp-method-wrap > label img {
  max-width: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}

.notices-area {
  float: left;
  padding: 0;
  width: 100%;
}

.dashboard-content .notices-area > .notice {
  border-radius: 5px;
  float: left;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.notices-area > .notice > .notice-icon {
  color: #fff;
  font-size: 29px;
  height: 100%;
  left: 0;
  position: absolute;
  width: 80px;
}

.notices-area .notice .notice-text {
  display: inline-block;
  min-height: 80px;
  padding: 10px 10px 6px 95px;
  vertical-align: top;
  width: 100%;
}

.lp-dashboard-new .notices-area > .notice > .notice-icon {
  color: #fff;
  font-size: 20px;
  height: 100%;
  left: 0;
  position: absolute;
  width: 56px;
  border-radius: 5px 0 0 5px;
}

.lp-dashboard-new .notices-area .notice .notice-text {
  display: inline-block;
  min-height: unset;
  border-radius: 5px;
  padding: 10px 10px 6px 95px;
  vertical-align: top;
  width: 100%;
  background: #fff;
  border: 1px solid #e9ebf2;
}

.notice-text > h2 {
  color: #27ae60;
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
}

.notice-text > h2 > span {
  font-weight: 400;
}

.notice-text > p {
  color: #27ae60;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}

.lp-dashboard-panel-outer .notices-area .notice a.close {
  color: #44566c !important;
  font-size: 12px;
  opacity: 1;
  position: absolute;
  right: 15px;
  text-shadow: none;
  top: 50%;
  transform: translateY(-50%);
  background: #fafbfb;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 100%;
}

.lp-dashboard-panel-outer .notices-area .notice.info a.close {
  color: #00a9e5;
}

.lp-listing-outer-container .notice.warning a.close {
  color: #f39c12;
}

.notices-area > .notice.success > .notice-icon {
  background-color: #27ae60;
}

.dashboard-content .notices-area > .notice.success {
  background-color: #dbf1d6;
  border-color: #27ae60;
}

.notices-area .notice.info .notice-icon {
  background-color: #00a9e5;
}

.notices-area .notice .notice-icon i {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.notice.info .notice-text > h2,
.notice.info .notice-text > p {
  color: #00a9e5;
}

.dashboard-content .notices-area .notice.warning {
  background-color: #fdf9e1;
  border: 1px solid #f39c12;
}

.dashboard-content .notices-area > .notice.info {
  background-color: #d4edf8;
  border-color: #00a9e5;
}

.notices-area .notice.warning .notice-icon {
  background-color: #f39c12;
}

.notices-area .notice.warning .notice-text > h2,
.notices-area .notice.warning .notice-text > p {
  color: #f39c12;
}

.notices-area .notice.warning .notice-text > h2 span {
  color: #f39c12 !important;
}

.notice-text > h2 > span {
  color: #00a9e5;
}

.lp-dashboard-new .notice.info .notice-text > h2,
.lp-dashboard-new .notice.info .notice-text > p {
  color: #44566c;
}

.lp-dashboard-new .dashboard-content .notices-area .notice.warning {
  background-color: transparent;
  border: 1px solid transparent;
}

.lp-dashboard-new .dashboard-content .notices-area > .notice.info {
  background-color: transparent;
  border-color: transparent;
}

.lp-dashboard-new .notices-area .notice.warning .notice-icon {
  background-color: #f39c12;
}

.lp-dashboard-new .notices-area .notice.warning .notice-text > h2,
.lp-dashboard-new .notices-area .notice.warning .notice-text > p {
  color: #44566c;
}

.lp-dashboard-new .notices-area .notice.warning .notice-text > h2 span {
  color: #44566c !important;
}

.lp-dashboard-new .notice-text > h2 > span {
  color: #44566c;
  font-size: 15px;
}

.img-curtasy {
  bottom: 11px;
  position: absolute;
  right: 30px;
  z-index: 99;
}

.img-curtasy > p {
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  text-align: right;
  text-transform: uppercase;
}

.img-curtasy > p > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  padding-left: 10px;
}

.img-curtasy > p > span a {
  color: #fff;
}

.img-curtasy > p > span > i {
  margin-left: 5px;
}

.listing-app-view .img-curtasy {
  display: none;
}

.testimonial-inner-box h3 {
  font-size: 25px;
}

input.button.upload-btn {
  border-color: #42a7df;
  border-radius: 3px;
  color: #42a7df;
  height: 35px;
  line-height: 30px;
}

input.button.upload-btn:hover {
  background-color: #42a7df;
  color: #fff;
}

.popup-inner-left-padding .lp-grid-box-bottom a.status-btn {
  line-height: 28px;
  cursor: default;
}

.popup-inner-left-padding .lp-grid-box-description h4.lp-h4 > a {
  font-size: 24px;
}

#restaurant-menu > h3 {
  margin-bottom: 0;
  margin-top: 0;
}

.resurva-booking .file-options {
  color: #7f7f7f;
  font-size: 11px;
  left: 0;
  margin-left: 130px;
  margin-top: 4px;
  position: absolute;
  top: 0;
}

.resurva-booking .file-options > p {
  color: #8f8f8f;
}

.lp-menu-bar,
.header-normal .lp-menu-bar.lp-header-full-width {
  padding: 10px 0;
}

.header-right-panel.clearfix.col-md-10.col-sm-10.col-xs-12 {
  padding-left: 0;
  padding-right: 0;
}

.dashboard-content .lp-list-view .lp-list-view-inner-contianer > .col-md-9 {
  padding: 0;
  width: calc(84% - 90px);
}

.dashboard-content .lp-list-view .lp-list-view-inner-contianer > .col-md-2 {
  padding-right: 0;
}

.lp-pagination.pagination {
  margin-bottom: 0;
  width: 100%;
}

.lp-pagination > ul.page-numbers {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  display: table;
}

.lp-pagination ul.page-numbers li {
  border-radius: 2px;
  color: #363f48;
  float: left;
  line-height: 30px;
  margin: 5px 5px 0 0;
  text-align: center;
}

.lp-pagination ul li .page-numbers {
  color: #363f48;
  float: left;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  line-height: 30px;
  padding: 0 10px;
}

.lp-pagination ul li:hover,
.lp-pagination ul li:hover > .page-numbers {
  background-color: #363f48;
}

.lp-infinite-scroll {
  margin-top: 30px;
  float: left;
  width: 100%;
}

.lp-infinite-scroll a:hover {
  color: #fff;
}

.lp-infinite-scroll {
  margin-top: 30px;
  float: left;
  width: 100%;
}

.lp-infinite-scroll a:hover {
  color: #fff;
}

.dashboard-content .postbox table.widefat a.see_more_btn i {
  margin-right: 5px;
}

.dashboard-content .postbox table.widefat .review-content > p > span {
  color: #121212;
  font-weight: 600;
  margin-right: 5px;
}

.admin-top-section .user-details .user-portfolio {
  background: #2e313e;
}

.admin-top-section .user-portfolio .user-text .user-name {
  color: #fff;
  word-break: break-all;
  word-wrap: break-word;
}

.admin-top-section .user-portfolio .user-text .user-name > span {
  display: block;
  font-size: 13px;
  line-height: 25px;
  font-weight: 600;
  color: #fff;
}

.admin-top-section .user-portfolio .user-thumb {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  background: #434652;
}

.admin-top-section .user-portfolio .user-thumb .avatar-circle {
  border-radius: 0;
  height: auto;
  overflow: hidden;
  width: 100%;
}

.admin-top-section .user-portfolio .user-text {
  margin-top: 0;
  padding-left: 5px;
  width: calc(100% - 90px);
}

.admin-top-section .user-text > p {
  text-transform: uppercase;
}

.admin-top-section .user-details .col-md-3 {
  padding: 0;
  width: 235px;
}

.user-description-box {
  float: left;
  width: calc(100% - 370px);
}

.lp-right-panel-upper {
  width: calc(100% - 253px);
  float: left;
}

.user-description-box > ul li {
  float: left;
  position: relative;
  display: inline-block;
  padding: 25px 0 23px;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #e7eef2;
  width: 20%;
}

.user-description-box > ul li .lp-dashboard-circle .lp-circle-content {
  background: #fff;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.user-description-box > ul li .lp-dashboard-circle {
  width: 60px;
  height: 60px;
  background: #f7f7f7;
  padding: 6px;
  border-radius: 100%;
  margin: 0 auto;
}

.user-description-box > ul li span.count p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 24px;
}

.user-description-box > ul li span.count {
  display: block;
  font-size: 14px;
  line-height: 9px;
  padding: 9px 5px;
}

.user-description-box .count-text {
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
}

.lp-contact-support {
  display: inline-block;
  margin-top: 42px;
  vertical-align: top;
  float: right;
  width: 370px;
}

.lp-contact-support .secondary-btn:hover i {
  color: #fff;
}

.lp-contact-support .secondary-btn:hover {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  background: #363f48;
  color: #fff;
}

.lp-contact-support .secondary-btn {
  background-color: transparent;
  border: 1px solid #363f48;
  color: #363f48;
  font-size: 17px;
  height: 50px;
  line-height: 48px;
  margin-left: 28px;
  padding: 0 30px;
  width: 311px;
}

.lp-contact-support .secondary-btn i {
  color: #363f48;
  margin-right: 5px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.admin-top-section h5.user-name {
  margin-left: 10px;
  margin-top: 7px;
  text-transform: capitalize;
}

.admin-top-section .user-portfolio {
  float: left;
  padding: 36px 18px 37px 30px;
  width: 100%;
}

.lp-all-listing span.count > p,
.lp-all-listing span.count {
  color: #41a6df;
}

.lp-pending span.count > p,
.lp-pending span.count {
  color: #7f7f7f;
}

.lp-expired-listing span.count > p,
.lp-expired-listing span.count {
  color: #d56d6d;
}

.lp-active-listing span.count > p,
.lp-active-listing span.count {
  color: #f39c12;
}

.lp-publish-listing span.count > p,
.lp-publish-listing span.count {
  color: #67a33b;
}

.user-description-box > ul li p {
  font-size: 12px;
  color: #82868a;
}

.user-description-box > ul li span.count-text.active-campaigns {
  color: #f39c12;
}

form i.cross-search-q {
  position: absolute;
  right: 8px;
  top: 15px;
  cursor: pointer;
  z-index: 99;
  color: #ddd;
  font-size: 15px;
  display: none;
}

.panel-recent-activity i.reaction,
.panel-recent-activity span strong.reaction {
  color: #8554f1;
}

.panel-recent-activity i.lead,
.panel-recent-activity span strong.lead {
  color: #ff865f;
}

.panel-recent-activity i.review,
.panel-recent-activity span strong.review {
  color: #1fafbe;
}

.listing-simple.listing_list_view
  .lp-list-page-grid
  .lp-grid-box-contianer.grid_view2
  .lp-grid-box-contianer1 {
  width: 100%;
}

.listing-simple.listing_list_view
  .lp-list-page-grid
  .lp-grid-box-contianer.grid_view2.card1.lp-grid-box-contianer1
  .lp-grid-box-thumb-container {
  border-radius: 8px 0 0 8px;
  float: left;
  width: 260px;
}

.listing-simple.listing_list_view
  .lp-list-page-grid
  .lp-grid-box-contianer.grid_view2.card1.lp-grid-box-contianer1
  .lp-grid-box-thumb-container
  .lp-grid-box-thumb
  img {
  border-radius: 0;
}

.listing-simple.listing_list_view
  .lp-list-page-grid
  .lp-grid-box-contianer.grid_view2.card1.lp-grid-box-contianer1
  .lp-grid-desc-container {
  width: 100%;
}

.listing-simple.listing_list_view
  .lp-list-page-grid
  .lp-grid-box-contianer.grid_view2.card1.lp-grid-box-contianer1
  .lp-grid-desc-container
  .lp-grid-box-description {
  padding-bottom: 6px;
  width: calc(100% - 260px);
}

.listing-simple.listing_list_view
  .lp-list-page-grid
  .lp-grid-box-contianer.grid_view2.card1.lp-grid-box-contianer1
  .lp-grid-desc-container
  .lp-grid-box-bottom {
  border: none;
  float: right;
  padding-bottom: 8px;
  padding-top: 0;
  width: calc(100% - 260px);
}

.lp-grid-box-contianer .md-close i {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 8px 0 0;
  height: 35px;
  line-height: 35px;
  right: 15px;
  top: 0;
  width: 35px;
}

.lp-grid-box-contianer .md-close i:hover {
  background-color: #41a6df;
}

.comments-name {
  font-weight: 600;
  text-transform: capitalize;
}

.single
  .comments-container
  .comments-form
  .comment-respond
  h3.comment-reply-title {
  border-bottom: 1px solid #dedede;
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 25px;
}

.single .comments-container .comments-posts ul.children {
  padding-left: 13%;
}

.resurva-booking .lp-list-view-inner-contianer ul li form > span {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #363f48;
  border-radius: 3px;
  display: inline-block;
  line-height: 32px;
  margin-top: 0;
  padding: 0 15px 0 15px;
  vertical-align: top;
}

.resurva-booking .lp-list-view-inner-contianer ul li form > span > i {
  display: inline-block;
  margin-right: 6px;
  line-height: 31px;
  vertical-align: top;
}

.resurva-booking .lp-list-view-inner-contianer ul li form input[type="submit"] {
  background-color: transparent;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.resurva-booking .lp-list-view-inner-contianer ul li form:hover > span {
  background-color: #363f48;
  color: #fff;
}

.resurva-booking
  .lp-list-view-inner-contianer
  ul
  li
  form:hover
  input[type="submit"] {
  color: #fff;
}

.resurva-booking .lp-list-view-inner-contianer ul li {
  border-bottom: 1px solid #dedede;
  padding: 5px 0 5px 0;
  vertical-align: top;
}

.resurva-booking .lp-list-view-inner-contianer ul li:last-of-type {
  border-bottom: none;
}

.resurva-booking .lp-list-view-inner-contianer ul li > h3 {
  font-weight: 500;
  margin: 9px 0;
}

.lp-location-search .ui-widget.border-dropdown > i {
  color: #b6bfc8;
  cursor: pointer;
  font-size: 14px;
  left: 65px;
  position: absolute;
  top: 53%;
  z-index: 7;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.lp-location-search
  .ui-widget.border-dropdown
  > i.fa.fa-circle-o-notch.fa-spin {
  top: 39%;
}

.form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span.slide-right {
  margin-left: 5px;
}

.reviews-section article.review-post .review-thumbnail {
  border: 1px solid #eee;
  border-radius: 100%;
  height: 74px;
  overflow: hidden;
  width: 74px;
}

.listing-second-view a.secondary-btn.make-reservation {
  background-color: #41a6df;
  border-color: #41a6df;
  color: #fff;
}

.listing-second-view a.secondary-btn.make-reservation i {
  color: #fff;
}

.listing-second-view a.secondary-btn.make-reservation:hover {
  background-color: #363f48;
  border-color: #363f48;
}

.listing-second-view a.secondary-btn.make-reservation,
.listing-second-view a.secondary-btn.make-reservation i {
  color: white !important;
}

.list-st-img.list-style-none li a.edit-list:hover {
  background-color: #41a6df;
}

body .form-horizontal input.form-control.error-msg,
body .form-horizontal textarea.form-control.error-msg {
  border-color: red;
}

.review_status.error-msg {
  border: medium none;
  color: red;
  padding: 0 10px;
}

.review_status.success-msg {
  color: #439f12;
}

.post-submit .chosen-container-single .chosen-single.error-msg {
  border-color: red;
  color: red;
}

.lp-method-wrap.lp-listing-form > label img {
  width: auto;
}

.post-with-map-container
  .listing-style-3
  .lp-filter-inner
  .comboboxCategory.chosen-select2.tag-select-four {
  height: 39px;
  border: none;
  background: #f8f8f8;
  color: #b5b5b5;
}

.post-with-map-container
  .listing-style-3
  .lp-filter-inner
  .comboboxCategory.chosen-select2.tag-select-four:focus {
  outline: none;
}

.searchloading {
  display: none;
  position: absolute;
  top: 7px;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-left: -16px;
}

.rate.lp-rate-worst {
  background-color: #ff9600 !important;
}

.rate.lp-rate-bad {
  background-color: #ffc800 !important;
}

.rate.lp-rate-satisfactory {
  background-color: #c5de35 !important;
}

.lp-about-section-best-header > h3 {
  font-size: 25px;
}

.bookingjs.is-small.show.has-timezonehelper.has-displayname
  .bookingjs-timezonehelper {
  display: none;
}

.post-submit .ui-widget {
  float: none !important;
}

.bookingjs.is-small.show.has-timezonehelper.has-displayname {
  background-color: #fafafa;
  border: 1px solid #dedede;
  border-radius: 5px;
  box-shadow: none;
  overflow: hidden;
  margin: 0;
}

.fc-row.fc-widget-header th.fc-day-header.fc-widget-header {
  background-color: #fafafa;
}

.fc-widget-content
  .fc-content-skeleton
  .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
  border-color: #41a6df;
  border-radius: 0;
  box-shadow: none;
}

.fc-unthemed .fc-day.fc-widget-content.fc-mon.fc-today.fc-state-highlight {
  background-color: #fafafa;
}

.fc-widget-content
  .fc-content-skeleton
  .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end:hover {
  background-color: #41a6df;
}

.header-normal.pos-relative.lp-header-full-width {
  width: 100%;
}

.listing-second-view a.secondary-btn i {
  margin-right: 5px;
}

.listing-second-view .post-meta-right-box .post-stat > li > a i {
  margin-right: 5px;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  > li
  > a
  span.reviews-stars
  i {
  margin-right: 0;
}

.author-social .status > span.online > a {
  color: #333;
  text-transform: capitalize;
}

.is-small .bookingjs-displayname {
  left: 0;
  padding-right: 0;
}

.rating-symbol:first-of-type:hover .rating-symbol-foreground .fa-star,
.rating-symbol.angry .rating-symbol-foreground .fa-star {
  color: #de9147;
}

.rating-symbol:nth-child(2):hover .rating-symbol-foreground .fa-star,
.rating-symbol.cry .rating-symbol-foreground .fa-star {
  color: #de9147;
}

.rating-symbol:nth-child(3):hover .rating-symbol-foreground .fa-star,
.rating-symbol.sleeping .rating-symbol-foreground .fa-star {
  color: #dec435;
}

.rating-symbol:nth-child(4):hover .rating-symbol-foreground .fa-star,
.rating-symbol.smily .rating-symbol-foreground .fa-star {
  color: #c5de35;
}

.rating-symbol:nth-child(5):hover .rating-symbol-foreground .fa-star,
.rating-symbol.cool .rating-symbol-foreground .fa-star {
  color: #73cf42;
}

.listing-second-view .rating-symbol:first-of-type::before,
.listing-second-view .rating-symbol.angry::before {
  background-color: #de9147;
}

.listing-second-view .rating-symbol:nth-child(2)::before,
.listing-second-view .rating-symbol.cry::before {
  background-color: #de9147;
}

.listing-second-view .rating-symbol:nth-child(3)::before,
.listing-second-view .rating-symbol.sleeping::before {
  background-color: #dec435;
}

.listing-second-view .rating-symbol:nth-child(4)::before,
.listing-second-view .rating-symbol.smily::before {
  background-color: #c5de35;
}

.listing-second-view .rating-symbol:nth-child(5)::before,
.listing-second-view .rating-symbol.cool::before {
  background-color: #73cf42;
}

#lp-submit-form .select2.select2-container {
  float: left;
  min-width: 100%;
}

#lp-submit-form .select2-selection.select2-selection--single {
  border: 1px solid #e3e3e3;
  height: 44px;
}

#lp-submit-form
  .select2-selection.select2-selection--single
  .select2-selection__rendered {
  font-size: 13px;
  line-height: 44px;
  padding-left: 15px;
  padding-right: 30px;
  text-transform: capitalize;
}

#lp-submit-form
  .select2-selection.select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  width: 30px;
}

.resurva-booking ul li.clearfix > form#booking {
  float: right;
  position: relative;
  padding-right: 25px;
}

.resurva-booking ul li.clearfix > form#booking > span {
  color: #363f48;
  height: 35px;
  line-height: 32px;
  margin-right: -25px;
}

.resurva-booking ul li.clearfix > form#booking:hover > span {
  color: #fff;
}

.listing-simple
  .search-row
  .form-group
  .input-group
  .comboboxCategory.chosen-select2.tag-select-four {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: auto;
  border-color: #dedede;
  height: 40px;
  border-left: 0;
  background: #f8f8f8;
  color: #b5b5b5;
}

.post-with-map-container
  .listing-style-3
  .lp-filter-inner
  .comboboxCategory.chosen-select2.tag-select-four {
  height: 39px;
  background: #f8f8f8;
  color: #b5b5b5;
  border: none;
}

.listing-simple
  .search-row
  .form-group
  .input-group
  .comboboxCategory.chosen-select2.tag-select-four,
.post-with-map-container
  .listing-style-3
  .lp-filter-inner
  .comboboxCategory.chosen-select2.tag-select-four:focus {
  outline: none;
}

section.aliceblue {
  overflow-x: hidden;
}

.reviews a.open-reply.pull-left {
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.dashboard-content .reviews a.open-reply.active::before {
  content: "\f062";
}

#review-section.review-form form#rewies_edit-form ul.gallery-thumbs {
  margin: 0;
  padding: 0;
  text-align: right;
}

#review-section.review-form form#rewies_edit-form ul.gallery-thumbs > li {
  display: inline-block;
  padding: 0 5px;
  vertical-align: top;
}

#review-section.review-form
  form#rewies_edit-form
  ul.gallery-thumbs
  > li:last-child {
  padding-right: 0;
}

#review-section.review-form form#rewies_edit-form .form-group.submit-images {
  margin-top: 20px;
}

.post_response
  #review-section.review-form
  form#rewies_edit-form
  .form-group
  > p {
  color: #575757;
  font-size: 15px;
  font-weight: 600;
}

.success-txt > span {
  display: inline-block;
  margin-right: 5px;
  margin-top: 0;
  vertical-align: top;
  width: 40px;
}

.success-txt > p {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  max-width: 550px;
  text-align: left;
  vertical-align: top;
}

.success-txt {
  margin-bottom: 40px;
}

.dashboard-content .lp-pay-options .promotebtn {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #363f48;
  color: #363f48;
}

.dashboard-content .lp-pay-options .promotebtn:hover {
  background-color: #363f48;
  color: #fff;
}

body.archive .listing-pro,
body.search .listing-pro {
  display: none !important;
}

.promoted-listings .promoted .listing-pro {
  display: block !important;
}

.listing-simple
  .search-row
  .form-group
  .input-group
  .comboboxCategory.chosen-select2.tag-select-four,
.post-with-map-container
  .listing-style-3
  .lp-filter-inner
  .comboboxCategory.chosen-select2.tag-select-four:focus {
  outline: none;
}

section.aliceblue {
  overflow-x: hidden;
}

.right-panel .md-modal.md-effect-3.md-show {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  text-align: center;
  width: 100%;
  z-index: 9;
}

.right-panel .lp-list-page-list .md-show.md-effect-3 .md-content {
  border-radius: 5px;
  left: 50%;
  padding: 20px;
  position: absolute;
  top: 50%;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form-group.mr-bottom-0 > h3 {
  margin-bottom: 30px;
}

.form-group.mr-bottom-0 > a.md-close {
  border: 1px solid #363f48;
  border-radius: 5px;
  color: #363f48;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  height: 40px;
  line-height: 16px;
  margin-right: 20px;
  padding: 10px 30px;
  vertical-align: top;
}

.form-group.mr-bottom-0 > a.md-close:hover {
  background-color: #363f48;
  color: #fff;
}

.right-panel .form-group.mr-bottom-0 input.lp-review-btn {
  height: 40px;
  line-height: normal;
  padding: 8px 30px;
  vertical-align: top;
}

.dashboard-content .lp-list-view-content-bottom .list-style-none.list-st-img {
  float: left;
  padding: 0 0;
  text-align: right;
  width: 100%;
  margin: 0 0 0 3px;
}

.dashboard-content
  .lp-listing-pending-tab
  .lp-list-view-content-bottom
  .lp-list-view-edit {
  padding-top: 0;
}

.lp-listing-form .lp-listing-clm .radio.radio-danger > input[type="radio"] {
  margin-top: 0;
}

.listing-simple .listing-view-layout {
  display: none;
}

.listing-simple .lp-title.col-md-10.col-sm-10 {
  margin-top: -150px;
  z-index: 9;
}

.listing-simple .filter-top-section .lp-title h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
}

.listing-simple .post-with-map-container-right .search-row .lp-filter-inner {
  border-left: 0 none;
  border-right: 0 none;
  box-shadow: none;
  margin-top: -25px;
  padding: 10px !important;
}

.listing-simple
  .post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop {
  left: auto;
  right: 0;
}

.listing-simple .post-with-map-container-right .search-row {
  padding: 0 15px;
}

.header-with-topbar div.lp-join-now span {
  margin-top: 6px;
}

.header-with-topbar .lp-join-now ul li span {
  margin-top: 0;
}

.header-with-topbar div.lp-join-now {
  float: right;
  line-height: 32px;
}

.header-with-topbar .lp-join-now ul li {
  line-height: 32px;
}

.header-with-topbar .lp-join-now {
  line-height: normal;
}

.mm-menu .mm-navbar {
  height: 130px;
}

.mm-menu .mm-navbar.mm-navbar-top {
  background-color: #41a6df;
}

.mm-menu .mm-navbar.mm-navbar-top .iconsmall {
  background: #fff;
}

.mm-menu .mm-navbar.mm-navbar-top .userimage {
  margin-right: 15px;
}

.login_info i {
  padding-right: 20px;
}

.login_info a {
  width: 41%;
}

.login_info,
.login_info a {
  color: #fff;
  margin: 0;
}

.absolute {
  left: 0;
  position: absolute;
  top: 66px;
  width: 100%;
  z-index: 9;
}

.absolute.lp-align-underBanner {
  bottom: 30px;
  top: auto !important;
}

.lp-align-underBanner .lp-bottom-with-map-back {
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.home-categories-area.lp-align-bottom,
.home-categories-area.lp-align-underBanner {
  float: left;
  padding: 0 0 0;
  width: 100%;
}

.home-categories-area.lp-align-bottom .lp-home-categoires,
.home-categories-area.lp-align-underBanner .lp-home-categoires {
  float: left;
  margin: 0;
  position: static;
  width: 100%;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .lp-search-bar
  .form-group.lp-suggested-search {
  float: left;
  position: relative;
  width: 50%;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-group.lp-suggested-search
  input.lp-suggested-search {
  background-color: transparent;
  border-radius: 5px 0 0 5px;
  height: 46px;
  padding-left: 65px;
  width: 100%;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .lp-search-bar
  .lp-suggested-search {
  background-color: #fff;
  z-index: 9;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  form.form-inline
  div#input-dropdown {
  text-align: left;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back .form-group.lp-location-search {
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  float: left;
  margin-left: -12px;
  width: 30%;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single {
  border: medium none;
}

.lp-bottom-with-map-back
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  border-radius: 0 5px 5px 0;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-inline
  .form-group:last-of-type {
  float: left;
  margin: 0;
  width: 19%;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-inline
  .form-group
  .lp-search-bar-right {
  width: 100%;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back .lp-search-bar .lp-search-btn {
  background-color: transparent;
  width: 100%;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-inline
  .form-group
  .lp-search-bar-right
  .lp-search-icon {
  left: 34%;
  top: 15px;
  -webkit-transform: translateX(-50%) scaleX(-1);
  -moz-transform: translateX(-50%) scaleX(-1);
  -ms-transform: translateX(-50%) scaleX(-1);
  -o-transform: translateX(-50%) scaleX(-1);
  transform: translateX(-50%) scaleX(-1);
}

.lp-search-bar-all-demo.lp-bottom-with-map-back .container .lp-search-bar {
  padding-left: 15px;
  padding-right: 15px;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  text-align: left;
  line-height: 46px;
  margin-left: 75px;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back
  .form-group.lp-suggested-search
  input.lp-suggested-search:focus {
  border: none;
}

.lp-search-bar-all-demo.lp-bottom-with-map-back {
  float: left;
  width: 100%;
}

.lp-align-bottom .lp-search-bar-all-demo.lp-bottom-with-map-back {
  padding-left: 30px;
  padding-right: 30px;
}

.home-categories-area.lp-align-top .lp-home-categoires {
  z-index: 9;
}

#homeMap {
  background-color: #fff;
  background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/content-loader.gif);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.home-categories-area .lp-search-description p {
  color: #7f7f7f;
  margin-bottom: 50px;
}

.home-categories-area .lp-search-description {
  margin-top: 70px;
}

.resurva-booking .col-md-6.col-xs-12 > p {
  color: #7f7f7f;
  font-size: 12px;
}

.list-st-img li a.edit-list {
  line-height: 18px;
}

.post-meta-left-box .breadcrumbs li::before {
  top: 50%;
}

.hours-select > li > button.add-hours > span {
  color: #fff;
}

.lp-dyn-city {
  color: #fff;
}

a.open-map-view {
  background-color: #f3f3f3;
  border: 1px solid #dedede;
  border-radius: 3px;
  color: #7f7f7f;
  float: right;
  line-height: 19px;
  padding: 9px 10px;
  text-align: center;
  width: 50px;
}

.sidemap-container.pull-right.sidemap-fixed.open-map {
  display: block;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

a.open-img-view {
  background-color: #f3f3f3;
  border: 1px solid #dedede;
  border-radius: 3px;
  color: #7f7f7f;
  padding: 8px 10px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 120px;
  width: 50px;
  z-index: 99;
}

.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

.leaflet-oldie .marker-cluster-small {
  background-color: rgb(181, 226, 140);
}

.leaflet-oldie .marker-cluster-small div {
  background-color: rgb(110, 204, 57);
}

.leaflet-oldie .marker-cluster-medium {
  background-color: rgb(241, 211, 87);
}

.leaflet-oldie .marker-cluster-medium div {
  background-color: rgb(240, 194, 12);
}

.leaflet-oldie .marker-cluster-large {
  background-color: rgb(253, 156, 115);
}

.leaflet-oldie .marker-cluster-large div {
  background-color: rgb(241, 128, 23);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
}

.reviews-section .report {
  color: #e67e22;
  border: 1px solid #e67e22;
  padding: 7px;
  border-radius: 4px;
  font-size: 12px;
}

.reviews-section .report i {
  padding-right: 5px;
}

.reviews-section .report:hover {
  background: #e67e22;
  color: #fff;
  border: transparent;
}

.reviews-section .review-post .detail-sec:last-child {
  background: #fafafa;
  border: 1px solid #dedede;
  padding: 20px;
  border-radius: 4px;
  margin-top: 25px;
}

.reviews-section .review-post .detail-sec .owner-response p {
  margin-bottom: 0;
  margin-top: 15px;
}

.reviews-section .review-post .detail-sec .owner-response time {
  font-size: 12px;
}

.reviews-section .review-post .detail-sec .owner-response h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.reviews-section .review-post figure p {
  margin-bottom: 15px;
}

.reviews-section a.reviewRes span.lp_state {
  position: absolute;
  top: -25px;
  left: 0;
  display: none;
  font-size: 12px;
  color: #41a6df;
  width: 200%;
}

.instresting.reviewRes span.interests-score {
  color: #417cdf;
}

.lol.reviewRes span.interests-score {
  color: #ff8e29;
}

.love.reviewRes span.interests-score {
  color: #ff2357;
}

.bottom-section ul li a.love:hover > span.interests-score {
  color: #fff;
}

.bottom-section ul li a.lol:hover > span.interests-score {
  color: #fff;
}

.bottom-section ul li a.instresting:hover > span.interests-score {
  color: #fff;
}

.invoice-section .lp-modal-spinn {
  position: absolute;
  top: 29px;
  right: 140px;
  left: auto;
  bottom: auto;
}

.lpro-cat-icon {
  height: 40px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 40px;
}

.lp-home-banner-contianer .lp-search-bar .form-group.lp-location-search {
  width: 30%;
}

.lp-home-banner-contianer .lp-search-bar .ui-widget select,
.lp-home-banner-contianer .lp-search-bar .ui-widget {
  width: 100%;
}

.lp-home-banner-contianer .lp-search-bar .select2-container {
  min-width: 100%;
}

.lp-search-bar .select2-container .select2-selection--single {
  background-color: #eeeeee !important;
  border: medium none;
  height: 46px;
  padding-left: 60px;
  border-left: 1px solid #aaa !important;
  border-radius: 0 !important;
}

.lp-search-bar
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 13px;
  line-height: 46px;
}

.header-filter .select2-container .select2-selection--single {
  background-color: transparent;
  border: medium none;
  height: 46px;
  padding-left: 60px;
}

.header-filter
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 13px;
  padding-left: 5px;
  line-height: 46px;
}

.header-filter
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow,
.lp-search-bar
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  width: 30px;
}

.header-filter .lp-location-search .ui-widget > i,
.lp-search-bar .lp-location-search .ui-widget > i {
  color: #b6bfc8;
  cursor: pointer;
  font-size: 14px;
  left: 65px;
  position: absolute;
  top: 53%;
  z-index: 7;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-filter .lp-location-search .ui-widget > i.fa.fa-circle-o-notch.fa-spin,
.lp-search-bar .lp-location-search .ui-widget > i.fa.fa-circle-o-notch.fa-spin {
  top: 39%;
}

.select2-container.select2-container--default.select2-container--open {
  z-index: 5;
}

.header-filter
  .select2-container.select2-container--default.select2-container--open {
  min-width: 100%;
  z-index: 999999999;
}

.header-filter .ui-widget {
  float: left;
  width: 100%;
}

.header-filter .ui-widget select.select2.select2-hidden-accessible {
  max-width: none;
  width: 100% !important;
}

.select2.select2-container.select2-container--default.select2-container--below {
  min-width: 100%;
}

.form-group.lp-location-search
  .ui-widget[data-option="yes"]
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  margin-left: 46px;
}

.form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single.remove-margin
  span {
  margin-left: 0;
}

.lp-search-bar .select2-container .select2-selection--single.slide-right {
  padding-left: 60px;
}

.lp-checkout-wrapper
  .lp-user-listings
  input[type="radio"]:checked
  + label:before {
  top: 2px !important;
}

.select2.select2-container.select2-container--default {
  min-width: 100%;
}

.header-container .select2.select2-container.select2-container--default {
  background-color: #fff !important;
}

.lp-banner-for-bottom-search
  .select2.select2-container.select2-container--default {
  background-color: transparent !important;
}

.lp-archive-banner .select2.select2-container.select2-container--default {
  width: 302px !important;
}

.lp-archive-banner
  .lp-header-search.archive-search
  .lp-location-search
  .ui-widget
  select {
  padding: 0;
  width: 302px !important;
  height: 42px;
}

.lp-archive-banner
  .lp-header-search.archive-search
  .lp-search-bar
  .select2-container
  .select2-selection--single.slide-right {
  padding-left: 0;
}

.lp-archive-banner
  .lp-header-search.archive-search
  .lp-search-bar
  .select2-container
  .select2-selection--single {
  padding-left: 0;
}

.jFiler-input-dragDrop {
  display: block;
  padding: 25px 25px;
  color: #8d9499;
  color: #97a1a8;
  background: #f5f5f5;
  border: 2px dashed #c8cbce;
  text-align: center;
  -webkit-transition: box-shadow 0.3s, border-color 0.3s;
  -moz-transition: box-shadow 0.3s, border-color 0.3s;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.jFiler.dragged .jFiler-input-dragDrop {
  border-color: #aaa;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.08);
}

.jFiler.dragged .jFiler-input-dragDrop * {
  pointer-events: none;
}

.jFiler.dragged .jFiler-input-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.jFiler.dragged .jFiler-input-text,
.jFiler.dragged .jFiler-input-choose-btn {
  filter: alpha(opacity=30);
  opacity: 0.3;
}

.jFiler-input-dragDrop .jFiler-input-icon {
  font-size: 20px;
  margin-bottom: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.jFiler-input-text h3 {
  margin: 0;
  font-size: 18px;
  color: #bcbcbc;
}

.jFiler-input-text span {
  font-size: 12px;
}

.jFiler-input-choose-btn {
  display: inline-block;
  padding: 8px 14px;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: #8d9496;
  border-radius: 3px;
  border: 1px solid #c6c6c6;
  vertical-align: middle;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.jFiler-input-choose-btn:hover,
.jFiler-input-choose-btn:active {
  color: inherit;
}

.jFiler-input-choose-btn:active {
  background-color: #f5f5f5;
}

.jFiler-input-choose-btn.gray {
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fcfcfc),
    to(#f5f5f5)
  );
  background-image: -webkit-linear-gradient(top, #fcfcfc, #f5f5f5);
  background-image: -o-linear-gradient(top, #fcfcfc, #f5f5f5);
  background-image: linear-gradient(to bottom, #fcfcfc, #f5f5f5);
  background-image: -moz-linear-gradient(top, #fcfcfc, #f5f5f5);
}

.jFiler-input-choose-btn.gray:hover {
  filter: alpha(opacity=87);
  opacity: 0.87;
}

.jFiler-input-choose-btn.gray:active {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#f5f5f5),
    to(#fcfcfc)
  );
  background-image: -webkit-linear-gradient(top, #f5f5f5, #fcfcfc);
  background-image: -o-linear-gradient(top, #f5f5f5, #fcfcfc);
  background-image: linear-gradient(to bottom, #f5f5f5, #fcfcfc);
  background-image: -moz-linear-gradient(top, #f5f5f5, #fcfcfc);
}

.jFiler-input-choose-btn.blue {
  color: #008bff;
  border: 1px solid #008bff;
}

.jFiler-input-choose-btn.blue:hover {
  background: #008bff;
}

.jFiler-input-choose-btn.blue:active {
  background: #008bff;
}

.jFiler-input-choose-btn.green {
  color: #27ae60;
  border: 1px solid #27ae60;
}

.jFiler-input-choose-btn.green:hover {
  background: #27ae60;
}

.jFiler-input-choose-btn.green:active {
  background: #27ae60;
}

.jFiler-input-choose-btn.red {
  color: #ed5a5a;
  border: 1px solid #ed5a5a;
}

.jFiler-input-choose-btn.red:hover {
  background: #ed5a5a;
}

.jFiler-input-choose-btn.red:active {
  background: #e05252;
}

.jFiler-input-choose-btn.black {
  color: #555;
  border: 1px solid #555;
}

.jFiler-input-choose-btn.black:hover {
  background: #555;
}

.jFiler-input-choose-btn.black:active {
  background: #333;
}

.jFiler-input-choose-btn.blue:hover,
.jFiler-input-choose-btn.green:hover,
.jFiler-input-choose-btn.red:hover,
.jFiler-input-choose-btn.black:hover {
  border-color: transparent;
  color: #fff;
}

.jFiler-input-choose-btn.blue:active,
.jFiler-input-choose-btn.green:active,
.jFiler-input-choose-btn.red:active,
.jFiler-input-choose-btn.black:active {
  border-color: transparent;
  color: #fff;
  filter: alpha(opacity=87);
  opacity: 0.87;
}

li span.lp-userInfo {
  display: block !important;
}

.bookingjs-form-box {
  box-shadow: none !important;
  background-color: transparent !important;
}

.bookingjs-form-box .bookingjs-form-fields {
  background: transparent;
}

.bookingjs-form-box .bookingjs-form-fields .bookingjs-form-input:focus {
  background: #fbfbfb !important;
  box-shadow: none;
}

.bookingjs-form-box .bookingjs-form-fields .bookingjs-form-input.input-name,
.bookingjs-form-box .bookingjs-form-fields .bookingjs-form-input.input-email {
  line-height: 36px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #dedede;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 15px;
}

.bookingjs-form-box .bookingjs-form-fields .bookingjs-form-input.input-comment {
  border-radius: 4px;
  border: 1px solid #dedede;
  padding-left: 15px;
}

.author-list-info {
  width: 100%;
}

.author-list-info .author-top-info .icons8-Marker {
  margin-right: 5px;
}

.author-list-info .author-top-info {
  margin: 0 auto;
  display: block;
  width: 290px;
  color: #fff;
  padding: 50px 0;
  z-index: 999;
  position: relative;
}

.author-list-info .author-top-info h5 {
  color: #fff;
  text-align: center;
  margin-bottom: 13px;
}

.author-list-info .author-top-info h3 {
  margin-top: 23px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}

.author-list-info .author-top-info .user-thumb {
  width: 94px;
  height: 94px;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
  text-align: center;
  display: block;
}

.tabs-listing.listing-second-view .lp-grid-box {
  border-radius: 8px;
}

.tabs-listing {
  background: #eff3f6;
}

.tabs-listing .reviews-section {
  background: #fff;
  padding-left: 25px;
  padding-right: 25px;
}

.tabs-listing .nav-justified li {
  padding-right: 15px;
}

.tabs-listing .nav-justified li.active a i,
.tabs-listing .nav-justified li.active a {
  background: #363f48;
  color: #fff;
}

.tabs-listing .nav-justified li a i {
  color: #363f48;
}

.tabs-listing .nav-justified li a:hover i,
.tabs-listing .nav-justified li a:hover {
  background-color: #363f48;
  color: #fff;
  transition: all 0.3s ease;
}

.tabs-listing .nav-justified li a {
  padding: 6px 6px;
  color: #363f48;
  border: 1px solid #363f48;
}

.tabs-listing.listing-second-view {
  margin-bottom: 0;
}

.tabs-listing {
  margin-bottom: 12px;
}

.tabs-listing {
  padding-top: 58px;
  padding-bottom: 58px;
}

.tabs-listing .nav-justified {
  width: 35%;
  margin: 0 auto;
}

.tabs-listing .lp-listngs-title {
  font-size: 24px;
  text-align: center;
  margin-top: 55px;
  margin-bottom: 25px;
}

.tabs-listing .reviews-section .top-section time {
  float: right;
  margin-right: 0;
  padding-right: 140px;
}

.tabs-listing .reviews-section .top-section h3 {
  display: inline-block;
}

.tabs-listing .reviews-section .top-section p {
  font-size: 13px;
  color: #797979;
  margin-bottom: 0;
}

.tabs-listing .reviews-section {
  margin-top: 0;
  width: 868px;
  margin-left: 135px;
}

.tabs-listing.listing-second-view .lp-list-page-grid {
  width: 868px;
  margin-left: 135px;
  padding: 30px 25px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dedede;
}

.tabs-listing.listing-second-view .lp-grid-box-description {
  padding-bottom: 38px;
}

.tabs-listing.listing-second-view .lp-grid-fullwidth {
  width: auto;
  margin: 0;
}

.tabs-listing.listing-second-view .list_view .lp-grid-box-thumb-container {
  width: 32%;
}

.tabs-listing.listing-second-view .lp-reviews-gallery {
  width: 868px;
  margin-left: 135px;
  padding: 30px 25px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dedede;
}

.tabs-listing.listing-second-view .lp-reviews-gallery ul li {
  float: left;
  padding: 10px;
}

.tabs-listing.listing-second-view .lp-reviews-gallery ul {
  display: inline-block;
  padding: 0;
}

.tabs-listing.listing-second-view .lp-reviews-gallery h4 {
  font-size: 15px;
  font-weight: 400;
}

.tabs-listing.listing-second-view .lp-reviews-gallery li a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

.tabs-listing.listing-second-view .lp-reviews-gallery .lp-gall p {
  line-height: normal;
  margin: 0;
}

.tabs-listing.listing-second-view .lp-reviews-gallery .lp-gall strong,
.tabs-listing.listing-second-view .lp-reviews-gallery .lp-gall p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  z-index: 1;
}

.tabs-listing .details .content-section {
  padding-top: 13px;
}

.author-list-info .author-top-info .user-name img {
  margin-right: 0;
}

.author-list-info .author-top-info .user-name span {
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}

.author-list-info .author-top-info .lp-review-photo .lp-reviews {
  margin-right: 10px;
}

.author-list-info .author-top-info .lp-review-photo .lp-reviews,
.author-list-info .author-top-info .lp-review-photo .lp-photos {
  display: inline;
}

.author-list-info .author-top-info .lp-review-photo span {
  color: #fff;
}

.author-list-info .author-top-info .lp-review-photo {
  text-align: center;
}

.dashboard-content .availableprice_options .checkboxx {
  position: relative;
}

.dashboard-content .availableprice_options .checkboxx .help-text {
  position: absolute;
  bottom: -12px;
  left: 10px;
}

.lp-rightbnk-transfer-msg .lp-method-wrap > label img {
  width: 80px;
  margin-top: -4px;
}

.fullwidth-header
  .header-filter
  .input-group.width-49-percent.margin-right-15.hide-where {
  width: 95%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lp-home-banner-contianer
  .lp-search-bar
  .form-group.lp-suggested-search.hide-where {
  width: 79%;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.lp-home-banner-contianer
  .lp-search-bar
  .form-group.lp-suggested-search.hide-where
  .pos-relative
  input {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

#listings_checkout i.lp-after-token {
  display: none;
}

#ads_promotion i.lp-after-token {
  float: right;
  margin-top: 9px;
  margin-right: 5px;
  display: none;
}

.faq-section .container,
.post-detail-content .container,
.faq-section .lp-checkout-wrapper h5 {
  width: auto;
}

.lp-listing-form .radio.radio-danger {
  border: 1px solid #dedede;
}

.lp-method-wrap > label img {
  left: 35px;
}

.lp-custom-lat-long {
  display: none;
}

button.googleAddressbtn {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  float: left;
}

.mobile-menu {
  margin-left: -20px !important;
  margin-right: -20px !important;
  padding: 15px 0 0 0;
  width: calc(100% + 40px);
}

.mobile-menu li {
  line-height: 40px;
  border-bottom: 1px solid #dadada;
}

.mm-listitem:after {
  display: none !important;
}

.mm-menu .mm-panels .mm-listview li.menu-item a.mm-listitem__btn:hover:after {
  border-color: #fff;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened,
.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  background: #fff;
}

#menu {
  background: #fff;
  visibility: hidden;
}

.listing-app-view .small-scrren-app-view .user-detail-wrap {
  padding: 20px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

.listing-app-view .mm-menu_iconpanel .mm-panels > .mm-panel_opened {
  margin-top: 66px;
}

#slide-nav {
  display: none;
}

.navbar-toggle.slide-active {
  padding-top: 0 !important;
  top: -40px;
}

#slide-nav .navbar-toggle {
  cursor: pointer;
  position: relative;
  line-height: 0;
  float: left;
  margin: 0;
  width: 30px;
  height: 40px;
  padding: 10px 0 0 0;
  border: 0;
  background: transparent;
}

#slide-nav .navbar-toggle > .icon-bar {
  width: 100%;
  display: block;
  height: 3px;
  margin: 5px 0 0 0;
}

#slide-nav .navbar-toggle.slide-active .icon-bar {
  background: #fff;
}

.navbar-header {
  position: relative;
}

.navbar.navbar-fixed-top.slide-active {
  position: relative;
}

@media (max-width: 767px) {
  #slide-nav {
    display: block;
    background: transparent;
    border: none;
    margin: 0;
  }
  #slide-nav .container {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
  }
  #slide-nav .navbar-header {
    margin: 0 auto;
    padding: 0 15px;
  }
  #slide-nav .navbar.slide-active {
    position: absolute;
    width: 80%;
    top: -1px;
    z-index: 1000;
  }
  #slide-nav #slidemenu {
    background: #f7f7f7;
    left: -100%;
    width: 80%;
    min-width: 0;
    position: absolute;
    padding-left: 0;
    z-index: 2;
    top: -40px;
    margin: 0;
  }
  #slide-nav #slidemenu .navbar-nav {
    min-width: 0;
    width: 100%;
    margin: 0;
  }
  #slide-nav #slidemenu .navbar-nav .dropdown-menu li a {
    min-width: 0;
    width: 80%;
    white-space: normal;
  }
  #slide-nav {
    border-top: 0;
  }
  #slide-nav.navbar-inverse #slidemenu {
    background: #333;
  }
  #navbar-height-col {
    position: fixed;
    top: 0;
    height: 100%;
    bottom: 0;
    width: 80%;
    left: -80%;
    background: #f7f7f7;
  }
  #navbar-height-col.inverse {
    background: #333;
    z-index: 1;
    border: 0;
  }
  #slide-nav .navbar-form {
    width: 100%;
    margin: 8px 0;
    text-align: center;
    overflow: hidden;
  }
  #slide-nav .navbar-form .form-control {
    text-align: center;
  }
  #slide-nav .navbar-form .btn {
    width: 100%;
  }
  .header-with-topbar .navbar-toggle.slide-active {
    top: -40px !important;
  }
  .header-with-topbar .navbar-toggle {
    top: 70px;
  }
}

@media (min-width: 768px) {
  #page-content {
    left: 0 !important;
  }
  .navbar.navbar-fixed-top.slide-active {
    position: fixed;
  }
  .navbar-header {
    left: 0 !important;
  }
}

.post-submit a.btn-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  cursor: pointer;
}

.lp-custom-lat {
  display: none;
}

#slidemenu img {
  display: block;
  margin-bottom: 15px;
}

#slidemenu .lpl-button {
  background: #fff;
  color: #41a6df;
  border: 1px solid #ececec;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 10px;
}

#slidemenu .lp-listing-adlisting {
  display: block;
  text-align: center;
  width: 120%;
}

.header-right-panel .navbar-fixed-top {
  position: absolute;
  top: -47px;
}

.header-right-panel .navbar-fixed-top.slide-active {
  top: 0;
}

.header-container.lp-vedio-bg {
  position: relative;
}

.header-container.lp-vedio-bg video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.header-container.lp-vedio-bg .video-lp {
  position: absolute;
  max-width: 1000%;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.lp_billing_total #lp_tax_type {
  font-size: 12px;
}

.lp_section_inner .lp_billing_total {
  display: none;
}

a.googleAddressbtn {
  background: #363f48;
  color: #7f7f7f;
  line-height: 26px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  color: #fff;
}

a.googleAddressbtn.active {
  background: #363f48;
}

a.googleAddressbtn:hover {
  background: #42a7df;
}

a.googleAddressbtn:hover,
a.googleAddressbtn.active {
  text-decoration: none;
  position: relative;
  color: #fff;
}

.hiddenlatlong .col-md-6 {
  padding-top: 15px;
}

.lp-coordinates {
  padding-bottom: 15px;
}

a.googleAddressbtn.active::after {
  content: "";
  left: 45%;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 8px solid;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  top: 25px;
}

.lpl-button:hover {
  background: #fff;
  color: #333;
}

.lpl-button.md-trigger {
  right: 15px;
}

.lpl-button {
  position: absolute;
  z-index: 9;
  background: transparent;
  color: #363f48;
  border: 1px solid #363f48;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  float: left !important;
  margin-right: 0 !important;
  width: 40%;
  margin-left: 15px;
  border-radius: 4px;
  text-align: center;
  top: 85px;
  margin-top: 40px;
}

.mm-panels {
  top: 140px !important;
}

.iconsmall {
  margin-top: 35px;
  float: right !important;
}

.listing-second-view .single_listing .post-price-row > li.grayscale-dollar {
  width: auto !important;
}

.lp-face.lp-back2 .lp-method-wrap > label img {
  left: 5px !important;
}

.dissablebutton {
  background-color: #e9eaea !important;
}

.header-right-panel .lp-menu ul li ul li a {
  color: #333;
}

.fulldayopen-wrap label {
  font-size: 12px;
  padding-left: 20px;
}

.checkbox.fulldayopen-wrap label:before {
  width: 15px;
  height: 15px;
  top: 6px;
  margin-right: 5px;
}

.checkbox.fulldayopen-wrap input[type="checkbox"]:checked + label:before {
  font-size: 9px;
  line-height: 13px;
}

.checkbox.fulldayopen-wrap {
  display: inline-block;
}

.hours > span.fullday {
  width: auto;
  float: left;
  margin: 0 2px 0 13px;
}

.hours.fullhours > a.remove-hours {
  margin-left: 59px;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  z-index: 3;
}

.packages .top-area ul > li span,
.packages .top-area h2 span {
  color: #fff;
}

.packages .top-area ul > li span,
.packages .top-area h2 span {
  color: #fff;
}

.lp-search-bar #input-dropdown,
.header-filter #input-dropdown {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dashboard-tabs.lp-main-tabs.text-center .dropdown.opened a {
  border-left-color: #42a7df;
}

.lp-pagination li a,
.lp-pagination li span {
  border: 1px solid #e3e3e3;
}

.lp-pagination ul li:hover > .page-numbers {
  background-color: #f7f7f7;
}

.lp-pagination ul li:hover {
  background-color: #e3e3e3;
}

.lp-pagination div.page-numbers a:hover {
  background-color: #e3e3e3;
}

.lp-pagination ul li > span.current:hover,
.lp-pagination ul li > span.current {
  background-color: #363f48;
  color: #fff;
  border-color: #363f48;
  line-height: 29px;
  padding: 4px 10px;
  border-radius: 2px;
}

.claimform.claimform-open h3 {
  margin-top: 0;
}

.claimform.claimform-open {
  padding: 0;
  padding-top: 10px;
  margin: 0;
  padding-left: 3px;
  padding-right: 3px;
}

.claimform.claimform-open #claimform .form-group {
  margin: 0;
}

.claimform.claimform-open .lp-review-btn {
  padding: 6px 28px 6px 28px;
}

.lp-pagination.pagination {
  padding-left: 15px;
  padding-right: 15px;
}

.lp-pagination.pagination {
  padding-left: 15px;
  padding-right: 15px;
}

.widget-rating-box {
  margin-left: 0 !important;
}

.widget-rating-box > span.rate {
  border-radius: 3px !important;
  width: 52px !important;
  line-height: 22px !important;
  margin-top: 5px;
  margin-bottom: 5px;
}

.post-with-map-container-right .list_view .lp-grid-box-bottom .hide {
  display: block !important;
}

.post-with-map-container-right .list_view .lp-grid-box-bottom .hide .gaddress {
  color: #7f7f7f;
  font-size: 12px;
  line-height: 30px;
  max-width: initial;
}

.post-with-map-container-right .list_view .lp-grid-box-bottom .show {
  color: #7f7f7f;
  font-size: 12px;
  line-height: 30px;
  display: none !important;
}

.post-with-map-container-right .lp-grid-box-bottom .pull-left {
  min-width: 65%;
  text-align: left;
}

.listing-second-view.paid-listing.lp-section-content-container.lp-list-page-grid
  .listing-post
  article
  figure {
  background-image: url(data:image/png;base64,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);
  min-height: 232px;
}

.listing-second-view.paid-listing.lp-section-content-container.lp-list-page-grid
  .listing-post
  article
  figure
  > a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.listing-second-view.paid-listing.lp-section-content-container.lp-list-page-grid
  figure
  img {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
}

.select-plan-form .plan-options {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 400;
}

.select-plan-form .radio.radio-danger {
  width: 20px;
  height: 20px;
  border: 1px solid #ececec;
  display: inline-block;
  margin-top: 5px;
  margin-right: 10px;
  margin-bottom: 0;
  float: left;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

.select-plan-form input[type="radio"] {
  margin-left: 0;
  opacity: 0;
}

.select-plan-form .radio label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 14px;
  left: 22px;
  top: 2px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #eee;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}

.select-plan-form input[type="radio"]:checked + label::before {
  background-color: #999;
  border: medium none;
  color: #7f7f7f;
  content: "";
  height: 14px;
  left: 22px;
  width: 14px;
}

.select-plan-form .radio {
  margin-bottom: 15px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  .lp-rigt-icons
  ul:first-child {
  width: auto;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  .lp-rigt-icons
  ul:last-child
  li
  a {
  padding-left: 15px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  .lp-rigt-icons
  ul:last-child {
  float: left;
  padding-top: 0;
  margin-left: 10px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  .lp-rigt-icons {
  margin-left: 10px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  .lp-rigt-icons
  ul {
  display: inline;
  float: left;
  width: auto;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right {
  width: 36%;
  position: absolute;
  right: 12px;
  top: 41px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  li:first-child
  a
  span {
  line-height: 25px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  li:first-child
  a {
  padding: 2px 15px 2px 40px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  li
  a,
.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  li
  form#lp_recheck
  .lp-review-btn {
  padding: 5px 20px;
  height: 30px;
}

.dashboard-content
  .right-panel
  .lp-list-page-list
  .lp-list-view-inner-contianer.clearfix
  .col-md-3.col-sm-3.col-xs-12.pull-right
  li
  form#lp_recheck
  .lp-review-btn {
  font-size: 14px !important;
}

.plane_change_btn,
.lp_change_plan_action {
  padding: 0 15px;
}

.lp-new-plane-container .lp-change-plane-status {
  position: absolute;
  right: 15px;
  bottom: 41px;
}

.lp-new-plane-container {
  position: relative;
}

.lp_change_plan_action {
  display: inline-block;
}

.lp_change_plan_action,
.lp-action-div form input[type="submit"],
.lp-new-plane-container .plane_change_btn input[type="submit"] {
  color: #333;
  border: 1px solid #333;
  border-radius: 3px;
  padding: 6px 10px;
  background: #fff;
}

.lp_change_plan_action:hover,
.lp-action-div form input[type="submit"]:hover,
.lp-new-plane-container .plane_change_btn input[type="submit"]:hover {
  color: #fff;
  background: #333;
}

@media (max-width: 600px) {
  .lp-home-banner-contianer
    .lp-search-bar
    div.form-group.lp-location-search.hide-what {
    width: 100% !important;
  }
}

.lp-home-banner-contianer
  .lp-search-bar
  .form-group.lp-location-search.hide-what {
  width: 78% !important;
  border-radius: 4px;
}

.header-filter .input-group.width-49-percent.hide-what {
  width: 90%;
  border-radius: 4px;
}

.sidebar-post .md-modal.md-effect-3.single-page-popup.md-show {
  max-width: 1600px;
}

.lp-blog-grid-box .lp-blog-grid-box-description .lp-blog-user-thumb {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: -25px;
  border-radius: 50%;
}

#modal-packages {
  top: 25px;
}

#modal-packages .modal-body {
  padding-bottom: 25px;
}

#modal-packages .modal-header .close {
  margin-top: -45px;
  margin-right: -45px;
  background: #42a7df;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 100%;
}

.list_view .lp-grid-box-bottom .pull-left,
.post-with-map-container-right .lp-grid-box-bottom .pull-left {
  max-width: 65%;
}

.list_view .lp-grid-box-bottom .hide,
.post-with-map-container-right .list_view .lp-grid-box-bottom .hide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-selected-plan-features ul {
  margin: 0;
  padding: 0;
}

.lp-selected-plan-features {
  padding: 15px;
  padding-bottom: 0;
}

.lp-selected-plan-features ul li p i {
  color: #2e8b57;
  margin-right: 4px;
}

.lp-selected-plan-features ul li p {
  margin-bottom: 0;
}

.lp-selected-plan-price h3 {
  font-size: 20px;
}

.lp-selected-plan-price h3 span {
  font-size: 16px;
  color: #333;
  margin-left: 2px;
}

.lp-change-plan-btn {
  margin-bottom: 0 !important;
}

.lp-change-plan-popup .modal-header .modal-title {
  font-size: 26px;
}

.lp-selected-plan-price .plan-options {
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

.lp-new-plane-container .lp-selected-plan-features {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
}

.lp-new-plane-container .lp-selected-plan-features:last-child {
  border-bottom: 0;
}

.selected-plane-price-features ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-right: 15px;
  float: left;
}

.selected-plane-price-features ul li:after {
  font-family: FontAwesome;
  content: "|";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 3px;
  right: 0;
}

.selected-plane-price-features ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.selected-plane-price-features ul li:last-child:after {
  display: none;
}

.widget-box.listing-price .hotel-menu {
  overflow-y: scroll;
}

div.lp-recurring-button-wrap {
  float: left;
  margin-left: 17px;
}

div.lp-recurring-button-wrap input[type="checkbox"]:checked + label:before {
  color: #fff;
  border-color: #fff;
}

div.lp-recurring-button-wrap input[type="checkbox"] + label {
  padding-top: 3px;
}

div.bottom-section a.reviewRes i {
  margin-right: 2px;
}

.bottom-section .reviewRes span.interests-score {
  margin-left: 2px;
}

form #cities {
  padding-left: 80px;
  width: 100%;
  height: 46px;
  line-height: 47px;
  border-radius: 0 5px 5px 0;
}

.input-group.width-49-percent .input-group-addon.lp-border {
  z-index: 7;
}

.city-autocomplete {
  z-index: 100001 !important;
  overflow: hidden;
  border: none !important;
  text-align: left;
}

.lp-archive-banner .city-autocomplete {
  top: 42px !important;
  border-radius: 0;
}

.city-autocomplete .help {
  line-height: 22px;
  padding: 8px 15px;
  border-bottom: 1px solid #f9f9f9;
  color: #7f7f7f;
}

.city-autocomplete .help:hover:last-child {
  border-bottom: none;
}

.city-autocomplete .help:hover {
  background-color: #363f48;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 480px) {
  form #cities {
    border-radius: 0 !important;
  }

  .fullwidth-header .header-filter .lp-search-btn-header i {
    display: none;
  }
}

.listing-second-view .single-page-slider-container.style2 .img_1 .slick-slide,
.listing-second-view .single-page-slider-container.style2 .img_1 .slick-track {
  width: 100% !important;
}

@media (max-width: 1024px) {
  .single-page-slider-container.style2.three-imgs img {
  }
}

@media (max-width: 767px) {
  .single-page-slider-container.style2 .listing-slide .slide {
    height: 250px !important;
  }
  .listing-second-view .single-page-slider-container.style2 img {
    height: 100% !important;
  }
}

@media (min-width: 1024px) {
  .single-page-slider-container.style2.three-imgs .img_2 img {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .listing-second-view
    .single-page-slider-container.style2
    .img_3.slick-initialized
    .slick-slide {
    width: auto !important;
  }
}

form#listings_checkout .lp_select_listing_heading {
  font-size: 18px;
}

span.email-exist-error {
  padding: 5px;
  color: red;
}

div#lp-find-near-me ul {
  margin: 0;
  padding: 0;
}

div#lp-find-near-me ul li a:hover {
  background-color: #f7fbfe;
}

div#lp-find-near-me ul li a {
  padding: 5px 10px;
}

div#lp-find-near-me-outer ul li #map-view-icon2:hover,
div#lp-find-near-me-outer ul li #map-view-icon2:focus {
  background-color: #f8f8f8;
}

div#lp-find-near-me-outer ul li #map-view-icon2 {
  line-height: 27px;
}

div#lp-find-near-me ul li a {
  background-color: #f8f8f8;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  color: #9f9f9f;
  float: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 27px;
  padding: 3px 15px;
}

div#lp-find-near-me ul li a.active {
  color: #fff;
}

.lp-nearby-grids {
  position: relative;
}

.lp-nearby-grids .lp-dis {
  position: absolute;
  bottom: 41px;
  left: 20%;
  z-index: 9;
  font-size: 14px;
}

.lp-nearby.paid-listing .listing-post figure {
  float: left;
  position: relative;
  width: 100%;
  background-color: #000;
  float: left;
  border-radius: 5px;
  overflow: hidden;
  width: 90px;
}

.lp-nearby.paid-listing
  .listing-post
  .lp-grid-box
  .lp-grid-desc-container
  .lp-grid-box-thumb-container {
  position: relative;
  background-color: #000;
  float: none;
  border-radius: 5px;
  overflow: hidden;
  width: 90px;
  vertical-align: middle;
  display: inline-table;
}

.lp-nearby.paid-listing
  .listing-post
  .lp-grid-box
  .lp-grid-desc-container
  .details {
  float: none;
  padding-left: 10px;
  width: calc(100% - 100px);
  vertical-align: middle;
  display: inline-table;
}

.lp-nearby.paid-listing .listing-post .details .cat-icon {
  display: inline-block;
  line-height: 17px;
  margin-right: 0;
  width: 12px;
}

.lp-nearby.paid-listing .listing-post .details ul li {
  font-size: 12px;
}

.lp-nearby.paid-listing .listing-post .details ul li .no-review {
  padding-left: 0 !important;
}

.lp-nearby.paid-listing .listing-post .details ul li span:last-child {
  line-height: 18px;
  padding: 3px 10px;
  height: 27px;
  vertical-align: top;
  width: 42px;
}

.lp-nearby.paid-listing .listing-post .details .lp-h4 a:hover {
  color: #ff5a5f;
}

.lp-nearby.paid-listing .listing-post .details .lp-h4 a {
  font-size: 14px;
}

.lp-nearby.paid-listing .listing-post .details .lp-h4 {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 17px;
}

.lp-nearby.paid-listing .listing-post .details span.rate {
  height: 23px;
  line-height: 15px;
}

.lp-nearby.paid-listing .listing-post .details ul {
  padding: 0;
  margin: 0;
}

.lp-nearby.paid-listing .listing-post .lp-location .show {
  font-size: 16px;
}

.lp-nearby.paid-listing .listing-post .lp-location {
  margin-top: 5px;
}

.lp-nearby.paid-listing .listing-post .lp-location a {
  font-size: 12px;
}

.lp-nearby.paid-listing .listing-post .lp-location .cat-icon img {
  width: 15px;
}

.lp-nearby.paid-listing .listing-post .details span.verified {
  background-color: #73cf42;
}

.lp-nearby.paid-listing .listing-post .lp-grid-desc-container {
  padding: 10px;
}

.lp-nearby.paid-listing .listing-post .lp-sidebar-nearby {
  position: relative;
  display: block;
  height: auto;
}

.lp-sidebar-nearby .grid_view2 {
  margin-bottom: 10px !important;
}

.lp-nearby.paid-listing .listing-post .lp-sidebar-nearby .lp-distance-sidebar {
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 9;
  font-size: 12px;
  color: #ff4500;
  font-weight: 700;
}

.listing-app-view .lp-nearby {
  margin-bottom: 0;
}

.lp-sidebar-nearby .promoted .lp-h4 a .listing-pro {
  border: 1px solid #ebac2c;
  border-radius: 3px;
  color: #ebac2c;
  float: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-right: 7px;
  margin-top: 2px;
  padding: 0 3px 0 4px;
}

button.lp-2checkout-modal {
  display: none;
}

.lp-sub-title {
  width: 800px;
  margin: 0 auto;
}

.listing-grid-view2-outer .lp-grid-box-description {
  padding: 10px 15px 2px 15px;
}

.listing-grid-view2-outer .lp-grid-box-description h4 {
  margin-bottom: 6px;
}

.sub-category-outer li {
  display: inline-block;
}

.sub-category-outer li a {
  color: #fff;
}

.sub-category-outer li p {
  margin: 0;
  line-height: 20px;
}

.sub-category-outer {
  margin: 0;
  padding: 0;
}

.category-style3-title-outer {
  z-index: 99999;
}

.category-style3-title-outer a:hover {
  color: #fff !important;
}

.city-girds2 .city-thumb2 .category-style3-title-outer {
  position: absolute;
  left: 20px;
  bottom: 15px;
  border-radius: 3px;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.city-girds2 .city-thumb2:hover .category-style3-title-outer {
  bottom: 20px;
}

.city-girds2 .city-thumb2 .category-style3-title-outer a {
  color: #fff;
  padding: 0 10px;
  font-size: 16px !important;
  line-height: 30px;
}

.city-girds2 .city-thumb2 .category-style3-title-outer .lp-h3 {
  margin: 0 !important;
}

.city-thumb2 {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.city-girds4 .category-style3-title-outer .lp-h3,
.location-girds4 .city-title .lp-h3 {
  -webkit-transform: translateY(10px) !important;
  -moz-transform: translateY(10px) !important;
  -o-transform: translateY(10px) !important;
  transform: translateY(10px) !important;
}

.city-girds4:hover .category-style3-title-outer .lp-h3,
.location-girds4:hover .city-title .lp-h3 {
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.city-girds4 .category-style3-title-outer,
.location-girds4 .city-title {
  padding-bottom: 15px !important;
}

.lp_section_inner {
  background-size: 100%;
}

.call-to-action2 {
  padding: 50px 0;
}

.call-to-action2 h3,
.call-to-action2 h1 {
  color: #fff;
}

.call-to-action2 h3 {
  font-size: 30px;
  font-family: "Rock Salt", cursive;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 400;
}

.call-to-action2 h1 {
  font-size: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: "Rock Salt", cursive;
  font-weight: 400;
}

.lp-blog-style2-outer {
  border: 1px solid #e3e3e3;
  border-right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  text-align: left;
}

.lp-blog-grid-box-container-first-post {
  max-height: 406px;
  overflow: hidden;
}

.lp-blog-grid-box-container-style2 .lp-blog-grid-box-description2 {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.lp-blog-user-thumb2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.lp-blog-user-thumb2 img {
  border-radius: 5px;
}

.lp-blog-style2-outer .lp-blog-grid-title {
  padding: 0;
  margin-top: 20px;
}

.lp-blog-style2-inner {
  padding: 33px 20px;
  padding-right: 40px;
}

.lp-blog-style2-inner .lp-blog-grid-title h4 a {
  font-size: 24px;
  line-height: 30px;
}

.lp-blog-style2-inner .lp-blog-grid-title p {
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.lp-blog-style2-inner .lp-blog-grid-author li a,
.lp-blog-grid-author2 li a {
  color: #7f7f7f;
}

.blog-read-more a {
  color: #7f7f7f;
  font-weight: 700;
  display: inline-block;
  float: none !important;
  margin-top: 24px;
  border: 1px solid !important;
  border-radius: 5px;
  font-size: 14px;
  line-height: 26px;
  padding: 3px 15px;
}

.blog-read-more a:hover {
  color: #fff !important;
}

.lp-blog-grid-box-description2 {
  text-align: left;
}

.lp-blog-grid-author2,
.lp-blog-grid-box-description2 .blog-read-more {
  padding: 0 30px;
}

.lp-blog-grid-box-description2 .lp-blog-user-thumb {
  margin: -25px 20px auto !important;
}

.lp-blog-grid-box-description2 .lp-blog-grid-title h4 {
  margin-top: 20px;
}

.lp-blog-grid-box-description2 .lp-blog-grid-title h4 a {
  font-size: 18px;
  line-height: 30px;
}

.lp-blog-grid-box-description2 .lp-blog-grid-title p {
  line-height: 24px;
}

.lp-blog-grid-box-description2 .blog-read-more a {
  margin-top: 16px;
}

.footer-style2 .widget-title h2 {
  margin-top: 0;
  margin-bottom: 15px !important;
  color: #fff;
  font-size: 18px;
}

.footer-style2 a,
.footer-style2 li,
.footer-style2 p,
.footer-style2 span {
  color: gray;
}

.footer-style2 a:hover,
.footer-style2 a:focus {
  color: #fff;
}

.footer-style2 li {
  margin-bottom: 6px;
}

.footer-style2 li:last-child {
  margin-bottom: 0;
}

.footer-style2 ul {
  padding: 0;
  margin: 0;
}

.contact-info-widget {
  margin-bottom: 20px;
}

.contact-info-widget ul {
  padding: 0;
  margin: 0;
}

.contact-info-widget ul li {
  margin-bottom: 6px;
}

.contact-info-widget ul li:last-child {
  margin-bottom: 0;
}

.contact-info-widget ul li .fa {
  margin-right: 5px;
}

.footer-logoo {
  margin-bottom: 20px;
}

.contact-info-widget-social ul {
  padding: 0;
  margin: 0;
}

.footer-social-icons-widget li {
  margin-right: 10px;
}

.footer-social-icons-widget li:last-child {
  margin-right: 0;
}

.footer-social-icons-widget li img {
  width: 25px;
  height: 25px;
}

.single-tabber2 {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
}

.single-tabber2 ul {
  padding: 0;
  margin: 0;
}

.single-tabber2 ul li {
  display: inline-block;
  float: left;
  position: relative;
}

.single-tabber2 ul li {
  margin-right: 30px;
}

.single-tabber2 ul li:last-child {
  margin-right: 0;
}

.single-tabber2 ul li a {
  text-transform: capitalize;
  padding: 15px 0;
  display: block;
  color: #333;
}

.single-tabber2 ul .active a:after {
  height: 2px;
  width: 100%;
  left: 0;
  content: "";
  bottom: -1px;
  position: absolute;
}

.detail-page2-tab-content
  .map-area
  .listing-detail-infos
  .list-style-none.list-st-img
  > li:last-of-type {
  border-bottom: none;
}

.detail-page2-tab-content
  .map-area
  .listing-detail-infos
  .list-style-none.list-st-img
  > li {
  border-bottom: 1px solid #dedede;
  line-height: 34px;
  margin-bottom: 0;
  padding: 3px 0 6px;
}

.detail-page2-tab-content
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li
  a {
  border-radius: 5px;
  color: #fff;
  float: left;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

.detail-page2-tab-content
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li {
  border: medium none;
  border-radius: 5px;
  display: inline-block;
  float: none;
  height: 35px;
  margin-right: 5px;
  padding: 0;
  text-align: left;
  vertical-align: top;
  width: 22px;
}

.detail-page2-tab-content #submitreview h3.comment-reply-title {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 30px;
}

#submitreview {
  margin-bottom: 30px;
}

.detail-page2-tab-content #singlepostmap {
  height: 250px;
}

.detail-page2-tab-content .features li {
  padding-left: 0;
}

.detail-page2-tab-content #desp .features {
  padding-top: 0;
}

.detail-page2-tab-content #desp .features li {
  margin-bottom: 0;
}

.post-feature-box {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 10px 25px;
  padding-top: 25px;
}

.post-feature-box .features li {
  margin-bottom: 10px;
}

.post-feature-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.listing-second-view
  .detail-page2-tab-content
  .features-listing
  > ul.hidding-timings {
  display: block;
}

.detail-page2-tab-content a.show-all-timings {
  display: none;
}

.detail-page2-tab-content .review-form {
  margin-top: 0 !important;
}

.detail-page2-tab-content .reviews-section {
  margin-bottom: 30px !important;
}

a.show-all-form-feilds {
  background-color: #fff;
  border: 1px solid #dedede;
  bottom: -8px;
  color: #939393;
  float: left;
  font-size: 9px;
  font-weight: 400;
  left: 50%;
  letter-spacing: 0.7px;
  padding: 2px 5px;
  position: absolute;
  text-transform: capitalize;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.listing-second-view .widget-box.business-contact2 .user_text {
  margin-bottom: 0 !important;
}

.listing-second-view .widget-box.business-contact2 {
  position: relative;
}

a.show-all-form-feilds::before {
  content: "+";
  display: inline-block;
  margin-top: -2px;
  vertical-align: top;
  width: 10px;
}

a.show-all-form-feilds.opened::before {
  content: "-";
}

.description-container {
  line-height: 20px;
}

.grid_view2 .description-container {
  display: none;
}

.list_view .description-container {
  display: block;
}

.detail-page2-tab-content .review-form > form#rewies_form {
  display: block !important;
}

.detail-page2-tab-content .comment-reply-title {
  margin: 0;
  font-size: 16px;
}

.detail-page2-tab-content .comment-reply-title .fa-caret-down {
  display: none;
}

.listing-second-view .detail-page2-tab-content .author-img {
  float: left;
  width: auto;
  border-radius: 50%;
  overflow: hidden;
}

.detail-page2-tab-content
  .contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative
  .lp-search-icon {
  left: 45% !important;
}

.blog-single-inner-container {
  background-color: transparent;
  border: none;
}

.blog-single-inner-container .blog-content-outer-container {
  padding: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background-color: #fff;
}

.blog-single-inner-container .blog-content-outer-container iframe {
  width: 100%;
}

@media (min-width: 992px) {
  .page-container-second {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .background-white {
    background-color: #fff;
  }
  .aliceblue .lp-blog-grid-box-description {
    background: #fff;
  }
}

.sidebar-container #sidebar .widget,
.blog-single-inner-container #sidebar .widget {
  padding: 30px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background-color: #fff;
}

#sidebar aside h2.widget-title {
  margin-bottom: 20px;
  border-bottom: 1px solid #efefec;
  padding-bottom: 10px;
}

.jw-recent-posts-widget ul {
  padding: 0;
  margin: 0;
}

.jw-recent-posts-widget ul li:first-child {
  margin-bottom: 0;
}

.jw-recent-posts-widget .recent-thumb {
  border-radius: 5px;
  overflow: hidden;
  display: inline-table;
  margin-right: 10px;
}

.jw-recent-content {
  display: inline-table;
  vertical-align: top;
  width: -webkit-calc(100% - 75px);
  width: -moz-calc(100% - 75px);
  width: calc(100% - 75px);
}

.jw-recent-posts-widget .jw-recent-content p {
  margin-bottom: 0;
}

.jw-recent-posts-widget .jw-recent-content.with-thumb > h3 {
  margin: 0;
}

#sidebar .jw-recent-posts-widget ul li .jw-recent-content a {
  color: #333;
  float: left;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 7px;
  vertical-align: top;
  width: 100%;
}

.jw-recent-content > p {
  color: #797979;
  font-size: 13px;
  line-height: 20px;
}

.jw-recent-content .meta span {
  font-size: 12px;
  font-weight: 400;
  color: #b0b0b0;
}

.jw-recent-content .meta {
  font-size: 12px;
  font-weight: 400;
  color: #b0b0b0;
  display: none;
}

.jw-recent-content .meta a {
  font-size: 12px;
  font-weight: 400;
  color: #b0b0b0;
}

.jw-recent-content .meta .date {
  border-right: 1px solid #b0b0b0;
  padding-right: 6px;
  margin-right: 6px;
}

.jw-recent-content .meta a {
  float: none !important;
  width: auto !important;
}

.page-heading .page-heading-inner-container h1 span {
  color: #fff;
}

.page-heading-inner-container .breadcrumbs a {
  display: none;
}

.page-heading-inner-container .breadcrumbs a:first-child {
  display: block;
}

#sidebar aside h2.widget-title {
  border-bottom: 0;
  position: relative;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}

#sidebar aside h2.widget-title:after {
  height: 2px;
  left: 0;
  content: "";
  bottom: -1px;
  position: absolute;
  width: 40px;
}

#sidebar aside > ul {
  margin: 0;
  padding: 0;
}

#sidebar aside.widget ul li:last-child {
  padding-bottom: 0 !important;
}

#sidebar aside.widget ul li:first-child {
  padding-top: 8px !important;
}

#sidebar aside.widget ul li {
  padding: 8px 0 !important;
  border-bottom: 0;
}

.sidebar-style1 #sidebar {
  background: #fff;
  border-radius: 8px;
}

.sidebar-style1 #sidebar .widget {
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
}

.sidebar-style1 #sidebar {
  background: #fff !important;
  border: 1px solid #e3e3e3 !important;
  border-radius: 8px !important;
  padding-bottom: 30px !important;
}

.sidebar-style1 #sidebar .widget:after {
  height: 0;
  background: #e3e3e3;
  left: 0;
  content: "";
  bottom: -30px;
  position: absolute;
  width: calc(100% - 60px);
  margin: 30px;
}

.sidebar-style1 #sidebar .widget:last-child:after {
  height: 0;
}

.page-container-second-blog {
  padding-bottom: 20px;
  padding-top: 20px;
}

#sidebar .widget {
  padding: 30px;
  background: #fff;
}

.sidebar-style2 #sidebar .widget {
  border-radius: 8px;
  border: 1px solid #e3e3e3;
}

.post-with-map-container-right
  .search-row
  #searchform
  .sortbyrated
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  width: 130px !important;
}

.post-with-map-container-right
  #searchform
  .sortbyrated
  .chosen-container.chosen-with-drop
  .chosen-drop {
  width: 103%;
  left: -2px;
}

.sortbyrated .chosen-container-single .chosen-single {
  padding-left: 15px !important;
}

.lp-home-banner-contianer-inner-video {
  left: 0;
  position: relative;
  bottom: -45px;
  max-height: 170px;
  width: calc(100% - 60px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  margin: 0 30px;
}

.video-bottom-search-content {
  background: #1bca8f;
  padding: 47px 40px;
  min-height: 170px;
}

.lp-home-banner-contianer-inner-video {
  z-index: 999;
}

.video-bottom-search-content h1 {
  margin: 0;
  color: #fff;
}

.video-bottom-search-container {
  background: #fff;
  padding: 43.5px;
}

.video-bottom-search-container .lp-search-bar {
  margin-top: 0;
  padding: 0;
}

.video-bottom-search-container .form-group.lp-suggested-search {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
}

.video-bottom-search-container .form-group.lp-location-search {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
}

.video-bottom-search-container .form-group.lp-location-search {
  margin-left: -3px !important;
}

.video-bottom-search-container .lp-banner-browse-txt {
  color: #333;
}

.lp-home-banner-contianer-inner-video-outer {
  height: auto !important;
}

.video-bottom-search-container .lp-search-bar-right i {
  color: #fff;
}

.post-row-header-features {
  padding-left: 20px;
}

.listing-app-view .make-reservation-outer {
  margin-bottom: 27px;
}

.listing-app-view
  .searchcategory_chosen
  .chosen-container-single
  .chosen-single {
  height: 46px;
  line-height: 46px;
}

.listing-app-view .grid_view .lp-grid-box-description .lp-h4 {
  margin-top: 0 !important;
}

.listing-app-view .grid_view .lp-grid-box-description .lp-grid-box-left ul {
  margin-bottom: 0 !important;
}

.listing-app-view .grid_view .lp-grid-desc-container {
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5px !important;
}

.listing-app-view .meta_info_top_40 {
  margin: 30px auto 0 !important;
}

.listing-app-view .footer-upper-bar {
  padding: 0 !important;
}

.listing-app-view .single-inner-container-inner {
  padding: 0;
}

.listing-app-view
  .lp-nearby.paid-listing
  .listing-post
  .lp-sidebar-nearby
  .lp-distance-sidebar {
  bottom: 50px;
  right: 15px;
}

.listing-app-view .listing-app-view2 .grid_view.lp-grid-box-contianer {
  width: 100% !important;
  float: left;
  padding: 0 5px;
}

.listing-app-view .today-hrs {
  text-align: left;
}

.listing-app-view .today-timing {
  text-align: left;
}

.app-view-filters
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  height: auto;
}

.listing-app-view .open-hours ul.hidding-timings {
  text-align: left;
  width: 100%;
}

.listing-app-view .header-container .md-show {
  width: 100% !important;
  overflow: hidden !important;
  padding: 0 10px;
  left: 0;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.listing-app-view #modal-3.md-modal.md-effect-3.md-show .login-form-popup {
  padding: 0;
}

.app-view-header .lp-search-toggle .user-menu i {
  font-size: 20px;
  color: #fff;
  margin-top: 13px;
}

.app-view-header .lp-search-toggle .user-menu span i {
  margin: 0 2px;
  font-size: 16px;
}

#sidebar {
  margin-bottom: 30px;
}

.lp-section-title-container h1 {
  text-align: center !important;
}

.listing-app-view footer.text-center .footer-upper-bar-for-app,
.footer-app-menu {
  bottom: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
}

.listing-app-view .widget-box {
  margin-bottom: 10px !important;
}

.listing-app-view2 .make-reservation-outer a.secondary-btn {
  width: 243px;
  font-weight: 400;
}

.listing-app-view .listing-with-map .list_view {
  padding-left: 5px;
  padding-right: 5px;
}

.listing-app-view .listing-app-view2 .listing-detail-infos .widget-social {
  border-top: solid 1px #eee;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  margin-bottom: 8px !important;
}

.listing-app-view .listing-app-view2 .list-st-img li:last-child {
  margin-bottom: 0;
  border-bottom: 0 !important;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  ul
  li
  a
  span.cat-icon {
  width: 15px;
  margin-right: 5px;
  display: inline-table;
  vertical-align: middle;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  ul
  li
  a
  span.cat-icon
  i {
  font-size: 13px;
}

.listing-app-view .listing-app-view2 .map-area .listing-detail-infos ul li {
  position: relative;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  ul
  li:after {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 16px;
  color: #7f7f7f;
}

.listing-app-view .listing-app-view2 .lp-grid-box-contianer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.listing-app-view
  .listing-app-view2
  .widget_listingpro_nearby
  .lp-grid-box-description {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
}

.listing-app-view
  .listing-app-view2
  .lp-nearby.paid-listing
  .listing-post
  .lp-grid-desc-container {
  padding: 0 !important;
}

.listing-app-view
  .listing-app-view2
  .lp-nearby.paid-listing
  .listing-post
  .lp-sidebar-nearby {
  width: 100%;
}

.listing-app-view
  .listing-app-view2
  .lp-nearby.paid-listing
  .listing-post
  .lp-sidebar-nearby
  .lp-distance-sidebar {
  bottom: 19%;
}

.listing-app-view
  .listing-app-view2
  .lp-nearby.paid-listing
  .listing-post
  .lp-sidebar-nearby {
  margin-bottom: 0;
}

.listing-app-view
  .listing-app-view2
  .lp-nearby.paid-listing
  .listing-post
  .lp-sidebar-nearby
  .lp-grid-box-contianer1 {
  margin-bottom: 0 !important;
}

.add-on-map {
  color: #333;
  font-size: 13px;
  background: #fff;
  position: relative;
  z-index: 9999;
  padding: 17px 25px;
}

.add-on-map span {
  color: #333;
  vertical-align: middle;
  display: inline-flex;
}

.add-on-map span i {
  margin-right: 5px;
  font-size: 16px;
}

.listing-app-view .listing-app-view2 .listing-price a.open-modal {
  border-radius: 0 !important;
  border-bottom: 1px solid #ececec !important;
}

.listing-app-view
  .listing-app-view2
  .form-review-stars
  .rating-symbol
  .rating-symbol-background,
.listing-app-view
  .listing-app-view2
  .form-review-stars
  .rating-symbol
  .rating-symbol-foreground
  .fa {
  font-size: 26px !important;
}

.listing-app-view .listing-app-view2 .review-form > form#rewies_form {
  padding: 18px 15px 5px !important;
}

.listing-app-view .review-form #rewies_form .form-group:last-child p {
  padding-top: 0 !important;
}

.listing-app-view .listing-app-view2 .list_view span.rate sup {
  display: none !important;
}

.listing-app-view .listing-app-view2 .widget_listingpro_nearby span.rate sup {
  margin-left: 18px !important;
  top: -5px;
}

.listing-app-view .listing-app-view2 .widget_listingpro_nearby > h2 {
  margin-bottom: 10px;
}

.listing-app-view .grid_view .middle {
  display: none;
}

.listing-app-view .grid_view .lp-grid-box {
  border: 0 !important;
}

.listing-app-view .grid_view .lp-grid-box-thumb img {
  border-radius: 4px;
}

.listing-app-view .grid_view .lp-grid-box-description span.rate {
  font-size: 12px !important;
  padding: 0 8px !important;
  border-radius: 3px !important;
  margin-right: 0 !important;
  display: inline-block;
}

.listing-app-view .grid_view span.rate sup {
  display: none !important;
}

.listing-app-view .grid_view .lp-grid-box-left.pull-left > ul > li {
  border-left: 0 !important;
}

.listing-app-view .grid_view .lp-grid-box-left.pull-left > ul > li {
  margin-top: 0;
}

.listing-app-view .lp-grid-box-description span.cat-icon {
  display: inline-block;
  line-height: 17px;
  margin-right: 5px;
  width: 15px;
}

.listing-app-view .grid_view .lp-grid-box-description span.cat-icon,
.map-view-list-container
  .list_view
  .lp-grid-box-description
  .lp-grid-box-left
  ul
  li:last-child
  .cat-icon {
  margin-right: 0 !important;
}

.listing-app-view .listing-app-view-bar .search-filters > ul > li > a,
.listing-app-view .listing-app-view-bar .currency-signs > ul > li > a {
  font-size: 11px !important;
  padding: 2px 10px !important;
}

.listing-app-view .listing_list_view .list_view {
  padding: 0 5px !important;
}

.listing-app-view .lp-grid-box-description h4.lp-h4 > a > .listing-pro {
  margin-top: 0 !important;
  display: inline-table !important;
  vertical-align: middle !important;
  float: none !important;
  margin-right: 2px !important;
}

.listing-app-view
  .grid_view.lp-grid-box-contianer
  .lp-grid-box-description
  h4.lp-h4
  > a {
  display: inline-table !important;
  vertical-align: middle !important;
}

.listing-app-view .list_view span.rate sup {
  display: none !important;
  margin-left: 17px !important;
  top: -0.7em !important;
}

.listing-app-view .listing_grid_view .lp-section-content-container {
  padding-bottom: 10px !important;
}

.listing-app-view.home .lp-section-title-container h1 {
  text-align: left !important;
  padding-left: 20px !important;
}

.listing-app-view .cities-app-view {
  padding: 0 5px !important;
}

.listing-app-view .cities-app-view .city-thumb > img {
  margin-left: 0 !important;
}

.listing-app-view .cities-app-view .city-girds,
.listing-app-view .cities-app-view .city-girds .city-thumb {
  border-radius: 3px !important;
}

.listing-app-view .cities-app-view .city-girds .city-title {
  position: relative !important;
  background: transparent !important;
  margin-bottom: 0 !important;
  text-align: left;
  padding-bottom: 0 !important;
}

.listing-app-view .cities-app-view .city-girds .city-title h3 a,
.listing-app-view
  .cities-app-view
  .city-girds
  .city-title
  .lp-listing-quantity {
  color: #333 !important;
  font-size: 14px !important;
}

.listing-app-view
  .cities-app-view
  .city-girds
  .city-title
  .lp-listing-quantity {
  color: #7f7f7f !important;
  font-size: 12px !important;
}

.listing-app-view .cities-app-view .city-girds {
  margin-bottom: 0 !important;
}

.listing-app-view .cities-app-view .city-girds .city-title .lp-h3 {
  -webkit-transform: translateY(10px) !important;
  -moz-transform: translateY(10px) !important;
  -o-transform: translateY(10px) !important;
  transform: translateY(10px) !important;
  margin-bottom: 10px !important;
}

.listing-app-view .cities-app-view .city-girds:hover .city-title .lp-h3 {
  -webkit-transform: translateY(10px) !important;
  -moz-transform: translateY(10px) !important;
  -o-transform: translateY(10px) !important;
  transform: translateY(10px) !important;
}

.listing-app-view
  .list_view
  .lp-grid-box-description
  .lp-grid-box-left.pull-left {
  padding-top: 2px !important;
}

.listing-app-view .list_view .lp-grid-box-description h4 {
  margin-bottom: 1px !important;
}

.listing-app-view .list_view .lp-grid-box-left ul li:last-child span.cat-icon {
  margin-right: 0 !important;
  width: 10px !important;
}

.listing-app-view .footer-about-company {
  padding: 0 10px;
}

.listing-app-view .footer-about-company li {
  display: inline;
}

.listing-app-view .footer-bottom-bar p {
  margin-top: 0;
  padding: 0 10px;
}

.listing-app-view .footer-social-icons {
  margin-top: 20px;
  padding: 0 10px;
}

.listing-app-view .footer-social-icons li img {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
}

.listing-app-view .listing-with-map .map-view-list-container .grid-view-hide {
  display: block !important;
}

.listing-app-view
  .listing-app-view2
  .listing-tabs
  .features-listing
  > ul.hidding-timings {
  display: block !important;
}

.listing-app-view .grid_view .lp-grid-box-thumb .lp-add-to-fav {
  position: absolute !important;
  top: 8px !important;
  right: 13px !important;
}

.pricy-form-group {
  position: relative;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#search-filter-attr-filter {
  display: none;
  width: 200px;
  height: 33px;
  position: absolute;
  right: -200px;
}

#map-view-icon2 {
  float: left;
  line-height: 33px;
}

.search-filter-attr-filter-outer {
  position: absolute;
  width: 270px;
  height: 33px;
}

.search-filter-attr-filter-outer .search-filters > ul > li {
  margin-left: 3px !important;
  margin-right: 0 !important;
}

.listing-app-view .listing-with-map {
  overflow: hidden !important;
  padding-bottom: 100px;
}

.slider-for-category-container {
  padding: 0 5px;
}

.slider-for-category-container .city-thumb2 {
  border-radius: 3px;
}

.slider-for-category-container
  .city-girds2
  .city-thumb2
  .category-style3-title-outer
  a {
  color: #fff;
  padding: 0 !important;
  font-size: 11px !important;
  line-height: 20px !important;
}

.slider-for-category-container
  .city-girds2
  .city-thumb2
  .category-style3-title-outer {
  top: 10px !important;
  left: 10px !important;
  background: none !important;
}

.location-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.slider-for-category-container .overlay-link {
  z-index: 99999;
}

.listing-app-view .mm-navbar-top {
  display: none;
}

.listing-app-view #menu .mm-panels {
  position: static;
}

.listing-app-view .packages,
.listing-app-view .dashboard-content .lp-flip,
.listing-app-view #reviews #commentsdiv,
.listing-app-view #profileupdate {
  padding: 0 20px !important;
}

.listing-app-view
  .app-view-dashboard-menu
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > .dropdown-reviews
  > ul
  > li
  > a
  i {
  display: block !important;
  float: left !important;
  line-height: 33px !important;
}

.dashboard-tabs.lp-main-tabs.text-center
  > ul
  > .dropdown-reviews
  > ul
  > li
  > a {
  padding: 0 28px 0 30px !important;
}

.listing-app-view
  .app-view-dashboard-menu
  .dashboard-tabs.lp-main-tabs.text-center
  > ul
  > .dropdown-reviews
  > ul
  > li
  > a:before {
  display: none !important;
}

.listing-app-view #booking .col-xs-12 {
  padding: 0 15px !important;
  width: 100% !important;
}

.listing-app-view #booking .select2-container {
  display: block !important;
}

.listing-app-view .lp-dashboard-right-panel-listing {
  margin-bottom: 100px !important;
}

.listing-app-view .dashboard-right-panel {
  float: left !important;
  padding: 0 30px 0 !important;
  vertical-align: top !important;
  width: 100% !important;
}

.listing-app-view
  .dashboard-content
  .user-recent-listings-inner
  .lp-list-page-list
  .remove-fav.md-close {
  bottom: 13px !important;
  right: 0 !important;
  top: auto;
  width: 110px;
  left: 40px;
}

.listing-app-view .small-scrren-app-view .user-detail-wrap {
  padding: 20px;
}

.listing-app-view .small-scrren-app-view .user-detail-wrap .user-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #dedede;
  overflow: hidden;
  background-color: #ccc;
}

.listing-app-view
  .small-scrren-app-view
  .user-detail-wrap
  .user-thumb
  .avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0 !important;
}

.listing-app-view .small-scrren-app-view .user-text h5,
.listing-app-view .small-scrren-app-view .user-text p {
  color: #fff;
  margin: 0;
  line-height: 17px;
}

.listing-app-view .small-scrren-app-view .user-text h5 {
  margin-bottom: 5px;
}

.listing-app-view .small-scrren-app-view .user-thumb,
.listing-app-view .small-scrren-app-view .user-text {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 80px);
}

.listing-app-view .small-scrren-app-view .sign-login-wrap {
  padding: 9px 40px;
  text-align: center;
  border-bottom: 0 solid #ececec !important;
  background: #fff;
  border-radius: 3px;
  margin-top: 19px;
  display: inline-block;
}

.listing-app-view .small-scrren-app-view .sign-login-wrap a {
  text-transform: uppercase;
  font-size: 13px;
}

.listing-app-view .small-scrren-app-view .user-text .empty-name {
  height: 10px;
  width: 100px;
  background: #949292;
  border: 0 !important;
}

.listing-app-view .small-scrren-app-view .user-text .empty-addr {
  height: 10px;
  width: 100px;
  background: #949292;
  border: 0 !important;
  margin-top: 6px;
}

.listing-app-view .small-scrren-app-view .add-listing-btn {
  display: inline-block;
  padding: 10px 20px;
  border-bottom: 1px solid #ececec !important;
  width: 100%;
  font-size: 13px;
  text-transform: uppercase;
}

.listing-app-view .small-scrren-app-view .mobile-menu {
  padding-top: 0 !important;
}

.listing-app-view
  .small-scrren-app-view
  .mm-menu
  .mm-panels
  .mm-listview
  li.menu-item
  a {
  padding: 10px 20px !important;
}

.listing-app-view .small-scrren-app-view .mobile-menu li {
  line-height: 14px !important;
}

.listing-app-view .small-scrren-app-view .mm-panels > .mm-panel:before,
.mm-panels > .mm-panel:after {
  display: none;
}

button.lp-2checkout-modal,
button.lp-2checkout-modal2 {
  display: none;
}

a.btn-link.googledroppin {
  margin-left: 10px;
}

.dashboard-tabs .lp-food-menu-icon img {
  width: 20px;
  margin-right: 8px;
}

.lp-overlay-pricing:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.lp-overlay-pricing:after,
.lp-overlay-pricing {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.lp-plane-top-wrape {
  position: relative;
  z-index: 999;
}

.price-plan-box-upper {
  position: relative;
}

.submit_new_style-outer .custom-file {
  position: relative;
  padding: 2px 15px;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  margin-bottom: 0;
  border-radius: 3px;
  vertical-align: middle;
  background-color: #fff;
  padding-left: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.submit_new_style-outer .custom-file .lp-featuredimage {
  font-weight: bold !important;
  color: #008bff !important;
}

.submit_new_style-outer
  .lp-listing-featuredimage
  .custom-file
  .lp-featuredimage {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 94px;
  color: #008bff !important;
  border: 1px solid #008bff !important;
  border-radius: 3px;
}

.submit_new_style-outer .lp-listing-featuredimage label p {
  color: #008bff !important;
  border: 1px solid #008bff !important;
  border-radius: 3px;
  background: #fff;
  margin-right: 15px;
  display: inline-block;
  padding: 3px 10px;
}

.submit_new_style-outer .lp-listing-featuredimage label {
  float: left !important;
}

.submit_new_style-outer .lp-listing-featuredimage > label {
  margin-right: 10px;
}

.lp-new-cat-wrape .select2-container--default .select2-selection--multiple {
  /*height: 46px;*/
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

.lp-new-cat-wrape
  .select2-container--default
  .select2-search--inline
  .select2-search__field {
  line-height: 44px;
  margin: 0;
  font-size: 13px;
  color: #7f7f7f;
  padding: 0;
  margin-bottom: -8px;
}

.lp-new-cat-wrape
  .select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 1px solid #c1c1c1 !important;
  outline: 0;
}

.lp-new-cat-wrape
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  /*height: 44px;*/
  padding: 0 10px 10px 10px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #f9f9f9 !important;
  border: 1px solid #e3e3e3 !important;
  border-radius: 3px;
  cursor: default;
  color: #7f7f7f !important;
  padding: 5px 5px !important;
  float: left;
  margin: 0 !important;
  margin-right: 5px !important;
  position: relative;
  font-size: 12px;
  top: 8px;
  /*transform: translateY(-50%)*/
}

.lp-new-cat-wrape
  .select2-container--default
  .select2-results__option[aria-disabled="true"] {
  color: #fff !important;
}

.lp-new-cat-wrape
  .select2-container--default
  .select2-results__option[aria-selected="true"] {
  background-color: #363f48 !important;
}

#modal-doppin {
  padding-top: 50px;
  z-index: 99999;
}

#modal-doppin #lp-custom-latlong,
#modal-doppin .modal-dialog {
  width: 800px !important;
  height: 460px !important;
}

#modal-doppin #lp-custom-latlong,
#modal-doppin .modal-dialog .modal-header {
  background-color: #f9f9f9;
  padding: 15px 20px !important;
}

#modal-doppin .modal-dialog .close {
  position: absolute;
  right: 20px;
  top: 16px;
  color: #333;
  opacity: 1;
  text-align: center;
  font-size: 30px;
}

.blue-section .lp-submit-accoutn-wrap input.form-control {
  height: 46px !important;
}

.submit_new_style .lp-submit-accoutn-wrap label,
.submit_new_style-outer .already-account {
  color: #7f7f7f !important;
}

.already-account-checkbox {
  margin-bottom: 0;
}

.already-account-checkbox input[type="checkbox"]:checked + label:before {
  font-size: 9px;
  line-height: 13px;
}

.already-account-checkbox input[type="checkbox"]:checked + label:before {
  content: "\f00c";
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  font-family: FontAwesome;
  color: #7f7f7f;
  background-color: transparent;
  border: 1px solid #7f7f7f;
}

.listing-second-view .claim-area a.phone-number {
  border-radius: 3px;
  color: #337ab7;
  font-size: 14px;
  font-weight: 700 !important;
  display: inline-block;
  line-height: 20px;
  padding: 0 10px;
  vertical-align: top;
  font-weight: 400;
}

#lp-report-listing {
  border-top: 1px solid #ececec;
}

.waycheckoutModal .modal-header {
  padding: 15px !important;
  border-bottom: 1px solid #ececec !important;
  background: #f9f9f9 !important;
}

.waycheckoutModal .modal-body {
  position: relative !important;
  padding: 25px !important;
  padding-bottom: 10px !important;
}

.waycheckoutModal .modal-footer {
  padding: 20px !important;
  text-align: right !important;
  border-top: 1px solid #e5e5e5 !important;
}

.waycheckoutModal .btn-default {
  background: #333;
  color: #fff;
  border-color: #333;
  box-shadow: none;
  padding: 5px 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.location-filters-wrapper #pac-container input {
  height: 39px;
  width: 100%;
}

.location-filters-wrapper #pac-input {
  border: 1px solid #eaeaea;
  border-radius: 3px;
  background: #f8f8f8;
  color: #b5b5b5;
  padding: 0 10px;
  height: 33px;
}

.location-filters-wrapper {
  padding: 0;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  margin-top: -5px;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
}

.location-filters-wrapper #distance_range_div input[type="range"]::-ms-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
}

.location-filters-wrapper #distance_range_div input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.location-filters-wrapper #distance_range_div input[type="range"]:focus {
  outline: none;
}

.location-filters-wrapper #distance_range_div input[type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #eaeaea;
  border-radius: 1.3px;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #eaeaea;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #eaeaea;
  border-radius: 1.3px;
}

.location-filters-wrapper #distance_range_div input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-ms-fill-lower {
  background: #eaeaea;
  border-radius: 2.6px;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]:focus::-ms-fill-lower {
  background: #eaeaea;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]::-ms-fill-upper {
  background: #eaeaea;
  border-radius: 2.6px;
}

.location-filters-wrapper
  #distance_range_div
  input[type="range"]:focus::-ms-fill-upper {
  background: #eaeaea;
}

.lp-show-on-mobile {
  display: none;
}

.location-filters-wrapper #distance_range_div #distance_c {
  position: relative;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #9f9f9f;
}

#msg_error {
  display: block;
}

.listing-second-view .claim-area a:last-child {
  display: none !important;
}

#lp-report-listing a {
  display: inline-block !important;
}

.listing-app-view .app-view-filters .listing-style-3 .input-group-addon {
  height: 36px;
}

.listing-app-view .app-view-filters .listing-style-3 .comboboxCategory {
  height: 36px;
  background: transparent;
  border: none;
}

.listing-app-view .app-view-filters .search-row .form-inline .form-group {
  padding-right: 0 !important;
}

.listing-app-view
  .app-view-filters
  .md-close.widget-map-click.app-filter-close-btn {
  margin-top: 10px;
  display: inline-block;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
}

.listing-app-view .app-view-filters .checkbox {
  margin-bottom: 5px;
  margin-top: 5px;
}

.grid_view2 .lp-grid-box-bottom {
  position: relative;
}

.grid_view2 .lp-grid-box-bottom .lp-nearest-distance {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.list_view .lp-grid-box-bottom .lp-nearest-distance,
.grid_view2 .lp-grid-box-bottom .lp-nearest-distance {
  background: #333;
  font-size: 13px;
  border-radius: 3px;
  color: #fff;
  padding: 3px 8px;
}

.list_view .lp-grid-box-bottom .lp-nearest-distance {
  position: absolute;
  transform: translate(55%, -50%);
  left: 55%;
  top: 50%;
  font-size: 13px;
}

.listing-app-view .lp-grid-box-bottom-app-view {
  position: relative;
}

.listing-app-view .grid_view .lp-grid-box-bottom-app-view .lp-nearest-distance {
  font-size: 12px;
  position: absolute;
  top: 4px;
  right: 0;
}

.listing-app-view .list_view .lp-grid-box-bottom-app-view .lp-nearest-distance {
  position: absolute;
  right: 0;
  bottom: 1px;
  font-size: 12px;
}

div.lp-top-notification-bar {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: #f9f9f9;
  z-index: 99999;
  padding: 20px 20px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #e3e3e3;
}

div.lp-top-notification-bar span {
  margin-right: 10px;
}

div#lp-tip-wraper ul li a {
  background-color: #f8f8f8;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  color: #9f9f9f;
  float: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 27px;
  padding: 3px 5px;
  box-shadow: none !important;
}

div#lp-tip-wraper ul li a.active {
  color: #fff;
  box-shadow: none !important;
}

.simptip-movable-wraper:after {
  background-color: #fff !important;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border: 1px solid #c7cdcf;
  font-size: 11px;
  padding: 3px 12px;
  color: #333 !important;
}

.simptip-movable-wraper:before {
  font-family: FontAwesome;
  content: "\f0d8";
  font-size: 20px;
  left: 25%;
  color: #333;
  z-index: 9999999;
  border: 0;
  margin-top: -20px !important;
}

.lp-filter-inner-wrapper .search-filters > ul > li {
  margin-right: 5px !important;
}

.currency-signs-wrapper ul li {
  display: inline-block;
}

.currency-signs-wrapper ul {
  padding: 0;
  margin: 0;
}

.popover.bottom {
  margin-top: 8px !important;
}

.lp-filter-inner-wrapper .search-row .form-inline .form-group {
  padding-right: 0 !important;
}

.padding-right-0 {
  padding-right: 0 !important;
}

.currency-signs-wrapper {
  margin: 20px 0;
}

.location-filters-wrapper {
  padding: 0 20px;
}

.popover {
  max-width: 100% !important;
}

.lp-reporting-error {
  color: red;
}

.lp-reporting-error .fa {
  color: red;
}

.lp-reporting-success,
.lp-reporting-success .fa {
  color: green;
}

#pac-container .error_box {
  position: absolute;
  left: 20px;
}

.lp-row-app {
  padding: 0 15px;
}

.app-view-filters .listing-style-3 .radio,
.app-view-filters .listing-style-3 .checkbox {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.lp-tooltip-div {
  opacity: 0;
  visibility: hidden;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 140%;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #c7cdcf;
  font-size: 11px;
}

.lp-tooltip-outer .location-filters-wrapper {
  padding: 0;
}

.lp-tooltip-outer:hover .lp-tooltip-div {
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 9999;
}

.lp-tooltip-div > .lp-tooltip-arrow,
.lp-tooltip-div > .lp-tooltip-arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.lp-tooltip-div > .lp-tooltip-arrow {
  border-bottom-color: rgba(0, 0, 0, 0.25);
  left: 0;
}

.lp-tooltip-div > .lp-tooltip-arrow {
  margin-left: 6px;
  top: -18px;
  border-width: 9px;
}

.lp-tooltip-div > .lp-tooltip-arrow:after {
  margin-left: -8px !important;
  top: -7px !important;
}

.lp-tooltip-div > .lp-tooltip-arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.lp-tooltip-div > .lp-tooltip-arrow:after {
  border-width: 8px !important;
}

.lp-tool-tip-content {
  max-width: 400px;
  padding: 10px;
}

.lp-tool-tip-content .currency-signs {
  width: 100% !important;
}

.lp-tool-tip-content {
  color: #9f9f9f;
}

.margin-0 {
  margin: 0 !important;
}

.search-filters > ul > li > a.active,
.search-filters > ul > li > a:focus,
div#lp-find-near-me ul li a.active,
div#lp-find-near-me ul li a:focus {
  box-shadow: none !important;
}

#distance_range_div_btn a {
  font-size: 13px;
  background: #333;
  color: #fff;
  border-radius: 3px;
  padding: 8px 10px;
  text-align: center;
  display: inline-block;
}

.listing-app-view
  .listing-app-view-bar
  .currency-signs
  > ul
  > li:first-child
  a {
  border-radius: 0 !important;
}

.listing-app-view
  .listing-app-view-bar
  .pricy-form-group
  #lp-find-near-me-outer
  ul
  > li
  > .lp-remove-border {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.listing-app-view .mm-listview > li > a i {
  margin-right: 0 !important;
  padding-right: 8px !important;
}

.lp-tool-tip-content p {
  line-height: 16px;
}

.lp-tooltip-outer .lp-tool-tip-content .location-filters-wrapper {
  padding: 7px 0;
  width: 300px;
  padding-top: 34px;
  padding-left: 6px;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul {
  padding: 0;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li a {
  display: inline-block;
  background-color: #f8f8f8;
  color: #9f9f9f;
  float: left;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  margin-right: 5px;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li a:hover {
  background-color: #f7fbfe;
  box-shadow: none;
  color: #333;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li:last-child a {
  margin-right: 0;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li .active {
  color: #fff;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer {
  width: 332px;
}

.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  max-width: 80%;
  font-size: 1.25rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
}

.no-js .inputfile + label {
  display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  margin-right: 0.25em;
}

.video-bottom-search-content h1,
.video-bottom-search-content h2,
.video-bottom-search-content h3,
.video-bottom-search-content h4,
.video-bottom-search-content h5,
.video-bottom-search-content h6 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 34px !important;
}

.blog-read-more-style2 a {
  border: 1px solid #333 !important;
  border-radius: 3px !important;
  padding: 6px 10px !important;
}

.blog-read-more-style2 a:hover {
  color: #fff;
}

.contact_center {
  width: auto !important;
  display: inline-block !important;
  float: none !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.lp-tooltip-div-hidden {
  opacity: 0;
  visibility: hidden;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 140%;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #c7cdcf;
  font-size: 11px;
}

.lp-tooltip-div-hidden > .lp-tooltip-arrow {
  margin-left: 6px;
  top: -18px;
  border-width: 9px;
}

.lp-tooltip-div-hidden > .lp-tooltip-arrow,
.lp-tooltip-div-hidden > .lp-tooltip-arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.lp-tooltip-div-hidden > .lp-tooltip-arrow {
  border-bottom-color: rgba(0, 0, 0, 0.25);
  left: 0;
}

.lp-tooltip-div-hidden > .lp-tooltip-arrow:after {
  border-width: 8px !important;
}

.lp-tooltip-div-hidden > .lp-tooltip-arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.lp-tooltip-div-hidden > .lp-tooltip-arrow:after {
  margin-left: -8px !important;
  top: -7px !important;
}

.lp-tooltip-div-hidden.active {
  opacity: 1 !important;
  visibility: visible !important;
  top: 100% !important;
  z-index: 9999;
}

.lp-tooltip-div.active {
  opacity: 1 !important;
  visibility: visible !important;
  top: 100% !important;
  z-index: 9999;
}

.lp-check-custom-wrapp .checkbox {
  margin-top: 0 !important;
}

.lp-check-custom-wrapp .checkbox label:before {
  top: 0 !important;
}

#recaptcha-securet,
#recaptcha-securet iframe {
  width: 100% !important;
}

#recaptcha-securet iframe .rc-anchor-light.rc-anchor-normal {
  width: auto !important;
}

#recaptcha-securet iframe .rc-anchor-normal .rc-anchor-checkbox-label,
#recaptcha-securet iframe .rc-anchor-normal .rc-anchor-content,
#recaptcha-securet iframe .rc-anchor-normal .rc-anchor-pt {
  width: auto !important;
}

.listing-app-view .app_search_header {
  display: none;
}

div.lp-filter-inner {
  z-index: 9999;
}

div.lp-features-filter {
  z-index: 99;
}

.lp-tooltip-div,
.lp-tooltip-div-hidden {
  top: 100% !important;
}

li.lp-tooltip-outer {
  cursor: pointer;
}

.termpolicy-wraper {
  padding-top: 20px !important;
  margin-right: 30px !important;
}

.listing-app-view.home {
  padding-bottom: 70px;
}

.submit_new_style .slider {
  position: absolute !important;
}

.submit_new_style #features-by-cat .form-group label {
  margin-right: 10px;
}

.app-view-ads .col-md-4,
.app-view-ads .col-md-6 {
  width: 100% !important;
}

.app-view-ads .lp-grid-box-thumb {
  width: 63px !important;
  height: 63px !important;
  overflow: hidden !important;
  display: inline-block !important;
  vertical-align: top !important;
  float: none !important;
  border-radius: 8px;
  margin-right: 5px;
}

.app-view-ads .lp-grid-box-description {
  float: none !important;
  width: 100% !important;
  vertical-align: top;
  padding: 0 !important;
}

.app-view-ads .lp-grid-desc-container {
  vertical-align: top !important;
  display: inline-block !important;
  width: calc(100% - 80px) !important;
}

.app-view-ads .list_view .lp-grid-box-description > ul > li a,
.app-view-ads .list_view .lp-grid-box-description > ul > li span {
  font-size: 12px;
}

.app-view-ads .lp-grid-box-description .lp-grid-box-left > ul > li.middle {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.app-view-ads .lp-grid-box-description .lp-grid-box-left > ul > li {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  line-height: 20px;
}

.app-view-ads .lp-grid-box-description .lp-grid-box-left > ul > li {
  padding-left: 0 !important;
  padding-right: 5px !important;
}

.app-view-ads .list_view .rate {
  border-radius: 2px;
  line-height: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  font-size: 11px !important;
  margin-top: 1px !important;
  width: 27px !important;
  text-align: center;
}

.app-view-ads .lp-grid-box-description h4.lp-h4 > a {
  font-size: 14px;
  line-height: 19px;
}

.app-view-ads .list_view .lp-grid-box-description h4 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.app-view-ads .status-btn {
  display: none !important;
}

.app-view-ads .lp-grid-box {
  padding: 10px !important;
  margin-bottom: 5px !important;
  padding-left: 10px !important;
}

.app-view-ads .list_view .lp-grid-box-left > ul > li:last-child {
  display: inline-block !important;
  float: left !important;
  text-align: left !important;
  width: 100% !important;
  border: 0;
}

.app-view-ads .list_view .lp-grid-box-left > ul > li:last-child span {
  margin-right: 0;
}

.app-view-ads .lp-grid-box-description h4.lp-h4 > a > .listing-pro {
  margin-top: 0 !important;
}

.app-view-ads .lp-grid-box-left ul {
  margin: 0 !important;
}

.app-view-ads .lp-grid-box-bottom-app-view {
  margin-top: 0 !important;
}

.app-view-ads .lp-grid-box-left .grid-view-hide .cat-icon {
  margin-left: 8px !important;
}

.listing-app-view
  .listing-second-view
  .post-meta-right-box
  .post-stat
  li
  .smenu
  li {
  line-height: inherit !important;
  border: 0 !important;
  padding: 0 !important;
}

.listing-app-view
  .listing-second-view
  .post-meta-right-box
  .post-stat
  li
  .smenu {
  padding: 10px !important;
}

.footer-app-menu ul li a .fa {
  display: block !important;
}

.footer-menu li a .fa {
  display: none !important;
}

.listing-app-view .lp-search-bar {
  margin-top: 0;
}

.lp-location-slider .slick-dots {
  position: static !important;
  bottom: 0 !important;
  margin: 0;
  margin-top: 30px;
}

.map-view-list-container2 .slick-dots {
  position: static !important;
  bottom: 0 !important;
  margin: 0;
  margin-top: 15px;
}

.listing-app-view .map-view-list-container2 .lp-grid-box-contianer {
  margin-bottom: 0;
}

.listing-app-view .map-view-list-container2 .slick-dots li,
.listing-app-view .lp-location-slider .slick-dots li {
  margin: 0;
  margin-right: 4px;
}

.listing-app-view .map-view-list-container2 .slick-dots li button:before,
.listing-app-view .lp-location-slider .slick-dots li button:before {
  width: auto !important;
  font-size: 10px !important;
  height: auto !important;
  line-height: 0;
}

.listing-app-view .grid_view .lp-grid-box-thumb div a:before {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  top: 0;
  content: "";
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.listing-app-view .grid_view.lp-grid-app-view .lp-grid-box-thumb .listing-pro {
  border: 1px solid #ebac2c;
  border-radius: 3px;
  background: #ebac2c;
  color: #fff;
  float: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-right: 0;
  margin-top: 0;
  padding: 0 3px 0 4px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.listing-app-view
  .grid_view.lp-grid-app-view
  .lp-grid-box-description
  .lp-h4
  > a
  .listing-pro {
  display: none !important;
}

.listing-app-view
  .grid_view.lp-grid-app-view
  .lp-grid-box-left.pull-left
  > ul
  > li:first-of-type {
  padding-right: 0;
}

.listing-app-view .listing-app-view2 .smenu:before,
.listing-app-view .listing-app-view2 .smenu:after {
  display: none !important;
}

.page-template-template-dashboard
  .app-view-header-container
  .lp-search-toggle
  a:first-child {
  display: none;
}

.listing-app-view .listing-with-map .search-filter a .fa {
  font-size: 24px;
}

.listing-app-view .app-view-filters .md-close i {
  font-size: 10px !important;
  height: 20px !important;
  line-height: 20px !important;
  width: 20px !important;
}

.blog-pagination a {
  color: #363f48;
  border: 1px solid #363f48;
  border-radius: 3px;
  padding: 6px 15px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.blog-pagination a:hover {
  color: #fff;
  background: #363f48;
}

.blog-single-inner-container .blog-meta {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.blog-social .post-stat li {
  display: inline-block !important;
  padding-left: 0;
  padding-right: 15px;
}

.blog-social .post-stat li:last-child {
  padding-right: 0;
}

.blog-social .post-stat .smenu {
  width: 290px !important;
  padding: 0 !important;
  top: -60px !important;
}

.dashboard-app-view-signout {
  color: #fff;
  margin-left: 4px;
  position: relative;
  top: -2px;
}

.post-detail-content-style2 {
  margin-bottom: 30px !important;
}

.lp-detail-page-template-3 .contact-form .author-img img {
  width: 60px;
  min-width: 60px;
  height: 60px;
}

.lp-listing-expire-tab-inner .edit-list {
  margin-right: 15px !important;
}

.listing-app-view
  .lp-active-compaign-outer
  .table-responsive.campaign
  .table.table-striped
  > tbody
  > tr
  > td {
  width: 100% !important;
  min-height: 41px;
  line-height: inherit;
  padding: 10px 15px;
}

.lp-checkout-page-outer .radio.radio-danger {
  float: none !important;
  background: #f9f9f9;
}

.lp-checkout-page-outer h5 {
  float: none !important;
  margin-top: 0 !important;
}

#listings_checkout .lp-user-listings .col-md-1 {
  width: 33px;
}

.lp-checkout-page-outer > .col-md-3 {
  height: 86px;
}

.lp-checkout-page-outer > .col-md-3 img {
  height: 86px;
}

.lp-checkout-page-outer .lp_price_trigger_checkout {
  margin-top: 100% !important;
}

.listing-app-view2 .post-meta-left-box .breadcrumbs {
  display: none;
}

.dashboard-content-app-view .packages .top-section h3 {
  text-align: left !important;
}

.dashboard-content-app-view .table-responsive.campaign .listing_pro {
  float: none !important;
  display: inline-block;
  line-height: 21px;
  margin-right: 10px;
  padding: 0 6px;
}

#lp-report-listing {
  border: 0 !important;
  padding-bottom: 0 !important;
}

.listing_list_view .addClassgridview .col-md-4.lp-grid-box-contianer {
  width: 100%;
}

.listing-app-view .contact-right {
  padding-top: 0 !important;
}

.listing-app-view .contact-right h3 {
  margin: 34px 0 !important;
}

.listing-app-view .pos-relative .lp-home-banner-contianer .lp-search-bar {
  margin-bottom: 0 !important;
}

.lp-compaign-outer .lp-promote-ad-image .lp-list-view-content-upper h4 {
  margin: 0 !important;
}

.slick-slider .md-overlay {
  display: none !important;
}

.listing-second-view .author-img {
  width: 60px !important;
  min-width: 60px;
  height: 60px;
  border: 1px solid #dedede;
  border-radius: 100%;
  overflow: hidden;
}

.lp-list-view-content-bottom-outer,
.lp-list-view-content-bottom-outer ul {
  width: auto !important;
}

.lp-list-view-content-bottom-outer {
  position: absolute !important;
  right: 10px !important;
  top: 10px !important;
}

.lp-list-view-content-bottom-expire-outer {
  position: absolute !important;
  right: 10px !important;
  top: 35px !important;
  width: auto !important;
}

.lpdoubltimes em {
  float: right;
  line-height: 20px;
  font-style: normal;
  font-size: 14px;
  color: #7f7f7f;
  clear: both;
  margin-bottom: 10px;
}

.listing-second-view .open-hours ul li:last-of-type em {
  margin-bottom: 0;
}

.hours-select.lp-slot2-time {
  display: none;
}

.app-view-filters .modal-dialog {
  position: absolute;
  top: 50% !important;
  transform: translate(0, -50%) !important;
  -ms-transform: translate(0, -50%) !important;
  -webkit-transform: translate(0, -50%) !important;
  margin: auto 5%;
  width: 90%;
  height: 83%;
}

.app-view-filters .modal-content {
  min-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.app-view-filters .modal-body {
  position: absolute;
  top: 64px;
  bottom: 45px;
  left: 0;
  right: 0;
  overflow-y: auto;
}

.app-view-filters .modal-footer {
  position: fixed;
  bottom: 0;
  background: #fff;
  z-index: 10;
  width: calc(100% - 2px);
  border-radius: 0 0 5px 5px;
}

.app-view-filters .modal-header {
  padding: 15px 25px;
  border-bottom: 1px solid #e5e5e5;
  z-index: 9999;
  background-color: #fff;
  z-index: 10;
  position: fixed;
  width: calc(100% - 2px);
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}

.app-view-filters form#searchform {
  padding: 0 !important;
}

.listing-app-view .lp-user-menu li a {
  padding: 1px 15px;
}

.description-box-all-listing {
  width: calc(100% - 5px) !important;
  background-color: #c49c5d !important;
}

.description-box-all-listing p {
  font-size: 15px !important;
}

.description-box-all-listing .count-text {
  font-weight: 700 !important;
}

#full-overlay.content-loading {
  opacity: 0.9 !important;
}

.lpsinglelocselected .fa {
  margin-left: 5px;
  color: #333;
}

.lpsinglelocselected .fa:hover {
  cursor: pointer;
}

.lpsinglelocselected {
  line-height: 30px;
  margin-right: 10px;
  display: inline-block;
  width: auto;
}

.page-template-template-favourites .grid_view {
  width: 50% !important;
}

.page-template-template-favourites section {
  padding-bottom: 70px;
}

.archive.listing-app-view .page-heading-inner-container h1 {
  font-size: 23px;
}

.listing-app-view .post-with-map-container-right .list_view.lp-grid-app-view {
  margin-bottom: 0 !important;
}

.listing-app-view .page-heading-inner-container h1 {
  font-size: 20px;
  margin-bottom: 0 !important;
  padding: 30px !important;
  line-height: 25px;
}

.listing-app-view .page-heading {
  height: auto !important;
}

.listing-app-view .breadcrumbs {
  display: none !important;
}

.listing-app-view .page-heading-inner-container {
  position: relative !important;
  transform: translateY(0) !important;
}

#lp-submit-form .lp-check-custom-wrapp .form-group label {
  width: 100%;
  margin-bottom: 10px;
}

#lp-submit-form .lp-check-custom-wrapp .form-group .radio-inline {
  padding-left: 0;
  margin-right: 20px;
}

.listing-app-view-bar #distance_range_div {
  margin-top: 0 !important;
}

.listing-app-view-bar .lp-price-range-btnn {
  display: block !important;
}

.listing-app-view2 .add-on-map {
  z-index: 1;
}

.sidebar-post .map-area .listing-detail-infos .widget-social.widget-box {
  padding-right: 30px;
  padding-left: 27px;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .widget-social
  ul.list-style-none.list-st-img
  > li
  a {
  padding: 0;
}

.list-st-img .lp-details-address a:hover,
.list-st-img .lp-details-address a:hover span {
  color: #7f7f7f !important;
}

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: 0 !important;
}

.ifram-reservation,
.hotel-menu {
  overflow: scroll;
}

.inner-menu {
  top: 0;
  transform: translate(-50%, 140px);
}

.inner-menu a.close-menu-popup {
  background: #fff;
}

.dashboard-content
  .lp-listingexpiredtab
  .lp-list-view-content-bottom
  .list-style-none.list-st-img {
  width: auto !important;
}

.lp-default-map-pin-img .lpmap-icon-contianer img {
  width: auto !important;
}

.lp-default-map-pin-img .lpmap-icon-contianer {
  background-color: transparent !important;
  width: 65px;
  height: 65px;
  border-color: transparent !important;
}

.pin.lp-default-map-pin-img {
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.lp-header-with-bigmenu .lp-menu-bar {
  background-color: #fff !important;
}

.lp-header-with-bigmenu .lp-add-listing-btn li a {
  border: 0 solid #d6d6d6;
  border-radius: 0;
  display: inline-block;
  font-size: 27px;
  padding: 0 36px;
}

.lp-header-with-bigmenu .lp-add-listing-btn li {
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  border-top: 0 solid #d6d6d6;
  border-bottom: 0 solid #d6d6d6;
  line-height: 96px;
}

.lp-header-with-bigmenu {
  border-bottom: 1px solid #d6d6d6;
}

.lp-header-with-bigmenu .lp-join-user-info li,
.lp-header-with-bigmenu .lp-add-listing-btn ul li,
.lp-header-with-bigmenu .lp-join-now {
  line-height: 94px;
}

.lp-header-with-bigmenu .lp-menu-bar {
  padding: 0 !important;
}

.lp-header-with-bigmenu .lp-menu-bar .lp-logo-container {
  padding: 0 15px;
}

.lp-header-with-bigmenu .lp-join-now.after-login span {
  margin-top: 32px;
}

.lp-header-with-bigmenu .icon-bar {
  background-color: #333;
}

.lp-header-with-bigmenu .lp-logo,
.lp-header-with-bigmenu .navbar {
  display: inline-block;
  vertical-align: middle;
}

.lp-header-with-bigmenu .navbar-inverse,
.lp-header-with-bigmenu .navbar-inverse:hover,
.lp-header-with-bigmenu .navbar-inverse:focus {
  background-color: transparent;
  border-color: transparent;
}

.lp-header-with-bigmenu .nav > li > a:hover,
.lp-header-with-bigmenu .nav > li > a:focus {
  background-color: transparent;
  border-color: transparent;
}

.lp-header-with-bigmenu .nav .open > a,
.lp-header-with-bigmenu .nav .open > a:hover,
.lp-header-with-bigmenu .nav .open > a:focus {
  background-color: transparent;
  border-color: transparent;
}

.lp-header-with-bigmenu .navbar {
  margin-bottom: 0;
  position: static;
}

.lp-header-with-bigmenu .dropdown-menu {
  border: 0;
  border-radius: 0;
}

.lp-header-with-bigmenu .lp-menu.menu {
  float: none;
}

.lp-header-with-bigmenu .nav-mega > li > a {
  padding-top: 15px;
  border-right: 1px solid #d6d6d6;
  line-height: 72px;
  padding-right: 30px;
}

.lp-header-with-bigmenu .nav-mega > li > a:hover,
.lp-header-with-bigmenu .nav-mega > li > a:focus {
  border-right: 1px solid #d6d6d6 !important;
}

.lp-header-with-bigmenu .lp-menu-bar .lp-logo-container {
  padding-left: 0;
}

.lp-banner-for-bottom-search {
  top: auto !important;
  bottom: 50px !important;
  transform: none !important;
}

.align-center {
  float: none;
  margin: 0 auto;
}

.lp-banner-for-bottom-search .lp-search-bar .form-group {
  background-color: transparent !important;
}

.lp-banner-for-bottom-search
  .lp-search-bar
  .form-group.lp-suggested-search.hide-where
  .pos-relative
  input {
  border-radius: 0 !important;
}

.lp-banner-for-bottom-search .form-group.lp-suggested-search input {
  border: 0 !important;
}

.lp-banner-for-bottom-search .lp-search-bar,
.lp-banner-for-bottom-search .lp-search-bar-right,
.lp-banner-for-bottom-search .lp-search-bar .lp-search-btn {
  border-radius: 35px;
}

.lp-banner-for-bottom-search .lp-search-bar {
  padding: 10px;
  background-color: rgba(162, 162, 162, 0.7);
  border: 1px solid #fff;
}

.lp-banner-for-bottom-search .lp-location-search .form-control {
  background-color: transparent !important;
  border: 0;
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input,
.lp-banner-for-bottom-search .lp-location-search {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input::-webkit-input-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input::-moz-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input:-ms-input-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-search-bar
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input:-moz-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-location-search
  .form-control::-webkit-input-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-location-search
  .form-control::-moz-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-location-search
  .form-control:-ms-input-placeholder {
  color: #fff;
}

.lp-banner-for-bottom-search
  .lp-location-search
  .form-control:-moz-placeholder {
  color: #fff;
}

.nav-mega {
  width: 100%;
}

.nav-mega .dropdown {
  position: static;
}

.nav-mega .dropdown-menu.mega-menu {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius-topleft: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  min-width: unset;
  width: 100%;
  margin-top: 0;
  padding: 0;
  border-color: #ccc;
}

.nav-mega .dropdown-menu.mega-menu > li {
  padding: 20px;
}

.nav-mega .dropdown-menu.mega-menu .media-list .media {
  padding: 10px;
  font-size: 13px;
}

.nav-mega .dropdown-menu.mega-menu .media-list .media-heading {
  font-size: 16px;
}

.lp-header-with-bigmenu .page-header-overlay {
  display: none !important;
}

.lp-category-icon-outer {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  position: absolute;
  top: 16px;
  right: 16px;
  text-align: center;
}

.lp-category-icon-outer a {
  display: block;
  height: 0;
  overflow-y: hidden;
}

.lp-category-icon-outer img,
.lp-category-icon-outer .cat-icon {
  width: 21px !important;
  height: 21px !important;
  line-height: 40px !important;
}

.lp-grid-style3-outer .lp-grid-desc-container,
.lp-grid-style3-outer .lp-grid-box-thumb-container,
.lp-grid-style3-outer .lp-grid-box-thumb img {
  border-radius: 0 !important;
}

.lp-add-to-fav-grid3 {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 20px;
  color: #fff;
  margin: 0 !important;
  padding: 0 !important;
}

.lp-add-to-fav-grid3 i {
  color: #fff !important;
  font-size: 20px !important;
}

.lp-grid-style3-outer [data-tooltip].simptip-position-top::before {
  border-top-color: #78cd2c !important;
}

.lp-grid-style3-outer .author-img {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid #fff;
  margin-top: -44px;
}

.author-img-outer {
  text-align: center;
  width: 70px;
  height: 70px;
}

.author-img-outer .listing-pro {
  position: absolute;
  background: #ebac2c;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 12px;
  border-radius: 35px;
  font-size: 14px;
}

.lp-grid-style3-outer .lp-grid-box-description h4 {
  margin-top: 20px;
  margin-bottom: 4px;
}

.list_view .lp-grid-style3-outer .lp-grid-box-description h4 {
  margin-top: 2px;
  margin-bottom: 5px;
}

.lp-grid3-category-outer {
  margin-bottom: 8px;
}

.lp-grid3-category-outer a {
  color: #7f7f7f;
  font-size: 14px;
}

.lp-grid-style3-outer .lp-grid-box-bottom {
  border-top: 0 !important;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.lp-grid-style3-outer .lp-grid-box-description {
  padding-bottom: 0 !important;
}

.lp-grid-style3-outer .lp-grid-box-left.pull-left > ul {
  margin-bottom: 6px;
}

.list_view .lp-grid3-phone {
  width: auto;
  min-width: unset !important;
  max-width: unset !important;
}

.list_view .lp-grid3-phone.lp-loop-phone-box {
  background: #fff !important;
  padding-top: 14px !important;
  line-height: 42px !important;
  width: 26% !important;
}

.about-box-style2 .about-box-inner {
  padding-bottom: 10px;
  padding-top: 0;
  border-radius: 0 !important;
}

.about-box-icon-style2 i {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  font-size: 34px;
  border: 1px solid #e3e3e3;
  border-radius: 100%;
  position: relative;
  left: 0;
  background-color: #fff;
  margin-top: -40px;
  margin-bottom: 10px;
}

.about-box-title-style2 h4 {
  text-transform: capitalize;
}

.lp-section-content-container-style3 .lp-blog-grid-box-thumb {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  overflow: hidden;
}

.lp-section-content-container-style3 .lp-blog-grid-title {
  padding: 0 10px 0 10px;
}

.lp-total-meta {
  margin-top: 18px;
}

.lp-total-meta li {
  display: inline-block;
  margin-right: 15px;
}

.lp-total-meta ul {
  list-style: none;
  padding: 0;
}

.lp-post-meta-right-box-style3 > .author-img {
  float: none;
  width: auto;
}

.lp-post-meta-right-box-style3 > .author-img img {
  width: 157px;
  min-width: 157px;
  height: 157px;
  border: 1px solid #dedede;
  border-radius: 100%;
}

.lp-post-meta-right-box-style3 .post-meta-left-box h1 {
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: 18px;
}

.lp-post-meta-right-box-style3 .post-stat li,
.lp-post-meta-right-box-style3 .post-stat {
  float: none !important;
}

.lp-post-meta-right-box-style3 .rating-section > .rate,
.lp-post-meta-right-box-style3 .rating-section > span {
  vertical-align: middle;
}

.lp-grid3-phone {
  font-size: 25px;
  color: #333;
}

.lp-grid-style3-outer .lp-grid3-phone {
  font-size: 14px;
  color: #7f7f7f;
  margin-right: 15px;
}

.lp-qoute-butn a {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #333;
  border-radius: 35px;
  line-height: 48px;
}

.lp-qoute-butn a:first-child,
.lp-qoute-butn a:hover {
  color: #fff;
}

.lp-qoute-butn a:last-child:hover {
  background-color: #333;
  border-color: #333;
}

.lp-qoute-butn a:last-child {
  margin-bottom: 0;
}

.lp-feature-row-outer .features {
  padding: 0;
}

.lp-feature-row-outer .features li ul li,
.lp-feature-row-outer .features li ul {
  border: 0 !important;
}

.lp-feature-row-outer .features li ul li {
  width: auto !important;
}

.lp-feature-row-outer .list-style-none span.post-rice span.text {
  float: none;
}

.lp-feature-row-outer .features li ul {
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

.lp-feature-row-outer .features li {
  padding: 0;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #dedede !important;
  border-right: 1px solid #dedede !important;
  border-top: 1px solid #dedede !important;
  line-height: 69px !important;
  background-color: #fff !important;
}

.lp-feature-row-outer .features > li:first-child {
  border-left: 1px solid #dedede !important;
}

.lp-feature-row-outer .features li a,
.lp-feature-row-outer li {
  font-size: 16px !important;
  color: #333;
  display: block;
  font-weight: 400;
}

.lp-feature-row-outer .features li img {
  width: 26px;
}

.lp-feature-row-outer .post-price-row > li span {
  font-size: 16px !important;
  color: #333;
  line-height: 24px;
}

.lp-feature-row-outer .price-range ul {
  display: inline-block;
  background: #fff;
  line-height: 70px;
  text-align: center;
  width: 25%;
  border: 1px solid #f4f4f4;
  border-top: 0;
}

.lp-feature-row-outer .price-range {
  line-height: 0 !important;
  text-align: center;
}

.lp-detail-page-template-style3 .post-meta-info {
  padding-bottom: 0;
}

.lp-feature-row-outer {
  position: relative;
  bottom: -35px;
}

.lp-single_listing-style3 {
  padding-top: 100px;
}

.pading-0 {
  padding: 0 !important;
}

.lp-right-content-box {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 129px);
}

.lp-right-content-box h3 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
}

.lp-left-title h2 {
  font-size: 28px;
  margin: 0;
  line-height: 30px;
  word-wrap: break-word;
}

.lp-right-content-box .extra-fields {
  border-radius: 0 !important;
  padding: 0 !important;
  border-bottom: 0;
}

.lp-right-content-box .extra-fields h3 {
  display: none;
}

.lp-right-content-box .extra-fields > ul > li strong {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  width: 22%;
  text-align: left;
  border-right: 1px solid #dadada;
}

.lp-right-content-box .extra-fields > ul > li:nth-child(even) {
  background: #f7f9fa;
}

.lp-right-content-box .extra-fields > ul > li {
  line-height: 50px;
  padding: 0 15px;
}

.lp-right-content-box .extra-fields > ul > li span {
  font-weight: 400;
  line-height: 50px;
  text-align: right;
  float: left;
  padding-left: 20px;
}

.lp-right-content-box .widget-box {
  margin-bottom: 0;
}

.lp-right-content-box .lp-social-box ul li {
  line-height: 50px;
  padding: 0 15px;
  border-bottom: 1px solid #e3e3e3;
}

.lp-right-content-box .extra-fields > ul > li:last-child {
  border-bottom: 0 !important;
}

.lp-right-content-box .lp-social-box ul li:last-child {
  border-bottom: 0;
}

.lp-right-content-box .lp-social-box ul li:nth-child(even) {
  background: #f7f9fa;
}

.lp-right-content-box .lp-social-box ul {
  padding: 0;
  margin: 0;
}

.lp-right-content-box .lp-social-box ul li strong {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  text-align: left;
}

.lp-right-content-box .lp-social-box {
  float: left;
  position: relative;
  width: 100%;
  border: 1px solid #dedede;
}

.lp-right-content-box .lp-social-box ul li span {
  font-weight: 400;
  line-height: 50px;
  text-align: right;
  font-size: 14px;
  padding-left: 20px;
}

.lp-right-content-box .lp-social-box ul li img,
.listing-second-view .features-listing > ul > li img {
  width: 23px;
  height: 23px;
  float: left;
  line-height: 50px;
  margin-right: 10px !important;
  margin-right: 10px;
  margin: 12px 0;
}

.lp-right-content-box .lp-social-box ul li a i {
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: #333;
  border-radius: 100%;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
}

.lp-right-content-box .lp-social-box .margin-left-20 {
  margin-left: 20px;
}

.lp-detail-page-template-3 .post-detail-content {
  border-radius: 0 !important;
}

.lp-detail-services-box {
  border: 1px solid #dedede;
  padding: 30px;
}

.lp-left-title {
  width: 128px;
}

.lp-detail-services-box ul li a {
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  color: #333 !important;
  border-radius: 35px;
  background-color: #e9e9e9 !important;
  padding: 13px 38px;
  display: inline-block;
  margin-right: 5px;
}

.lp-detail-services-box ul li a:hover {
  color: #fff !important;
}

.lp-detail-services-box ul li {
  display: inline-block;
}

.lp-detail-reviews-box .reviews-section,
.lp-detail-reviews-box .review-form {
  border-radius: 0;
}

.lp-detail-offers-box {
  border: 1px solid #dedede;
}

.lp-offer-user-img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: #dadada;
  position: relative;
  margin-bottom: -70px;
}

.lp-detail-offers-header {
  padding: 28px;
  padding-bottom: 0;
}

.lp-offer-user-img img {
  width: 150px;
  height: 150px;
  max-width: 150px;
  border-radius: 100%;
  border: 1px solid #dedede;
  overflow: hidden;
}

.lp-detail-offers-body {
  border-top: 1px solid #dedede;
  background-color: #f7f9fa;
}

.lp-detail-offers-content {
  padding: 0 15px;
  padding-top: 80px;
}

.lp-detail-offers-content h3 {
  margin-bottom: 0;
}

.lp-detail-offers-content p {
  margin-bottom: 15px;
}

.lp-detail-offers-content a {
  font-size: 16px;
  color: #fff;
  border-radius: 35px;
  display: inline-block;
  padding: 15px 71px;
}

.lp-offer-count p {
  color: #fff;
  line-height: 38px;
  font-weight: 700;
  margin: 0;
}

.lp-offer-count {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-70%);
  width: 38px;
  height: 38px;
  border-radius: 100%;
  text-align: center;
  line-height: 38px;
}

.lp-offer-expiry p {
  margin-bottom: 0;
}

.lp-offer-discount-box {
  background: #73cf42;
  padding: 20px;
}

.lp-offer-discount-box h3 {
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
}

.lp-offer-discount-box h4 {
  font-size: 18px;
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
  font-weight: 400;
}

.lp-offer-discount-box h2 {
  font-size: 35px;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}

.lp-offer-expiry {
  margin-top: 12px;
}

.lp-detail-page-template-3 .post-meta-info,
.lp-quote-form {
  background-color: #f7f9fa;
}

.lp-quote-user-img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 100%;
  background-color: #dadada;
  margin: 0 auto;
}

.lp-quote-user-img img {
  width: 150px;
  max-width: 150px;
  height: 150px;
  border-radius: 100%;
}

.lp-quote-form-container {
  border: 1px solid #dedede;
  background: #fff;
  padding: 30px;
}

.lp-quote-form-container label {
  color: #333;
}

.lp-quote-form-container h4 {
  font-size: 16px;
}

.lp-quote-checkboxs .checkbox label:before {
  top: 0 !important;
}

.lp-quote-checkboxs .checkbox label:before {
  background-color: #fff;
  border: 1px solid #333;
}

.lp-quote-checkboxs ul li {
  float: left;
  margin-right: 10px;
}

.lp-quote-checkboxs ul li:last-child {
  margin: 0;
}

.lp-quote-form-container
  .lp-select-event-planing
  .select2-container--default
  .select2-selection--multiple {
  border-radius: 35px;
}

.lp-quote-form-container
  .select2-container--default
  .select2-selection--multiple {
  border: 1px solid #e3e3e3;
  border-radius: 35px;
  height: 52px;
  line-height: 50px;
  padding: 0 20px;
}

.lp-quote-form-container input[type="text"] {
  height: 52px;
  border-radius: 35px;
}

.lp-quote-form-container .form-control {
  border-radius: 0;
}

.lp-quote-form-container .lp-spectial-offer-inner {
  background-color: #f7f9fa;
  border: 1px solid #e3e3e3;
  padding: 20px;
}

.lp-spectial-offer-inner h4,
.lp-spectial-offer-inner p {
  margin-bottom: 0;
  margin-top: 0;
}

.lp-spectial-offer-inner-radio-content,
.lp-spectial-offer-inner .radio {
  display: inline-block !important;
  vertical-align: middle;
}

.lp-spectial-offer-inner
  .lp-listing-form
  input[type="radio"]:checked
  + label:before {
  top: 2px;
}

.lp-spectial-offer-inner .lp-listing-form .radio.radio-danger {
  border: 1px solid #dedede;
  background-color: #fff;
}

.lp-quote-submit-btn {
  font-size: 16px;
  color: #fff;
  border-radius: 35px;
  display: inline-block;
  padding: 15px 50px;
  font-weight: 700;
}

.lp-left-filter {
  width: 20%;
  border-right: 1px solid #d6d6d6;
  background-color: #f7f9fa;
  height: calc(100% - 100px);
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
}

.lp-center-content {
  width: 50%;
  background-color: #fff;
}

.lp-right-map,
.lp-right-map .sidemap-container {
  width: 30%;
}

.listing-with-sidebar {
  padding-bottom: 0;
}

.lp-left-filter .header-filter.col-md-6 {
  width: 100%;
  border-right: 1px solid #d6d6d6;
}

.lp-left-filter
  .header-filter.form-group.pos-relative
  .form-inline.top-search-form {
  box-shadow: none !important;
}

.lp-left-filter .input-group.width-49-percent.margin-right-15 {
  width: 100%;
  border: 0 !important;
}

.lp-left-filter .filter-top-section {
  display: none;
}

.listing-with-sidebar .margin-top-subtract-35 {
  margin-top: 10px !important;
}

.lp-left-filter
  .input-group.width-49-percent.margin-right-15
  input.form-control {
  padding-left: 15px;
  border-radius: 35px;
  background-color: #fff !important;
  border: 1px solid #d6d6d6 !important;
  line-height: 23px;
}

.lp-left-filter
  .header-filter
  .input-group:first-child
  .input-group-addon.lp-border {
  display: none;
}

.lp-left-filter .input-group-addon {
  display: none;
}

.lp-left-filter
  .search-row
  #searchform
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  width: 100% !important;
  height: 46px !important;
}

.lp-left-filter .chosen-container-single .chosen-single {
  width: 100% !important;
  border: 1px solid #d6d6d6 !important;
  border-radius: 35px;
  height: 46px;
  line-height: 46px;
  padding-right: 15px !important;
}

.lp-left-filter .chosen-container-single {
  height: 46px;
}

.lp-left-filter .lp-search-cats-filter-dropdown .input-group {
  width: 100%;
}

.lp-left-filter .search-row .form-group.margin-right-0 {
  width: 100%;
  padding: 0 15px;
}

.lp-left-filter form #cities {
  padding-left: 15px;
  border-radius: 35px;
  border: 1px solid #d6d6d6 !important;
}

.lp-left-filter .header-filter .input-group.width-49-percent {
  border: none !important;
}

.lp-left-filter .header-filter .ui-widget {
  margin-top: 10px;
}

.lp-left-filter .header-filter .lp-search-icon {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjhFOTMyMDlGMzk1MTFFN0FBM0ZBQUFFRjI2OEQzOTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjhFOTMyMEFGMzk1MTFFN0FBM0ZBQUFFRjI2OEQzOTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOEU5MzIwN0YzOTUxMUU3QUEzRkFBQUVGMjY4RDM5OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOEU5MzIwOEYzOTUxMUU3QUEzRkFBQUVGMjY4RDM5OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkI6e7oAAAEdSURBVHjapJPBDcIwDEVDNugKXBigjFBGoCNw5QgjtEeOMEIZga7QAbiwQkcoNvxI1scNEliKolTu80/8vZimKXixOoWlbKWsh677PowhEwsGCeAg2xaQFAoZZB0FOGRBUNAAMhcKbAXW5kA32SpS8MC5JIVHhr1AuE6Db/pzzVegHC20lpxUKETsO5Ow8d4BCpKKwvzzBkklvc4S595WcaJFscBvGQ0k4F1mAxZIoEJEFHy1vyOSiiqXDAVJxWhNGvGwCVZJcs5HjQFdWBF/PAtsx0pkNdTd65whO+qEdq9HM0qjJIHUa707aw7MG5HCg0Vqb62GhJKR1KmH1joexpQdfPg5/V6H2KTOuNSzoG9BsPZnkIGp6stTgAEAvvp/eBwZEnsAAAAASUVORK5CYII=)
    no-repeat !important;
  left: 0;
  padding: 0;
  width: 30px;
  height: 46px;
}

.lp-left-filter
  .header-filter.form-group.pos-relative
  .lp-search-btn-header.pos-relative {
  width: 15%;
  float: none;
  z-index: 9999;
}

.lp-left-filter
  .header-filter.form-group.pos-relative
  .lp-search-btn-header.pos-relative
  .searchloading {
  left: 0 !important;
  margin-left: 0 !important;
  top: 7px !important;
  width: 32px !important;
  height: 32px !important;
}

.lp-left-filter .search-row .form-inline .form-group {
  width: 100%;
  text-align: center;
}

.lp-left-filter .search-filters > ul > li > a,
.lp-left-filter div#lp-find-near-me ul li a,
.lp-left-filter .search-filters .sortbyrated-outer ul li a {
  background-color: #8b8b8b;
  border: none;
  border-radius: 3px;
  color: #fff;
  float: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 27px;
  padding: 3px 15px;
  width: 100%;
  display: inline-block;
  border-radius: 35px;
  line-height: 30px;
}

.lp-left-filter .search-filters .sortbyrated-outer ul {
  padding: 0;
}

.lp-left-filter .search-filters .sortbyrated-outer ul li:first-child a {
  margin-top: 0;
}

.lp-left-filter .search-filters .sortbyrated-outer ul li a i {
  margin-right: 3px;
}

.lp-left-filter .search-filters .sortbyrated-outer ul li a {
  margin-top: 15px;
}

.lp-left-filter .lp-filter-inner-wrapper .search-filters > ul > li {
  width: 100%;
  position: relative;
}

.lp-left-filter .search-row .form-inline .form-group .input-group {
  text-align: left;
}

.lp-left-filter
  #searchform
  .tags-area.form-inline
  ul
  li
  .checkbox
  label::before {
  border: 1px solid #333;
  border-radius: 0;
}

.listing-with-sidebar .search-row .lp-features-filter {
  border-bottom: 0;
  background-color: transparent;
}

.lp-left-filter #searchform .tags-area.form-inline ul li .checkbox label {
  color: #333;
}

.listing-with-sidebar .search-row .lp-features-filter ul > li {
  width: 50%;
  margin: 0 !important;
  padding: 0;
}

.listing-with-sidebar .search-row .lp-features-filter ul > li .checkbox {
  margin-bottom: 10px !important;
}

.lp-left-filter h3 {
  text-transform: uppercase;
}

.lp-left-filter .header-filter.col-md-6 {
  border-right: 0;
}

.listing-with-map .lp-center-content .filter-top-section .listing-view-layout {
  margin-top: -7px;
  position: relative;
  right: 0;
}

.lp-left-filter .search-row .chosen-container .chosen-drop {
  z-index: 99999;
}

.lp-left-filter .currency-signs > ul > li {
  float: left;
  line-height: 39px;
  min-width: 37px;
  text-align: center;
  width: 25%;
  background: transparent;
}

.lp-left-filter .currency-signs > ul > li:first-child a {
  border-radius: 35px 0 0 35px;
}

.lp-left-filter .currency-signs > ul > li:last-of-type a {
  border-radius: 0 35px 35px 0;
}

.lp-left-filter .currency-signs > ul > li > a {
  background-color: #fff;
  color: #7f7f7f;
  font-weight: 700;
  line-height: 36px;
}

.lp-left-filter .currency-signs > ul > li > .active {
  color: #fff;
}

.lp-center-content .listing-view-layout > ul li a {
  width: auto;
  border: 0 !important;
  color: #7f7f7f;
  border-radius: 0 !important;
}

.lp-center-content .listing-view-layout > ul li a i {
  font-size: 18px;
}

.lp-center-content .grid_view2 .lp-grid-box-bottom {
  border-top: 0 !important;
}

.lp-grid-style3-outer-hide .author-img {
  width: 54px !important;
  height: 54px !important;
  margin-top: -22px !important;
}

.lp-grid-style3-outer-hide {
  width: 100%;
  display: inline-block;
  float: left;
}

.lp-grid-style3-outer-hide ul {
  margin-bottom: 0 !important;
  background: #f7f9fa;
  border-top: 1px solid #dadada;
}

.lp-grid-style3-outer-hide ul li {
  line-height: 56px;
  padding-left: 15px;
  background: #f7f9fa;
  border-right: 1px solid #dadada;
}

.lp-loop3-rating {
  background: #fff !important;
  padding-top: 14px;
  line-height: 42px !important;
  width: 190px;
}

.lp-grid-style3-outer-hide ul li:last-child {
  border-right: 0;
}

.lp-grid-style3-outer-hide .author-img-outer {
  text-align: center;
  width: 54px;
  height: 54px;
  position: absolute;
  z-index: 9999;
  left: 15px;
  margin-top: -15px;
}

.list_view .lp-grid-style3-outer .lp-grid-box-description .author-img-outer,
.list_view .lp-grid-style3-outer .lp-grid-box-bottom {
  display: none;
}

.lp-grid-style3-outer-hide span.rate {
  color: #fff !important;
}

.lp-grid-style3-outer-hide .list-style-none span {
  font-weight: 400;
  color: #7f7f7f;
}

.list_view .lp-grid-style3-outer .lp-grid-box-description .lp-grid-box-left ul,
.list_view .lp-grid-style3-outer .lp-grid-box-thumb .lp-category-icon-outer,
.grid_view2 .lp-grid-style3-outer .description-container {
  display: none;
}

.grid_view2 .lp-grid-style3-outer .lp-h4 .listing-pro,
.grid_view2 .lp-grid3-category-outer span.cat-icon,
.grid_view2 .lp-grid-style3-outer .description-container,
.lp-grid-style3-outer-hide {
  display: none;
}

.list_view .lp-grid-style3-outer-hide,
.list_view .lp-grid-style3-outer .description-container {
  display: block;
}

.grid_view2 .lp-grid-style3-outer .lp-h4 .listing-pro {
  border-radius: 35px;
  color: #ebac2c;
  margin-top: 3px;
  padding: 0 10px;
  vertical-align: middle;
  line-height: 16px;
}

.list_view .lp-grid-style3-outer .lp-h4 .listing-pro {
  display: block;
}

.list_view .lp-grid3-category-outer span.cat-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
}

.list_view .lp-grid3-category-outer span.cat-icon img {
  width: 21px !important;
  height: 21px !important;
  line-height: 40px !important;
  vertical-align: middle;
}

.list_view .lp-grid-style3-outer .lp-grid-box-description {
  padding-top: 14px;
}

.list_view .lp-grid3-category-outer {
  margin-top: 10px;
  margin-bottom: 10px;
}

.listing-with-map .lp-center-content .filter-top-section {
  margin-top: 30px;
}

.lp-detail-page-template-style3 .widget-video iframe {
  width: 100%;
  height: 566px;
}

.lp-left-filter .lp-tooltip-outer:hover .lp-tooltip-div {
  z-index: 1;
}

.lp-left-filter .lp-tooltip-outer-responsive,
.lp-left-filter .lp-tooltip-div {
  width: 100%;
}

.lp-left-filter a.open-map-view {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  opacity: 1;
}

.lp-left-filter .chosen-with-drop .chosen-single {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.lp-left-filter .header-filter .ui-widget {
  position: relative;
}

.lp-left-filter .select2-container--default .select2-selection--single {
  border: 1px solid #dadada;
  border-radius: 35px;
  background: #fff;
}

.lp-left-filter .header-filter .select2-container .select2-selection--single {
  padding-left: 8px;
}

.lp-left-filter
  .header-filter
  .select2-container.select2-container--default.select2-container--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.lp-left-filter form #cities {
  position: relative;
}

.lp-left-filter
  .search-row
  .border-dropdown
  .chosen-container-single
  .chosen-single
  span:after {
  right: 0 !important;
  color: #333;
}

.lp-left-filter
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #333 transparent transparent transparent;
}

.list_view .lp-grid-style3-outer .hide-img {
  width: 190px;
  height: 146px;
}

.list_view .lp-grid-style3-outer .lp-grid-box-thumb-container {
  width: 190px !important;
  margin-right: 5px;
}

.listing-category-slider4 .slick-prev::before {
  content: "\f104" !important;
  color: #333 !important;
}

.listing-category-slider4 .slick-next::before {
  content: "\f105" !important;
  color: #333 !important;
}

.listing-category-slider4 .slick-prev::before,
.listing-category-slider4 .slick-next::before {
  border-radius: 0 !important;
  background-color: transparent !important;
  width: auto !important;
  height: auto !important;
  font-size: 30px !important;
  line-height: initial !important;
  box-shadow: none !important;
}

.lp-cat-style4 .category-style3-title-outer {
  background: none !important;
  width: 100%;
  text-transform: capitalize;
}

.lp-cat-style4 .city-thumb2 {
  border-radius: 0 !important;
}

.lp-cat-style4 .city-thumb2 .lp-cat-image-outer:after {
  position: absolute;
  content: "";
  width: calc(100% - 14px);
  height: 100%;
  left: 7px;
  top: 0;
  background-color: rgba(77, 77, 77, 0.5);
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.lp-cat-style4:hover .city-thumb2 .lp-cat-image-outer:after {
  background-color: rgba(77, 77, 77, 0);
}

.aliceblue .lp-section-content-container-style3 .lp-blog-grid-box-description {
  background: none !important;
}

.aliceblue .lp-section-content-container-style3 .lp-blog-grid-box-thumb {
  margin: 0 auto !important;
}

.listing_list_view
  .lp-grid-style3-outer
  .lp-grid-box-description
  .author-img-outer,
.listing_list_view .lp-grid-style3-outer .lp-grid-box-bottom {
  display: none;
}

.listing_list_view .col-md-4.lp-grid-box-contianer {
  width: 100%;
}

.listing_list_view .grid_view2 .lp-grid-style3-outer .lp-h4 .listing-pro,
.listing_list_view .grid_view2 .lp-grid3-category-outer span.cat-icon,
.listing_list_view .grid_view2 .lp-grid-style3-outer .description-container,
.listing_list_view .lp-grid-style3-outer-hide {
  display: block;
}

.listing_list_view
  .grid_view2
  .lp-grid-style3-outer
  .lp-grid-box-description
  .lp-grid-box-left
  ul {
  display: none;
}

.lp-banner-for-bottom-search
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  background-color: transparent !important;
}

.lp-banner-for-bottom-search
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  color: #fff;
}

.lp-cat-style4 .city-thumb2 img {
  min-height: 150px;
  max-width: calc(100% - 14px);
}

.lp-cat-style4 .city-thumb2 .lp-cat-image-outer .overlay-link:after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  background-color: rgba(77, 77, 77, 0.6);
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.lp-cat-style4:hover .city-thumb2 .lp-cat-image-outer .overlay-link:after {
  background-color: rgba(77, 77, 77, 0);
}

.lp-header-with-bigmenu .page-header-overlay {
  display: none !important;
}

.post-with-map-container-right
  #searchform
  .chosen-container-single
  .chosen-single,
.fullwidth-header .header-filter .chosen-container-single .chosen-single {
  padding-right: 8px;
}

.lp-header-with-bigmenu .lp-add-listing-btn li > a {
  line-height: 94px;
}

.lp-banner-for-bottom-search
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  margin-top: 0 !important;
}

.lp-explore-more-text .lp-quote-submit-btn:hover {
  color: #fff !important;
}

.lp-content-box2-title {
  font-size: 25px;
}

.about-gallery-style2 .image-popup {
  border-radius: 0;
}

.about-gallery-style2 .about-gallery-box {
  margin-bottom: 0;
}

.lp-blog-style3 .lp-blog-grid-box-description {
  margin-bottom: 0;
}

.listing-second-view
  .lp-right-content-box
  .ui-accordion-header.ui-state-default.ui-accordion-icons.ui-accordion-header-active.ui-state-active.ui-corner-top {
  border-radius: 0 !important;
  -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.17);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.17);
}

.lp-left-filter
  .header-filter
  .top-search-form
  .chosen-container-single
  .chosen-single {
  padding: 0 15px 0 20px !important;
  border-radius: 35px;
}

.lp-header-full-width.lp-header-with-bigmenu .fullwidth-header {
  padding-right: 15px;
}

.lp-header-full-width.lp-header-with-bigmenu
  .fullwidth-header
  .lp-add-listing-btn
  li {
  border-right: 0;
}

.lp-center-content {
  position: absolute;
  left: 20%;
}

.lp-first-pull-left {
  border-right: 1px solid #dadada;
  width: 22%;
}

.listing-second-view
  .lp-single_listing-style3
  .features-listing
  > ul.hidding-timings {
  display: block;
  padding: 0;
}

.lp-fields-for-details5 .lp-first-pull-left strong {
  width: auto !important;
  border-right: 0 !important;
}

.detail-page3-tab-content .tab-content > .active {
  display: inline-block;
  width: 100%;
}

.detail-page3-tab-content .slick-prev:before,
.detail-page3-tab-content .slick-next:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 32px;
  background-color: #fff;
  color: #acacac;
  opacity: 1;
  -webkit-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, 0.66);
  -moz-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, 0.66);
  box-shadow: 0 1px 14px 0 rgba(0, 0, 0, 0.66);
}

.detail-page3-tab-content .slick-prev:before {
  content: "\f104";
}

.detail-page3-tab-content .slick-next:before {
  content: "\f105";
}

.listing-second-view .detail-page3-tab-content .slick-prev {
  left: 20px;
}

.listing-second-view .detail-page3-tab-content .slick-next {
  right: 20px;
}

.listing-second-view .detail-page3-tab-content .slick-prev,
.listing-second-view .detail-page3-tab-content .slick-next {
  height: 52px;
  width: 52px;
}

.lp-left-filter .lp-tooltip-div {
  display: none;
}

.lp-left-filter .search-filters-sortby .lp-tooltip-div {
  display: block;
}

.lp-quote-form-container
  .select2-container
  .select2-search--inline
  .select2-search__field {
  margin-top: 0;
}

.lp-single_listing-style3 .features-listing .show-all-timings {
  display: none;
}

.lp-single_listing-style3 {
  padding-bottom: 0;
}

.stickynavbar #nav_bar {
  border: 0;
  background-color: #fff;
  border-radius: 0;
  margin-bottom: 0;
  margin-top: 10px;
}

.stickynavbar #nav_bar ul li {
  display: inline-block;
}

.stickynavbar #nav_bar ul li a {
  color: #333;
  font-size: 15px;
  margin-right: 40px;
}

.profile-sticky-bar {
  top: 0;
  bottom: inherit;
  z-index: 100;
  position: fixed;
  width: 100%;
  z-index: 99999;
  background-color: #fff;
  display: none;
  padding: 24px;
  box-shadow: 0 0 30px 0 rgba(61, 70, 77, 0.06);
}

.stickynavbar #nav_bar ul {
  margin: 0;
  padding: 0;
}

.stickynavbar #nav_bar,
.lp-stickynavbar-buttons {
  display: inline-block;
}

.lp-stickynavbar-buttons #freeQuoteForm {
  padding: 0 50px;
  line-height: 41px;
  font-size: 15px;
}

.listing-second-view .profile-sticky-bar .author-img {
  display: inline-block;
  width: 42px;
  height: 42px;
  float: none;
}

.listing-second-view .profile-sticky-bar .author-img img {
  width: 42px;
  min-width: 42px;
  height: 42px;
}

.lp-stickynavbar-buttons {
  margin-right: 20px;
}

.lp-bigmenu-header-search .hide-where,
.lp-bigmenu-header-search .hide-what {
  width: 70% !important;
}

.lp-sticky-user-name {
  display: inline-block;
  margin-right: 5px;
}

.lp-bigmenu-header-search
  .hide-search.form-group.pos-relative
  .lp-search-btn-header.pos-relative {
  position: relative !important;
  float: left;
  width: 32px;
}

.lp-bigmenu-header-search
  .header-filter
  .input-group:first-child
  .input-group-addon.lp-border {
  z-index: 999;
}

.lp-bigmenu-header-search .top-search-form .searchloading {
  top: 7px !important;
  left: 0% !important;
}

.lp-grid-style3-outer .lp-grid-box-bottom .pull-left a {
  line-height: 22px;
}

.lp-new-social-widget li i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 100%;
  font-size: 16px;
  color: #fff;
}

.lp-new-social-widget li:last-child {
  margin-right: 0;
}

.lp-new-social-widget li {
  margin-right: 10px;
}

.lp-main-cate-name {
  margin-top: 60px;
  margin-bottom: 36px;
}

.lp-explore-more-text.text-center {
  margin-top: 60px;
}

.lp-header-full-width.lp-header-with-bigmenu .hide-where {
  border: 0 solid #333333 !important;
}

.dashboard-content
  #draft
  .lp-list-view-content-bottom
  .list-style-none.list-st-img {
  margin-right: 10px !important;
}

.lp-list-view-inner-contianer .col-md-5.col-xs-12.padding-0 {
  background-color: transparent !important;
}

.dashboard-content .lp-list-view-content-bottom .list-style-none.list-st-img {
  width: auto !important;
}

.lp-list-view-content-bottom-expire-outer {
  top: 18px !important;
}

#menu-partypro-category-menu {
  padding: 0 20px;
}

#menu-partypro-category-menu > li > a {
  color: #333;
  font-weight: 700;
  font-size: 20px;
}

#menu-partypro-category-menu > li > a img {
  width: 28px;
  height: auto;
  margin-right: 7px;
}

#menu-partypro-category-menu > li ul {
  margin-top: 5px;
}

#menu-partypro-category-menu > li ul li {
  display: inline-block;
  margin: 0 1px;
}

#menu-partypro-category-menu > li ul li:after {
  content: ",";
  display: inline-block;
}

#menu-partypro-category-menu > li ul li a {
  color: #858585;
}

#menu-partypro-category-menu > li ul li:last-child:before {
  display: none;
}

#menu-partypro-category-menu > li ul li a:hover {
  text-decoration: underline;
}

.lp-mega-menu-outer {
  margin-right: -15px;
  margin-left: -15px;
  border-top: solid 1px #ccc;
  margin-top: 20px;
}

.lp-bigmenu-header-search {
  width: 650px;
  padding-top: 25px;
}

.lp-bigmenu-header-search .border-dropdown span:after {
  right: 5px;
}

.lp-bigmenu-header-search .header-filter {
  width: 100%;
}

.lp-bigmenu-header-search
  .header-filter
  .input-group.width-49-percent.margin-right-15 {
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  width: 46%;
}

.lp-bigmenu-header-search .header-filter .input-group.width-49-percent {
  margin-left: 7px;
  border-left: none;
  border-right: none;
  border-top: none;
}

.lp-bigmenu-header-search
  .header-filter
  .input-group:first-child
  .input-group-addon.lp-border {
  padding-left: 0;
  text-align: left;
}

.lp-bigmenu-header-search .header-filter .input-group-addon.lp-border {
  padding-left: 0 !important;
  text-align: left;
}

.lp-bigmenu-header-search .header-filter .lp-search-icon {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjhFOTMyMDlGMzk1MTFFN0FBM0ZBQUFFRjI2OEQzOTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjhFOTMyMEFGMzk1MTFFN0FBM0ZBQUFFRjI2OEQzOTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOEU5MzIwN0YzOTUxMUU3QUEzRkFBQUVGMjY4RDM5OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOEU5MzIwOEYzOTUxMUU3QUEzRkFBQUVGMjY4RDM5OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkI6e7oAAAEdSURBVHjapJPBDcIwDEVDNugKXBigjFBGoCNw5QgjtEeOMEIZga7QAbiwQkcoNvxI1scNEliKolTu80/8vZimKXixOoWlbKWsh677PowhEwsGCeAg2xaQFAoZZB0FOGRBUNAAMhcKbAXW5kA32SpS8MC5JIVHhr1AuE6Db/pzzVegHC20lpxUKETsO5Ow8d4BCpKKwvzzBkklvc4S595WcaJFscBvGQ0k4F1mAxZIoEJEFHy1vyOSiiqXDAVJxWhNGvGwCVZJcs5HjQFdWBF/PAtsx0pkNdTd65whO+qEdq9HM0qjJIHUa707aw7MG5HCg0Vqb62GhJKR1KmH1joexpQdfPg5/V6H2KTOuNSzoG9BsPZnkIGp6stTgAEAvvp/eBwZEnsAAAAASUVORK5CYII=)
    no-repeat !important;
  padding: 0 10px;
  margin-top: 0;
}

.lp-banner-for-bottom-search
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  background-color: transparent !important;
}

.lp-banner-for-bottom-search
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  color: #fff;
}

.lp-right-content-box .lp-listing-faq {
  padding: 0 !important;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 1px solid #c1c1c1 !important;
}

.listing-second-view .rating-symbol:hover::before {
  display: none;
}

.lp-multi-rating-ui-wrap p {
  margin-bottom: 0;
  display: inline-block;
  color: #797979;
  text-align: left !important;
  font-size: 13px;
  margin-right: 10px;
  padding-left: 15px;
  width: 50%;
}

.lp-multi-rating-ui-wrap .form-review-stars {
  margin-bottom: 0;
  margin-top: 25px;
  text-align: left;
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.lp-multi-rating-ui-wrap .form-review-stars span.label-start {
  position: absolute;
  bottom: -15px;
  left: 0;
  font-size: 12px;
  display: none;
}

.lp-multi-rating-ui-wrap .form-review-stars span.label-end {
  position: absolute;
  bottom: -15px;
  left: 70px;
  font-size: 12px;
  display: none;
}

.lp-multi-rating-ui-wrap .submit-images {
  float: none;
  text-align: left;
}

.lp-multi-star-wrap {
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 0 9px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 9px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 9px -3px rgba(0, 0, 0, 0.75);
  padding: 6px 20px;
  padding-bottom: 16px;
  width: 165px;
  left: -125px;
  top: 32px;
  z-index: 10;
  display: none;
  border-radius: 3px;
}

.lp-multi-star-wrap .lp-multi-star-field {
  margin-bottom: 4px;
  position: relative;
}

.lp-multi-star-wrap .lp-multi-star-field:last-child {
  margin-bottom: 0;
}

.lp-multi-star-wrap .lp-multi-star-field p i {
  width: 20px;
  height: 20px;
  border: 0 solid;
  line-height: 24px !important;
  text-align: center;
  font-size: 16px;
}

.lp-multi-star-wrap .lp-multi-star-field p i.fa-star {
  color: #73cf42;
}

.lp-multi-star-wrap label {
  font-weight: 400;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0;
  font-size: 12px;
  width: 60px;
}

.lp-multi-star-wrap p {
  margin-bottom: 0;
  display: inline-block;
  border: 1px solid;
  padding: 0 4px;
  border: 1px solid #dedede;
  line-height: 20px;
}

.lp-multi-star-wrap span {
  font-size: 12px;
  position: absolute;
  bottom: -12px;
  display: none;
}

.lp-listingexpiredtab input.lp-pay-publish-btn {
  padding-left: 15px !important;
}

.lp-multi-star-wrap span.lp-multi-star-label-end {
  left: 96px;
}

.review-post .lp-multi-star-wrap i {
  font-size: 27px;
  color: #ccc;
}

.review-post .lp-multi-star-wrap i.fa-star {
  color: #73cf42;
}

.open-multi-rate-box {
  top: 1px;
  color: #797979;
  font-size: 12px;
  float: left;
  margin-right: 10px;
}

.lp-listing-stars {
  float: right;
}

.open-multi-rate-box:hover {
  color: #797979;
}

.open-multi-rate-box .fa {
  font-size: 11px;
  margin-right: 5px;
}

.listing-second-view .reviews-section span.rate {
  width: 50px;
}

.listingpro-venderds h3,
.listingpro-venderds p {
  color: #fff;
  margin: 0;
}

.listingpro-venderds h3 {
  font-size: 60px;
}

.listingpro-venderds p {
  font-size: 25px;
}

div.lp-drop-menu {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  margin-left: -16px;
  max-height: 0;
  opacity: 0;
  position: absolute;
  padding-top: 20px;
  padding-bottom: 20px;
  right: 0;
  top: 100%;
  transform: scale(0);
  transform-origin: 10% top 0;
  z-index: 99999999;
  width: 200px;
  -webkit-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -moz-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -ms-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  -o-transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
  transition: max-height 0s linear 0.15s,
    opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s,
    transform 0.15s cubic-bezier(0.1, 1.26, 0.83, 1) 0s;
}

.lp-add-listing-btn ul li:hover .lp-drop-menu {
  top: 100%;
  opacity: 1;
  max-height: unset;
  transform: scale(1);
}

/*.lp_hide_general_plans {*/

/*display: none*/

/*}*/

.lp-paidclaimcontainer {
  width: 556px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.paidclaimpopupcontainer {
  position: absolute !important;
  top: 0;
  left: 0;
  padding: 47px;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 0;
  padding-bottom: 25px;
  width: 100%;
}

.lp_add_more_filter {
  display: block;
  position: relative;
}

.lp_add_more_filter a {
  background: #363f48;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp_add_more_filter i {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.lp_add_more_filter a:hover {
  background: #2458ff;
}

.lp_more_filter_tooltip_outer {
  width: 90px;
  display: block;
  visibility: hidden;
  position: absolute;
  border-radius: 6px;
  background-color: #fff;
  border: none;
  z-index: 999;
  top: -40px;
  left: -25px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#lp_more_filter_tooltip {
  font-size: 11px;
  text-align: center;
  padding: 5px 10px;
  display: block;
  padding: 10px;
  border-radius: 5px;
}

#lp_more_filter_tooltip_arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
}

#lp_more_filter_tooltip_arrow::after {
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  position: absolute;
  bottom: 1px;
  left: -8px;
}

.outer_all_page_overflow {
  display: none;
  width: 60.4%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 0;
  z-index: 999;
}

.lp_all_page_overflow {
  display: block;
  width: 655px;
  padding: 0 10px 50px 10px;
  overflow-y: auto;
  border-radius: 5px;
  border: 1px solid #dedede;
  background-color: #fff;
  margin: 0 auto;
}

.lp_more_filter_data_section {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
}

.listing-simple .outer_all_page_overflow {
  width: 100%;
  left: 0;
  border: 0 solid #dedede;
  border-radius: 0;
  min-height: 445px;
  height: auto;
}

.listing-simple .outer_filter_show_result_cancel {
  width: 85%;
  left: 7.5%;
  border: 1px solid #dedede;
  border-radius: 5px;
}

.lp_more_filter_data_section h2 {
  font-size: 18px;
  margin: 0 0 20px 0;
}

.lp_more_filter_data_section h3 {
  font-size: 16px;
  margin: 0 0 0 0;
}

.filter_data_switch_on_off {
  display: inline-block;
  width: 100%;
}

.filter_data_switch_on_off li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.filter_data_switch_on_off li:last-child {
  margin-bottom: 0;
}

.lp_filter_data_heading_text {
  display: inline-block;
  margin-right: 20px;
}

.lp_filter_data_heading_text h3 {
  margin: 0;
  font-size: 16px;
}

.lp_filter_data_heading_text p {
  margin: 0;
}

.lp_filter_button_switch {
  display: inline-block;
  float: right;
  margin-top: 10px;
}

.lp_filter_button_switch a.switch-fields::before {
  height: 25px;
  width: 50px;
  background: #f8f8f8;
  border: 1px solid #eaeaea;
}

.lp_filter_button_switch a.switch-fields.active::before {
  background: #42a7df;
  border: 1px solid #42a7df;
}

.lp_filter_button_switch a.switch-fields::after {
  width: 25px;
  height: 25px;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  color: #9f9f9f;
  line-height: 25px;
  text-align: center;
  font-weight: 400;
  border: 1px solid #eaeaea;
}

.lp_filter_button_switch a.switch-fields.active::after {
  left: 25px;
  content: "\f00d";
  color: #42a7df;
  border: 1px solid #42a7df;
}

.lp_filter_checkbox {
  display: block;
}

.lp_filter_checkbox li {
  display: inline-block;
  width: 33.33%;
  float: left;
  margin-top: 15px;
}

.filter_checkbox_container {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.filter_checkbox_checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 25px;
  text-align: center;
  width: 25px;
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 2px;
}

.filter_checkbox_container input:checked ~ .filter_checkbox_checkmark {
  background: #2458ff;
  border-radius: 2px;
  border: 1px solid #2458ff;
}

.filter_checkbox_container input:checked ~ .filter_checkbox_checkmark::after {
  left: 0;
  position: absolute;
}

.filter_checkbox_container .filter_checkbox_checkmark::after {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  color: #fff;
  text-align: center;
  left: 0;
  right: 0;
  line-height: 24px !important;
}

.lp-lp-more-filters-outer.lp-filter_data_checkbox li {
  margin-top: 5px !important;
}

.filter_radiobox_container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  line-height: 27px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter_radiobox_container input {
  position: absolute;
  visibility: hidden;
}

.filter_radio_select {
  position: absolute;
  top: 2px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
}

.filter_radiobox_container input:checked ~ .filter_radio_select {
  border: 1px solid #42a7df;
}

.filter_radio_select::after {
  content: "";
  position: absolute;
  display: none;
}

.filter_radiobox_container input:checked ~ .filter_radio_select::after {
  display: block;
}

.filter_radiobox_container .filter_radio_select::after {
  top: 2px;
  left: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #2458ff;
}

.outer_filter_show_result_cancel {
  display: inline-block;
  width: 59%;
  background: #fff;
  padding: 10px 5px;
  position: fixed;
  bottom: 0;
  left: 0;
}

.filter_show_result_cancel {
  display: inline-block;
  float: right;
}

#filter_cancel_all {
  color: #333;
  font-size: 16px;
  cursor: pointer;
}

#filter_cancel_all:hover {
  text-decoration: underline;
}

#filter_result {
  background: #42a7df;
  color: #fff;
  padding: 7.5px 24px;
  border-radius: 5px;
  margin-left: 15px;
  font-size: 14px;
}

#content-grids .text-center p {
  margin-bottom: 0;
}

#content-grids .text-center p a {
  display: block;
  width: 134px;
  margin: 10px auto 0;
  background: #363f48;
  color: #fff;
  border-radius: 5px;
  padding: 4.5px 0;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#content-grids .text-center p a:hover {
  background: #41a6df;
}

.overlay_on_map_for_filter {
  display: none;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  width: 100%;
  height: 1000px;
  z-index: 999;
  right: 0;
}

.tax-listing-category .page-heading {
  display: block !important;
}

/* .city-autocomplete {
    display: none!important
} */

.city-autocomplete.heree {
  display: block !important;
}

.lp-menu-bar-color .city-autocomplete {
  top: 46px !important;
}

.lp-dashboard-tabs .panel-heading {
  padding: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #e9ebf2;
}

.lp-dashboard-tabs {
  border: 0;
  box-shadow: none;
  margin-top: 30px;
  background-color: transparent;
}

.lp-dashboard-tabs .panel-heading .nav-tabs li a {
  color: #3f576e;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 22px;
  margin-right: 30px;
  padding-top: 0;
}

.lp-dashboard-tabs .panel-heading {
  margin-bottom: 30px;
}

.lp-dashboard-tabs .panel-body {
  border-radius: 5px;
  background-color: #fff;
  padding: 0;
}

.lp-dashboard-tabs .tab-content {
  padding: 15px 0;
}

.lp-dashboard-tabs .panel-heading .nav-tabs li a:hover {
  color: #007fd4;
}

.lp-dashboard-tabs .panel-heading .nav-tabs > li > a:after {
  display: none;
}

.lp-dashboard-tabs .panel-heading .nav-tabs li a,
.lp-dashboard-tabs .panel-heading .nav-tabs li a:hover,
.lp-dashboard-tabs .panel-heading .nav-tabs li a:focus {
  background-color: transparent;
}

.lp-dashboard-tabs .panel-heading .nav-tabs a {
  border-bottom: 2px solid transparent;
}

.lp-dashboard-tabs .panel-heading .nav-tabs .active a {
  color: #007fd4;
  border-bottom: 2px solid #007fd0;
}

.lp-dashboard-tabs .lp-main-title {
  background: #eef2f4;
  color: #8697a8;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 5px 5px 0 0;
  padding: 0 20px;
  font-weight: 700;
}

.lp-dashboard-tabs .lp-main-title p {
  margin: 0;
  color: #8697a8;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
}

.lp-image-container {
  width: 62px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f9f9f9;
  overflow: hidden;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

.lp-left-content-container {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 88px);
}

.lp-left-content-container a {
  display: inline-block;
  line-height: 24px;
  color: #44566c;
  width: 100%;
}

.lp-left-content-container a img {
  width: 17px;
}

.lp-left-content-container a:first-child {
  font-weight: 500;
}

.lp-left-content-container a:last-child {
  font-weight: 400;
  font-size: 12px;
}

.lp-dashboard-new .tab-pane.fade {
  padding-right: 0;
  font-size: 15px;
}

.lp-listing-expire-section p {
  color: #44566c;
  margin: 0;
  line-height: 50px;
}

.lp-status-container p {
  color: #44566c;
  margin: 0;
  line-height: 50px;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  vertical-align: middle;
  margin-top: -2px;
}

.lp-status-container span img {
  width: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.lp-listing-pay-button {
  color: #fff;
  background: #73d500;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 10px;
  margin-right: 10px;
}

.lp-listing-pay-button:hover,
.lp-listing-pay-button:focus {
  color: #fff;
}

.lp-listing-pay-button span {
  color: #fff;
  margin-right: 4px;
}

.lp-dot-extra-buttons {
  width: 36px;
  height: 36px;
  position: relative;
  text-align: center;
  line-height: 32px;
  background: #fafbfb;
  border-radius: 100%;
  margin-top: 6px;
}

.lp-dot-extra-buttons:hover {
  cursor: pointer;
}

.lp-dot-extra-buttons .lp-user-menu {
  width: 90px;
  max-height: 200px;
}

.lp-dot-extra-buttons .list-style-none.main {
  max-height: 200px;
  opacity: 1 !important;
  width: 100px !important;
  transform: scale(1) !important;
  transition-delay: 0.2s !important;
  transition-duration: 0s, 0.2s, 0.2s !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  right: -80% !important;
  margin-top: 10px;
  border: 1px solid #e9ebf2;
}

.lp-dot-extra-buttons .lp-user-menu:after {
  top: -10px;
  right: 38px;
}

.lp-dot-extra-buttons .list-style-none li a,
.lp-dot-extra-buttons .list-style-none li a span {
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  color: #3f576e !important;
  font-family: "Open Sans","Open Sans Fallback";
}

.lp-dot-extra-buttons .list-style-none li:hover {
  border-radius: 0 !important;
  box-shadow: none;
  border-color: #222 !important;
}

.lp-dot-extra-buttons .list-style-none li:hover a {
  border-radius: 0 !important;
  box-shadow: none;
  border-color: #222 !important;
}

.lp-dot-extra-buttons .list-style-none li a .fa {
  margin-right: 5px;
  width: 12px;
  font-size: 12px;
  line-height: 20px;
}

.page-template-template-dashboard .lp-dot-extra-buttons .main {
  display: block !important;
}

.lp-listing-outer-container {
  border-bottom: 1px solid #e9ebf2;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.lp-listing-outer-container:last-child {
  border-bottom: 0 solid #e9ebf2;
  padding-bottom: 0;
  margin-bottom: 0;
}

.lp-status-container .fa-check {
  color: #73d500;
  background-color: #fafbfb;
  width: 22px;
  text-align: center;
  line-height: 22px;
  border-radius: 100%;
  font-size: 12px;
  font-weight: 400;
  margin-right: 4px;
}

#lp-listings .tab-content {
  padding-left: 0;
  padding-right: 0;
}

.lp-ad-click-outer #reply-title.active i.fa-angle-down::before {
  content: "\f106";
}

.lp-general-section-title {
  font-size: 12px;
}

p.lp-general-section-title {
  margin: 0;
  color: #8697a8;
  font-size: 12px;
  background: #eef2f4;
  color: #8697a8;
  padding: 4px 20px;
  text-transform: uppercase;
  line-height: 24px !important;
}

p.lp-general-section-title .fa {
  text-align: right;
  float: right;
  line-height: inherit;
  font-size: 15px;
  display: none;
}

.lp-ad-details-outer {
  padding: 40px;
}

.lp-total-clicks {
  width: 182px;
  height: 182px;
  border: 5px solid #aae252;
  border-radius: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.lp-total-clicks h4 {
  margin: 0;
  color: #3f576e;
  font-size: 30px;
  margin-bottom: 6px;
}

.lp-total-clicks h5 {
  margin: 0;
  color: #8697a8;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.lp-total-clicks-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lp-ad-details-outer p {
  margin-bottom: 0;
  margin-top: 15px;
  text-align: center;
  font-size: 15px;
  color: #44566c;
}

.lp-ad-all-stats li {
  text-align: center;
  width: 50%;
  float: left;
  padding: 15px 0;
  line-height: 50px;
  border-top: dotted 2px #d7dee7;
  border-right: dotted 2px #d7dee7;
}

.lp-ad-all-stats li:last-child,
.lp-ad-all-stats li:nth-child(2) {
  border-right: dotted 0 #d7dee7;
}

.lp-ad-all-stats li p {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 400;
  color: #3f576e;
  margin: 0;
}

.lp-ad-all-stats li h4 {
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
  color: #3f576e;
}

.lp-ad-all-stats li h4 small {
  font-size: 9px;
  text-transform: capitalize;
  font-weight: 700;
}

.lp-ad-all-alerts li h4 {
  font-size: 13px;
  margin: 0;
  font-weight: 500;
  color: #3f576e;
}

.lp-ad-all-alerts li h5 {
  font-size: 13px;
  margin: 0;
  font-weight: 400;
  color: #8697a8;
}

.lp-star-rating {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 11px;
  -webkit-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  margin-right: 10px;
  margin-top: 5px;
}

.lp-star-rating span {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 auto;
  border-radius: 100%;
}

.lp-one-star span {
  background: #ff4a7a;
}

.lp-three-star span {
  background: #f7d700;
}

.lp-rating-content {
  display: inline-block;
  vertical-align: top;
}

.lp-ad-all-alerts li {
  border-bottom: 1px solid #e9ebf2;
  padding: 25px 20px;
}

#lp-new-invoices .lp-main-title {
  padding: 0 10px;
}

.lp-invoice-number input[type="radio"]:checked + label::before {
  background-color: #999;
  height: 18px;
  width: 18px;
}

.lp-invoice-number input[type="radio"]:checked + label:before {
  background-color: #41a6df;
  border: medium none;
  color: #7f7f7f;
  content: "";
  height: 0;
  left: 23px;
  top: 50%;
  width: 18px;
  transform: translateY(-50%);
}

.lp-invoice-number input[type="radio"] {
  opacity: 0;
}

.lp-invoice-number .radio.radio-danger {
  width: 16px;
  height: 16px;
  border: 1px solid #eaeced;
  display: inline-block;
  margin-top: 5px;
  margin-right: 10px;
  float: left;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #f9f9f9;
}

.lp-invoice-number.lp-listing-form .radio.radio-danger {
  left: 0;
  margin-top: 0;
  top: 10px;
  margin-bottom: 0;
}

.lp-invoice-number p,
.lp-invoice-number .radio.radio-danger {
  display: inline-block;
  vertical-align: top;
}

.lp-invoice-number p {
  margin-bottom: 0;
  color: #44566c;
  font-size: 13px;
  text-transform: capitalize;
  line-height: 36px;
  font-weight: 600;
}

.lp-invoice-number.lp-listing-form input[type="radio"]:checked + label::before {
  background-color: #0093ff;
  height: 8px;
  width: 8px;
}

.lp-invoice-number.lp-listing-form label {
  margin: 0;
}

.lp-invoice-date p,
.lp-invoice-price p {
  margin-bottom: 0;
  color: #44566c;
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  line-height: 36px;
  margin-right: 15px;
}

@media only screen and (max-width: 1114px) {
  .lp-invoice-price a {
    padding: 0 10px;
  }
}

.lp-invoice-price a {
  color: #44566c;
  text-transform: uppercase;
  display: inline-block;
  float: right;
  font-size: 12px;
  padding: 0 25px;
  border-radius: 5px;
  font-weight: 500;
  line-height: 36px;
}

.lp-invoices-all-stats {
  padding: 25px;
}

.lp-invoices-all-stats li h5 {
  font-size: 13px;
  text-transform: uppercase;
  color: #44566c;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
}

.lp-invoices-all-stats li:last-child h5 {
  margin-bottom: 0;
}

.lp-invoices-all-stats li h5 span {
  color: #8697a8;
  font-weight: 500;
  float: right;
}

.lp-invoices-all-stats li a,
.lp-pdf-btn a {
  color: #44566c;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  background-color: #e7edf3;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
}

.lp-invoices-all-stats li a .fa,
.lp-pdf-btn a .fa {
  margin-right: 15px;
}

.lp-pdf-btn {
  position: absolute;
  bottom: 15px;
  left: 35px;
  width: calc(100% - 50px);
}

.lp-invoices-all-stats li a:hover,
.lp-invoices-all-stats li a:focus,
.lp-pdf-btn a:hover,
.lp-pdf-btn a:focus {
  color: #fff;
  background-color: #333;
}

.lp-plane-btn a {
  color: #333;
  width: 100px;
  text-align: center;
  padding: 0 25px;
  margin-top: 1px;
  line-height: 36px;
}

.lp-invoice-number
  .radio-inactiveplane
  input[type="radio"]:checked
  + label:before {
  background-color: transparent;
}

.lp-new-packages input[type="radio"]:hover {
  cursor: none;
}

.lp-packages-wisget-area .lp-general-section-title-outer {
  min-height: 800px;
}

.user-meta-image {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fafbfb;
}

.user-meta-image img {
  width: 100%;
}

.user-meta-image a {
  display: block;
}

.lp-user-meta li {
  float: left;
  margin-right: 15px;
}

.lp-user-meta li:last-child {
  margin-right: 0;
}

.lp-user-meta {
  margin-top: 5px;
}

.lp-user-meta li > p {
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
  color: #44566c;
  font-weight: 600;
}

.lp-user-header {
  border-bottom: 1px solid #e9ebf2;
  background: #fff;
  min-height: 56px;
  padding: 11px 10px;
  padding-right: 25px;
}

.lp-user-header-details {
  position: relative;
}

.lp-user-header-details .list-style-none.main {
  width: 150px !important;
  right: 0% !important;
}

.lp-user-header-details .list-style-none li {
  float: none;
  margin: 0;
}

.lp-user-header-details .lp-user-menu:after {
  top: -10px;
  right: 0;
}

.lp-user-header-details {
  width: auto;
  height: auto;
  line-height: 0;
  margin: 0;
  margin-top: 3px;
  background-color: transparent;
}

.lp-user-header-details > a .fa {
  font-size: 18px;
}

.lp-all-reviews-outer {
  padding-left: 30px;
  padding-right: 30px;
}

.lp-all-reviews-outer .panel-body {
}

.lp-all-reviews-outer .tab-content {
  padding: 0 0;
}

.lp-review-sorting h5 {
  color: #44566c;
  font-size: 18px;
  font-weight: 500 !important;
}

#lp-announcement-form .lp-review-sorting h5 {
  font-weight: 600;
}

.lp-review-sorting {
  margin-bottom: 0;
  padding: 10px 30px;
  background: #fafbfb;
  overflow: hidden;
}

.lp-review-sorting .form-control {
  background: transparent;
  color: #44566c;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #dce0e2;
}

.lp-review-detail-container {
  border-top: 1px solid #dce0e2;
  padding: 15px 0;
}

.lp-reviewer-image {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #fff;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.lp-reviewer-info {
  display: inline-block;
  vertical-align: middle;
}

.lp-reviewer-info h4,
.lp-reviewer-info h5 {
  margin: 0;
  font-size: 14px;
  color: #44566c;
}

.lp-reviewer-info h5 {
  font-weight: 400;
}

.lp-report-reviewer a {
  font-size: 14px;
  color: #44566c;
  text-transform: capitalize;
  font-weight: 500;
  margin-right: 30px;
}

.lp-review-count p {
  color: #8697a8;
  font-size: 12px;
  margin-bottom: 0;
}

.lp-review-count p i {
  color: #fd0;
}

.lp-review-count p span:first-child {
  margin-right: 10px;
}

.lp-review-details {
  padding-left: 51px;
  margin-top: 20px;
  margin-right: 30px;
}

.lp-review-des {
  color: #44566c;
  font-size: 14px;
}

.lp-revies-timing {
  margin-left: 10px;
}

.lp-reviewr-images li {
  width: 62px;
  height: 46px;
  background-color: #fff;
  overflow: hidden;
  float: left;
  margin-right: 7px;
  border-radius: 5px;
}

.lp-reviewr-images {
  margin-bottom: 26px;
}

.lp-reviewr-images li:last-child {
  margin-right: 0;
}

.lp-reviewr-images li img {
  width: 100%;
}

.lp-owner-reply-outer {
  background-color: #eef2f4;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.lp-owner-image {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #fff;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.lp-owner-image img {
  width: 100%;
}

.lp-owner-reply {
  vertical-align: top;
  display: inline-block;
  width: calc(100% - 52px);
}

.lp-owner-reply h4 {
  margin-top: 0;
  color: #44566c;
  font-size: 16px;
}

.lp-owner-reply p {
  margin-bottom: 0;
  color: #44566c;
  font-size: 15px;
}

.lp-public-reply-btn a {
  display: inline-block;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  color: #3f576e;
  background-color: #e7edf3;
  padding: 0 30px;
  line-height: 37px;
}

.lp-public-reply-btn a:hover,
.lp-public-reply-btn a:focus {
  color: #fff;
  background-color: #333;
}

.lp-review-reply-btn {
  float: right;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  background-color: #0093ff;
  padding: 0 30px;
  line-height: 37px;
}

.lp-reviews-inner-container .post_response {
  float: none;
}

.lp-read-messages {
  background-color: #fafbfb;
}

.lp-message-title {
  background-color: #eef2f4;
  padding: 15px 30px;
  padding-right: 10px;
}

.lp-message-title h3 {
  margin: 0;
  color: #44566c;
  font-size: 16px;
  font-weight: 500;
}

.lp-read-message-inner h5 {
  margin-top: 0;
  margin-bottom: 6px;
  color: #44566c;
  font-size: 14px;
  font-weight: 500;
}

.lp-read-message-inner p {
  margin: 0;
  color: #44566c;
  font-size: 10px;
  text-transform: uppercase;
}

.lp-inbox-date {
  float: right;
}

.lp-read-message-inner {
  padding: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ebf2;
}

.lp-read-message-inner:last-child {
  border-bottom: 0;
}

.lp-dashboard-new .panel-default > .panel-heading,
.lp-unread-messages {
  background-color: transparent;
}

.lp-dashboard-new #inbox {
  min-height: 900px;
}

#inbox .lp-inbox-outer {
  border-left: 1px solid #e9ebf2;
  min-height: 900px;
}

.lpQest-img-outer {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 80px;
}

.lpQest {
  display: inline-block;
  vertical-align: top;
}

.lpQest-img-outer {
  margin-right: 20px;
}

.lpQest-image {
  width: 33px;
  height: 33px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fff;
  margin: 0 auto;
}

.lpQest-image img {
  width: 100%;
}

.lpQest-img-outer p {
  margin: 0;
  color: #44566c;
  font-size: 10px;
  text-transform: capitalize;
  text-align: center;
}

.lpQest {
  padding: 35px 40px;
  background: rgb(104, 146, 192);
  background: linear-gradient(
    90deg,
    rgba(104, 146, 192, 1) 18%,
    rgba(142, 181, 221, 1) 42%
  );
  width: calc(100% - 54px);
  border-top-left-radius: 0 !important;
  border-radius: 5px;
  border: 1px solid #dedede;
}

.lpQest p {
  color: #fff;
  margin: 0;
}

.lpQest-outer.lpreplyQest-outer .lpQest p {
  color: #1f1f1f !important;
}

.lpQestdate p {
  color: #8697a8;
  font-size: 10px;
  text-align: right;
}

.lpreplyQest-outer .lpQestdate p {
  text-align: left;
}

.lpreplyQest-outer .lpQest {
  margin-right: 20px;
}

.lpreplyQest-outer .lpQest-img-outer {
  margin-right: 0;
}

.lpQest-outer {
  margin-bottom: 20px;
}

.lp_replylead {
  resize: none;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #e9ebf2;
  min-height: 100px;
}

.lppRocesesp {
  color: #44566c;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  padding: 0 30px;
  border-radius: 5px;
  font-weight: 500;
  line-height: 37px;
  box-shadow: none;
  border: 0;
  color: #fff;
  background-color: #42a7df;
  float: right;
  margin: 20px 0;
  margin-bottom: 25px;
}

.lppRocesesp:hover,
.lppRocesesp:focus {
  box-shadow: none;
  border: 0;
  color: #fff;
}

.lpQest .lp-sec-div {
  top: -1px;
  left: -21px;
  right: auto;
  position: absolute;
  border: 11px solid #dedede;
  border-bottom-color: transparent !important;
  border-top-color: #dedede;
  z-index: 9;
}

.lpQest > div {
  top: 0;
  left: -18px;
  position: absolute;
  border: 10px solid #eef2f5;
  border-left-color: transparent !important;
  border-bottom-color: transparent !important;
  z-index: 10;
  display: none;
}

.lpQest {
  position: relative;
  margin-top: 2px;
}

.lpreplyQest-outer .lpQest .lp-sec-div {
  top: -1px;
  left: auto;
  right: -21px;
  position: absolute;
  border: 11px solid #dedede;
  border-left-color: #dedede !important;
  border-bottom-color: transparent !important;
  border-top-color: #dedede;
  border-right-color: transparent;
  z-index: 9;
}

.lpreplyQest-outer .lpQest > div {
  top: 0;
  left: auto;
  right: -18px;
  position: absolute;
  border: 10px solid #d9ecfb;
  border-left-color: #d9ecfb !important;
  border-bottom-color: transparent !important;
  border-top-color: #d9ecfb;
  border-right-color: transparent;
  z-index: 10;
}

.lpreplyQest-outer .lpQest {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 0;
  width: -webkit-calc(100% - 65px);
  width: -moz-calc(100% - 65px);
  width: calc(100% - 65px);
  margin-right: 25px;
  background: rgb(208, 218, 220);
  background: linear-gradient(
    90deg,
    rgba(208, 218, 220, 1) 0%,
    rgba(217, 221, 215, 1) 100%
  );
  border: 1px solid #dedede;
}

.lpsinglemsgbox .lpsinglemsgbox-inner {
  margin-top: 15px;
}

.lp-read-message-inner.active {
  position: relative;
}

.lp-read-message-inner.active:after {
  width: 3px;
  height: 100%;
  right: 0;
  top: 0;
  content: "";
  position: absolute;
  background-color: blue;
}

#inbox .lp-ad-click-outer {
  box-shadow: none !important;
  min-height: unset;
}

#inbox .lp-invoices-all-stats li h5 {
  text-transform: inherit;
}

.lp-sender-image {
  width: 99px;
  height: 99px;
  line-height: 99px;
  border-radius: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fafbfb;
}

.lp-sender-info h6 {
  color: #3f576e;
  margin-bottom: 0;
  text-transform: capitalize;
}

.lp-sender-info p {
  color: #6e8256;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  background-color: #d6eeb9;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
}

.lp-sender-info {
  padding: 35px 10px;
}

#inbox .lp-invoices-all-stats {
  min-height: unset;
}

.lp-coupons-form-inner label {
  color: #000 !important;
  margin-bottom: 15px;
  line-height: 15px;
}

.lp-coupons-form-inner .form-control {
  border: 1px solid #dce0e2;
}

.lp-coupons-form-inner .form-group {
  margin-bottom: 0 !important;
}

.lp-coupons-form-inner textarea {
  height: 70px;
}

.lp-coupons-form-inner .jFiler-input-dragDrop {
  padding: 34px 25px;
  border: 0;
}

.lp-coupns-form .lp-review-sorting h5 {
  font-weight: 600 !important;
}

.lp-coupon-box-row {
  margin-bottom: 14px;
  background-color: #fff;
  border: 1px solid #dedede;
  padding: 15px !important;
  border-radius: 5px;
}

.lp-coupon-box-row p {
  font-size: 13px;
  color: #9b9b9b;
  margin-bottom: 0;
}

.lp-coupon-box-row .select2-container--default .select2-selection--single {
  border: 1px solid #dedede;
}

.lp-coupon-box-row .select2-container .select2-selection--single {
  height: 46px;
}

.lp-coupon-box-row
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered,
.lp-coupon-box-row
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  color: #818181 !important;
  line-height: 46px !important;
  height: 46px;
  font-size: 13px;
}

.lp-coupns-btns {
  height: 37px;
  box-shadow: none;
  border: 0;
  background-color: #e7edf3;
  color: #3f576e;
  border-radius: 5px;
  margin-right: 5px;
  width: 150px;
  text-transform: uppercase;
  font-weight: 500;
}

.lp-coupns-btns:hover {
  color: #3f576e;
  background-color: #e7edf3 !important;
}

.lp-coupns-btns:last-child {
  margin-right: 0;
}

.lp-coupns-form .lp-invoices-all-stats li h5 {
  text-transform: capitalize;
  font-weight: 400;
}

.lp-invoices-all-stats-on-off .slider {
  position: absolute !important;
  background-color: #e7edf3;
}

.lp-invoices-all-stats-on-off .switch {
  display: inline-block;
  height: 18px;
  position: relative;
  width: 40px;
  margin-top: -3px;
  margin-bottom: 0;
  float: right;
}

.lp-invoices-all-stats-on-off .slider:before {
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 2px;
}

.lp-invoices-all-stats-on-off input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
}

.lp-deal-title p {
  margin-top: 8px;
  color: #44566c;
  margin-bottom: 0;
  font-size: 13px;
}

.lp-coupns-form .lp-listing-outer-container {
  padding: 0 20px;
  padding-bottom: 15px;
}

.lp-coupns-form .lp-listing-outer-container:last-child {
  padding-bottom: 0 !important;
}

.lp-coupon-code-section p {
  color: #44566c;
  border: 1px dotted #b8b8b8;
  background-color: #fffbcb;
  display: inline-block;
  margin: 0;
  font-size: 13px;
  border-radius: 25px;
  padding: 0 20px;
  text-transform: uppercase;
}

.lp-coupon-outer-container .lp-listing-expire-section p {
  margin-top: 10px;
  line-height: inherit;
  font-size: 13px;
}

.lp-coupon-outer-container .lp-listing-pay-button {
  color: #818181;
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 0;
  margin-right: -5px;
  line-height: 32px;
  width: 92px;
  padding: 0;
  padding-left: 20px;
}

.lp-coupon-outer-container .lp-cuopon-expired-btn a {
  background: #b3c0ce;
}

.lp-coupon-outer-container .lp-dot-extra-buttons {
  margin-top: 3px;
}

.lp-coupon-code-section {
  margin-top: 6px;
}

.lp-stats-sorting-outer h4 {
  color: #44566c;
}

.lp_stats_duration_filter li {
  float: left;
}

.lp_stats_duration_filter {
  border: 1px solid #f0f1f2;
  border-radius: 5px;
}

.lp_stats_duration_filter li button:hover {
  background: #b3c0ce;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #b3c0ce;
}

.lp_stats_duration_filter li button {
  color: #44566c;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 6px 18px;
  font-size: 14px;
  border: 1px solid transparent;
  font-weight: 500;
}

.lp-stats-sorting-outer {
  margin-bottom: 10px;
}

.lp-dashboard-new .count-box.active {
  background: #fff !important;
  border-radius: 2px 2px 0 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.lp-dashboard-new .count-box.active p,
.lp-dashboard-new .count-box.active p span {
  color: #8697a8 !important;
}

.lp-dashboard-new .count-box.active .dash-right-area {
  padding: 0;
}

.lp-dashboard-new .count-box.active .dash-right-area h3 p.views {
  color: #3f576e;
}

.lp-dashboard-new .count-box.active .icon-area {
  display: none;
}

.lpstats {
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 2px 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 2px 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 2px 9px -5px rgba(0, 0, 0, 0.75);
  margin-left: -1px;
}

rect {
  fill: rgb(232, 237, 242);
}

rect:hover {
  fill: rgb(140, 211, 26);
}

.lp-activity-image {
  float: left;
  width: 57px;
  height: 52px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.lp-activity-user-img {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 2px;
}

.lp-activity-user-img img {
  width: 100%;
  border-radius: 50%;
}

.lp-activity-image .fa {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #fafbfb;
  color: #4a5b6d;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
}

.lp-new-activity-inner {
  background-color: #fff;
  padding: 13px 20px;
  border-bottom: 1px solid #e9ebf2;
}

.lp-new-activity-inner:last-child {
  border-bottom: 0;
}

.lp-new-activity-outer {
  overflow: hidden;
  border-radius: 0 0 5px 5px;
}

.lp-new-activity-container .section-title {
}

.lp-new-activity-container {
  border: 1px solid #fafbfb;
  border-top: 0;
}

.lp-activity-content {
  float: left;
  width: calc(100% - 62px);
  display: inline-block;
  vertical-align: middle;
}

.lp-activity-content span {
  color: #8996a6;
  font-size: 14px;
  margin-top: 18px;
  display: inline-block;
}

.lp-activity-content a {
  color: #44566c;
  font-weight: 600;
  font-size: 12px;
}

.lp-new-activity-date {
  float: right;
}

.lp-new-activity-date p {
  color: #8996a6;
  font-size: 14px;
  margin: 0;
  text-align: right;
}

.lp-more-activity-btn button {
  background-color: transparent;
  box-shadow: none;
  border: 0;
  text-transform: capitalize;
  font-size: 12px;
  padding: 10px 20px;
  color: #44566c;
  font-weight: 500;
}

.lp-add-new-btn {
  float: right;
  color: #fff;
  text-transform: uppercase;
  box-shadow: none;
  border: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 37px;
  padding: 0 25px;
  border-radius: 5px;
  margin-top: -5px !important;
  margin-left: 10px;
}

.lp-add-new-btn span {
  color: #fff;
  margin-right: 5px;
}

#lp-menus .lp-dot-extra-buttons {
  margin-top: 0;
}

.lp-menu-type p {
  margin: 0;
  margin-top: 4px;
  font-size: 13px;
  background: #ececec;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100%;
  font-weight: 600;
  color: #9b9b9b;
}

.lp-menu-container-outer .lp-invoice-number p {
  text-transform: capitalize;
}

.lp-add-menu-outer h5 {
  color: #3f576e;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 18px;
  margin-top: 0;
  font-weight: 600;
}

#lp-menus .lp-dashboard-tabs {
  padding-left: 30px;
}

.lp-menu-right-outer {
  background-color: #fff;
  -webkit-box-shadow: -1px 2px 8px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 2px 8px -3px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 2px 8px -3px rgba(0, 0, 0, 0.75);
  max-height: 2000px;
}

.lp-listing-selecter {
  border-radius: 5px;
  padding-top: 10px;
}

.lp-listing-selecter-content h5 {
  font-size: 15px;
  color: #000;
  margin-bottom: 0;
}

.lp-listing-selecter-content p {
  color: #000;
  font-size: 13px;
  margin-bottom: 0;
}

.lp-listing-selecter-drop
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered,
.lp-listing-selecter-drop
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  color: #b1b7be !important;
  line-height: 40px !important;
  height: 40px;
  font-size: 13px;
}

.lp-listing-selecter-drop
  .select2-container--default
  .select2-selection--single {
  border: 1px solid #dce0e2;
}

.lp-listing-selecter-drop .select2-container .select2-selection--single {
  height: 40px;
}

.lp-listing-selecter-drop
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered,
.lp-listing-selecter-drop
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  color: #44566c !important;
  line-height: 40px !important;
  height: 40px;
  font-size: 13px;
}

.lp-listing-selecter-drop {
  /*margin-top: 8px*/
}

.lp-menu-step-two-btn button {
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  padding: 17px 25px;
  width: 100%;
  border-radius: 5px;
  margin-top: 30px;
}

.lp-menu-step-two-btn button:hover,
.lp-menu-step-two-btn button:hover span {
  color: #fff;
}

.lp-menu-closed {
  background-color: #eef2f4;
  padding: 10px 20px;
  border-radius: 5px;
}

.lp-menu-closed .lp-dot-extra-buttons {
  float: right;
  display: inline-block;
}

.lp-menu-closed .lp-dot-extra-buttons .fa-ellipsis-h {
  line-height: 36px;
  font-size: 18px;
}

.lp-menu-closed .lp-dot-extra-buttons {
  background: transparent;
  height: auto;
}

.lp-menu-closed .lp-dot-extra-buttons:hover {
  cursor: pointer;
}

.lp-menu-closed .lp-dot-extra-buttons ul {
  margin-top: 0 !important;
}

.lp-right-side-title {
  margin-top: 10px;
  color: #8697a8;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
}

.lp-menu-closed .lp-dot-extra-buttons .list-style-none.main {
  width: 120px !important;
}

#lp-listings .lp-dot-extra-buttons .list-style-none.main {
  width: 140px !important;
}

.lp-menu-open .lp-menu-closed {
  border-radius: 5px 5px 0 0 !important;
  margin-bottom: 0;
}

.lp-menu-form-outer {
  padding: 20px;
}

.lp-menu-form-inner {
  border: 1px solid #fafbfb;
  -webkit-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  padding: 12px;
  padding-bottom: 0;
  overflow: hidden;
  border-radius: 5px;
}

.lp-menu-form-inner .jFiler-input-text h3 {
  margin: 0;
  font-size: 14px;
  color: #bcbcbc;
  font-weight: 400;
}

.lp-menu-form-inner .jFiler-input-dragDrop {
  min-height: 181px;
  border: 3px dotted #dedede;
}

.lp-menu-form-inner .jFiler-input-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lp-menu-form-feilds {
  min-height: 250px;
  position: relative;
}

.lp-menu-form-feilds label {
  font-weight: 600;
  color: #44566c;
  font-size: 14px;
}

.lp-choose-menu label {
  font-weight: 600;
  color: #44566c;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 26px;
}

.lp-choose-menu .select2-container--default .select2-selection--multiple {
  height: 36px;
  border: 1px solid #dce0e2;
}

.lp-choose-menu
  .lp-new-cat-wrape
  .select2-container--default
  .select2-search--inline
  .select2-search__field {
  line-height: 36px;
  margin: 0;
  font-size: 13px;
  color: #7f7f7f;
  padding: 0;
}

.lp-choose-menu
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #fff !important;
  color: #44566c !important;
  top: 48% !important;
  line-height: 19px;
  padding: 0 4px;
}

.lp-choose-menu .lp-listing-selecter-drop {
  margin-top: 0;
}

.lp-choose-menu
  .lp-listing-selecter-drop
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #44566c !important;
  line-height: 36px !important;
  height: 36px;
}

.lp-choose-menu
  .lp-listing-selecter-drop
  .select2-container
  .select2-selection--single {
  height: 36px;
}

.lp-choose-menu {
  background: #fafbfb;
  margin-top: 15px;
  padding: 15px 0;
  margin-left: 2px;
  margin-right: 2px;
}

.lp-menu-save-btns button {
  box-shadow: none;
  background-color: #e7edf3;
  color: #44566c;
  border-radius: 5px;
  border: 0;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 36px;
  min-width: 130px;
  font-weight: 500;
}

.lp-menu-save-btns button:hover {
  background-color: #e7edf3 !important;
  color: #fff !important;
}

.lp-menu-save-btns button i {
  margin-right: 5px;
}

.lp-save-btn {
  float: right;
}

.lp-menu-save-btns button:hover {
  color: #fff;
}

.lp-menu-save-btns {
  margin-top: 40px;
}

.lp-menu-right-outer {
  position: relative;
}

.lp-menu-right-outer-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
}

#lp-menus .lp-menu-right-outer-content {
  transform: translateY(50%);
}

.lp-menu-right-outer-content p {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 10px;
  color: #cecece;
  line-height: 16px;
  padding: 0 30px;
}

.lp-menu-form-feilds .lp-invoices-all-stats-on-off {
  position: absolute;
  right: 0;
  top: -3px;
}

.lp-menu-form-feilds .lp-invoices-all-stats-on-off .switch {
  margin-top: 0;
  float: none;
  display: inline-table;
  vertical-align: middle;
}

.lp-menu-form-feilds .lp-invoices-all-stats-on-off span {
  font-weight: 600;
  color: #44566c;
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}

.lp-ad-packages-stats li {
  border-bottom: dotted 2px #d7dee7 !important;
  border-top: dotted 0 #d7dee7 !important;
  line-height: 0;
  height: 76px;
  padding: 0;
  padding-top: 8px;
}

.lp-ad-packages-stats li img {
  width: 70px;
  height: auto;
}

.lp-help-text-circle {
  border: 1px solid #e7edf3;
  border-radius: 100%;
  background: #e7edf3;
  color: #3f576e;
  float: none;
  font-size: 9px;
  height: 15px;
  line-height: 14px;
  margin-top: 0;
  text-align: center;
  width: 15px;
  display: inline-block;
  vertical-align: top;
}

.lp-ad-break-down .help-text {
  float: none;
  position: relative;
  width: auto;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.lp-ad-break-down {
  padding: 20px;
}

.lp-ad-break-down li p {
  margin: 0;
  font-size: 12px;
  color: #3f576e;
  line-height: 26px;
}

.lp-ad-break-down li {
  margin-bottom: 10px;
}

.lp-ad-break-down li:last-child {
  margin-bottom: 0;
}

.lp-ad-break-down .help-tooltip > span {
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  font-size: 12px;
}

.lp-ad-break-down .help-tooltip {
  padding: 10px 10px;
  width: 204px;
}

.lp-ad-break-down-count {
  float: right;
  display: inline-block;
  width: 27px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  background: #4a5b6d;
  border-radius: 3px;
  color: #98a0a9;
  font-weight: 600;
}

.lp-ad-image-section {
  background-color: #f1f4f5;
  text-align: center;
}

.lp-ad-image-section-content h3 {
  font-size: 22px;
  margin-top: 0;
  color: #3f576e;
}

.lp-step-icon,
.lp-icon-content-outer {
  display: inline-table;
  vertical-align: middle;
  text-align: left;
  float: left;
}

.lp-step-icon {
  width: 35px;
  margin-right: 10px;
  margin-top: -3px;
}

.lp-step-icon i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  background: #fafbfb;
  font-size: 14px;
  font-weight: 400;
}

.lp-icon-content-outer h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3f576e;
  margin-top: 0;
  margin-bottom: 0;
}

.lp-icon-content-outer p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #8996a6;
}

.lp-icon-content-outer {
  width: calc(100% - 45px);
}

.lp-ad-image-section-content ul li {
  display: inline-block;
  margin-top: 26px;
}

.lp-ad-image-section-popup .modal-body {
  padding: 26px 0;
}

.lp-ad-image-section-content ul {
  padding: 0 100px;
}

.lp-btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 100%;
  padding: 0;
  width: 36px;
  height: 36px;
  background: #fafbfb;
  border: 0;
  box-shadow: none;
  font-size: 16px;
  color: #4a5b6d;
}

.lp-btn-close:focus {
  outline: none;
  box-shadow: none;
}

.lp-ad-image-section-popup .modal-footer {
  border: 0;
  padding-top: 0 !important;
  text-align: center;
  padding: 34px 60px;
}

.lp-new-invoices .lp-left-panel-height,
.lp-saved .lp-left-panel-height,
.lp-packages .lp-left-panel-height {
  padding-top: 30px;
}

.lp-left-panel-height {
  margin: 0;
  padding-top: 15px;
  padding-bottom: 30px;
}

.lp-ad-click-inner {
  position: relative;
}

.lp-search-listing {
  height: 42px;
  line-height: 42px;
  border: 1px solid #dce0e2;
  width: 100%;
  border-radius: 5px;
  padding-left: 10px;
}

.lp-ad-step-two .lp-listing-selecter {
  margin-bottom: 14px;
  border: solid 1px #dedede;
}

.lp-ad-step-two .lp-listing-selecter:last-child {
  margin-bottom: 0;
}

.lp-ad-step-two .panel-body {
  background-color: transparent;
  box-shadow: none;
}

.lp-select-ad {
  border: 1px solid #dce0e2;
  border-radius: 5px;
  padding: 0 12px;
}

.lp-select-top.input-group .checkbox label:before {
  background-color: #fff;
  border: 1px solid #d4d3d3;
  width: 15px;
  height: 15px;
  border-radius: 2px;
}

.lp-select-top .checkbox {
  margin: 0;
  float: left;
}

.lp-select-top {
  display: block;
}

.lp-select-top .checkbox input[type="checkbox"] {
  margin-left: 0;
}

.lp-select-top input[type="checkbox"]:checked + label:before {
  line-height: 13px;
  font-size: 9px;
}

.lp-preview-image {
  background: #fafbfb;
  border: 0;
  box-shadow: none;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  font-size: 10px;
  float: right;
  margin-top: -2px;
}

.lp-ad-location-image {
  width: auto;
  min-height: 116px;
  margin: 0 auto;
  margin-bottom: 10px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.lp-ad-price-content h5 {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #000;
  font-weight: 400;
}

.lp-ad-price-content p {
  font-size: 10px;
  color: #9b9b9b;
  line-height: 16px;
}

.lp-ad-price-content button {
  font-size: 14px;
  color: #000000;
  background: #e4ffdd;
  box-shadow: none;
  border: 1px solid #dce0e2;
  border-radius: 3px;
  font-weight: bold;
  padding: 3px 28px;
  line-height: 16px;
}

.lp-exist-preview {
  box-shadow: none;
  border: 0;
  background: #e7edf3;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3f576e;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  display: block;
  border-radius: 3px;
  padding: 0 15px;
  line-height: 36px;
}

.lp-ad-statcs .lp-invoices-all-stats {
  padding: 0;
  margin: 25px;
  margin-bottom: 10px;
}

.lp-ad-total-amount {
  border-top: 1px dotted #d6d6d6;
  margin-top: 15px !important;
  padding-top: 15px !important;
}

.lp-total-amount-count {
  background: #edf9e1;
  border: 1px solid #e1f5cc;
  padding: 6px 10px;
  margin: -10px;
}

.lp-total-amount-count h5 span {
  color: #3f576e !important;
  font-weight: 600 !important;
}

.lp-select-payement-outer .lp-invoice-number {
  display: inline-table;
  vertical-align: middle;
  margin-top: 5px;
  margin-right: 10px;
}

.lp-payement-images {
  width: 90px;
  height: 48px;
  border-radius: 2px;
  display: inline-table;
  vertical-align: middle;
  margin-right: 20px;
}

.lp-payement-method-name {
  display: inline-block;
  vertical-align: middle;
}

.lp-payement-method-name h4 {
  font-size: 15px;
  color: #44566c;
  font-weight: 600;
}

.lp-select-payement-outer ul li {
  border-bottom: 1px solid #e9ebf2;
  padding: 15px;
}

.lp-new-user-portfolio-outer {
  display: none;
}

.active.lp-dashboard-new .lp-new-user-portfolio-outer {
  display: block;
}

.listing-slider .lp-listing .lp-listing-top .lp-listing-price-range {
  position: relative;
  left: 0;
  bottom: 0;
  line-height: 24px;
}

.lp-listing .lp-listing-top .lp-listing-price-range {
  line-height: 24px;
}

.lp-announcement-form .lp-invoices-all-stats-on-off h5 {
  margin: 0;
}

.lp-announcement-form .lp-invoices-all-stats-on-off .switch {
  margin-right: 10px;
  margin-top: 6px;
}

.lp-announcement-title p {
  margin-top: 8px;
  color: #44566c;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
}

.lp-add-announcement-form .form-group {
  margin-bottom: 20px !important;
}

.lp-add-announcement-form .lp-coupns-btns .fa {
  margin-left: 5px;
}

.lp-leadeform-close-outer .lp-right-side-title {
  margin-top: 0 !important;
}

.lp-leadeform-close-outer .lp-menu-closed .fa {
  color: #8697a8;
  font-size: 16px;
}

.lp-leadeform-close-outer .lp-menu-closed .pull-right .fa:hover {
  cursor: pointer;
}

.lp-leadeform-close-outer .lp-menu-closed span {
  display: inline-block;
  vertical-align: middle;
}

.lp-leadeform-close-outer .lp-menu-closed span:first-child {
  margin-right: 5px;
}

#lp-leadform .lp-dashboard-tabs {
  padding-left: 30px;
}

.lp-lead-form label {
  font-size: 14px;
  color: #44566c !important;
}

.lp-form-all-stats-on-off .switch {
  float: none !important;
}

.lp-form-all-stats-on-off span {
  color: #44566c !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-right: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -8px;
}

.lp-default-all-stats {
  margin-top: 15px;
  margin-bottom: 15px;
}

.lp-default-all-stats li {
  margin: 5px 20px;
  background: #fafafb;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  border: 1px solid #dce0e2 !important;
}

.lp-default-all-stats li span {
  float: right;
}

.lp-default-all-stats li span:hover {
  cursor: pointer;
}

.lp-default-all-stats li p .fa {
  font-size: 16px;
}

.lp-default-all-stats li p {
  margin-bottom: 0;
  color: #44566c;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 18px;
}

.lp-form-feild-btn {
  background-color: transparent;
  box-shadow: none;
  text-align: center;
  border-width: 1px;
  border-style: dashed;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 20px;
  width: calc(100% - 40px);
  padding: 10px;
}

.lp-form-feild-btn:hover {
  color: #fff;
}

.lp-form-feild-btn .fa {
  margin-right: 5px;
}

.lp-lead-form-outer {
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.lp-dashboard-new #lp-events {
  padding-left: 15px;
  padding-right: 15px;
}

.lp-dashboard-new .lp-coupns-form {
  padding-right: 15px !important;
}

#lp-events .lp-listing-outer-container {
  padding: 0;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 15px;
}

#lp-announcement-form .lp-listing-outer-container,
#lp-leadform .lp-listing-outer-container {
  padding-left: 20px;
  padding-right: 15px;
}

#lp-listings .lp-listing-outer-container {
  padding-left: 15px;
  padding-right: 15px;
}

#lp-leadform .lp-dot-extra-buttons {
  margin-top: 0;
}

.lp-location-picker-outer {
  margin: 0 25px;
  overflow: hidden;
}

.lp-location-picker-outer li {
  color: #44566c;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 13px;
}

.lp-location-picker-outer li {
  border: 1px solid #dce0e2;
  float: left;
  width: 33.3%;
  text-align: center;
  padding: 6px 5px;
  border-right: 0 solid #dce0e2;
}

.lp-location-picker-outer li:last-child {
  border-right: 1px solid #dce0e2;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.lp-location-picker-outer li:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.lp-location-picker-outer .active {
  color: #fff;
}

.lp-location-picker-outer p {
  color: #44566c;
  font-size: 13px;
  margin-bottom: 5px;
}

.lp-evnt-date-container {
  width: 100px;
  border-radius: 3px;
  height: 100px;
  text-align: center;
  position: relative;
  display: inline-table;
  vertical-align: top;
  background-color: #fafbfb;
  margin-right: 10px;
}

.lp-evnt-date-container span {
  display: block;
  line-height: 22px;
}

.lp-evnt-date-container span:first-child {
  font-weight: 700;
  color: #d0021b;
  font-size: 29px;
}

.lp-evnt-date-container span:last-child {
  font-weight: 700;
  color: #000;
  font-size: 15px;
  margin-top: 5px;
  text-transform: uppercase;
}

.lp-evnt-date-container-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.lp-evnt-content-container {
  display: inline-table;
  vertical-align: top;
  width: calc(100% - 118px);
  position: relative;
}

.lp-evnt-content-container h4 {
  color: #44566c;
  text-transform: capitalize;
  font-size: 12px;
  margin-bottom: 5px;
  margin-top: 0;
  line-height: 17px;
}

.lp-evnt-content-container h3,
.lp-evnt-content-container a {
  color: #44566c;
  text-transform: capitalize;
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 20px;
}

.lp-evnt-content-container a:hover {
  text-decoration: underline;
}

.lp-evnt-content-container p {
  margin-bottom: 0;
  color: #44566c;
  text-transform: capitalize;
  font-size: 11px;
  height: 31px;
  overflow: hidden;
  line-height: 16px;
}

.lp-evnt-content-container .show-more-event-content {
  cursor: pointer;
}

.lp-event-text-shadow {
  -webkit-box-shadow: inset 0 -15px 10px 0 rgba(255, 255, 255, 0.8);
  -moz-box-shadow: inset 0 -15px 10px 0 rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 -15px 10px 0 rgba(255, 255, 255, 0.8);
  height: 50px;
  width: 100%;
  z-index: 100;
  position: absolute;
  bottom: 2px;
}

.lp-events-btns-outer {
  padding: 10px 20px 10px;
}

.lp-events-btns-outer .attend-event {
  position: relative;
}

.lp-events-btns-outer .attend-event i {
  position: absolute;
  top: 11px;
  left: 15px;
}

.lp-event-outer {
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 3px;
}

.lp-events-btns-outer button {
  border: 0;
  box-shadow: none;
  color: #44566c;
  background-color: #fafbfb;
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  padding: 2px 0;
  line-height: 32px;
  width: 40%;
}

.lp-events-btns-outer button:first-child {
  background-color: #03c4c6;
  color: #fff;
  width: 58%;
}

.lp-events-btns-outer ul li {
  font-size: 13px;
  color: #a2afbc !important;
  text-transform: capitalize;
  border: 0 !important;
  background-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

.listing-page-sidebar .lp-widget .lp-events-btns-outer ul li {
  background-color: tranparent !important;
}

.listing-page-sidebar .lp-event-list-area ul li {
  border: 0 !important;
}

.listing-page-sidebar .lp-widget .lp-event-outer {
  padding: 0;
  border: 0 solid #dedede;
  border-radius: 0;
  background-color: #fff;
  margin-bottom: 0;
}

.lp-events-btns-outer ul li span {
  color: #a2afbc;
}

.lp-events-btns-outer ul li span:hover {
  cursor: pointer;
}

.lp-events-btns-outer ul li span:first-child {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #a2afbc;
  text-transform: capitalize;
}

.lp-events-btns-outer ul li a,
.lp-events-btns-outer ul li a:hover {
  color: #a2afbc;
}

.lp-event-outer-container {
  padding: 0;
}

.lp-event-image-container img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.lp-event-image-container {
  width: 100%;
  height: 230px;
  background-color: #fafbfb;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.lp-event-outer-content {
  padding: 20px 20px 0;
}

.lp-event-list-area {
  display: inline-block;
  width: 100%;
}

.lp-event-list-area ul {
  padding: 20px 20px 20px;
}

.lp-event-list-area ul li {
  display: inline-block;
  float: left;
  width: 100%;
  line-height: 17px;
  margin-bottom: 15px;
  position: relative;
  background-color: #fff !important;
}

.lp-event-list-area ul li:last-child {
  margin-bottom: 0;
}

.lp-event-list-area ul li h5 {
  margin: 0;
  color: #8697a8;
  font-size: 14px;
  font-weight: 500;
  width: 80%;
  line-height: 20px;
}

.lp-event-list-area ul li h5 i {
  margin-right: 5px;
}

.lp-event-list-area ul li h6 {
  display: inline-block;
  position: absolute;
  margin: 0;
  top: -3px;
  right: 5px;
  font-size: 11px;
  cursor: pointer;
  color: #337ab7;
  text-decoration: underline;
}

.lp-event-list-area ul li span {
  color: #8697a8;
  font-size: 13px;
  padding-left: 15px;
  line-height: 17px;
}

.lp-event-map-section {
  display: none;
  height: 0;
}

.lp-event-map-section.active {
  display: block;
}

.lp-event-ticket {
  display: inline-block;
  width: 100%;
  background: #fbfbfb;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #8697a8;
  padding: 16px 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.lp-event-ticket i {
  margin-right: 5px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-weight: normal;
}

.lp-choose-menu
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  height: 36px !important;
}

#lp-announcement-form > .lp-dashboard-tabs {
  padding: 0 30px;
}

.lp-dashboard-new .error {
  background: transparent !important;
  border-color: #ff9b89 !important;
}

.lp-add-announcement-form {
  margin-bottom: 40px;
}

.lp-choose-menu .lp-listing-selecter-drop a {
  font-size: 12px;
  margin-top: 10px;
  display: inline-block;
}

.lp-choose-menu .lp-listing-selecter-drop .save-new-type,
.lp-choose-menu .lp-listing-selecter-drop .save-new-group {
  float: right;
}

#menu-group-new,
#menu-type-new {
  margin-top: 10px;
}

.lp-menu-container-outer .ui-widget {
  float: none;
  width: 100%;
  padding: 0 20px;
}

.lp-menu-container-outer .active-update-form {
  width: 100%;
}

.lp-menu-container-outer .ui-tabs .ui-tabs-panel {
  display: inline;
  padding: 0;
}

.lp-menu-container-outer .active-update-formm {
  padding: 15px 0;
  width: 100%;
  padding-top: 0;
}

.lp-menu-container-outer .active-update-formm .lp-menu-save-btns {
  margin-top: 0;
  padding: 15px;
}

.active-update-form h6 {
  color: #44566c;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 0;
}

.lp-menu-container-outer .ui-tabs .ui-tabs-nav {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #e9ebf2;
  margin-bottom: 10px;
}

.lp-menu-container-outer .ui-tabs .ui-tabs-nav li {
  padding: 0;
  border: 0;
  float: none;
}

.lp-menu-container-outer .ui-tabs .ui-tabs-nav li a {
  color: #3f576e;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 13px;
  padding-top: 0;
}

.lp-menu-container-outer .ui-tabs .ui-tabs-nav .ui-tabs-active a {
  border-bottom: 2px solid;
}

.dashboard-upload-field {
  margin-top: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.dashboard-upload-field .frontend-button {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  line-height: 65px;
  min-height: 175px;
  background: #fafbfb;
}

.lp-coupons-form-inner .jFiler-input-dragDrop {
  border: 3px dotted #dedede;
  min-height: 181px;
}

#lp-menus .dashboard-upload-field .frontend-button {
  min-height: 175px;
}

.dashboard-upload-field .frontend-image,
.dashboard-upload-field .lp-uploaded-img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: -10px;
  left: 10px;
  z-index: 999;
  width: 60px;
  box-shadow: none;
  border: 0 !important;
  left: 0;
  right: 0;
  margin-left: 10px;
  height: 60px;
  display: none;
}

#lp-events .lp-coupons-form-inner .jFiler-input-dragDrop {
  min-height: 195px;
}

.lp-edit-lead-form .lp-menu-step-two {
  padding: 0 20px;
}

.lp-edit-lead-form .lp-coupon-box-row {
  box-shadow: none;
  border: 0;
}

#lp-leadform .select2-selection--multiple .select2-selection__choice {
  margin-top: 5px !important;
  transform: translateY(0%);
}

.lp-add-new-filed-container {
  box-shadow: none !important;
  background-color: transparent !important;
}

.lp-add-new-filed-container .lp-lead-form-outer {
  margin-bottom: 20px;
  border-radius: 5px;
}

.listing-page-sidebar .lp-widget ul li {
  background-color: #fafafa;
}

.listing-page-sidebar .lp-widget .widget-social-icons li,
.listing-page-sidebar .lp-listing-additional-details ul li,
.listing-page-sidebar .lp-listing-timings ul li {
  background-color: #fafafa !important;
  padding: 10px 20px !important;
}

.listing-page-sidebar .lp-widget .widget-social-icons,
.listing-page-sidebar .lp-listing-additional-details ul,
.listing-page-sidebar .lp-listing-timings ul {
  border: solid 1px #e3e3e3 !important;
  border-top: none !important;
}

.lp-dash-bottom-area h6 {
  line-height: initial;
  display: inline-block;
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.lp-dashboard-new .count-box.active .lp-dash-bottom-area h6 {
  color: #8697a8 !important;
}

.lp-more-insgts-btn button {
  box-shadow: none;
  border: 0;
  background: transparent;
  float: right;
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.lp-more-insgts-btn button .fa {
  margin-left: 5px;
}

.lp-dashboard-new .count-box.active .lp-more-insgts-btn {
  opacity: 0;
  visibility: hidden;
}

.blue-box.active:before {
  content: "";
  background: #648dbd;
  background: -moz-linear-gradient(45deg, #648dbd 0%, #9cc2e7 100%);
  background: -webkit-linear-gradient(45deg, #648dbd 0%, #9cc2e7 100%);
  background: linear-gradient(45deg, #648dbd 0%, #9cc2e7 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#648dbd', endColorstr='#9cc2e7', GradientType=1);
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  position: absolute;
}

.orange-box.active:before {
  content: "";
  background: #9eb3bb;
  background: -moz-linear-gradient(45deg, #9eb3bb 0%, #b7bcaf 100%);
  background: -webkit-linear-gradient(45deg, #9eb3bb 0%, #b7bcaf 100%);
  background: linear-gradient(45deg, #9eb3bb 0%, #b7bcaf 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#9eb3bb', endColorstr='#b7bcaf', GradientType=1);
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  position: absolute;
}

.green-box.active:before {
  content: "";
  background: #ad90b4;
  background: -moz-linear-gradient(45deg, #ad90b4 0%, #dabecb 100%);
  background: -webkit-linear-gradient(45deg, #ad90b4 0%, #dabecb 100%);
  background: linear-gradient(45deg, #ad90b4 0%, #dabecb 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ad90b4', endColorstr='#dabecb', GradientType=1);
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  position: absolute;
}

.lp-review-detail-container .review-form {
  border: 0;
  padding: 0;
  background: transparent;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*invoices pop css*/

.listing-invoices-popup .modal-dialog {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 1px 2px 11px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 2px 11px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 2px 11px -3px rgba(0, 0, 0, 0.75);
}

.listing-invoices-popup .modal-header {
  background: #fafbfb;
  border: 0;
  padding: 15px 15px;
}

.listing-invoices-popup .modal-title {
  color: #3f576e;
  font-size: 18px;
}

.listing-invoices-popup .modal-header .close {
  margin-top: -2px;
  color: #3f576e;
  height: 25px;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  line-height: 0;
  width: 25px;
  font-size: 13px;
  font-weight: 400;
}

.lp-invoice-popup-date,
.lp-invoice-popup-date span {
  color: #8996a6;
  font-size: 13px;
}

.lp-invoice-bil-info ul li {
  color: #8996a6;
  margin-bottom: 3px;
}

.lp-bill-bold {
  color: #44566c !important;
  font-weight: 500;
}

.lp-invoice-email {
  color: #117dce !important;
}

.margin-bottom-10 img {
  width: 126px;
}

.lp-invoice-description-title .lp-invoice-description-title-inner {
  border-bottom: 1px solid #e9ebf2;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.lp-invoice-description-title .lp-invoice-description-title-inner li span {
  color: #8697a8;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.lp-invoice-description-title
  .lp-invoice-description-title-inner
  li
  span:last-child,
.lp-invoice-planinfo-inner li span:last-child {
  float: right;
}

.lp-invoice-planinfo-inner li span {
  color: #8697a8;
  font-size: 13px;
}

.lp-plan-title {
  color: #44566c !important;
  font-weight: 600;
  margin-right: 30px;
}

.lp-plan-name {
  border-right: 1px solid #e9ebf2;
  padding-right: 5px;
  margin-right: 2px;
}

.lp-invoice-planinfo-inner li span:last-child {
  color: #44566c !important;
  font-weight: 600;
}

.lp-invoice-description-title {
  border-bottom: 1px solid #e9ebf2;
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.lp-invoices-other-details ul li {
  color: #8697a8;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.lp-invoices-other-details ul li span {
  color: #8697a8;
  font-size: 12px;
  float: right;
  line-height: 16px;
}

.lp-invoice-total-amount,
.lp-invoice-total-amount span {
  color: #44566c !important;
  font-weight: 600;
}

.lp-pay-with img {
  width: 86px;
}

.lp-pay-with {
  color: #44566c;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.listing-invoices-popup .modal-footer {
  text-align: left;
  background: #fafbfb;
  padding: 8px 30px;
}

.listing-invoices-popup .modal-footer button {
  background: transparent;
  box-shadow: none;
  border: 0;
  color: #3f576e;
  font-size: 13px;
  font-weight: 500;
}

/*end invoices popup css*/

.lp-price-cats-with-icon {
  width: 100%;
  display: inline-block;
}

.lp-price-cats-with-icon li {
  display: inline-block;
  float: left;
  position: relative;
  width: 100%;
}

.lp-price-cats-with-icon li:first-child {
  margin-left: 0;
}

.lp-price-cats-with-icon li input[type="radio"] {
  visibility: hidden;
  position: absolute;
}

.lp-price-cats-with-icon li label {
  border-radius: 5px;
  margin-bottom: 0;
  border: 1px solid #eee;
  padding: 8px 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
}

.lp-price-cats-with-icon li span {
  font-size: 16px;
  color: #b5b5b5;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

.lp-price-cats-with-icon li .icons-banner-cat {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 7px;
  margin-top: -5px;
}

.lp-price-cats-with-icon li label:hover {
  border: 1px solid #42a7df;
}

.active-category-radio {
  border: 1px solid #42a7df !important;
}

.active-category-radio span {
  color: #42a7df !important;
}

.lp-price-cats-with-icon li:hover span {
  color: #42a7df;
}

.lp-montly-annualy-text {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

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

.lp_button_switcher .lp_show_hide_plans {
  padding-left: 85px;
  padding-bottom: 7px;
  padding-top: 7px;
}

.lp-montly-annualy-text span {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  margin-top: -7px;
  vertical-align: middle;
  cursor: pointer;
}

.lp_button_switcher .lp_show_hide_plans::before {
  width: 85px;
  height: 30px;
  background: #cfcfcf;
}

.lp_button_switcher .lp_show_hide_plans::after {
  width: 30px;
  height: 30px;
  border: 2px solid #cfcfcf;
  content: "\f104";
  font-family: FontAwesome;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 25px;
  text-align: center;
}

.lp_show_hide_plans.active::before {
  background-color: #42a7df;
}

.lp_button_switcher a.lp_show_hide_plans.active::after {
  left: 55px;
  border: 2px solid #42a7df;
  color: #42a7df;
  content: "\f105";
  font-family: FontAwesome;
}

#cats-selected-plans {
  border: 1px solid #efefef;
  width: 100%;
  display: inline-block;
  padding: 4px 4px 30px;
}

#cats-selected-plans:empty {
  border: 0;
  padding: 0 !important;
}

.vertical_view_v2 {
  border: 2px solid #eee;
  padding: 4px 4px 30px;
}

.vertical_view_v2:empty {
  border: 0;
  padding: 0;
}

.lp-price-main:hover {
  transform: scale(1);
  transition: none;
  box-shadow: none;
}

.featured-plan .lp-price-main,
.featured-plan .view_version_3 {
  margin-bottom: 40px;
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.featured-plan .view_version_2 .lp-price-main,
.featured-plan .view_version_3 .lp-price-main {
  box-shadow: none;
  transform: initial;
}

.featured-active-plan {
  display: block;
}

.featured-active-plan .view_version_2 .lp-price-main,
.featured-active-plan .view_version_3 .lp-price-main {
  box-shadow: none;
  transform: initial;
}

.pricing_plans_v2 .lp-price-main .lp-title a {
  color: #1c1c1c;
  font-size: 24px;
  border: 0;
  padding: 0;
  border-radius: 0;
  text-transform: capitalize;
}

.pricing_plans_v2 .lp-price-main .lp-title p {
  font-weight: 700;
  font-size: 30px;
  color: #1c1c1c;
  padding-top: 0;
  padding-bottom: 5px;
  margin-top: 0;
}

.pricing_plans_v2 .lp-price-main {
  border: 0;
  border-radius: 0;
  margin-bottom: 60px;
}

.vertical_view .lp-price-list {
  display: none;
  padding-top: 20px;
}

.col-md-10 .col-md-4 .lp-view-all-price-feature,
.page-inner-container .col-md-4 .lp-view-all-price-feature {
  text-align: center;
  display: none;
  width: 100%;
  position: relative;
}

.col-md-10 .col-md-4:first-child .lp-view-all-price-feature,
.page-inner-container .col-md-4:first-child .lp-view-all-price-feature {
  display: inline-block;
}

.lp-hide-show-price-features {
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
  position: absolute;
  left: 100%;
  z-index: 99;
  top: -40px;
}

.section-lp-price-list .lp-listprc li {
  padding-bottom: 10px;
}

.section-lp-price-list .lp-listprc li:last-child {
  padding-bottom: 0;
}

.pricing_plans_v2 .section-lp-price-list .lp-price-list .lp-listprc {
  padding: 20px 0 20px 20px;
  border-right: 1px solid #eee;
  background: #f3f7f9;
  min-height: 465px;
  text-align: left;
}

.pricing_plans_v2:last-child .section-lp-price-list .lp-price-list .lp-listprc {
  border-right: 0;
}

.pricing_plans_v2.pricing_plans_v5
  .section-lp-price-list
  .lp-price-list
  .lp-listprc {
  border-right: 0;
}

.border_none .lp-listprc:last-child {
  border-right: 0;
}

.pricing_plans_v2 .lp-plane-top-wrape p,
.pricing_plans_v2 .lp-plane-top-wrape span.package-type {
  color: #b5b5b5;
}

.pricing_plans_v2 .lp-plane-top-wrape span.package-type {
  margin-top: 0;
  display: block;
}

.lp_plan_image_heading a {
  display: block;
}

.lp_plan_image_icons {
  width: 100%;
  display: inline-block;
  margin: 15px 0;
  height: 200px;
}

.lp_plan_image_icons:empty {
  margin: 0;
  height: 0;
}

.lp_plan_image_icons img {
  max-width: 100%;
  max-height: 100%;
}

.section-lp-price-list .lp-hot {
  background: none;
  display: inline-block;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: -13px;
  width: 40px;
  height: 55px;
  z-index: 999;
  right: 15px;
}

.view_version_3 .section-lp-price-list .lp-hot {
  top: -9px;
}

.pricing_plans_v2.featured-plan .lp-price-free.lp-without-prc.btn {
  background: #42a7df;
  color: #fff;
  border: 1px solid #42a7df;
}

.featured-active-plan .lp-price-free.lp-without-prc.btn {
  background: #42a7df;
  color: #fff;
  border: 1px solid #42a7df;
}

.pricing_plans_v2 .featured-active-plan .lp-price-free.lp-without-prc.btn {
  background: #42a7df;
  color: #fff;
  border: 1px solid #42a7df;
}

.pricing_plans_v2 .lp-price-free {
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 12px 70px;
  margin-top: 20px;
}

.pricing_plans_v2 .view_version_2 .lp-price-free {
  margin-bottom: 35px;
  margin-top: 0;
}

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

.view_version8 .lp-price-free {
  border: 1px solid #eee;
  padding: 12px 70px;
  border-radius: 5px;
  margin-top: 20px;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.pricing_plans_v2 .lp-price-free:hover,
.view_version8 .lp-price-free:hover {
  background: #42a7df !important;
  color: #fff;
  border: 1px solid #42a7df;
}

.lp-active-badge-on-plan {
  width: 100%;
  display: none;
  background: #9be15d;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-active-plan .lp-active-badge-on-plan {
  display: block;
  z-index: 99;
}

.lp-active-badge-on-plan p {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 2px 0;
  letter-spacing: 3px;
}

.lp-active-badge-on-plan img {
  position: absolute;
  top: -9px;
  right: 15px;
  width: 40px;
  height: 55px;
  z-index: 999;
}

.pricing_plans_v2 .lp-price-main,
.pricing_plans_v3 .lp-price-main {
  overflow: visible;
}

.lp-price-cats-with-icon-v2 {
  display: inline-block;
  width: 100%;
}

.lp-price-cats-with-icon-v2 li {
  display: inline-block;
  float: left;
  margin-left: 9.3%;
  width: 100%;
  text-align: center;
}

.lp-price-cats-with-icon-v2 li:first-child {
  margin-left: 0;
}

.lp-price-cats-with-icon-v2 li label span {
  font-size: 16px;
  color: #b5b5b5;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-price-cats-with-icon-v2 li label input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.lp-price-cats-with-icon-v2 li label {
  margin-bottom: 0;
}

.lp-price-cats-with-icon-v2 li label:hover span {
  color: #3b88dd;
  border-bottom: 1px solid #3b88dd;
}

.active-category-radio-v2 span {
  color: #3b88dd !important;
  border-bottom: 1px solid #3b88dd !important;
}

.view_version_2 {
  text-align: center;
  margin-bottom: 60px;
}

.view_version_2 .lp-price-main .lp-title a {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.view_version_2 .lp-price-main .lp-title span {
  font-size: 16px;
  color: #fff;
}

.view_version_2 .lp-overlay-pricing,
.view_version_2 .lp-overlay-pricing::after {
  border-radius: 0;
}

.view_version_2,
.view_version_3 {
  -webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -ms-transition: all 500ms ease-in;
  -o-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}

.view_version_3 {
  margin-bottom: 40px;
}

.view_version_2 .lp-price-main:hover,
.view_version_3 .lp-price-main:hover {
  transform: initial;
  box-shadow: none;
}

.view_version_3 .lp-overlay-pricing,
.view_version_3 .lp-overlay-pricing::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.price_free_v2 {
  margin-bottom: 40px;
}

.price_free_v2 p {
  font-size: 30px;
  color: #3b88dd;
  margin-bottom: 0;
}

.price_free_v2 p sup {
  top: -10px;
  font-size: 14px;
  color: #b5b5b5;
  left: -5px;
}

.pricing_plans_v2 .view_version_2,
.pricing_plans_v3 .view_version_3 {
  padding-left: 0;
}

.pricing_plans_v2:first-child .view_version_2,
.pricing_plans_v3:first-child .view_version_3 {
  padding-left: 0;
}

.featured-plan .view_version_2 {
  -webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -ms-transition: all 500ms ease-in;
  -o-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1);
}

.view_version_2 .section-lp-price-list .lp-hot {
  top: 105px;
}

.pricing_plans_v2 .view_version_2 .lp-price-free {
  border-radius: 50px;
  background: #d7dbdd;
  border: 1px solid #d7dbdd;
  color: #fff;
  font-weight: 400;
}

.pricing_plans_v2 .view_version_2 .lp-price-free:hover {
  border: 1px solid #42a7df;
}

.view_version_2 .lp-overlay-pricing::after {
  background: rgba(126, 153, 223, 0.7);
}

.selected_plans_v2 {
  padding: 0 0 60px !important;
}

.pricing_plans_v2.pricing_plans_v5,
.pricing_plans_v3,
.view_version8 {
  padding: 0 0 0 15px !important;
}

.pricing_plans_v2.pricing_plans_v5 .lp-price-main {
  min-height: 0;
}

.pricing_plans_v2.pricing_plans_v5 .view_version_2 {
  min-height: 396px;
}

.pricing_plans_v2 {
  padding: 0 0 0 0 !important;
}

.pricing_plans_v2.pricing_plans_v5:nth-child(3n + 1) {
  padding-left: 0 !important;
}

.pricing_plans_v2:nth-child(3n + 1),
.pricing_plans_v3:nth-child(3n + 1),
.view_version8:nth-child(3n + 1) {
  padding-left: 0 !important;
}

.pricing_plans_v2 .lp-price-main {
  border-left: 0 solid #efefef !important;
  min-height: 478px;
}

.view_version8 .lp-price-main.lp-border-radius-8 {
  margin-bottom: 0;
}

.pricing_plans_v3 .lp-view-all-price-feature .lp-hide-show-price-features {
  top: -18px;
}

.pricing_plans_v3
  .lp-view-all-price-feature
  .lp-hide-show-price-features.MoreDetails {
  top: 12px;
}

.pricing_plans_v2:first-child .lp-price-main {
  border-left: 0 !important;
}

.selected_plans_v2 .col-md-4 .lp-price-main {
  border-left: 0 solid #efefef !important;
}

.lp_hide_general_plans .col-md-4 .lp-price-main {
  border-left: 1px solid #ddd;
}

.selected_plans_v2 .col-md-4:first-child .lp-price-main {
  border-left: 0 !important;
}

.view_version_4 .lp-price-main {
  border: 0 !important;
}

.lp_plan_image_heading_v6 p {
  color: #ff8850 !important;
}

.lp_plan_image_heading_v7 p {
  color: #9be15d !important;
}

.lp_plan_image_heading_v6 p sup {
  color: #b5b5b5;
  font-weight: 400;
  top: -10px;
  font-size: 14px;
  left: -5px;
}

.price-plan-button-v6 .lp-price-free {
  border: 1px solid #ff8850;
  color: #bfbfbf;
}

.category_custom_dropdown {
  display: block;
  width: 350px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
  -moz-box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
  box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
}

.category_custom_dropdown .select2-selection {
  border: none !important;
  height: 70px !important;
  border-radius: 0 !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background: #363f48 !important;
  color: #fff !important;
}

.category_custom_dropdown .select2-selection:focus {
  outline: none !important;
}

#select2-category_dropdown-container {
  line-height: 70px;
  color: #2b2b2b;
  font-size: 20px;
  padding-left: 35px;
}

.category_custom_dropdown .select2-selection__arrow {
  height: 70px !important;
}

.category_custom_dropdown .select2-selection__arrow b {
  border-color: initial !important;
  border-style: none !important;
}

.category_custom_dropdown .select2-selection__arrow b::before {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 20px;
}

.category_custom_dropdown .select2-selection__arrow b::after {
  content: "\f106";
  font-family: FontAwesome;
  position: absolute;
  top: -12px;
  right: 20px;
  display: none;
  font-size: 20px;
}

.category_custom_dropdown
  .select2-container--open
  .select2-selection__arrow
  b::before {
  display: none;
}

.category_custom_dropdown
  .select2-container--open
  .select2-selection__arrow
  b::after {
  display: block;
}

#select2-category_dropdown-results {
  max-height: initial !important;
  overflow-y: auto !important;
}

.outer_switch_month_year {
  display: block;
  width: 350px;
  margin: 0 auto;
}

.switch_month_year {
  display: inline-block;
  width: 100%;
  margin: 0 0 30px;
  -webkit-box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
  -moz-box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
  box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
}

.switch_month_year li {
  display: inline-block;
  float: left;
  width: 50%;
}

.switch_month_year li span {
  display: block;
  text-align: center;
  color: #1c1c1c;
  cursor: pointer;
  padding: 21px 0;
  font-size: 20px;
  -webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -ms-transition: all 500ms ease-in;
  -o-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}

.switch_month_year li span:hover {
  background: #3b88dd;
  color: #fff;
}

.active_switch {
  background: #3b88dd;
  color: #fff !important;
}

#cats-selected-plans .view_version8 {
  padding: 0 !important;
}

.view_version8 .lp-price-list {
  display: block;
}

.lp_hide_general_plans .view_version8 .lp-price-main,
.lp_plan_result_section .view_version8 .lp-price-main {
  border-radius: 0;
  border: 0;
}

.v8_heading_top {
  background: #d8d8d8;
  margin: 0;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  padding: 12px 0;
}

.v8_price_sign_free {
  color: #1c1c1c;
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0 20px;
}

.featured-plan .v8_heading_top,
.featured-active-plan .v8_heading_top {
  background: #3b88dd;
}

.category_image_thumbnail {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.category_image_thumbnail_overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
}

.lp-price-cats-with-icon li .category_image_thumbnail label {
  border: 0;
}

.lp_category_list_slide .slick-prev {
  left: -27px;
}

.lp_category_list_slide .slick-next {
  right: -10px;
}

.lp_category_list_slide .slick-slide {
  margin-right: 10px;
}

.lp_category_list_slide .slick-slide:last-child {
  margin-right: 0;
}

.lp_category_list_slide .slick-prev::before,
.lp_category_list_slide .slick-next::before {
  width: 0;
  height: 0;
  line-height: 15px;
}

.lp-price-cats-with-icon li .category_image_thumbnail label:hover {
  background: none;
}

.lp-price-cats-with-icon li .category_image_thumbnail label {
  padding: 0;
  cursor: pointer;
}

.lp-price-cats-with-icon li .category_image_thumbnail label span {
  position: absolute;
  bottom: 15px;
  color: #fff;
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  padding: 0;
}

.image_thumbnail_section {
  border-radius: 10px;
  width: 100%;
}

.lp-price-cats-with-icon li .category_image_thumbnail .active-category-radio {
  background: none;
  border: none !important;
}

.lp-price-cats-with-icon
  li
  .category_image_thumbnail
  .active-category-radio
  span {
  color: #000;
}

#lp_plan_heading_v3 {
  color: #000;
  border: 0;
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}

.view_version_4 #lp_plan_heading_v3 {
  color: #fff;
}

.view_version_4 .lp-title p {
  color: #fff !important;
}

.lp_plan_image_heading_v3 p {
  font-size: 36px !important;
  color: #000 !important;
}

.selected_plans_v2 .lp-price-main {
  border: 0;
  border-radius: 0;
}

.section_description_choose_detail {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.section_description_choose_detail .lp-listprc {
  background: none !important;
}

.lp_pricing_plan_description {
  display: inline-block;
  width: 100%;
}

.lp_pricing_plan_description p {
  padding: 0 30px;
}

.pricing_plans_v3 .lp-hide-show-price-features {
  left: 105%;
}

.price-plan-button-v3 .lp-price-free {
  border-radius: 7px;
  background: #f3f7f9;
  color: #000;
  border: 1px solid #f3f7f9;
  font-weight: 400;
  padding: 12px 70px;
  margin: 40px 0;
}

.price-plan-button-v3 .lp-price-free:hover,
.featured-plan .view_version_3 .lp-price-free.btn,
.featured-active-plan .view_version_3 .lp-price-free.btn {
  background: #42a7df !important;
  color: #fff;
  border: 1px solid #42a7df !important;
}

.view_version_4 .price-plan-button-v3 .lp-price-free:hover,
.featured-plan .view_version_4 .lp-price-free.btn,
.featured-active-plan .view_version_4 .lp-price-free.btn {
  background: #42a7df !important;
  color: #fff;
  border: 1px solid #42a7df !important;
}

.view_version_4 .lp-price-main {
  border-radius: 0;
}

.view_version_3 .lp-listprc {
  text-align: left !important;
  border-right: 0 !important;
  padding-left: 30px !important;
  padding-bottom: 0 !important;
}

.view_version_3 .lp-price-list {
  padding-top: 0;
}

#response_not_found {
  margin-bottom: 0;
  padding-top: 30px;
  text-align: center;
}

div.lp_notification_wrapper {
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  margin: 0;
  padding: 0;
  z-index: 99999;
  transition: all 0.5s linear;
}

.awesome_plan_icon_check {
  color: #3b88dd !important;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-box-shadow: 1px 1px 8px 1px rgba(222, 225, 226, 1);
  -moz-box-shadow: 1px 1px 8px 1px rgba(222, 225, 226, 1);
  box-shadow: 1px 1px 8px 1px rgba(222, 225, 226, 1);
}

.awesome_plan_icon_check::before {
  font-size: 20px;
  border-radius: 50%;
}

.awesome_plan_icon_cross {
  color: #bdd4ee !important;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.awesome_plan_icon_cross::before {
  font-size: 20px;
  border-radius: 50%;
}

.selected_horizontial_plans_v1 {
  padding: 0 !important;
  border: none !important;
  padding-bottom: 60px !important;
}

.lp_hori_view_plan_left_section {
  display: inline-block;
  width: 100%;
}

.lp_hori_view_plan_left_section .lp-active-badge-on-plan img {
  top: -10px;
  left: 44%;
}

.horizontal_choose_button .horizontal_view_list {
  background: #d8e7f8;
}

#horizontial-selected-plans {
  padding-bottom: 60px;
}

.lp_hori_view_plan_left_section .horizontal_view_list {
  margin-bottom: 30px;
  width: 50%;
}

.horizontial_view_width input[type="submit"] {
  margin: 0;
}

.horizontal_choose_button .horizontial_view_width {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.lp_hori_view_plan_left_section .lp-listprc {
  width: 100%;
  display: inline-block;
  height: 390px;
  overflow-y: auto;
}

.lp_hori_view_plan_left_section .lp-listprc li {
  padding-bottom: 10px;
  display: inline-block;
  float: left;
  width: 49%;
  margin-right: 0;
}

.lp_hori_view_plan_left_section .lp-listprc li:nth-child(2n + 1) {
  margin-right: 2%;
}

.lp_hori_view_plan_left_section .lp-listprc li span {
  display: inline-block;
  float: left;
  width: 70%;
}

.lp_hori_view_plan_left_section .lp-listprc li span.icon-text,
.lp_hori_view_plan_left_section .lp-listprc li span.icon.icons8-Cancel {
  display: inline-block;
  float: left;
  width: 22px;
}

.lp_hori_view_plan_left_section .lp-listprc li .tooltip_price_features {
  margin-left: 10px;
}

.horizontal_view_list {
  border: 1px solid #3b88dd;
  padding: 50px 25px;
}

.horizontal_view_list li {
  position: relative;
}

.horizontal_view_list li label {
  padding-left: 40px;
  cursor: pointer;
}

.horizontal_view_list li label input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.horizontal_view_list li label::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #bebebe;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 42%;
  margin-top: -10px;
  left: 10px;
}

.featured-active-plan #price_plan_active_disable::before {
  border: 1px solid #3b88dd;
}

.horizontal_view_list li label::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3b88dd;
  display: none;
  position: absolute;
  top: 42%;
  left: 14px;
  margin-top: -6px;
}

.horizontal_view_list li .price_plan_active_disable::after {
  display: block;
}

.horizontal_view_list li label span {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0;
}

.per_user_per_listing_price {
  display: inline-block;
  float: right;
}

.per_user_per_listing_price span {
  display: inline-block;
  float: left;
  font-size: 22px;
  color: #000;
  font-weight: 700;
}

.per_user_per_listing_price p {
  display: inline-block;
  float: left;
  color: #b5b5b5;
  font-size: 14px;
  margin: 15px 0 0;
}

.lp_hori_view_plan_right_section {
  display: inline-block;
  float: right;
  width: 45%;
}

.lp-secondary-choose {
  width: 100%;
  border-radius: 0;
  background: none !important;
  border: 1px solid #3b88dd;
  color: #363f48;
  margin: 30px 0;
}

.lp-secondary-choose:hover {
  background: #3b88dd !important;
  border: 1px solid #3b88dd;
}

.lp-price-cats-with-icon li span {
  font-family: "Quicksand","Quicksand Fallback", sans-serif;
}

.add_border_padding {
  border: 1px solid #efefef;
  padding-bottom: 60px;
}

.listing_day_duration {
  display: inline-block;
  width: 100%;
  min-height: 41px;
}

.listing_day_duration span {
  display: block;
  font-size: 14px !important;
}

.listing_day_duration span:first-child {
  color: #b5b5b5;
  font-weight: 700;
  font-size: 16px !important;
}

.listing_day_duration_v6 span:first-child {
  color: #ff8850 !important;
}

.pricing_plans_header_area {
  display: inline-block;
  width: 100%;
}

.pricing_plans_header_area h3 {
  margin: 0;
  font-weight: 400;
  font-size: 30px;
  color: #1c1c1c;
}

.pricing_plans_header_area p {
  margin: 0;
  padding-top: 10px;
}

.lp-section-pricing-padding {
  padding-top: 60px;
  padding-bottom: 40px;
}

.pricing_plans_default_area {
  text-align: center;
}

.pricing_plans_default_area .col-md-4 {
  padding: 20px 0;
}

.pricing_plans_default_area .col-md-4 a {
  color: #1c1c1c;
  font-size: 24px;
}

.pricing_plans_default_area .col-md-4 h3 {
  margin: 0;
}

.pricing_plans_default_area .col-md-4 span {
  font-weight: 700;
  font-size: 30px;
  display: block;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.pricing_plans_default_area {
  border: 1px solid #efefef;
  display: inline-block;
  width: 100%;
  padding-bottom: 40px;
  background: #fff;
  opacity: 0.3;
  z-index: 99;
}

.pricing_plans_default_area #submit124 {
  color: #000;
  border: 1px solid #efefef;
  border-radius: 0;
  padding: 10px 40px;
}

.pricing_plans_default_area .col-md-4:nth-child(2) #submit124 {
  background: #42a7df !important;
  border: 1px solid #42a7df;
  color: #fff;
}

.pricing_plans_default_area .col-md-4:nth-child(2) {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
  -moz-box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
  box-shadow: 0 0 15px 5px rgba(250, 250, 250, 1);
}

#faded_features {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-top: 25px;
}

.tooltip_price_features {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

.tooltip_price_features span i {
  width: 18px;
  height: 18px;
  border: 1px solid #c6c7c7;
  border-radius: 50%;
  font-size: 12px;
  color: #c6c7c7;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
}

.tooltip_price_features span i:hover {
  border: 1px solid #a2c6ed;
  color: #a2c6ed;
}

.lp_tooltip_text {
  position: absolute;
  top: 35px;
  visibility: hidden;
  left: -20px;
  background: #fff;
  width: 150px;
  z-index: 99;
  padding: 15px 10px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 3px rgba(229, 232, 234, 1);
  -moz-box-shadow: 0 0 10px 3px rgba(229, 232, 234, 1);
  box-shadow: 0 0 10px 3px rgba(229, 232, 234, 1);
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.lp_tooltip_text2 {
  left: -75px;
}

.lp-checkout-steps-wrap {
  display: block;
  width: 100%;
  margin: 15px 0 60px 0;
  text-align: center;
}

.lp-checkout-steps {
  padding: 0;
  width: 80%;
  margin-left: 20%;
  position: relative;
  margin-bottom: 40px;
}

.lp-checkout-steps,
.lp-checkout-steps li {
  list-style: none;
}

.lp-checkout-steps li {
  display: inline-block !important;
  padding: 0;
  width: 33.33%;
}

.lp-checkout-steps li:last-child {
  width: 10%;
}

.lp-checkout-steps li::after {
  content: " ";
  display: block;
  background: #d9d9d9;
  height: 2px;
  border-color: #d9d9d9;
  position: absolute;
  top: 17px;
  width: 34%;
  margin-left: 3px;
}

.lp-checkout-steps li:last-child::after {
  content: none;
}

.lp-checkout-steps li,
.lp-checkout-steps li > span {
  display: block;
}

.lp-checkout-steps li .number {
  position: relative;
  width: 32px;
  height: 32px;
  line-height: 25px;
  text-align: center;
  font-size: 12.8px;
  font-weight: bold;
  background: #bbc2d2;
  border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 0 0 1px transparent;
  z-index: 2;
  border: 5px solid #bbc2d2;
}

.lp-checkout-steps li .description {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #9fa3a7;
  padding: 10px 0;
  margin-left: -35px;
}

.lp-checkout-steps li:last-child .description {
  margin-left: 0;
}

.lp-checkout-steps li.current .number,
.lp-checkout-steps li.completed .number {
  color: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}

.lp-checkout-steps li.current .number,
.lp-checkout-steps li.completed .number {
  background: #41a6df;
  color: #fff;
  border-color: #41a6df;
}

.lp-checkout-steps li.current:after {
  background: #41a6df;
}

.lp-checkout-steps li.current .description,
.lp-checkout-steps li.completed .description {
  color: #41a6df;
}

.lp-checkout-steps li.completed .description {
  color: #ccc;
}

.lp-checkout-steps li.completed .number:before,
.lp-checkout-steps li.completed .number:after {
  background: #7ab55c;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  width: calc(100% + 9px);
}

.lp-checkout-steps li.completed .number:after {
  left: 100%;
}

.lp-checkout-steps li.completed .number:before {
  right: 100%;
}

.lp-checkout-steps li.current .number:before {
  background: #7ab55c;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  border-color: #d9d9d9;
  right: 100%;
  width: calc(100% + 9px);
}

.lp-checkout-wrapper-new {
  margin-bottom: 0;
}

.lp-checkout-page-outer-new {
  padding: 20px;
}

.lp-checkout-wrapper-new .lp-user-listings {
  border-bottom: 1px solid #ececec !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.lp-checkout-wrapper-new .lp-user-listings:nth-last-child(2) {
  border-bottom: 0 !important;
}

#lp-checkout-lisiting-heading {
  text-transform: capitalize;
  margin: 0 0 15px 0;
  padding-left: 35px;
  text-align: left;
  font-size: 16px;
}

.lp-checkout-page-outer-new .lp_price_trigger_checkout {
  margin: 27px 0 0 0 !important;
}

.lp-listing-form .lp-checkout-page-outer-new .img-responsive {
  padding: 0;
  border-radius: 5px;
  width: 100%;
  height: 75px;
}

.lp-listing-form .lp-checkout-page-outer-new .radio.radio-danger {
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
}

.lp-listing-form
  .lp-checkout-page-outer-new
  input[type="radio"]:checked
  + label::before {
  width: 12px;
  height: 12px;
  top: 3px !important;
  left: 50%;
  right: 0;
  margin: 0 auto;
  position: absolute;
  margin-left: -6px;
}

.lp-checkout-page-outer-new .lp-booking-dt,
.lp-checkout-page-outer-new .lp-persons,
.lp-checkout-page-outer-new .lp-duration {
  border-bottom: 0;
  padding-left: 15px;
  text-transform: capitalize;
}

.lp-checkout-page-outer-new .lp-booking-dt p,
.lp-checkout-page-outer-new .lp-persons p,
.lp-checkout-page-outer-new .lp-duration p {
  margin-bottom: 0;
  line-height: 25px;
}

.lp-checkout-price-currency-outer {
  position: absolute;
  bottom: 26px;
  right: 30px;
}

.lp-checkout-price-currency {
  display: inline-block;
  width: 100%;
  text-align: right;
  font-weight: 700;
}

.lp-user-listings.active-checkout-listing.lp-checkout-wrapper-new-without-radius {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.lp-user-listings.active-checkout-listing {
  border: 1px solid #00c2ff !important;
  background: #e0f8ff;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.lp-user-listings.active-checkout-listing:nth-last-child(2) {
  border-bottom: 1px solid #00c2ff !important;
}

.lp-col-outer {
  border: 1px solid #ececec;
  padding: 0 0 15px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background: #fff;
}

.lp-rightbnk-transfer-msg-new {
  padding: 0;
  border: 0;
}

.lp-rightbnk-transfer-msg-new label {
  cursor: pointer;
}

.lp-rightbnk-transfer-msg-new .lp-method-wrap {
  border-bottom: 1px solid #ececec;
  padding: 15px 15px;
}

.lp-rightbnk-transfer-msg-new .lp-method-wrap:last-child {
  border-bottom: none;
}

.lp-listing-form .lp-rightbnk-transfer-msg-new .radio.radio-danger {
  width: 20px;
  height: 20px;
  background: #fff;
  margin: 0 0 0 0;
  top: 50%;
  position: relative;
  margin-top: 13px;
}

.lp-listing-form .lp-rightbnk-transfer-msg-new .radio.radio-danger label {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  line-height: 0;
  text-align: center;
  top: 50%;
  float: none;
}

.lp-listing-form
  .lp-rightbnk-transfer-msg-new
  input[type="radio"]:checked
  + label:before {
  width: 12px;
  height: 12px;
  top: -6px !important;
  margin: -6px 0 0 -6px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.lp-rightbnk-transfer-msg-new .lp-method-wrap > label img {
  left: inherit;
  right: 0;
  margin-top: 0;
  position: relative;
  width: inherit;
}

.lp-rightbnk-transfer-msg-new .lp-method-wrap p {
  margin: 0;
  display: inline-block;
  padding-left: 30px;
  position: absolute;
  top: 50%;
  margin-top: -13px;
}

.lp-checkout-payment-img {
  width: 75px;
  display: inline-block;
  float: right;
  text-align: right;
}

.lp-checkout-payment-img img {
  width: 100%;
  height: auto;
}

.lp_payment_step_next {
  width: 90%;
  display: block;
  margin: 0 auto;
  background: #bbc2d2;
  border: none;
  padding: 10px 0;
  color: #fff;
  cursor: not-allowed !important;
  border-radius: 5px;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp_payment_step_next.active {
  background: #41a6df;
  cursor: pointer !important;
}

.lp_payment_step_next.active:hover {
  background: #363f48;
}

.lp-onoff-switch-checkbox {
  width: 50px;
  display: inline-block;
  float: left;
}

.lp-text-switch-checkbox {
  display: inline-block;
  float: left;
  margin-top: 3px;
  padding-left: 20px;
}

.switch-checkbox-label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin: 0;
}

.switch-checkbox-label input {
  display: none;
}

.switch-checkbox-styling {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e7edf3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 34px;
}

.switch-checkbox-styling::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
}

input:checked + .switch-checkbox-styling {
  background-color: #41a6df;
}

input:focus + .switch-checkbox-styling {
  box-shadow: 0 0 1px #41a6df;
}

input:checked + .switch-checkbox-styling::before {
  -webkit-transform: translateX(27px);
  -ms-transform: translateX(27px);
  transform: translateX(27px);
}

.lp-checkout-coupon-code {
  display: inline-block;
}

.lp-checkout-recurring-wrap {
  display: none;
}

.lp-checkout-coupon-outer {
  width: 100%;
  border: 1px solid #ececec;
  background: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top: 0;
  margin-top: -6px;
  display: none;
}

.checkout-padding-top-bottom {
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
}

.apply-coupon-text-field {
  display: inline-block;
  float: right;
  padding-right: 0;
}

.checkout-padding-top-bottom .col-md-6 {
  padding-left: 0;
}

.coupon-text-field {
  display: inline-block;
  float: left;
  width: 49%;
  border: 1px solid #dce0e2;
  height: 30px;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 2%;
}

.coupon-apply-bt {
  display: inline-block;
  float: left;
  width: 49%;
  height: 30px !important;
  font-weight: normal !important;
  padding: 0;
  text-align: center;
  line-height: 30px;
  margin: 0 !important;
  border-radius: 5px;
  color: #fff;
  background: #41a6df;
  border: 0;
}

.coupon-apply-bt:hover {
  background: #363f48;
}

.checkout-item-price-total {
  display: inline-block;
  width: 100%;
}

.checkout-item-price-total li {
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid #ececec;
}

.checkout-item-price-total li:first-child {
  border-top: 1px solid #ececec;
}

.checkout-item-price-total li:last-child {
  border-bottom: 0;
}

.checkout-item-price-total li span.item-price-total-left {
  float: left;
}

.checkout-item-price-total li span.item-price-total-right {
  float: right;
}

.terms-checkbox-container {
  margin-bottom: 20px;
  margin-left: 20px;
}

.lp-new-term-style {
  display: none;
}

.terms-checkbox-container input:checked ~ .filter_checkbox_checkmark {
  background: #fafbfb;
  color: #fafbfb;
}

.terms-checkbox-container .filter_checkbox_checkmark::after {
  color: #fff;
}

.terms-checkbox-container input:checked ~ .filter_checkbox_checkmark::after {
  color: #42a7df;
}

.lp-checkout-transaction-pending {
  display: block;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding: 15px 0;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(224, 224, 224, 1);
  -moz-box-shadow: 0 1px 5px 0 rgba(224, 224, 224, 1);
  box-shadow: 0 1px 5px 0 rgba(224, 224, 224, 1);
}

.lp-checkout-transaction-pending span {
  display: block;
  text-align: center;
}

.lp-checkout-transaction-pending span i {
  border: 1px solid #82d428;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 13px;
  font-weight: 400;
  color: #82d428;
  margin-right: 15px;
}

.checkout-recipt-detil-inner {
  display: inline-block;
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 5px;
  background-color: #fff;
}

.recipt-download-print {
  display: block;
  background: #fafbfb;
  padding: 5px 15px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

#print-section-receipt {
  cursor: pointer;
}

.recipt-download-print span {
  display: inline-block;
}

.recipt-download-print span i {
  margin-right: 5px;
  font-size: 20px;
}

.recipt-download-print span p {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 10px;
}

.recipt-download-print span img {
  width: 25px;
}

.receipt-content-info {
  display: block;
  background: #e0f4c9;
  border: 1px solid #b9e687;
  padding: 15px 25px;
}

.receipt-content-info p {
  margin-bottom: 10px;
}

.receipt-content-info p:last-child {
  margin-bottom: 0;
}

.receipt-info-padding {
  padding-top: 15px;
  padding-bottom: 30px;
}

.receipt-info-padding h2 {
  font-weight: 400;
  margin-top: 15px;
}

.receipt-total-amount {
  display: block;
  padding: 0 15px;
}

.receipt-total-amount li {
  width: 100%;
  display: inline-block;
}

.receipt-total-amount li span.item-price-total-left {
  float: left;
}

.receipt-total-amount li span.item-price-total-right {
  float: right;
}

.receipt-total-amount li {
  margin-bottom: 10px;
}

.receipt-total-amount li:first-child {
  border-bottom: 1px solid #ececec;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.receipt-total-amount li:nth-child(3) {
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sucess-transaction-inner-section {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.sucess-transaction-inner-section i {
  width: 50px;
  height: 50px;
  border: 1px solid #82d428;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  color: #82d428;
}

.sucess-transaction-inner-section p {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 20px;
}

.success-image-smiley {
  display: block;
  text-align: center;
  padding: 60px 0 80px;
}

.checkout-dashboard-bt {
  width: 250px;
  text-align: center;
  margin: 0 auto;
  display: block;
  border: 1px solid #ececec;
  padding: 15px 0;
  text-transform: uppercase;
  border-radius: 5px;
}

.fail-transaction-inner-section i {
  color: #dd2043;
  border: 1px solid #dd2043;
}

.lp-standerd-exlusiv button {
  padding: 6px 30px;
}

.lp-standerd-exlusiv button i {
  margin-right: 7px;
}

.lp-standerd-exlusiv-outer {
  width: 100%;
  text-align: center;
  display: inline-block;
}

.lp-standerd-exlusiv span {
  display: block;
  margin-bottom: 10px;
}

.lp-standerd-exlusiv .isactive {
  background: #42a7df;
  color: #fff;
  box-shadow: none;
}

.exclusivebutto {
  box-shadow: none;
}

.lp-standerd-exlusiv .isactive:focus,
.exclusivebutto:focus,
.standardbutto:focus {
  outline: none !important;
}

.exclusivebutto:active,
.standardbutto:active {
  box-shadow: none;
}

.lp_button_switcher span.active {
  color: #42a7df !important;
}

.vertical_view .page-header {
  margin-bottom: 40px;
  margin-top: 0;
}

.lp-plan-view-border {
  display: inline-block;
  width: 100%;
}

.pricing_plans_v3 .view_version_3 {
  margin-bottom: 60px;
}

.pricing_plans_v2.pricing_plans_v5 .view_version_2 .lp-price-main {
  margin-bottom: 30px;
}

.pricing_plans_v2.pricing_plans_v5 .view_version_2 .lp-price-free {
  margin-bottom: 25px;
}

.pricing_plans_v2.pricing_plans_v5 .view_version_2 .price_free_v2 {
  margin-bottom: 30px;
}

.pricing_plans_v2.pricing_plans_v5 .view_version_2 .lp-title.lp-overlay-pricing,
.pricing_plans_v3 .view_version_3 .lp-title.lp-overlay-pricing,
.lp-title.lp-overlay-pricing {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.view_version8 .tooltip_price_features .lp_tooltip_text2 {
  left: -100px;
}

.lp-horizontial-specific {
  position: relative;
}

.lp-list-form-outer-postion {
  display: none;
  position: absolute;
  left: 60%;
  top: 0;
  z-index: 99;
}

.horizontal_choose_button .lp-list-form-outer-postion {
  display: block;
}

.lp-horizontial-specific-height {
  min-height: 480px;
}

/* New Update 2.7.0 */

.horizontal_view_list .lp-hot {
  background: none;
  display: inline-block;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 40px;
  height: 55px;
  z-index: 999;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
}

.checkout-padding-top-bottom .lp-checkout-coupon-code {
  float: left;
}

.lp-center-border {
  border-top: 1px solid #f7f7f7;
  margin-top: 20px;
  padding-top: 10px;
}

.lp-bottom-border-se {
  border-bottom: 1px solid #f7f7f7;
  padding-bottom: 20px;
}

header.header-without-topbar
  .lp-menu-bar
  .left-section-menu-outer
  .menu
  ul
  li:hover
  > ul.sub-menu {
  left: 0;
}

.left-section-menu-outer .lp-menu ul.sub-menu::after {
  left: 34px;
}

#add-listing-st {
  display: inline-block;
  width: 100%;
  float: right !important;
  text-align: right;
}

.lp-joinus-icon-outer-st {
  float: right;
}

.lp-logo-st {
  margin-top: 40px;
}

.header-container.lp-header-bg
  .lp-customize-header-outer
  .lp-menu-container
  .lp-menu
  ul
  li {
  padding-right: 20px;
}

.lp-customize-header-outer {
  width: 100%;
}

.left-section-menu-outer {
  display: inline-block;
  width: 100%;
  float: left;
}

.lp-header-full-width .left-section-menu-outer .lp-menu.menu {
  float: left;
}

.left-section-menu-outer .lp-menu-outer::after {
  content: none;
}

.lp-customizer-header-inner-wrap {
  display: inline-block;
}

.lp-logo-header-outer {
  width: 246px;
  padding: 0 15px 0 0;
  display: block;
  float: left;
  margin-top: 5px;
}

.lp-search-header-style-outer {
  position: relative;
  display: inline-block;
}

.lp-outer-menu-join-btn {
  display: inline-block;
  float: right;
}

.lp-menu-header-outer {
  padding: 0 35px;
  position: relative;
}

.lp-menu-header-outer::after {
  content: "|";
  position: absolute;
  right: -1px;
  top: 50%;
  margin-top: -10px;
  color: #1e262e;
}

.lp-menu-outer {
  position: relative;
}

.lp-nav-menu-after.lp-menu-outer::after {
  content: "|";
  position: absolute;
  right: -1px;
  top: 50%;
  margin-top: -2px;
  transform: translateY(-50%);
}

.lp-joinus-icon-outer {
  padding-left: 10px;
  display: inline-block;
}

#click-search-view {
  cursor: pointer;
  display: block;
  float: left;
  margin-top: 13px;
  font-size: 15px;
}

#click-search-view i {
  padding-right: 7px;
}

.outer-lp-search-section-header-view-still {
  overflow: visible;
}

.lp-search-section-header-view {
  width: 430px;
  background: #fff;
  position: absolute;
  z-index: 99;
  top: 4px;
  left: -1000px;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -o-transition: all 2s ease;
  -ms-transition: all 2s ease;
  transition: all 2s ease;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.42);
}

.active-section-header-view {
  left: 80px;
}

.lp-search-section-header-view::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fff;
  position: absolute;
  top: 50%;
  left: -8px;
  margin-top: -8px;
}

.lp-search-section-header-view-still {
  left: 0;
  border-left: 1px solid #f7f7f7;
  border-right: 1px solid #f7f7f7;
  box-shadow: none;
  position: relative;
}

.lp-search-section-header-view-still::before {
  content: none;
}

.lp-search-bar-header {
  display: block;
  padding: 0;
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.lp-search-bar-header .form-group.lp-suggested-search {
  width: 45%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.lp-search-bar-header .form-group.lp-suggested-search .input-group-addon,
.lp-search-bar-header .form-group.lp-location-search .input-group-addon {
  font-size: 12px;
  font-weight: 500;
  line-height: 45px;
  width: 45px;
}

.lp-search-bar-header input.dropdown_fields {
  width: 100%;
  padding: 0 10px 0 55px;
  border: 0;
  background: none;
  border-right: 0 !important;
  height: 46px;
  line-height: 46px;
}

.lp-search-bar-header .what-placeholder::after {
  content: none;
  position: absolute;
  right: 3px;
  left: initial;
  color: #1e262e !important;
  opacity: 1;
  top: 9px;
  margin-top: -9px;
  line-height: 18px;
  height: 18px;
}

.lp-search-bar-header .lp-location-search .ui-widget > i {
  left: 60px;
}

.lp-search-section-header-view-still
  .lp-search-bar
  .lp-location-search
  .ui-widget
  > i {
  left: 60px;
}

.lp-search-bar-header .form-group.lp-location-search {
  width: 45%;
}

.lp-search-bar-header
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  width: 180px !important;
  background: none;
}

.lp-search-bar-header
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  margin-left: 60px;
  line-height: 46px;
}

.lp-search-section-header-view-still
  .lp-search-bar-header
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  margin-left: 60px;
  line-height: 46px;
}

.lp-search-bar-header
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span:after {
  content: none;
}

.lp-header-search-button {
  position: relative;
}

.lp-header-search-button .lp-search-bar-right {
  position: absolute;
  right: -15px;
  top: -45px;
  color: #42a7df;
}

.lp-header-search-button .lp-search-bar-right .lp-search-btn:hover {
  background: none;
}

.lp-menu-header-outer ul li:last-child {
  padding-right: 0;
}

.lp-menu-header-outer ul li a {
  color: #1e262e;
}

.lp-join-now-header a,
.after-login-header ul li a {
  color: #1e262e;
}

.lp-join-now-header {
  line-height: 46px;
}

.lp-join-now-header span {
  width: inherit;
  height: auto;
  margin-top: 14px;
}

.lp-header-full-width .lp-add-listing-btn ul li a.header-list-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: 400;
  padding: 0;
  font-size: 13px;
  display: inline-block;
}

.lp-header-full-width .lp-add-listing-btn ul li a.header-list-icon-st7 {
  border-radius: 0;
}

.lp-add-listing-btn-header ul li a {
  background: #42a7df;
  border: 1px solid #42a7df;
  padding: 7px 20px;
  color: #fff;
  border-radius: 5px;
}

.lp-add-listing-btn-header ul li a i {
  font-size: 13px;
}

.lp-add-listing-btn-header-square ul li a {
  border-radius: 0;
}

.lp-add-listing-btn-header ul li a:hover {
  color: #fff !important;
}

.left-section-for-search-menu {
  width: 44%;
  display: inline-block;
  float: left;
}

.left-section-for-search-menu .lp-menu-header-outer {
  padding: 0;
}

.left-section-for-search-menu .lp-menu-header-outer::after {
  content: none;
}

.center-section-for-logo {
  width: 12%;
  display: inline-block;
  float: left;
}

.right-section-for-search-menu {
  display: inline-block;
  float: right;
}

.header-social-media-all {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding-right: 10px;
}

.header-social-media-all .lp-top-bar-social ul li a {
  color: #797979 !important;
}

.search-menu-signin-lisitngbtn-row {
  display: inline-block;
  width: 100%;
}

.search-menu-signin-lisitngbtn-row .lp-search-header-style-outer {
  display: inline-block;
  float: left;
}

.row-menu-center-area {
  display: inline-block;
  float: left;
}

.row-menu-center-area .lp-menu-header-outer {
  line-height: 46px;
}

.row-menu-center-area .lp-menu-header-outer::after {
  content: none;
}

.row-register-lisitng-btn-right {
  display: inline-block;
  float: right;
}

.search-menu-signin-lisitngbtn-row .lp-logo-header-outer {
  width: 100%;
  display: inline-block;
  padding: 0;
}

.search-menu-signin-lisitngbtn-row .lp-logo-header-outer .lp-logo {
  text-align: center;
}

.lp-home-banner-contianer .lp-search-bar-view1 {
  padding-bottom: 20px;
}

.lp-search-bar-view1 {
  border-radius: 0;
  padding: 20px 20px;
}

.lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search {
  width: 38%;
  margin-right: 20px;
  background: none;
  height: 46px;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-suggested-search
  #input-dropdown {
  margin-top: 0;
}

.lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-location-search {
  width: 38%;
  margin-right: 20px;
  background: none;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-drop {
  top: 42px;
}

.lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  border-bottom: 1px solid #dfe4ea;
  background: none;
  height: 42px;
  border-radius: 0 !important;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-location-search
  .chosen-drop,
.lp-home-banner-contianer
  .lp-search-bar-view3
  .form-group.lp-location-search
  .chosen-drop {
  top: 55px;
}

.lp-search-bar-view1 .form-group.lp-location-search {
  margin-left: -5px;
  border-radius: 0 0 0 0;
}

.lp-search-bar-view1 .form-group.lp-suggested-search {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.lp-search-bar-view1 .border-dropdown span::after {
  color: #fff;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  padding-left: 55px;
  border-radius: 0 0 0 0;
  min-width: initial;
  border-bottom: 1px solid #dfe4ea;
  color: #fff;
  height: 42px;
  line-height: 42px;
  width: 100% !important;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input::placeholder {
  color: #fff;
}

.header-filter .lp-location-search .ui-widget > i,
.lp-search-bar-view1 .lp-location-search .ui-widget > i::before {
  color: #fff;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  color: #fff;
  height: 42px;
  line-height: 42px;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span::after {
  right: 5px;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single {
  width: 100%;
}

.lp-search-bar-view1 .form-group.lp-suggested-search input {
  border-right: 0 !important;
}

.lp-search-bar-view1 .lp-suggested-search .input-group-addon.lp-border {
  width: 45px;
  text-align: left;
  color: #fff;
  height: 42px !important;
  line-height: 38px !important;
}

.lp-search-bar-view1 .form-group.lp-location-search .lp-where {
  width: 45px;
  color: #fff;
  height: 40px;
  line-height: 40px;
}

.lp-search-bar-view1 .lp-search-bar-right {
  border-radius: 0;
}

.lp-search-bar-view1 .lp-search-bar-right .lp-search-btn {
  font-weight: 400;
  border-radius: 0;
  padding: 0 30px 0 45px;
}

.lp-search-bar-view2 {
  text-align: center;
}

.lp-search-bar-view2 {
  background: transparent;
  padding-bottom: 0 !important;
}

.lp-search-bar-view2 .form-group.pull-right {
  float: none !important;
}

.lp-home-banner-contianer .lp-search-bar-view2 .form-group.lp-suggested-search {
  margin-right: 5px;
  height: 55px;
  line-height: 55px;
  background: #fff;
  width: 45%;
  z-index: 9;
}

.lp-home-banner-contianer .lp-search-bar-view2 .form-group.lp-location-search {
  margin-right: 0;
  height: 55px;
  background: #fff;
  width: 45%;
}

.lp-search-bar-view2 .lp-search-bar-right .lp-search-btn {
  padding: 10px 25px;
  height: 55px;
}

.lp-search-bar-view2 .lp-search-bar-right {
  height: 55px;
}

.lp-search-bar-view2 .lp-search-icon {
  left: 18px;
  top: 18px;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input::placeholder {
  color: #a6a6a6;
}

.lp-search-bar-view2 form i.cross-search-q {
  top: 24px;
}

.lp-search-bar-view2 .lp-suggested-search .input-group-addon.lp-border {
  text-align: center;
  width: 70px;
  height: 55px !important;
  line-height: 55px !important;
  color: #333;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  color: inherit;
}

.lp-search-bar-view2 .form-group.lp-location-search .lp-where {
  width: 70px;
  height: 55px;
  line-height: 55px;
  color: #333;
}

.header-filter .lp-location-search .ui-widget > i,
.lp-search-bar-view2 .lp-location-search .ui-widget > i::before {
  color: inherit;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  padding-left: 60px;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  text-align: left;
  height: 55px;
  line-height: 58px;
}

.lp-search-bar-view2
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  border-bottom: 0;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  border-bottom: 0;
  padding-right: 15px;
  color: #333;
}

.lp-search-bar-view2 .lp-search-bar-right .lp-search-btn {
  border: 1px solid transparent;
}

.lp-home-banner-contianer
  .lp-search-bar-view2
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span::after {
  right: 15px;
  color: #d3d3d3;
  top: 55%;
}

.lp-home-banner-contianer .lp-search-bar-view3 .form-group.lp-suggested-search {
  margin-right: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: 1px solid #dfe4ea;
}

.lp-search-bar-view3 .form-group.pull-right {
  margin-left: -4px;
}

.lp-search-bar-view3 .lp-search-bar-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.lp-search-bar-view3 .lp-search-bar-right .lp-search-btn {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.search-view-move-down .lp-search-bar-view3 .form-group.pull-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.lp-search-bar-view3 .lp-search-bar-right .lp-search-icon {
  color: #fff;
}

.lp-search-bar-view3 .lp-search-bar-right .lp-search-icon:hover {
  color: #fff;
}

.new-banner-view-category .lp-home-categoires {
  transform: translateY(0);
}

.new-banner-view-category {
  margin-top: 170px !important;
}

.new-banner-view-category.new-banner-view-category-st {
  margin-top: 100px;
}

.banner-arrow-st {
  display: none;
}

.new-banner-view-category .margin-bottom-60 {
  margin-bottom: 115px;
}

.new-banner-view-category .lp-home-categoires li {
  margin-right: 5px;
  width: 105px;
}

.new-banner-view-category .new-banner-category-view1 li a.lp-border-radius-5 {
  border-radius: 0;
}

.new-banner-view-category .new-banner-category-view1 li a,
.new-banner-view-category .new-banner-category-view li a,
.new-banner-view-category .new-banner-category-view3 li a {
  box-shadow: none;
}

.new-banner-view-category .new-banner-category-view1 li a:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.48);
}

.lp-home-banner-contianer-inner-new {
  position: relative;
  top: 40%;
}

.lp-home-banner-contianer-inner-new-search {
  transform: translateY(0);
  position: absolute;
  bottom: 0;
  top: initial;
}

.search-view-move-down {
  bottom: -25px;
}

.search-view-move-down-two {
  bottom: -37px;
}

.search-view-move-down-two .lp-search-bar {
  background: #363f48;
}

.search-view-move-down-two .lp-search-bar .lp-search-btn {
  background: #41a6df;
  color: #fff;
}

.search-view-move-down-two .lp-search-bar .lp-search-btn:hover {
  background: #fff;
  color: #41a6df;
}

.search-view-move-down-two .lp-search-bar .lp-search-bar-right .lp-search-icon {
  color: #fff;
}

.search-view-move-down-two
  .lp-search-bar
  .lp-search-bar-right:hover
  .lp-search-icon {
  color: #41a6df;
}

.search-view-move-down-two
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  border: 1px solid #dfe4ea;
}

.search-view-move-down-two
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single {
  border-radius: 0 !important;
}

.lp-home-banner-contianer
  .search-view-move-down-two
  .lp-search-bar-view1
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  border: 1px solid #dfe4ea;
  border-right: 1px solid #dfe4ea !important;
}

.search-view-move-down-two .lp-search-bar-view1 .form-inline {
  height: 42px;
}

.search-view-move-down-two
  .lp-search-bar-view1
  .lp-suggested-search
  .input-group-addon.lp-border {
  line-height: 40px !important;
  padding-left: 10px !important;
}

.lp-home-banner-contianer
  .search-view-move-down-two
  .lp-search-bar-view1
  .form-group.lp-suggested-search
  .lp-search-input.form-control.ui-autocomplete-input {
  padding-left: 55px;
}

.search-view-move-down-two
  .lp-search-bar-view1
  .form-group.lp-location-search
  .lp-where {
  padding-left: 10px;
}

.lp-home-banner-contianer
  .search-view-move-down-two
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span::after {
  right: 10px;
}

.search-view-move-down-two .lp-search-bar-view1 .lp-search-btn {
  height: 42px;
}

.search-view-move-down-two .lp-search-bar-view1 .lp-search-icon {
  top: 8px;
}

.search-view-move-down .lp-search-bar-view2 .form-group.lp-suggested-search,
.search-view-move-down .lp-search-bar-view2 .form-group.lp-location-search,
.search-view-move-down .lp-search-bar-view2 .form-group.pull-right {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32);
  z-index: unset;
}

.search-view-move-down .lp-search-bar-view3 .form-group.lp-location-search,
.search-view-move-down .lp-search-bar-view3 .form-group.pull-right {
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.32);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.32);
}

.lp-home-banner-contianer-inner-new-search .lp-search-description {
  margin-top: 0;
  position: absolute;
  transform: translateY(100%);
  width: 96%;
  bottom: -50px;
}

.home-categories-area .new-banner-category-view2 li a {
  background: none;
  box-shadow: none;
}

.home-categories-area .new-banner-category-view2 li a:hover {
  background: none;
}

.home-categories-area .new-banner-category-view3 li a {
  background: rgba(0, 0, 0, 0.7);
}

.home-categories-area .new-banner-category-view3 li a.lp-border-radius-5 {
  border-radius: 0;
}

.banner-category-mix-view2 {
  margin-top: 165px;
}

.banner-category-mix-view2 .margin-bottom-60 {
  margin-bottom: 85px;
}

.banner-view-cat-tranparent {
  top: 35%;
}

.banner-view-cat-tranparent-category .lp-home-categoires {
  -webkit-transform: translateY(-150%);
  -moz-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  -o-transform: translateY(-150%);
  transform: translateY(-150%);
}

.banner-view-cat-tranparent-category .margin-bottom-60 {
  margin-bottom: 0;
}

.home-categories-area .new-banner-category-view2 li a span p#cat-img-bg {
  margin: 0 0 7px 0;
  display: inline-block;
  width: 65px;
  height: 65px;
  background: #363f48;
  line-height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-categories-area .new-banner-category-view2 li a span p#cat-img-bg img {
  width: 30px;
  height: 30px;
  margin: 0 0 0 0;
}

.home-categories-area .banner-default-view-category1 li a.lp-border-radius-5,
.home-categories-area .banner-default-view-category3 li a.lp-border-radius-5 {
  border-radius: 0;
}

.home-categories-area .banner-default-view-category2 {
  margin-top: 10px;
}

.home-categories-area .banner-default-view-category2 li a {
  background: none;
  box-shadow: none;
}

.home-categories-area .banner-default-view-category2 li a:hover,
.home-categories-area .banner-default-view-category2 li a {
  background: none !important;
}

.lp-search-bar-view1 form #cities::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.lp-search-bar-view1 form #cities:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.lp-search-bar-view1 form #cities::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

.home-categories-area .banner-default-view-category2 li a span p#cat-img-bg {
  margin: 0 0 7px 0;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-categories-area
  .banner-default-view-category2
  li
  a
  span
  p#cat-img-bg
  img {
  width: 30px;
  height: 30px;
  margin: 0 0 0 0;
}

.home-categories-area .banner-default-view-category3 li a {
  background: rgba(0, 0, 0, 0.7);
}

.banner-view-cat-tranparent-category .lp-upper-cat-view1 li a,
.banner-view-cat-tranparent-category .lp-upper-cat-view2 li a,
.banner-view-cat-tranparent-category .lp-upper-cat-view4 li a {
  box-shadow: none;
}

.banner-view-cat-tranparent-category
  .lp-upper-cat-view2
  li
  a.lp-border-radius-5 {
  border-radius: 0;
}

.banner-view-cat-tranparent-category .lp-upper-cat-view2 li a {
  background: rgba(255, 255, 255, 0.2);
}

.banner-view-cat-tranparent-category .lp-upper-cat-view3 li a {
  background: none;
  box-shadow: none;
}

.banner-view-cat-tranparent-category .lp-upper-cat-view3 li a:hover {
  background: none;
}

.banner-view-cat-tranparent-category
  .lp-upper-cat-view3
  li
  a
  span
  p#cat-img-bg {
  margin: 0 0 7px 0;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner-view-cat-tranparent-category
  .lp-upper-cat-view3
  li
  a
  span
  p#cat-img-bg
  img {
  width: 30px;
  height: 30px;
  margin: 0 0 0 0;
}

.banner-view-cat-tranparent-category
  .lp-upper-cat-view4
  li
  a.lp-border-radius-5 {
  border-radius: 0;
}

.home-categories-area .lp-inside-search-view li a,
.home-categories-area .lp-inside-search-view1 li a,
.home-categories-area .lp-inside-search-view3 li a {
  box-shadow: none;
}

.home-categories-area .lp-inside-search-view1 li a.lp-border-radius-5,
.home-categories-area .lp-inside-search-view3 li a.lp-border-radius-5 {
  border-radius: 0;
}

.home-categories-area .lp-inside-search-view3 li a {
  background: rgba(0, 0, 0, 0.7);
}

.home-categories-area .lp-inside-search-view2 li a {
  background: none !important;
  box-shadow: none !important;
}

.home-categories-area .lp-inside-search-view2 li a:hover {
  background: none !important;
}

.home-categories-area .lp-inside-search-view2 li a span p#cat-img-bg {
  margin: 0 0 7px 0;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-categories-area .lp-inside-search-view2 li a span p#cat-img-bg img {
  width: 30px;
  height: 30px;
  margin: 0 0 0 0;
}

.footer-social-icons i {
  padding: 0px 10px;
  font-size: 18px;
}

.footer-style4 .footer-menu ul li {
  float: left;
  margin: 0 5%;
}

.footer-style4 .footer-menu ul li a {
  color: #fff !important;
}

.lp-footer4-copyrights {
  text-align: center;
  padding-top: 40px;
}

.lp-footer-bootom-border {
  border-top: none;
  padding: 20px 0;
}

.footer5-bottom-area .footer-social-icons {
  margin-top: 0;
}

.footer5-bottom-area .footer-social-icons li {
  margin-right: 10px;
}

.footer5-bottom-area .footer-social-icons li a img {
  width: 25px;
  height: 25px;
}

.footer6-bottom-area .footer-social-icons {
  margin-top: 0;
  float: right;
}

.footer7-bottom-area {
  padding-top: 60px;
}

.footer7-bottom-area .lp-footer-logo {
  float: right;
}

.footer7-bottom-area .copyrights {
  padding: 7.5px 0;
  display: block;
}

.footer-style8-bg-logo,
.footer8-bottom-area {
  background: #49b1de;
}

.footer-style8-bg-logo .lp-footer-logo {
  float: none;
  text-align: center;
}

.footer-style8-bg-logo .footer-menu {
  text-align: center;
  padding-top: 60px;
}

.footer-style8-bg-logo .footer-menu li a {
  border-bottom: 2px solid transparent;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.footer-style8-bg-logo .footer-menu li a:hover {
  border-bottom: 2px solid #000;
  color: #fff;
}

.footer8-bottom-area {
  padding: 20px 0;
}

.footer8-bottom-area .copyrights {
  text-align: center;
  display: block;
}

.footer9-bottom-area .footer-social-icons {
  margin-top: 0;
  float: right;
  padding-top: 2px;
  padding-bottom: 2px;
}

.footer9-bottom-area .footer-menu {
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
}

.footer-aboutus {
  display: inline-block;
  width: 100%;
}

.footer-aboutus span {
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}

.footer-aboutus span,
.footer-aboutus p {
  color: #fff;
}

#footer-contact-us {
  float: right;
  padding: 10px 25px;
  border: 2px solid;
  border-radius: 30px;
  color: #fff;
  margin-top: 50px;
}

.footer10-bottom-area.lp-footer-bootom-border {
  padding: 35px 0 60px 0;
}

.footer10-bottom-area .container .row .col-md-3:first-child #footer-contact-us {
  float: left;
}

.footer10-bottom-area .container .row .col-md-3:nth-child(3) .lp-footer-logo {
  float: right;
}

.footer11-bottom-area .lp-footer-logo {
  float: right;
}

.footer11-bottom-area .container .row .col-md-6:first-child .lp-footer-logo {
  float: left;
}

.footer11-bottom-area
  .container
  .row
  .col-md-6:nth-child(2)
  .footer-social-icons {
  float: right;
}

.footer11-bottom-area .footer-social-icons {
  margin-top: 0;
  padding-top: 7px;
}

.footer11-bottom-area .footer-social-icons li {
  margin-right: 10px;
}

.footer11-bottom-area .footer-social-icons li a img {
  width: 25px;
  height: 25px;
}

.lp-no-title-subtitle {
  padding-top: 60px;
  display: inline-block;
}

.package-type-v9 {
  color: #000;
}

.lp-margin-top-case {
  padding-top: 40px;
}

.lp-style-wrap-border {
  border: 1px solid #dedede;
}

.page-style2-content-wrap .white-section.lp-style-wrap-border {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.border-bottom.lp-style-wrap-border::before {
  border-bottom: 0;
}

.white-section.lp-style-wrap-border {
  margin-bottom: 10px;
}

.page-style2-sidebar-wrap .quick_tip.lp-style-wrap-border {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-left: 0;
}

.lp-submit-sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.jFiler-input-text h3 i {
  display: block;
}

.hours-select > li > button.add-hours.lp-add-hours-st {
  height: 44px;
  line-height: 44px;
}

.hours-select > li > button.add-hours.lp-add-hours-st > span {
  font-size: 14px;
  display: block;
  line-height: 44px !important;
}

.lp-featur-st {
  display: inline-block;
  width: 100%;
}

.submit_new_style .form-group #features-by-cat > label.featuresBycat {
  font-weight: 600;
  color: #7f7f7f;
  margin-bottom: -10px;
}

.lp-no-title-subtitle {
  padding-top: 60px;
  display: inline-block;
}

.package-type-v9 {
  color: #000;
}

.lp-margin-top-case {
  padding-top: 40px;
}

.pricing_plans_v2.col-md-offset-2,
.pricing_plans_v3.col-md-offset-2,
.view_version8.col-md-offset-2,
.price-view-default.col-md-offset-2 {
  margin-left: 0;
}

.pricing_plans_v2.col-md-offset-2:first-child,
.pricing_plans_v3.col-md-offset-2:first-child,
.view_version8.col-md-offset-2:first-child,
.price-view-default.col-md-offset-2:first-child {
  margin-left: 16.66666667%;
}

.lp-search-header-style {
  display: inline-block;
  width: 455px;
}

div.lp_hid_this_activity {
  display: none;
}

.lpthisloading {
  font-size: 12px;
  position: absolute;
  bottom: 36px;
  right: 30px;
  display: none;
}

#lp_leadReply {
  position: relative;
}

.lp-read-message-inner:hover {
  cursor: pointer;
}

.lp-notifaction-area {
  display: block;
  width: 100%;
  position: relative;
  border-left: 15px solid #ccc;
  -webkit-box-shadow: 0 1px 5px 0 rgba(234, 236, 238, 1);
  -moz-box-shadow: 0 1px 5px 0 rgba(234, 236, 238, 1);
  box-shadow: 0 1px 5px 0 rgba(234, 236, 238, 1);
}

.lp-notifaction-error {
  border-left: 15px solid #ff4a7a;
}

.lp-notifaction-warning {
  border-left: 15px solid #fd0;
}

.lp-notifaction-success {
  border-left: 15px solid #73d500;
}

.lp-notifaction-quicktip {
  border-left: 15px solid #0093ff;
}

.lp-notifaction-area-outer {
  border: 1px solid #e9ebf2;
  border-left: 0;
  display: inline-block;
  width: 100%;
  padding: 20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.lp-notifi-hide {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fbfcfc;
  text-align: center;
}

.lp-notifaction-inner {
  display: inline-block;
}

.lp-notifaction-inner p {
  margin: 0;
}

.widget-box.business-contact.lp-lead-form-st .form-group {
  z-index: 0;
}

.form-group .lp-lead-select-text {
  display: block;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lp-lead-radio-container {
  display: inline-block;
  padding: 5px 35px 5px 10px;
  position: relative;
  border-radius: 5px;
  color: #797979 !important;
  font-weight: 500 !important;
  text-transform: capitalize;
  margin: 0 10px 5px 0;
  cursor: pointer;
  border: 1px solid #dedede;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lp-lead-radio-container.active-radio {
  border: 1px solid #41a6df;
}

.lp-lead-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.lp-lead-checkmark {
  position: absolute;
  top: 50%;
  right: 10px;
  height: 15px;
  width: 15px;
  margin-top: -7px;
  border-radius: 50%;
  border: 1px solid #a2a2a2;
}

.lp-lead-checkmark::after {
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  margin-top: -2.5px;
  border-radius: 50%;
}

.lp-lead-radio-container input:checked ~ .lp-lead-checkmark {
  border: 1px solid #41a6df;
}

.lp-lead-checkmark::after {
  content: "";
  position: absolute;
  background: #a2a2a2;
}

.lp-lead-radio-container input:checked ~ .lp-lead-checkmark::after {
  display: block;
  background: #41a6df;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  top: 50%;
  left: 50%;
}

.lp-lead-radio-container input:checked ~ .lp-lead-checkmark {
  width: 16px;
  height: 16px;
}

.form-group-icon,
.hidding-form-feilds .form-group {
  position: relative;
}

.form-group-icon i {
  font-size: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -7px;
  color: #b2b2b2;
}

.hidding-form-feilds .form-group input[type],
.hidding-form-feilds .form-group textarea {
  background-color: #fff;
}

.hidding-form-feilds .form-group input[type="file"] {
  border: 0;
  padding-left: 0;
  padding-right: 0;
}

.form-group .jFiler-input-choose-btn.blue.lp-red {
  color: #f25f5c;
  border: 1px solid #f25f5c;
}

.hidding-form-feilds .form-group input[type="text"]:focus,
.hidding-form-feilds .form-group input[type="email"]:focus,
.hidding-form-feilds .form-group textarea:focus,
.hidding-form-feilds .form-group select:focus {
  -webkit-box-shadow: 0 3px 5px 0 rgba(223, 223, 223, 1);
  -moz-box-shadow: 0 3px 5px 0 rgba(223, 223, 223, 1);
  box-shadow: 0 3px 5px 0 rgba(223, 223, 223, 1);
  border-left: 3px solid #f25f5c;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hidding-form-feilds .form-group.input-group.date {
  width: 100%;
  position: relative;
}

.hidding-form-feilds .form-group.input-group.date .input-group-addon {
  padding: 0;
  background: none;
  width: 100%;
  position: relative;
}

.hidding-form-feilds .form-group.input-group.date .input-group-addon i {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -7px;
  z-index: 9;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top {
  z-index: 999;
}

.hidding-form-feilds .form-group.input-group.date .input-group-addon i {
  font-size: 14px;
  color: #b2b2b2;
}

.hidding-form-feilds .form-group span#name7::after,
.hidding-form-feilds .form-group span#phone7::after {
  content: "\f007";
  font-family: FontAwesome;
  font-size: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -10px;
  color: #b2b2b2;
}

.hidding-form-feilds .form-group span#phone7::after {
  content: "\f095";
}

.lp-lead-check-container {
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #dedede;
  padding: 5px 10px 5px 35px;
  margin-right: 10px;
  margin-bottom: 5px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500 !important;
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lp-lead-check-container.active-checkbox {
  border: 1px solid #41a6df;
}

.lp-lead-check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.lp-lead-check-checkmark {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 10px;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border: 1px solid #a2a2a2;
}

.lp-lead-check-container input:checked ~ .lp-lead-check-checkmark {
  border: 1px solid #41a6df;
}

.lp-lead-check-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.lp-lead-check-container input:checked ~ .lp-lead-check-checkmark::after {
  display: block;
}

.lp-lead-check-container .lp-lead-check-checkmark::after {
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #41a6df;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lp-lead-range-wraper {
  width: 100%;
  display: inline-block;
}

.lp-lead-range-wraper span {
  font-size: 14px;
}

.lp-lead-range-wraper span.range-start {
  display: inline-block;
  float: left;
  margin-top: 7px;
  padding: 4px 6px;
  margin-right: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  -moz-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
}

.lp-lead-range-wraper span.range-end {
  float: right;
  margin-top: 7px;
  padding: 4px 6px;
  border-radius: 5px;
  margin-left: 10px;
  -webkit-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  -moz-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
}

.lp-lead-range-wraper input.range-set {
  width: 100%;
}

.lp-lead-range-wraper span.range-c {
  position: initial;
  display: none;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 600;
  width: 100%;
  margin-left: 0;
}

.listing-second-view .widget-box.business-contact.lp-lead-form-st .user_text {
  background: #f6faff;
  padding: 10px 25px 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 0;
}

.lp-lead-form-st .user_text .author-social {
  margin-top: 15px;
}

.listing-second-view .widget-box.business-contact.lp-lead-form-st {
  padding: 0;
}

.listing-second-view
  .widget-box.business-contact.lp-lead-form-st
  .contact-form.quickform
  .margin-top-20 {
  margin-top: 25px;
}

.listing-second-view
  .widget-box.business-contact.lp-lead-form-st
  .contact-form.quickform {
  padding: 0 25px 25px;
}

.widget-box.business-contact.lp-lead-form-st
  .contact-form.quickform
  form.form-horizontal
  .form-group.pos-relative:hover
  i.lp-search-icon {
  color: #fff;
}

.lp-lead-range-wraper .range-slidecontainer {
  width: 70%;
  display: inline-block;
}

.lp-lead-range-wraper .range-slidecontainer .lp-range-slide {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  padding: 0 12px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #eef2f4;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.15, #b3c0ce),
    color-stop(0.15, #eef2f4)
  );
}

.lp-range-slide::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #41a6df;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  -moz-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  z-index: 9;
}

.lp-range-slide::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #41a6df;
  cursor: pointer;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #41a6df;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  -moz-box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  box-shadow: 0 0 5px 2px rgba(241, 242, 244, 1);
  z-index: 9;
}

.contact-form.quickform {
  position: relative;
}

.lp-lead-success-msg-outer {
  display: none;
  position: absolute;
  top: 0;
  left: 2.5%;
  width: 95%;
  height: 99%;
  background: rgba(255, 255, 255, 1);
  z-index: 459;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
}

.lp-lead-success-msg {
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -50px;
}

.lp-lead-success-msg p {
  font-size: 18px;
  text-align: center;
  color: #7f7f7f;
  margin: 0;
  padding: 0 50px;
}

.lp-lead-success-msg p img {
  display: block;
  text-align: center;
  margin: 0 auto 10px;
}

.lp-cross-suces-layout {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 16px;
  cursor: pointer;
}

.lp-lead-custom-file {
  display: inline-block;
  width: 100%;
}

.lp-lead-custom-file label.b-logo-img-label {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.lp-lead-custom-file label.b-logo-img-label p {
  display: inline-block;
  margin: 0;
  border-radius: 5px;
  border: 1px solid #dedede;
  padding: 5px 10px;
  margin-right: 10px;
}

.lp-lead-custom-file label.b-logo-img-label span {
  font-weight: 500;
}

.lp-notifaction-area {
  display: block;
  width: 100%;
  position: fixed;
  border-left: 15px solid #ccc;
  -webkit-box-shadow: 0 1px 5px 0 rgba(234, 236, 238, 1);
  -moz-box-shadow: 0 1px 5px 0 rgba(234, 236, 238, 1);
  box-shadow: 0 1px 5px 0 rgba(234, 236, 238, 1);
  bottom: -150px;
  transition: all 0.5s;
  z-index: 100;
  background-color: #fff;
  width: 550px;
  left: 50%;
  margin-left: -250px;
  text-transform: capitalize;
}

.lp-notifaction-area.active-wrap {
  bottom: 200px;
}

.lp-notifaction-error {
  border-left: 15px solid #ff4a7a;
}

.lp-notifaction-warning {
  border-left: 15px solid #fd0;
}

.lp-notifaction-success {
  border-left: 15px solid #73d500;
}

.lp-notifaction-quicktip {
  border-left: 15px solid #0093ff;
}

.lp-notifaction-area-outer {
  border: 1px solid #e9ebf2;
  border-left: 0;
  display: inline-block;
  width: 100%;
  padding: 20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.lp-notifi-hide {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fbfcfc;
  text-align: center;
}

.lp-notifi-icons {
  display: inline-block;
  float: left;
  margin-top: 0;
  margin-right: 20px;
  width: 35px;
  color: #b3c0ce;
  cursor: pointer;
}

.lp-notifi-icons img {
  width: 30px;
}

.lp-notifaction-area h4 {
  font-size: 18px;
}

.lp-notifaction-inner {
  display: inline-block;
}

.lp-notifaction-inner h4 {
  margin: 5px 0 10px 0;
}

.lp-notifaction-inner p {
  margin: 0;
}

.lp_popup_preview_invoice {
  display: none;
  position: absolute;
  left: 1;
  top: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  box-shadow: 1px 0 10px 0;
  -webkit-box-shadow: 1px 0 8px 0;
}

.lp-blank-section {
  display: inline-block;
  width: 100%;
  min-height: 900px;
  background: #fafbfb;
}

.blank-left-side {
  background: #fafbfb;
  text-align: center;
  padding: 100px 0;
}

.blank-left-side h1 {
  font-size: 26px;
  color: #44566c;
  margin-bottom: 10px;
}

.blank-left-side p {
  font-size: 16px;
  color: #8996a6;
  width: 365px;
  margin: 0 auto;
}

.blank-left-side .lp-add-new-btn.add-new-open-form {
  float: none;
  background: #b3c0ce;
  margin-top: 20px;
}

.blank-right-side {
  background: #fff;
  padding: 338px 0;
  -webkit-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
}

.blank-right-side p {
  text-align: center;
  padding: 0 30px;
  color: #d2d2d2;
  margin-top: 20px;
}

.blank-right-side p strong {
  display: block;
}

div.lp_user_stats_btn:hover {
  cursor: pointer;
}

#lp-announcement-form .lp-main-title .col-md-2 p {
  margin-left: 5px;
}

#lp-announcement-form .lp-add-new-btn {
  margin-top: -9px;
}

#lp-leadform .lp-add-new-btn {
  margin-top: -7px;
}

#lp-events .lp-add-new-btn,
.lp-coupns-form .lp-add-new-btn {
  margin-top: -7px !important;
}

#lp-menus .lp-add-new-btn {
  margin-top: -11px;
}

.lp-new-ad-compaign .lp-add-new-btn {
  margin-top: -12px;
}

#lp-menus .lp-add-menu-outer h5 {
  margin-top: 0;
}

#lp-menus .lp-menu-open {
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 9px -5px rgba(0, 0, 0, 0.75);
  border: 1px solid #fafbfb;
}

#lp-menus .lp-menu-container-outer {
  padding-left: 15px;
  padding-right: 15px;
}

#lp-listings .lp-left-panel-height {
  padding-top: 30px;
}

/*--------------*/

.lp_hide_general_plans .view_version8 .lp-price-main {
  background: #fff;
}

.listing_day_duration span:nth-child(2) {
  margin-bottom: 5px;
}

/*------------ claim form plans-----------*/

.lp-claim-plans .lp-standerd-exlusiv-outer,
.lp-claim-plans .lp-montly-annualy-text,
.lp-claim-plans .col-md-aa,
.lp-claim-plans .lp-no-title-subtitle {
  display: none;
}

.lp-claim-plans .padding-bottom-40 {
  padding: 30px 40px;
  margin: 0;
  width: 100%;
  background: #fff;
}

.lp-claim-plans .lp_hori_view_plan_left_section .lp-listprc::-webkit-scrollbar {
  display: none;
}

.lp-claim-plans .lp-listprc {
  font-size: 14px;
}

.lp-claim-plans .lp-listprc li {
  padding-bottom: 5px;
}

.lp-claim-plans .lp-listprc li span {
  font-size: 12px;
  color: #000;
}

.planclaim-page-popup.single-page-popup {
  width: 730px !important;
}

.md-modal.planclaim-page-popup.single-page-popup {
  top: 32%;
}

.md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st {
  top: 50%;
}

.lp-claim-plan-container {
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-claim-plan-container {
  /*-webkit-perspective: 1000;
    perspective: 1000;*/
}

.lp-plan-card {
  /*-webkit-transform-style: preserve-3d;
    -webkit-transition: all 1.0s linear;
    transform-style: preserve-3d;*/
  transition: all 1s linear;
}

.lp-claim-plan-container.active .lp-plan-card {
  /*-webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);*/
}

.lp-claim-plan-container.active .lp-plan-face.lp-plan-back {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease-in-out;
  -moz-transition: opacity 0.7s ease-in-out;
  -webkit-transition: opacity 0.7s ease-in-out;
}

.lp-plan-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.lp-plan-face.lp-plan-back {
  /*-webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background-color: #fff;*/
  opacity: 0;
  visibility: hidden;
}

.lp-claim-plan-container
  .lp-claim-plans
  .lp-secondary-choose.lp-claim-plan-btn {
  display: block !important;
}

.lp-claim-plan-container .lp-claim-plans .btn-second-hover.lp-secondary-choose {
  display: none;
}

.lp-claim-plans.active {
  display: none;
}

.lp-form-planclaim-st {
  background: #fff;
}

.lp-form-planclaim-st .claim-details h2 {
  text-align: left;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 6px;
}

.lp-form-planclaim-st .claim-details .form-group > label {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 11px;
  color: #9ea0a5;
}

.lp-signin-on-claim {
  font-size: 12px;
  color: #000;
  margin-top: 0;
  text-transform: capitalize;
}

.md-effect-3 #claimform.lp-form-planclaim-st .claim-details .form-group {
  text-align: left;
  margin-bottom: 0;
}

.md-effect-3
  #claimform.lp-form-planclaim-st
  .claim-details
  .form-group
  > select {
  margin-bottom: 15px;
  height: 38px;
  margin-top: 5px;
}

.md-effect-3
  #claimform.lp-form-planclaim-st
  .claim-details
  .form-group
  a.lp_want_to_check_plans {
  text-align: left;
  font-size: 16px;
}

.lp-form-planclaim-st .claim-details .form-group {
  display: inline-block !important;
  width: 100% !important;
}

.lp-form-planclaim-st .claim-details .form-group > label input {
  border: 1px solid #dedede;
  border-radius: 5px;
  float: left;
  line-height: 36px;
  height: 36px;
  margin-top: 5px;
  padding: 0 10px;
  width: 100%;
  font-size: 12px;
  font-weight: normal;
}

.lp-form-planclaim-st .claim-details .form-group > label textarea {
  margin-top: 5px;
  height: 52px;
  font-weight: normal;
  font-size: 12px;
}

#claimform.lp-form-planclaim-st .claim-details .form-group .lp-review-btn {
  color: #fff;
  text-transform: capitalize;
  width: 100%;
  border: 0;
  font-size: 14px;
  height: 38px;
  font-weight: 400;
  line-height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}

.lp-form-planclaim-st .col-md-7.col-xs-12.padding-0::before {
  content: none;
}

.lp-form-planclaim-st .col-md-5.col-xs-12.padding-0 .claim-text h3 {
  color: #fff !important;
  margin-top: 0;
}

.lp-form-planclaim-st .col-md-5.col-xs-12.padding-0 .claim-text p {
  color: #fff !important;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 3px;
}

#claimform.lp-form-planclaim-st
  .col-md-5.col-xs-12.padding-0
  .claim-details
  ul {
  border-bottom: 0;
  padding: 0 15px;
  margin-top: 20px;
}

#claimform.lp-form-planclaim-st
  .col-md-5.col-xs-12.padding-0
  .claim-details
  ul
  li {
  background: none !important;
  color: #fff;
  font-size: 12px;
}

#claimform.lp-form-planclaim-st
  .col-md-5.col-xs-12.padding-0
  .claim-details
  ul
  li
  i {
  color: #fff;
}

.lp-claim-plans .horizontal_view_list li label span,
.lp-claim-plans .per_user_per_listing_price span {
  font-size: 18px;
  line-height: 32px;
  text-transform: capitalize;
}

/*-------02-august---------*/

.claimform-box .lp-horizontial-specific-height {
  min-height: 290px !important;
  overflow: hidden;
}

.claimform-box .horizontal_view_list .lp-hot {
  width: 27px;
  right: 20px;
  left: auto;
}

.lp-secondary-choose.lp-claim-plan-btn {
  border: 1px solid #36af48 !important;
  margin: 10px 0;
  margin: 0 auto;
  margin-top: 0;
  border-radius: 5px;
  background: #36af48 !important;
  color: #fff;
  font-weight: 400 !important;
  font-size: 13px;
  width: 400px;
  text-transform: capitalize !important;
}

.lp-secondary-choose.lp-claim-plan-btn:hover {
  background: #36af48 !important;
  border: 1px solid #36af48 !important;
}

.lp-claim-form-check-circle {
  border-top: 1px solid #dedede;
  margin-top: 30px;
  padding-top: 20px;
  margin-bottom: 0;
}

.lp-claim-form-check-circle label {
  font-size: 12px;
  color: #000 !important;
  line-height: 20px;
}

.lp-claim-plans .lp_tooltip_text {
  left: -132px;
}

.lp-claim-plans .lp_hori_view_plan_left_section .horizontal_view_list {
  margin-bottom: 20px;
}

.lp-claim-plans .lp-list-form-outer-postion {
  right: 0 !important;
  border-left: 1px solid #dedede;
  padding-left: 40px;
  width: 300px;
  margin-left: 0;
  left: auto !important;
}

.lp-claim-plans .horizontal_choose_button .horizontial_view_width {
  border-top: 1px solid #dedede;
}

.lp-claim-plans .lp_hori_view_plan_left_section .lp-listprc {
  width: 100%;
  display: inline-block;
  height: 290px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.lp-claim-plans .horizontal_view_list {
  border: 1px solid #3b88dd;
  padding: 50px 25px !important;
}

.lp-claim-plans .horizontal_view_list li {
  position: relative;
}

.listing-page-sidebar .lp-widget .lp-claim-plans ul li {
  background: none;
  border: 0;
  padding: 0;
}

.listing-page-sidebar .lp-widget .lp-claim-plans .lp-listprc li {
  padding-bottom: 5px;
}

.lp-claim-plans .horizontal_choose_button .horizontal_view_list {
  background: #d8e7f8;
}

.lp-claim-plans .per_user_per_listing_price p {
  margin-top: 15px !important;
  font-size: 12px !important;
}

#claimform.lp-form-planclaim-st
  .col-md-5.col-xs-12.padding-0
  .claim-details
  ul
  li
  i {
  display: inline-block;
  float: left;
  margin-top: 1px;
  margin-right: 5px;
}

#claimform.lp-form-planclaim-st
  .col-md-5.col-xs-12.padding-0
  .claim-details
  ul
  li
  p {
  display: inline-block;
  float: left;
  width: 94%;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 16px;
  color: #fff !important;
}

.lp-listing-leadform-inner .form-horizontal .lp-leadform-customizer-st3 {
  padding: 0 20px;
}

.lp-listing-leadform-inner
  .form-horizontal
  .lp-leadform-customizer-st3
  .form-group {
  margin-left: 0;
  margin-right: 0;
}

.lp-listing-leadform-inner {
  position: relative;
}

/* on 1st auguest */

.lp-ad-step-two {
  display: none;
}

.lp_campaign_invoice_pmethod,
.lp_campaign_preview {
  display: none;
}

/*update profile page*/

.lp-update-profile-container .lp-ad-click-outer {
  min-height: 900px !important;
}

.lp-update-profile-container .lp-coupons-form-inner .lp-user-adress {
  height: 50px;
}

.lp-upload-image-icon {
  z-index: 999999;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  line-height: 50px;
  background: #eef2f4;
  margin: 0 auto;
  right: 0;
  top: 45%;
  transform: translateY(-100%);
}

.lp-upload-image-icon .fa {
  font-size: 25px;
  color: #0e98fe;
  line-height: 50px;
}

.lp-update-profile-container .lp-coupons-form-inner .jFiler-input-dragDrop {
  min-height: 368px !important;
}

.lp-update-profile-container .dashboard-upload-field .frontend-button {
  min-height: 368px !important;
}

.lp-update-profile-container .lp-coupns-btns {
  background-color: #42a7df;
  color: #fff;
}

.lp-update-profile-container .tab-header {
  margin-bottom: 20px !important;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-top: 15px;
  width: 100%;
  background: #eef2f4;
  margin-top: -15px !important;
  margin-left: -30px !important;
  width: 110%;
}

.lp-update-profile-container .tab-header h3 {
  color: #44566c !important;
  font-size: 18px;
  margin: 0;
  width: 100%;
}

.lp-update-profile {
  padding-left: 30px;
  padding-right: 30px;
}

.lp-filter-search-listing {
  color: #44566c;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 9px 18px;
  border: 1px solid #f0f1f2;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  vertical-align: top;
}

.lp-filter-search-listing:hover {
  color: #fff;
  background: #b3c0ce;
}

.lp_stats_duration_filter {
  display: inline-block;
}

.morris-hover.morris-default-style {
  border-radius: 4px !important;
}

.morris-hover.morris-default-style .morris-hover-row-label,
.morris-hover.morris-default-style .morris-hover-point {
  margin: 0 !important;
}

#lp-listings .panel-heading .text-center {
  text-align: left;
}

#lp-listings .panel-body .lp-main-title {
  padding: 0 15px;
}

.lp-rating-stars-outer {
  border: 1px solid #dedede;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  padding: 1px 4px;
  display: inline-block;
  float: left;
  height: 23.2px;
}

.lp-listing-stars .lp-rating-stars-outer .lp-star-box {
  border: 0;
}

.lp-listing-review .lp-review-right .lp-rating-num.num-level1,
.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg.num-level1,
.lp-listing-title .lp-listing-title-rating .lp-rating-avg.num-level1 {
  background-color: rgb(222, 145, 71) !important;
}

.lp-listing-review .lp-review-right .lp-rating-num.num-level2,
.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg.num-level2,
.lp-listing-title .lp-listing-title-rating .lp-rating-avg.num-level2 {
  background-color: rgb(222, 196, 53) !important;
}

.lp-listing-review .lp-review-right .lp-rating-num.num-level3,
.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg.num-level3,
.lp-listing-title .lp-listing-title-rating .lp-rating-avg.num-level3 {
  background-color: rgb(197, 222, 53) !important;
}

.lp-listing-review .lp-review-right .lp-rating-num.num-level4,
.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg.num-level4,
.lp-listing-title .lp-listing-title-rating .lp-rating-avg.num-level4 {
  background-color: rgb(115, 207, 66) !important;
}

.lp-listing-stars .lp-star-box.filled.level1,
.lp-listing-stars .lp-star-box.filled.level1 i {
  color: rgb(222, 145, 71) !important;
}

.lp-listing-stars .lp-star-box.filled.level2,
.lp-listing-stars .lp-star-box.filled.level2 i {
  color: rgb(222, 196, 53) !important;
}

.lp-listing-stars .lp-star-box.filled.level3,
.lp-listing-stars .lp-star-box.filled.level3 i {
  color: rgb(197, 222, 53) !important;
}

.lp-listing-stars .lp-star-box.filled.level4,
.lp-listing-stars .lp-star-box.filled.level4 i {
  color: rgb(115, 207, 66) !important;
}

.lp-no-rating-stars-outer .lp-star-box2 {
  line-height: initial;
  border: solid 0;
  height: 18px;
  width: auto;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  padding: 0;
}

.lp-no-rating-stars-outer {
  border-radius: 2px !important;
  background: #f5f5f5;
  height: 19.2px;
}

.lp-no-rating-stars-outer:hover {
  background: #f5f5f5;
}

.lp-no-rating-stars-outer .lp-star-box2 i {
  color: #d3d3d3;
}

.lp-no-rating-stars-outer.simptip-position-top.simptip-movable:after {
  border-radius: 2px;
}

.lp-new-grid-bottom-button ul li {
  text-align: center;
  width: 33.3%;
  float: left;
}

.lp-new-grid-bottom-button ul li p,
.lp-new-grid-bottom-button ul li a {
  font-size: 13px;
  color: #797979;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  line-height: 30px;
}

.lp-new-grid-bottom-button ul li a {
  display: block;
}

.lp-new-grid-bottom-button ul li:hover {
  cursor: pointer;
}

.lp-new-grid-bottom-button ul li {
  border-right: 1px solid #dedede;
}

.list-style .lp-new-grid-bottom-button ul {
  border-radius: 3px;
  overflow: hidden;
}

.lp-new-grid-bottom-button ul {
  border: 1px solid #dedede;
  border-top: 0;
  border-right: 0;
}

.lp-new-grid-bottom-button ul li .fa {
  margin-right: 5px;
}

.lp-new-grid-bottom-button ul li:hover {
  background: #f5f5f5;
}

.list-style .lp-rating-stars-outer {
  margin-bottom: 9px;
}

.list-style .lp-ann-btn {
  margin-top: 0;
  margin-bottom: 6px;
  float: left;
  position: relative;
}

.lp-bottom-left-full-outer .lp-listing-price-range {
  float: left;
  margin-bottom: 6px;
  background-color: transparent !important;
}

.lp-bottom-left-full-outer .lp-listing-price-range-currency {
  margin-right: 5px;
}

.lp-bottom-left-full-outer .lp-listing-price-range span {
  font-size: 14px;
  color: #797979;
  line-height: 22px;
  font-weight: 600;
  display: inline-block;
  padding: 1px 0 !important;
}

.lp-ann-btn,
.lp-ann-btn:hover {
  color: #1e73be;
}

.li-listing-clock-outer {
  float: right;
  transition: all 0.2s ease-in-out;
  font-size: 12px;
  line-height: 18px;
}

.red-tooltip,
.red-tooltip:hover {
  color: #d0021b;
}

.green-tooltip,
.green-tooltip:hover {
  color: #73cf42;
}

.lp-bottom-left-full-outer {
  float: left;
}

.list_view_v2 .lp-new-grid-bottom-button ul li,
.grid_view6 .lp-new-grid-bottom-button ul li {
  border-top: 1px solid #dedede;
}

.list-style .lp-new-grid-bottom-button ul {
  margin-top: 10px;
}

.grid-style .lp-listing .lp-listing-bottom h4 {
  margin-bottom: 10px;
  line-height: 20px;
}

.count-box .help-text a.help {
  margin-top: 3px;
  color: #fff;
  border: 1px solid #fff;
}

.count-box.active .help-text a.help {
  color: #8697a8 !important;
  border: 1px solid #8697a8 !important;
}

.count-box .help-text {
  margin-left: 5px;
}

.count-box .help-tooltip > p {
  font-weight: 400 !important;
  color: #797979 !important;
}

.count-box .help-tooltip {
  background-color: #fff !important;
}

.count-box .help-tooltip:before {
  border-color: #fff transparent !important;
}

.lp-listing-stars .lp-star-box,
.lp-listing-stars .lp-star-box i {
  color: #d3d3d3 !important;
}

.lp-sorting-filter-outer li {
  font-size: 14px;
  display: inline-block;
  margin-right: 15px;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
  color: #797979;
  line-height: 20px;
}

.lp-sorting-filter-outer li:hover {
  cursor: pointer;
}

.lp-sorting-filter-outer span {
  color: #333;
  font-size: 14px;
  margin-right: 20px;
  font-weight: 500;
}

.lp-sorting-filter-outer li .fa {
  margin-right: 5px;
  float: left;
  width: 14px;
  line-height: 20px;
  margin-top: 0 !important;
  text-align: center;
  float: none !important;
  display: inline-block;
}

.lp-sorting-filter-outer li a {
  line-height: 20px !important;
}

.lp-checkout-wrapper-new .lp-user-listings {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 5px;
}

.lp-tranfer-info {
  font-size: 14px;
}

.lp-sidebar .widget_listingpro_widget {
  padding: 0;
}

.lp_confirmation .list-style-none.list-st-img {
  text-align: right;
  display: block;
  padding-right: 10px;
}

.lp_confirmation .list-style-none.list-st-img li {
  text-align: center;
  margin: 0 7px 0 0;
  display: inline-block;
  border-radius: 3px;
}

.lp_confirmation .list-style-none.list-st-img li a.edit-list {
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  padding: 10px 15px;
  line-height: 16px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  background: #0292ff;
}

.lp_confirmation .list-style-none.list-st-img li a.lp-pay-publish-btn {
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  padding: 10px 15px;
  line-height: 16px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  background: #37bd3c;
}

.lp_confirmation .list-style-none.list-st-img li a.lp-pay-publish-btn:hover {
  background: #1a7c1e;
}

.lp_confirmation .list-style-none.list-st-img li a.lp-pay-publish-btn i {
  margin-right: 10px;
}

.unhidebar-section {
  display: none;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: rgba(61, 81, 99, 0.9);
  position: fixed;
  bottom: 0;
  left: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}

.unhidebar-section i {
  color: #fff;
  font-size: 16px;
}

.list-style .lp-listing .lp-listing-top-thumb img {
  height: 153px;
}

.lp_confirmation .list-style-none.list-st-img li a.edit-list span i {
  margin-right: 10px;
}

.lp_confirmation .list-style-none.list-st-img li input {
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  padding: 10px 15px 10px 35px;
  line-height: 16px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  background: #00c3c6;
  border: 0;
}

.lp_confirmation .list-style-none.list-st-img li:hover {
  border: 0;
  background: 0;
}

#lp_recheck {
  position: relative;
}

#lp_recheck span {
  position: absolute;
  top: 8px;
  left: 10px;
  color: #fff;
}

.li-listing-clock-outer {
  margin-top: 6px;
}

.lp-features-filter .col-md-2 {
  padding-right: 15px;
  padding-left: 15px;
}

.widget-box.viewed-listing > article > .details .lp-ann-btn {
  margin-top: 1px;
  margin-bottom: 1px;
}

.widget-box.viewed-listing
  > article
  > .details
  .lp-listing-stars
  .lp-rating-num {
  height: 15px;
  line-height: 15px;
  font-size: 11px;
  padding: 1px 5px;
  display: inline-table;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 2px;
}

.widget-box.viewed-listing > article > .details .lp-listing-stars {
  line-height: 18px;
  margin-top: 7px;
  margin-bottom: 4px;
}

.lp-rating-num2 {
  line-height: 18px;
  font-size: 13px;
  display: inline-table;
  vertical-align: middle;
}

.lp-rating-num-first {
  line-height: 24px;
}

.widget-box.viewed-listing .lp-recent-listing-outer {
  margin-bottom: 0;
  border: 1px solid #dedede;
  padding: 10px;
  border-bottom: 0;
}

.widget-box.viewed-listing .lp-recent-listing-outer:last-child {
  border-bottom: 1px solid #dedede;
}

.lp-confi-bottom-bar {
  display: inline-block;
  float: left;
  color: #fff;
  padding-left: 10px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 12px;
}

.lp-confi-bottom-bar i {
  margin-right: 5px;
  font-size: 14px;
}

.col-md-5.lp-menu-container.col-xs-12 .lp-search-header-style {
  width: 100%;
}

.col-md-5.lp-menu-container.col-xs-12 .lp-search-section-header-view {
  width: 100%;
}

.col-md-5.lp-menu-container.col-xs-12
  .lp-search-header-style-outer.lp-customizer-header-inner-wrap {
  position: relative !important;
}

.lp-bottom-with-map-back .form-group.lp-location-search .lp-where {
  padding: 0 18px;
}

.listing-page-sidebar .lp-widget ul li {
  border-bottom: 1px solid;
}

.listing-page-sidebar .lp-widget ul li:last-child {
  border-bottom: 0 solid;
}

.lp-activity .lp-rating-stars-outer,
.lp-rating-stars-outer {
  line-height: 15px;
}

.lp-review-right-top .lp-rating-stars-outer {
  line-height: 17px;
}

.lp-multi-star-wrap:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: -9px;
  right: 15px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.lp-dash-search-stats-outer {
  position: relative;
  display: inline-block;
  float: right;
  margin-left: 5px;
}

.lp-dash-search-stats-inner {
  border: 1px solid #e9ebf2;
  display: none;
  width: 350px;
  border-radius: 5px;
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 99;
  background: #fff;
  padding: 7px;
}

.lp-dash-search-stats {
  display: inline-block;
  border: 1px solid #e9ebf2;
  border-radius: 5px;
  height: 48px;
  width: 100%;
}

.lp-dash-search-stats-inner::after {
  content: "";
  width: 0;
  height: 0;
  z-index: 99;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: -10px;
  right: 12px;
}

.lp-dash-search-stats-inner::before {
  content: "";
  width: 0;
  height: 0;
  z-index: 99;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e9ebf2;
  position: absolute;
  top: -11px;
  right: 12px;
}

.lp-dash-search-stats .select-dash {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 0 5px 0 60px;
  color: #b3c0ce;
}

.lp-dash-search-stats .select-dash::placeholder {
  color: #b3c0ce;
}

.lp-dash-search-stats i {
  position: absolute;
  top: 50%;
  left: 35px;
  font-size: 16px;
  margin-top: -8px;
  color: #b3c0ce;
}

.lp-dash-search-stats .select2-container {
  width: 100%;
}

.lp-dash-search-stats .select2-dropdown {
  position: relative;
  left: 0;
  display: inline-block;
  width: 100%;
}

.lp-ad-details-outer p {
  position: relative;
}

.lp-ad-details-outer p::before {
  content: "";
  position: absolute;
  background: #aae252;
  top: 50%;
  margin-top: -5px;
  left: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: none;
}

.lp-categories-abs2 > .row {
  margin: 0 10px;
}

.lp-section-title-container {
  padding-left: 15px;
  padding-right: 15px;
}

.lp-listing-timings .lp-today-timing .lp-timing-status.status-close {
  color: #d0021b;
}

.lp-dot-extra-buttons .md-close i {
  background: none;
  background: none;
  width: initial;
  right: 11px;
  color: #4a5b6d;
}

.lp-dot-extra-buttons .md-close i:hover {
  background: none !important;
}

.listing-page-sidebar .lp-event-image-container {
  border-radius: 0;
}

/*update profile page end*/

.white-section .white-section-heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  border-bottom: solid 1px #dedede;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 5px;
}

.hours-select > li > button.add-hours {
  background-color: transparent !important;
}

.lsiting-submit-faq-tabs .ui-tabs-nav {
  display: none;
}

#tabsbtn.style2-tabsbtn {
  background-color: transparent;
  text-transform: capitalize;
}

.lsiting-submit-faq-tabs .faq-btns {
  right: 0;
}

.lsiting-submit-faq-tabs.ui-tabs .ui-tabs-panel {
  display: block !important;
}

.fill-o-bot-wrap {
  background-color: #fff;
  border: solid 3px #ccc;
  border-radius: 50px;
  padding: 10px 50px;
  margin-bottom: 8px;
}

.fill-o-bot-wrap p {
  margin-bottom: 0;
}

.bot-on-tag-wrap {
  text-align: right;
}

.lptitle.fill-o-bot-active {
  border-color: blue;
}

.bootstrap-datetimepicker-widget table td span {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
}

.white-section .white-section-heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  border-bottom: solid 1px #dedede;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 5px;
}

.hours-select > li > button.add-hours {
  background-color: transparent !important;
}

.lsiting-submit-faq-tabs .ui-tabs-nav {
  display: none;
}

#tabsbtn.style2-tabsbtn {
  background-color: transparent;
  text-transform: capitalize;
}

.lsiting-submit-faq-tabs .faq-btns {
  right: 0;
}

.lsiting-submit-faq-tabs.ui-tabs .ui-tabs-panel {
  display: block !important;
}

.fill-o-bot-wrap {
  background-color: #fff;
  border: solid 3px #ccc;
  border-radius: 50px;
  padding: 10px 50px;
  margin-bottom: 8px;
}

.fill-o-bot-wrap p {
  margin-bottom: 0;
}

.bot-on-tag-wrap {
  text-align: right;
}

.lptitle.fill-o-bot-active {
  border-color: blue;
}

.white-section .white-section-heading,
.submit_new_style .form-group #features-by-cat > label.featuresBycat {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  border-bottom: solid 1px #dedede;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.hours-select > li > button.add-hours {
  background-color: transparent !important;
}

.lsiting-submit-faq-tabs .ui-tabs-nav {
  display: none;
}

#tabsbtn.style2-tabsbtn {
  background-color: transparent;
  text-transform: capitalize;
}

.lsiting-submit-faq-tabs .faq-btns {
  right: 0;
}

.lsiting-submit-faq-tabs.ui-tabs .ui-tabs-panel {
  display: block !important;
}

.fill-o-bot-wrap {
  background-color: #fff;
  border: 3px solid #82c2d5;
  padding: 15px 25px;
  margin-bottom: 8px;
  border-width: 3px;
  border-radius: 50px;
}

.fill-o-bot-wrap p {
  margin-bottom: 0;
}

.bot-on-tag-wrap {
  text-align: right;
}

.lptitle.fill-o-bot-active {
  border-color: blue;
}

.fill-o-bot-wrap .col-md-2 {
  width: 12%;
  padding-right: 0;
}

.fill-o-bot-wrap .col-md-7 {
  padding-left: 0;
}

.fill-o-bot-wrap .col-md-7 strong {
  color: #1e2a36;
  font-size: 20px;
  font-weight: bold;
}

.fill-o-bot-wrap .col-md-7 p {
  color: #1e2a36;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}

.fill-o-bot-wrap .col-md-3 {
  float: right;
}

span.bot-on-tag {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH8AAAAuCAYAAAABb8ZBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkRCRkE5MDU5QTI5MTFFODhDQzhCMUNDQkUyNTczRjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkRCRkE5MDY5QTI5MTFFODhDQzhCMUNDQkUyNTczRjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGREJGQTkwMzlBMjkxMUU4OENDOEIxQ0NCRTI1NzNGMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGREJGQTkwNDlBMjkxMUU4OENDOEIxQ0NCRTI1NzNGMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsrN2F4AAAK/SURBVHja7JxNSBRhGMdfa6MPy8WE8lJBHYQi6CRCHweNIESCukQQfRzs0EEooqIgwYquQXcvXgQhqA5hdfCDDh2UPpAKowLBoNRV00zL+j/Ms7Ftu7q7jjYzz/8HP2Z3Z3aYff/zzufOU9S385RT9sEGWAmLXX7E4DoXDH7BRA7TJXTabEzC72mf/YDjKe/H4E99PQW/ZVmGr3BGh9M6Ljn9Z/hFh9NL2VAxHV6GN2CRCz/yG0pzmK40gMsuK8Fz2AOfwC5dCRenodDzD2D4MCLBRw3ZUrTBZtgNZ/2c+TJ4gcEHlrXwJOyA7+EVGPcz/Eq2cSjYDK/Dj7AJlvkRfgnbNVRIz78KP8BrcPVCwifh3SU0wtfwCMO3uzto07ODrQzfJtXwBTyb6wE8w48WcnHuDnysWwSGb3QrIBeKahm+TeRU8D68BZczfHvIvv+irgRxhm+Tg/Ap3MLwbbIddsIKhm/3mkA7XM/w7a4ANxm+XU7DjQzfJivgYYZvlxqGb5cdDN8umxi+XYoZvl3GGL5dhhi+XfoZvl26Gb5dHjB8m/TCHoZvE/m/P2/sGOSu8/7Zw/CN8Qb+eSaf4dvhHdwPRxm+vQO8PXAg9UOGH31a4V74KX0Ew48uE7AeHtXX/xBjG0WSZ/A4fDvXROz50ULKuJyHu+cLnj0/OkitnhZ4CQ7m+iX2/PBzD+6CJ/IJnuGHF6nzJxXUquAh+LKQmcT0FKCc7RkKJnXzfhv2LXRm0vPb2aaBR561P+e8By3P+BF8suc36aYjzjYOFK+cdwOmxa+wM4XfD+ucV9RnA9v8v5DQHCRkKaz0KN+Dt0LDF6TG6zZ4zHlFGVNr861ymWu9rYErs8w323fmo5B6uHMth1zZKqSYcaaiy5nmN5J2jj2j4ydSxieLNYtTOpSbK1JndxgOub+LOS8ZvwUYADUghTwhJWL3AAAAAElFTkSuQmCC")
    no-repeat center;
  background-size: 100% 100%;
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
  margin-right: 10px;
}

.fill-o-bot-wrap .col-md-3 .bot-on-tag-wrap label.switch {
  display: inline-block;
  float: right;
  margin-top: 10px;
}

.fill-o-bot-wrap .col-md-3 .bot-on-tag-wrap {
  margin-top: 15px;
}

.fill-o-bot-wrap
  .col-md-3
  .bot-on-tag-wrap
  label.switch
  input:checked
  + .slider {
  background-color: #0095ff;
}

/*.page-style2-content-wrap .form-control{
    height: 50px;
}*/

.page-style2-content-wrap .form-group {
  position: relative;
}

.page-style2-content-wrap .form-group .lp-coordinates {
  position: absolute;
  right: 15px;
  top: -6px;
  border: 1px solid #eff1f2;
  padding: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.page-style2-content-wrap .form-group .lp-coordinates a {
  background: none;
  color: #596d81;
  margin: 0;
  border-right: 1px solid #eff1f2;
  border-radius: 0;
  padding: 5px 10px;
  float: left;
}

/*.page-style2-content-wrap .form-group .lp-coordinates a.googledroppin{*/

/*padding: 9px 10px;*/

/*}*/

.page-style2-content-wrap .form-group .lp-coordinates a:last-child {
  border-right: 0;
}

.page-style2-content-wrap .form-group .lp-coordinates a:first-child {
  border-top-left-radius: 4px;
}

.page-style2-content-wrap .form-group .lp-coordinates a::after {
  content: none;
}

.page-style2-content-wrap .form-group .lp-coordinates a.active {
  background: #0095ff;
  color: #fff;
}

.page-style2-content-wrap .form-control.form-control-st {
  border-top-right-radius: 0;
}

.page-style2-content-wrap .hours > a.remove-hours,
.style2-social-list-section .social-row a.remove-social-type {
  background: #e0ada9;
  color: #fff;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 19px;
  border-radius: 50px;
  float: right;
  margin-top: 4px;
}

.page-style2-content-wrap .hours > a.remove-hours i,
.style2-social-list-section .social-row a.remove-social-type i {
  font-size: 12px;
  font-weight: normal;
}

.page-style2-content-wrap .hours {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fafafa;
}

.page-style2-content-wrap .hours > span.weekday {
  font-weight: bold;
  width: 100px;
  float: left;
  text-transform: capitalize;
  color: #000000;
  font-size: 15px;
  width: 30%;
}

.page-style2-content-wrap ul.hours-select {
  position: relative;
}

.page-style2-content-wrap ul.hours-select li .lp-add-hours-st {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
}

.page-style2-content-wrap ul.hours-select li .lp-add-hours-st i,
.style2-add-new-social-sec a#add-new-social-url i {
  line-height: 20px;
  border-radius: 5px;
  font-size: 20px;
}

.page-style2-content-wrap ul.hours-select li .lp-add-hours-st i,
.style2-add-new-social-sec a#add-new-social-url i {
  color: #0095ff;
}

.page-style2-content-wrap .form-group #tabsbtn {
  color: #0095ff;
}

.style2-add-new-social-sec .col-md-1 {
  float: right;
}

.style2-add-new-social-sec a#add-new-social-url {
  text-align: center;
  margin-top: 15px;
  display: inline-block;
}

.style2-social-list-section {
  display: inline-block;
  width: 100%;
  padding: 0 15px;
}

.style2-social-list-section .social-row {
  display: block;
  padding: 10px 0 10px;
  line-height: 27px;
  border-bottom: 2px solid #fafafa;
}

.style2-social-list-section .social-row:last-child {
  margin-bottom: 15px;
}

.style2-social-list-section .social-row label,
.style2-add-new-social-sec .col-md-2,
.page-style2-content-wrap .col-md-2 label {
  font-weight: bold;
  float: left;
  text-transform: capitalize;
  color: #000000;
  font-size: 15px;
  width: 30%;
}

.style2-add-new-social-sec .col-md-2 {
  margin-top: 15px;
  width: initial;
}

.page-style2-content-wrap a.style2-tabsbtn i {
  font-size: 20px;
  vertical-align: middle;
}

.page-style2-content-wrap .col-md-2 label {
  width: initial;
}

.submit_new_style .page-style2-content-wrap label,
.submit_new_style .page-style2-content-wrap label,
.submit_new_style .page-style2-content-wrap .lp-social-area label {
  text-transform: capitalize;
  color: #000000 !important;
  font-size: 13px;
  font-weight: 600;
}

.page-style2-content-wrap .custom-file {
  display: inline;
}

.page-style2-content-wrap .custom-file .featured-img-label,
.page-style2-content-wrap .custom-file .b-logo-img-label {
  background: #f5f5f5;
  border: 2px dashed #c8cbce;
  padding: 20px 15px 10px;
  width: 100%;
  max-width: 100% !important;
}

.page-style2-content-wrap .lp-featur-st {
  display: inline-block;
  width: 50%;
}

.page-style2-content-wrap .form-group #lp_custom_title label {
  float: left;
}

.page-style2-content-wrap .featuresDataContainer .featuresBycat {
  width: 100%;
  display: inline-block;
}

.page-style2-content-wrap
  .featuresDataContainer
  .col-md-3.col-sm-3.col-xs-6.form-group
  label {
  width: 100%;
}

.page-style2-content-wrap
  .featuresDataContainer
  .col-md-3.col-sm-3.col-xs-6.form-group
  label.switch {
  width: 52px;
}

.quick-tip-inner h2 {
  text-transform: capitalize;
}

.loadercenterclass {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.lp-listing .lp-listing-bottom h4 span,
.lp-activity h4 span {
  line-height: 18px;
  border-radius: 2px;
}

.with-title-cond {
  display: none;
}

.lp-tagline-submit-tagline + .with-title-cond {
  margin-top: -30px;
}

.lptitle.fill-o-bot-active {
  border: 2px solid #1655ce;
  background: #dfe2f9;
  -webkit-box-shadow: 0 0 5px 2px rgba(235, 235, 235, 1);
  -moz-box-shadow: 0 0 5px 2px rgba(235, 235, 235, 1);
  box-shadow: 0 0 5px 2px rgba(235, 235, 235, 1);
}

.lptitle.fill-o-bot-active::placeholder {
  color: #7e94e1;
}

.lp-tagline-submit-tagline {
  display: inline-block;
  float: right;
  margin-bottom: 20px;
  padding-right: 15px;
  margin-top: -10px;
}

.lp-tagline-submit-tagline label {
  display: block;
  float: right;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 500 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lp-tagline-submit-tagline label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.lp-sbt-checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
}

.lp-tagline-submit-tagline {
  z-index: 99;
  position: relative;
}

.lp-tagline-submit-tagline label input:checked ~ .lp-sbt-checkmark {
  background-color: #0095ff;
  border: 1px solid #0095ff;
}

.lp-sbt-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.lp-tagline-submit-tagline label input:checked ~ .lp-sbt-checkmark:after {
  display: block;
}

.container .lp-sbt-checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #d5d5d5;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.single-listing header.lp-head-zindex {
  z-index: 1 !important;
}

.lp-menu-form-feilds .lp-invoices-all-stats-on-off {
  display: none;
}

#lp-find-near-me {
  display: inline-block;
  float: left;
  margin-top: 10px;
  /*margin-left:4px;*/
}

.lp-section.listing-style4 #lp-find-near-me {
  margin-top: 7px;
}

#lp-find-near-me .near-me-btn {
  font-size: 14px;
  font-weight: 400;
  color: #7f7f7f;
  line-height: 24px !important;
  padding-bottom: 5px;
  border-bottom: solid 1px transparent;
}

#lp-find-near-me .near-me-btn i {
  margin-right: 5px;
  float: left;
  margin-top: 6px;
}

.lp-invoices-all-stats li a.listingDtlurl {
  padding: 3px 10px;
}

.lp_element_announcement .lp-listing-announcement {
  margin-bottom: 0px;
}

#lp-listings .tab-pane .md-modal .md-content {
  width: 400px;
  transform: translateY(-50%) !important;
  top: 50%;
}

#lp-announcement-form .lp-review-sorting {
  padding: 10px 0;
}

.lp-add-announcement-form .form-group:last-child {
  margin-bottom: 0 !important;
  margin-top: 20px !important;
}

#ad-announcement-btn {
  float: right;
}

#lp-announcement-form .lp-review-sorting h5 {
  font-weight: 600 !important;
}

.margin-bottom-general-form {
  margin-bottom: 24px !important;
}

.padding-top-0 {
  padding-top: 0 !important;
}

#lp-listings .lp-listing-outer-container:last-of-type {
  border-bottom: 0 !important;
}

#lp-new-ad-compaignForm .lp-cancle-btn:hover {
  background-color: #e7edf3 !important;
  color: #44566c !important;
}

.lp-public-reply-btn .open-reply {
  margin-bottom: 10px;
}

.listing-second-view .sidebar-post .list-style-none.list-st-img li:hover,
.listing-app-view .listing-app-view2 .list-st-img li:hover {
  border-top: 0 solid #dedede !important;
  border-left: 0 solid #dedede !important;
  border-right: 0 solid #dedede !important;
  border-bottom: 1px solid #dedede !important;
  background: transparent !important;
}

.sidebar-post
  .map-area
  .listing-detail-infos
  .list-style-none.list-st-img
  > li:last-of-type {
  border-bottom: none !important;
}

.listing-app-view-bar #lp-find-near-me {
  margin-top: 0;
}

.listing-app-view .city-thumb2 img {
  min-height: unset;
}

.listing-app-view .lp-locations.listing-app-view .lp-locations {
  margin-top: 0;
}

.listing-app-view .list_view_v2 .lp-grid-box-thumb,
.listing-app-view .grid_view3 .lp-grid-box-thumb {
  width: 63px !important;
  height: 63px !important;
  overflow: hidden !important;
  display: inline-block !important;
  vertical-align: middle !important;
  float: none !important;
  border-radius: 5px;
}

.listing-app-view .list_view_v2 .lp-grid-desc-container,
.listing-app-view .grid_view3 .lp-grid-desc-container {
  width: calc(100% - 70px);
  display: inline-block !important;
  vertical-align: middle !important;
  float: none !important;
  padding-left: 5px !important;
  padding: 0;
}

.listing-app-view
  .listing-with-map
  .list_view_v2.lp-grid-box-contianer1
  .lp-grid-box-description
  h4,
.listing-app-view
  .listing-with-map
  .grid_view3.lp-grid-box-contianer1
  .lp-grid-box-description
  h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.listing-app-view .list_view_v2 .lp-grid-box-left.pull-left > ul,
.listing-app-view .grid_view3 .lp-grid-box-left.pull-left > ul {
  margin-bottom: 0;
}

.listing-app-view .list_view_v2 .lp-grid-box-thumb img,
.listing-app-view .grid_view3 .lp-grid-box-thumb img {
  border-radius: 5px;
}

.listing-app-view
  .list_view_v2
  .lp-grid-box-left.pull-left
  > ul
  > li:last-child,
.listing-app-view .grid_view3 .lp-grid-box-left.pull-left > ul > li:last-child {
  display: inline-block;
  float: left;
  text-align: left;
  width: 100%;
}

.listing-app-view
  .list_view_v2
  .lp-grid-box-description
  .lp-grid-box-left.pull-left,
.listing-app-view
  .grid_view3
  .lp-grid-box-description
  .lp-grid-box-left.pull-left {
  padding: 0;
  width: 100%;
}

.listing-app-view .list_view_v2 .lp-grid-box-description,
.listing-app-view .grid_view3 .lp-grid-box-description {
  padding: 0;
}

.listing-app-view .list_view_v2 span.rate,
.listing-app-view .grid_view3 span.rate {
  border-radius: 2px;
  line-height: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  font-size: 11px !important;
  margin-top: 1px !important;
  width: 27px !important;
  text-align: center;
}

.listing-app-view .list_view_v2 .lp-grid-box-left.pull-left > ul > li,
.listing-app-view .grid_view3 .lp-grid-box-left.pull-left > ul > li {
  margin-top: 0 !important;
}

.listing-app-view .list_view_v2 span.rate sup,
.listing-app-view .grid_view3 span.rate sup {
  display: none !important;
  margin-left: 17px !important;
  top: -0.7em !important;
}

.listing-app-view2 .lp-detail-section-title {
  display: none;
}

.listing-app-view2 #offers_deals .lp-deals-wrap,
.listing-app-view2 .lp-listing-announcement {
  margin-bottom: 0;
}

.listing-app-view2 .lp-deals-wrap .lp-deal,
.listing-app-view2 .lp-listing-menuu-wrap {
  margin-bottom: 0;
}

.listing-app-view2 .lp-listing-announcement .announcement-wrap.last {
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid;
}

.cancel-update-menu:hover,
#cancelLpAnnouncment {
  color: #44566c !important;
  background-color: #e7edf3 !important;
}

.lp-grid-style3-outer .lp-category-icon-outer a {
  height: auto;
}

.lp-search-bar-view1 form #cities {
  border: 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-left: 80px !important;
  color: #fff !important;
  height: 42px;
  border-radius: 0;
  background-color: transparent;
}

.search-view-move-down-two .lp-search-bar-view1 form #cities {
  border: 1px solid #fff;
}

.lp-home-banner-contianer
  .lp-search-bar-view1
  .form-group.lp-location-search
  .chosen-container.chosen-container-single
  .chosen-single
  span {
  padding-left: 74px;
}

.listing-app-view .lp-section-content-container {
  /* padding-top: 50px !important; */
}

.lp-claim-plans .lp-plan-paid-claim .horizontal_view_list {
  padding: 20px 20px !important;
  border-radius: 2px;
  width: 49% !important;
}

.lp-claim-plans .lp-plan-paid-claim .per_user_per_listing_price p {
  margin-top: 5px !important;
  margin-left: 5px;
}

.lp-claim-plans .lp-plan-paid-claim .horizontal_view_list li label {
  padding-left: 25px;
}

.lp-claim-plans .lp-plan-paid-claim .horizontal_view_list li label::before {
  left: 0;
  top: 45%;
}

.lp-claim-plans .lp-plan-paid-claim .horizontal_view_list li label::after {
  left: 4px;
  top: 45%;
}

.lp-claim-plans
  .lp-plan-paid-claim
  .lp_hori_view_plan_left_section
  .lp-listprc
  li
  span.icon-text,
.lp-claim-plans
  .lp-plan-paid-claim
  .lp_hori_view_plan_left_section
  .lp-listprc
  li
  span.icon.icons8-Cancel {
  margin-right: 3px;
}

.lp-claim-plans .lp-plan-paid-claim .lp-listprc li {
  padding-bottom: 7px;
  width: 100%;
  margin: 0 auto;
  float: none;
}

.horizontal_view_list-container {
  padding: 40px;
}

.horizontal_view_list-container .horizontal_view_list {
  width: 100%;
}

.lp-claim-plan-container
  .lp-claim-plans
  .lp-plan-paid-claim
  .lp-secondary-choose.lp-claim-plan-btn {
  border-radius: 2px;
}

.lp-claim-plans .lp-plan-paid-claim .lp-list-form-outer-postion {
  left: 53%;
}

.lp-claim-plans
  .lp-plan-paid-claim
  .lp_hori_view_plan_left_section
  .lp-listprc {
  padding-left: 1px;
}

.lp-new-grid-bottom-button ul.clearfix {
  border-right: 1px solid #dedede;
}

.lp-new-grid-bottom-button ul.clearfix li:last-child {
  border-right: 0;
}

#lp-listings .lp-listing-pay-outer.pull-right {
  float: left !important;
}

#reviewpolicycheck:checked + label:before {
  display: none;
}

.lp-coupns-form#lp-listings
  .discount_displayin_wrap
  .select2.select2-container.select2-container--default,
.lp-coupns-form#lp-events
  .discount_displayin_wrap
  .select2.select2-container.select2-container--default {
  width: 178px !important;
  min-width: 178px !important;
}

#lp-events-form .jFiler-input-dragDrop .dashboard-upload-field label,
#lp-menus .jFiler-input-dragDrop .dashboard-upload-field label,
#lp-listings .jFiler-input-dragDrop .dashboard-upload-field label {
  margin: 0;
  display: block;
}

#lp-events-form .jFiler-input-dragDrop .dashboard-upload-field label::before,
#lp-menus .jFiler-input-dragDrop .dashboard-upload-field label::before,
#lp-listings .jFiler-input-dragDrop .dashboard-upload-field label::before,
.active-update-form .dashboard-upload-field label::before {
  content: "\f093";
  font-family: FontAwesome;
  z-index: 9;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  width: 50px;
  height: auto;
  border-radius: 100%;
  line-height: 0;
  margin: 0 auto;
  right: 0;
  top: 47px;
  font-size: 25px;
  color: #b3b3b3;
  cursor: pointer;
}

#lp-events-form .jFiler-input-dragDrop .dashboard-upload-field label::after,
#lp-menus .jFiler-input-dragDrop .dashboard-upload-field label::after,
#lp-listings .jFiler-input-dragDrop .dashboard-upload-field label::after,
.active-update-form .dashboard-upload-field label::after {
  content: "Click here to upload image";
  z-index: 9999;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  height: auto;
  border-radius: 100%;
  margin: 0 auto;
  right: 0;
  top: 66px;
  font-size: 20px;
  color: #b3b3b3;
  cursor: pointer;
}

input[type="submit"]:disabled {
  cursor: no-drop;
}

.lp-menu-show-search-on.lp-menu.menu {
  display: block;
  float: left;
}

.lp-logo-st {
  margin-top: 0;
}

.lp-menu-adjuest.lp-menu-container {
  padding-right: 0;
}

.lp-menu-adjuest.lp-menu-container .lp-add-listing-btn {
  padding-left: 10px;
}

.lp-search-chnage-styles-st {
  display: inline-block;
  width: 95%;
  float: left;
  margin-top: 3px;
}

.lp-search-chnage-styles-st-fix {
  width: 455px;
}

.lp-search-chnage-styles-st .header-filter.pos-relative.form-group {
  width: 100%;
}

.lp-search-chnage-styles-st
  .header-filter
  .input-group.width-49-percent.margin-right-15,
.lp-search-chnage-styles-st .header-filter .input-group.width-49-percent {
  border-radius: 0;
}

.lp-search-bar-header
  .lp-header-search-button
  .lp-search-bar-right:hover
  .lp-search-btn {
  background: #00000026;
}

.lp-search-bar-header
  .lp-header-search-button
  .lp-search-bar-right
  .fa-magnifying-glass.lp-search-icon {
  top: 47%;
  color: #2458ff;
  font-size: 16px;
  left: 53%;
  transform: translate(-50%, -50%);
}

.lp-search-bar-header .lp-header-search-button .lp-search-bar-right {
  right: 0;
  margin: 0;
}

.lp-search-bar-header
  .lp-header-search-button
  .lp-search-bar-right
  .lp-search-btn {
  padding: 20px;
}

.listing-second-view
  .post-meta-right-box
  .post-stat
  li
  ul.social-icons
  li
  a
  i.fa:hover {
  color: #fff;
}

.lp-search-chnage-styles-st
  .header-filter
  .form-inline.top-search-form
  input.dropdown_fields,
.lp-search-chnage-styles-st
  .header-filter
  .form-inline.top-search-form
  input#cities,
.lp-search-chnage-styles-st
  .header-filter
  .form-inline.top-search-form
  .input-group-addon.lp-border,
.lp-search-chnage-styles-st
  .header-filter
  .chosen-container-single
  .chosen-single,
.lp-search-chnage-styles-st
  .header-filter
  .chosen-container-single
  .chosen-single
  span {
  height: 38px !important;
  line-height: 38px !important;
}

.lp-search-chnage-styles-st
  .header-filter
  .form-inline.top-search-form
  input#cities {
  padding-left: 65px;
}

.lp-search-chnage-styles-st .header-filter .ui-widget.border-dropdown {
  height: 38px !important;
}

.lp-search-chnage-styles-st .header-filter .lp-search-icon {
  top: 10px;
}

.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .form-group
  input.dropdown_fields,
.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .form-group
  .input-group-addon.lp-border,
.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .chosen-container-single
  .chosen-single,
.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .chosen-container-single
  .chosen-single
  span {
  height: 38px;
  line-height: 38px;
}

.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .form-group.lp-location-search {
  height: 38px;
}

.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .form-group
  input#cities {
  height: 38px;
  line-height: 38px;
  border: 0;
}

.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  .form-group.lp-suggested-search {
  border-right: 1px solid #ddd;
}

.lp-search-chnage-styles-st .header-filter #input-dropdown,
.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  .form-inline
  #input-dropdown {
  top: 34px !important;
}

.list-style .post-price-row li:first-child {
  margin-right: 5px;
}

.flip-clock-divider.hours .flip-clock-label,
.flip-clock-divider.minutes .flip-clock-label {
  text-transform: capitalize;
}

.app-view-dashboard-menu ul li a .fa {
  color: #fff;
  margin-right: 5px;
}

.dashboard-content-app-view .panel {
  margin-bottom: 100px;
}

.dashboard-content-app-view .lp-right-panel-height {
  left: 0;
  right: auto;
  width: 100%;
}

.dashboard-content-app-view .panel-recent-activity {
  padding: 0;
  margin-top: 20px;
}

.listing-app-view .lp-dashboard-panel-outer .notices-area {
  float: none;
}

.listing-app-view .dashboard-content .dashboard-panel {
  padding-top: 20px;
}

.dashboard-content-app-view .panel-dash-views {
  padding: 20px;
}

.dashboard-content-app-view .panel-dash-views .lp-dash-bottom-area {
  text-align: left;
}

.listing-app-view2 .lp-today-timing strong {
  font-size: 14px;
  line-height: initial;
}

.listing-app-view2 .lp-today-timing img,
.listing-app-view2 .lp-today-timing i {
  margin-right: 2px;
  margin-left: -3px;
  width: 18px;
}

.listing-app-view2 .lp-timing-status.status-open,
.listing-app-view2 .lp-timing-status {
  font-size: 12px;
}

.listing-app-view2 .lp-today-timing {
  width: 100%;
  font-size: 14px;
  width: 100%;
  font-size: 14px;
  padding: 15px 25px;
}

.listing-app-view2 .lp-today-timing .lp-timings {
  float: right;
}

.listing-app-view2 .all-days-timings li {
  border-bottom: 1px solid #e3e3e3;
  color: #7f7f7f;
  line-height: 0;
  width: 100%;
  display: inline-block;
  padding: 10px 0;
}

.listing-app-view2 .all-days-timings .lp-timings {
  float: right !important;
  font-size: 14px;
  line-height: initial;
}

.listing-app-view2 .all-days-timings {
  display: none;
}

.listing-app-view2 .toggle-all-days {
  display: block;
  font-size: 14px;
  text-align: center;
  margin-top: -10px;
}

.listing-style4 .lp-sidebar .widget_listingpro_ads_widget {
  padding: 0;
}

.lp-search-chnage-styles-st
  form.form-inline
  .chosen-container.chosen-with-drop
  .chosen-drop,
.lp-search-section-header-view
  .lp-search-bar.lp-search-bar-header
  form.form-inline
  .chosen-container.chosen-with-drop
  .chosen-drop {
  top: 39px;
}

.lp-style3-header-wrap .lp-listing-title-rating .lp-rating-count {
  margin-left: 5px;
}

.listing-app-view2 .lp-timing-status {
  margin-left: 10px;
}

.listing-app-view2 .lp-timing-status.status-close {
  color: red;
}

.listing-app-view2 .lp-timing-status.status-open {
  color: green;
}

/* for lead form privacy policy */

#claimform label[for="reviewpolicycheck2"] {
  width: auto !important;
}

#claimform #reviewpolicycheck2 {
  margin-top: 7px !important;
}

#claimform input[type="checkbox"]:checked + label::before {
  display: none !important;
}

button[disabled],
html input[disabled],
.lp-listing-leadform-inner .form-horizontal input[disabled].btn-second-hover {
  background-color: #bbc2d2 !important;
  color: #fff !important;
  cursor: not-allowed !important;
  border-color: #bbc2d2 !important;
}

button[disabled] i,
html input[disabled] + input + input + input + i {
  color: #fff !important;
}

button[disabled]:hover,
html input[disabled]:hover,
.lp-listing-leadform-inner
  .form-horizontal
  .form-group
  input[disabled].btn-second-hover:hover,
button[disabled].coupon-apply-bt:hover {
  background-color: none !important;
}

.listing-app-view2 .lp-multi-rating-ui-wrap .form-review-stars {
  margin-top: 0;
  margin-bottom: 20px;
}

.listing-app-view2
  .lp-multi-rating-ui-wrap
  .form-review-stars
  .rating-symbol
  .rating-symbol-background,
.listing-app-view2
  .lp-multi-rating-ui-wrap
  .form-review-stars
  .rating-symbol
  .rating-symbol-background
  .fa,
.listing-app-view
  .listing-app-view2
  .form-review-stars
  .rating-symbol
  .rating-symbol-foreground
  .fa {
  font-size: 14px !important;
}

.listing-app-view2 .lp-multi-rating-ui-wrap .form-review-stars > span {
  padding: 3px 4px;
}

.lp-review-detail-container {
  border-top: 1px solid #dce0e2;
  padding: 15px;
}

.listing-app-view2 .lp-listing-logo img {
  width: 50px;
  height: 50px;
}

.listing-app-view2 .lp-listing-logo {
  float: none;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.listing-app-view2 .lp-multi-star-wrap {
  width: 170px;
}

.margin-top-18 {
  margin-top: 18px;
}

.lp-cat-name-first {
  font-weight: 500 !important;
  font-size: 15px !important;
}

.lp-menu-save-btns .lp_campaign_paynow:hover {
  background: #73d500 !important;
  color: #fff !important;
}

@media (max-width: 980px) and (min-width: 320px) {
  .lp-review-detail-container {
    padding: 15px;
  }
  .reviews-section a.reviewRes span.lp_state {
    width: 300%;
  }
}

.lp_privacy_policy_Wrap label,
.lp_privacy_policy_Wrap .lpprivacycheckboxopt {
  float: left;
}

.lp_privacy_policy_Wrap .lpprivacycheckboxopt {
  margin-top: 7px;
  margin-right: 4px;
}

.help-text {
  float: left;
  position: relative;
  width: 17px;
  margin-left: 10px;
  display: inline;
  margin-left: 5px;
}

.help-text a.help {
  margin-top: 6px;
}

.login-form-popup .checkbox.check_policy label {
  float: left;
}

/*----New 04 september 2018---*/

.footer-style2.padding-top-60.padding-bottom-60,
.footer-style4 .padding-top-60.padding-bottom-60,
.footer6-bottom-area.padding-top-60.padding-bottom-60,
.footer-style7.padding-top-60.padding-bottom-60,
.footer-style10 .padding-top-60.padding-bottom-60,
.footer10-bottom-area.lp-footer-bootom-border {
  padding: 30px 0;
}

.footer7-bottom-area,
.footer-style8-bg-logo.padding-top-60 {
  padding-top: 30px;
}

.footer-style8-bg-logo .footer-menu {
  padding-top: 30px;
}

footer .container .row .clearfix.col-md-3 .widget-title h2 {
  margin: 0;
  font-size: 18px;
}

.footer5-bottom-area .col-md-7 span.copyrights {
  float: right;
}

.footer-style8-bg-logo .lp-footer-logo {
  margin: 0 auto;
}

.lp-home-banner-contianer-inner.lp-home-banner-contianer-inner-new-search
  .lp-search-description
  .banner-arrow {
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%)
    hue-rotate(90deg);
}

/*App view section*/

.listing-app-view .lp-section-title-container h2,
.listing-app-view .lp-section-title-container.text-center h2 {
  font-size: 22px;
  margin-bottom: 0;
  margin-top: 25px !important;
}

.listing-app-view .slick-dots {
  margin-bottom: 10px;
}

.listing-app-view2 .post-meta-right-box .post-stat > li > a,
.listing-app-view2 .post-meta-right-box .post-stat > li > a span {
  line-height: 0;
}

.listing-app-view2
  .post-meta-right-box
  .post-stat
  > li.reviews
  > a.reviews-quantity {
  display: inline-block;
  width: 100%;
}

.listing-app-view .listing-app-view-bar #lp-find-near-me {
  position: relative !important;
  top: 0;
  left: 0;
  margin-left: 0 !important;
  padding-left: 0 !important;
  margin-right: 3px !important;
  float: none !important;
  width: auto !important;
}

.listing-app-view .listing-app-view-bar #lp-find-near-me ul li a.near-me-btn {
  padding: 3.5px 5px !important;
}

.listing-app-view .listing-app-view-bar #search-filter-attr-filter {
  z-index: 9;
}

.listing-app-view .listing-app-view-bar .search-filter-attr-filter-outer {
  left: 9px;
  width: 230px;
}

.listing-app-view .lp-deals-wrap .lp-deal .deal-details .deal-button {
  float: right;
  margin-top: -32px;
}

.listing-app-view .lp-deals-wrap .lp-deal .deal-details .deal-content p,
.listing-app-view .lp-deals-wrap .lp-deal .deal-details .deal-content strong {
  width: 56%;
  display: block;
}

.listing-app-view .lp-deals-wrap .lp-deal {
  height: 180px;
}

.listing-app-view2 .toggle-all-days {
  border: solid 1px #dedede;
  padding: 2px 6px;
  border-radius: 2px;
  width: 75px;
  float: right;
  font-size: 12px;
  line-height: 14px;
  margin-right: 25px;
  color: #797979;
  background: #fff;
}

.listing-app-view .lp-today-timing.all-days-timings {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 10px;
}

.listing-app-view2 .all-days-timings li:first-child {
  padding-top: 0;
}

.listing-app-view2 .all-days-timings li:last-child {
  border-bottom: 10px;
}

.listing-app-view2 .lp-today-timing {
  margin-top: 30px;
}

.listing-app-view2
  .content-white-area
  .single-inner-container
  .widget-box.listing-price
  .list-style-none
  span.post-rice {
  font-size: 14px;
}

.listing-app-view2.listing-second-view
  .claim-area
  a.phone-number.claimformtrigger {
  font-size: 14px;
}

.listing-app-view2 .lp-listing-announcement .announcement-wrap.last {
  border: 1px solid;
  margin: 20px 15px 0;
}

.listing-app-view .listing_grid_view .lp-section-content-container.row {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0 !important;
}

.listing-app-view .listing-tabs.app-view .nav-tabs > li > a {
  padding: 14px 6px;
}

.listing-app-view .lp-menu-app-view-outer .lp-listing-appview-group-wrap {
  display: none;
}

.listing-app-view .lp-menu-app-view-outer .lp-appview-menu-items-bygroup {
  display: none;
}

.listing-app-view
  .lp-menu-app-view-outer
  .lp-menu-type-heading.active
  .fa-angle-down,
.listing-app-view
  .lp-menu-app-view-outer
  .lp-appview-group-heading.active
  i.fa-angle-down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 0;
}

.listing-app-view .lp-menu-app-view-outer .lp-menu-type-heading {
  width: 100%;
  display: inline-block;
  padding: 5px 7px;
  cursor: pointer;
  margin-bottom: 5px;
  float: left;
  margin-bottom: 0;
}

.listing-app-view .lp-menu-app-view-outer .lp-menu-type-heading span {
  color: #fff;
  float: left;
  font-size: 16px;
}

.listing-app-view .lp-menu-app-view-outer .lp-menu-type-heading i.fa-angle-down,
.listing-app-view
  .lp-menu-app-view-outer
  .lp-appview-group-heading
  i.fa-angle-down {
  float: right;
  vertical-align: middle;
  font-size: 16px;
  margin-top: 5px;
  margin-right: 5px;
}

.listing-app-view
  .lp-menu-app-view-outer
  .lp-appview-group-heading
  i.fa-angle-down {
  margin-top: 3px !important;
}

.listing-app-view .lp-menu-app-view-outer .lp-appview-group-heading {
  width: 100%;
  display: inline-block;
  float: left;
  margin: 0 0 2px 0;
  background: #e4e0e0;
  padding: 5px 7px;
  font-size: 14px;
  cursor: pointer;
}

.listing-app-view .lp-listing-appview-menu-item {
  display: inline-block;
  margin-bottom: 0;
  width: 100%;
  float: left;
  border-bottom: 1px solid #e3e3e3;
  padding: 7px 0;
}

.listing-app-view .lp-listing-appview-menu-item:last-child {
  border-bottom: 0;
}

.listing-app-view .lp-listing-appview-menu-item .lp-menu-item-thumb {
  width: 18%;
  display: inline-block;
  float: left;
}

.listing-app-view .lp-listing-appview-menu-item .lp-menu-item-detail {
  width: 70%;
  display: inline-block;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
}

.listing-app-view
  .lp-listing-appview-menu-item
  .lp-menu-item-detail
  a.lp-menu-item-title {
  display: block;
  margin-top: -5px;
  color: #333;
}

.listing-app-view
  .lp-listing-appview-menu-item
  .lp-menu-item-detail
  span.lp-menu-item-tags {
  display: block;
  line-height: 18px;
}

.listing-app-view .lp-listing-appview-menu-item .lp-menu-item-price {
  float: right;
}

.listing-app-view
  .lp-listing-appview-menu-item
  .lp-menu-item-price
  span.old-price {
  display: block;
  color: #797979 !important;
}

.listing-app-view
  .lp-listing-appview-menu-item
  .lp-menu-item-price
  span.old-price.line-through {
  text-decoration: line-through;
}

.listing-app-view2.listing-second-view .widget-box {
  margin-bottom: 10px !important;
}

.listing-app-view.listing-app-view2 ul.list-st-img li:last-child,
.listing-app-view.listing-app-view2 ul.list-st-img li:last-child:hover {
  border-bottom: 0 !important;
}

.listing-app-view.listing-app-view2 ul.list-st-img li:hover {
  border-bottom: 1px solid #eee !important;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .listing-price.widget-box {
  width: 100% !important;
  margin: 0;
  padding: 0;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .listing-price.widget-box
  .price-area
  .post-row.price-range,
.listing-app-view
  .listing-app-view2.listing-second-view
  .listing-price.widget-box
  .price-area
  .claim-area {
  padding-left: 25px;
  padding-right: 25px;
  line-height: 0;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .widget-box.listing-price
  .price-area
  .claim-area
  > span.phone-icon
  > img.icon {
  margin-left: 0;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .single-inner-container-inner
  .lp-deals-wrap {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 0;
  margin-top: 20px;
}

.listing-app-view
  .listing-app-view2
  .lp-listing-announcement
  .announcement-wrap.last
  p {
  width: 80%;
  margin-top: -5px;
}

.listing-app-view
  .listing-app-view2
  .lp-listing-announcement
  .announcement-wrap.last
  .announcement-btn {
  background: none;
  padding: 4px 15px;
  font-size: 14px;
  float: left;
  margin-left: 40px;
  margin-top: 5px;
}

.listing-app-view .listing-app-view-bar .search-filters > ul > li > a,
.listing-app-view .listing-app-view-bar .currency-signs > ul > li > a {
  padding: 2px 6px !important;
}

.listing-app-view .listing-app-view2 .bottom-section ul li a {
  height: 34px !important;
  padding: 0 7px !important;
  line-height: 34px !important;
  margin-bottom: 5px;
}

.listing-app-view .listing-app-view2 .app-view .post-detail-content {
  padding: 20px;
}

.listing-app-view .lp-menu-app-view-outer {
  margin-bottom: 5px;
  width: 100%;
  display: inline-block;
  float: left;
}

.listing-app-view .lp-menu-app-view-outer:last-child {
  margin-bottom: 0;
}

.listing-app-view
  .lp-menu-app-view-outer
  .lp-listing-appview-group-wrap
  .lp-appview-group-heading:first-child {
  margin-top: 2px;
}

.review-form {
  margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  .listing-app-view
    .listing-app-view2
    .single-inner-container-inner
    .review-form {
    margin-bottom: 0 !important;
  }
  #lp-listings .md-modal {
    overflow: scroll !important;
    width: 100% !important;
    text-align: center;
    display: block !important;
  }
  .dashboard-content-app-view #lp-listings .md-modal {
    top: 15% !important;
  }
}

.lp-dashboard-new .sidebar-nav li .sub_iconsecond .fa {
  display: inherit !important;
  font-size: 15px;
}

.lp-dashboard-new .sidebar-nav li .sub_iconsecond:after {
  bottom: 0 !important;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  .widget-social
  ul
  li:after {
  display: none;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  .widget-social
  ul
  li {
  padding-bottom: 0;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  .widget-social
  ul
  li
  a {
  padding-right: 0;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  .widget-social
  ul
  li
  img {
  width: 18px;
}

.listing-app-view
  .listing-app-view2
  .map-area
  .listing-detail-infos
  .widget-social:after {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 16px;
  color: #7f7f7f;
}

.listing-app-view
  .listing-app-view2
  .lp-listing-announcement
  .announcement-wrap.last
  .announcement-btn:hover {
  color: #fff !important;
}

.listing-app-view .open-hours .today-hrs a.show-all-timings {
  line-height: initial;
  top: 4px;
}

.listing-app-view .open-hours .today-hrs a.show-all-timings::before {
  vertical-align: middle;
}

.listing-app-view .open-hours ul.hidding-timings li span {
  line-height: 40px;
}

.listing-app-view .lp-appview-event .sidebar-post {
  display: inline-block;
  width: 100%;
  margin-top: 44px !important;
  padding: 0 15px;
}

.listing-app-view .lp-appview-event .sidebar-post .widget-box.lp-event-outer {
  margin-bottom: -6px !important;
}

.listing-app-view .lp-appview-event .sidebar-post .lp-event-image-container,
.listing-app-view .lp-appview-event .sidebar-post .lp-event-ticket {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.listing-app-view .review-form,
.listing-app-view .reviews-section {
  margin-top: 20px !important;
  border-radius: 2px;
}

.listing-app-view .listing-app-view2 .widget_listingpro_nearby > h2,
.listing-app-view .listing-app-view2 .widget-box.viewed-listing > h2 {
  font-size: 18px;
}

.listing-app-view .listing-app-view2 .widget-box.viewed-listing > h2 {
  margin-bottom: 10px;
}

.listing-app-view .listing-app-view2 .list_view .lp-grid-box {
  border-radius: 2px !important;
}

#lp-ad-click-innerr .lp-invoices-all-stats li i {
  margin-right: 10px;
}

/*------dashboard weekly monthly button active-----*/

.lp_stats_duratonBtn.active {
  background: #b3c0ce;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #b3c0ce;
}

.img-menu-upload-field .frontend-button {
  padding: 0 28px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Quicksand","Quicksand Fallback";
  border-radius: 5px;
  color: #fff;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #363f48;
}

.lp-contact-support-outer a {
  line-height: 32px;
}

.single-listing .widget_custom_taxonomy_widget {
  font-family: "Open Sans","Open Sans Fallback", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.listing-app-view .listing-app-view2 .bottom-section ul li a {
  margin-top: 15px;
}

.listing-app-view2 .reviews-section a.reviewRes span.lp_state {
  top: -32px;
}

.listing-app-view .dashboard-content-app-view .panel-dash-views {
  background: #363f48;
}

.listing-app-view
  .dashboard-content-app-view
  .panel-dash-views
  .count-box
  p.views {
  color: #fff;
  line-height: 26px;
  margin-right: 6px;
}

.dashboard-content-app-view .panel-dash-views {
  padding-top: 0;
  padding-bottom: 0;
}

.listing-app-view .dashboard-content-app-view .panel-dash-views .count-box {
  border-right: solid 1px #fff !important;
}

.lpcheckouttac {
  display: inline-block;
  float: left;
  margin-bottom: 20px;
  margin-top: 2px;
  padding-left: 20px;
}

.lpcheckouttac .filter_checkbox_container {
  float: left;
}

.filter_checkbox_container input:checked ~ .filter_checkbox_checkmark::after {
  top: 0;
}

.terms-checkbox-container .filter_checkbox_checkmark::after {
  top: 0;
  position: absolute;
  left: 3px;
}

.lp-new-term-style .filter_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  width: 18px;
  height: 18px;
}

.lp-new-term-style .filter_checkbox_container {
  float: left;
  margin-right: -20px;
}

.lp-add-new-btn a {
  display: block;
  color: #fff;
}

/* added for 2.0.8 images height of archive page */

.grid_view2.listing-grid-view2-outer .lp-grid-box .show-img {
  min-height: 400px;
  overflow: hidden;
}

.grid_view2.listing-grid-view2-outer .lp-grid-box .show-img img {
  min-height: 100%;
}

.lp_detail_page_styles3 .lp-listing-title .lp-listing-name h1,
.lp_detail_page_styles4 .lp-listing-title .lp-listing-name h1 {
  font-size: 28px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  line-height: 33px;
  word-wrap: break-word;
}

.lp_detail_page_styles3 .lp-listing-title .lp-listing-name h1 span.claimed,
.lp_detail_page_styles4 .lp-listing-title .lp-listing-name h1 span.claimed {
  font-size: 14px;
  font-weight: 400;
}

.lp_detail_page_styles3 .lp-listing-title .lp-listing-name h1 span.claimed,
.lp_detail_page_styles3 .lp-listing-title .lp-listing-name h1 span.claimed {
  position: absolute;
  margin-left: 8px;
  margin-top: 4px;
}

.lp_detail_page_styles3 .lp-listing-title .lp-listing-name h1 span i,
.lp_detail_page_styles4 .lp-listing-title .lp-listing-name h1 span i {
  background-color: #40b3ef;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  padding: 3px;
  line-height: 11px;
}

.lp-invoices-all-stats i.fa-check-circle {
  font-size: 18px !important;
}

.lp-invoices-all-stats i.lp-gray-this-ccircle {
  color: #ccc !important;
}

.lp-evnt-content-container .show-more-event-content {
  font-size: 13px;
  line-height: 0;
  font-weight: 700;
}

.search .list-style .grid_view_v2,
.search .list_view_v2 {
  margin-bottom: 0;
}

.lp-archive-banner {
  line-height: 0;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .post-meta-right-box
  .post-stat.lp-appview-post-stat {
  width: 100%;
  display: inline-block;
  margin-bottom: -8px;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .post-meta-right-box
  .post-stat.lp-appview-post-stat
  > li {
  float: left !important;
  width: 33.33% !important;
}

.listing-app-view
  .listing-app-view2.listing-second-view
  .post-meta-right-box
  .post-stat.lp-appview-post-stat
  > li:last-child {
  border-right: 0 !important;
}

.listing-app-view .admin-top-section-bar .lp-contact-support a.secondary-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.dashboard-home-icon-st {
  display: none;
}

.dashboard-home-icon-st a i {
  font-size: 16px;
}

#inbox .background-white.lpinboxrightpart {
  float: right;
}

#listing-invoices-popup .lp-plan-name {
  padding-right: 20px;
}

#listing-invoices-popup .lp-invoice-description-title {
  padding-bottom: 20px;
}

.lp-message-title {
  padding-left: 20px;
}

.filter_checkbox_container input:checked ~ .filter_checkbox_checkmark::after {
  line-height: 16px;
}

.coupon-apply-bt {
  font-size: 14px;
}

.lp_payment_step_next {
  font-size: 15px;
}

.lp-image-menu-new #restaurant-menu > h3 {
  font-size: 20px;
}

.lp-list-page-list.lp-image-menu-new {
  padding-right: 0 !important;
}

#resurva_bookings.lp-image-menu-new-outer {
  padding: 0 30px;
}

.lp-dashboard-new .tab-pane.fade.lp-manage-types-group {
  padding-right: 0 !important;
  padding-left: 15px !important;
}

.submit_new_style .page-style2-content-wrap label,
.submit_new_style .page-style2-content-wrap label,
.submit_new_style .page-style2-content-wrap .lp-social-area label {
  font-size: 13px !important;
  font-weight: 600 !important;
}

.mobile-toggle-filters {
  display: none;
}

.lp-header-search-filters .lp-features-filter .checkbox label::before {
  top: 2px !important;
}

.lp-pp-noa-tip {
  background: red;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  width: 100%;
  padding: 3px;
  text-align: center;
  display: none;
  margin-bottom: 2px;
}

.lp-pp-noa-tip .fa {
  margin-right: 5px;
}

.lp-contact-support-outer > a .fa {
  margin-right: 2px;
}

.lp-home-categoires li a span .fa {
  font-size: 26px;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.lp-home-categoires .icons-banner-cat {
  font-size: 30px;
  margin: 15px 0px !important;
  width: 100% !important;
  height: auto !important;
}

#modal-event-map {
  width: 600px;
}

.eventmap-popup {
  height: 400px;
}

.single-post .blog-content ul,
.single-post .blog-content ol,
.single-listing .post-detail-content ul,
.single-listing .post-detail-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.single-post .blog-content ul {
  list-style: disc;
}

.single-listing .post-detail-content ul {
  list-style: disc;
}

.lp-ad-step-two-inner .input-group.margin-right-0 input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.checkout-transaction-success {
  margin-top: -70px;
}

.sucess-transaction-inner-section p {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 30px;
}

.page-template-template-favourites
  .container.page-container-four
  .text-center.margin-top-80.margin-bottom-80
  p
  a {
  display: none;
}

.icon-lionked {
  background-color: #0077b5 !important;
}

.icon-insta {
  background-color: #517fa4 !important;
}

.icon-wk {
  background-color: #40a4c4 !important;
}

.icon-youu {
  background-color: #b31217 !important;
}

.grid-show-popup .quickmap img {
  padding: 0 !important;
}

span.lploadingwrap {
  position: relative;
}

span.lploadingwrap .lpthisloading {
  position: absolute;
  bottom: auto;
  display: none;
  top: 5px;
  right: -20px;
}

.lp-delte-conv {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  color: #3f576e;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.lp-delte-conv:hover {
  color: #3f576e;
}

.single-listing span.lp-listing-price-range {
  border: none !important;
}

body.page .lp_section_inner {
  padding-top: 12px;
}

.outer_all_page_overflow {
  width: 51.4%;
}

.outer_filter_show_result_cancel {
  width: 51%;
}

.lp_filter_checkbox li {
  margin-bottom: 15px;
}

.outer_all_page_overflow {
  width: 815px;
  padding-top: 4px;
  height: 100%;
  overflow-y: auto;
  min-height: 445px;
  border: 0 solid #dedede;
}

.outer_filter_show_result_cancel {
  width: 51%;
}

.lp_filter_checkbox li {
  margin-bottom: 0 !important;
  margin-top: 10px !important;
}

.filter_data_switch_on_off li {
  margin-bottom: 5px;
}

.lp-more-filters-outer {
  width: 100%;
  float: left;
}

.lp_extrafields_select-border2 .lp-more-filters-outer {
  margin-bottom: 20px;
}

.lp_extrafields_select-border2 .lp-more-filters-outer h3 {
  margin-bottom: 5px;
}

.lp-more-filters-outer li {
  width: 100%;
}

.lp-features-filter .col-md-2 {
  min-height: 88px;
  width: 33%;
}

.lp-features-filter .col-sm-2 {
  width: 100%;
  margin-bottom: 30px;
}

.listing-app-view .post-meta-info .container {
  width: 100%;
}

.listing-app-view .listing-second-view .map-area .listing-detail-infos ul li a {
  padding-left: 25px !important;
}

.listing-app-view .listing-app-view2 .listing-detail-infos .widget-social {
  padding-left: 0 !important;
}

.listing-app-view .listing-second-view .map-area .listing-detail-infos {
  padding-left: 0;
  padding-right: 0;
}

.lp-multi-rating-ui-wrap p {
  min-width: 60px;
}

.search .lp-sidebar .listing-pro {
  display: block !important;
}

.lpreplyQest-outer .lpQest,
.lpQest {
  width: -webkit-calc(100% - 106px) !important;
  width: -moz-calc(100% - 106px) !important;
  width: calc(100% - 106px) !important;
}

.listing-app-view .planclaim-page-popup .lp-secondary-btn {
  float: none;
}

.submit_new_style-outer
  .featuresDataContainerOuterSubmit
  .lpfeatures_fields
  .featuresDataContainer
  .col-md-3,
.submit_new_style-outer
  .featuresDataContainerOuterSubmit
  .lpfeatures_fields
  .featuresDataContainer
  .col-md-2 {
  width: 33.3%;
}

.active-rating-avg2 i.fa-star,
.active-rating-avg1 i.fa-star {
  color: #de9147;
}

.active-rating-avg3 i.fa-star,
.active-rating-avg4 i.fa-star {
  color: #c5de35;
}

.active-rating-avg5 i.fa-star {
  color: #73cf42;
}

.featuresDataContainer {
  display: none;
}

form.lpeditlistingform .featuresDataContainer,
form#lp-submit-form .featuresDataContainer {
  display: block;
}

form.lpeditlistingform .featuresDataContainerr,
form#lp-submit-form .featuresDataContainerr {
  clear: both;
}

form#searchform {
  z-index: 999;
}

.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}

.lp-header-search-filters .header-more-filters .lp-features-filter {
  padding: 24px 10px !important;
  margin: 0 !important;
  text-align: left;
  width: 100%;
  padding-bottom: 14px !important;
}

.lp-notifaction-area.lp-pending-lis-infor .lp-notifaction-area-outer {
  display: block !important;
}

.lp-notifaction-area.lp-pending-lis-infor {
  border-left: 15px solid #17a2b8 !important;
}

.lp-sidebar .widget-box {
  padding: 0;
}

.lp-sidebar .lp-sidebar-nearby .lp-grid-desc-container,
.lp-sidebar .lp-sidebar-nearby .lp-grid-box-thumb-container,
.lp-sidebar .lp-sidebar-nearby .lp-grid-box-thumb-container img,
.lp-sidebar .lp-sidebar-nearby .listing-pro {
  border-radius: 3px !important;
}

/* css for invoice changes */

.lp_popup_preview_invoice .modal-footer button {
  background: none;
  border: none;
}

.lp_popup_preview_invoice .lp-infoice-label {
  display: inline-block;
  border: solid 1px #c8f3bf;
  padding: 5px 25px;
  color: #2ab50f;
  font-size: 18px;
  font-weight: bold;
}

.lp_popup_preview_invoice .modal-titl,
.lp_popup_preview_invoice .modal-titl span {
  font-size: 18px;
  color: #333;
  margin-top: 0;
}

.lp_popup_preview_invoice .modal-titl span {
  font-weight: bold;
}

.lp_popup_preview_invoice .spanblock {
  display: block;
}

.lp_popup_preview_invoice .graycolor {
  color: #282828;
}

.lp_popup_preview_invoice .maxwidth130 {
  max-width: 130px;
  line-height: 20px;
}

/*adding new css */

#success span.green p {
  background-color: #91cd61 !important;
}

/* review loader */

.review-filter-loader {
  width: 40px;
  display: none;
}

.app-view-popup-style {
  cursor: pointer;
}

.cmpln-sts-column .lp-plan-btn-statuscmpln span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #d5dce1;
  vertical-align: -1px;
  margin-right: 5px;
}

.cmpln-sts-column .lp-plan-btn-statuscmpln.active span::before {
  background-color: #73d500;
}

.lp-inovice-campgnlisting {
  display: inline-block;
  margin-top: 6px;
}

.lp-invoice-number.lpcampname label:hover {
  cursor: pointer;
}

/* adding css on 24 july */

a.lp-all-camp-bck {
  color: #9b9b9b;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
}

a.lp-all-camp-bck i {
  color: #4a5b6d;
  font-size: 18px;
  display: inline-block;
  margin-right: 5px;
  font-weight: bold;
}

.padding-15pxall {
  padding: 15px;
}

#lp-new-ad-compaignForm .camp-required {
  color: #d10000;
  font-size: 14px;
  margin-left: 5px;
}

#lp-new-ad-compaignForm
  .lp-select-ad-place
  input[type="checkbox"]
  + label:before {
  content: "\f00c";
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  font-family: FontAwesome;
  color: #ffffff;
  background-color: #e4eaef;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

#lp-new-ad-compaignForm
  .lp-select-ad-place
  input[type="checkbox"]:checked
  + label:before {
  background-color: #0095ff;
}

#lp-new-ad-compaignForm .lp-select-ad-place input[type="checkbox"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
  z-index: 999999;
}

#lp-new-ad-compaignForm label.lp-camp-lbl.checkbox:before {
  display: none;
}

#lp-new-ad-compaignForm label.lp-camp-lbl.checkbox {
  width: 100%;
  height: 100%;
  padding: 0;
  display: inline-flex;
}

#lp-new-ad-compaignForm
  .lp-select-ad-place
  input[type="checkbox"]:checked
  ~ div.lp-select-ad {
  border-color: #0095ff !important;
}

#lp-new-ad-compaignForm .lp-select-ad-place {
  position: relative;
  margin-bottom: 50px;
}

#lp-new-ad-compaignForm .lp-select-ad-place input[type="checkbox"] + label {
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin-left: -16px;
}

#lp-new-ad-compaignForm .lp_payment_methods_ads div.lp-payement-images {
  display: inline-block;
  position: relative;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  label.lp-label-wrp {
  border: 1px solid #dce0e2;
  border-radius: 5px;
  width: 100%;
  padding: 10px 10px 10px 54px;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  input[type="radio"] {
  opacity: 0;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  input[type="radio"]:checked
  ~ label.lp-label-wrp {
  border-color: #0095ff !important;
}

#lp-new-ad-compaignForm .lp_payment_methods_ads .lp-payement-images {
  width: 100%;
  height: 100%;
  margin: 0;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked) {
  margin: 0 !important;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: black;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio:before,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 45px;
  width: 15px;
  height: 15px;
  border: 1px solid #0095ff;
  border-radius: 100%;
  background: #fff;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio:after,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio:after {
  content: "";
  width: 9px;
  height: 9px;
  background: #0095ff;
  position: absolute;
  top: 48px;
  left: 13px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  .lp-payement-images
  label.lp-label-wrp,
#lp-new-ad-compaignForm .lp-select-ad-place input {
  cursor: pointer;
}

.lp-camp-bottom-summary .greencheck,
.lp-listing-selecter .greencheck {
  color: #5ec95e;
}

.lp-camp-bottom-summary .campfeatures {
  padding: 10px 0 20px;
}

.lp-camp-bottom-summary h6,
.lp-listing-selecter h6 {
  font-size: 13px;
  line-height: 14px;
  font-weight: 400;
  word-break: break-word;
}

.lp-cmp-alltotal h5 {
  word-break: break-word;
}

.lp-ad-price-content h6 {
  color: #6d6d6d;
  font-size: 12px;
}

.lp-camp-border {
  border-bottom: solid 1px #dedede;
}

.lpcamppadding0 {
  padding: 0;
}

.lp-camp-bottom-summary .graycheck,
.lp-listing-selecter .graycheck {
  color: #c9cfc9;
}

/* ending css on 24 july */

.lp-coupons-form-inner .event_start_end .form-group {
  margin-bottom: 15px !important;
}

.page-template-template-dashboard-php .modal-backdrop.fade.in {
  display: none;
}

.lp-coupon-box-row .events-map-wrap .lp-coordinates a {
  cursor: pointer !important;
}

.listing-app-view .hotel-menu .close-menu-popup {
  display: block;
}

.listing-app-view a.close-menu-popup {
  right: 12px;
  top: 0;
}

.listing-app-view a.open-modal > img {
  margin: 5px 7px 0 25px;
}

.lp-multi-star-wrap
  .lp-multi-star-field.rating-with-colors.lp-star-bad
  p
  i.fa-star {
  color: rgb(222, 145, 71) !important;
}

.grecaptcha-badge {
  z-index: 99;
}

/* css for new claim */

.lp-form-planclaim-st .topwrap {
  position: absolute;
  left: 0;
  top: 20px;
}

.lp-form-planclaim-st .claim_formbgimage {
  background-size: cover !important;
}

.lp-form-planclaim-st .rightside,
.lp-form-planclaim-st .leftside {
  display: inline-block;
  float: left;
  background-color: #fff;
  min-height: 470px;
}

.claim_formbgimage > img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  position: absolute;
  object-fit: cover;
}

.lp-form-planclaim-st .leftside .insidewrp {
  padding: 15px 30px 10px;
}

.lp-form-planclaim-st .form-group label span {
  display: inline-block;
}

.lp-form-planclaim-st .form-group label span .help-text {
  float: right !important;
}

.lp-form-planclaim-st .help-text a.help {
  margin-top: 4px;
}

.lp-form-planclaim-st .claim_file-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  text-align: right;
  width: auto;
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  line-height: 24px;
}

.lp-form-planclaim-st .claim_file-btn-wrapper a {
  cursor: pointer;
  color: #3e3f42;
  font-size: 10px;
  text-transform: capitalize;
}

.lp-form-planclaim-st .claim_file-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.claim_shield {
  margin-bottom: 0;
  font-size: 12px;
  padding-top: 5px;
}

.claim_shield i {
  color: #1665d8;
}

.lp-form-planclaim-st .claim-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 7px;
}

.logged-in .lp-form-planclaim-st .claim-text {
  bottom: -25px;
}

.lp-form-planclaim-st .claim-text .slick-dots li button:before {
  content: "";
  font-size: 100px;
  width: 50px;
  height: 2px;
  color: #8f8d8d !important;
  background-color: rgba(255, 255, 255, 0.6);
}

.lp-form-planclaim-st .claim-detailstext {
  padding: 32px;
}

.lp-form-planclaim-st .claim-detailstext h5,
.lp-form-planclaim-st .claim-detailstext p {
  color: #fff;
  font-size: 16px;
}

.lp-form-planclaim-st .slick-dots li {
  margin: 0 24px;
}

.lp-form-planclaim-st .slick-dots li.slick-active button:before {
  background-color: #ffffff !important;
}

.lp-form-planclaim-st .newuserlabel {
  font-size: 12px;
  margin: 0 0;
}

.singincheckbox input[type="checkbox"]:checked + label:before {
  content: "\f00c";
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  font-family: FontAwesome;
  color: #7f7f7f;
  background-color: transparent;
  border: 1px solid #7f7f7f;
}

.lp-form-planclaim-st .claim_signin {
  display: none;
}

.unreadMsgDot {
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #ff1f1f;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

/* end css for new claim */

/*vertical_view_1*/

.pricing_plans_v2.col-md-offset-2:first-child,
.pricing_plans_v3.col-md-offset-2:first-child,
.view_version8.col-md-offset-2:first-child,
.price-view-default.col-md-offset-2:first-child {
  margin-left: unset !important;
}

.vertical_view .lp-plane-top-wrape p {
  line-height: 46px;
}

.vertical_view .lp-plane-top-wrape p span {
  font-size: 14px;
  font-weight: normal;
}

span.package-type {
  margin-top: 5px;
}

/*vertical_view_2*/

/*vertical_view_3*/

.pricing_plans_v3 .lp-view-all-price-feature .lp-hide-show-price-features {
  top: 0 !important;
}

/*vertical_view_4*/

@media (min-width: 992px) {
}

div[data-style$="vertical_view_9"] .col-md-4 .lp-price-main {
  background: #fff !important;
}

@media (max-width: 480px) and (min-width: 320px) {
  #lp-find-near-me {
    position: static !important;
    width: 50% !important;
    float: left !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-left: 35px !important;
  }
  #lp-find-near-me li {
    width: 100% !important;
    padding: 0 !important;
  }
}

.lp-section.listing-style4 #lp-find-near-me {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.avoid-hidiing-filters .more-filter.lp-filter-inner-wrapper {
  display: block !important;
}

.form-group.lp-claim-form-check-circle
  input[name="lp-claim-form-check-circle"] {
  width: 22px;
  height: 22px;
  left: 20px;
  z-index: 99;
  top: 20px;
  cursor: pointer;
  opacity: 0;
  display: block;
}

.grid_view2 .lp-grid-box-thumb img,
.grid_view6 .lp-grid-box-thumb img {
  max-width: initial !important;
}

.grid_view2.grid_view_s1 .lp-grid-box-description {
  min-height: 132px;
  padding: 6px 13px 6px;
}

.grid_view2.grid_view_s1 .lp-grid-box-bottom {
  min-height: 41px;
  line-height: 27px;
}

.grid_view_s2 .lp-grid-box-description {
  min-height: 88px;
  padding: 6px 13px 6px;
}

.grid_view_s3 .lp-grid-box-description {
  min-height: 117px;
}

.grid_view_s4 .lp-listing-bottom {
  min-height: 128px !important;
}

.lp-cpn-end-container {
  display: none;
}

.lp-grid-box-contianer.grid_view2 .lp-grid-box-thumb-container,
.lp-grid-box-contianer.grid_view2
  .lp-grid-style3-outer
  .lp-grid-box-thumb-container {
  height: 240px;
}

.lp-grid-box-contianer.grid_view2.listing-grid-view2-outer
  .lp-grid-box-thumb-container,
.lp-grid-box-contianer.grid_view6 .lp-grid-box-thumb-container {
  height: 400px;
}

.menu-edit-imgs-wrap .menu-edit-img-wrap img {
  margin-left: 0;
}

.lp-menu-form-feilds img.frontend-image {
  display: none;
}

.menu-edit-img-wrap {
  position: relative;
  display: inline-block;
  border: solid 1px;
  margin-left: 2px;
  position: absolute;
  left: 7px;
  top: -5px;
}

h6.payment-recurring-message {
  float: none;
  clear: both;
  background: #e7edf3;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: -12px;
  margin-top: 45px;
  position: relative;
  color: #8589a0;
  border: 1px solid #ddd;
}

h6.payment-recurring-message:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #e7edf3;
  top: -10px;
  transform: rotate(45deg);
  border: 1px solid transparent;
  border-top-color: #ddd;
  border-left-color: #ddd;
}

.rec_alert_remove {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.lp-ad-location-image {
  cursor: pointer;
}

#lp-new-ad-compaignForm label.lp-camp-lbl.checkbox {
  cursor: pointer;
}

#lp-new-ad-compaignForm .lp-select-ad-place input[type="checkbox"] + label {
  pointer-events: none;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio {
  pointer-events: none;
}

.about-box-container .vc_empty-shortcode-element {
  min-height: unset !important;
}

#claimform .help-text:hover {
  cursor: pointer;
}

.lp-sidebar-nearby .grid_view2 .lp-grid-box-thumb img {
  border-radius: 0;
}

.lp-sidebar-nearby .grid_view2 .lp-grid-box-thumb img,
.lp-sidebar-nearby .grid_view6 .lp-grid-box-thumb img {
  width: 100% !important;
}

.lp-nearby.paid-listing
  .listing-post
  .lp-grid-box
  .lp-grid-desc-container
  .lp-grid-box-thumb-container {
  height: auto !important;
}

div[data-style="vertical_view_1"] .lp-plane-top-wrape p span {
  color: #fff !important;
}

div[data-style="horizontal_view_1"] .lp-plane-top-wrape .clearfix:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
}

.lp-view-all-price-feature-first {
  display: block !important;
}

.lp-col-outer .lpcheckouttac {
  padding-left: 25px;
  line-height: 25px;
}

.home
  .lp-header-middle
  .lp-menu-header4-sts-icon
  .lp-header-user-nav
  .header-login-btn:hover {
  color: #fff !important;
}

.listing-second-view .open-hours .hidding-timings li span {
  line-height: 40px;
}

.sidebar-filters-map-full {
  width: calc(100% - 350px) !important;
}

.lp-ad-click-outer .add-new-form-field {
  display: none;
}

.lp-menu-step-two-outer .lp-lead-form-options-wraper input {
  height: 46px !important;
  width: 100%;
  line-height: 46px !important;
  border: 1px solid #dedede !important;
  padding: 6px 12px;
  border-radius: 5px;
  color: #818181 !important;
}

.lp-menu-step-two-outer .lp-lead-form-options-wraper .lp-option-wrap {
  margin-top: 15px;
}

.claimform-box .lp-horizontial-specific-height {
  max-height: 350px !important;
  overflow: auto !important;
}

/*change plane new popup*/

.lp-existing-plane-container-new .modal-header .modal-title {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
}

.modal-small-title {
  font-size: 12px;
  background: #e4f2fc;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  margin: 0;
}

.lp-existing-plane-container .modal-header {
  padding-bottom: 0;
  border-bottom: 0 solid #e5e5e5;
}

.modal-big-title {
  color: #3f576e;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

.lp-active-plan-outer-box h4 {
  margin: 0;
}

.lp-active-plan-outer-box {
  background: #d9e8f8;
  padding: 24px;
  border-radius: 2px;
  border: 2px solid #a4c8ef;
  margin: 10px 0;
  padding-top: 0;
}

.lp-active-plan-outer-box-title {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 9px;
  background: #9be15d;
  margin: 0 -24px;
  padding: 4px 0;
  margin-bottom: 15px;
}

.lp-new-plane-container .lp-selected-plan-features {
  padding: 24px;
  border-radius: 2px;
  border: 2px solid #a4c8ef;
  margin: 10px 0;
  margin-bottom: 30px;
}

.lp-existing-all-plane-container-new {
  padding: 0 15px;
}

.lp-existing-all-plane-container-new .lp-selected-plan-price .plan-options {
  font-weight: 700;
  margin: 0;
}

.lp-existing-all-plane-container-new .select-plan-form .radio label:before {
  background-color: #fff;
}

.lp-existing-all-plane-container-new
  .select-plan-form
  input[type="radio"]:checked
  + label::before {
  background-color: #3b88dd;
}

.plane_change_btn,
.lp_change_plan_action {
  padding: 0;
}

.lp_change_plan_action,
.lp-action-div form input[type="submit"],
.lp-new-plane-container .plane_change_btn_new input[type="submit"] {
  width: 100%;
  color: #fff;
  border: 1px solid #0093ff;
  border-radius: 3px;
  padding: 6px 10px;
  background: #0093ff;
  text-transform: uppercase;
  text-align: center;
  line-height: 22px;
  font-weight: 500;
}

.lp_change_plan_action:hover,
.lp-action-div form input[type="submit"]:hover,
.lp-new-plane-container .plane_change_btn_new input[type="submit"]:hover {
  border: 1px solid #0093ff;
  background: #0093ff;
}

.lp-new-plane-container .lp-change-plane-status {
  position: relative;
  right: 0;
  bottom: 0;
}

.lp-change-plan-popup .modal-content {
  border: 0;
}

.lp-existing-plane-container-new .modal-header .close {
  margin-top: -9px !important;
  margin-right: -12px !important;
  background: #fafbfb !important;
  opacity: 1;
}

.lp-existing-plane-container-new .select-plan-form .radio.radio-danger {
  border: 1px solid #b5b5b5;
}

.lp-existing-plane-container-new .per_user_per_listing_price p {
  margin: 8px 0 0;
}

.lp-expire-update-status .alert.alert-success {
  display: block;
}

.lp-change-plane-status .lp-action-div {
  margin-bottom: 10px;
}

.change-plan-btn-holder {
  display: block;
  width: 100%;
}

.change-plan-btn-holder .lp-back-to-change-plan {
  width: 100%;
  color: #fff;
  border: 1px solid #0093ff;
  border-radius: 3px;
  padding: 6px 10px;
  background: #0093ff;
  text-transform: uppercase;
  text-align: center;
  line-height: 22px;
  font-weight: 500;
  display: block;
}

/*change plane new popup end*/

.lp-menu-item-detail .help-tooltip {
  padding: 10px 12px !important;
  margin-bottom: 0 !important;
  border: 1px solid #d8d8d8 !important;
}

/* 9/14/2020 */

#sidebar .jw-recent-posts-widget ul li .jw-recent-content a {
  line-height: 17px;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio:after {
  opacity: 1 !important;
  transform: translateY(-50%) !important;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio:after {
  top: 50% !important;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio:before {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio {
  position: absolute !important;
  top: 50% !important;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio:before,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio:before,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio:after {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked
  + label.lp-lbl-with-radio,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked)
  + label.lp-lbl-with-radio {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 11px;
}

#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:checked,
#lp-new-ad-compaignForm
  .lp_payment_methods_ads
  div.lp-payement-images
  [type="radio"]:not(:checked) {
  position: absolute;
}

#lp-new-ad-compaignForm .lp_payment_methods_ads div.lp-payement-images {
  height: 80px;
  margin-top: 20px;
}

.lp-payement-images-new-wrap {
  height: 80px;
  border: 1px solid #dce0e2;
  border-radius: 5px;
}

.lp-payement-images-new-wrap span {
  position: absolute;
  left: 20px;
  right: 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
  transform: translateY(-50%);
  top: 50%;
  color: #363f48;
  font-weight: 600;
}

.lp-listing-menuu-wrap .lp-listing-menuu-slider .slick-arrow {
  color: #222;
  background: #fff;
}

.lp-listing-menuu-wrap .lp-listing-menuu-slider .slick-arrow {
  color: #222;
  background: #fff;
}

.listing-app-view .footer-app-menu {
  z-index: 99;
}

.lp-check-doubletime.checkbox.form-group {
  display: inline-block !important;
}

.input-group.width-49-percent.hide-what {
  width: 95% !important;
}

.lp-dropdown-menu.open #menu #menu-home-page-menu:after {
  visibility: visible;
}

.lp-sidebar-nearby .lp-grid-box-thumb {
  width: 100%;
  float: none;
  border-radius: 0;
}

.logged-in #app-view-login-popup {
  z-index: -1 !important;
}

/* People talking about us testimonial */

.classic-testimonial.lp-section-content-container {
  padding-bottom: 90px;
}

.classic-testimonial.testimonial.lp-section-content-container .video-thumb img {
  min-height: 266px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.classic-testimonial.testimonial.lp-section-content-container i {
  width: 46px;
  height: 43px;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: 22px;
  bottom: -22px;
  margin: auto;
  font-size: 46px;
  z-index: 9999999999;
}

.classic-testimonial.testimonial.lp-section-content-container i {
  background: transparent !important;
}

.classic-testimonial.testimonial.lp-section-content-container
  .overlay-video-thumb:hover
  i::after {
  background: #fff;
}

.classic-testimonial.testimonial.lp-section-content-container i::after {
  content: "";
  width: 30px;
  height: 29px;
  position: absolute;
  left: 0;
  z-index: -1;
  border-radius: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.classic-testimonial.testimonial.lp-section-content-container
  .fa.fa-play-circle-o:before {
  margin: -2px;
  content: "\f144" !important;
}

.classic-testimonial .overlay-video-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent linear-gradient(180deg, #00000000 0%, #000000b8 100%)
    0% 0% no-repeat padding-box;
  border-radius: 6px;
}

.classic-testimonial .testimonial-description {
  padding: 22px;
  position: relative;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 12px 12px 12px 0px;
  opacity: 1;
}

.classic-testimonial .testimonial-description p {
  margin-bottom: 0;
}

.classic-testimonial .testimonial-inner-box h3 {
  font-size: 24px;
  color: #282b42;
  line-height: 32px;
  margin-bottom: 26px;
}

.classic-testimonial .testimonial-description:after {
  display: none;
  background-color: transparent;
}

.classic-testimonial .testimonial-user-info {
  margin-top: 26px;
  display: flex;
  align-items: center;
}

.classic-testimonial label.testimonial-user-position.user-position {
  text-align: left;
  font-family: "Open Sans","Open Sans Fallback";
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  line-height: 19px;
  font-size: 13px;
  font-weight: 500;
  margin: 0 !important;
  padding: 0 !important;
}

.classic-testimonial label.testimonial-user-name.user-name {
  text-align: left;
  font-family: "Open Sans","Open Sans Fallback";
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  line-height: 18px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 !important;
  padding: 0 !important;
}

.classic-testimonial .testimonial-user-thumb.user-thumb {
  border-radius: 100%;
  overflow: hidden;
  background: #4f568500 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 2px solid #ffffff;
  opacity: 1;
  width: 37px;
  height: 37px;
}

.classic-testimonial .testimonial-description p {
  margin-bottom: 0;
  text-align: left;
  font-family: "Open Sans","Open Sans Fallback";
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  line-height: 24px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 4850px) {
  .classic-testimonial .testimonial-description {
    margin-top: 25px;
  }
}

/* new classic setting css  */

.post-with-map-container-right.classic-layout {
  box-shadow: 3px 7px 12px 2px #00000038;
  position: relative;
  height: 100%;
  background: #f9f9fb;
}

.post-with-map-container {
  height: 100%;
  min-height: 100vh;
}

/* new classic setting css end  */

.search-row-classic {
  padding: 0 30px;
  margin-top: -66px;
}

.search-row.search-row-classic .form-inline .form-group {
  margin-right: 1px;
}

.search-row-classic .lp_add_more_filter a i {
  color: #4f5685;
  font-weight: 600 !important;
}

.classic-filters-new-style {
  display: flex;
  flex-wrap: wrap;
}

.classic-filters-new-style > div {
  margin-right: 8px !important;
  padding-right: 0 !important;
}

.search-row.search-row-classic
  .form-inline.lp-features-filter.tags-area
  .form-group {
  background: #ffffff;
  border-radius: 5px;
  padding: 28px 22px 0px 22px !important;
  margin-bottom: 0 !important;
}

.search-row.search-row-classic
  .lp-features-filter.tags-area
  ul
  li
  .checkbox
  label::before {
  background-color: #dedede87 !important;
  border: unset !important;
}

.search-row.search-row-classic
  .lp-features-filter.tags-area
  ul
  li
  .checkbox
  label {
  background-color: #ffffff;
  border-radius: 7px;
  border: unset;
  box-shadow: 1px 1px 50px 1px #6c6c6c0d;
  margin: 0px;
  text-align: left;
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  font-weight: 600 !important;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
}

.search-row.search-row-classic .form-inline.lp-features-filter.tags-area {
  border-radius: 9px;
  margin-top: 15px;
  box-shadow: 1px 1px 50px 1px #6c6c6c0d;
}

.search-row.search-row-classic .lp-features-filter.tags-area ul > li {
  width: 33%;
  margin-bottom: 30px;
}

.search-row-classic .form-inline .lp-search-cats-filter-dropdown {
  margin-right: 10px !important;
  margin-left: 3px !important;
}

.search-row.search-row-classic .form-inline {
  padding: 0 !important;
  border: unset !important;
}

.search-row-classic .lp_add_more_filter a {
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 7px;
  border: unset;
  padding: 14px 18px;
  margin: 0px;
  text-align: left;
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  font-weight: 500;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 26px #4f56850a;
}

.lp-filter-inner-wrapper .classic-filters-new-style .search-filters > ul > li {
  margin-right: 0 !important;
  position: relative;
}

.search-row .classic-filters-new-style .form-inline .form-group {
  margin-right: 0;
  padding-right: 0;
}

.open-clasic-page-container
  .filter-top-section
  .search-filters
  > ul
  > li
  > a
  span {
  margin: 0 5px 0 4px;
  text-align: left;
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  font-weight: 600 !important;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
}

.listing-classic-filters.listing-style-6
  .search-filters
  > ul
  > li
  > a.classic-sortingby-select-option:hover
  span,
.listing-classic-filters.listing-style-6
  .search-filters
  > ul
  > li
  > a.classic-sortingby-select-option:hover {
  color: #2558ff !important;
}

.open-clasic-page-container
  .filter-top-section
  .search-filters
  > ul
  > li
  > a:hover {
  color: #4f5685 !important;
}

.open-clasic-page-container .filter-top-section .search-filters > ul > li > a {
  background: transparent !important;
  box-shadow: unset !important;
}

.classic-filters-new-style #lp-find-near-me > ul > li > a {
  border-radius: 7px;
  border: unset !important;
  padding: 11px 14px;
  margin-bottom: 10px;
  margin: 0px;
  text-align: left;
  font-weight: 600 !important;
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 26px #4f56850a;
}

.search-row-classic .search-filters > ul > li > a {
  border-radius: 7px;
  border: unset !important;
  padding: 10px 18px;
  margin-bottom: 10px;
  margin: 0px;
  text-align: left;
  font-weight: 600 !important;
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 26px #4f56850a;
}

.search-row-classic .listing-view-layout > ul li a {
  border-width: 1px;
  line-height: 34px;
  border: unset;
  margin: 0px;
  letter-spacing: 0px;
  color: #9aa0ca;
  font-weight: 500;
  font-family: "Open Sans","Open Sans Fallback";
  height: 44px;
  width: 44px;
  text-align: center;
  padding: 5px 4px;
  font-size: 16px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 26px #4f56850a;
  border-radius: 7px;
  opacity: 1;
  font-size: 16px;
}

.open-clasic-page-container .filter-top-section {
  margin-top: 20px;
  margin-bottom: 16px;
}

.open-clasic-page-container .filter-top-section .search-filters {
  margin-bottom: 0;
}

.listing-view-layout > ul li.classic-mobile-map {
  float: unset;
}

.search-row-classic .lp-title h3 {
  font-size: 14px;
  line-height: 30px;
  color: #282b42;
}

.search-row-classic .lp-title h3 span {
  font-weight: 700 !important;
  font-size: 14px;
  color: #282b42;
  font-family: Open Sans,"Open Sans Fallback";
}

.search-row-classic.filter-top-section .listing-view-layout {
  margin-top: -9px;
  position: absolute;
  right: -16px;
}

.search-row-classic .lp_add_more_filter a:hover i {
  color: #fff !important;
}

.search-row.search-row-classic .input-group.border-dropdown {
  border-radius: 7px;
  border: unset;
  padding: 6px 18px;
  margin: 0px;
  text-align: left;
  letter-spacing: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4f5685;
  opacity: 1;
  font-weight: 500;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 26px #4f56850a;
}

.search-row-classic
  .chosen-container.chosen-container-single.chosen-container-single-nosearch {
  height: 38px;
}

.search-row-classic
  .chosen-container.chosen-container-single.chosen-container-single-nosearch
  a {
  background: transparent !important;
}

.search-row-classic .input-group-addon.lp-border {
  background: transparent;
  height: auto;
  padding: 0 !important;
  margin-left: -2px;
  margin-right: 14px;
  line-height: 12px;
}

.search-row-classic .border-dropdown span,
.search-row-classic .border-dropdown span:after,
.search-row-classic .input-group-addon.lp-border i {
  color: #4f5685;
}

.search-row-classic .chosen-container-single .chosen-single span {
  margin-right: 0;
}

.classic-filters-new-style .lp-tool-tip-content {
  width: max-content;
  padding: 10px;
}

.classic-layout #content-grids .text-center p a {
  box-shadow: 0px 12px 26px #4f56850a;
  background: #2458ff;
}

.classic-layout #content-grids .text-center p a:hover {
  background: #4f5685;
}

.search-row-classic .border-dropdown span:after {
  right: 5px;
}

.open-clasic-page-container .active-result {
  border-radius: 7px;
  margin: 0 5px 5px 5px;
  border-bottom: unset !important;
}

/* new classic setting css  */

.open-clasic-page-container {
  padding-bottom: 0;
}

/* new css changes for filters` */

.lp-tooltip-div {
  border: unset;
  border-radius: 6px;
  margin-top: 5px;
}

.lp-tooltip-div > .lp-tooltip-arrow {
  display: none;
}

.lp-tooltip-div ul {
  display: flex;
  flex-direction: column;
  min-width: 130px;
}

.lp-tooltip-div ul li a {
  text-align: left;
  border: unset;
  padding: 6px 10px;
  border-radius: 7px !important;
  background: transparent;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer {
  width: auto;
}

.lp-tool-tip-content p {
  padding: 8px;
  border-radius: 5px;
}

.lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li a {
  text-align: left;
  border: unset;
  border-radius: 7px !important;
  background: transparent;
  display: block;
  float: inherit;
  min-width: 150px;
  padding: 14px 10px;
  margin: 0;
}

.post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop {
  width: 122%;
  border: unset !important;
  text-align: left;
  border: unset !important;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px 0;
  border-radius: 6px;
  margin-top: 5px !important;
}

.post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop
  .chosen-results::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}

/* Track */

.post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop
  .chosen-results::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */

.post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop
  .chosen-results::-webkit-scrollbar-thumb {
  background: #808080c7;
  border-radius: 5px;
}

/* Handle on hover */

.post-with-map-container-right
  #searchform
  .chosen-container.chosen-with-drop
  .chosen-drop
  .chosen-results::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

.chosen-container .chosen-results {
  padding: 5px 0 !important;
}

.lp-header-search-filters .header-more-filters,
.page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow {
  width: 100% !important;
  padding-top: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100%;
  background: #ffffff00 !important;
  border: unset !important;
  opacity: 1;
  top: 0;
  z-index: 999;
  top: 0;
  display: block !important;
  transition: 0.5s;
  position: fixed !important;
  transform: translatex(-300px);
  visibility: hidden;
  height: 0;
}

.lp-header-search-filters .header-more-filters {
  box-shadow: unset !important;
}

.header-more-filters .lp_all_page_overflow h2 {
  font-size: 20px;
  text-align: left;
  letter-spacing: 0px;
  color: #484f5f;
  opacity: 1;
  margin: 0;
}

.header-more-filters .outer_all_page_overflow {
  background-color: transparent !important;
}

.lp-header-search-filters .header-more-filters.hide-filters,
.page-container:not(.lp-sidebar-filters-style)
  .outer_all_page_overflow.hide-filters {
  transform: translatex(0);
  visibility: visible;
  height: 100%;
}

.header-more-filters .lp_all_page_overflow,
.page-container:not(.lp-sidebar-filters-style)
  .outer_all_page_overflow
  .lp_all_page_overflow {
  width: 300px !important;
  border: unset;
  height: 100%;
  margin: 0;
  padding: 30px 40px;
  box-shadow: 0px 12px 26px #4f568580;
}

.lp-filter_data_switch_on_off,
.lp_all_page_overflow .lp_more_filter_data_section,
.lp-filter_data_switch_on_off,
.lp_all_page_overflow .col-md-12 > h2 {
  border: unset !important;
  padding: 15px 0 0 0 !important;
}

.lp-header-search-filters .lp_all_page_overflow_after,
.page-container:not(.lp-sidebar-filters-style) .lp_all_page_overflow_after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 300px;
  right: 0;
  bottom: 0;
}

.page-container:not(.lp-sidebar-filters-style)
  .outer_all_page_overflow
  .lp_all_page_overflow
  h2 {
  font-size: 20px;
  text-align: left;
  letter-spacing: 0px;
  color: #484f5f;
  opacity: 1;
  margin: 0;
}

.lp_extrafields_select-border2 .lp-more-filters-outer ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.lp_all_page_overflow h3 {
  letter-spacing: 0px;
  color: #424857 !important;
  opacity: 1;
  font-size: 16px !important;
  text-align: left;
  font-weight: 400 !important;
}

.lp-more-filters-outer li {
  width: 100%;
}

.lp_all_page_overflow
  .lp_extrafields_select-border2
  .filter_checkbox_container {
  padding-left: 40px;
  line-height: 30px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0px;
  color: #424857;
  opacity: 0.8;
}

.filter_radiobox_container {
  font-size: 14px !important;
}

@media (max-width: 1200px) {
  .lp-home-banner-contianer
    .lp-search-bar.classic-search
    .form-group.lp-suggested-search {
    width: 40%;
  }
}

@media (max-width: 980px) {
  .classic-filters-new-style {
    justify-content: start;
  }
  .classic-filters-new-style .btn.default.near-me-btn {
    margin-bottom: 6px !important;
  }
  .lp-header-search-filters .header-more-filters,
  .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow {
    padding-top: 0 !important;
  }
  .page-container:not(.lp-sidebar-filters-style) .lp_all_page_overflow_after {
    z-index: -1;
  }
  .header-more-filters .lp_all_page_overflow,
  .page-container:not(.lp-sidebar-filters-style)
    .outer_all_page_overflow
    .lp_all_page_overflow {
    height: 100%;
    padding: 24px;
    border-radius: 0 !important;
    margin: 0;
  }
  .lp-header-search-filters .header-more-filters.hide-filters,
  .page-container:not(.lp-sidebar-filters-style)
    .outer_all_page_overflow.hide-filters {
    margin: 0 !important;
    z-index: 999999999;
  }
  .header-more-filters .lp_all_page_overflow {
    padding-top: 16px !important;
  }
  .lp-header-search-filters .header-more-filters {
    width: calc(100% - 0px) !important;
  }
}

/*  classic updated */

@media (max-width: 768px) {
  .more-filter-left-col #lp-find-near-me {
    margin-right: 5px;
    margin-bottom: 12px !important;
  }
  .post-with-map-container
    .search-row.margin-top-subtract-35
    .form-inline
    .form-group {
    margin-bottom: 7px !important;
  }
  .lp-home-banner-contianer
    .lp-search-bar.classic-search
    .form-group.lp-suggested-search {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .lp-home-banner-contianer
    .lp-search-bar.classic-search
    .form-group.lp-location-search {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .lp-search-bar .lp-search-bar-right {
    width: 100%;
  }
  .lp-home-banner-contianer
    .lp-search-bar
    .lp-suggested-search
    .input-group-addon.lp-border {
    background: transparent;
  }
  body .banner-view-classic .lp-home-categoires.lp-inside-search-view4 a {
    min-height: 75px !important;
  }
  body
    .banner-view-classic
    .lp-home-categoires.lp-inside-search-view4:not(.lp-inside-search-view2)
    li
    a
    span {
    font-size: 12px;
  }
  body .banner-view-classic .lp-home-categoires.lp-inside-search-view4 li {
    min-width: 106px;
    border-radius: 6px !important;
    overflow: hidden;
  }
  body .banner-view-classic .pos-relative .lp-home-banner-contianer {
    height: 440px !important;
  }
  .banner-view-classic .lp-home-categoires.lp-inside-search-view4 {
    -webkit-transform: translateY(-330%) !important;
    -moz-transform: translateY(-330%) !important;
    -ms-transform: translateY(-330%) !important;
    -o-transform: translateY(-330%) !important;
    transform: translateY(-330%) !important;
  }
  .home-categories-area.banner-view-classic.new-banner-view-category-st
    .col-md-12 {
    height: 0;
  }
  .search-row-classic .search-filters > ul > li > a {
    border-radius: 4px;
    border: unset !important;
    padding: 7px 10px;
  }
  .search-row-classic .lp_add_more_filter a {
    border-radius: 2px;
    border: unset;
    padding: 10px 12px;
  }
  .search-row.search-row-classic .input-group.border-dropdown {
    border-radius: 2px;
    padding: 3px 12px;
  }
  .search-row-classic .search-filters > ul > li > a {
    border-radius: 4px;
    padding: 7px 14px;
  }
  .search-row.search-row-classic .lp-features-filter.tags-area ul > li {
    margin-bottom: 0;
  }
  .search-row-classic .search-filters > ul > li > a {
    border-radius: 4px;
    border: unset !important;
    padding: 7px 9px;
  }
  .classic-filters-new-style #lp-find-near-me > ul > li > a {
    border-radius: 4px;
    padding: 9px 9px;
  }
  .post-with-map-container-right .search-row div.lp-filter-inner {
    z-index: 0;
  }
  header {
    z-index: 5 !important;
  }
  .post-meta-info-classic .post-meta-left-box .breadcrumbs li span,
  .post-meta-info-classic .post-meta-left-box .breadcrumbs li a {
    font-size: 12px;
  }
  .post-meta-info-classic {
    text-align: center !important;
  }
  .post-meta-info-classic .post-meta-left-box h1 {
    text-align: center !important;
    font-weight: 600;
  }
  .post-meta-info-classic .post-meta-left-box > p {
    font-size: 14px;
    text-align: center !important;
  }
  .lp-classic-reviews {
    justify-content: center !important;
  }
  .post-meta-info-classic .rating-section-container {
    justify-content: center !important;
    flex-flow: column;
    text-align: center;
    margin: auto;
    align-items: center;
  }
  .post-meta-info-classic .rating-section-container span.rating-section {
    margin-bottom: 15px;
  }
  .post-meta-info-classic .post-meta-right-box {
    margin-top: 4px !important;
  }
  .video-option.classic h2 {
    display: block;
    margin-bottom: 14px !important;
    text-align: center;
  }
  .listing-second-view .post-meta-right-box .post-stat {
    display: flex;
    justify-content: center;
  }
  body .video-option.classic .watch-video.popup-youtube {
    text-align: center !important;
    float: unset !important;
    justify-content: center;
    border-radius: 7px;
    margin-top: 16px;
  }
  .lp-new-grid-bottom-button ul li:first-child:nth-last-child(2),
  .lp-new-grid-bottom-button ul li:first-child:nth-last-child(2) ~ li {
    width: 50% !important;
  }
  .lp-home-banner-contianer
    .lp-search-bar.classic-search
    .form-group.lp-suggested-search
    input#select {
    border-radius: 5px !important;
    margin-bottom: 10px;
  }
  .lp-shortcode-search form {
    flex-direction: column;
  }
  .lp-search-bar.classic-search form #cities {
    border-radius: 5px !important;
  }
  .lp-search-bar.classic-search {
    padding: 0 15px 15px 15px;
  }
  .classic-view-grid-container .lp-listing-content-grid li.lp-classic-reviews {
    text-align: left;
    justify-content: start !important;
  }
  body .classic-view-grid-container .lp-new-grid-bottom-button ul li {
    width: 50% !important;
  }
  .lp-header-style-classic .lp-search-header-style {
    width: 100% !important;
  }
  .lp-header-style-classic .lp-search-header-style input.lp-search-btn {
    padding: 0 !important;
    border-radius: 6px;
  }
  .lp-header-style-classic .lp-search-bar-right {
    background: transparent !important;
  }
  .lp-header-style-classic .lp-search-bar-right input.lp-search-btn {
    height: 45px !important;
  }
  .lp-header-style-classic .lp-search-bar-right .lp-search-icon {
    margin-top: 14px;
    font-size: 18px !important;
  }
  .lp-header-style-classic .form-group.lp-location-search #cities {
    border-radius: 7px !important;
  }
  .post-meta-info-classic .post-meta-left-box h1 {
    text-align: center;
  }
  .post-meta-info-classic .post-meta-left-box > p {
    text-align: center;
  }
}

@media (max-width: 568px) {
  .banner-view-classic .lp-home-categoires.lp-inside-search-view4 {
    -webkit-transform: translateY(-330%) !important;
    -moz-transform: translateY(-330%) !important;
    -ms-transform: translateY(-330%) !important;
    -o-transform: translateY(-330%) !important;
    transform: translateY(-200%) !important;
  }
  .lp-home-banner-contianer-inner
    .col-md-12.col-sm-12.text-center
    span.lp-dyn-city {
    font-size: 26px !important;
  }
  .lp-blog-grid-box-container-classic-style .lp-blog-grid-box-description {
    background: transparent;
  }
  .post-meta-info-classic .post-meta-left-box h1 {
    font-size: 25px;
  }
  .post-meta-info-classic .rating-section-container {
    margin-top: 12px;
  }
  .post-meta-info-classic .secondary-btn {
    height: 46px !important;
    line-height: 36px !important;
    width: 182px !important;
  }
  .classic-filters-new-review-detail .reviews-section .review-thumbnail {
    height: 74px !important;
    width: 74px !important;
  }
  .classic-filters-new-review-detail .reviews-section figcaption a {
    font-size: 18px;
  }
  .listing-second-view .reviews-section .details {
    margin-top: 12px;
  }
  .classic-filters-new-review-detail .reviews-section {
    padding: 20px !important;
  }
  body
    .classic-filters-new-review-detail
    .reviews-section
    .top-section
    .review-count {
    flex-direction: inherit;
  }
  body .classic-filters-new-review-detail .images-gal-section .slick-next {
    right: 8px;
  }
  body .classic-filters-new-review-detail .images-gal-section {
    padding: 0 24px;
    margin-left: 0;
  }
  body .classic-filters-new-review-detail .review-img-slider img {
    width: 250px;
    height: 156px;
  }
  body .classic-filters-new-review-detail .images-gal-section .slick-prev {
    left: 4px;
  }
}

@media (max-width: 480px) {
  .listing-classic-filters #see_filter {
    display: block !important;
    margin-top: 8px !important;
  }
  .listing-classic-filters #lp-find-near-me {
    position: unset !important;
    width: auto !important;
    float: unset !important;
    margin: 0 5px 0 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
  }
  .open-clasic-page-container
    .filter-top-section
    .search-filters
    > ul
    > li
    > a {
    padding: 0;
  }
  .search-row-classic .lp-title h3 {
    font-size: 16px;
    font-weight: 600;
  }
  .listing-slide-style4 {
    overflow: hidden;
    border-radius: 12px !important;
  }
}

@media (max-width: 370px) {
  .banner-view-classic .lp-home-categoires.lp-inside-search-view4 {
    -webkit-transform: translateY(-198%) !important;
    -moz-transform: translateY(-198%) !important;
    -ms-transform: translateY(-198%) !important;
    -o-transform: translateY(-198%) !important;
    transform: translateY(-198%) !important;
  }
  body .banner-view-classic .lp-home-categoires.lp-inside-search-view4 li {
    min-width: 96px;
  }
}

/* new css */

.lp-selected-hover-category ul {
  position: absolute;
  background: #ffffff;
  min-width: 250px;
  display: block;
  z-index: 99999999999;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border: 1px solid #00000066;
  transform: translateY(10px);
}

.lp-selected-hover-category ul li a:hover {
  background: #4d4c4c;
  color: #fff;
}

.lp-selected-hover-category .main-menus {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.lp-selected-hover-category .main-menu-category a {
  background: #fff;
  padding: 10px;
  border-radius: 0;
  display: block;
  border-bottom: 1px solid #00000014;
}

.lp-selected-hover-category li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.lp-selected-main-menu-category .lp-selected-sub-menu-category {
  z-index: 9999;
  left: 248px;
  top: 0;
}

.lp-header-style-classic ul.sub-menu {
  border-radius: 7px !important;
  background: #fff;
}

.lp-header-style-classic ul.sub-menu li a {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 12px;
  background: transparent !important;
}

.lp-header-style-classic ul.sub-menu li {
  background: transparent !important;
}

.search-row-classic .form-inline .lp-search-cats-filter-dropdown .chosen-drop {
  width: calc(100% + 48px) !important;
}

/* classic preview modal css */

.lp-classic-preview-modal .slide {
  padding: 10px;
}

.lp-classic-preview-modal .slide img {
  border-radius: 6px !important;
  overflow: hidden !important;
  max-height: 260px;
  width: 100%;
  object-fit: cover;
}

.lp-classic-preview-modal span.listing-pro {
  background: #ff4a68 0% 0% no-repeat padding-box;
  border-radius: 4px;
  text-align: left;
  letter-spacing: 0px;
  color: #ffffff !important;
  opacity: 1;
  font-weight: 500 !important;
  display: block !important;
  font-size: 14px !important;
  border: unset !important;
  padding: 3px 6px !important;
  margin-top: 1px;
  width: auto !important;
  height: auto !important;
}

.lp-classic-preview-modal .lp-grid-box-description .lp-h4 a {
  font-size: 19px;
  text-align: center;
  letter-spacing: 0px;
  color: #4f5685;
  opacity: 1;
}

.lp-classic-preview-modal .lp-grid-box-description .lp-grid-box-left.pull-left {
  padding: 0 !important;
}

.lp-classic-preview-modal .lp-grid-box-description {
  padding-top: 0 !important;
}

.lp-classic-preview-modal .lp-grid-desc-container.lp-border {
  margin-top: 0 !important;
}

.lp-classic-preview-modal .quickmap {
  margin: 10px 10px 9px 3px !important;
  margin-right: 31px !important;
  width: calc(100% - 14px);
  height: 488px !important;
  border-radius: 6px;
  overflow: hidden !important;
}

.lp-classic-preview-modal
  .popup-inner-left-padding
  .lp-grid-box-description
  li
  a {
  text-align: left;
  letter-spacing: 0px;
  color: #4f5685 !important;
  opacity: 1;
  font-weight: 500;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
  padding: 3px 6px;
}

.lp-classic-preview-modal .popup-inner-left-padding .lp-grid-box-bottom {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.lp-classic-preview-modal .popup-inner-left-padding .lp-grid-box-bottom span {
  text-align: left;
  letter-spacing: 0px;
  color: #4f5685 !important;
  opacity: 1;
  font-weight: 500;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
  padding: 3px 6px;
}

.lp-classic-preview-modal
  .popup-inner-left-padding
  .lp-grid-box-bottom
  span.cat-icon {
  padding: 0 !important;
}

.lp-classic-preview-modal
  .popup-inner-left-padding
  .lp-grid-box-bottom
  span.grid-closed {
  color: #ff4a68 !important;
}

.lp-classic-preview-modal
  .popup-inner-left-padding
  .lp-grid-box-bottom
  .pull-left {
  max-width: 84% !important;
}

.lp-classic-preview-modal .lp-grid-desc-container.lp-border {
  overflow: unset !important;
}

.lp-classic-preview-modal
  .lp-grid-box-description
  .lp-h4
  a
  span.verified.simptip-position-top.simptip-movable {
  margin-left: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.page-container:not(.lp-sidebar-filters-style)
  .outer_all_page_overflow
  .lp_all_page_overflow
  h2 {
  display: inline-block;
}

.lp-classic-reset-filters {
  float: right;
  font-weight: 600 !important;
  letter-spacing: 0px;
  opacity: 1;
  font-size: 13px;
  font-family: "Open Sans","Open Sans Fallback";
}

.search-row.search-row-classic
  .form-inline
  .classic-filters-new-style
  > div:last-child {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.lp-classic-top-filters li.lp-tooltip-outer {
  margin-right: -8px;
}

.lp-classic-top-filters .lp-tooltip-div {
  margin-left: 14px;
}

/* loader css */

#singlepostmap .lpmap-icon-contianer i {
  font-size: 20px;
  color: #2458ff;
}

.lp-theme-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999999999;
  background-color: #fff;
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}

/* map css for satellite buttons */

body .page-container .leaflet-top {
  pointer-events: all !important;
  z-index: 3 !important;
}

body .page-container .leaflet-top .gmnoprint .gm-style-mtc {
  left: 40px;
}

.leaflet-objects-pane .leaflet-overlay-pane {
  display: none;
}

body .leaflet-map-pane {
  z-index: 3 !important;
}

/* new css for tick  */

.lp-tagline-submit-tagline label input:checked ~ .lp-sbt-checkmark:after {
  display: block;
  font: normal normal normal 12px/1 FontAwesome;
  content: "\f00c";
  font-weight: 600;
  color: #ffffff;
  margin: 3px 4px;
  transform: unset !important;
  border: unset !important;
  top: 1px;
  left: 1px;
  font-size: 11px !important;
}

#wpadminbar {
  z-index: 9999999;
}

.lp-review-right-content .lp-reivew-gallery .listing-review-slider {
  max-height: 120px;
  overflow-x: hidden;
}

.classic-filters-new-review-detail .images-gal-section a {
  max-height: 120px;
  overflow-x: hidden;
}

label.featuresBycat {
  pointer-events: none !important;
}

.post-meta-left-box .lp-listing-logo {
  float: left;
  margin-right: 15px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 15px;
}

.lp-row-app {
  position: relative;
}
.lp-row-app .lp-distance-sidebar {
  position: absolute;
  bottom: 20px;
  right: 23px;
  z-index: 9;
  font-size: 12px;
  color: #ff4500;
  font-weight: 700;
}

/* overlay submit fields  */
.page-style2-content-wrap .form-group.clearfix {
    position: unset !important;
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/responsive-931813bf5b.css */
@media all {
/*
RESPONSIVE QUERIES FOR LISITNGPRO

LAST UPDATED AT : 1/23/2017
/*

/*Quries by moin 23/01/17 started*/

.listing-second-view .author-img>img {
    width: 60px;
    min-width: 60px;
    height: 60px;
}

.header-with-topbar .lp-join-now ul li ul li a {
    color: #000;
}

.sidemap-container.pull-right.sidemap-fixed a.open-img-view {
    opacity: 0;
}

.header-with-topbar.map-view-content .lp-topbar {
    display: none;
}


/*Issues by zaheer started at 2804017*/

.review-form .lp-review-btn {
    padding: 10px 28px 10px 28px;
}

.contactmap {
    height: 763px;
}

.page-heading .page-heading-inner-container h1 {
    margin-top: -4px;
    margin-bottom: 9px;
    text-transform: capitalize;
}

.dashboard-content .postbox table.widefat a.see_more_btn {
    padding-left: 15px;
}

.reviews a.open-reply.pull-left {
    padding-left: 0;
}

.reviews a.open-reply.pull-left i {
    padding-right: 20px;
}

.listing-simple .filter-top-section .lp-title h3 span.font-bold,
.listing-style-1 .filter-top-section .lp-title span.dename {
    color: #fff;
}


/*Issues by zaheer endedes at 2804017*/

#mobile_search_option {
    display: none;
}


/*#menu {*/


/*visibility: hidden;*/


/*display: none;*/


/*margin-left: -450px;*/


/*transition: 0.3s ease;*/


/*}*/

.mm-panels {
    top: 150px !important;
    background: #fff;
}

.mobile-menu.mm-listview {
    border: 0 !important;
}

.mm-opened {
    visibility: visible !important;
    display: block;
    margin-left: 0 !important;
}

.mm-navbar {
    height: auto !important;
}

.mm-navbar.mm-navbar-top {
    height: auto !important;
}

.open-map-view {
    /* opacity: 0;
	display: none; */
}

.open-map-view {
    opacity: 0;
    display: none;
}

.sidemap-container.pull-right.sidemap-fixed.open-map {
    width: 100% !important;
}

a.open-map-view {
    background-color: #363f48;
    border: 1px solid #363f48;
    color: #fff;
    font-size: 16px;
}

a.open-img-view {
    background-color: #363f48;
    border: 1px solid #363f48;
    color: #fff;
    font-size: 16px;
}

.listing-simple .listing-style-1 .open-map-view {
    display: none;
}

.map-view-content {
    height: 65px !important;
    overflow: hidden;
}

.lp-dropdown-menu.open #menu {
    visibility: visible;
}

@media (max-width: 725px) {
    .lp-header-search .lp-header-search-form form {
        overflow: hidden;
    }
    .lp-search-bar .lp-search-bar-left .ui-widget.border-dropdown {
        width: 35%;
    }

    body.listing-app-view.listing-app-view-new .app-view-header .lp-home-banner-contianer {
        height: 250px !important;
        overflow: inherit !important;
    }

    body .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar .form-group.lp-suggested-search {
        margin-bottom: 12px !important;
    }
    .post-map-container .ui-autocomplete,
    .ui-widget select,
    .lp-search-bar .lp-search-bar-left .chosen-container {
        width: 100% !important;
    }
    .lp-search-bar .lp-search-bar-right {
        width: 20%;
    }
    .lp-search-bar .lp-search-bar-right input {
        text-align: center;
        width: 100%;
    }
    .lp-home-categoires {
        position: inherit !important;
        transform: translateY(0%) !important;
        margin-top: 0 !important;
    }
    .ui-widget.border-dropdown .chosen-select.chosen-select5 {
        color: #bababa;
        padding-left: 10px;
        padding-top: 0;
    }
    .lp-search-bar-all-demo .border-dropdown {
        width: 100% !Important;
    }
    .lp-search-bar-all-demo .lp-search-icon {
        left: 22px !important;
    }
    .lp-right-grid .lp-search-bar-right {
        width: 100% !important;
    }
    .lp-right-grid .lp-search-bar-right .lp-search-btn {
        padding: 0 10px !important;
        text-align: center;
    }
    .lp-tabs .lp-rigt-icons .lp-list-view-edit {
        float: none !important;
        height: auto;
        margin-right: 0 !important;
    }
    .lp-tabs .lp-pay-publsh {
        margin-top: 20px !important;
        width: 100%;
    }
    .lp-invoice-table {
        border: none !important;
    }
}

@media (max-width: 430px) {
    .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-left,
    .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-right {
        line-height: normal;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .archive .page-heading.listing-page .page-heading-inner-container.cat-area .col-md-6.col-sm-6:last-child {
        padding-top: 0;
    }
    .archive .page-heading.listing-page .page-heading-inner-container.cat-area .col-md-6.col-sm-6 {
        width: 100%;
        text-align: center;
    }
    .page-container-four.submit_new_style ul.jFiler-items-list.jFiler-items-grid {
        /*width: 100% !important;*/
    }
    .page-container-four.submit_new_style ul.jFiler-items-list.jFiler-items-grid .jFiler-item-thumb img {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* on 14 july */
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer.clearfix .col-md-3.col-sm-3.col-xs-12.pull-right li {
        width: 100%;
        padding-bottom: 10px;
        text-align: left;
    }
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer.clearfix .col-md-3.col-sm-3.col-xs-12.pull-right .lp-rigt-icons ul:last-child {
        margin-left: 0;
    }
    /* end on 14 july */
    .md-modal.md-effect-3.md-show#modal-3 {
        top: 1%;
    }
    .archive .page-heading.listing-page .page-heading-inner-container.cat-area .col-md-6.col-sm-6 .listing-view-layout {
        display: none;
    }
    .archive .page-heading.listing-page .page-heading-inner-container.cat-area .col-md-6.col-sm-6 {
        width: 100% !important;
        text-align: center;
    }
    .page-heading-inner-container.cat-area .col-md-6.col-sm-6.text-right {
        padding-top: 23px !important;
    }
    .listing-style-1 #see_filter {
        margin-bottom: 0;
    }
    #more_filters div.form-group:first-child {
        width: 100% !important;
        display: block;
    }
    .listing-style-3 .filter-top-section.pos-relative .pull-right.margin-right-0 {
        display: none !important;
    }
    #mobile_search_option .lp-search-btn {
        padding: 6px;
        color: #fff !important;
    }
    #mobile_search_option {
        display: block;
        width: 100%;
        border: 1px solid #fff;
        border-radius: 3px;
        background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/search-icon.png) no-repeat 38% !important;
    }
    .header-right-panel .lp-menu-container,
    .header-right-panel .header-filter {
        display: none;
    }
    .searchloading {
        position: absolute !important;
        top: 7px !important;
        left: calc(50% - 16px) !important;
        width: 32px !important;
        height: 32px !important;
        margin-left: 0 !important;
    }
    .tabs-listing .reviews-section .top-section time {
        display: block;
    }
    .listing-style-1 #see_filter {
        padding-bottom: 0;
    }
    .listing-style-1 .lp-filter-inner .more-filter {
        margin-top: 10px;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .lp-search-bar div.form-group.lp-suggested-search {
        width: 100% !important;
        margin-right: 0;
        margin-bottom: 10px !important;
    }
    div.lp-search-bar div.form-group.lp-location-search {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-inline div.form-group:last-of-type {
        width: 100% !important;
    }
    .form-group.lp-suggested-search input {
        border-right: 0 !important;
        border-radius: 0 !important;
    }
    .lp-search-bar-all-demo i.lp-search-icon {
        left: 50% !important;
    }
    .lp-search-bar div.form-group.lp-location-search {
        margin-bottom: 10px !important;
    }
    .single-inner-container.single_listing .sidebar-post {
        margin-top: 0;
    }
    section.listing-second-view .post-meta-info .post-meta-left-box .breadcrumbs li {
        margin-right: 25px;
    }
    section.listing-second-view .post-meta-info .post-meta-left-box .breadcrumbs li:last-child {
        margin-right: 0 !important;
    }
    .listing-second-view .post-meta-info .post-meta-left-box h1 {
        font-size: 25px;
    }
    .listing-second-view .post-meta-left-box>p {
        margin-bottom: 10px;
        font-size: 13px;
    }
    .listing-second-view .post-meta-left-box h1 span.claimed {
        font-size: 0;
    }
    .container.single-inner-container.single_listing .post-row {
        clear: both;
    }
    .listing-second-view .map-area .listing-detail-infos ul.list-st-img li img {
        width: 22px;
    }
    .single_listing .review-form #rewies_form .form-group:last-child p {
        line-height: normal;
        padding-top: 10px;
    }
    .form-review-stars .rating-symbol .rating-symbol-foreground .fa {
        font-size: 18px;
    }
    .listing-second-view .social-icons.post-socials.smenu li a {
        text-align: center;
    }
    .listing-second-view .social-icons.post-socials.smenu li {
        margin: 0 6px 6px 0 !important;
    }
    .listing-second-view .social-icons.post-socials.smenu {
        left: -100px;
        right: auto;
        width: auto;
    }
    .header-filter .input-group.width-49-percent .ui-widget.border-dropdown select {
        padding-left: 58px !important;
    }
    .listing-with-map .post-with-map-container-right .post-with-map-container .lp-list-page-grid .text-center.margin-top-80.margin-bottom-80 {
        margin-top: 30px;
    }
    .post-with-map-container .margin-bottom-20.margin-top-30 {
        margin-top: 15px;
    }
    .listing-style-3 .margin-top-subtract-35 form .filter-top-section {
        margin-top: 0;
        margin-bottom: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .listing-style-3 .margin-top-subtract-35 form {
        padding-top: 0 !important;
    }
    .listing-style-3 .margin-top-subtract-35 {
        margin-top: 0 !important;
    }
    .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        line-height: normal !important;
    }
    .listing-with-map .filter-top-section .listing-view-layout {
        margin-top: 15px !important;
    }
    #see_filter {
        display: inline-block;
        margin-bottom: 10px;
        text-align: center;
        width: 90px;
        height: 34px;
        line-height: 34px;
        color: #fff;
        background: #363F48;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
    }
    #see_filter:hover {
        /* background: #363f48;
		color: #fff; */
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
    }
    .post_response .review-form .form-review-stars .rating-symbol-foreground .fa-2x {
        font-size: 1em;
    }
    .resurva-booking .lp-list-view-inner-contianer ul li h4 {
        font-size: 15px;
    }
    .dashboard-content .availableprice_options.padding-top-30 {
        padding-top: 0;
    }
    .dashboard-content .availableprice_options .checkboxx .checkbox.pad-bottom-10 {
        margin-top: 0;
        margin-bottom: 0;
    }
    .right-panel #ads .lp-card .promotional-section.padding {
        padding: 15px;
    }
    .dashboard-content .promotional-section.padding .promotiona-text>h3 {
        font-size: 18px;
    }
    .dashboard-content .lp-list-view-inner-contianer .lp-list-view-content.lp-list-cnt {
        padding-top: 10px !important;
    }
    .listing-app-view .dashboard-content-app-view .lp-listing-pending-tab .lp-list-view-inner-contianer .lp-listing-pending-tab-inner {
        width: calc(100% - 100px)!important;
        margin-bottom: 30px;
    }
    .dashboard-content .lp-list-view .lp-list-view-inner-contianer .col-md-8 {
        width: 100% !important;
        padding: 0;
    }
    .dashboard-right-panel .lp-dashboard-right-panel-listing ul li a.reply {
        float: right;
    }
    .dashboard-panel .notices-area .notice-text p {
        display: none;
    }
    .dashboard-panel .notices-area .notice .notice-text {
        min-height: unset;
    }
    .submit_new_style .white-section .lp-social-area .form-group.col-md-12.col-xs-12 .help-text {
        display: none;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        margin-bottom: 10px;
        display: block !important;
    }
    .testimonial-inner-box h3 {
        font-size: 18px;
        margin-bottom: 0 !important;
    }
    .resurva-booking .lp-list-view-inner-contianer ul.padding-left-0 li h3 {
        margin-top: 10px;
    }
    .resurva-booking .lp-list-view-inner-contianer .margin-top-0.margin-bottom-30 {
        margin-bottom: 0;
        border-bottom: 1px solid #dedede;
        padding-bottom: 15px;
    }
    .resurva-booking .hidden-items {
        margin-top: 15px;
        padding-top: 10px;
    }
    .resurva-booking .hidden-items .upload-field #frontend-button {
        margin-bottom: 0;
    }
    .resurva-booking .hidden-items input.lp-review-btn {
        padding: 5px 11px;
    }
    .lp-list-page-list .resurva-booking.lp-menus-area .hidden-items span.select2.select2-container {
        width: 100% !important;
    }
    .listing-simple .list_view .lp-grid-box-description h4.lp-h4>a {
        max-width: 100%;
    }
    .dashboard-panel .panel-dash-views {
        margin-bottom: 0;
    }
    #updateprofile .form-horizontal div.tab-header {
        margin-top: 0 !important;
        margin-bottom: 0;
    }
    .dashboard-content .tab-header h3 {
        margin: 0 !important;
    }
    .single_listing .video-option h2 {
        font-size: 0;
    }
    /*0504017 start*/
    .dashboard-content .lp-list-view .lp-list-view-inner-contianer .col-md-3.col-sm-3.col-xs-12 {
        width: 100% !important;
    }
    .single_listing .features.list-style-none li {
        width: 100% !important;
        padding-left: 0;
        margin-bottom: 5px;
    }
    .lp-grid-box-left.pull-left>ul>li:first-of-type,
    .list_view .lp-grid-box-left.pull-left>ul>li:first-of-type {
        font-size: 0;
    }
    .header-filter .input-group.width-49-percent .ui-widget.border-dropdown select.chosen-select.chosen-select5 {
        /* width: 100% !important;
		padding-left: 70px; */
    }
    .promotional-section .lp-face.lp-back2.lp-pay-options.margin-bottom-30.lp-dash-sec .lp-method-wrap.lp-listing-form {
        width: 100% !important;
        text-align: center;
    }
    .promotional-section .lp-face.lp-back2.lp-pay-options.margin-bottom-30.lp-dash-sec .lp-method-wrap.lp-listing-form,
    .promotional-section .lp-face.lp-back2.lp-pay-options.margin-bottom-30.lp-dash-sec .lp-method-wrap.lp-listing-form label,
    .promotional-section .lp-face.lp-back2.lp-pay-options.margin-bottom-30.lp-dash-sec .lp-method-wrap.lp-listing-form label .radio.radio-danger {
        margin-bottom: 0 !important;
    }
    .promotional-section .lp-face.lp-back2.lp-pay-options.margin-bottom-30.lp-dash-sec .lp-method-wrap.lp-listing-form label .radio.radio-danger {
        left: 33px;
        top: 14px;
    }
    .promotional-section .lp-method-wrap.lp-listing-form img,
    .promotional-section .lp-dash-sec .category-cion img {
        display: block;
        float: left;
    }
    .right-panel .updateprofile-tab .page-innner-container {
        padding: 20px;
    }
    .right-panel .user-recent-listings-inner,
    .right-panel #ads,
    .right-panel #reviews,
    .right-panel #updateprofile {
        padding-right: 20px !important;
    }
    .promotional-section img {
        display: none;
    }
    .promotional-section p {
        margin-bottom: 0 !important;
    }
    /*0504017 ended*/
    .lp-section-content .promotional-element.listingpro-columns .listingpro-row .promotiona-col-right {
        margin-top: 15px;
    }
    .lp-section-content .promotional-element.listingpro-columns .listingpro-row .promotiona-col-right>article {
        margin-bottom: 15px;
    }
    .lp-section-content .promotional-element.listingpro-columns .listingpro-row,
    .lp-section-content .lp-section-content-container {
        padding-top: 25px;
    }
    header .header-right-panel {
        padding: 0 !important;
    }
    .lp-section-content .promotional-element.listingpro-columns .listingpro-row {
        padding-bottom: 0;
    }
    .updateprofile-tab .user-avatar-upload .avatar-circle {
        margin: 0 auto;
    }
    .listingpro-row .promotiona-col-right>article>p {
        max-width: 100%;
    }
    .img-curtasy {
        bottom: -5px;
        z-index: 1;
    }
    .admin-top-section {
        display: none;
    }
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer h3 {
        text-align: center;
    }
    .lp-card .promotional-section .lp-dash-sec ul li {
        float: left;
    }
    .lp-card .promotional-section .lp-dash-sec ul li .lp-list-view-content-upper.lp-list-view-content-bottom {
        padding-top: 10px;
    }
    .lp-card .promotional-section .lp-dash-sec h3 {
        text-align: center !important;
    }
    .top-section .review-count {
        top: 20px;
    }
    .header-filter .input-group.width-49-percent .ui-widget.border-dropdown select,
    .lp-home-banner-contianer-inner .lp-search-bar .ui-widget.border-dropdown select {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        width: 100% !important;
    }
    .lp-home-banner-contianer-inner .lp-search-bar .ui-widget.border-dropdown select.chosen-select.chosen-select5 option:first-child {}
    .lp-home-banner-contianer-inner .lp-search-bar .ui-widget.border-dropdown select.chosen-select.chosen-select5 {
        width: 100% !important;
        padding-left: 65px;
    }
    .header-filter .input-group.width-49-percent .ui-widget.border-dropdown,
    .lp-home-banner-contianer-inner .lp-search-bar .ui-widget.border-dropdown {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .lp-section-content-container-one .login-form-popup {
        width: 100%;
    }
    .pos-relative .lp-home-banner-contianer {
        height: 420px;
    }
    .lp-search-description {
        display: none;
    }
    .dashboard-panel .panel-dash-dismiss:first-child img {
        display: none;
    }
    .submit_new_style .white-section .submit-img {
        display: none;
    }
    .dashboard-content .right-panel .tab-header {
        padding-left: 0;
    }
    .page-container-four.submit_new_style ul.jFiler-items-list.jFiler-items-grid {
        width: 29%;
    }
    .listing-simple .search-row .lp-features-filter ul>li,
    .post-with-map-container .lp-features-filter.tags-area .form-group ul li {
        width: 50%;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-2.col-sm-2.col-xs-12 {
        width: 45% !important;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-1.col-sm-1.col-xs-12 img {
        width: auto;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-1.col-sm-1.col-xs-12 {
        width: 100% !important;
        padding-right: 0;
        text-align: center;
    }
    .dashboard-content .lp-list-view-content-bottom {
        float: none;
        width: auto;
    }
    .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 {
        width: 100% !important;
        margin-bottom: 30px;
        padding-right: 15px !important;
    }
    .dashboard-content .dashboard-right-panel {
        min-width: 270px;
    }
    .right-panel div.dashboard-right-panel {
        padding-left: 0 !important;
        padding-right: 20px !important;
        width: 100% !important;
        min-width: unset;
    }
    .dashboard-panel .panel-dash-dismiss .dash-text-area {
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
    .panel-dash-views {
        margin-top: 0;
    }
    .dashboard-panel .panel-dash-dismiss img {
        width: 80%;
        margin-left: 30px;
    }
    .dashboard-content .lp-pay-options ul li .lp-list-view-thumb img {
        width: auto;
    }
    .lp-compaign-outer .lp-promote-ad-image .lp-list-view-content-upper {
        padding: 0;
        width: calc(100% - 90px)!important;
        display: inline-block;
        vertical-align: top;
    }
    .lp-compaign-outer .lp-promote-ad-image .lp-list-view-thumb {
        width: 78px!important;
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
    }
    .dashboard-content .lp-compaign-outer .lp-promote-ad-image .promote-btn.pull-right {
        margin-top: 18px;
        float: left !important;
    }
    .dashboard-content .lp-pay-options ul li .lp-list-view-thumb {
        width: 100%;
        text-align: center;
    }
    .dashboard-content .lp-pay-options ul li .lp-list-view-content-upper {
        width: 100%;
        padding-left: 0 !important;
    }
    .promotiona-col-right {
        padding: 0;
        text-align: center;
    }
    .timeline-section:last-of-type .promotional-text-details {
        padding-left: 0;
        text-align: center;
    }
    .calltoaction-left-panel {
        text-align: center;
    }
    .promotional-support .support-section {
        padding: 123px 20px 41px;
    }
    .promotional-text-details {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .promotional-presentation {
        padding: 48px 70px 48px 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .promotional-timeline {
        padding-left: 20px;
        padding-right: 20px;
    }
    .list_view .lp-grid-box-description .reviewer-details {
        width: 80%;
    }
    .list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom {
        width: 100%;
    }
    .list_view .lp-grid-box-thumb-container {
        width: 100% !important;
    }
    .page-heading-inner-container.cat-area .col-md-6.col-sm-6.text-right .listing-view-layout {
        float: none;
    }
    .page-heading-inner-container.cat-area .col-md-6.col-sm-6.text-right {
        text-align: left;
    }
    .dashboard-content .promotional-section .lp-pay-options h4 {
        font-size: 18px;
        /* text-align: center; */
    }
    .dashboard-content .availableprice_options .checkboxx {
        width: 100% !important;
        margin-bottom: 0;
    }
    .footer-about-company li {
        margin-left: 15px;
        margin-right: 15px;
    }
    .footer-menu li {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }
    .table-responsive.campaign .top-section .campaign-options ul,
    .table-responsive.campaign .top-section .campaign-options ul li:not(:first-child) {
        width: 100%;
    }
    .table-responsive.campaign .top-section .campaign-options {
        float: none;
        clear: both;
    }
    .table-responsive.campaign .top-section .campaign-options ul>li {
        padding-bottom: 5px;
    }
    .table-responsive.campaign .top-section>h3 span,
    .table-responsive.campaign .top-section>h3 span {
        float: none;
    }
    .packages .top-section h3 {
        text-align: center;
        float: none;
    }
    .dashboard-content .tbl-cell #invoices .invoice-section .top-section h3 {
        margin: 0;
    }
    .dashboard-content .tbl-cell #invoices h3 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .dashboard-content .tbl-cell #invoices {
        padding-top: 0 !Important;
    }
    .updateprofile-tab .form-horizontal .tab-header h3,
    .updateprofile-tab .tab-header h3 {
        margin: 0 0 10px 0;
    }
    .packages .active-packages-area .top-area h2 {
        width: 100%;
        text-align: center;
    }
    .packages .active-packages-area .listing-options {
        float: left;
        width: 100%;
    }
    .lp-section-content .vertical_view .page-header {
        text-align: center;
        margin-bottom: 0;
    }
    .updateprofile-tab .page-innner-container .lp-secondary-big-btn.btn-first-hover {
        padding-left: 30px;
        padding-right: 30px;
    }
    .dashboard-content .promotional-section a.lp-submit-btn {
        width: auto;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 20px;
        height: 40px;
        line-height: 40px;
    }
    .dashboard-content #reviews .hndle.ui-sortable-handle,
    .dashboard-content .tab-header h3 {
        text-align: center;
    }
    .dashboard-content .tab-header {
        width: 100%;
    }
    .dashboard-content .promotiona-text {
        width: auto;
    }
    .admin-top-section .user-portfolio {
        padding-bottom: 0;
    }
    .updateprofile-tab .page-innner-container .user-avatar-upload .user-avatar-description {
        width: 100%;
    }
    .price-plan-box-upper {
        text-align: center;
    }
    .fullwidth-header {
        padding: 0 30px;
    }
    .details .top-section>h3 {
        padding-right: 0 !important;
    }
    .lp-home-banner-contianer .lp-search-bar .chosen-container .chosen-results {
        position: absolute;
        min-width: 100%;
        right: 0;
    }
    .lp-home-banner-contianer-inner .col-md-12.col-sm-12.text-center h1 {
        font-size: 26px;
    }
    .lp-home-banner-contianer-inner .col-md-12.col-sm-12.text-center span.lp-dyn-city {
        font-size: 26px;
    }
    .review-form>form#rewies_form .form-group.margin-bottom-40 {
        margin-bottom: 30px !important;
    }
    .review-form>form#rewies_form .col-md-6.pull-right.padding-right-0 {
        float: left !important;
        padding-left: 0;
    }
    .form-review-stars .rating-symbol .rating-symbol-background {
        font-size: 18px;
    }
    .single_listing .review-form {
        margin-bottom: 30px;
    }
    .listing-second-view span.rating-section {
        float: none;
        padding-bottom: 10px;
    }
    .listing-second-view .post-meta-right-box .post-stat li {
        display: inline-block;
        float: none;
    }
    .listing-with-map .list_view .lp-grid-box-description {
        width: 100% !important;
    }
    .lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left>ul>li.middle {
        padding-left: 8px;
        padding-right: 8px;
    }
    .lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left>ul>li:last-child,
    .lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left>ul>li.middle {
        margin-top: 0;
    }
    .lp-grid-box-left.pull-left>ul>li {
        margin-top: 10px;
    }
    .post-with-map-container .search-row.margin-top-subtract-35 .form-inline .form-group {
        height: auto !important;
        float: left !important;
    }
    .listing-with-map .filter-top-section .listing-view-layout {
        float: none;
    }
    .listing-style-1 .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        font-size: 18px;
    }
    .listing-style-1 .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 {
        margin-top: -85px;
        top: auto;
    }
    .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 {
        display: block !important;
        text-align: center;
    }
    .filter-top-section.pos-relative.row .pull-right.margin-right-0.col-md-2.col-sm-2.clearfix {
        width: 100%;
        display: block;
        text-align: center;
    }
    .header-filter .lp-search-icon {
        background: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/search-icon.png) no-repeat 46% !important;
        top: 0;
        padding: 0 !important;
        height: 46px;
    }
    .post-with-map-container .filter-top-section>h3 {
        display: block;
        text-align: center;
    }
    .lp-section-content .page-container-four .col-md-10.col-md-offset-1 .page-header {
        text-align: center;
    }
    .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        position: relative;
        margin-bottom: 10px;
        border: 1px solid #fff;
        border-radius: 3px;
    }
    .lp-section-title-container .lp-sub-title {
        padding-left: 15px;
        padding-right: 15px;
    }
    .listing-second-view .reviews-section .details {
        width: 100%;
        padding-left: 0;
    }
    .listing-second-view .content-section .bottom-section ul li a {
        padding: 4px;
    }
    .grid_view2 .categories-area>.cat-icon {
        margin-right: 8px;
    }
    .lp-home-categoires li {
        margin-right: 6px;
        margin-left: 6px;
    }
    .lp-search-bar #input-dropdown {
        width: 100%;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group .lp-search-bar-right {
        width: 100% !Important;
    }
    .form-group.lp-location-search {
        margin-left: 0;
        border-radius: 0 !Important;
        -webkit-border-radius: 0 !Important;
        -moz-border-radius: 0 !Important;
        -ms-border-radius: 0 !Important;
    }
    .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single {
        width: 100%;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-location-search .ui-widget.border-dropdown .chosen-container {
        width: 100% !important;
        min-width: 100% !important;
    }
    .lp-search-bar .form-group.lp-location-search .ui-widget.border-dropdown {
        width: 100%;
    }
    .form-group.lp-suggested-search .input-group-addon.lp-border {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        top: -1px;
    }
    .admin-top-section .user-portfolio .user-text p {
        display: inline-block;
    }
    .user-recent-listings-container h3,
    .dashboard-contnt .tab-pane.active .aligncenter .tab-header,
    .tbl-cell .dashboard-contnt .hndle {
        text-align: center;
    }
    .dashboard-content .tab-content.dashboard-contnt h4 a {
        display: inline-block;
    }
    .dashboard-content .postbox table.widefat a.see_more_btn {
        text-align: center;
        margin-bottom: 10px;
    }
    .dashboard-content .postbox table.widefat .review-count {
        margin-bottom: 10px;
    }
    .admin-top-section .user-description-box {
        margin-top: 0;
        padding-top: 0;
    }
    .header-filter .lp-search-btn-header .lp-search-btn {
        padding: 20px;
        left: 7px !important;
    }
    .header-filter .lp-search-btn-header i {
        width: 100%;
        border: 1px solid #fff;
        padding: 0;
        border-radius: 8px;
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
    }
    .header-filter .lp-search-btn-header {
        width: 100% !important;
        text-align: center;
    }
    .updateprofile-tab .tab-header,
    .lp_section_inner .submit_new_style .form-page-heading {
        text-align: center;
    }
    form#lp-submit-form .blue-section .form-group label {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .admin-top-section .user-portfolio .user-text,
    .admin-top-section .user-portfolio .user-thumb {
        width: 100% !important;
        text-align: center;
    }
    .header-with-topbar .lp-menu-bar .header-filter,
    .lp-header-full-width .lp-menu-bar .header-filter {
        padding: 0;
        padding-top: 10px;
    }
    .header-filter.pos-relative .input-group.width-49-percent .chosen-container-single .chosen-single {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        padding-left: 58px;
    }
    .header-filter.pos-relative .input-group.width-49-percent,
    .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 100% !important;
        margin-bottom: 10px;
        border-radius: 0 !important;
        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        -ms-border-radius: 0 !important;
    }
    .header-filter .input-group:first-child .input-group-addon.lp-border {
        border-radius: 0;
    }
    .header-filter .input-group .custom-combobox-input {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    header .lp-search-btn-header i {
        right: 0 !important;
    }
    .lp_section_inner .submit_new_style {
        padding: 35px 15px 90px;
    }
    .lp_section_inner .submit_new_style .author-section.lp-form-row {
        padding: 26px 25px;
    }
    .day-hours>ul.hours-select li:nth-child(3) {
        padding-top: 10px;
    }
    .blue-section .preview-section i {
        right: 25px;
    }
    .blue-section .preview-section {
        padding: 0;
    }
    .lp-search-bar-all-demo .lp-search-bar .lp-search-bar-right {
        width: 15%;
    }
    .lp-search-bar-all-demo .lp-search-bar .lp-search-bar-left .ui-widget.border-dropdown {
        margin-bottom: 0;
    }
    .lp-right-grid {
        margin: 0 auto;
        float: none;
    }
    .lp-search-bar-all-demo .lp-interest-bar,
    .lp-search-bar-all-demo .lp-location-bar,
    .lp-search-bar-all-demo .lp-catagory-bar {
        padding-right: 0 !important;
    }
    .lp-search-bar-all-demo .lp-interest-bar,
    .lp-search-bar-all-demo .lp-location-bar,
    .lp-search-bar-all-demo .lp-catagory-bar {
        width: 100% !important;
    }
    .lp-search-bar-all-demo .chosen-container .chosen-single {
        border-top-right-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
    }
    .lp-search-bar .lp-search-bar-left .ui-widget.border-dropdown {
        width: 100%;
    }
    .lp-search-bar .lp-search-bar-left .ui-widget.border-dropdown .chosen-select,
    .lp-search-bar .chosen-container-single .chosen-single {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
    }
    .lp-search-bar-left .lp-search-input {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
    }
    .lp-search-bar .lp-search-bar-right input {
        text-align: center;
    }
    .lp-search-icon {
        left: 30% !Important;
    }
    .listing-app-view .lp-search-icon {
        left: 33% !Important;
    }
    .search-row .input-group .border-dropdown .chosen-container {
        width: 100%;
    }
    .leaflet-popup-pane .leaflet-popup .leaflet-popup-content .map-post .map-post-des {
        padding: 10px !important;
    }
    .listing-app-view .leaflet-popup-pane .leaflet-popup .leaflet-popup-content .map-post .map-post-des {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }
    .single-page-slider-container .slick-initialized .slick-track .slick-slide {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }
    .lp-search-bar .lp-search-bar-left .ui-widget.border-dropdown {
        margin-bottom: 15px;
    }
    .lp-tabs .nav-tabs li {
        margin-bottom: 8px;
    }
    .dashboard-contnt .lp-secondary-big-btn {
        margin: 0 auto;
        width: 100%;
        clear: both;
        padding: 10px 30px;
    }
    .dashboard-contnt .upload-photo .file-upload-btn {
        padding: 10px 10px;
    }
    .dashboard-contnt .user-avatar-description {
        width: 100%;
    }
    .lp-search-bar .form-group.lp-suggested-search.ui-autocomplete-input {
        width: 100% !important;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100% !important;
        border-radius: 0 !important;
    }
    .lp-search-bar .lp-suggested-search .input-group-addon.lp-border {
        width: 65px;
        padding-left: 0;
        background: transparent !important;
    }
    .typeahead__field .lp-suggested-search {
        margin-bottom: 15px !important;
    }
    .typeahead__field .lp-suggested-search .lp-suggested-search {
        border-top-right-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
    }
    .lp-search-bar .typeahead__field .form-group.lp-location-search {
        margin-left: 0;
    }
    .header-filter.pos-relative .lp-location-search span.custom-combobox {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .lp-location-search span.custom-combobox {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
    .lp-search-bar div.form-group.lp-location-search {
        margin-bottom: 10px;
    }
    .lp-search-bar .custom-combobox .lp-home-locaton-input,
    .typeahead__field .form-group .lp-search-bar-right,
    .lp-search-bar .lp-search-bar-right input,
    .lp-search-bar div.form-group.lp-location-search {
        width: 100% !important;
    }
    .lp-menu-bar .mobile-nav-icon {
        position: absolute;
        top: -30px;
        left: -15px;
    }
    .listing-simple .list_view .lp-grid-box-description {
        width: 100%;
    }
    .list_view .lp-grid-box-right.pull-right {
        width: 100%;
    }
    .listing-simple .list_view .lp-grid-box-description .lp-grid-box-right {
        width: 100% !important;
        text-align: left;
    }
    .list_view .lp-grid-box-right .categories-area {
        float: left;
    }
    .list_view .lp-grid-box-left.pull-left {
        width: 100%;
    }
    /*bellow before*/
    h1,
    .lp-h1,
    .lp-h1 a {
        font-size: 35px;
    }
    .search-row .form-inline .form-group,
    .listing-container-right,
    .tag-select-one,
    .lp-add-listing-btn,
    .lp-menu {
        width: 100%;
    }
    .lp-add-listing-btn ul {
        padding: 0;
    }
    .img-xs-100 {
        width: 100%;
    }
    header .lp-topbar {
        display: block;
    }
    .lp-topbar {
        display: none;
    }
    .lp-menu ul li {
        display: block;
        padding-right: 0;
    }
    .lp-menu ul li a {
        width: 100%;
        display: block;
    }
    .menu ul.children,
    .menu ul.sub-menu {
        position: static;
        width: 100%;
    }
    .menu ul.children:after,
    .menu ul.sub-menu:after {
        display: none;
    }
    .lp-search-bar-left,
    .lp-home-locaton-input,
    .lp-home-search-input,
    .lp-search-bar-right,
    .lp-search-btn {
        width: 100%;
    }
    .menu ul.children,
    .menu ul.sub-menu {
        padding-top: 0;
    }
    .lp-menu ul {
        margin-top: 0;
    }
    .lp-add-listing-btn ul {
        margin-top: 0;
        margin-bottom: 0;
    }
    .lp-menu li a,
    .lp-add-listing-btn li a {
        padding: 8px 10px;
        border-bottom: 1px solid #ddd;
    }
    .lp-menu li:last-child a {
        border-bottom: 0;
    }
    .lp-add-listing-btn,
    .lp-add-listing-btn li a {
        width: 100%;
        display: block;
    }
    .lp-add-listing-btn {
        margin-top: 0;
    }
    .menu ul.children li:first-child a .menu ul.sub-menu li:first-child a {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .menu ul.children li:last-child a,
    .menu ul.sub-menu li:last-child a {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .menu ul.children,
    .menu ul.sub-menu {
        border-radius: 0;
    }
    .lp-home-locaton-input {
        border-radius: 5px;
    }
    .lp-search-description {
        margin-top: 30px;
    }
    .lp-home-categoires {
        padding: 0;
    }
    .lp-home-categoires li {
        margin-top: 8px;
    }
    .lp-grid-box-thumb img {
        width: 100%;
    }
    .city-thumb img {
        width: 100%;
    }
    .nearby-download li {
        margin-right: 0;
    }
    .input-width-299 {
        width: 100% !important;
    }
    .listing-page-result-row p {
        text-align: center;
    }
    .header-fixed {
        position: static;
    }
    .section-fixed {
        padding-top: 0;
    }
    .width-32-percent {
        background-size: auto 100%;
    }
    .nav-tabs>li {
        width: 100%;
    }
    .nav-tabs>li>a:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .price-plan-content {
        margin-bottom: 15px;
    }
    .lp-secondary-btn {
        float: left;
        padding: 15px 30px 15px 30px;
    }
    .price-plan-button {
        width: 100%;
    }
    .price-plan-button a {
        width: 100%;
    }
    .price-plan-box span {
        width: 100%;
        text-align: center;
    }
    .post-meta-left-box h1 {
        text-align: center;
    }
    .post-meta-left-box .post-stat li,
    .post-meta-right-box .post-stat li {
        display: block;
        margin-right: 0;
        text-align: center;
        margin-bottom: 5px;
    }
    .listing-second-view .post-meta-right-box a.secondary-btn {
        width: 190px;
    }
    .post-meta-right-box a.secondary-btn {
        width: 100%;
    }
    .lp-form-row-left,
    .lp-form-row-right {
        width: 100%;
        text-align: center;
    }
    .login-form-popup {
        width: 100%;
        padding: 30px;
    }
    .ui-widget,
    .custom-combobox {
        width: 100%;
    }
    .custom-combobox {
        margin-bottom: 10px;
    }
    .contactmap {
        height: 200px;
    }
    .contact-left {
        width: 100%;
    }
    .contact-right {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .nameform {
        margin-bottom: 15px;
    }
    .listing-sidebar-left {
        padding-bottom: 30px;
        width: 100%;
        max-width: 290px;
        float: left !important;
        padding-left: 15px;
    }
    .header-fixed {
        min-height: unset;
    }
    .testimonial-tit {
        padding-bottom: 15px;
    }
    .testimonial-rating {
        width: 100%;
        padding-bottom: 0;
        display: block;
        float: none;
    }
    .testimonial-slider {
        width: 100%;
    }
    .page-404-title {
        font-size: 110px;
    }
    .page-404-title img {
        width: 70px;
    }
    .pop-form-bottom .social-login {
        text-align: center;
    }
    .pop-form-bottom {
        text-align: center;
    }
    .bottom-links a {
        display: block;
        float: none !important;
    }
    .post-with-map-container .form-group .col-md-4 {
        padding-right: 15px;
        margin-bottom: 15px;
    }
    .blog-content a.image-popup {
        margin-left: 0;
        margin-bottom: 15px;
    }
    .about-gallery-box .image-popup {
        float: none;
    }
    .about-gallery-box img {
        width: 100%;
    }
    .image-popup:hover:after {
        opacity: 0;
    }
    .image-popup-margin {
        margin-left: 0;
    }
    .md-modal {
        overflow: scroll;
    }
    .listing-app-view .login-form-popup {
        min-height: 100% !important;
    }
    .login-form-popup {
        min-height: 730px;
        width: 90vw;
    }
    .siginincontainer,
    .siginupcontainer,
    .forgetpasswordcontainer {
        padding: 50px;
    }
    .comments-thumb,
    .comments-content,
    .comments-box-sub {
        width: 100%;
    }
    .comments-thumb {
        text-align: center;
    }
    .list-pt-display li {
        float: none;
        margin-right: 0;
        margin-top: 0;
        width: 100%;
    }
    .featuresDataContainer {
        min-height: unset;
    }
    .post-meta-left-box h1 {
        font-size: 35px;
    }
    .md-modal,
    .simptip-position-top.simptip-movable::after,
    .simptip-position-top.simptip-movable::before,
    .mapbilemap-close,
    .comments-date {
        display: none;
    }
    .city-girds .lp-listing-quantity {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    .city-girds .city-title .lp-h3 {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    .m-text-center,
    .comments-description {
        text-align: center;
    }
    .post-meta-left-box .post-stat li,
    .post-meta-right-box .post-stat li {
        margin-bottom: 15px;
    }
    .comments-thumb {
        margin-bottom: 15px;
    }
    .smenu.share {
        left: 62px;
        transform: translateX(-50%);
        top: -134px;
    }
    .smenu li a {
        text-align: left;
    }
    .user-info {
        text-align: center;
    }
    .widget-box .user-thumb {
        margin-right: 0;
        display: block;
        margin-bottom: 15px;
    }
    .sidebar-post .user-text {
        top: 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    .footer-about-company li {
        margin-bottom: 10px;
    }
    .ui-autocomplete,
    .ui-widget select {
        width: 300px !important;
    }
    .listing .ui-autocomplete,
    .ui-widget select {
        width: 253px !important;
    }
    .post-map-container .ui-autocomplete,
    .ui-widget select {
        width: 253px !important;
    }
    .extrafield-list li {
        margin-right: 0;
        width: 100%;
    }
    .listing-app-view .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-left,
    .listing-app-view .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-right {
        width: 100%;
        float: none;
        padding: 0;
        text-align: left;
        margin: 5px;
    }
}

@media (max-width: 1199px) {
    .md-effect-3 #claimform .claim-details .form-group {
        width: 100%;
    }
    .tabs-listing.listing-second-view .lp-list-page-grid {
        margin-left: 0;
        width: auto;
    }
    .tabs-listing.listing-second-view .lp-reviews-gallery li,
    .tabs-listing.listing-second-view .lp-reviews-gallery img {
        width: 100%;
    }
    .tabs-listing.listing-second-view .lp-reviews-gallery {
        margin-left: 0;
        width: 100%;
    }
    /*22/04/017 strt here*/
    .tabs-listing .reviews-section {
        margin-left: 0;
        width: 100%;
    }
    /*22/04/017 ended here*/
    .section-fixed.listing-with-sidebar .width-32-percent.pull-left {
        width: 35%;
    }
    .section-fixed.listing-with-sidebar .width-68-percent.pull-right {
        width: 65%;
    }
    .admin-top-section .user-portfolio .user-thumb {
        width: 99px;
        height: 94px;
    }
    .admin-top-section .user-portfolio .user-text {
        padding: 0;
        width: 215px;
    }
    .header-with-topbar .lp-menu-bar .header-filter,
    .lp-header-full-width .lp-menu-bar .header-filter {
        width: 43%;
        float: left;
    }
    .col-md-5.col-xs-12.lp-menu-container.pull-right {
        width: 27%;
        padding: 0;
    }
}

@media (max-width: 360px) {
    .listing-style-1 .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        font-size: 15px;
    }
    .listing-style-1 .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 {
        width: 100%;
        left: 15px;
    }
    a.open-img-view {
        /* z-index: 1; */
    }
    /*24/04/017 start*/
    .tabs-listing .nav-justified {
        width: 100%;
    }
    .tabs-listing .nav-justified li {
        padding-left: 15px;
        margin: 0;
    }
    /*24/04/017 ended*/
    .review-form .form-submit .review_status.error-msg {
        line-height: normal;
        padding-top: 10px;
    }
    .review-form .col-md-6.pull-right.padding-right-0 {
        padding-left: 0;
    }
    .reviews div.submit-images {
        margin-top: 20px;
    }
    .reviews div.submit-images label {
        float: left;
        margin-right: 5px;
        line-height: 18px;
    }
    .review-form .lp-review-btn {
        padding: 6px 28px 6px 28px;
    }
    .dashboard-content .promotional-section.lp-promote-listing-margin .margin-bottom-30.lp-dash-sec {
        padding-left: 10px;
        padding-right: 10px;
    }
    .listing-second-view .single_listing .sidebar-post .open-hours {
        padding-left: 10px;
        padding-right: 10px;
    }
    .listing-second-view .widget-box.viewed-listing>h2 {
        margin-bottom: 20px;
    }
    .single_listing #submitreview .comment-reply-title {
        margin-bottom: 0;
        margin-top: 35px;
        font-size: 16px;
    }
    .listing-second-view .single_listing .features {
        padding-top: 0;
    }
    .reviews-section article.review-post .review-thumbnail {
        margin: 0 auto;
    }
    .listing-second-view .listing-price .price-area .claim-area .phone-icon {
        font-size: 13px;
    }
    .single_listing .review-form .form-submit .lp-review-btn {
        padding: 5px 18px 5px 18px;
    }
    .right-panel #ads .lp-promote-listing-margin .lp-front.lp-pay-options ul li .lp-list-view-thumb img {
        width: 100%;
    }
    .listing-second-view .sidebar-post .open-hours .today-timing strong img {
        display: none;
    }
    .listing-second-view .sidebar-post .open-hours .today-timing .closed {
        margin-left: 5px;
        font-size: 10px;
    }
    /*0504017 start*/
    img.loader-inner-header {
        top: 7px !important;
        left: 50% !important;
        width: 32px !important;
        height: 32px !important;
        margin-left: -16px !important;
    }
    section.listing-with-map .filter-top-section {
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .listing-style-3 .filter-top-section {
        float: none;
        width: auto;
    }
    .listing-style-3 .filter-top-section .lp-title h3 {
        font-size: 15px;
    }
    .resurva-booking .hidden-items .upload-field #frontend-button {
        min-width: unset;
        padding-left: 10px;
        padding-right: 10px;
    }
    .resurva-booking .file-options {
        margin-left: 87px;
    }
    .dashboard-content .promotional-section a.lp-submit-btn {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 14px;
        line-height: normal;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .listing-second-view div.listing-post article {
        margin-right: 0 !important;
    }
    .post-with-map-container .listing-style-3 .lp-filter-inner .comboboxCategory.chosen-select2.tag-select-four {
        height: 30px;
    }
    .listing-simple .search-row .form-inline ul li a,
    .post-with-map-container .listing-style-3 .lp-filter-inner ul li a {
        /* line-height: normal; */
    }
    .listing-simple .form-inline.tags-area .input-group ul .checkbox,
    .post-with-map-container .listing-style-3 .lp-features-filter.tags-area .input-group ul .checkbox {
        margin-top: 0;
        margin-bottom: 0;
    }
    .post-with-map-container .listing-style-3 .lp-features-filter.tags-area .input-group ul {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .post-with-map-container .listing-style-3 .lp-features-filter.tags-area {
        padding: 0;
    }
    .dashboard-content .lp-list-view .lp-list-view-inner-contianer .col-md-8.col-sm-8.col-xs-12 {
        width: 100% !important;
    }
    .lp_section_inner .testimonial.lp-section-content-container .testimonial-inner-box .testimonial-description {
        font-size: 14px;
    }
    .lp_section_inner .testimonial.lp-section-content-container .testimonial-inner-box {
        font-size: 20px;
    }
    .lp_section_inner .lp-sub-title {
        font-size: 14px;
    }
    .lp_section_inner h1 {
        font-size: 25px;
    }
    .lp-dashboard-right-panel-listing>ul>li {
        position: relative;
        padding-bottom: 30px;
    }
    .lp-dashboard-right-panel-listing>ul>li .reply {
        position: absolute;
        bottom: 5px;
        right: 0;
    }
    /*0504017 ended*/
    .submit_new_style .blue-section .preview-section.pos-relative .fa.fa-times.fa-spinner.fa-spin,
    .submit_new_style .blue-section .preview-section.pos-relative .fa.fa-times {
        font-size: 16px;
        top: 5px;
    }
    .submit_new_style .blue-section .preview-section .lp-secondary-btn.btn-first-hover {
        font-size: 16px;
    }
    .lp-modal-list#modal-invoice .modal-footer .lp-print-list {
        float: left;
        margin-left: 0;
    }
    .lp-modal-list#modal-invoice .modal-footer .btn-white {
        margin-right: 5px;
    }
    .lp-modal-list#modal-invoice .modal-footer .btn-white {
        float: left;
        margin-right: 0;
        margin-left: 0;
    }
    .listing-simple .search-row .lp-features-filter ul>li,
    .post-with-map-container .lp-features-filter.tags-area .form-group ul li {
        width: 100% !important;
    }
    .submit_new_style .lp-social-area .form-group.col-md-12.col-xs-12 {
        padding: 0;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-1.col-sm-1.col-xs-12 img {
        width: 100%;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-2.col-sm-2.col-xs-12 .lp-rigt-icons ul {
        float: left;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-2.col-sm-2.col-xs-12 .lp-rigt-icons {
        width: 100% !important;
        float: none;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-2.col-sm-2.col-xs-12,
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-9.col-sm-9.col-xs-12 {
        width: 100% !important;
    }
    .dashboard-panel .panel-dash-dismiss img {
        margin-left: 0;
    }
    .header-with-topbar .fullwidth-header .col-md-9.col-sm-9.text-left {
        padding-bottom: 10px;
    }
    .header-with-topbar .fullwidth-header .col-md-3.col-sm-3.text-right,
    .header-with-topbar .fullwidth-header .col-md-9.col-sm-9.text-left {
        text-align: center;
    }
    .list_view .lp-grid-box-left.pull-left>ul>li {
        float: left;
    }
    .listing-page .page-heading-inner-container.cat-area h1 {
        padding-right: 0;
        padding-left: 0;
    }
    .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-left,
    .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-right {
        width: 100% !important;
        text-align: center;
        line-height: 35px;
    }
    .admin-top-section .user-description-box>ul li span.count {
        line-height: normal;
    }
    .admin-top-section .user-description-box>ul {
        padding-top: 20px;
    }
    .dashboard-content .postbox table.widefat a.see_more_btn {
        width: 100%;
    }
    .updateprofile-tab .page-innner-container .user-avatar-upload .user-avatar-description {
        width: 100%;
    }
    a.watch-video.popup-youtube {
        /* float: none;
		width: 100%;
		display: block;
		text-align: center;
		margin-top: 10px; */
    }
    .list_view .lp-grid-box-left.pull-left>ul>li {
        margin-top: 0 !Important;
    }
    .list_view .lp-grid-box-left.pull-left>ul>li.middle {
        float: left;
    }
    .list_view .lp-grid-box-left.pull-left>ul>li:first-child {
        display: block;
        width: 100%;
    }
    .search-filters.form-group .search-filter-attr li#listingRate {
        margin-bottom: 0;
    }
    .pos-relative .lp-home-banner-contianer .lp-search-bar {
        margin-bottom: 25px;
    }
    .lp_confirmation {
        right: auto;
        left: auto;
    }
    .contact-form.quickform form.form-horizontal .form-group.pos-relative .fa-send.lp-search-icon {
        left: 35% !important;
    }
    .listing-second-view .reviews-section .details .top-section>h3 {
        padding-right: 80px;
    }
    .listing-second-view .content-section .bottom-section ul li {
        /* width: 100%; */
        float: none;
        display: inline-block;
        padding: 0;
        text-align: center;
    }
    .listing-second-view .reviews-section article.review-post .bottom-section ul li {
        /* width: 100%; */
    }
    .dashboard-content .promote-btn.pull-right {
        float: none !important;
        margin-top: 8px;
    }
    .dashboard-content .promote-btn.pull-right input[type="submit"] {
        float: none !important;
    }
    .lp_section_inner .lp-sub-title {
        padding: 0 15px;
        margin-bottom: 10px;
    }
    .page-container-four.submit_new_style .blue-section .preview-section i {
        margin-right: 0;
    }
    .page-heading-inner-container h1 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-container-four .submit-img {
        display: none;
    }
    .blue-section .lp-secondary-btn {
        padding: 15px 23px 15px 23px;
    }
    .hours .weekday {
        min-width: 80px
    }
    .hours>a.remove-hours {
        width: 100%;
        clear: both;
        margin: 0;
    }
    .hours>span.end {
        margin-left: 0;
    }
    .hours>span.start {
        width: 60px;
        margin-left: 15px;
    }
    .hours .weekday {
        min-width: 76px;
        width: 76px !important;
    }
    .lp_section_inner .submit_new_style {
        padding: 35px 0 55px;
    }
    .day-hours>ul.hours-select>li {
        width: 100%;
    }
    .day-hours span.select2.select2-container {
        width: 100% !important;
    }
    .day-hours>ul.hours-select li:first-child {
        padding-bottom: 10px;
    }
    .footer-menu li {
        margin-right: 10px !important;
    }
    .post-stat .phone-icon .icons8-infoIcon {
        width: 19px;
        margin-bottom: 2px;
    }
    .lp-blog-grid-box-container .lp-blog-grid-box-description .lp-blog-grid-title .lp-h4 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .lp-search-bar-all-demo .lp-search-btn {
        width: 100%;
        height: 38px;
    }
    .lp-search-bar-all-demo .lp-search-icon {
        left: 15px !important;
    }
    .lp-search-bar-all-demo .lp-interest-bar.text-center {
        text-align: left;
    }
    .post-stat .phone-icon .icons8-infoIcon {
        width: 19px;
        margin-bottom: 2px;
    }
    .lp-blog-grid-box-container .lp-blog-grid-box-description .lp-blog-grid-title .lp-h4 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .list_view .lp-grid-box-description .reviewer-details,
    .grid_view2 .lp-grid-box-description .reviewer-details {
        width: 80%;
    }
    .page-style2-content-wrap ul.hours-select li .lp-add-hours-st {
        top: initial;
    }
}

@media	only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    table.lp-invoice-table,
    .lp-invoice-table thead,
    .lp-invoice-table tbody,
    .lp-invoice-table th,
    .lp-invoice-table td,
    .lp-invoice-table tr {
        display: block;
    }
    .lp-invoice-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .lp-invoice-table tr {
        border: 1px solid #ccc;
    }
    .lp-invoice-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right !important;
    }
    .lp-invoice-table td:before {
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 700;
    }
    /*
		Label the data
		*/
    .lp-invoice-table td:nth-of-type(1):before {
        content: "No.";
    }
    .lp-invoice-table td:nth-of-type(2):before {
        content: "Order#";
    }
    .lp-invoice-table td:nth-of-type(3):before {
        content: "Method";
    }
    .lp-invoice-table td:nth-of-type(4):before {
        content: "Plan";
    }
    .lp-invoice-table td:nth-of-type(5):before {
        content: "Price";
    }
    .lp-invoice-table td:nth-of-type(6):before {
        content: "Date";
    }
    .lp-invoice-table td:nth-of-type(7):before {
        content: "Days";
    }
    .lp-invoice-table tbody tr:hover {
        background: #fff;
    }
    .lp-invoice-table tr td a {
        position: absolute;
        right: 10px;
        top: 3px;
    }
    .lp-invoice-table tbody tr td:hover {
        background: #eff3f6;
    }
    .listing-app-view .active-packages-area .lp-invoice-table td:nth-of-type(1):before {
        content: "Trans ID.";
    }
    .listing-app-view .active-packages-area .lp-invoice-table td:nth-of-type(2):before {
        content: "Date";
    }
    .listing-app-view .active-packages-area .lp-invoice-table td:nth-of-type(3):before {
        content: "Amount";
    }
    .listing-app-view .active-packages-area .lp-invoice-table td:nth-of-type(4):before {
        content: "Duration";
    }
    .listing-app-view .active-packages-area .lp-invoice-table td:nth-of-type(5):before {
        content: "Total Listings";
    }
    .listing-app-view .active-packages-area .lp-invoice-table td:nth-of-type(6):before {
        content: "Status";
    }
    .listing-app-view .lp-active-compaign-outer .lp-invoice-table td:nth-of-type(1):before {
        content: "Trans ID";
    }
    .listing-app-view .lp-active-compaign-outer .lp-invoice-table td:nth-of-type(2):before {
        content: "Amount";
    }
    .listing-app-view .lp-active-compaign-outer .lp-invoice-table td:nth-of-type(3):before {
        content: "Duration";
    }
    .listing-app-view .lp-active-compaign-outer .lp-invoice-table td:nth-of-type(4):before {
        content: "Payment Method";
    }
    .listing-app-view .lp-active-compaign-outer .lp-invoice-table td:nth-of-type(5):before {
        content: "Date From";
    }
    .listing-app-view .lp-active-compaign-outer .lp-invoice-table td:nth-of-type(6):before {
        content: "Date To";
    }
}

@media (max-width: 767px) {
    /* on 14 july */
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer.clearfix .col-md-3.col-sm-3.col-xs-12.pull-right .lp-rigt-icons ul {
        padding-top: 0 !important;
    }
    /* end on 14 july */
    header .lp-topbar .fullwidth-header .col-md-9.col-sm-9.text-left {
        float: left;
    }
    .contact-form.quickform form.form-horizontal .form-group.pos-relative .fa-send.lp-search-icon {
        top: 12px;
    }
    .claimform.claimform-open .form-group {
        margin: 0;
    }
    .claimform.claimform-open {
        padding: 0;
    }
    .claimform.claimform-open h3 {
        padding-top: 10px;
    }
    .menu-hotel {
        clear: both;
        position: relative;
    }
    .hotel-menu {
        position: relative;
        display: none;
        background-color: transparent;
        clear: both;
        margin-bottom: 15px;
    }
    .hotel-menu .inner-menu {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: translate(0%);
        left: auto;
        top: auto;
    }
    .hotel-menu .close-menu-popup {
        display: none;
    }
    /*2204017 strt*/
    .listing-slide.img_3 .slick-track .slide {
        pointer-events: none;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-inline .form-group:last-of-type {
        width: auto !important;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-inline .form-group .lp-search-bar-right {
        margin: 0;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .lp-search-bar .form-group.lp-suggested-search {
        width: 50% !important;
        margin-bottom: 0;
    }
    .lp-search-bar div.form-group.lp-location-search {
        width: 40% !important;
        margin-bottom: 0;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-group.lp-suggested-search input.lp-suggested-search {
        min-width: 100%;
    }
    /*2204017 ends*/
    .vertical_view.padding-bottom-40 .lp-price-main {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        margin-bottom: 30px;
        box-shadow: none;
    }
    .vertical_view.padding-bottom-40 .page-header {
        margin: 0;
    }
    .vertical_view.padding-bottom-40 {
        padding-bottom: 0;
    }
    .right-panel #updateprofile .active-packages-area .top-area .listing-options ul li {
        margin-left: 12px;
        margin-right: 12px;
    }
    .right-panel #updateprofile .active-packages-area .top-area .listing-options {
        width: 100%;
    }
    .dashboard-content .lp-list-view-content-bottom .lp-list-view-edit {
        padding-top: 10px !important;
    }
    .archive .page-heading.listing-page .page-heading-inner-container.cat-area .col-md-6.col-sm-6 {
        float: left;
        width: 50%;
        padding-top: 0;
    }
    .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        line-height: 34px;
    }
    /*0504017 start*/
    .listing-second-view .listing-post article {
        width: 100% !important;
        margin-right: 5px !important;
    }
    .single_listing .features li {
        width: 49% !important;
    }
    .lp-right-panel-upper {
        width: calc(100% - 230px);
    }
    .city-girds .city-thumb img {
        width: 100%;
    }
    /*0504017 end*/
    .form-group .lp-search-bar-right {
        margin-left: 0 !important;
    }
    .admin-top-section .user-portfolio .user-thumb {
        width: 50px;
        height: auto;
    }
    .admin-top-section .user-portfolio .user-text .user-name>span {
        display: none;
    }
    .lp-contact-support {
        display: none;
    }
    /*.panel-dash-views .count-box {
			padding: 10px;
		}*/
    /*.panel-dash-views .count-box.green-box {
			padding: 10px 0;
		}*/
    .admin-top-section .lp-right-panel-upper .user-description-box>ul li {
        padding: 20px 0 0 0;
    }
    .admin-top-section .user-details .col-md-3 {
        /* width: 207px !important; */
    }
    .admin-top-section .user-description-box {
        width: 100% !important;
    }
    .user-description-box>ul li {
        width: 19% !important;
    }
    .lp-contact-support {
        width: 100% !important;
        text-align: center;
    }
    .listing-second-view .listing-post article {
        transform: translateZ(0);
    }
    .dashboard-content .right-panel .user-recent-listings-inner .lp-list-page-list {
        padding-right: 0;
    }
    .page-container-five {
        padding-top: 55px;
        padding-bottom: 25px;
    }
    .submit_new_style .white-section .lp-social-area .form-group.col-md-12.col-xs-12 {
        padding-left: 0;
    }
    .submit_new_style #tags-by-cat .col-md-2.col-sm-4.col-xs-6 {
        width: auto !important;
    }
    .dashboard-content .right-panel {
        min-height: 200px;
    }
    .dashboard-panel .das-services .dismiss {
        right: 12px !important;
        top: 7px !important;
    }
    .dashboard-content .tab-header {
        width: 100%
    }
    .dashboard-content .right-panel .tab-header {
        margin-left: 0;
    }
    .strp {
        margin-top: -28px;
    }
    .right-panel .dashboard-panel .panel-dash-views .col-md-4.col-xs-12:not(:last-child) {
        padding-right: 0;
    }
    /* .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 {
			width: 33%;
		} */
    .dashboard-right-panel .lp-dashboard-right-panel-listing a.lp-show-all {
        float: right;
        display: inline-block;
    }
    .dashboard-panel .promotional-service {
        padding-bottom: 0;
        margin-bottom: 0;
        padding-top: 0;
        margin-bottom: 50px;
    }
    .dashboard-panel .panel-dash-dismiss.das-services {
        background: transparent;
        border: none;
    }
    .dashboard-panel .panel-dash-dismiss.das-services .col-md-4.col-xs-12 {
        padding: 0;
    }
    .promotional-service {
        margin-bottom: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .promotional-support .support-section .support-text-details {
        width: 100%;
    }
    .call-to-action .calltoaction-left-panel {
        width: 70%;
    }
    .call-to-action .calltoaction-right-panel {
        width: 30%;
    }
    .lp-grid-box-contianer.list_view .lp-grid-box-description {
        padding-bottom: 7px;
        width: 100%;
    }
    .day-hours ul.hours-select li {
        width: 100%;
        float: none;
        padding: 0 !important;
    }
    .page-style2-content-wrap ul.hours-select li .lp-add-hours-st {
        position: absolute;
        width: 100%;
        top: 100% !important;
    }
    .hours>span.weekday {
        width: calc(100% - 215px);
    }
    .submit_new_style.submit_new_style-outer .col-md-12.col-sm-12 #lp-submit-form .white-section {
        padding-bottom: 50px !important;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-group.lp-location-search {
        z-index: 8;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back form.form-inline div#input-dropdown {
        border-top: 1px solid #ebebeb;
    }
    .listing-simple .search-row .form-inline .form-group {
        width: auto !important;
    }
    .lp-search-bar .form-group.lp-location-search {
        margin-bottom: 0;
    }
    .lp-section-content-container-style3 .lp-blog-grid-box-thumb {
        margin: auto;
    }
    .form-inline .form-group {
        width: 100% !important;
    }
    .admin-top-section .user-portfolio {
        width: 100% !Important;
    }
    .admin-top-section .user-description-box {
        width: 100% !Important;
        padding-top: 0;
    }
    .admin-top-section .user-portfolio .user-text {
        width: auto;
    }
    .dashboard-content .right-panel {
        padding-left: 15px;
    }
    .lp-modal-list#modal-invoice .modal-content .modal-dialog .lp-list-detail .lp-addres-com-detail p {
        margin-bottom: 0;
    }
    .lp-modal-list#modal-invoice .modal-content .modal-dialog .lp-list-detail .lp-addres-com-detail {
        clear: both;
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .lp-modal-list#modal-invoice {
        font-size: initial;
    }
    .page-container-four {
        padding-bottom: 10px;
    }
    .page-container-four .page-header {
        margin-top: 10px;
    }
    .lp-section-title-container h1 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .testimonial-inner-box h3 {
        margin-bottom: 10px;
        text-align: center;
    }
    .nearby-download {
        margin-top: 55px;
    }
    .lp-section-content-container {
        padding-top: 55px;
        padding-bottom: 25px;
    }
    .lp_section_inner .lp-section-content .lp-section-title-container {
        padding-top: 15px;
    }
    .lp-grid-box-contianer .lp-grid-box .lp-grid-desc-container.lp-border.clearfix .lp-grid-box-bottom {
        clear: both;
        border-top: 1px solid #dedede;
        padding-top: 0;
    }
    /*.listing-style-3 .col-md-12.search-row.margin-top-subtract-35 .form-inline.lp-filter-inner .form-group {
			margin-bottom: 10px;
		}*/
    .listing-simple .lp-title.col-md-10.col-sm-10 {
        top: -35px;
    }
    .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 {
        display: inline-block;
    }
    .listing-with-map .filter-top-section .listing-view-layout {
        position: static;
        margin-top: 15px;
    }
    .listing-with-map .post-with-map-container-right .post-with-map-container {
        width: 100%;
        margin-top: 20px;
        float: none !important;
    }
    .list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom {
        position: relative;
        float: right;
    }
    .lp-grid-box-bottom .pull-left {
        max-width: 100%;
    }
    .listing-simple.listing_list_view .list_view.lp-grid-box-contianer .lp-grid-box-bottom span.text {
        float: none;
    }
    .lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left>ul>li.middle {
        width: auto;
    }
    section .page-container .search-row .form-inline .form-group {
        display: inline-block;
    }
    .post-with-map-container-right .post-with-map-container .form-inline.tags-area,
    .post-with-map-container-right .post-with-map-container .form-inline.tags-area .form-group {
        height: auto !important;
    }
    .post-with-map-container .search-row.margin-top-subtract-35 .form-inline .form-group {
        height: 40px;
        float: left;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar {
        padding-top: 15px;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar .form-inline .form-group.pull-right {
        margin-bottom: 0;
    }
    .lp-header-bg-grey .icon-bar {
        background-color: #41a6df;
    }
    .lp-list-view-inner-contianer .vcenter1 {
        text-align: center;
    }
    .lp-tabs .vcenter .lp-rigt-icons {
        float: none;
    }
    .lp-modal-list {
        height: auto;
        font-size: 32px;
        text-align: center;
        margin-right: 0;
        color: #000;
        float: left;
    }
    .lp-modal-list {
        width: 100%;
    }
    .invoice-total {
        font-size: 16px;
    }
    .lp-list-cnt {
        min-width: 100%;
    }
    .lp-modal-list button.close {
        float: left;
        z-index: 9999;
        position: absolute;
        font-size: 50px;
    }
    .lp-listing-form .lp-listing-clm .radio.radio-danger {
        float: none;
    }
    .lp-search-bar {
        width: 100%;
        display: inline-block;
    }
    .lp-search-bar .typeahead__field .lp-location-search {
        float: left;
    }
    .lp-search-bar-right {
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar {
        padding-top: 0;
    }
    .listing-simple .listing-page-result-row .col-sm-4 p {
        text-align: center;
    }
    .lp-list-page-grid .grid_view2 {
        width: 50%;
    }
    .lp-grid-box-left.pull-left {
        width: 70%;
    }
    .list_view .lp-grid-box-right.pull-right {
        width: 30%;
    }
    .lp-sidebar-filters-style .post-with-map-container-right,
    .sidebar-filters .sidebar-filters-wrap,
    .sidebar-filters .content-grids-wraps {
        width: 100%;
    }
    .sidebar-filters .sidemap-container {
        width: auto;
        z-index: 99999999!important;
        position: fixed;
    }
    .listing-view-layout,
    #see_filter {
        display: none;
    }
    .lp-sidebar-filters-style #lp-find-near-me {
        position: relative;
        right: auto;
        top: auto;
    }
    .lp-sidebar-filters-style #lp-find-near-me .lp-tooltip-outer-responsive {
        max-width: 100%;
        float: none;
    }
    .sidebar-filters .outer_all_page_overflow {
        position: relative;
    }
    .lp-sidebar-filters-style .lp-more-filters-outer ul li {
        width: 100% !important;
    }
    .sidebar-filters .sidebar-filters-wrap,
    .sidebar-filters .post-with-map-container {
        height: auto;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .lp-home-banner-contianer-inner .lp-search-bar form .form-group.pull-right.search-hide {
        float: left !Important;
    }
    .home .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single span {
        /* margin-left: 10px; */
    }
    .post-with-map-container .form-inline .form-group.margin-right-0 .col-md-4.col-sm-4 {
        margin-bottom: 15px!important;
        padding-right: 15px;
    }
    .listing-with-map .filter-top-section .listing-view-layout {
        margin-top: 0;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        width: 40% !important;
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100% !important;
    }
}

@media (max-width: 1199px) and (min-width: 1061px) {
    .lp-header-bg-black .lp-menu-bar div.header-filter.hide-search {
        width: 43%;
    }
    .lp-header-bg-black .lp-menu-bar div.header-filter {
        width: auto;
        float: left;
        padding: 0;
    }
}

@media (max-width: 1060px) and (min-width: 992px) {
    .lp-header-bg-black .lp-menu-bar div.header-filter {
        width: 49%;
        float: left;
        padding: 0;
    }
    header .lp-menu-bar .lp-menu-container .pull-right.padding-right-10 {
        padding: 0;
    }
    header.lp-header-full-width .lp-menu-bar .header-filter {
        width: 50%;
    }
}

@media (max-width: 991px) and (min-width: 480px) {
    header .col-md-2.col-xs-6.lp-logo-container {
        width: 22%;
    }
    header .col-md-5.col-xs-12.lp-menu-container.clearfix.pull-right {
        /* width: 35% !important; */
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .form-group.lp-location-search div.chosen-container.chosen-container-single.chosen-container-single-nosearch {
        width: 100% !important;
    }
    .right-panel .dashboard-panel {
        width: calc(100% - 320px);
    }
    .right-panel div.dashboard-right-panel {
        width: 320px !important;
    }
    .right-panel .dashboard-right-panel .lp-dashboard-right-panel-listing h4 {
        font-size: 14px;
    }
    .sidebar-post .quickform form.form-horizontal .form-group.pos-relative i.lp-search-icon {
        left: 30%;
    }
}

@media (max-width: 1199px) and (min-width: 981px) {
    .header-right-panel .header-filter .input-group.width-49-percent {
        width: 45%;
    }
    .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 43%;
    }
    .fullwidth-header .header-filter .form-inline.top-search-form .lp-search-btn.lp-search-icon {
        padding: 0;
        left: 0;
        width: 110%;
    }
    .right-panel .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 {
        padding-top: 15px;
    }
    .right-panel .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 {
        width: 50%;
    }
    .header-with-topbar .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        right: 25px;
    }
    .header-with-topbar .lp-menu-bar.lp-menu-bar-color .fullwidth-header .inner-pages .lp-menu.pull-right.menu {
        width: auto;
    }
    .header-with-topbar .inner-pages {
        width: 40%;
    }
    header.header-with-topbar div.header-right-panel div.header-filter {
        width: 60%;
    }
}

@media (max-width: 991px) and (min-width: 980px) {
    .header-right-panel.clearfix.col-md-10.col-sm-10.col-xs-12 {
        width: 78%;
    }
    section.listing-with-map .post-with-map-container-right {
        width: 50%;
    }
    .post-with-map-container {
        width: 100%;
    }
    .sidemap-container {
        width: calc(100% - 50%);
    }
    .listing-style-3 .form-inline.lp-filter-inner .more-filter div.form-group.pull-right.margin-right-0 {
        float: left !important;
    }
    .listing-style-3 .form-inline.lp-filter-inner .more-filter .form-group:last-child {
        margin-bottom: 0;
    }
    .listing-with-map .filter-top-section .listing-view-layout {
        width: 90px;
    }
    .listing-with-map .list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom,
    .listing-with-map .list_view.lp-grid-box-contianer .lp-grid-box-description,
    .listing-with-map .list_view .lp-grid-box-thumb-container {
        width: 100%;
    }
    .listing-with-map .list_view .lp-grid-box-quick {
        bottom: 0;
        top: auto;
        border-radius: 0;
    }
    .listing-with-map .lp-grid-box-thumb-container .lp-grid-box-thumb .hide-img.listingpro-list-thumb img {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .listing-with-map .list_view .lp-grid-box-thumb-container {
        border-radius: 0;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .single_listing .business-contact .contact-form.quickform .author-img {
        width: 100%;
        text-align: center;
    }
    .single_listing .business-contact .contact-form.quickform .author-social {
        display: block;
        width: 100%;
        text-align: center;
    }
    .listing-style-3 .form-inline.lp-filter-inner .more-filter .form-group {
        margin-bottom: 10px;
    }
    .sidebar-post .quickform form.form-horizontal .form-group.pos-relative i.lp-search-icon {
        left: 25%;
        top: 10px;
    }
    .sidebar-post .open-hours .today-timing .closed {
        display: none;
    }
    .content-white-area .single_listing .video-option a.watch-video.popup-youtube {
        padding: 3px 5px;
    }
    .sidebar-post .widget-box .today-hrs a.show-all-timings {
        min-width: 120px;
    }
    .listing-second-view .open-hours ul .today-timing strong {
        line-height: normal;
    }
    .listing-second-view .open-hours ul li strong {
        line-height: 40px;
    }
    .listing-second-view .map-area .listing-detail-infos {
        padding-left: 15px;
        padding-right: 15px;
    }
    .listing-second-view .listing-price .price-area .claim-area .phone-icon {
        display: block;
    }
    .listing-second-view .features.list-style-none>li {
        width: 50%;
    }
    .open-hours ul li span {
        font-size: 13px;
    }
    .single_listing .sidebar-post .widget-box.listing-price {
        padding-left: 15px;
        padding-right: 15px;
    }
    .listing-second-view .post-price-row>li:last-child {
        margin-right: 0;
    }
    .listing-second-view .post-meta-right-box .post-stat li,
    .listing-second-view span.rating-section {
        float: none !important;
    }
    .listing-second-view .post-meta-right-box .post-stat {
        text-align: center;
    }
}

@media (max-width: 991px) and (min-width: 480px) {
    .header-filter.pos-relative {
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .listing-style-1 .col-md-12.search-row.margin-top-subtract-35 .form-inline.lp-filter-inner .form-group {
        margin-bottom: 10px;
    }
    .listing-simple .search-row .lp-features-filter ul>li,
    .listing-with-map .search-row .lp-features-filter ul>li {
        width: auto;
    }
    .lp-header-full-width .lp-menu-bar .header-filter {
        width: 100%;
    }
    /*22/04017 strt*/
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-inline .form-group .lp-search-bar-right input {
        text-indent: -9999px;
    }
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-inline .form-group .lp-search-bar-right .lp-search-icon {
        left: 50%;
    }
    /*22/04017 ends*/
    .single_listing .business-contact .lp-review-btn {
        padding: 6px 28px;
    }
    /*Detail page grid tablets starts*/
    .listing-second-view .single_listing .sidebar-post .open-hours .today-timing strong img {
        display: none;
    }
    .listing-second-view .single_listing .sidebar-post .open-hours {
        padding: 5px;
    }
    .listing-second-view .single_listing .sidebar-post .open-hours {
        padding: 15px;
    }
    .listing-second-view .single_listing .sidebar-post .open-hours .Opened {
        margin-left: 4px;
    }
    .listing-second-view .listing-post article {
        width: 100%;
    }
    .listing-second-view .listing-post article figure figcaption .bottom-area {
        bottom: -10px;
    }
    .listing-second-view .listing-post article figure figcaption .bottom-area h4 a {
        line-height: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .listing-second-view .listing-post article figure figcaption .bottom-area .listing-location {
        line-height: 14px;
    }
    .listing-second-view .features-listing>ul>li strong {
        font-size: 13px;
    }
    .listing-second-view .map-area .listing-detail-infos ul li a span.cat-icon {
        width: 20px;
    }
    .listing-second-view .map-area .listing-detail-infos .list-st-img span:last-child {
        width: 86%;
        font-size: 13px;
    }
    /*Detail page grid tablets ends*/
    .right-panel #invoices .lp-invoice-table .invoice-section {
        width: 50%;
        float: left;
    }
    .right-panel #invoices .lp-invoice-table .invoice-section table tr td {
        height: 55px;
    }
    .dashboard-content .lp-list-view-thumb .lp-list-view-thumb-inner img {
        width: auto;
    }
    .dashboard-content .lp-list-view .lp-list-view-inner-contianer .col-md-3.col-sm-3.col-xs-12 {
        width: 75%;
    }
    .dashboard-content .lp-list-view-content-bottom .lp-list-view-edit {
        padding-top: 0;
        padding-bottom: 0;
    }
    .lp-social-area .form-group.col-md-12.col-xs-12 {
        padding-left: 0;
    }
    .testimonial.lp-section-content-container .testimonial-inner-box h3 {
        margin-bottom: 10px;
    }
    .testimonial.lp-section-content-container .testimonial-inner-box {
        margin-top: 25px;
    }
    /*0504017 start*/
    .listing-second-view .listing-post article:nth-child(odd) {
        margin-right: 28px;
    }
    .listing-second-view .listing-post article {
        /* width: 48%; */
    }
    .right-panel .dashboard-panel {
        padding-right: 20px;
    }
    .panel-recent-activity {
        margin-bottom: 30px;
    }
    .right-panel .dashboard-right-panel {
        padding: 0 20px !important;
        float: left;
    }
    /*0504017 ended*/
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        width: 50%;
    }
    .lp-contact-support {
        width: 250px;
    }
    .lp-contact-support .secondary-btn {
        width: 230px;
        margin-left: 0;
    }
    .user-description-box {
        width: calc(100% - 250px);
    }
    .post-meta-info .post-meta-right-box.text-right.clearfix.margin-top-20 a.secondary-btn {
        height: 36px;
        line-height: 33px;
        width: 170px;
        margin-top: 5px;
        font-size: 14px;
    }
    .submit_new_style #tags-by-cat .col-md-2.col-sm-4.col-xs-6 {
        width: 33.333%;
    }
    .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit.list-style-none.aliceblue>li>a {
        padding: 5px 15px;
    }
    .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit>li:first-of-type>a {
        padding: 0 5px 0 0;
    }
    .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit>li:last-of-type>a {
        padding: 0 0 0 5px;
    }
    .right-panel .lp-list-page-list .lp-list-view {
        width: 100%;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-9.col-sm-9.col-xs-12 {
        width: 55%;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-2.col-sm-2.col-xs-12 {
        width: 25%;
    }
    .right-panel .lp-list-page-list .lp-list-view .lp-list-view-inner-contianer .col-md-1.col-sm-1.col-xs-12 {
        width: 20%;
    }
    .right-panel .dashboard-right-panel a.lp-add-new-listing i {
        width: 40px !important;
    }
    .right-panel .dashboard-right-panel a.lp-add-new-listing>span {
        padding: 0 14px !important;
    }
    .right-panel .dashboard-right-panel {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .dashboard-content .right-panel .dashboard-right-panel {
        display: inline-block;
        width: 60%;
    }
    .dashboard-content .right-panel .dashboard-panel {
        display: inline-block;
        width: 100%;
        box-shadow: none;
    }
    .promotional-text-details {
        padding-top: 0;
    }
    .listing-simple .search-row .form-inline .form-group {
        float: left !important;
    }
    .lp-list-page-grid .lp-grid-box-contianer .lp-grid-box .lp-grid-desc-container.lp-border.clearfix {
        display: block;
    }
    .dashboard-content .promotional-section .lp-pay-options .form-group {
        height: auto;
    }
    .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-left,
    .dashboard-content .promotional-section .lp-pay-options .form-group .col-md-6.text-right {
        width: 50%;
        float: left;
        padding: 0;
    }
    .dashboard-content .availableprice_options .checkboxx {
        width: 50%;
    }
    .dashboard-content .availableprice_options .checkboxx .plan-img {
        width: 100%;
    }
    .dashboard-content .col-md-9.col-xs-12.tbl-cell .tab-pane.fade {
        padding-right: 0;
    }
    .dashboard-content #reviews .inside .comments-box {
        padding-top: 10px;
    }
    .dashboard-content .tbl-cell #invoices {
        padding-top: 55px;
        padding-bottom: 55px;
    }
    .lp-invoice-table tr td:first-child {
        border-top: 0;
    }
    .lp-invoice-table tr {
        border: 0;
    }
    .lp-invoice-table td {
        border-bottom: 0;
    }
    .lp-invoice-table .wp-list-table tbody tr td:last-child {
        padding: 0;
    }
    .listing-price .claimform.claimform-open {
        clear: both;
        margin-top: 40px;
    }
    .single_listing .review-form .form-group.submit-images {
        margin-top: 0;
        margin-bottom: 0;
    }
    .lp-grid-box-thumb-container .lp-grid-box-thumb .hide-img.listingpro-list-thumb img {
        width: 100%;
        height: 100%;
    }
    .listing-simple.listing_list_view .lp-list-page-grid {
        width: 100%;
    }
    .listing-simple .search-row .form-inline {
        /* overflow: hidden; */
    }
    .listing-second-view .post-meta-right-box .post-stat {
        float: none;
    }
    .listing-second-view .post-meta-info .post-meta-right-box {
        text-align: center;
        display: inline-block;
    }
    .lp-list-view-inner-contianer .vcenter {
        float: none;
    }
    .page-container-four.submit_new_style .blue-section .form-group.preview-section {
        padding-left: 0;
    }
    .lp-list-view-inner-contianer .lp-list-view-content {
        width: 100%;
    }
    .lp-list-view-content .lp-list-view-content-bottom .lp-rigt-icons {
        width: 100%;
        height: 100%;
        display: inline-block;
        margin: 0 auto;
    }
    .lp-list-view-content .lp-list-view-content-bottom .lp-rigt-icons ul {
        display: inline-block;
        float: none !important;
    }
    .lp-list-view-inner-contianer .vcenter {
        float: left;
        text-align: center;
        margin: 0 auto;
    }
    .lp-tabs .lp-pay-publsh {
        margin-top: 0 !important;
    }
    /*tabs for center listing auther ends*/
    .lp-list-view-inner-contianer .vcenter1 {
        float: left;
    }
    .lp-header-full-width .lp-menu-bar .lp-logo-container {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .day-hours>ul.hours-select li:last-child {
        margin-top: 0 !important;
    }
    .admin-top-section .user-description-box {
        text-align: center;
    }
    .dashboard-content .dashboard-tabs {
        height: auto !important;
    }
    .dashboard-content .tbl-cell .tab-content.dashboard-contnt {
        padding: 0;
    }
    .lp-search-bar-all-demo .lp-interest-bar,
    .lp-search-bar-all-demo .lp-location-bar,
    .lp-search-bar-all-demo .lp-catagory-bar {
        width: 49%;
        margin: 0 0 10px 0;
        padding-right: 10px;
    }
    .lp-search-bar-all-demo .lp-catagory-bar {
        clear: both;
    }
    .lp-search-bar-all-demo .lp-range-slider {
        display: block;
        line-height: 40px;
    }
    .lp-listing-form .lp-listing-clm h5 {
        float: none;
        width: auto;
    }
    .lp-tabs .lp-list-view {
        width: 100%;
    }
    .lp-tabs .lp-list-view .lp-list-view-thumb-inner img {
        width: auto;
    }
    .lp-tabs .lp-list-view .lp-list-view-thumb-inner a {
        display: block;
        width: 100%;
        text-align: center;
    }
    .lp-listing-form input[type=submit] {
        margin-top: 15px;
    }
    .col-md-4 .view-on-map {
        transform: none !important;
        text-align: left;
    }
    .lp-list-page-grid .clearfix {
        display: inline-block;
    }
    .chosen-container {
        width: 100% !important;
    }
    .price-plan-box .price-plan-box-bottom form.price-plan-button {
        float: left !important;
    }
    .price-plan-box .price-plan-content {
        width: 100%;
    }
    .week-day-box,
    .week-day-date-box {
        width: calc(100% / 7) !important;
    }
    .event-calender-classic .week-days-wrap,
    .event-calender-classic .week-days-dates-row,
    .lp-week-days-wrape-inner-container {
        margin: 0px 20px !important;
    }
    .event-calender-classic .week-days-dates-row:before {
        height: 1px !important;
        content: '' !important;
        background: #dedede !important;
        height: 1px !important;
        width: -webkit-calc(100% + 8px) !important;
        width: -moz-calc(100% - 8px) !important;
        position: absolute !important;
        left: -4px !important;
    }
}

@media (max-width: 980px) {
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search.hide-where input {
        width: 100% !important;
    }
    .right-panel .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 {
        width: 33%;
    }
    /*0604017 strt*/
    .dashboard-content .lp-list-view .lp-list-view-inner-contianer .col-md-3.col-sm-3.col-xs-12 {
        width: 50%;
        padding: 0;
    }
    .dashboard-content .lp-rigt-icons.lp-list-view-content-bottom .lp-list-view-edit.list-style-none {
        float: none;
        transform: translateX(0%);
        left: 0%;
    }
    .dashboard-content .lp-list-view .lp-list-view-inner-contianer .col-md-8.col-sm-8.col-xs-12 {
        width: 80%;
    }
    /*0604017 ends*/
    /*05/04/017 start*/
    .header-right-panel .lp-menu #menu-inner-1.inner_menu>li {
        padding-right: 15px;
    }
    .header-right-panel.clearfix.col-md-10.col-sm-10.col-xs-12 {
        padding: 0 !important;
        width: 100%;
    }
    .lp-card .promotional-section .lp-method-wrap.lp-listing-form {
        margin-bottom: 0;
        margin-top: 0;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        background: #fff;
    }
    .lp-search-bar .lp-suggested-search .input-group-addon.lp-border {
        background: #fff;
        z-index: 99;
    }
    /*05/04/017 ended*/
    .lp-search-bar .form-group .lp-search-bar-right {
        margin-left: 10px;
    }
    .lp-search-btn {
        padding: 11px 25px 11px 25px;
    }
    .listing-second-view .listing-price .price-area .claim-area {
        line-height: 19px;
    }
    .listing-second-view .listing-price .price-area .claim-area .phone-icon {
        float: none;
    }
    .right-panel .lp-list-page-list .lp-list-view-inner-contianer .list-pt-display li {
        width: auto;
    }
    .listing-with-map .search-row .form-inline.lp-filter-inner .form-group {
        float: left !important;
    }
    .lp-grid-box-contianer.list_view .lp-grid-box {
        margin-bottom: 30px;
    }
    .admin-top-section .user-description-box {
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
    }
    .form-horizontal#profileupdate .tab-header {
        margin-top: 0;
    }
    .single_listing .business-contact .contact-form.quickform {
        padding-left: 0;
        padding-right: 0;
    }
    .listing-second-view .claim-area a.phone-number.claimformtrigger {
        font-size: 15px;
        font-weight: 500;
        padding: 0 2px;
    }
    .listing-second-view .claim-area a.phone-number.md-trigger.claimformtrigger2 {
        display: none;
    }
    .lp-grid-box-contianer.grid_view2.lp-grid-box-contianer1 {
        width: 50%;
        float: left;
    }
    .lp-sidebar-nearby .grid_view2.lp-grid-box-contianer1 {
        width: 100%;
        float: left;
    }
    .post-with-map-container .search-row.margin-top-subtract-35 .form-inline .form-group {
        width: auto !important;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar {
        width: 100%;
        display: inline-block;
    }
    .header-filter .input-group.width-49-percent.margin-right-15,
    .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 59%;
    }
    .header-with-topbar .lp-menu-bar .header-filter,
    .lp-header-full-width .lp-menu-bar .header-filter {
        width: 100%;
    }
    .header-with-topbar .lp-menu-bar .header-filter,
    .lp-header-full-width .lp-menu-bar .header-filter {
        transform: translateY(0%);
    }
    .lp-search-bar-all-demo .lp-search-bar-price {
        width: 100%;
    }
    .lp-modal-list {
        left: 0;
    }
    .vcenter1 {
        float: left;
    }
    .lp-tabs .lp-list-view-content {
        width: 100%;
    }
    .lp-tabs .lp-list-view .list-pt-display {
        display: inline-block;
        text-align: center;
    }
    .lp-tabs .lp-list-view .list-pt-display li {
        width: auto;
    }
    .lp-tabs .vcenter {
        display: inline-block;
        vertical-align: middle;
        float: left;
        text-align: center;
    }
    .lp-tabs .lp-rigt-icons .lp-list-view-edit {
        position: initial;
        left: auto;
        transform: none;
    }
    .lp-tabs .lp-rigt-icons {
        display: inline-block;
        float: right;
    }
    .lp-tabs .lp-rigt-icons .lp-list-view-edit {
        float: left;
        margin-bottom: 0;
        margin-right: 10px;
    }
    .lp-tabs .lp-pay-publsh {
        margin: 0;
    }
    .lp-search-bar .form-group.lp-location-search {
        width: auto !important;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        display: inline;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        float: left;
        /* margin-bottom: 10px; */
        width: 50%;
        min-width: unset !important;
    }
    .lp-search-bar .lp-search-bar-right {
        float: left;
    }
    .lp-menu-bar .lp-logo-container {
        width: 50%;
    }
    .ui-autocomplete.ui-front {
        width: 158px !important;
    }
    .mobile-nav-icon {
        position: absolute;
        top: -35px;
    }
    header .lp-search-btn-header i {
        right: 25px;
        left: auto;
    }
    .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 50%;
    }
    .header-filter .lp-search-btn-header {
        width: auto;
    }
    .dashboard-content .lp-list-view-content.lp-list-cnt {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .listing-second-view .post-meta-info .post-meta-right-box.text-right {
        margin-top: 0;
    }
    .dashboard-content .lp-list-view-inner-contianer .lp-list-view-content.lp-list-cnt {
        padding-top: 0;
    }
    /*1204017 start*/
    .right-panel .dashboard-panel .panel-dash-views .count-box {
        padding: 10px 0 10px 0;
    }
    .right-panel .dashboard-panel .panel-dash-views .count-box .dash-right-area h3 span {
        /* line-height: normal; */
    }
    .lp-right-panel-upper .user-description-box>ul li:last-child {
        width: 25%;
    }
    .lp-right-panel-upper .user-description-box>ul li {
        width: 18%;
    }
    .admin-top-section .user-portfolio {
        text-align: center;
        padding-top: 13px;
        padding-bottom: 14px;
    }
    .admin-top-section .user-portfolio .user-thumb {
        float: none;
    }
    .admin-top-section .user-portfolio .user-text {
        width: 100%;
    }
    /*1204017 ended*/
    .form-group.lp-location-search .chosen-container.chosen-container-single {
        width: 200px !important;
    }
    /*0504017 strt*/
    .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        width: 6%;
    }
    /*0504017 ends*/
    .user-description-box {
        width: calc(100% - 250px);
    }
    .lp-contact-support a {
        width: auto !important;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0 !important;
    }
    .lp-contact-support {
        float: none;
    }
    .lp-contact-support,
    .lp-contact-support a {
        width: auto !important;
    }
    .admin-top-section .user-details .col-md-3 {
        /* width: 297px; */
        width: 25.6%;
    }
    .lp-right-panel-upper {
        width: calc(100% - 25.6%);
    }
    .user-description-box>ul li {
        padding: 39px 0;
    }
    .lp-home-banner-contianer-inner .lp-search-bar form .form-group.pull-right {
        float: none !important;
    }
    .lp-home-banner-contianer-inner .lp-search-bar .ui-widget.border-dropdown select {
        width: 169px !important;
    }
    .dashboard-panel .das-services .dismiss {
        right: 0;
        top: -25px;
    }
    .dashboard-panel .promotional-service .promotiona-text-details {
        padding-left: 0;
        padding-right: 0;
    }
    .right-panel .dashboard-right-panel {
        padding-left: 20px;
        padding-right: 20px;
    }
    .right-panel .dashboard-right-panel a.lp-add-new-listing i {
        width: 30px;
    }
    .right-panel .dashboard-right-panel a.lp-add-new-listing>span {
        padding: 0 7px;
    }
    .lp-dashboard-right-panel-listing ul li h5 span,
    .lp-dashboard-right-panel-listing ul li h5 span a {
        float: none;
    }
    .dashboard-content .right-panel {
        width: 75%;
    }
    .dashboard-content .pull-left.left-panel.tbl-cell {
        width: 25%;
    }
    .listing-second-view span.rating-section {
        /* float: left; */
    }
    header .col-md-5.col-xs-12.lp-menu-container.clearfix.pull-right {
        width: 50%;
    }
    .listing-second-view .post-meta-info .col-md-4.col-sm-12 {
        padding: 0;
    }
    .day-hours>ul.hours-select li:last-child {
        margin-top: 10px;
    }
    .lp-search-bar-all-demo .lp-interest-bar,
    .lp-search-bar-all-demo .lp-location-bar,
    .lp-search-bar-all-demo .lp-catagory-bar {
        width: 220px;
    }
    .lp-tabs .lp-list-cnt {
        margin-left: 0;
    }
    .typeahead__field .form-group .lp-search-bar-right {
        width: 134px;
    }
    .lp-search-bar-right .lp-search-icon {
        position: absolute;
        top: 12px;
        left: 15px;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        /* margin-bottom: 15px; */
        width: auto;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        min-width: 100%;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group {
        margin-right: 0;
    }
}

@media (max-width: 667px) {
    .header-container.lp-vedio-bg {
        overflow: visible;
    }
    .admin-top-section .lp-contact-support {
        display: block;
        margin-top: 30px;
    }
    .admin-top-section .user-description-box {
        display: none;
    }
    .home .lp-section-row.margin-bottom-60 {
        background: #fff;
        padding-top: 30px;
        margin-bottom: 0;
    }
    .home-categories-area.lp-align-top .lp-section-row {
        margin-bottom: 0;
    }
    .list_view .lp-grid-desc-container {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .admin-top-section .user-details div.col-md-3 {
        width: 190px !important;
    }
    .pos-relative .lp-home-banner-contianer {
        height: 450px;
    }
    .listing-app-view .pos-relative .lp-home-banner-contianer {
        height: 220px;
    }
    .lp-home-banner-contianer-inner .lp-search-description {
        margin-top: 40px;
    }
    .header-container .lp-section-row.margin-bottom-60 {
        background: #fff;
        padding-top: 50px;
        margin-bottom: 0;
    }
    .dashboard-tabs.lp-main-tabs.text-center>ul>li>ul>li>a,
    .lp-expired-lst a,
    .lp-pending-lst a,
    .lp-publish-lst a {
        font-size: 0 !important;
        padding: 0 !important;
    }
    .dashboard-tabs.lp-main-tabs.text-center>ul>li>ul>li.active a:before,
    .lp-start-com a:before,
    .lp-active-com a:before,
    .lp-expired-lst a:before,
    .lp-pending-lst a:before,
    .lp-publish-lst a:before {
        font-family: FontAwesome;
        content: "\f114";
        color: #fff;
        margin-left: 20px;
        font-size: 16px !important;
    }
    .dashboard-content div.pull-left.left-panel.tbl-cell {
        width: 50px !Important;
    }
    /*1404017 strt*/
    /*.dashboard-content div.pull-left.left-panel.tbl-cell ul li:active {
			position: absolute;
			width: 200px;
			display: inline-block;
			left: 65px;
			background: #42474c;
			z-index: 999;
		}
		.dashboard-content div.pull-left.left-panel.tbl-cell ul li:active a {
		    text-indent: 99999px;
			line-height: 15px;
			height: 47px;
			transition: all 0.5s ease-out;
		}*/
    /*1404017 ends*/
    .panel-recent-activity>ul>li {
        padding: 15px 5px 30px;
        width: 100%;
        position: relative;
    }
    .panel-recent-activity span {
        width: 100%;
    }
    .panel-recent-activity ul li span>time {
        position: absolute;
        bottom: 5px;
        right: 0;
    }
    .dashboard-tabs.lp-main-tabs.text-center>ul>li>a {
        text-indent: -99999px;
    }
    .dashboard-tabs.lp-main-tabs.text-center>ul>li>a>i {
        text-indent: 99999px;
    }
    .dashboard-content .left-panel.tbl-cell .dashboard-tabs.lp-main-tabs {
        width: 100%;
    }
    .dashboard-content div.right-panel {
        width: calc(100% - 50px) !important;
    }
    .lp-right-panel-upper {
        width: calc(100% - 222px);
    }
    .submit_new_style .featuresDataContainer.row:last-of-type .col-md-3.col-sm-3.col-xs-6 {
        width: auto !important;
    }
    .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 {
        /* width: 50%; */
    }
    .promotional-row .promotiona-col-right h3 {
        font-size: 40px;
    }
    .promotional-presentation .presentation-section {
        width: 100%;
    }
    .promotiona-col-left,
    .promotiona-col-right {
        width: 100%;
    }
    .listingpro-columns .listingpro-row .promotiona-col-right {
        padding-left: 15px;
    }
    .timeline-section .promotional-thumb,
    .timeline-section .promotional-text-details {
        width: 100%;
    }
    .promotional-element .promotional-row {
        padding-top: 55px;
    }
    .call-to-action .calltoaction-left-panel {
        width: 100%;
        padding-bottom: 20px;
    }
    .call-to-action .calltoaction-right-panel {
        width: 100%;
        text-align: center;
    }
    .call-to-action {
        padding-left: 20px;
        padding-right: 20px;
    }
    .listing-simple .list_view.lp-grid-box-contianer .lp-grid-box-thumb-container {
        float: none;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    .list_view .lp-grid-box-left.pull-left>ul>li:first-of-type {
        width: auto;
    }
    .lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left>ul>li:last-child,
    .lp-grid-box-contianer.list_view .lp-grid-box-left.pull-left>ul>li.middle {
        margin-top: 10px;
    }
    .list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom {
        width: 100% !important;
    }
    .dashboard-content .promotional-section .lp-method-wrap.lp-listing-form {
        margin: 0 0 15px 0;
    }
    .lp-menu-bar .lp-logo-container {
        width: 60% !important;
    }
    .packages .table-responsive.campaign .top-section {
        border: none;
    }
    .packages .table-responsive.campaign .table.table-striped {
        border-top: 1px solid #dedede;
    }
    .active-packages-area tbody tr td {
        padding: 8px !important;
    }
    .lp-grid-box-left.pull-left>ul>li:first-of-type {
        display: block;
        /* width: 100%; */
    }
    .lp-grid-box-left.pull-left>ul>li {
        margin-top: 10px;
    }
    .lp-grid-box-contianer.grid_view2.lp-grid-box-contianer1 {
        width: 100% !important;
    }
    .listing-second-view article.review-post>figure {
        float: none;
        width: 100%;
    }
    .dashboard-content .postbox table.widefat a.see_more_btn {
        margin-top: 0;
    }
    .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 45%;
    }
    .author-section .lp-form-row-left {
        width: 100%;
    }
    .author-section .lp-form-row-right {
        width: 100%;
        text-align: center;
    }
    .day-hours>ul.hours-select li:last-child {
        padding-top: 10px;
        padding-top: 10px;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 50%;
        min-width: 50%;
    }
    .listing-app-view .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: auto;
        min-width: unset;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group .lp-search-bar-right {
        width: auto;
    }
    .lp-list-page-grid .lp-grid-box-contianer {
        width: 100%;
    }
    .listing-simple .chosen-container {
        width: 100% !important;
    }
    .list_view .lp-grid-box-thumb img {
        border-radius: 8px 8px 0 0;
        width: 100% !important;
    }
    .list_view .lp-grid-box-thumb-container {
        border-radius: 8px 8px 0 0;
        width: 100% !important;
    }
    .listing-simple .list_view .lp-grid-box-description {
        width: 100%;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 1280px) {
    /* on 14 july */
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer.clearfix .col-md-3.col-sm-3.col-xs-12.pull-right {
        position: static;
        top: auto;
        right: auto;
        padding-top: 10px !important;
    }
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer.clearfix .col-md-3.col-sm-3.col-xs-12.pull-right {
        width: 100%;
    }
    .dashboard-content .right-panel .lp-list-page-list .lp-list-view-inner-contianer.clearfix .col-md-3.col-sm-3.col-xs-12.pull-right .lp-rigt-icons {
        margin-left: 0;
    }
    /* end on 14 july */
    .lp-header-bg-black .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 53%;
    }
    .submit_new_style {
        padding-bottom: 55px;
    }
    /*1204017 start*/
    .dashboard-panel .notices-area .notice-text h2 {
        font-size: 14px;
    }
    .dashboard-panel .notices-area .notice-text p {
        font-size: 11px;
    }
    /*1204017 ended*/
    .header-right-panel .lp-menu #menu-inner-1.inner_menu>li {
        padding-right: 5px;
    }
    .header-filter .input-group.width-49-percent .ui-widget.border-dropdown select {
        width: 100% !important;
        padding-left: 70px;
    }
    .dashboard-right-panel .lp-dashboard-right-panel-listing a.lp-show-all {
        display: block;
        float: none;
    }
    .lp-modal-list#modal-invoice .modal-footer .btn-white:hover {
        background: #363F48;
    }
    .lp-modal-list#modal-invoice .modal-footer .btn-white {
        margin-right: 15px;
        border-radius: 5px;
        background: #41a6df;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }
    .price-plan-box-upper p:first-child {
        width: 50%;
        float: left;
    }
    .listing-sidebar-left {
        padding: 0 0;
    }
    .sidebar-breadcrumbs {
        padding-bottom: 10px;
    }
}

@media screen and (min-width: 1696px) {
    /* .sidebar {
			position: fixed;
			top: 32px;
			left: 0;
			bottom: 0;
			z-index: 1000;
			display: block;
			background-color: #ffffff;
		}
		.single-listing #page {
			margin-left: 360px;
		} */
}

@media (max-width: 980px) {
    .width-32-percent {
        width: 100%;
        position: relative;
        background-size: 100%;
    }
    .width-68-percent,
    .tag-select-one,
    .tag-select-four {
        width: 100%;
    }
    .lp-search-bar-left {
        width: 78%;
    }
    .lp-home-search-input {
        width: 64%;
    }
    .lp-home-categoires li {
        margin-top: 8px;
    }
    .lp-grid-box-thumb img {
        width: 100%;
    }
    .price-plan-content {
        margin-bottom: 30px;
    }
    .mobile-nav-icon {
        display: block;
        float: left;
    }
    .lp-menu-container {
        display: none;
    }
    #quickmap {
        height: 190px;
    }
    .post-meta-info,
    .post-meta-right-box {
        text-align: center;
    }
    .post-meta-info {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .post-meta-right-box {
        margin-top: 27px;
    }
    .features li {
        width: 49%;
    }
    .comments-inner-container .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
    .sidebar-post {
        margin-top: 50px;
    }
    .sidebar-post .widget-box:last-child {}
    .md-modal {
        top: 49%;
        overflow: scroll;
    }
    .listing-simple .search-row .form-inline .form-group {
        width: auto;
    }
    .search-row .form-inline .form-group {
        width: 48%;
    }
    .search-row .form-inline .lp-input-202,
    .search-row .form-inline .input-width-299 {
        width: 100% !important;
    }
    .search-row .form-inline .form-group:nth-child(even) {
        margin-right: 0;
    }
    .user-avatar-upload {
        margin-bottom: 10px;
    }
    .width-50 {
        width: 100%;
    }
    .page-container .ui-widget {
        width: 100%;
    }
    /* .post-with-map-container{
		width:100%;
	} */
    .contact-left {
        width: 100%;
    }
    .contactmap {
        height: 300px;
    }
    .contact-right {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .image-popup {
        width: 100%;
    }
    .header-fixed {
        position: static;
        height: auto;
    }
    .lp-grid-box-quick {
        display: none;
    }
    .listing-sidebar-left {
        float: left !important;
        margin-left: 15px;
        padding-bottom: 25px;
    }
    .img-sm-46 {
        width: 46%;
    }
    .lp-list-view-thumb-inner img {
        width: 100%;
    }
    .lp-list-view-thumb,
    .lp-list-view-content,
    .lp-list-view-paypal {
        padding: 20px;
        width: 100%;
    }
    .lp-list-view-content-upper {
        min-height: unset;
    }
    .lp-list-view-paypal {
        border-top-right-radius: 0;
        border-bottom-left-radius: 8px;
    }
    .lp-list-view-edit {
        position: relative;
        transform: translateX(-50%);
        left: 50%;
    }
    .dashboard-content .promotional-section .lp-list-view-thumb {
        width: 100%;
    }
    .dashboard-content .promotional-section .lp-list-view-content-upper {
        width: 100%;
        padding-left: 0;
    }
    .list-pt-display li {
        float: left;
        margin-right: 0;
        width: 50%;
    }
    .listing-app-view .dashboard-content-app-view .list-pt-display li {
        width: 70%;
    }
    .listing-app-view .dashboard-content-app-view .lp-list-view-content-upper ul.lp-grid-box-price li.category-cion {
        width: auto;
    }
    .listing .chosen-container-multi,
    .post-map-container .chosen-container-multi {
        width: 100% !important;
    }
    .lp-logo-container {
        float: right;
    }
    .mobile-nav-icon .nav-icon {
        float: left;
    }
    .lp-logo {
        text-align: right;
    }
    .lp-blog-grid-title {
        padding: 5px 0 0 0;
    }
    .nearby-download {
        text-align: center;
    }
    header .lp-topbar {
        display: block;
        clear: both;
    }
    .lp-topbar,
    .mapbilemap-close {
        display: none;
    }
    .claimformtrigger,
    .quickformtrigger {
        display: inline-block;
    }
    .claimform,
    .quickform {
        padding-left: 15px;
        padding-right: 15px;
    }
    .claimformtrigger2,
    .quickformtrigger2 {
        display: none;
    }
    .add-listing-mobile {
        position: fixed;
        bottom: 30px;
        right: 0;
        width: 110px !important;
        background-color: rgb(54, 63, 72);
        padding: 0 !important;
        text-align: center;
        height: 35px;
        line-height: 32px;
        display: inline-block;
        z-index: 9999999;
    }
    .add-listing-mobile:hover,
    .add-listing-mobile:focus {
        color: #fff;
        background: #41a6df;
    }
    .mobilelink {
        cursor: pointer;
    }
    .mobilemap {
        position: relative;
        overflow: hidden;
    }
    .mobilemap .mapbilemap-content {
        opacity: 0;
        margin-top: -520px;
        -webkit-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
    }
    .mapbilemap-content div {
        padding: 0 !important;
    }
    .listingmap,
    .singlebigpost {
        width: 100%;
        height: 350px;
        min-height: unset;
    }
    .mobile-map-space {
        padding-left: 0;
        padding-right: 0;
    }
    .map-open {
        margin-bottom: 40px;
    }
    .ui-autocomplete,
    .ui-widget select {
        width: 1px !important;
    }
    .listing .ui-autocomplete,
    .ui-widget select {
        width: 643px !important;
    }
    .header-fixed {
        min-height: unset;
    }
    .section-fixed {
        padding-top: 0 !important;
    }
    .post-map-container .ui-autocomplete,
    .ui-widget select {
        width: 184px !important;
    }
    .widget-video iframe {
        width: 100%;
    }
    .post-meta-info .col-md-4.col-sm-12.margin-top-50 {
        margin-top: 0;
    }
    .smenu {
        left: -14px;
    }
    .comments-container ul,
    .comments-container ol {
        padding: 0;
    }
}

@media (max-width: 321px) {
    .post-meta-info .post-meta-right-box.text-right.clearfix.margin-top-20 a.secondary-btn {
        width: 160px;
    }
    /*14/04/017 strt*/
    .listing-second-view .images-gal-section .slick-prev {
        left: 0;
    }
    .listing-second-view .images-gal-section .slick-next {
        right: 0;
    }
    /*14/04/017 ends*/
    .submit_new_style .post-submit .white-section .btn-container.clearfix #tabsbtn {
        margin-left: 10px;
    }
    .post-meta-info .post-meta-left-box .breadcrumbs li:before {
        /* width: 0; */
    }
    .post-meta-info .post-meta-left-box .breadcrumbs li {
        /* width: 100%; */
    }
    .listing-second-view .review-form #reply-title {
        font-size: 14px;
    }
    .blue-section .preview-section i {
        right: 10px;
    }
    .listing .ui-autocomplete,
    .ui-widget select {
        width: 213px !important;
    }
    .ui-autocomplete,
    .ui-widget select {
        width: 260px !important;
    }
    .post-map-container .ui-autocomplete,
    .ui-widget select {
        width: 213px !important;
    }
    .listing-second-view span.rating-section {
        float: none;
    }
    .lp-blog-grid-author {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 556px) {
    .login-form-popup {
        width: 320px;
    }
    .right-panel #invoices .lp-invoice-table .invoice-section {
        width: 100%;
    }
}

@media (max-width: 351px) {
    .listing-simple .search-filters.form-group .search-filter-attr li#listingRate {
        margin-bottom: 15px;
    }
}

@media (max-width: 325px) {
    .search-filters.form-group .search-filter-attr li#listingRate {
        margin-bottom: 15px;
    }
}

@media (max-width: 714px) and (min-width: 481px) {
    .lp-search-bar .form-group.lp-location-search {
        margin-bottom: 10px;
    }
    .lp-home-banner-contianer-inner .lp-search-bar .ui-widget.border-dropdown select {
        /* padding-left: 70px; */
    }
}

@media (max-width: 480px) and (min-width: 315px) {
    .lp-modal-list#modal-invoice .modal-content .modal-dialog {
        padding: 0;
        margin: 0;
    }
    .lp-modal-list#modal-invoice .modal-content .modal-dialog .lp-list-detail {
        padding: 0;
    }
    .lp-modal-list#modal-invoice .modal-content .modal-dialog .lp-list-detail .lp-addres-to-detail,
    .lp-modal-list#modal-invoice .modal-content .modal-dialog .lp-list-detail .lp-addres-com-detail,
    .lp-modal-list#modal-invoice .modal-content .modal-dialog .lp-list-detail .lp-detail-header .lp-list-date {
        text-align: center;
        width: 100%;
    }
    .md-modal.md-effect-3.md-show#modal-3 {
        /* display: block;
		overflow-y: scroll;
		overflow-x: auto;
		height: 200px;
		top: 20px;*/
        display: block;
        position: fixed;
        transform: none;
        left: 0;
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .md-modal.md-effect-3.md-show#modal-3 .login-form-popup .form-horizontal.margin-top-30 {
        margin-top: 0;
    }
    .md-modal.md-effect-3.md-show#modal-3 .login-form-popup {
        width: 100%;
    }
    .md-modal.md-effect-3.md-show#modal-3 .login-form-popup {
        padding: 15px;
    }
    .md-modal.md-effect-3.md-show#modal-3 .login-form-popup .siginincontainer {
        padding: 0 30px;
    }
}

@media (max-width: 875px) and (min-width: 768px) {
    .table-responsive.campaign .table.table-striped>tbody>tr>td,
    .table-responsive.campaign .table.table-striped>thead>tr>th {
        line-height: normal;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .right-panel #invoices .lp-invoice-table .invoice-section table tr td {
        width: auto;
    }
    .lp-right-panel-upper .user-description-box>ul li {
        border: none;
        padding: 10px 0 0 0;
        width: 25%;
    }
    .user-description-box>ul li span.count-text {
        font-size: 11px;
    }
    .user-description-box>ul li .lp-dashboard-circle {
        width: 50px;
        height: 50px;
    }
    .admin-top-section .user-details .col-md-3 {
        /* width: 271px; */
    }
    .user-description-box>ul li span.count {
        font-size: 14px;
        line-height: 18px;
    }
    .user-description-box>ul li span.count p {
        font-size: 10px;
        display: none;
    }
    .dashboard-content .lp-pay-options ul li .lp-list-view-thumb {
        width: 15%;
    }
    .dashboard-content .lp-pay-options ul li .lp-list-view-content-upper {
        width: 85%;
        padding-left: 15px;
    }
    .lp-invoice-table .invoice-section table tr {
        border: 0;
    }
    .fill-o-bot-wrap {
        border-radius: 5px;
    }
    .fill-o-bot-wrap .col-md-2 {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0 0 10px;
    }
    .fill-o-bot-wrap .col-md-7 {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    .fill-o-bot-wrap .col-md-3 {
        width: 100%;
    }
    .fill-o-bot-wrap .col-md-3 .bot-on-tag-wrap {
        text-align: center;
    }
    .fill-o-bot-wrap .col-md-3 .bot-on-tag-wrap label.switch {
        float: none;
        margin-top: 0;
        vertical-align: middle;
    }
}

@media (max-width: 768px) {
    .mobile-nav-icon {
        top: -25px;
    }
    /* neww update 2.9.2  */
    .classic-view-grid-saved-options .lp-post-quick-links>li:last-child {
        display: none;
    }
    .post-with-map-container {
        width: 100%;
    }
    .post-with-map-container-right {
        width: 100%;
    }
    html #wpadminbar {
        display: none;
    }
    .map-view-content .header-filter {
        top: 25px;
    }
    .open-map a.open-img-view {
        opacity: 1 !important;
    }
    .sidemap-container {
        width: auto;
    }
    .sidemap-container.pull-right.sidemap-fixed.open-map {
        /* top: auto; */
    }
    .sidemap-container.pull-right.sidemap-fixed.open-map .leaflet-google-layer {
        width: 100% !important;
        height: 100% !important;
    }
    a.open-img-view {
        top: 75px;
        right: 15px;
    }
    .leaflet-control-container .leaflet-top {
        top: 65px;
        left: 0;
    }
    .open-map-view {
        display: block;
        opacity: 1;
        line-height: 14px !important;
        padding: 7px 10px !important;
        width: 50px !important;
        height: 34px !important;
    }
    a.open-map-view {
        position: absolute;
        top: 10px;
        right: 0;
        display: block;
        opacity: 1;
    }
    .listing-app-view .listing-app-view2 .smenu {
        left: -52px !important;
        right: 0 !important;
        width: 220px !important;
        margin: 0 auto !important;
    }
    .lp-price-range-btnn {
        display: none;
    }
    .listing-app-view .app-view-filters .lp-price-range-btnn {
        display: block !important;
        padding-top: 20px!important;
    }
    .listing-app-view .listing-app-view-bar .lp-tooltip-outer-responsive {
        max-width: 220px !important;
        min-width: 220px !important;
    }
    .lp-blog-for-app-view .page-container-five {
        padding-top: 30px !important;
        padding-bottom: 70px !important;
        padding-left: 20px !Important;
        padding-right: 20px !Important;
    }
    .lp-blog-grid-box-description {
        background: #fff;
    }
    .blog-heading-inner-container h1 {
        padding: 10px;
    }
    .blog-single-page {
        height: 520px;
    }
    .listing-app-view .map-post-thumb {
        overflow: hidden;
    }
    .lp-timekit-outer .resurva-booking .hidden-items label {
        margin-bottom: 0;
    }
    .resurva-booking textarea.form-control {
        margin-bottom: 14px;
    }
    .resurva-booking input[type="text"],
    .resurva-booking input[type="url"] {
        margin-bottom: 10px;
    }
    .dashboard-content-app-view .reviews a.open-reply.pull-left i {
        padding-right: 5px;
    }
    .dashboard-content .active-packages-area .table-striped>tbody>tr:nth-of-type(2n+1) {
        border-top: 0;
    }
    .dashboard-content-app-view .tab-header {
        padding-left: 25px;
    }
    .dashboard-content-app-view .tab-header h3 {
        text-align: left;
    }
    .lp-compaign-outer .lp-promote-ad-image {
        padding: 0!important;
    }
    .lp-compaign-outer .lp-promote-ad-image .lp-list-view-content-upper {
        padding: 0!important;
        width: calc(100% - 90px)!important;
        display: inline-block;
        vertical-align: top;
    }
    .lp-compaign-outer .lp-promote-ad-image .lp-list-view-thumb {
        width: 78px!important;
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
    }
    .dashboard-content .lp-compaign-outer .lp-promote-ad-image .promote-btn.pull-right {
        margin-top: 18px;
        float: left !important;
    }
    .dashboard-content .availableprice_options .checkboxx input[type="checkbox"] {
        height: auto;
    }
    .dashboard-content .availableprice_options .checkboxx .help-text {
        position: relative;
        bottom: 0;
        left: 0;
        margin-left: 0;
    }
    .dashboard-content .availableprice_options .checkboxx .checkbox.pad-bottom-10 {
        display: inline-block;
        padding-left: 10px;
        width: calc(100% - 20px);
    }
    .dashboard-content .availableprice_options .checkboxx label {
        font-size: 12px;
    }
    .promotional-section h4 {
        padding: 0 !important;
        margin-bottom: 20px !Important;
    }
    .invoice-area .col-xs-12 {
        padding: 0;
    }
    .invoice-area .invoice-price-details .col-xs-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
    .lp-list-view-content-bottom-outer,
    .lp-list-view-content-bottom-expire-outer {
        position: relative!Important;
        margin: 10px!Important;
        top: 0 !important;
    }
}

@media (width: 768px) {
    .mobile-nav-icon {
        /* bottom: 12px; */
    }
}

@media (max-width: 800px) and (min-width: 667px) {
    .lp-method-wrap.lp-listing-form>label img {
        width: 90px;
    }
    .listing-app-view .listing-second-view .post-meta-right-box .post-stat li:last-child {
        border-right: 1px solid #dedede!important;
    }
}

@media (max-width: 1345px) and (min-width: 981px) {
    .home .header-right-panel .lp-menu-container {
        width: 100%;
    }
    .lp-menu .menu-main-container ul li {
        padding-right: 15px;
    }
}

@media (max-width: 790px) {
    .listing-style-3 .col-md-12.search-row.margin-top-subtract-35 .form-inline.lp-filter-inner .form-group {
        margin-bottom: 10px;
    }
    .post-with-map-container-right .search-row div.lp-filter-inner {
        padding-bottom: 0 !important;
        position: relative;
    }
    a.open-map-view {
        margin-bottom: 10px;
    }
    #modal-doppin #lp-custom-latlong,
    #modal-doppin .modal-dialog {
        width: auto !Important;
    }
}

@media (max-width: 720px) and (min-width: 668px) {
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        width: 39% !important;
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100% !important;
    }
    .lp-home-banner-contianer-inner div.lp-search-bar div.form-group.lp-location-search {
        width: 39% !important;
    }
    .lp-search-bar .lp-search-bar-right {
        width: 133px;
    }
}

@media (max-width: 667px) and (min-width: 481px) {
    .lp-home-banner-contianer .lp-search-bar .form-group div.lp-search-bar-right {
        width: 22%;
    }
    .listing-app-view .lp-home-banner-contianer .lp-search-bar .form-group div.lp-search-bar-right {
        margin-top: 0;
        width: 18%;
    }
    .lp-home-banner-contianer-inner div.lp-search-bar div.form-group.lp-location-search {
        width: 39% !important;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        width: 39% !important;
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view1 .form-group.lp-suggested-search {
        width: 36% !important;
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar.lp-search-bar-view1 .form-group.lp-location-search {
        width: 36% !important;
        margin-right: 20px;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100% !important;
    }
    .user-description-box>ul li span.count-text.active-campaigns {
        margin-bottom: 9px;
        line-height: 10px;
    }
    .right-panel .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 .count-box .icon-area i {
        width: 30px;
        font-size: 14px;
    }
    .right-panel .dashboard-panel .panel-dash-views .col-md-4.col-xs-12 .count-box .dash-right-area {
        padding: 0;
    }
}

@media (max-width: 666px) {
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        width: 100% !important;
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view1 .form-group.lp-suggested-search {
        width: 100% !important;
        margin: 0;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar.lp-search-bar-view1 .form-group.lp-location-search {
        width: 100% !important;
        margin-right: 0;
    }
}

@media (min-width: 769px) {
    header.map-view-content {
        height: auto !important;
    }
}

@media (max-width: 979px) and (min-width: 769px) {
    .sidemap-container.pull-right.sidemap-fixed {
        width: 25%;
    }
    .post-with-map-container {
        width: 75%;
        float: left !important;
    }
}

@media (max-width: 1199px) and (min-width: 667px) {
    .lp-header-bg-black .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        right: -25px;
    }
}

@media (min-width: 1200px) and (max-width: 1349px) {
    .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15 {
        width: auto;
    }
}

@media (max-width: 1199px) and (min-width: 481px) {
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search.hide-where {
        width: 75% !Important;
        float: left;
    }
    .lp-home-banner-contianer-inner .lp-search-bar form .form-group.pull-right.search-hide {
        width: 25% !Important;
    }
    .lp-home-banner-contianer-inner .lp-search-bar form .form-group.pull-right.search-hide .lp-search-bar-right input {
        padding: 0;
        text-align: center;
        width: 100%;
    }
    .lp-home-banner-contianer-inner .lp-search-bar form .form-group.pull-right.search-hide .lp-search-bar-right {
        width: 90%;
        margin-left: 10px !important;
    }
}

@media screen and (max-width: 980px) and (min-width: 725px) {
    .lp-search-bar .lp-search-bar-right input {
        text-align: center;
        width: 100%;
    }
    .lp-search-btn {
        padding: 11px 25px 11px 35px;
    }
}

@media screen and (max-width: 1280px) and (min-width: 481px) {
    .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15.hide-where {
        width: 95% !important;
    }
    .listing-app-view .listing-app-view2 .slick-slide img {
        width: 100%;
    }
}


/* by moin on 19 aug */

@media (min-width: 1600px) {
    .listing-second-view .single-page-slider-container.style1 {
        max-width: 1600px;
    }
}


/*responsive by shoaib*/

@media (max-width: 480px) and (min-width: 320px) {
    .open-filter,
    .close-filter {
        margin: 6px;
    }
    .app-view-header .lp-logo {
        width: 66%;
    }
    .video-bottom-search-container {
        padding: 20px;
        margin-bottom: 30px;
        -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
    .lp-home-banner-contianer-inner-video {
        -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        bottom: 0;
    }
}

@media (max-width: 385px) {
    .app-view-header .lp-logo {
        width: 64%;
    }
    .open-filter,
    .close-filter {
        margin: 5px;
    }
    .listing-app-view .features.list-style-none li {
        width: auto !Important;
        padding-left: 20px !Important;
    }
}

@media (width: 320px) {
    .listing-app-view .app-view .nav-tabs>li>a {
        padding: 14px 10px;
    }
}

@media (max-width: 319px) and (min-width: 240px) {
    .listing-app-view .app-view .nav-tabs>li>a {
        padding: 14px 3px;
    }
    .listing-app-view .map-view-list-container {
        display: none !important;
    }
}

@media (max-width: 768px) and (min-width: 480px) {
    .listing-app-view .map-area .listing-detail-infos ul.list-st-img li img {
        width: 22px;
    }
    .listing-app-view article.review-post>figure {
        width: 100%;
    }
    .sortbyrated-outer {
        margin-left: 10px;
    }
    .listing-app-view .list_view .lp-grid-box-thumb {
        display: inline-table;
        vertical-align: middle;
        float: none;
    }
    .listing-app-view .list_view .lp-grid-desc-container {
        display: inline-table;
        vertical-align: middle;
        float: none;
    }
    .listing-app-view .features.list-style-none li {
        width: auto !Important;
        padding-left: 20px !Important;
    }
}

@media (max-width: 440px) and (min-width: 377px) {
    .search-row .form-inline .sortbyrated-outer {
        margin-left: 5px;
    }
    .listing-app-view .features.list-style-none li {
        width: auto !Important;
        padding-left: 20px !Important;
    }
}

@media (max-width: 990px) and (min-width: 768px) {
    .video-bottom-search-container {
        padding: 20px 20px 70px;
        margin-bottom: 30px;
        -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
    .lp-home-banner-contianer-inner-video {
        -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        bottom: 0;
    }
}

@media (max-width:479px) {
    .map-view-list-container .grid-view-hide {
        display: none !Important;
    }
}

@media (max-width:400px) {
    .listing-app-view .grid_view .lp-grid-box-contianer {
        width: 100% !Important;
    }
    .listing-app-view .map-view-list-container .lp-grid-desc-container {
        width: calc(100% - 70px);
    }
    .listing-app-view .grid_view .lp-grid-box-bottom-app-view .lp-nearest-distance {
        position: static !important;
    }
    .listing-app-view .dashboard-content .lp-list-view-inner-contianer .col-xs-12 {
        width: 100% !important;
        margin-top: 20px !important;
    }
}

@media (max-width:405px)and (min-width: 340px) {
    .listing-app-view .map-view-list-container .lp-grid-desc-container {
        width: calc(100% - 70px);
    }
}

@media (max-width:768px) {
    .listing-app-view.home .lp-home-banner-contianer {
        height: 410px;
    }
    .location-girds4 .city-title .lp-h3,
    .city-girds4 .category-style3-title-outer .lp-h3 {
        margin-bottom: 20px;
    }
    .city-girds4:hover .category-style3-title-outer .lp-h3,
    .location-girds4:hover .city-title .lp-h3 {
        -webkit-transform: translateY(20px) !important;
        -moz-transform: translateY(20px) !important;
        -o-transform: translateY(20px) !important;
        transform: translateY(20px) !important;
    }
    .sidebar-post-outer {
        margin-top: 30px !important;
    }
    .blog-single-inner-container {
        padding: 0;
    }
    .single-post .page-container-second {
        padding-bottom: 60px;
        padding-top: 20px;
    }
    .blog-content-outer-container {
        margin-bottom: 30px;
    }
    .listing-app-view .listing-second-view .listing-price .price-area .claim-area .phone-icon {
        display: inline;
    }
    .lp-blog-grid-box-description2 .lp-blog-grid-title {
        padding: 0 20px;
    }
    .lp-blog-style2-outer {
        border-right: 1px solid #e3e3e3;
        border-bottom-left-radius: 0;
        border-top-right-radius: 8px;
    }
    .lp-blog-grid-box-container-first-post {
        max-height: 100%;
        overflow: visible;
    }
    .lp-blog-grid-box-container-first-post .lp-blog-grid-box-thumb {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .partner-box-inner {
        margin-bottom: 30px;
    }
    .lp-sub-title {
        width: 100%;
    }
    .listing-second-view .claim-area a:last-child {
        display: inline-block !important;
    }
    body.blog .aliceblue {
        padding: 0 20px;
    }
    .lp-tool-tip-content {
        min-width: 170px;
        padding: 8px;
    }
    .lp-tooltip-outer .lp-tool-tip-content .location-filters-wrapper {
        width: auto;
    }
    .preview-section-caption .pull-right,
    .preview-section-caption .pull-left {
        float: none !important;
    }
    .blue-section .form-group .checkbox.form-group {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .blog-social .post-stat .smenu {
        width: 320px!Important;
        padding: 0 !important;
        left: auto !important;
        right: 0!important;
    }
    .page-heading {
        height: 170px;
    }
    .blog-single-inner-container .comments-description,
    .blog-single-inner-container .comments-thumb {
        text-align: left !important;
    }
    .blog-heading-inner-container {
        bottom: -40px;
    }
}

@media (max-width:1024px)and (min-width: 769px) {
    .blog-single-inner-container {
        padding: 0;
    }
    .single-post .page-container-second {
        padding-bottom: 0;
        padding-top: 30px;
    }
    .blog-content-outer-container {
        margin-bottom: 30px;
    }
    .lp-blog-style2-outer {
        border-right: 1px solid #e3e3e3;
        border-bottom-left-radius: 0;
        border-top-right-radius: 8px;
    }
    .lp-blog-grid-box-container-first-post {
        max-height: 100%;
    }
    .lp-blog-grid-box-container-first-post .lp-blog-grid-box-thumb {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .lp-blog-grid-box-description2 .lp-blog-grid-title {
        padding: 0 20px;
    }
    .partner-box-inner {
        margin-bottom: 30px;
    }
    .lp-sub-title {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .col-md-4.sidebar-top0 {
        position: static;
        margin-top: 80px;
    }
    .col-md-8.min-height-class {
        min-height: initial !important;
    }
    .lp-event-outer-container {
        background: #fff;
    }
}

@media (max-width: 320px) {
    .listing-app-view .list_view .grid-view-hide {
        display: none;
    }
    .listing-app-view-bar .right-icons {
        width: 88.666667% !important;
    }
}

@media (max-width: 573px) {
    #distance_range_div {
        margin-top: 20px
    }
    .lp-filter-inner-wrapper .search-filters>ul>li {
        margin-right: 5px !Important;
        position: relative;
    }
    .lp-tool-tip-content .currency-signs {
        width: 170px !important;
    }
    .post-with-map-container .search-row.margin-top-subtract-35 .form-inline .form-group {
        position: relative;
    }
    .lp-tooltip-outer-responsive {
        max-width: 170px;
        float: left;
    }
    .lp-show-on-mobile {
        display: block;
    }
    .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer {
        width: 124px;
    }
    .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li a {
        margin-bottom: 10px;
    }
    .sortbyrated-outer .sortbyrated ul li:last-child a {
        margin-bottom: 0;
    }
}

@media (max-width:979px)and (min-width: 574px) {
    .lp-filter-inner-wrapper .search-filters>ul>li {
        margin-right: 5px !Important;
    }
    .lp-show-on-mobile {
        display: block;
    }
    .post-with-map-container .search-row.margin-top-subtract-35 .form-inline .form-group {
        position: relative;
    }
}

@media screen and (max-height: 575px) {
    #rc-imageselect,
    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}


/*end responsive by shoaib*/


/*start responsive by shoaib new*/

@media (max-width:768px)and (min-width: 320px) {
    .lp-header-with-bigmenu .lp-menu-bar .lp-logo-container {
        float: right !important;
    }
    .lp-header-with-bigmenu .navbar {
        display: none;
    }
    .lp-header-with-bigmenu .lp-menu-bar .mobile-nav-icon {
        position: absolute;
        top: 50%;
        left: 0;
        padding: 0;
        transform: translateY(-50%);
    }
    .lp-header-with-bigmenu {
        padding: 15px;
    }
    .lp-header-with-bigmenu .lp-logo {
        display: block;
    }
    .lp-detail-page-template-style3 .features.list-style-none>li {
        width: 100%;
    }
    .lp-right-content-box .extra-fields>ul>li strong {
        width: 40%;
    }
    .lp-right-content-box {
        width: 100%;
    }
    .lp-right-content-box .lp-social-box ul li strong {
        border: 0;
    }
    .lp-left-title h2 {
        margin-left: 10px;
    }
    .lp-right-content-box .extra-fields {
        margin-top: 30px;
    }
    .lp-left-title {
        float: none !important;
        margin-bottom: 20px !important;
    }
    .lp-left-filter {
        width: 100%;
        height: auto!important;
    }
    .lp-left-filter .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        border: 0 !important;
    }
    .lp-left-filter .header-filter .ui-widget {
        margin-top: 0;
    }
    .lp-left-filter form #cities {
        border-radius: 35px!important;
    }
    .lp-left-filter .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        position: absolute !important;
    }
    .lp-left-filter .header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
        z-index: 0;
        display: none;
    }
    .listing-with-sidebar .search-row .lp-features-filter ul>li {
        width: 50%;
        margin: 0!important;
        padding: 0;
    }
    .lp-left-filter .sidemap-container.pull-right.sidemap-fixed.open-map {
        display: block;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 9;
    }
    .lp-center-content {
        width: 100%;
    }
    .lp-grid-style3-outer-hide,
    .lp-center-content .listing-view-layout {
        display: none !important;
    }
    .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 100%;
        margin-bottom: 10px;
    }
    .lp-left-filter .search-row .form-group.margin-right-0 {
        margin-top: 0;
    }
    .lp-right-map .sidemap-fixed {
        display: none;
    }
    .lp-right-map .open-map {
        z-index: 9;
        left: 0;
        width: 100%!important;
        top: 0;
        display: block;
    }
    .lp-left-filter .lp-tooltip-div.active {
        display: none;
        z-index: 0;
    }
    .lp-left-filter .lp-tooltip-outer-responsive {
        max-width: 220px;
        float: left;
    }
    .lp-left-filter .search-filters-sortby .lp-tooltip-div.active {
        display: block;
    }
}

@media (max-width:1024px)and (min-width: 769px) {
    .lp-left-title {
        float: none !important;
        margin-bottom: 20px !important;
    }
    .lp-left-title h2 {
        margin-left: 10px;
    }
    .lp-right-content-box {
        width: 100%;
    }
    .lp-header-with-bigmenu .lp-menu-bar .lp-logo-container {}
    .lp-header-with-bigmenu .navbar {
        display: none;
    }
    .lp-header-with-bigmenu .lp-menu-bar .mobile-nav-icon {
        position: absolute;
        top: 50%;
        left: 0;
        padding: 0;
        transform: translateY(-50%);
    }
    .lp-header-with-bigmenu {}
    .lp-header-with-bigmenu .lp-logo {
        display: block;
        line-height: 96px;
    }
    .listing-with-sidebar .open-img-view,
    .lp-left-filter .open-map-view {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .lp-header-with-bigmenu .header-right-panel {
        padding-top: 0 !important;
    }
    .listing-with-sidebar .open-img-view,
    .lp-left-filter .open-map-view {
        display: none !important;
    }
}


/*end responsive by shoaib new*/

@media (max-width:1250px) {
    .lp-publish-listing .lp-list-view-inner-contianer .col-md-4 {
        width: 100% !important;
    }
}

@media (max-width:1350px) {
    .lp-listing-pending-tab .lp-list-view-content-bottom-outer {
        position: relative !important;
        left: 10px !important;
        width: 100% !important;
        margin-bottom: 22px;
        top: 20px !important;
    }
    .lp-listing-pending-tab .col-md-5.col-xs-12.padding-0 {
        width: 100% !important;
        background-color: transparent;
    }
    .dashboard-content .lp-listing-pending-tab .lp-rigt-icons.lp-list-view-content-bottom .lp-list-view-edit.list-style-none {
        float: left !Important;
        padding: 0 !important;
    }
}

@media (max-width:1350px)and (min-width: 769px) {
    .lp-list-view-content-bottom-expire-outer {
        position: relative !important;
        right: 10px !important;
        width: 100% !important;
        margin-bottom: 22px;
    }
    .lp-listing-pending-tab .col-md-4.col-xs-12.padding-0 {
        width: 100% !important;
    }
}

@media (width:1024px) {
    .open-map a.open-img-view {
        display: block;
        z-index: 99;
        opacity: 1 !important;
    }
    .post-with-map-container {
        float: left !important;
    }
    .archive .ss {
        display: none !important;
    }
    .listing-app-view .review-post figcaption {
        width: 100% !important;
    }
    .listing-app-view .login-form-pop-tabs a {
        padding: 15px;
    }
}

@media (width:1366px) {
    .open-map a.open-img-view {
        display: block;
        z-index: 99;
        opacity: 1 !important;
    }
    .post-with-map-container {
        float: left !important;
    }
    .listing-app-view .review-post figcaption {
        width: 100% !important;
    }
    .listing-app-view .login-form-pop-tabs a {
        padding: 15px;
    }
}

@media (width:768px) {
    .listing-app-view .login-form-pop-tabs a {
        padding: 15px;
    }
}

@media (width:1024px) {
    .listing-app-view .pos-relative .lp-home-banner-contianer {
        height: 400px !important;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        width: 46%;
    }
    .home .list_view {
        width: auto;
    }
    .post-with-map-container {
        float: none!important;
    }
}

@media (width:1366px) {
    .listing-app-view .pos-relative .lp-home-banner-contianer {
        height: 400px !important;
    }
}


/*
@media (max-width:1366px)and (min-width: 730px){
	change it form 1366 to 1024 below query
}*/

@media (max-width:1024px)and (min-width: 730px) {
    .app-view-home .lp-home-categoires {
        position: inherit!important;
        transform: translateY(0%)!important;
        margin-top: 30px!important;
    }
    .listing-app-view .pos-relative .lp-home-banner-contianer {
        height: 400px !important;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 43%;
    }
    .lp-header-overlay {
        z-index: 1;
    }
    .listing-app-view .footer-app-menu {
        z-index: 9;
    }
    .listing-app-view.home .lp-section-title-container h1 {
        text-align: center !important;
    }
}

@media (max-width:1366px)and (min-width: 1024px) {
    .app-view-header .lp-menu-bar .lp-logo-container {
        width: 50%;
    }
    .app-view-header .lp-menu-bar .mobile-nav-icon {
        display: block;
        float: left;
    }
    .listing-app-view .grid_view .lp-grid-box-thumb img {
        width: 100%;
    }
    .lp-sidebar .lp-widget#lp-sidebar-video {
        width: 100% !important;
    }
    .lp-sidebar .lp-widget#lp-sidebar-video iframe {
        width: 100% !important;
    }
}

@media (max-width: 1024px) {
    .lp-sidebar .lp-widget#lp-sidebar-video {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .lp-sidebar .lp-widget#lp-sidebar-video iframe {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .dashboard-content .availableprice_options .checkboxx input[type="checkbox"] {
        height: 100%;
    }
}

@media (max-width:666px)and (min-width: 481px) {
    .lp-search-bar .form-group.lp-suggested-search,
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input,
    .lp-home-banner-contianer-inner div.lp-search-bar div.form-group.lp-location-search {
        width: 100% !important;
        border-radius: 0;
    }
    .lp-home-banner-contianer-inner div.lp-search-bar div.form-group.lp-location-search {
        margin: 10px 0;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group div.lp-search-bar-right {
        width: 100% !important;
    }
    .lp-search-bar-right .lp-search-icon {
        left: 40%;
        margin-left: -14px;
    }
}


/*-----------------------------------------New Responsive start---------------------------------------*/

@media(min-width:320px) and (max-width:1020px) {
    .price-plan-button-v3 .lp-price-free,
    .view_version8 .lp-price-free {
        padding: 12px 50px;
    }
}

@media (max-width:991px) {
    .lp-hide-show-price-features,
    .pricing_plans_v3 .lp-hide-show-price-features {
        left: 0;
    }
    .pricing_plans_v2.pricing_plans_v5,
    .view_version8,
    .pricing_plans_v3 {
        padding-left: 0 !important;
    }
    #lp-submit-form .select2.select2-container {
        z-index: 9;
        margin-bottom: 10px;
    }
    .page-style2-sidebar-wrap.lp-submit-sidebar-sticky .page-style2-sidebar {
        display: none;
    }
    .col-md-8.page-style2-content-wrap {
        padding-right: 15px;
    }
}

@media(min-width: 667px) and (max-width: 767px) {
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view2 .form-group.lp-suggested-search {
        width: 44% !important;
        margin-right: 10px;
    }
    .lp-home-banner-contianer .lp-search-bar-view2 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        height: 55px;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view1.lp-search-bar-view2 .form-group.lp-location-search {
        width: 44% !important;
        margin-right: 5px !important;
    }
    .lp-search-bar-view2 .lp-search-icon {
        top: 15px !important;
    }
}

@media(min-width: 320px) and (max-width: 767px) {
    .lp_hide_general_plans {
        margin-bottom: 40px;
    }
    .icons-banner-cat {
        /*display: block !important;*/
        text-align: center;
        margin: 0 auto !important;
    }
    .lp-price-cats-with-icon li span {
        font-size: 14px;
        letter-spacing: 0;
    }
    .pricing_plans_v2 .lp-price-main {
        margin-bottom: 60px !important;
    }
    .featured-plan .lp-price-main,
    .featured-plan .view_version_3 {
        -webkit-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1) !important;
        -moz-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1) !important;
        box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.1) !important;
    }
    .lp_hori_view_plan_left_section .horizontal_view_list {
        width: 100%;
    }
    .lp-list-form-outer-postion {
        position: initial;
    }
    .lp-list-form-outer-postion .lp-listprc {
        border-top: 1px solid #3b88dd;
        margin-left: 15px;
        margin-right: 15px;
        padding-top: 20px;
    }
    .lp-list-form-outer-postion {
        padding-top: 60px;
    }
    .lp-home-banner-contianer .lp-search-bar-view2 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        height: 55px !important;
        padding-left: 70px !important;
    }
    .lp-search-bar-header .lp-header-search-button .lp-search-bar-right .lp-search-btn {
        padding: 0;
        height: 38px;
        line-height: 38px;
    }
}

@media(min-width: 320px) and (max-width: 666px) {
    .lp-home-banner-contianer .lp-search-bar-view3 .form-group.lp-suggested-search {
        border-radius: 0 !important;
    }
    .lp-search-bar-view3 .lp-search-bar-right .lp-search-btn {
        border-radius: 0 !important;
    }
    .lp-search-bar-view3 .lp-search-bar-right {
        border-radius: 0 !important;
    }
    .lp-search-bar-view2 .lp-search-icon {
        top: 15px !important;
    }
}

@media(min-width: 320px) and (max-width: 480px) {
    .lp-montly-annualy-text span {
        font-size: 14px;
        padding: 0 8px;
    }
    .lp-standerd-exlusiv button {
        padding: 6px 20px;
    }
    .lp_tooltip_text {
        left: 0;
    }
    .outer_switch_month_year {
        width: 260px;
    }
    .view_version_3 .lp-listprc {
        padding-left: 15px !important;
    }
    .pricing_plans_v3 .view_version_3,
    .pricing_plans_v2.pricing_plans_v5 .view_version_2 {
        margin-bottom: 30px;
    }
    .pricing_plans_v2 .lp-price-main {
        margin-bottom: 30px !important;
    }
    .pricing_plans_v2.pricing_plans_v5 .lp-view-all-price-feature .lp-hide-show-price-features {
        top: -40px;
    }
    .pricing_plans_v2 .lp-view-all-price-feature .lp-hide-show-price-features {
        top: -25px;
    }
    .category_custom_dropdown {
        width: 260px;
    }
    .category_custom_dropdown .select2-selection__arrow b::before {
        right: 0;
    }
    .category_custom_dropdown .select2-selection__arrow b::after {
        right: 0;
    }
    .view_version8 .lp-price-main .lp-price-list {
        padding: 15px;
    }
    .view_version8 .tooltip_price_features .lp_tooltip_text2 {
        left: 0;
    }
    .per_user_per_listing_price {
        display: inline-block;
        float: left;
        padding-left: 40px;
        width: 100%;
    }
    .horizontal_view_list {
        padding: 50px 15px;
    }
    .lp-list-form-outer-postion {
        padding-bottom: 40px;
    }
    .lp-horizontial-specific-height {
        min-height: inherit;
    }
    .lp-footer4-copyrights {
        display: inline-block;
        width: 100%;
        padding-top: 0;
    }
    span.copyrights {
        display: inline-block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .footer4-bottom-area ul.footer-menu,
    .footer9-bottom-area ul.footer-menu {
        display: inline-block;
        margin-top: 20px;
    }
    .footer6-bottom-area .footer-social-icons {
        margin-top: 20px;
    }
    .footer-aboutus {
        margin-top: 20px;
    }
    .lp-listing-title .lp-listing-logo img {
        max-width: initial !important;
        max-height: initial !important;
    }
    .lp-listing-title .lp-listing-name {
        width: 60% !important;
        margin-left: 0 !important;
    }
    .lp-listing-top-title-header .lp-listing-title .lp-listing-name {
        margin-left: 0 !important;
    }
    .lp-listing-title .lp-listing-title-rating {
        width: 100% !important;
        padding-left: 0 !important;
        margin-bottom: 15px !important;
    }
    .lp-listing-top-title-header .lp-listing-action-btns.buttons-in-header {
        margin-bottom: 20px;
    }
    /*.lp-listing-top-title-header .col-md-4.sidebar-top0 .lp-today-timing{
		padding-bottom: 30px !important;
	}*/
    .col-md-8.min-height-class {
        margin-top: 20px;
    }
    .submit_new_style.submit_new_style-outer .col-md-12.col-sm-12 {
        padding-left: 0;
        padding-right: 0;
    }
    .submit_new_style.submit_new_style-outer .col-md-12.col-sm-12 #lp-submit-form .white-section {
        padding: 30px 15px;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view2 .form-group.lp-suggested-search {
        margin-bottom: 10px !important;
    }
    .lp-search-chnage-styles-st .header-filter .lp-search-btn-header.pos-relative {
        height: 38px !important;
        line-height: 38px;
    }
    .lp-search-chnage-styles-st .header-filter .lp-search-icon {
        top: -5px;
    }
    .lp-listing-features ul li {
        width: 100% !important;
    }
}

@media (max-width:991px) and (min-width: 320px) {
    .lp-search-bar-view1 .lp-suggested-search .input-group-addon.lp-border {
        background: none;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        background: none;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .lp-search-bar-view1 .lp-search-bar-right .lp-search-btn {
        padding: 0 30px 0 40px;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-location-search {
        margin-right: 10px;
    }
}

@media (max-width: 1024px) and (min-width: 981px) {
    .search-view-move-down .lp-search-bar-view3 .form-group.lp-location-search {
        margin-right: 0;
    }
    .search-view-move-down .lp-search-bar-view3 .form-group.pull-right .lp-search-bar-right .lp-search-icon {
        left: 50%;
        margin-left: -9.5px;
        top: 17px;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.pull-right .lp-search-bar-right .lp-search-icon {
        left: 50%;
        margin-left: -9.5px;
        top: 17px;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.lp-location-search {
        margin-right: 2px;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 {
        text-align: center;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-location-search {
        width: 36%;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search {
        width: 36%;
    }
    .header-right-panel.clearfix.col-md-10.col-sm-10.col-xs-12 {
        padding-top: 0 !important;
    }
    .lp-header-search-form .lp-suggested-search {
        width: initial !important;
    }
    .lp-header-search .lp-search-form-what input {
        padding-left: 50px !important;
    }
    /*.hidden-sm{
    	display: block !important;
    }*/
    .lp-search-bar .form-inline {
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    .col-md-5.lp-menu-container.col-xs-12 {
        width: 40%;
    }
    .header-right-panel {
        width: 40%;
        float: right;
    }
    .col-md-2.col-xs-6.lp-logo-container {
        width: 20% !important;
    }
    .lp-search-bar-view2 .lp-search-icon {
        left: 18px !important;
        top: 18px !important;
    }
    .lp-search-bar-view1 .lp-search-bar-right .lp-search-btn {
        padding: 0 30px 0 25px !important;
    }
}

@media (max-width: 980px) and (min-width: 320px) {
    .col-md-5.lp-menu-container.col-xs-12 {
        display: block;
        background: none;
    }
    .left-section-menu-outer.lp-bottom-border-se {
        display: none;
    }
    .header-right-panel.clearfix.col-md-5.col-sm-10.col-xs-12 {
        display: none;
    }
    .col-md-5.lp-menu-container.col-xs-12 .mobile-nav-icon {
        top: 10px;
    }
    .col-md-2.col-xs-6.lp-logo-container .lp-logo.lp-logo-st {
        margin-top: 0;
    }
}

@media (max-width: 980px) and (min-width: 768px) {
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-suggested-search {
        display: inline-block;
        float: left;
        width: 45% !important;
    }
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-location-search {
        width: 45% !important;
        margin-right: 0;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.pull-right .lp-search-bar-right {
        margin-left: 0;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.pull-right .lp-search-bar-right .lp-search-icon {
        left: 50%;
        margin-left: -9.5px;
        top: 17px;
    }
    .lp-search-bar-view2 .lp-search-bar-right .lp-search-btn {
        padding: 10px 25px !important;
    }
    .lp-search-bar-view3 .lp-search-bar-right .lp-search-btn {
        padding: 10px 40px;
        height: 55px;
        line-height: 55px;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100%;
        line-height: 60px;
        height: 60px;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.lp-suggested-search {
        display: inline-block;
        float: left;
        width: 44% !important;
    }
    .lp-home-banner-contianer .search-view-move-down .lp-search-bar-view2 .form-group.lp-location-search {
        width: 44% !important;
        margin-right: 0;
        margin-left: -2px;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search {
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100% !important;
        height: 55px;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view1 .form-group.lp-location-search {
        width: 37% !important;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view1 .form-group.lp-suggested-search {
        width: 37% !important;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view2 .form-group.lp-suggested-search {
        width: 45% !important;
        margin-right: 10px;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view2 .form-group.lp-location-search {
        width: 45% !important;
        margin-right: 10px;
    }
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view2 .form-group .lp-search-bar-right {
        margin-left: -10px;
    }
    /*.hidden-sm{
    	display: block !important;
    }*/
    .lp-header-search-form .lp-suggested-search {
        width: 60% !important;
        float: left;
        background: #fff;
    }
    .lp-header-search .lp-search-form-what input {
        padding-left: 65px !important;
    }
    .lp-search-bar .form-inline {
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    .lp-header-search-form .select-filter {
        margin-bottom: 15px;
        margin-right: 0;
    }
    .lp-home-banner-contianer .lp-search-bar .lp-suggested-search .input-group-addon.lp-border {
        height: 44px;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100% !important;
    }
    .lp-home-banner-contianer .lp-search-bar .form-group.lp-suggested-search {
        display: inline-block;
        float: left;
        width: 44% !important;
    }
    .archive-search .col-md-12 .lp-header-search-form {
        width: 400px !important;
    }
    .content-white-area .single-inner-container.single_listing .col-md-8.col-sm-8.col-xs-12 {
        width: 100%;
    }
    .content-white-area .single-inner-container.single_listing .col-md-4.col-sm-4.col-xs-12 {
        width: 100%;
        margin-top: 30px;
    }
    .contact-form.quickform form.form-horizontal .form-group.pos-relative .lp-search-icon {
        top: 12px;
        left: 44%;
    }
    .listing-second-view .claim-area a:last-child {
        display: block !important;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-location-search {
        margin-right: 0;
    }
    .lp-home-banner-contianer .lp-search-bar-view2 .form-group.lp-location-search {
        margin-right: 1px !important;
    }
    .lp-home-banner-contianer .lp-search-bar-view3 .form-group.lp-location-search {
        margin-right: 0;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group div.lp-search-bar-right {
        width: auto;
    }
    .new-banner-view-category .lp-home-categoires li {
        margin-right: 13px;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search {
        width: 36% !important;
        display: inline-block;
        float: left;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        width: 100%;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar-view1 .form-group.lp-location-search {
        width: 36% !important;
        margin-right: 20px;
    }
    .search-view-move-down .lp-search-bar-view3 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        height: 60px;
        line-height: 60px;
    }
    /*.hidden-sm{
    	display: block !important;
    }*/
    .lp-header-search-form .form-group.lp-suggested-search {
        width: 43% !important;
        float: left !important;
        background: #fff;
    }
    .lp-header-search-form div.form-group.lp-location-search {
        width: 43% !important;
    }
    .lp-header-search-form .lp-search-bar-right {
        width: 14% !important;
    }
    .lp-header-search-form div.form-group.lp-location-search .ui-widget.border-dropdown {
        width: 100%;
    }
    .lp-header-search .lp-search-form-what input {
        padding-left: 60px !important;
        min-width: initial !important;
        width: 100% !important;
        float: left;
    }
    .lp-header-search .lp-search-icon {
        left: 50% !important;
        margin-left: -14px;
    }
    span.copyrights {
        display: inline-block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .archive-search .col-md-12 .lp-header-search-form {
        width: 100% !important;
    }
    .lp-header-search-form .select-filter {
        width: 100% !important;
        margin: 0;
    }
    .lp-header-search.archive-search .form-inline .form-group {
        width: 100% !important;
    }
    .lp-header-search-form .select-filter {
        margin-bottom: 15px;
        margin-right: 0;
    }
    .post-meta-left-box {
        margin-bottom: 10px;
    }
    .content-white-area .single-inner-container.single_listing .col-md-4.col-sm-4.col-xs-12 {
        margin-top: 30px;
    }
    .submit_new_style.submit_new_style-outer {
        padding: 35px 0 90px !important;
    }
    .page-style2-content-wrap .form-group .lp-coordinates {
        position: static;
        display: inline-block;
        float: right;
    }
}

@media (max-width: 768px) and (min-width: 320px) {
    #response_not_found {
        padding-bottom: 30px;
    }
    .lp-header-search .lp-header-search-form form.form-inline {
        overflow: visible !important;
    }
    .lp-header-search-form .select-filter {
        z-index: 999;
    }
    .lp-section-detail-page .listing-page-sidebar .lp-listing-price-range .claim-area {
        float: none;
    }
}

@media (max-width: 667px) and (min-width: 481px) {
    .search-view-move-down .lp-search-bar-view3 .form-group.pull-right .lp-search-bar-right {
        margin-top: 0;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.pull-right .lp-search-bar-right {
        margin-top: 0;
    }
    .lp-home-banner-contianer .search-view-move-down .lp-search-bar-view2 .form-group.lp-location-search {
        width: 46% !important;
        margin-right: 0;
    }
    .search-view-move-down .lp-search-bar-view2 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        height: 60px;
        line-height: 60px;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar-view1 .form-inline .form-group.pull-right {
        float: none !important;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar-view3 .form-inline .form-group.pull-right {
        margin-left: 0 !important;
    }
    .banner-view-cat-tranparent {
        top: 45%;
    }
}

@media (max-width: 767px) and (min-width: 320px) {
    .search-view-move-down {
        bottom: 0;
    }
    .lp-search-bar-view2 .lp-search-icon {
        left: 50% !important;
        margin-left: -9.5px;
        top: 20px;
    }
    .lp-home-banner-contianer .lp-search-bar-view1 .lp-suggested-search .input-group-addon.lp-border {
        line-height: 60px;
    }
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        background: #fff;
        width: 100%;
    }
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-suggested-search {
        display: inline-block;
        float: left;
        width: 46% !important;
        box-shadow: none;
    }
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-location-search {
        width: 46% !important;
        box-shadow: none;
    }
    .banner-view-cat-tranparent-category .lp-home-categoires li a {
        background: rgba(0, 0, 0, 0.7);
    }
    .lp-home-banner-contianer .lp-search-bar .lp-suggested-search .input-group-addon.lp-border {
        height: 44px;
    }
}

@media (max-width: 480px) and (min-width: 320px) {
    .lp-home-banner-contianer-inner-new {
        position: relative;
        top: 25% !important;
    }
    .banner-category-mix-view2,
    .new-banner-view-category {
        margin-top: 0 !important;
    }
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-suggested-search {
        display: inline-block;
        float: left;
        width: 100% !important;
        box-shadow: none;
    }
    .search-view-move-down .lp-search-bar-view1 .form-group.lp-location-search {
        width: 100% !important;
        box-shadow: none;
    }
    .lp-search-bar-view3 .lp-search-bar-right {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .lp-search-bar-view3 .form-group.pull-right {
        margin-left: 0;
    }
    .banner-view-cat-tranparent {
        top: 50%;
    }
    .lp-header-search .lp-header-search-cats ul li {
        width: initial !important;
    }
    .lp-header-search .lp-search-form-what input {
        padding-left: 50px !important;
    }
    .lp-listing .lp-listing-bottom .lp-listing-stars {
        float: none !important;
        display: inline-block;
    }
    .lp-listing .lp-listing-bottom .lp-listing-location {
        display: inline-block;
        text-align: right;
    }
    .archive-search .col-md-12 .lp-header-search-form {
        width: 100% !important;
    }
    .lp-header-search-form .select-filter {
        width: 100% !important;
        margin: 0;
    }
    .lp-header-search.archive-search .form-inline .form-group {
        width: 100% !important;
    }
    .lp-header-search-form .select-filter i.fa-list {
        top: 40% !important;
    }
    .lp-archive-banner .lp-search-bar .lp-location-search .ui-widget>i {
        top: 40% !important;
    }
    .lp-archive-banner .chosen-container.chosen-container-single.chosen-container-single-nosearch {
        width: 100% !important;
    }
    .lp-header-search.archive-search .form-group.lp-location-search .chosen-container.chosen-container-single.chosen-container-single-nosearch {
        width: 100% !important;
    }
    .author-social .status>span {
        margin-left: 20px;
    }
    .page-style2-content-wrap .form-group .lp-coordinates {
        position: static;
        display: inline-block;
    }
    .lp-tagline-submit-tagline {
        padding-left: 15px;
        padding-right: 0;
        float: left;
    }
    .page-style2-content-wrap .hours>a.remove-hours {
        clear: initial;
    }
    .style2-social-list-section .social-row {
        width: 100%;
        display: inline-block;
    }
    /*.page-style2-content-wrap .form-group{
    	padding: 0 15px;
    }*/
    .page-style2-content-wrap .lp-featur-st {
        width: 100%;
    }
    .lp-header-middle .mobile-nav-icon {
        top: 20px !important;
    }
    .lp-activity-thumb .hidden-sm {
        display: none !important;
    }
    .lp-header-search .lp-search-form-what input {
        padding-left: 60px !important;
        min-width: initial !important;
        width: 100% !important;
        float: left;
        background-color: #fff !important;
        border-radius: 2px !important;
    }
    .lp-section-detail-page .listing-page-sidebar .lp-listing-price-range .claim-area {
        float: none;
    }
}

@media (max-width: 481px) {
    .lp-listings.list-style .lp-listing .lp-listing-bottom {
        padding-left: 0;
        width: 100% !important;
        margin-top: 15px !important;
    }
    .lp-listings.list-style .lp-listing .lp-listing-top {
        width: 100%;
    }
    .lp-listing .list-style-cotainer .lp-listing-bottom .lp-listing-location {
        float: left !important;
        text-align: left;
    }
}


/*-----------------------------------------New Responsive end---------------------------------------*/


/*-------------------new responsivefor new dashboard by shoaib-------------------------------------*/

@media (max-width: 991px) {
    .lp-new-dashboard-panel-outer .panel-dash-views .col-md-4.col-xs-12.padding-right-0 {
        padding: 0 15px !important;
    }
    .lp-new-dashboard-panel-outer .panel-dash-views .col-md-4.col-xs-12.padding-left-0 {
        padding: 0 15px !important;
    }
    .lp-new-dashboard-panel-outer .panel-dash-views .col-md-4.col-xs-12.padding-0 {
        padding: 0 15px !important;
    }
    .lp-new-dashboard-panel-outer .panel-recent-activity {
        margin-bottom: 0;
        padding: 0;
    }
    .panel-dash-views {
        margin-bottom: 20px;
    }
}

@media (max-width: 989px) {
    .lp-dashboard-new .dashboard-content div.right-panel {
        width: 100% !important;
    }
    .lp-new-dashboard-panel-outer {
        padding-left: 15px;
    }
    .lp-dashboard-new .panel-recent-activity ul li span>time {
        position: relative;
        bottom: 0;
        right: 0;
    }
    .lp-total-clicks {
        width: 100px;
        height: 100px;
    }
    .lp-dashboard-new .right-panel .col-md-3.padding-right-0 {
        padding-right: 15px !important;
    }
    /*.lp-dashboard-new .panel-dash-views .count-box.green-box{
		padding:10px;
	}*/
    .lp-coupons-form-inner .jFiler-input-dragDrop {
        padding: 32px 25px;
        margin-top: 15px;
    }
    .lp-coupons-form-inner .form-group {
        margin-bottom: 10px !important;
    }
    .lp-coupns-btns {
        margin-top: 10px;
        margin-right: 0;
    }
    .lp-coupons-form-inner .text-right {
        text-align: center;
    }
    .lp-dashboard-new #lp-listings {
        padding-left: 0;
    }
    .lp-dashboard-tabs .panel-heading .nav-tabs li {
        width: auto;
    }
    .lp-dashboard-tabs .panel-heading .nav-tabs li a {
        margin-right: 0;
    }
    .lp-coupns-form .lp-listing-outer-container .text-center {
        text-align: right;
        margin-bottom: 10px;
    }
    .lp-coupon-code-section p {
        margin-top: 10px;
    }
    .lp-coupns-form .lp-listing-outer-container {
        padding: 0 10px;
        margin-bottom: 20px !important;
        border-bottom: 1px solid #e9ebf2 !important;
    }
    .lp-coupns-form .lp-listing-outer-container:last-child {
        margin-bottom: 0 !important;
    }
    .lp-coupns-form .lp-listing-outer-container:last-child {
        border-bottom: 0 solid #e9ebf2 !important;
    }
    .lp-coupns-form .lp-coupon-outer-container .col-md-2:nth-of-type(1):before {
        display: none !important;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-2:before {
        display: none !important;
    }
    .lp-coupns-form .lp-coupon-outer-container .col-md-2:nth-of-type(2):before {
        display: none !important;
    }
    #lp-events .lp-coupon-outer-container .col-md-3:nth-of-type(2),
    #lp-events .lp-coupon-outer-container .col-md-3:nth-of-type(1),
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(3),
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(4) {
        margin-bottom: 10px;
    }
    #lp-events .lp-coupon-outer-container .col-md-3:nth-of-type(2)::before,
    #lp-events .lp-coupon-outer-container .col-md-3:nth-of-type(1)::before,
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(3)::before,
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(4)::before,
    #lp-menus .lp-menu-container-outer .col-md-4:nth-of-type(1)::before,
    #lp-menus .lp-menu-container-outer .col-md-2:nth-of-type(2)::before,
    #lp-menus .lp-menu-container-outer .col-md-2:nth-of-type(3)::before,
    #lp-menus .lp-menu-container-outer .col-md-4:nth-of-type(4)::before {
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    #lp-menus .lp-menu-container-outer .col-md-2:nth-of-type(2),
    #lp-menus .lp-menu-container-outer .col-md-2:nth-of-type(3),
    #lp-menus .lp-menu-container-outer .col-md-4:nth-of-type(4) {
        margin-bottom: 10px;
    }
    #lp-menus .lp-menu-container-outer .col-md-4:nth-of-type(1)::before {
        content: attr(data-content) !important;
    }
    #lp-menus .lp-menu-container-outer .col-md-4:nth-of-type(4)::before {
        content: attr(data-content) !important;
        margin-bottom: 5px !important;
    }
    #lp-menus .lp-menu-container-outer .col-md-2:nth-of-type(2)::before {
        content: attr(data-content) !important;
        margin-bottom: 5px !important;
    }
    #lp-menus .lp-menu-container-outer .col-md-2:nth-of-type(3)::before {
        content: attr(data-content) !important;
        margin-bottom: 5px !important;
    }
    #lp-menus .lp-main-title {
        display: none;
    }
    #lp-events .lp-coupon-outer-container .col-md-3:nth-of-type(1)::before {
        content: attr(data-content) !important;
    }
    #lp-events .lp-coupon-outer-container .col-md-3:nth-of-type(2)::before {
        content: attr(data-content) !important;
    }
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(3)::before {
        content: attr(data-content) !important;
    }
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(4)::before {
        content: attr(data-content) !important;
    }
    #lp-events .lp-coupon-outer-container .col-md-2:nth-of-type(5)::before {
        content: attr(data-content) !important;
    }
    #lp-events .lp-coupon-outer-container .lp-deal-title::before {
        content: none !important;
    }
    #lp-announcement-form .lp-coupon-outer-container .lp-deal-title::before {
        content: none !important;
    }
    .lp-coupon-outer-container .lp-deal-title::before {
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    .lp-coupon-outer-container .lp-deal-title::before {
        content: attr(data-content) !important;
    }
    .lp-manage-types-group .lp-coupon-outer-container .lp-deal-title::before {
        content: attr(data-content) !important;
    }
    .lp-manage-types-group .lp-coupon-outer-container .lp-deal-title p {
        display: inline-block;
        float: left;
    }
    .lp-manage-types-group .lp-listing-outer-container .col-md-1.text-center.maring-top8 {
        text-align: right;
    }
    .lp-coupon-outer-container .lp-coupon-code-section::before {
        content: attr(data-content) !important;
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    .lp-coupns-form .lp-coupon-outer-container .col-md-2:nth-of-type(3)::before {
        content: attr(data-content) !important;
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    .lp-coupns-form .lp-coupon-outer-container .col-md-2:nth-of-type(4)::before {
        content: attr(data-content) !important;
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    .lp-coupns-form .lp-coupon-outer-container .col-md-2:nth-of-type(5):before {
        content: attr(data-content) !important;
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    .lp-coupns-form .lp-coupon-outer-container .col-md-2:nth-of-type(6):before {
        content: attr(data-content) !important;
        font-weight: 400 !important;
        font-size: 13px !important;
        background: #b3c0ce !important;
        width: calc(100% - -30px) !important;
        display: inline-block !important;
        padding: 5px 15px !important;
        color: #fff !important;
        margin: 0 -15px !important;
    }
    .lp-coupns-form .lp-main-title {
        display: none;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3,
    .lp-new-packages .lp-listing-outer-container .col-md-2 {
        text-align: right;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(1)::before,
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(2)::before,
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(3)::before,
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(4)::before {
        font-weight: 400;
        font-size: 13px;
        background: #b3c0ce;
        width: calc(100% - -30px);
        display: inline-block;
        padding: 5px 15px;
        color: #fff;
        margin: 0 -15px;
        margin-bottom: 10px;
        text-align: left;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(1)::before {
        content: attr(data-content);
        margin-top: 10px;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(2)::before {
        content: attr(data-content);
        margin-top: 10px;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(3)::before {
        content: attr(data-content);
        margin-top: 10px;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(4)::before {
        content: attr(data-content);
        margin-top: 10px;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(1),
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(2),
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(3),
    .lp-new-packages .lp-listing-outer-container .col-md-3:nth-of-type(4) {
        text-align: left;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-3.text-right .lp-invoice-price a {
        float: left;
    }
    .lp-new-packages .lp-listing-outer-container .col-md-2 .lp-invoice-price:before {
        content: "Expire On.";
        position: absolute;
        left: 0;
        font-weight: 600;
        font-size: 13px;
        top: 50%;
        transform: translateY(-50%);
    }
    .lp-new-packages .lp-listing-outer-container .col-md-2:nth-child(2) .lp-invoice-date:before {
        content: "Trans Id.";
        position: absolute;
        left: 0;
        font-weight: 600;
        font-size: 13px;
        top: 50%;
        transform: translateY(-50%);
    }
    .lp-new-packages .lp-listing-outer-container .col-md-2:nth-child(3) .lp-invoice-date:before {
        content: "Trans Date.";
        position: absolute;
        left: 0;
        font-weight: 600;
        font-size: 13px;
        top: 50%;
        transform: translateY(-50%);
    }
    .lp-new-packages .lp-listing-outer-container {
        padding-left: 10px;
        border-bottom: 1px solid #e9ebf2 !important;
    }
    .lp-new-packages .lp-listing-outer-container:last-child {
        border-bottom: 0 solid #e9ebf2 !important;
    }
    .lp-plane-btn a {
        width: 100px;
    }
    .lp-dashboard-new #lp-listings .lp-listing-outer-container .col-md-6::before,
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-3::before,
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-7::before,
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-2::before {
        font-weight: 400;
        font-size: 13px;
        background: #b3c0ce;
        width: calc(100% - -30px);
        display: inline-block;
        padding: 5px 15px;
        color: #fff;
        margin: 0 -15px;
        margin-bottom: 10px;
    }
    .lp-dashboard-new #lp-listings .lp-listing-outer-container .col-md-6::before,
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-3::before {
        content: attr(data-content);
    }
    .lp-dashboard-new #lp-listings.lp-saved-dash .lp-listing-outer-container .col-md-4::before {
        content: attr(data-content);
    }
    .lp-dashboard-new #lp-listings.lp-saved-dash .lp-listing-outer-container .col-md-2::before {
        content: none;
    }
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-7::before {
        content: attr(data-content);
    }
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-2::before {
        content: attr(data-content);
        text-align: left;
    }
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-3,
    .lp-dashboard-new #lp-announcement-form .lp-listing-outer-container .col-md-7 {
        margin-bottom: 10px;
    }
    .lp-dashboard-new #lp-announcement-form .lp-announcement-title p,
    .lp-dashboard-new #lp-announcement-form .lp-deal-title p {
        margin-top: 0;
    }
    .lp-dashboard-new #lp-listings .lp-listing-outer-container .col-md-2:before {
        content: attr(data-content);
        font-weight: 400;
        font-size: 13px;
        background: #b3c0ce;
        width: calc(100% - -30px);
        display: inline-block;
        padding: 5px 15px;
        color: #fff;
        margin: 0 -15px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .lp-dashboard-new #lp-listings .lp-listing-outer-container .col-md-4:before {
        content: attr(data-content);
        font-weight: 400;
        font-size: 13px;
        background: #b3c0ce;
        width: calc(100% - -30px);
        display: inline-block;
        padding: 5px 15px;
        color: #fff;
        margin: 0 -15px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .lp-dashboard-new #lp-listings .lp-listing-outer-container:last-child {
        margin-bottom: 0;
        border-bottom: 0 solid #fafbfb;
    }
    .lp-new-invoices .lp-listing-outer-container {
        padding-left: 10px;
    }
    .lp-new-invoices .lp-listing-outer-container .col-md-3 {
        text-align: left;
    }
    .lp-new-invoices .lp-listing-outer-container .col-md-3:first-child::before,
    .lp-new-invoices .lp-listing-outer-container .col-md-3:nth-child(2)::before,
    .lp-dashboard-new .lp-new-invoices .lp-listing-outer-container .col-md-6::before {
        font-weight: 400;
        font-size: 13px;
        background: #b3c0ce;
        width: calc(100% - -30px);
        display: inline-block;
        padding: 5px 15px;
        color: #fff;
        margin: 0 -15px;
        margin-bottom: 10px;
        margin-top: 10px;
        text-align: left;
    }
    .lp-new-invoices .lp-listing-outer-container .col-md-3:first-child::before {
        content: attr(data-content);
    }
    .lp-new-invoices .lp-listing-outer-container .col-md-3:nth-child(2)::before {
        content: attr(data-content);
    }
    .lp-dashboard-new .lp-new-invoices .lp-listing-outer-container .col-md-6::before {
        content: attr(data-content) !important;
        margin-top: 10px !important;
    }
    .lp-new-invoices .lp-listing-outer-container .col-md-3:first-child,
    .lp-new-invoices .lp-listing-outer-container .col-md-3:nth-child(2) {
        text-align: left;
    }
    .lp-dashboard-new .lp-new-invoices .lp-listing-outer-container .col-md-6 .lp-invoice-price p {
        display: block;
    }
    .lp-dashboard-new .lp-new-invoices .lp-listing-outer-container {
        margin-bottom: 10px !important;
        border-bottom: 1px solid #e9ebf2 !important;
    }
    .lp-dashboard-new .lp-new-invoices .lp-listing-outer-container:last-child {
        margin-bottom: 0 !important;
        border-bottom: 0 solid #e9ebf2 !important;
    }
    #lp-listings .lp-main-title {
        display: none;
    }
    #lp-announcement-form .lp-main-title {
        display: none;
    }
    #inbox .lp-inbox-outer {
        min-height: unset;
    }
    #menu-form-toggle .lp-menu-form-inner .col-sm-8.padding-left-0 {
        padding-left: 15px !important;
    }
    .lp-menu-right-outer-content {
        transform: initial;
    }
    .blank-right-side {
        text-align: center;
    }
    .lp-update-profile {
        padding-right: 15px;
    }
    .form-group.submit-images.lp-review-images>input[type="file"] {
        width: auto !important;
    }
    .listing-view-layout>ul li {
        margin-left: 6px;
    }
    .lp_add_more_filter {
        margin-right: 5px;
    }
    .outer_all_page_overflow {
        width: 100%;
    }
    .outer_filter_show_result_cancel {
        width: 97%;
        right: 10px;
        left: initial;
    }
    .lp-list-page-grid .clearfix {
        display: block !important;
    }
    .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right {
        width: 100% !important;
        margin-left: 2px;
        margin-top: 15px;
    }
    .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right .lp-search-icon {
        left: 50%;
        margin-left: -12px;
        top: 6px;
    }
    /*.col-md-10 .col-md-4 .lp-view-all-price-feature, .page-inner-container .col-md-4 .lp-view-all-price-feature {*/
    /*display: block;*/
    /*float: none;*/
    /*width: 100%;*/
    /*}*/
}

@media (max-width: 767px) and (min-width: 481px) {
    .lp-dashboard-new .notices-area .notice .notice-text {
        padding-left: 60px;
    }
    .lp-contact-support-outer {
        padding: 0 12px !important;
    }
    .lp-dashboard-panel-outer .notices-area .notice a.close {
        right: 5px;
    }
    #lp-announcement-form .lp-main-title .col-md-2 p {
        text-align: left;
        margin-left: 0;
    }
    #inbox .lp-inbox-outer {
        min-height: unset;
    }
    #lp-menus .lp-dashboard-tabs {
        padding-left: 15px;
    }
    .lp-all-reviews-outer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .lp-ad-image-section-content ul {
        padding: 0 20px;
    }
    .lp-ad-step-two-inner .col-sm-4 {
        margin-bottom: 10px;
    }
    .right-panel #updateprofile {
        padding-right: 0 !important;
    }
    .right-panel #updateprofile .lp-update-profile-container {
        padding-right: 0 !important;
    }
    .post-row.price-range .list-style-none.post-price-row.line-height-16 {
        display: inline-block;
        width: 100%;
    }
    .lp-listing-discount-outer .post-row.price-range .list-style-none.post-price-row.line-height-16 {
        display: block;
        width: initial;
    }
    .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right {
        width: 100% !important;
        margin-top: 15px;
    }
    .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right .lp-search-icon {
        top: 12px !important;
    }
    .header-right-panel.clearfix.col-md-10.col-sm-10.col-xs-12 .mobile-nav-icon {
        top: -32px;
    }
}

@media (max-width: 480px) and (min-width: 320px) {
    .lp-dashboard-new .notices-area .notice .notice-text {
        padding-left: 60px;
    }
    .lp-add-announcement-form .lp-coupns-btns {
        width: 100%;
        padding: 10px;
        height: auto;
    }
    #lp-announcement-form .lp-add-new-btn {
        margin-bottom: 15px;
        float: left;
        width: 100%;
    }
    #lp-events .lp-add-new-btn,
    .lp-coupns-form .lp-add-new-btn {
        width: 100%;
        margin-top: 10px !important;
    }
    #lp-listings.lp-coupns-form .lp-add-new-btn {
        margin-bottom: 10px;
    }
    .lp-review-sorting {
        padding: 10px;
    }
    .lp-review-sorting h5 {
        font-size: 16px;
    }
    #lp-announcement-form>.lp-dashboard-tabs {
        padding: 0 15px;
    }
    #lp-announcement-form .lp-main-title .col-md-2 p {
        text-align: left;
        margin-left: 0;
    }
    .panel-heading .discount_displayin_wrap {
        margin-top: 0 !important;
    }
    .panel-heading .select2-dash.col-sm-5.pull-right {
        float: left !important;
        padding: 0;
    }
    /*.lp-new-ad-compaign .lp-add-new-btn{
		float: left;
	}*/
    #reviews .lp-all-reviews-outer .lp-review-details {
        padding-left: 0;
        margin-right: 10px;
        margin-top: 10px;
    }
    #reviews .lp-reviewer-name .lp-reviewer-info h4 span {
        display: block;
    }
    #inbox .lp-inbox-outer {
        min-height: unset;
    }
    .lp-dashboard-tabs .lp-coupns-btns {
        width: auto;
        padding: 0 15px;
        height: 32px;
    }
    .blank-left-side h1 {
        font-size: 20px;
    }
    .blank-left-side p {
        font-size: 15px;
        width: auto;
        padding: 0 10px;
    }
    .blank-right-side {
        padding: 100px 0;
    }
    #menu-form-toggle .lp-menu-form-inner .col-sm-8.padding-left-0 {
        padding-left: 15px !important;
    }
    #menu-form-toggle .lp-menu-form-outer.background-white {
        padding: 0;
    }
    #lp-menus .lp-dashboard-tabs {
        padding-left: 15px;
    }
    .lp-all-reviews-outer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .lp-ad-image-section-content ul {
        padding: 0 20px;
    }
    .lp-ad-step-two-inner .col-sm-4 {
        margin-bottom: 10px;
    }
    .right-panel #updateprofile {
        padding-right: 0 !important;
    }
    .right-panel #updateprofile .lp-update-profile-container {
        padding-right: 0 !important;
    }
    .upload-photo.margin-top-25 .file-input.file-upload-btn {
        display: inline-block;
    }
    #lp-menus .lp-add-new-btn {
        margin-bottom: 10px;
        width: 100%;
    }
    .lp-menu-container-outer .ui-widget {
        padding: 0;
    }
    #singlepostmap {
        width: 100%;
    }
    .lp-listing-review .lp-review-left {
        width: 100% !important;
        margin: 0 auto;
        text-align: center !important;
        float: none !important;
    }
    .lp-listing-review .lp-review-right {
        width: 100% !important;
        padding-left: 0 !important;
        margin-top: 10px !important;
    }
    .lp-listing-review .lp-review-right-top {
        margin-bottom: 10px !important;
    }
    .lp-listing-review .lp-review-right-bottom {
        margin-bottom: 10px;
    }
    .reviews-section article.review-post .review-thumbnail {
        margin: 0 auto;
    }
    .open-multi-rate-box {
        right: 5px;
        top: 0;
        left: initial;
    }
    .lp-multi-star-wrap {
        right: 0;
        left: initial !important;
        margin-top: 10px;
    }
    .top-section .review-count {
        width: 100%;
        position: relative;
    }
    .post-row.price-range .list-style-none.post-price-row.line-height-16 {
        display: inline-block;
    }
    .lp-listing-discount-outer .post-row.price-range .list-style-none.post-price-row.line-height-16 {
        display: block;
        width: initial;
        top: -90px;
    }
    .lp-new-grid-bottom-button ul.clearfix li {
        width: 100% !important;
    }
    .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right {
        width: 100% !important;
    }
    .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right .lp-search-icon {
        top: 6px !important;
    }
    .lp-color-header-style .lp-search-header-style .lp-search-bar-header .lp-search-bar-right .lp-search-icon {
        left: 42% !important;
    }
    .search .lp-header-search.archive-search .form-inline .form-group .lp-search-bar-right .lp-search-icon {
        top: 12px !important;
    }
}


/*-----------------------end new responsivefor new dashboard by shoaib------------------------------*/

@media (max-width: 1024px) and (min-width: 981px) {
    .lp-color-header-style .header-right-panel.clearfix.col-md-10.col-sm-10.col-xs-12 {
        width: 78%;
    }
    .lp-color-header-style .lp-search-header-style-outer.lp-customizer-header-inner-wrap {
        position: absolute;
        z-index: 9;
    }
    .lp-color-header-style .lp-search-header-style-outer.lp-customizer-header-inner-wrap .lp-header-search-button .lp-search-bar-right {
        right: 0;
        top: 0;
    }
    .lp-search-bar.lp-search-bar-header .form-group.lp-suggested-search {
        position: initial;
        float: left;
    }
    .lp-search-bar-header .form-group.lp-location-search {
        float: left;
    }
}

@media (max-width: 980px) and (min-width: 768px) {
    .lp-color-header-style .lp-search-header-style-outer.lp-customizer-header-inner-wrap {
        padding-left: 15px;
    }
    .lp-color-header-style .lp-search-header-style-outer.lp-customizer-header-inner-wrap .lp-search-bar-header .form-group.lp-location-search {
        float: none;
    }
    .active-section-header-view {
        left: 100px;
    }
}

@media (max-width: 767px) and (min-width: 320px) {
    .lp-color-header-style .lp-search-header-style-outer.lp-customizer-header-inner-wrap {
        width: 100%;
        padding: 0 0;
        margin: 10px auto 0;
        display: block;
    }
    .lp-color-header-style #click-search-view {
        display: none;
    }
    .lp-color-header-style .lp-search-section-header-view::before {
        content: none;
    }
    .lp-color-header-style .lp-search-section-header-view {
        left: 0;
        position: static;
        width: 100%;
        background: none;
        box-shadow: none;
        border: 0;
    }
    .lp-color-header-style .lp-search-header-style {
        width: 100%;
        padding-right: 5px;
    }
    .lp-color-header-style .lp-search-header-style .lp-search-bar-header .lp-search-bar-right {
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 0;
        background: #fff;
    }
    .lp-color-header-style .lp-search-header-style .lp-search-bar-header .lp-search-bar-right .lp-search-icon {
        left: 50% !important;
        border: 0;
        width: auto;
        height: auto;
        margin-left: -15px;
        top: 7px;
    }
    .lp-search-bar-header .lp-header-search-button .lp-search-bar-right .fa-magnifying-glass.lp-search-icon:hover {
        background: none !important;
        color: initial !important;
    }
    .lp-color-header-style .lp-search-header-style .lp-search-bar-header .form-inline .form-group.lp-suggested-search {
        margin-bottom: 10px;
        background: #fff;
    }
    .lp-color-header-style .lp-search-header-style .lp-search-bar-header div.form-group.lp-location-search {
        width: 100% !important;
        margin-left: 0;
        background: #fff;
        margin-bottom: 10px;
    }
    .lp-color-header-style .lp-search-header-style .lp-search-bar-header input.dropdown_fields {
        width: 100% !important;
        padding-left: 50px !important;
    }
    .lp-search-bar-header .what-placeholder::after {
        content: none;
    }
    .col-md-5.lp-menu-container.col-xs-12 .left-section-menu-outer.lp-center-border {
        display: none;
    }
    .offer-description .lp-copy-code {
        position: relative !important;
        float: right !important;
        margin-top: -50px !important;
    }
    .lp-author-banner .lp-banner-bottom .lp-banner-bottom-left {
        margin-left: 10px !important;
        margin-top: 40px;
        margin-bottom: 10px;
    }
}


/*------------Header4 Menu------*/

@media (max-width: 980px) and (min-width: 320px) {
    .lp-logo-header4-sts {
        float: right;
    }
    .lp-logo-header4-sts .lp-header-logo {
        float: right !important;
    }
    .lp-header-middle .mobile-nav-icon.lp-menu-header4-sts {
        top: 22px;
        float: left !important;
        text-align: left !important;
        left: 0;
    }
    .lp-header-middle .mobile-nav-icon.lp-menu-header4-sts .nav-icon {
        float: left;
    }
    .col-md-5.lp-menu-container.col-xs-12 .left-section-menu-outer {
        display: none;
    }
    .lp-menu-container.col-xs-12.lp-mobnav-set-bars .col-xs-6.mobile-nav-icon {
        top: 70px;
    }
    .lp-search-chnage-styles-st {
        width: 100%;
    }
}


/*-----Start New Changes on 30 auguest----*/

@media (min-width: 320px) and (max-width: 767px) {
    .lp-header-search .container .col-md-12.hidden-xs.hidden-sm {
        display: block !important;
    }
    .lp-category-abs2-inner .hidden-sm.hidden-xs {
        display: none !important;
    }
    .lp-categories-abs2 .lp-category-abs2 {
        padding-left: 0;
        padding-right: 0;
    }
    .lp-listings .listing-slider {
        max-height: initial !important;
    }
    .lp_section_inner {
        background-size: cover;
    }
    .style3 .lp-footer-logo {
        width: 160px;
        margin: 0 auto;
        float: none;
    }
    .style3 .lp-footer-copyrights {
        margin-left: 0;
        float: none;
        margin-top: 0;
    }
    .style3 .footer-menu ul {
        text-align: center;
    }
    .style3 .footer-menu ul li {
        float: none;
    }
    #grid-show-popup {
        width: 100%;
        height: 300px;
    }
    #grid-show-popup .widget-map-click i {
        top: 1px;
        right: 17px;
    }
    #grid-show-popup .grid-show-popup .quickmap {
        height: 270px;
    }
    .lp-header-search.archive-search .form-inline .form-group.lp-location-search {
        float: left !important;
        display: inline-block;
    }
    .lp-sidebar .map-no-btns .v2-map-load {
        margin-top: 20px;
    }
    .lp-section.listing-style4 {
        padding-bottom: 20px;
        padding-top: 10px;
    }
    .siginincontainer .md-close i {
        top: 0;
        right: 0;
    }
    .mm-navbar-top a.userimage {
        margin-top: 0;
    }
    .lp-top-bar-menu ul {
        margin-top: -3px !important;
    }
    .lpl-button {
        font-size: 14px;
        margin-top: 20px;
    }
    .lp-logo-header4-sts .lp-header-nav-btn {
        position: absolute !important;
        right: 150px;
    }
    .col-md-5.col-xs-10.lp-logo-header4-sts {
        padding-right: 0;
    }
    .lp-filter-top-text h4 {
        color: #fff !important;
    }
    .view-on-map {
        float: left;
    }
    .lp-listings.list-style .lp-listing .lp-listing-top {
        width: 100%;
    }
    .lp-listings.list-style .lp-listing .lp-listing-top-thumb {
        max-width: 100% !important;
    }
    .list-style .lp-listing .lp-listing-top-thumb img {
        height: auto;
    }
    .lp-listings.list-style .lp-listing .lp-listing-bottom {
        width: 100% !important;
        margin-top: 6px !important;
        padding-left: 0 !important;
    }
    footer .container .row .clearfix.col-md-3 {
        width: 100% !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .partner-box {
        width: 33.333% !important;
    }
    .lp-activities .lp-activity .lp-activity-thumb img {
        width: 100%;
    }
    .lp-activities .lp-activity.style2 .lp-activity-author-thumb {
        left: 25px !important;
        right: initial !important;
        top: initial !important;
    }
    .lp-activities .lp-activity.style2 .lp-activity-review-writer {
        margin-top: 45px !important;
    }
    .element-inner-button {
        position: static !important;
        margin-bottom: 10px;
        margin-left: 0;
        background: #fff;
    }
    .list-style-cotainer .lp-listing-bottom-left-full .lp-bottom-left-full-outer {
        width: 65%;
    }
    .lp-listing-review .lp-review-right {
        width: 80% !important;
        padding-left: 20px !important;
    }
    .listing-style-3 a.open-map-view {
        top: -62px;
        right: -10px;
        border: 1px solid #a3a3a3;
        background: none;
        color: #a3a3a3;
        border-radius: 50%;
        width: 35px !important;
        height: 35px !important;
        font-size: 14px;
        line-height: 20px !important;
        text-align: center;
    }
    .lp-logo-header4-sts .lp-header-nav-btn {
        right: 165px;
    }
    .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        text-align: left !important;
    }
    .footer-aboutus span {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    #footer-contact-us {
        margin-top: 10px;
    }
    .lp-listing-top-title-header .col-md-4.sidebar-top0 {
        margin-top: 50px !important;
    }
    .lp-listing-top-title-header .slick-initialized .slick-track .slick-slide {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .lp-menu-container.col-xs-12.lp-mobnav-set-bars .col-xs-6.mobile-nav-icon {
        top: 105%;
    }
    #lp-review-text-align {
        display: block;
        margin-bottom: 5px;
    }
    .lp-listing-review .lp-review-right-bottom .review-interesting {
        margin-bottom: 4px !important;
    }
    /*-----Start New Changes on 30 auguest----*/
    .lp-header-search .lp-suggested-search .pos-relative {
        border-radius: 2px;
    }
    .lp-header-search .form-group.lp-suggested-search {
        margin-bottom: 5px;
    }
    .lp-header-search .form-group.lp-location-search .chosen-container.chosen-container-single {
        border-radius: 2px;
    }
    .lp-header-search .form-group .lp-search-bar-right,
    .lp-header-search .lp-search-form-submit {
        border-radius: 2px !important;
    }
    .home .lp-header-search .lp-search-form-submit {
        margin-left: 0 !important;
    }
    .lp-section-title-container .lp-sub-title {
        margin-bottom: 0;
    }
    .grid-style .lp-listing .lp-listing-bottom h4 {
        margin-bottom: 5px;
    }
    .list-style-cotainer .lp-new-grid-bottom-button ul li {
        border-right: 0;
    }
    .grid-style-container .lp-new-grid-bottom-button ul li {
        border-right: 0;
        border-bottom: 1px solid #dedede;
    }
    .lp-listings.grid-style .lp-listing .lp-new-grid-bottom-button ul li {
        border-bottom: 1px solid #dedede;
        border-right: 0;
    }
    .lp-listings.grid-style .lp-listing .lp-new-grid-bottom-button ul li:last-child {
        border-bottom: 0;
    }
    .grid-style-container .lp-new-grid-bottom-button ul li:last-child {
        border-bottom: 0;
    }
    .row.lp-section-content.clearfix .lp-section-title-container .lp-sub-title {
        padding-bottom: 25px;
    }
    .lp-section-content .lp-section-content-container.listingcampaings {
        padding-top: 0;
    }
    .left-heading .lp-section-title-container.text-center h2 {
        margin-left: 0 !important;
        line-height: 30px !important;
        margin-top: 10px;
    }
    .lp_section_inner .lp-section-title-container.text-center h2 {
        margin-top: 10px;
    }
    .left-heading .lp-section-title-container.text-center .lp-sub-title {
        margin-left: 0 !important;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0 !important;
        line-height: 22px;
    }
    .lp-header-search .lp-header-search-cats ul li {
        text-align: center !important;
        float: initial !important;
    }
    .lp-listings .listing-slider .lp-new-grid-bottom-button {
        display: none;
    }
    .lp-listings .listing-slider .lp-listing .lp-listing-bottom {
        height: auto !important;
        min-height: 100px !important;
    }
    .lp-listings .listing-slider .lp-listing .lp-listing-location {
        display: inline-block;
        width: 100%;
        text-align: left;
    }
    .lp-activities .lp-activity .lp-activity-bottom {
        padding-top: 35px;
    }
    .lp-activities .lp-activity.style2 .lp-activity-bottom {
        padding-top: 0 !important;
    }
    .lp-activities .lp-activity .lp-activity-description .activity-reactions .review-reaction {
        margin-right: 2px !important;
    }
    .lp-activity-description .review-lol,
    .lp-activity-description .review-interesting,
    .lp-activity-description .review-love {
        padding: 0 8px 0 8px !important;
    }
    .partner-box {
        width: 50% !important;
    }
    .partner-box:last-child .partner-box-inner {
        margin-bottom: 0 !important;
    }
    .lp-listings .listing-slider .lp-listing .lp-listing-bottom .lp-listing-bottom-inner {
        position: relative;
        display: inline-block;
        width: 100%;
        float: left;
    }
    .lp-header-search-filters .filters-wrap-for-mobile {
        display: block;
        margin-right: 0;
    }
    .lp-header-search-filters {
        padding: 0 15px;
        margin-top: 15px !important;
    }
    .lp-header-search-filters .sort-filters-wrap {
        clear: unset !important;
    }
    .lp-header-search-filters .sort-filters-wrap .header-filter-wrap {
        margin-top: 0;
        margin-left: 8px;
    }
    .lp-header-search-filters .more-filters {
        float: none;
        display: inline-block;
        margin-left: 5px;
    }
    .lp-header-search-filters .clearfix.padding-bottom-20 {
        padding-bottom: 10px !important;
    }
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right {
        display: block !important;
        width: 100% !important;
    }
    .lp-listing-announcements .lp-listing-announcement {
        top: 50%;
        bottom: initial !important;
    }
    .lp-listing-announcement.active-ann .announcement-wrap.last span {
        width: 85%;
    }
    .list-style-cotainer .lp-listing-location i.fa-map-marker {
        float: left;
        margin-right: 5px;
        margin-top: 3px;
    }
    .list-style-cotainer .lp-listing-location a {
        width: 93%;
        display: inline-block;
    }
    .list-style-cotainer .lp-bottom-left-full-outer {
        width: 100%;
    }
    .lp-style3-header-wrap .lp-listing-title .lp-listing-title-rating {
        text-align: center;
    }
    .lp-style3-header-wrap .lp-listing-title .lp-listing-logo {
        margin: 0 auto;
        display: block;
        float: none;
    }
    .lp-style3-header-wrap .lp-listing-title .lp-listing-name {
        width: 100% !important;
        text-align: center;
    }
    #lp-respo-direc {
        display: inline-block;
        width: 85%;
    }
    .listing-page-sidebar .lp-widget ul li span.social-icon {
        float: left;
    }
    .listing-page-sidebar .lp-widget ul li a.addr-margin {
        margin-left: 30px !important;
    }
    .lp-listing-timings ul.lp-today-timing li .lp-timings {
        float: right !important;
        margin-left: 0;
    }
    .lp-evnt-content-container {
        display: inline-block;
    }
    .lp-section.lp-section-detail-page .col-md-8.min-height-class {
        margin-top: 0;
    }
    .lp-listing-announcement .announcement-wrap.ann-Announcement.last a.announcement-btn {
        float: left;
        margin-left: 40px;
        margin-top: 5px;
    }
    .lp-listing-features .lp-listing-features ul li {
        width: 100% !important;
    }
    .flip-clock-divider span.flip-clock-label {
        text-transform: capitalize;
    }
    .lp-listing-review .lp-review-right .lp-review-right-top strong {
        text-align: center;
    }
    .lp-listing-review .lp-review-right .lp-review-right-top time {
        text-align: center;
        display: block;
        margin-bottom: 5px;
    }
    .lp-listing-review .lp-review-right .lp-review-right-top .lp-review-stars {
        width: 70%;
        display: inline-block;
        margin: 0 15%;
    }
    .element-inner-button {
        margin-left: 0 !important;
        background: #fff;
    }
    .lp-listing .lp-listing-top .post-price-row li:last-child {
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: 24px !important;
    }
    .lp-listing .lp-listing-top .post-price-row li span.post-rice {
        font-size: 13px;
    }
    .lp-categories-abs2>.row {
        margin: 0 15px;
    }
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-stars {
        margin-bottom: -5px !important;
    }
    .widget-box.lp-event-outer {
        margin-top: -25px;
    }
    #select-lp-more-filter.lp-sorting-filter-outer span {
        display: block;
        text-align: center;
    }
    #select-lp-more-filter.lp-sorting-filter-outer {
        width: 100%;
    }
    #select-lp-more-filter.lp-sorting-filter-outer li {
        width: 50%;
        text-align: center;
        margin-right: 0;
        float: left;
    }
    #lp-find-near-me {
        position: absolute;
        right: 22%;
        top: 53px;
    }
    #lp-find-near-me .near-me-btn {
        padding-bottom: 5px;
        padding-top: 4px;
    }
    #lp-find-near-me .near-me-btn i {
        margin-right: 10px;
    }
    .lp-show-on-mobile {
        display: inline-block;
    }
    .listing-view-layout.listing-view-layout-v2 {
        display: inline-block;
        width: 100%;
        float: initial;
    }
    #select-lp-more-filter.lp-sorting-filter-outer li a i.fa {
        float: none;
    }
    .listing-view-layout.listing-view-layout-v2 ul {
        margin: 0 auto;
        display: block;
        width: 104px;
        float: initial;
    }
    /*-----End New Changes on 30 auguest----*/
    /*-----Start New Changes on 03 september----*/
    .header-with-topbar div.lp-join-now {
        display: block;
        margin: 0 auto;
        float: initial;
    }
    .header-with-topbar div.lp-join-now span {
        margin-top: 0;
        display: inline-block;
        float: inherit;
        vertical-align: middle;
    }
    .lp-home-banner-contianer .lp-home-banner-contianer-inner .lp-search-bar {
        margin: 0 0;
    }
    .lp-banner-browse-txt {
        font-size: 16px;
    }
    .home .header-container.lp-headerfour-height {
        height: 540px;
    }
    .home .header-container.lp-headerfour-height .lp-header-search-wrap {
        height: 540px;
    }
    .header-container.lp-headerfour-height .lp-header-search-wrap .lp-header-search {
        bottom: 25px;
    }
    .listing-style-1 .lp-filter-inner .more-filter #lp-find-near-me {
        position: relative;
        right: initial;
        top: initial;
    }
    .more-filter.lp-filter-inner-wrapper.open_filter #lp-find-near-me {
        position: relative;
        right: initial;
        top: initial;
    }
    #more_filters div.form-group.padding-right-0 {
        width: auto !important;
    }
    .lp_all_page_overflow {
        padding-left: 0;
    }
    .lp_all_page_overflow h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .lp_filter_checkbox li {
        width: 50%;
    }
    .listing-style4 .lp-header-title .col-md-3 {
        clear: both;
    }
    .listing-style4 .listing-view-layout.listing-view-layout-v2 ul li:first-child {
        margin-left: 0;
    }
    .listing-simple .active-view.grid-style,
    .listing-simple .active-view.list-style {
        width: 100% !important;
    }
    .listing-style-3 .filter-top-section.pos-relative .pull-right.margin-right-0 {
        display: block !important;
    }
    .listing-style-3 .filter-top-section.pos-relative .pull-right.margin-right-0 .listing-view-layout ul {
        margin-right: 40px;
    }
    .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        text-align: center !important;
    }
    .listing-style-1 .filter-top-section.pos-relative.row .lp-title.col-md-10.col-sm-10 h3 {
        text-align: left !important;
    }
    .listing-style-3 a.open-map-view {
        top: -50px;
        right: 50%;
        margin-right: -62px;
        border: 1px solid #a3a3a3;
        background: none;
        color: #a3a3a3;
        border-radius: 50%;
        width: 35px !important;
        height: 35px !important;
        font-size: 14px;
        line-height: 20px !important;
        text-align: center;
    }
    .listing-style4 .list_view.lp-grid-box-contianer .lp-grid-box-description {
        width: 100% !important;
    }
    .search-view-move-down,
    .lp-home-banner-contianer-inner-new-search {
        bottom: 45px;
    }
    .footer-social-icons li {
        margin-bottom: 10px;
    }
    footer .container .row .clearfix.col-md-3 {
        text-align: center;
    }
    footer .container .row .clearfix.col-md-3 .jw-recent-posts-widget .jw-recent-content.with-thumb {
        width: 100%;
    }
    footer .container .row .clearfix.col-md-3:last-child {
        margin-bottom: 0;
    }
    .footer4-bottom-area .col-md-2 .lp-footer-logo {
        margin: 0 auto;
        float: none;
    }
    .footer4-bottom-area .col-md-10 .footer-menu {
        text-align: center;
    }
    .footer-style4 .footer-menu ul li {
        text-align: center;
        float: none;
    }
    .footer5-bottom-area .footer-social-icons,
    .footer6-bottom-area .footer-social-icons {
        text-align: center;
    }
    .footer6-bottom-area .lp-footer-logo,
    .footer7-bottom-area .lp-footer-logo,
    .footer10-bottom-area .lp-footer-logo {
        display: block;
        margin: 0 auto;
        float: none;
    }
    .footer-aboutus span {
        margin-bottom: 10px;
        text-align: center;
    }
    .footer-aboutus p {
        text-align: center;
    }
    #footer-contact-us {
        display: block;
        width: 135px;
        float: none;
        margin: 0 auto;
    }
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right.lp-listing-bottom-right-mobile {
        position: relative !important;
        left: 0 !important;
        border: dashed 1px #ff5a5f !important;
        background: #ffeef0 !important;
    }
    .lp-coupon-btn,
    .popup-header strong {
        display: none !important;
    }
    .lp-listing-top-title-header {
        padding-top: 20px !important;
    }
    .single-page-bg .col-md-4.sidebar-top0 {
        margin-top: 0 !important;
    }
    .listing-second-view .post-meta-info {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .listing-second-view .post-meta-info .post-meta-left-box h1 {
        margin-bottom: 0;
    }
    .single_listing #submitreview .comment-reply-title {
        margin-bottom: 10px !important;
        margin-top: 0 !important;
    }
    .single-inner-container.single_listing .lp-multi-rating-ui-wrap .submit-images>label {
        margin-right: 4px;
    }
    .single_listing .review-form .form-group.submit-images {
        margin-top: 15px;
    }
    .single-inner-container.single_listing {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .single_listing .review-form .form-submit .lp-review-btn {
        font-size: 14px;
    }
    .listing-second-view .map-area .listing-detail-infos ul li a span.cat-icon {
        margin-right: 5px;
    }
    .listing-second-view .map-area .listing-detail-infos ul li a span {
        padding-top: 5px;
    }
    .lp-section-detail-page .lp-listing-action-btns .smenu {
        width: auto !important;
    }
    .listing-second-view .social-icons.post-socials.smenu {
        top: -165px;
    }
    .lp-listing-top-title-header .slick-initialized .slick-track .slick-slide {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }
    .offer-description .lp-copy-code {
        float: none !important;
    }
    .lp-listing-offer .offer-bottom .offer-description {
        text-align: center;
    }
    .lp-listing-offer .offer-bottom .offer-description p {
        margin-bottom: 15px !important;
    }
    .lp-listing-offer .offer-bottom .pull-left {
        display: block;
        margin: 60px auto 0;
        float: none !important;
        text-align: center;
    }
    .lp-listing-offer .offer-bottom .offer-tagline {
        position: absolute;
        top: 90px;
        left: 50% !important;
        margin-left: -86px;
        padding: 4px 70px !important;
    }
    .mobile-toggle-filters {
        font-size: 14px;
        padding: 5px 10px !important;
    }
    .lp-header-search .lp-header-search-form {
        margin-top: 5px;
    }
    .lp-header-search .lp-header-search-tagline {
        margin-top: 10px;
    }
}

@media (min-width: 320px) and (max-width: 667px) {
    .lp-listing-offers .lp-listing-offer .offer-expiry strong {
        display: none;
    }
}

@media (min-width: 320px) and (max-width: 440px) {
    .single-page-bg .lp-listing-title .lp-listing-name {
        width: 100% !important;
    }
    .single-page-bg .lp-listing-top-title-header .lp-listing-action-btns.buttons-in-header {
        float: left;
    }
    .single-page-bg .lp-listing-top-title-header .lp-listing-action-btns.buttons-in-header ul {
        margin-top: 0;
        margin-left: -10px;
    }
    .lp_detail_page_styles4 .lp-listing-action-btns .smenu {
        width: auto !important;
        left: 0 !important;
        right: -146px !important;
        top: -100px !important;
    }
    .lp_detail_page_styles4 .lp-listing-action-btns .smenu::after {
        left: 33% !important;
    }
}

@media (max-width: 991px) {
    .lp-grid-style3-outer-hide.clearfix {
        display: none !important;
    }
    .listing-simple .lp-listings.list-style.active-view {
        width: 100% !important;
    }
    /*---- width 100%---*/
    .listing-simple .lp-list-page-grid .lp-listings.list-style.active-view .clearfix,
    .listing-simple .lp-list-page-grid .lp-listings.active-view.grid-style .clearfix {
        width: 100%;
        display: inherit;
    }
    footer .container .row .clearfix.col-md-3 {
        width: 50%;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 15px;
    }
    footer .container .row .clearfix.col-md-3 .widget-title h2 {
        margin-bottom: 0;
    }
    .lp-coupon-btn,
    .popup-header strong {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-suggested-search,
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-location-search,
    .listing-app-view .app-view-header .lp-search-bar .form-inline .lp-search-bar-right,
    .listing-app-view .app-view-header .lp-search-bar .form-inline .lp-search-bar-right .lp-search-btn,
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.pull-right {
        width: 100% !important;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .lp-search-bar-right {
        margin-left: 0;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input,
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-location-search {
        border-radius: 0;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-location-search {
        margin-left: 0;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-suggested-search input {
        border-right: 0 !important;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-suggested-search,
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-location-search {
        margin-bottom: 10px;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single {
        width: 95%;
        text-align: left;
    }
    .listing-app-view .app-view-header .lp-search-bar .form-inline .lp-search-bar-right .lp-search-icon {
        left: 43%;
    }
    .listing-app-view .app-view-header .lp-search-description {
        display: none;
    }
    .listing-app-view .app-view-header .lp-home-banner-contianer-inner {
        top: 110px;
    }
    .listing-app-view .app-view-header .lp-home-banner-contianer.lp-home-banner-with-loc {
        height: 220px !important;
    }
    .listing-app-view .listing-price .claimform.claimform-open {
        padding: 0 25px;
    }
    .listing-app-view .listing-app-view2.listing-second-view .claim-area a:last-child {
        display: inline-block !important;
    }
    .listing-app-view .listing-app-view2 .lp-deals-wrap .lp-deal .deal-thumb img {
        width: 100%;
    }
    .listing-app-view .listing-app-view2 .reviews-section .details {
        width: 100%;
    }
    .listing-app-view .listing-app-view2 .reviews-section article.review-post>figure {
        width: 100%;
    }
    .listing-app-view .listing-app-view2 .sidebar-post {
        margin-top: 0;
    }
}


/*---------------Event detail page-----------*/

@media (max-width: 991px) {
    .lp-event-detail-date-title-outer {
        margin-bottom: 20px;
    }
    .lp-event-detal-share {
        right: initial !important;
    }
    .lp-event-detail-attendes-section ul li {
        margin-left: 2.5% !important;
    }
    .lp-event-detail-attendes-section ul li:nth-child(4n+1) {
        margin-left: 0 !important;
    }
    .lp-features-filter.add-border .col-md-2 {
        display: inline-block;
    }
    .lp-header-search-filters .header-more-filters .input-group.margin-right-0>ul {
        margin-top: 10px;
    }
    .lp-header-search-filters .header-more-filters .input-group.margin-right-0>ul>li {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .lp-event-detail-attendes-section ul li {
        width: 31% !important;
        margin-left: 2.5% !important;
    }
    .lp-event-detail-attendes-section ul li:nth-child(4n+1) {
        margin-left: 2.5% !important;
    }
    .lp-event-detail-attendes-section ul li:nth-child(3n+1) {
        margin-left: 0 !important;
    }
}

@media (max-width: 520px) {
    .lp-event-detail-attendes-section ul li {
        width: 49% !important;
        margin-left: 2% !important;
    }
    .lp-event-detail-attendes-section ul li:nth-child(3n+1) {
        margin-left: 2% !important;
    }
    .lp-event-detail-attendes-section ul li:nth-child(2n+1) {
        margin-left: 0 !important;
    }
    .lp-event-detail-title-hosted {
        width: 77% !important;
    }
}

@media (max-width: 400px) {
    .lp-event-detail-attendes-section ul li {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
    .lp-header-search-filters .header-more-filters {
        width: calc(100% - 30px) !important;
        margin-left: 15px!important;
    }
    .lp-features-inner-container {
        margin: 0 -15px;
    }
    .lp-features-inner-container li {
        width: 50% !important;
        margin-bottom: 5px;
    }
    .lp-features-filter.add-border .col-md-2 {
        width: 50%;
        float: left;
        padding-left: 0;
    }
    .lp-features-filter.add-border .col-md-2 .input-group.margin-right-0 strong {
        margin-top: 10px;
        margin-bottom: 0;
    }
    .lp-features-filter.add-border .col-sm-2 {
        width: 100%;
        float: left;
        margin-bottom: 10px;
        margin-left: -15px;
    }
    .lp-header-search-filters .header-more-filters .input-group.margin-right-0>ul>li {
        margin-bottom: 8px;
    }
}

@media (min-width: 981px) {
    .lp-features-filter.add-border .col-md-2 {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 400px) {
    .lp-header-search-filters .sort-filters-wrap .open-now-filter .sort-filter-inner {
        left: auto !important;
        right: 0 !important;
    }
    .lp-header-search-filters .sort-filters-wrap .open-now-filter .sort-filter-inner::after {
        right: 10px !important;
        left: auto !important;
    }
}

@media (max-width: 768px) {
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #222 !important;
    }
    .leaflet-control-container .leaflet-top {
        top: 65px !important;
        left: 0;
    }
}


/*------------Dashboard-----------*/

@media (max-width: 991px) {
    #inbox .background-white.lpinboxrightpart {
        float: none;
        background: #fff;
        height: auto !important;
        margin-bottom: 15px;
    }
    /*----check out page-----*/
    .lp-listing-form .lp-checkout-page-outer-new .img-responsive {
        width: auto;
    }
    #listings_checkout_form .col-md-8 {
        padding: 0;
    }
    .lp-checkout-page-outer-new .col-md-10.col-sm-6.col-xs-6 {
        width: 100%;
    }
    .lp-checkout-page-outer-new .col-md-1.col-sm-2.col-xs-6 {
        width: 38px;
    }
    .lp-checkout-page-outer-new .col-md-1.col-sm-2.col-xs-6 .radio.radio-danger {
        z-index: 9;
    }
    .lp-checkout-page-outer-new .col-md-3 {
        width: 117px;
        display: inline-block;
    }
    .lp-checkout-page-outer-new .col-md-7 {
        width: 270px;
        display: inline-block;
    }
    .lp-manage-types-group .lp-add-new-btn {
        padding: 0 13px;
    }
    #lp-listings.lp-new-ad-compaign .col-md-3.lp-right-panel-height {
        margin: 0 15px;
    }
    .lp-all-reviews-outer {
        padding-left: 15px;
        padding-right: 15px;
    }
    #inbox {
        padding: 0 15px;
    }
    #lp-menus .lp-dashboard-tabs {
        padding-left: 15px;
    }
    .lp-dashboard-new #lp-listings {
        padding-right: 0 !important;
    }
    .lp-dashboard-new #lp-events {
        padding: 0 !important;
    }
    #lp-announcement-form>.lp-dashboard-tabs {
        padding: 0 15px;
    }
    .lp-dashboard-new .tab-pane.fade.lp-manage-types-group {
        padding-left: 0 !important;
    }
    .page-style2-content-wrap .form-group.lp-new-cat-wrape .select2 {
        margin-bottom: 0 !important;
    }
    .page-style2-content-wrap .lp-style-wrap-border .form-group.clearfix {
        margin-bottom: 0;
    }
    .page-style2-content-wrap .lp-style-wrap-border .col-md-4 #price_status_chosen,
    .page-style2-content-wrap .lp-style-wrap-border .col-md-4 #listingprice {
        margin-bottom: 15px;
    }
    .page-style2-content-wrap .white-section.lp-style-wrap-border {
        border-radius: 5px;
    }
}

@media (max-width: 989px) {
    #lp-announcement-form .pull-left.lp-pull-left-new,
    #lp-events .pull-left.lp-pull-left-new {
        float: right !important;
    }
    #lp-events .lp-listing-pay-outer.pull-right {
        float: left !important;
    }
    .panel-heading .discount_displayin_wrap {
        margin-bottom: 10px;
        margin-top: 5px !important;
    }
    .panel-heading .select2-dash.col-sm-5.pull-right {
        padding-right: 0;
        width: 100%;
    }
    .lp-dashboard-new.lp-dashboard-new-active .right-panel .lp-right-panel-height {
        position: relative;
        border-radius: 5px;
    }
    .lp-dashboard-new.lp-dashboard-new-active .right-panel .col-md-3.padding-right-0 {
        padding: 0 !important;
        margin: 0 15px 30px;
    }
}

@media (max-width: 767px) {
    .dashboard-home-icon-st {
        display: block;
    }
    .lp-invoice-bil-info {
        text-align: left;
    }
    .lp-dashboard-new-active .lp-user-header .pull-right .lp-user-meta {
        float: right;
    }
    .lp-dashboard-new-active .lp-user-header {
        padding: 11px 15px;
    }
    .lp-dashboard-new-active .lp-user-header .lp-contact-support-outer a {
        text-transform: capitalize;
    }
    .lp-dashboard-new.lp-dashboard-new-active .sidebar-nav li .sub_iconsecond {
        margin-right: 17px;
    }
    .lp-new-dashboard-panel-outer .panel-dash-views .col-md-4.col-xs-12.padding-right-0,
    .lp-new-dashboard-panel-outer .panel-dash-views .col-md-4.col-xs-12.padding-0,
    .lp-new-dashboard-panel-outer .panel-dash-views .col-md-4.col-xs-12.padding-left-0 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .lp-dashboard-new.lp-dashboard-new-active .right-panel .col-md-3.padding-right-0 {
        padding: 0 !important;
        margin: 0 15px 30px;
    }
    .lp-dashboard-new.lp-dashboard-new-active .right-panel .lp-right-panel-height {
        position: relative;
        border-radius: 5px;
    }
    .lp-dashboard-new.lp-dashboard-new-active .panel-recent-activity {
        margin-bottom: 0;
        padding: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active .panel-dash-views {
        margin-bottom: 20px;
    }
    .lp-dashboard-new.lp-dashboard-new-active .notices-area {
        padding-top: 5px !important;
    }
    .lp-dashboard-new.lp-dashboard-new-active .panel-dash-views .lp-stats-sorting-outer {
        margin-bottom: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-left-panel-height {
        padding-bottom: 20px;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-dashboard-tabs {
        margin-top: 20px;
    }
    .lp-dashboard-new.lp-dashboard-new-active #lp-menus .lp-dashboard-tabs {
        padding-top: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active #lp-menus .lp-menu-step-one.margin-top-20 {
        padding-bottom: 10px;
    }
    #lp-menus #menu-form-toggle .col-md-9.padding-0.padding-right15 {
        padding-right: 0 !important;
    }
    #lp-menus #menu-form-toggle .col-md-3.padding-right-0.lp-right-panel-height {
        margin-right: 0;
        margin-left: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-add-menu-outer h5 {
        margin-bottom: 15px;
    }
    #lp-announcement-form .lp-add-new-btn {
        margin-left: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active .dashboard-content {
        min-height: 700px;
    }
    .lp-dashboard-new.lp-dashboard-new-active .dashboard-content .right-panel {
        min-height: unset;
    }
    #lp-listings .lp-left-panel-height {
        padding-top: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-dashboard-tabs .panel-heading {
        margin-bottom: 15px;
    }
    #lp-events,
    #lp-listings,
    .lp-dashboard-new.lp-dashboard-new-active .right-panel #reviews {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .lp-dashboard-new.lp-dashboard-new-active .dashboard-content .resurva-booking {
        width: 100%;
        margin: 0;
    }
    #inbox {
        padding: 20px 15px 0 !important;
    }
    #inbox .lp-inbox-outer {
        border: 1px solid #e9ebf2;
        margin-bottom: 30px;
    }
    #lp-announcement-form>.lp-dashboard-tabs {
        padding: 0 15px;
    }
    #lp-listings.lp-new-ad-compaign .col-md-3.lp-right-panel-height {
        margin: 0 15px;
    }
    .lp-dashboard-new-active .lp-user-header .lp-contact-support-outer {
        margin-left: 0;
        margin-right: 5px;
    }
    .pull-right.dashboard-home-icon-st {
        float: left !important;
    }
    .lp-ad-click-outer.lp_selected_active_ad {
        margin-bottom: 30px;
    }
    .lp-ad-image-section-content h3 {
        font-size: 19px;
    }
    .lp-ad-image-section-content ul li {
        margin-top: 15px;
    }
    #resurva_bookings.lp-image-menu-new-outer {
        padding: 0 15px !important;
    }
    #lp-menus .lp-menu-form-inner .jFiler-input-dragDrop {
        margin-bottom: 5px;
    }
    #lp-menus .lp-menu-step-two-btn button {
        padding: 10px 25px;
    }
    .lp-dashboard-new .tab-pane.fade.lp-manage-types-group {
        padding-right: 0 !important;
    }
    #lp-events .lp-listing-selecter .form-group.col-sm-6 {
        padding: 0;
    }
    #lp-events .lp-listing-selecter.margin-bottom-general-form {
        margin-bottom: 0 !important;
        padding-top: 0;
    }
    #lp-events .lp-review-sorting.padding-top-0 {
        padding-bottom: 0;
    }
    #lp-events .lp-listing-selecter .form-group.col-sm-6 .lp-listing-selecter-content h5 {
        margin-top: 0;
        padding-top: 0;
    }
    .lp-author-listings-wrap .lp-new-grid-bottom-button ul li {
        border-top: 0;
    }
    .lp-author-banner .lp-banner-top .lp-banner-date {
        margin-right: 10px;
    }
    #updateprofile .lp-update-profile {
        padding-left: 0;
    }
    #updateprofile .lp-update-profile .updateprofile-tab #profileupdate {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #updateprofile .lp-update-profile-container .tab-header {
        margin-left: 0 !important;
    }
}

@media (max-width: 640px) {
    .lp-dashboard-new-active #sidebar {
        position: absolute;
        top: 58px;
        left: 0;
        z-index: 99;
        width: 375px;
        height: 100%;
    }
    .lp-dashboard-new-active #sidebar li:first-child {
        padding-top: 5px;
    }
    .lp-dashboard-new-active #sidebar {
        display: none;
    }
    .lp-dashboard-new-active #sidebar {
        margin-left: -305px !important;
    }
    .lp-dashboard-new-active #sidebar_menu {
        width: 310px;
    }
    .lp-dashboard-new.lp-dashboard-new-active {
        padding-left: 0 !important;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-new-activity-date {
        float: left;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-activity-content span {
        margin-top: 0;
    }
    .lp-dashboard-new.lp-dashboard-new-active .lp-new-activity-date p {
        text-align: left;
    }
    .lp-dashboard-panel-outer .notices-area .notice a.close {
        right: 2px;
        top: 14px;
    }
    .lp-dashboard-new .notice.info .notice-text>h2,
    .lp-dashboard-new .notices-area .notice.warning .notice-text>h2 {
        line-height: 20px;
    }
    #lp-announcement-form .announcement-wrap .announcement-btn {
        float: left;
        margin-left: 40px;
        margin-top: 5px;
    }
    .lp-checkout-page-outer-new .col-md-7 {
        width: 250px;
    }
    .pull-right.dashboard-home-icon-st {
        float: left !important;
        margin-left: 60px !important;
    }
    .lp-dashboard-new-active.lp-dashboard-new .sidebar-nav>.sidebar-brand {
        height: 58px;
        line-height: 58px;
    }
    #menu-form-toggle .lp-menu-form-outer.background-white {
        background: #fff;
    }
    .lp-image-menu-new #restaurant-menu>h3 {
        font-size: 16px;
    }
    #lp-menus .lp-add-new-btn {
        padding: 0 15px;
    }
    .lp-manage-types-group .lp-add-new-btn {
        padding: 0 13px;
    }
    .lp-sorting-filter-outer li {
        margin-right: 8px;
    }
    .lp-sorting-filter-outer span {
        margin-right: 8px;
    }
    .mobile-toggle-filters {
        margin-bottom: 10px;
    }
    .lp-dashboard-new .notice-text>h2>span {
        font-size: 13px;
    }
    .lp-event-detail-title-hosted {
        width: 80% !important;
    }
    .author-contact-wrap .lp-listing-leadform {
        max-width: 100% !important;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .lp-dashboard-new.lp-dashboard-new-active .sidebar-nav>.sidebar-brand {
        height: 40px;
        line-height: 40px;
    }
    .lp-dashboard-new-active #sidebar {
        position: absolute;
        top: 40px;
        left: 0;
        z-index: 99;
        width: 375px;
    }
    .lp-dashboard-new.lp-dashboard-new-active #main_icon {
        padding-top: 10px;
        padding-right: 29px;
    }
    .lp-event-detail-date {
        display: block !important;
        margin: 0 auto !important;
        float: none !important;
    }
    .lp-event-detail-title-hosted {
        width: 100% !important;
        text-align: center;
        margin-top: 10px;
    }
    .lp-event-detail-side-section ul li h3 i {
        float: left;
        vertical-align: top;
    }
    .lp-event-detail-side-section ul li h3 span {
        width: 89%;
    }
    .lp-event-detail-side-section ul li>a,
    .lp-event-detail-side-section ul li>span {
        width: 100% !important;
        display: inline-block;
        padding-left: 25px !important;
    }
    .lp-coupns-form#lp-listings .discount_displayin_wrap .select2.select2-container.select2-container--default {
        width: 290px !important;
        min-width: 290px !important;
        margin-top: 5px;
    }
    .pull-right.dashboard-home-icon-st {
        float: left !important;
        margin-left: 0 !important;
    }
    .lp-dashboard-new-active .lp-user-header .lp-section-app-head-area {
        width: 100%;
        display: inline-block;
    }
    .lp-dashboard-new-active .lp-user-header .lp-contact-support-outer {
        padding: 0 12px;
        margin-left: 5px;
        margin-right: 0;
        margin-top: 10px;
    }
    .lp_popup_preview_invoice .md-content .modal-footer {
        margin: 0 auto;
        display: block;
        float: none;
        text-align: center;
    }
    .lp_popup_preview_invoice .md-content .modal-footer button {
        float: none !important;
    }
    .lp-checkout-page-outer-new .col-md-7 {
        width: 100%;
        padding-left: 20px !important;
    }
    .lp_payment_steps_area {
        margin: 0 -15px;
        text-align: center;
    }
    .lp-checkout-steps {
        display: block;
        margin: 0;
        width: auto;
    }
    .lp-checkout-steps li .description {
        font-size: 11px;
        margin-left: -25px;
    }
    .lp-image-menu-new .img-menu-upload-field .frontend-button {
        padding: 0 15px;
        line-height: 36px;
    }
    .lp-image-menu-new .resurva-booking .hidden-items input.lp-review-btn {
        font-size: 14px;
    }
    .lp-image-menu-new .resurva-booking .file-options {
        margin-left: 130px;
    }
    .lp-tagline-submit-tagline+.with-title-cond {
        margin-top: -15px;
    }
    .lp-dashboard-new.lp-dashboard-new-active #reviews {
        padding-right: 0 !important;
    }
    .lp-coordinates a {
        width: 49%;
        text-align: center;
    }
    .lp-coordinates a:nth-of-type(3) {
        width: 100%;
        margin-top: 7px;
        margin-left: 0;
    }
    .page-style2-content-wrap .form-group .lp-coordinates a {
        width: 50%;
        text-align: center;
    }
    .page-style2-content-wrap .form-group .lp-coordinates a:nth-of-type(2) {
        border-right: 0;
    }
    .page-style2-content-wrap .form-group .lp-coordinates a:nth-of-type(3) {
        width: 100%;
        margin-top: 5px;
    }
    .page-style2-content-wrap .form-group .lp-coordinates {
        width: 100%;
        margin-bottom: 10px;
    }
    .lp-listing-featuredimage .custom-file label.b-logo-img-label {
        padding-left: 0;
    }
    .lp-event-detail-title-hosted h2 {
        width: 100%;
    }
    .lp-share-event-detail {
        float: none !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }
    .author-contact-wrap .lp-listing-leadform .form-group.pos-relative .lp-review-btn {
        width: 100% !important;
    }
    .lp-author-banner .lp-banner-top .lp-banner-date {
        float: none !important;
        text-align: right;
        margin-right: 10px;
    }
    .lp-author-listings-wrap .lp-new-grid-bottom-button ul li {
        border-right: 0;
        border-top: 1px solid #dedede;
    }
    .lp-author-listings-wrap .lp-new-grid-bottom-button ul li:first-child {
        border-top: 0;
    }
}

@media (max-width: 780px) {
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail {
        width: calc(100% - 120px) !important;
    }
    .jw-recent-content {
        width: 100% !important;
    }
    #sidebar aside.widget ul li {
        margin-right: 0 !important;
    }
    .listing-app-view .lp-menu-bar-color .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15,
    .lp-menu-bar.header-bg-color-class .fullwidth-header .header-filter .top-search-form .input-group.width-49-percent.margin-right-15 {
        width: 100% !important;
    }
    .planclaim-page-popup.single-page-popup {
        width: 100% !important;
    }
    .horizontal_view_list {
        width: 100% !important;
    }
    .lp-form-planclaim-st .col-md-5.col-xs-12.padding-0 {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .listing-view-layout {
        display: none;
    }
    .sidebar-filters .sidemap-container {
        width: 100%;
    }
    .lp-sidebar-filters-style .post-with-map-container-right {
        width: 100%;
    }
    .sidebar-filters .sidemap-container {
        width: auto;
        z-index: 99999999!important;
        position: fixed;
    }
    .sidebar-filters-wrap .search-row .form-inline .form-group {
        width: 100%;
    }
}

@media screen and (max-width:560px) {
    .lp-notifaction-area h4 {
        font-size: 13px;
    }
    .lp-notifaction-area {
        width: 100%;
        left: 0;
        margin-left: 0;
    }
    .lp-notifi-icons {
        margin-right: 3px;
    }
    .lp-notifaction-error {
        border-left: 5px solid #ff4a7a;
    }
    .lp-notifaction-area .lp-notifaction-area-outer .col-md-11 {
        max-width: 80%;
        float: left;
    }
    .lp_detail_page_styles4 .lp-listing-desription {
        margin-top: 30px;
    }
}

@media screen and (max-width:786px) {
    a.open-map-view {
        position: relative;
    }
    .listing-style-3 a.open-map-view {
        top: 0;
    }
}

@media (max-width: 1024px) {
    .tab-pane.lp-all-post-center-container,
    .lp-container-center,
    .panel.lp-all-post-center-container,
    .lp-compaignForm-leftside {
        width: auto !important;
    }
    #wrapper .lp-save-btn-container {
        width: 100%!important;
        margin-left: 0!important;
    }
    #lp-all-menus .col-md-10.lp-content-before-after {
        width: auto;
        float: left;
    }
    .lp-all-menu-btns .lp-add-new-btn {
        float: left;
        margin: 0;
        margin-top: 20px !important;
    }
    .tab-pane.lp-dashboard-menu-container {
        width: 100% !important;
    }
    .lp-compaignForm-righside {
        float: left;
    }
    #lp-menus .lp-menu-step-two.margin-top-10 .lp-menu-open .lp-menu-form-inner {
        padding: 15px!important;
    }
    #lp-menus .lp-menu-form-inner .padding-left-0 {
        padding-left: 15px !important;
    }
    .lp-ads-form-container .lp-review-sorting {
        padding-right: 0;
        padding: 0 30px!important;
    }
    .lp-ads-form-container {
        width: 100% !important;
    }
    .lp-ad-step-two .lp-listing-selecter.background-white {
        background-color: #fff;
    }
    #inbox .background-white.lpinboxrightpart {
        width: 100%!important;
    }
    .lp-inbox-left-sec {
        width: 100%!important;
    }
    .lpinboxmiddlepart {
        width: 100%!important;
    }
    .claimform.claimform-open .form-group {
        margin-right: -15px;
        margin-left: -15px;
        margin-bottom: 15px;
    }
    .md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st,
    .md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st .lp-plan-face {
        height: 100vh !important;
        min-height: 100vh !Important;
    }
    .planclaim-page-popup .md-close i {
        right: 10px !important;
    }
    .lp-claim-plans .lp-plan-paid-claim .horizontal_view_list {
        width: 100%;
    }
    .md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st,
    .md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st .lp-plan-face {
        top: 0!Important;
        transform: translateX(0%) translateY(0%)!Important;
        left: 0!Important;
    }
    .lp-claim-plans .lp-plan-paid-claim .horizontal_view_list {
        width: 100% !important;
    }
    .per_user_per_listing_price {
        width: auto;
    }
    .events-map-wrap .lp-coordinates {
        position: relative !important;
    }
    .lp-dashboard-tabs .panel-heading .select2-dash.col-sm-5.pull-right {
        float: right!important;
    }
    .events-map-wrap .lp-coordinates a {
        width: 100%;
    }
    #ui-datepicker-div.ui-widget {
        width: auto;
    }
    .lp-coupons-form-inner .form-control {
        border: 1px solid #dce0e2;
        margin-bottom: 10px;
    }
    .lp-form-planclaim-st .rightside {
        display: none;
    }
    .single-page-popup.planclaim-page-popup {
        display: block !important;
    }
    .lp-left-static {
        width: 100% !important;
    }
    .lp-right-static {
        width: auto !important;
    }
    .form-group.add-menu_image {
        width: 48% !important;
        display: inline-block !important;
        float: none !important;
    }
    .lp-add-menu-outer .nav-tabs li a {
        padding-bottom: 5px!important;
        margin-right: 30px!important;
        padding-top: 0!important;
        margin-bottom: 10px!important;
    }
    .lp-add-menu-outer .nav-tabs li {
        float: none !important;
        text-align: center;
    }
    .lp-all-menu-btns .lp-add-new-btn {
        FLOAT: NONE;
        margin: 0;
        margin-top: 0 !important;
        margin-bottom: 10px;
    }
    select.online-order-type {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 10px;
        width: 100% !important;
    }
    .form-group.menu_online_order_url {
        width: 100% !important;
    }
    .lpQest-outer.lpreplyQest-outer {
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .lpQest-outer {
        padding-right: 0!important;
    }
    .lp-new-invoices {
        float: none !IMPORTANT;
    }
    .event-calender-classic .event-by-going-wrap,
    .event-calender-list-view .event-by-going-wrap,
    .event-calender-classic .event-by-day-content-wrap,
    .event-calender-list-view .event-by-day-content-wrap {
        width: 100% !important;
        float: none !important;
        text-align: left;
        margin-top: 10px;
    }
    .event-calender-modern-main {
        overflow: hidden;
    }
    .lp-secondary-choose.lp-claim-plan-btn {
        width: 300px;
    }
    .claim_shield {
        display: inline-block;
    }
    .lp-claim-plans .lp-list-form-outer-postion {
        padding-bottom: 0;
        padding-top: 0 !important;
    }
    .lp-claim-plans .lp_hori_view_plan_left_section .lp-listprc {
        height: 229px;
    }
    .claimform-box .lp-horizontial-specific-height {
        margin-bottom: 0;
    }
    .lp-all-menu-btns .nav-tabs li a {
        margin-right: 0 !important;
    }
    .ordering-service-wrap .form-group.menu_online_order_url {
        float: none;
    }
    .ordering-service-wrap select.online-order-type {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .listing-style-1 #see_filter,
    .listing-style4 #see_filter,
    .listing-style-3 #see_filter {
        display: block !important;
    }
    .listing-style-1 .more-filter-left-col.col-md-9.col-xs-9.pull-left,
    .listing-style-3 .more-filter-left-col.col-md-9.col-xs-9.pull-left {
        width: 100%;
        margin-bottom: 10px;
    }
    .listing-style-1 .more-filter-right-col.col-md-3.col-xs-3.pull-right,
    .listing-style-3 .more-filter-right-col.col-md-3.col-xs-3.pull-right {
        width: 100%;
    }
    .listing-style-1 .lp-filter-inner-wrapper .search-filters>ul>li,
    .listing-style-3 .lp-filter-inner-wrapper .search-filters>ul>li {
        margin-bottom: 10px;
    }
    .lp_all_page_overflow {
        width: auto;
    }
    .listing-style-3 .more-filter-right-col.col-md-3.col-xs-3.pull-right .input-group {
        width: auto !important;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 768px) {
    form#searchform {
        z-index: 1;
    }
    .grid_view2 .lp-grid-box-thumb img,
    .grid_view6 .lp-grid-box-thumb img {
        width: initial !important;
        max-width: 100% !important;
    }
    .lp-grid-box-contianer.grid_view2 .lp-grid-box-thumb-container,
    .lp-grid-box-contianer.grid_view2 .lp-grid-style3-outer .lp-grid-box-thumb-container,
    .lp-grid-box-contianer.grid_view2.listing-grid-view2-outer .lp-grid-box-thumb-container,
    .lp-grid-box-contianer.grid_view6 .lp-grid-box-thumb-container {
        height: auto;
    }
    .grid_view2.listing-grid-view2-outer .lp-grid-box .show-img {
        min-height: unset;
    }
    .lp-list-view-compact-outer .list_own_col_lt {
        float: none !important;
    }
    .lp-list-view-compact-outer .list_own_col_gt {
        min-width: 100%!important;
        max-width: 100%!important;
        float: none !important;
        padding-left: 0!important;
        margin-top: 10px;
        padding-bottom: 30px;
    }
    .lp-list-view-compact-outer {
        width: calc(100% - 30px)!important;
    }
    .fullwidth-header .header-filter .input-group.width-49-percent {
        width: 100%;
    }
    .lp-sidebar-filters-style,
    .sidebar-filters .sidebar-filters-wrap,
    .sidebar-filters .content-grids-wraps,
    .lp-sidebar-filters-style .post-with-map-container-right {
        height: auto !important;
        width: auto !IMPORTANT;
    }
    .lp-sidebar-filters-style .sidemap-container.pull-right.sidemap-fixed.open-map {
        width: 100% !important;
        height: 100vh !important;
        position: fixed;
    }
    .lp-menu-bar-color .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15,
    .lp-menu-bar.header-bg-color-class .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15,
    .lp-menu-bar.header-bg-color-class .fullwidth-header .lp-search-chnage-styles-st .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 100% !important;
    }
    .lp-header-search-wrap-banner-height {
        top: -150px!important;
    }
    .lp-header-search-wrap-sidebar-banner .lp-header-search-sidebar-style .col-md-7 {
        display: none;
    }
    .lp-header-search-wrap-sidebar-banner .lp-header-search .lp-search-icon {
        margin-left: -58px;
    }
    .lp-header-search-wrap-sidebar-banner .lp-header-search .lp-header-search-form .lp-suggested-search,
    .lp-header-search-wrap-sidebar-banner .lp-search-bar .form-group.lp-location-search {
        width: 100% !important;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .lp-review-form-top .lp-review-images {
        float: left !important;
    }
}


/* Modify on 9/14/2020/ */

@media (max-width: 767px) {
    #input-dropdown {
        height: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .sucess-transaction-inner-section {
        margin-top: 100px;
    }
    #lp-new-ad-compaignForm label.lp-camp-lbl.checkbox {
        display: inline-block;
    }
    [data-content^="Associated Plan"] {
        text-align: left!important;
    }
    .lp-status-container.pull-right.margin-right-10 {
        float: left !important;
    }
    #lp-user-g-analytics {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #lp-user-g-analytics form {
        text-align: left;
    }
    .col-md-8.lpcampain-spotlight,
    .col-md-4.lpcampain-spotlight,
    .col-md-8.lpcampain-topsearch,
    .col-md-4.lpcampain-topsearch,
    .col-md-8.lpcampain-sidebar,
    .col-md-4.lpcampain-sidebar,
    .lp-camp-created-list .col-md-8,
    .lp-camp-created-list .col-md-4 {
        width: 50%;
        float: left;
    }
    .lp-compaignForm-righside {
        width: 100%!important;
    }
    .post-submit .googlefulladdress .help-tooltip {
        left: -188px;
        right: 0;
    }
    .post-submit .googlefulladdress .help-tooltip:before {
        left: auto;
        right: 0;
    }
    .post-submit .help-tooltip {
        width: 200px!important;
    }
}

@media (max-width: 420px) {
    .hours>a.remove-hours {
        float: right;
    }
    .hours.fullhours>a.remove-hours {
        margin-left: 0;
    }
    .submit_new_style-outer .lp-listing-featuredimage label {
        padding-left: 0;
    }
    .app-view-header .lp-search-toggle.col-md-2.col-xs-3 {
        width: 30%;
    }
    .listing-second-view .open-hours ul li a,
    .open-hours ul li span {
        font-size: 11px;
    }
    .listing-app-view2 .open-hours ul li a {
        margin-left: 0!important;
        font-size: 11px;
    }
    .listing-app-view.listing-app-view-new .open-hours {
        padding-left: 3px!important;
        padding-right: 10px!important;
    }
    .listing-second-view .open-hours ul.hidding-timings {
        padding-left: 5px;
        padding-right: 5px;
    }
    .listing-app-view .nav-tabs>li {
        height: 50px;
    }
    #lp-new-ad-compaignForm .help-tooltip {
        left: auto;
        width: 180px;
        right: 0;
    }
    #lp-new-ad-compaignForm .help-tooltip:before {
        left: auto;
        right: 9px;
    }
    .submit_new_style {
        padding-left: 0;
        padding-right: 0;
    }
}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/css/select2.css?ver=7.0.4 */
@media all {
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f6f6f6;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top,#ffffff 50%,#eeeeee 100%);background-image:-o-linear-gradient(top,#ffffff 50%,#eeeeee 100%);background-image:linear-gradient(to bottom,#ffffff 50%,#eeeeee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top,#eeeeee 50%,#cccccc 100%);background-image:-o-linear-gradient(top,#eeeeee 50%,#cccccc 100%);background-image:linear-gradient(to bottom,#eeeeee 50%,#cccccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#cccccc',GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top,#ffffff 0%,#eeeeee 50%);background-image:-o-linear-gradient(top,#ffffff 0%,#eeeeee 50%);background-image:linear-gradient(to bottom,#ffffff 0%,#eeeeee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top,#eeeeee 50%,#ffffff 100%);background-image:-o-linear-gradient(top,#eeeeee 50%,#ffffff 100%);background-image:linear-gradient(to bottom,#eeeeee 50%,#ffffff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0}.select2-container--classic .select2-dropdown{background-color:white;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:white}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/css/city-autocomplete.css?ver=7.0.4 */
@media all {
.city-autocomplete {
    position: absolute;
    z-index: 10000;
    background: #fff;
    border: 1px solid #c3cacf;
    display: none;
    font-family: Arial, sans-serif;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2);
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px
}

.city-autocomplete:after {
    content: "";
    padding: 1px 1px 1px 0;
    height: 18px;
    box-sizing: border-box;
    text-align: right;
    display: block;
    background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 120px 14px;
}

.city-autocomplete > div {
    font-size: 13px;
    padding: 5px 10px;
    cursor: pointer
}

.city-autocomplete > div:hover {
    background: #c3cacf
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/common.loading-f3c87c6ade.css */
@media all {
body.listingpro-loading:after {
	/* with no content, nothing is rendered */
	content: "";
	position: fixed;
	/* element stretched to cover during rotation an aspect ratio up to 1/10 */
	top: -500%;
	left: -500%;
	right: -500%;
	bottom: -500%;
	z-index: 999999999;
	pointer-events: none; /* to block content use: all */
	/* background */
	background-color: rgba(0,0,0,0.6);
	background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/lp-loading.gif);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100px 100px;

	
}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/lib/bootstrap/css/bootstrap-slider.css?ver=7.0.4 */
@media all {
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2017 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 100%;
  height: 4px;
  border-radius: 15px;
}
.slider.slider-horizontal .slider-track {
  height: 0px;
  width: 100%;
  margin-top: 0px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -7px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #2e6da4;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}
.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #2e6da4;
  border-right-color: #2e6da4;
  margin-left: 0;
  margin-right: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}
.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 10px 10px 10px 0;
}
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -44px;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: -7px;
  width: 15px;
  height: 15px;
  background-color: #337ab7;
  
  border: 0px solid transparent;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  opacity: 1;
}
#distance_range_div .slider{
	background-color:#e3e3e3 !important;
}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/css/morris.css?ver=7.0.4 */
@media all {
.morris-hover {
    position: absolute;
    z-index: 1000
}

.morris-hover.morris-default-style {
    border-radius: 10px;
    padding: 5px 25px;
    color: #fff;
    background: #4D5B6B;
    border: solid 2px #4D5B6B;
   
    font-size: 13px;
    text-align: center;
}

.morris-hover.morris-default-style .morris-hover-row-label {
    font-weight: 700;
    margin: .25em 0;
	    text-transform: capitalize;   
    font-size: 13px;
}

.morris-hover.morris-default-style .morris-hover-point {
    white-space: nowrap;
    margin: .1em 0
}

.morris-hover-point {
        color: #ABB4BF !important;
    font-size: 12px;
	    text-transform: capitalize;
}
.morris-hover.morris-default-style:after{
	content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-TOP: 10px solid #4D5B6B;
    position: absolute;
    BOTTOM: -10px;
    right: 50%;
    transform: translateX(50%);
   
	
}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro-child/style.css?ver=7.0.4 */
@media all {
/*
 Theme Name:   Listingpro Child
 Theme URI:    http://studio.cridio.com/listingpro/
 Description:  Listingpro Child Theme
 Author:       cridio team
 Author URI:   http://cridio.com/
 Template:     listingpro
 Version:      1.0.0
 Tags:         listingpro, directory, listing, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  listingpro
*/


/button color on listing page
.single-tabber2{
	background-color: #ffdf00 !important;
}
}
/* SCRIPT : https://fonts.googleapis.com/css?family=Rock+Salt&#038;ver=7.0.4&#038;display=smart */
@media all {
/* latin */
@font-face{font-display: optional;font-family: 'Rock Salt';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/rocksalt/v24/MwQ0bhv11fWD6QsAVOZrt0M6.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
}
/* SCRIPT : https://fonts.googleapis.com/css?family=Quicksand&#038;ver=7.0.4&#038;display=smart */
@media all {
/* vietnamese */
@font-face{font-display: optional;font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58m-wi40.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58i-wi40.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58a-wg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/lib/countdown/flipclock.css?ver=7.0.4 */
@media all {
/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc; }

.flip-clock-wrapper a:hover {
  color: #fff; }

.flip-clock-wrapper ul {
  list-style: none; }

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table; }

.flip-clock-wrapper.clearfix:after {
  clear: both; }

.flip-clock-wrapper.clearfix {
  *zoom: 1; }

/* Main */
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none; }

.flip-clock-meridium {
  background: none !important;
  /*box-shadow: 0 0 0 !important;*/
  font-size: 36px !important; }

.flip-clock-meridium a { color: #313333; }

.flip-clock-wrapper {
  text-align: center;
  position: relative;
  width: 100%;
    margin: 30px 0 20px 0;
}

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.flip-clock-wrapper:after {
    clear: both;
}

/* Skeleton */
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 2px !important;
  width: 30px;
  height: 40px;
  font-size: 26px;
  font-weight: bold;
  line-height: 40px;
  border-radius: 4px;
}

.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-decoration: none !important;
    padding: 0 !important;
}

.flip-clock-wrapper ul li:first-child {
  z-index: 2; }

.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
  line-height: 39px;
  font-weight: bold;
}

.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 26px;
  overflow: hidden; 
  outline: 1px solid transparent; }

.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2; }

.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0; }

.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4); }

.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-align: center;
  background-color: transparent;
  border-radius: 4px;
  font-size: 26px; }

.flip-clock-wrapper ul li a div.up div.inn {
  top: 0; }

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0; }

/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3; }

.flip-clock-wrapper .flip {
    /*box-shadow: 0 1px 4px rgb(150, 149, 149);*/
}

.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5; }

.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 10px;
  height: 40px; }

.flip-clock-divider:first-child {
  width: 0; }

.flip-clock-dot {
  display: block;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);*/
  left: 5px;
  display: none;
}

.flip-clock-divider .flip-clock-label {
  position: absolute;
  top: -1.5em;
  color: black;
}

.flip-clock-divider.minutes .flip-clock-label {
  left: 12px; }

.flip-clock-divider.seconds .flip-clock-label {
   }

.flip-clock-dot.top {
  top: 30px; }

.flip-clock-dot.bottom {
  bottom: 30px; }

@-webkit-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@-moz-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@-o-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both; }

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg); }

  100% {
    -webkit-transform: rotateX(0deg); } }

@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg); }

  100% {
    -moz-transform: rotateX(0deg); } }

@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg); }

  100% {
    -o-transform: rotateX(0deg); } }

@keyframes turn {
  0% {
    transform: rotateX(90deg); }

  100% {
    transform: rotateX(0deg); } }

.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both; }

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg); }

  100% {
    -webkit-transform: rotateX(-90deg); } }

@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg); }

  100% {
    -moz-transform: rotateX(-90deg); } }

@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg); }

  100% {
    -o-transform: rotateX(-90deg); } }

@keyframes turn2 {
  0% {
    transform: rotateX(0deg); }

  100% {
    transform: rotateX(-90deg); } }

.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3; }

/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  /*background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);*/
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));*/
  /*background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;*/
  /*background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);*/
  /*background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);*/
  /*background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;*/
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both; }

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  /*background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);*/
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));*/
  /*background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;*/
  /*background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);*/
  /*background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);*/
  /*background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;*/
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both; }

/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  /*background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);*/
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));*/
  /*background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;*/
  /*background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);*/
  /*background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);*/
  /*background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;*/
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both; }

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  /*background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);*/
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));*/
  /*background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;*/
  /*background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);*/
  /*background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);*/
  /*background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;*/
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both; }

@-webkit-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-moz-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-o-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/main-new-ed519721b2.css */
@media all {
body {
        font-size: 14px
    }
    
    p {
        overflow-wrap: break-word
    }
    
    .container-fluid {
        padding: 0 25px
    }
    
    label {
        font-weight: 400
    }
    
    ul,
    ol {
        margin: 0;
        padding: 0
    }
    
    a:hover,
    a:focus {
        text-decoration: none
    }
    
    .lp-header.style-v2 {
        background-image: none !important;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        z-index: 10
    }
    
    .grid_view2 .lp-grid-box-description .reviewer-details>p {
        height: 40px
    }
    
    .lp-header-overlay {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        z-index: 4;
    }
    
    .lp-header-search-wrap {
        position: relative;
        top: -120px
    }
    
    .lp-header-search-wrap .video-lp {
        position: absolute;
        max-width: 1000%;
        min-height: 100%;
        min-width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
        overflow: hidden
    }
    
    .lp-header-search-wrap .video-lp video {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }
    
    .lp-header.header-style3 {
        background-image: none
    }
    
    .lp-top-bar {
        position: relative;
        z-index: 6
    }
    
    .lp-top-bar-menu ul {
        list-style: none;
    }
    
    .lp-top-bar-menu ul li {
        float: left;
        line-height: 28px;
        margin-right: 10px
    }
    
    .lp-top-bar-menu ul li:before {
        content: '-';
        margin-right: 10px
    }
    
    .lp-top-bar-menu ul li:first-child {
        margin-left: 0
    }
    
    .lp-top-bar-menu ul li:first-child:before {
        display: none
    }
    
    .lp-top-bar-menu ul li a {
        font-size: 14px;
        text-transform: capitalize;
        line-height: 28px
    }
    
    .style-v2 .lp-topbar-menu li:before {
        display: none
    }
    
    .lp-top-bar-menu ul li a:hover,
    .lp-top-bar-menu ul li a:focus {
        list-style: none
    }
    
    .lp-top-bar-social ul {
        list-style: none;
        line-height: 28px;
    }
    
    .lp-menu-header4-sts-icon {
        line-height: 48px;
    }
    
    .lp-top-bar-social ul li {
        float: right;
        margin-left: 15px
    }
    
    .lp-top-bar-social ul li a {
        font-size: 14px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-header-middle {
        padding: 14px 0 14px 0;
        position: relative;
        z-index: 5
    }
    
    .lp-header-middle .lp-menu ul li {
        line-height: 40px
    }
    
    .lp-header-middle .lp-menu ul.inner_menu>li {
        padding-right: 35px
    }
    
    .lp-header-middle .lp-header-nav-btn,
    .lp-header-middle .lp-header-logo {
        float: left
    }
    
    .lp-header-middle .lp-header-logo img {
        height: 35px
    }
    
    .lp-header-middle .lp-header-nav-btn {
        margin-right: 15px;
        position: relative;
        margin-top: 7px;
    }
    
    .lp-header-middle .lp-header-nav-btn.active-can-menu .lp-user-menu:after {
        visibility: visible;
        opacity: 1
    }
    
    .lp-header-middle .lp-header-nav-btn button {
        border: solid 1px;
        background: none;
        text-align: center;
        width: 35px;
        border-radius: 50%;
        padding: 5px 0
    }
    
    .lp-header-middle .lp-header-nav-btn button span {
        display: block;
        height: 1px;
        margin: 5px auto;
        width: 17px;
        float: none
    }
    
    .header-cat-menu.lp-join-now {
        line-height: 21px
    }
    
    .header-cat-menu>ul>li {
        line-height: 20px
    }
    
    .header-cat-menu .lp-user-menu {
        left: 0;
        top: 50px
    }
    
    .header-cat-menu .lp-user-menu:before {
        content: ' ';
        display: block;
        width: 100%;
        position: absolute;
        height: 14px;
        top: -14px
    }
    
    .menu ul.children li:hover>a::before,
    .menu ul.sub-menu li:hover>a::before,
    .lp-user-menu li:hover>a::before {
        width: 2px
    }
    
    .header-cat-menu .lp-user-menu li,
    .lp-header-middle .sub-menu li,
    .lp-header-middle .lp-header-user-nav .lp-user-menu li,
    .lp-header-search-form #input-dropdown>ul li,
    .lp-header-search-form .chosen-container .chosen-results li {
        border-bottom: solid 1px #ececec
    }
    
    .header-cat-menu .lp-user-menu li:last-child,
    .lp-header-middle .lp-header-user-nav .lp-user-menu li:last-child {
        padding-bottom: 0;
        border-bottom: none;
        border-radius: 0
    }
    
    .lp-header-middle .lp-header-user-nav .lp-user-menu li:first-child {
        border-radius: 0
    }
    
    .header-cat-menu .lp-user-menu li:first-child {
        border-top-right-radius: 2px;
        border-top-left-radius: 2px;
    }
    
    .header-cat-menu .lp-user-menu li:last-child,
    .header-cat-menu .lp-user-menu li:last-child a {
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
    }
    
    .lp-menu ul li:hover ul.sub-menu:before {
        display: block;
        content: ' ';
        width: 100%;
        height: 14px;
        top: -14px;
        position: absolute
    }
    
    .lp-menu ul li:hover ul.sub-menu {
        padding-bottom: 0;
        border-radius: 0;
        border-bottom: 0
    }
    
    .lp-header-middle .menu ul.sub-menu li:last-child {
        border-bottom: none
    }
    
    .lp-header-search-form .chosen-container .chosen-results li {
        padding-top: 6px;
        padding-bottom: 6px
    }
    
    .header-cat-menu .lp-user-menu li a:hover,
    .lp-header-middle .menu ul.sub-menu li:hover>a,
    .lp-header-middle .lp-header-user-nav .lp-user-menu li a:hover,
    .lp-header-search-form #input-dropdown li:hover,
    .lp-header-search-form .chosen-container .chosen-results li:hover,
    .lp-header-search-form .chosen-container .chosen-results li.highlighted {
        background-color: #f6f6f6 !important
    }
    
    .lp-header-search-form #input-dropdown li:hover span,
    .lp-header-search-form #input-dropdown li:hover a,
    .lp-header-search-form #input-dropdown li:hover {
        background-color: transparent
    }
    
    .lp-header-search-form #input-dropdown ul li:hover .d-icon {
        display: inline-block !important
    }
    
    .lp-header-search-form #input-dropdown ul li:hover .h-icon {
        display: none !important
    }
    
    .lp-listing-price-range p span.currency-sign {
        margin-right: -3px;
        font-size: 18px;
        font-weight: 700;
        display: inline-block
    }
    
    .lp-listing-price-range p span.currency-sign.currency-sign-last {
        margin-right: 3px
    }
    
    .lp-listing-price-range p span.currency-sign:last-child {
        margin-right: 5px
    }
    
    .lp-header-middle .menu ul.children li a,
    .lp-header-middle .menu ul.sub-menu li a,
    .lp-header-middle .lp-user-menu li a {
        font-size: 13px;
        padding: 1px 10px;
        line-height: 28px
    }
    
    .header-cat-menu .lp-user-menu:after {
        right: auto;
        left: 22px
    }
    
    .lp-header-middle .lp-header-add-btn,
    .lp-header-middle .lp-header-user-nav {
        float: right
    }
    
    .lp-header-middle .lp-header-user-nav {
        margin-left: 10px
    }
    
    .lp-header-middle .lp-header-user-nav .header-login-btn {
        color: #fff;
    }
    
    .lp-header-middle .lp-header-user-nav .header-login-btn {
        margin-left: 10px;
        font-size: 20px;
        display: block;
        border-radius: 50%;
        color: #fff;
        text-align: center;
    }
    
    .lp-header-middle .lp-header-user-nav .header-login-btn .fa {
        line-height: 34px;
        height: 34px;
        width: 34px;
        border: solid 1px #fff;
        text-align: center;
        border-radius: 50%;
    }
    
    .lp-header-user-nav .lp-user-menu {
        width: 135px !important;
        top: 49px
    }
    
    .lp-header-user-nav .lp-user-menu:after {
        border-bottom: 10px solid #d8d8d8;
        right: 12px;
        margin-right: -5px
    }
    
    .lp-header-user-nav .lp-user-menu .lp-user-welcome {
        line-height: 20px;
        padding: 5px 0;
        color: #fff;
        font-size: 13px;
        padding-left: 11px;
    }
    /* .search-filter-response .lp-grid-box-contianer {
    margin-bottom: 0
} */
    
    .lp-header-middle .lp-header-user-nav .lp-join-now-v2.after-login span {
        width: 34px;
        height: 34px;
        margin-top: 0
    }
    
    .lp-header-middle .lp-header-user-nav .lp-join-now-v2.after-login .juname {
        margin-top: 0;
        line-height: 0;
        display: block;
    }
    
    .lp-header-middle .lp-header-user-nav .lp-join-now-v2.after-login .juname img {
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        vertical-align: initial;
    }
    
    .lp-header-middle .lp-header-add-btn {
        margin-top: 0;
        display: inline-block;
        vertical-align: middle;
        line-height: 48px;
    }
    
    .lp-header-middle .lp-header-add-btn a {
        padding: 4px 13px;
        border: solid 1px;
        border-radius: 2px;
        line-height: 16px;
        font-size: 14px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-header-middle .header-main-menu ul {
        text-align: right
    }
    
    .lp-header-middle .header-main-menu ul li a {
        font-size: 16px;
        color: #fff
    }
    
    .lp-header-middle .header-main-menu ul ul li a {
        color: #333
    }
    
    .lp-header-middle .header-main-menu ul ul.sub-menu {
        margin-top: 10px
    }
    
    .lp-header-middle .lp-header-add-btn a i {
        margin-right: 3px
    }
    
    .lp-header-title {
        padding-bottom: 20px;
        position: relative
    }
    
    .lp-header-title .lp-header-title-left h3 {
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 15px;
        color: #333 !important
    }
    
    .lp-header-title .lp-header-title-left h3 span {
        font-weight: 400
    }
    
    .lp-header-title .lp-header-title-left .lp-header-breadcrumbs .breadcrumbs li {
        padding-left: 0 !important
    }
    
    .lp-header-title .lp-header-title-left .lp-header-breadcrumbs .breadcrumbs li:before {
        display: none
    }
    
    .lp-header-title .lp-header-title-left .lp-header-breadcrumbs a {
        font-size: 14px
    }
    
    .lp-header-title .lp-header-title-left .lp-header-breadcrumbs a:after {
        content: '>';
        display: inline-block;
        margin-right: 6px;
        margin-left: 8px
    }
    
    .lp-header-title .lp-header-toggles {
        line-height: 30px
    }
    
    .lp-header-title .lp-header-toggles a {
        text-align: center;
        display: inline-block;
        font-size: 21px;
        margin-left: 10px;
        color: #fff
    }
    
    .home .lp-header-search {
        position: absolute;
        width: 100%;
        bottom: 60px;
        z-index: 5
    }
    
    .lp-archive-banner {
        background-size: cover
    }
    
    .header-container.lp-header-bg {
        background-size: cover
    }
    
    .lp-header-search.archive-search .lp-location-search .chosen-container-single .chosen-single span {
        text-align: left;
        padding-left: 45px;
        margin-right: 15px
    }
    
    .lp-header-search-form .select-filter {
        width: 404px;
        float: left;
        position: relative;
        margin-right: 10px;
    }
    
    .lp-header-search-form .select-filter .chosen-container-single .chosen-single {
        background-color: #fff !important;
        text-align: left;
        padding-left: 40px;
        padding-top: 2px;
        line-height: 46px;
        height: 46px;
        border: 1px solid #dedede !important;
        border-radius: 3px;
    }
    
    .lp-archive-banner .select-filter .chosen-container-single .chosen-single {
        border-radius: 3px;
    }
    
    .lp-archive-banner .select-filter .chosen-with-drop .chosen-single {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .lp-header-search-form .select-filter i.fa-list {
        position: absolute;
        z-index: 1;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lp-header-search-form .lp-suggested-search {
        width: 405px;
    }
    
    .lp-header-search.archive-search .form-inline .form-group {
        margin-right: 0;
        float: left;
        margin-left: 0;
        background: #fff
    }
    
    .lp-header-search.archive-search .lp-location-search .ui-widget.border-dropdown {
        width: 100%;
        position: relative;
    }
    
    .lp-header-search .lp-header-search-form form #cities,
    .lp-header-search.archive-search form #cities-filter {
        border-radius: 0 !important
    }
    
    .lp-header-search.archive-search form #cities,
    .lp-header-search.archive-search form #cities-filter {
        height: 42px !important;
        line-height: 42px !important;
        border-radius: 0 !important;
        border: 0 !important;
        padding-left: 100px
    }
    
    .lp-header-search .chosen-container-single .chosen-single span {
        line-height: 42px
    }
    
    .lp-header-search .lp-location-search .chosen-container-single .chosen-single span {
        line-height: 46px;
        margin-left: 30px !important
    }
    
    .lp-archive-banner .lp-location-search .chosen-container-single .chosen-single span {
        line-height: 46px;
    }
    
    .lp-header-search.archive-search {
        padding-top: 25px;
        position: relative;
        z-index: 5
    }
    
    .lp-header-search.archive-search .lp-search-bar {
        margin: 0;
        padding: 0
    }
    
    .lp-header-search-filters .clearfix.padding-bottom-20 {
        padding-bottom: 24px;
    }
    
    .lp-header-search.archive-search form i.cross-search-q,
    .lp-header-search.archive-search form img.loadinerSearch {
        right: 85px
    }
    
    .lp-header-search .lp-header-search-tagline {
        font-size: 24px;
        margin-top: 25px;
        line-height: 24px
    }
    
    .lp-header-search .lp-header-search-cats {
        margin-top: 25px;
        min-height: 25px
    }
    
    .lp-header-search .lp-header-search-cats ul {
        display: none
    }
    
    .lp-header-search .lp-header-search-cats ul li {
        display: inline-block;
        margin: 0 12px
    }
    
    .lp-header-search .lp-header-search-cats ul li a:hover {
        text-decoration: underline
    }
    
    .lp-header-search .lp-header-search-cats ul li a i {
        margin-right: 8px
    }
    
    .lp-header-search .lp-header-search-cats ul li a img {
        margin-right: 5px;
        width: 15px;
        height: 15px;
        float: left;
        margin-top: 4px
    }
    
    .lp-header-search .lp-header-search-form {
        margin-top: 15px;
        background-color: transparent
    }
    
    .lp-header-search .lp-header-search-form form {
        display: none
    }
    
    .lp-header-search-form .lp-suggested-search input {
        border-right: none !important
    }
    
    .form-group.lp-location-search .chosen-container.chosen-container-single {
        background-color: #fff;
    }
    
    .lp-home-banner-contianer .form-group.lp-location-search .chosen-container.chosen-container-single {
        border-radius: 0 5px 5px 0;
    }
    
    .archive-search .form-group.lp-location-search .chosen-container.chosen-container-single {
        border: 1px solid #dedede;
        border-radius: 3px;
    }
    
    .archive-search .form-group.lp-location-search .chosen-with-drop {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .lp-header-search.archive-search .form-inline .form-group {
        background: transparent !important;
    }
    
    .form-inline .form-group.lp-suggested-search {
        margin-right: 0
    }
    
    .lp-suggested-search .lp-search-bar-right {
        margin-left: 7px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10
    }
    
    .lp-search-bar .input-group-addon.lp-border.input-group-addon-keyword {
        width: 70px !important
    }
    
    .form-inline .form-group.lp-suggested-search.right-margin-20 {
        margin-right: 8px !important;
        display: none;
    }
    
    .lp-search-bar-right .keyword-ajax {
        padding: 0 20px;
        display: block;
        color: #fff;
        font-weight: 700;
        line-height: 42px;
        height: 42px
    }
    
    .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single {
        padding-left: 20px
    }
    
    .border-dropdown span:after {
        right: 0
    }
    
    .lp-search-bar .border-dropdown span:after {
        display: none;
    }
    
    .lp-search-bar .form-group.lp-suggested-search {
        position: relative
    }
    
    .lp-search-bar .lp-suggested-search .input-group-addon.lp-border,
    .form-group.lp-location-search .lp-where {
        z-index: 10;
        line-height: 46px;
        height: 46px;
        padding: 0 10px
    }
    
    .archive-search .lp-search-bar .lp-suggested-search .input-group-addon.lp-border,
    .archive-search .form-group.lp-location-search .lp-where {
        line-height: 46px;
        height: 46px
    }
    
    .lp-search-bar .lp-suggested-search,
    .lp-header-search .lp-search-form-where,
    .lp-header-search .lp-search-form-submit {
        display: inline-block;
        margin-left: 0
    }
    
    .home .lp-header-search .lp-search-form-submit {
        margin-left: -3px
    }
    
    .lp-header-search .lp-search-form-submit {
        border-radius: 0
    }
    
    .lp-header-search .lp-search-form-what input,
    .lp-header-search .lp-search-form-where input,
    .lp-header-search .lp-search-form-what input:focus,
    .lp-header-search .lp-search-form-where input:focus {
        background-color: transparent;
        border: none;
        outline: 0;
        padding: 0 15px
    }
    
    .lp-header-search .lp-search-form-what input {
        width: 325px;
        padding-left: 20px;
        min-width: 325px;
        padding-top: 3px;
    }
    
    .lp-header-search .lp-search-form-what input#skeyword-filter {
        padding-left: 70px;
        height: 42px;
        line-height: 42px
    }
    
    #input-dropdown {
        margin-top: 4px
    }
    
    .lp-header-search .lp-search-form-what input:focus {
        padding-left: 20px
    }
    
    .lp-header-search .lp-search-form-where input {
        width: 125px
    }
    
    .lp-header-search.archive-search .lp-search-form-where input {
        width: 475px
    }
    
    .lp-header-search.archive-search .lp-search-form-what input {
        width: 434px;
        min-width: 300px
    }
    
    .lp-header-search.archive-search .form-group.lp-location-search .chosen-container.chosen-container-single,
    .lp-header-search.archive-search .lp-location-search {
        width: 404px !important;
        height: 42px
    }
    
    .lp-header-search.archive-search .lp-location-search .ui-widget select {
        width: 345px !important
    }
    
    .lp-header-search.archive-search .select2-container .select2-selection--single {
        height: 42px !important
    }
    
    .lp-header-search .lp-search-form-what label,
    .lp-header-search .lp-search-form-where label {
        margin-bottom: 0;
        font-size: 16px
    }
    
    .lp-header-search .form-group .lp-search-bar-right {
        border-radius: 0;
        margin-left: -1px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-header-search .lp-search-form-submit {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }
    
    .lp-header-search .lp-search-icon {
        color: #fff !important;
        font-size: 20px
    }
    
    .lp-header-search .lp-search-form-submit button,
    .lp-header-search .lp-search-form-submit button:focus {
        border: none;
        padding: 0;
        outline: 0;
        font-size: 18px;
        line-height: 24px
    }
    
    .lp-header-search-filters {
        margin-top: 10px
    }
    
    .lp-header-search-filters .header-more-filters {
        display: none;
        background: #f4f4f4;
        padding: 30px 0
    }
    
    .lp-header-search-filters .header-more-filters .input-group.margin-right-0>ul>li {
        width: 100%;
        margin-right: 0;
        padding-right: 2%;
        float: none
    }
    
    .header-more-filters .input-group strong {
        margin-bottom: 25px;
        display: inline-block;
        font-size: 20px !important;
        font-weight: 700;
        line-height: initial;
        color: #333;
        padding: 0;
        margin-top: 0;
    }
    
    .header-more-filters .input-group .col-sm-10 {
        padding: 0;
        line-height: 36px;
        width: 100%;
        padding-bottom: 10px;
    }
    
    .lp-features-filter.lp-head-withfilter4 {
        height: 100%;
    }
    
    .lp-header-search-filters .header-more-filters .lp-features-filter .tags-area.add-border li {
        width: 100%;
    }
    
    header {
        Z-index: 9999 !important;
    }
    
    .lp-features-inner-container li {
        width: 100% !important;
    }
    
    .lp-features-filter strong {
        font-size: 14px;
    }
    
    #category_select_chosen span:after {
        position: absolute;
        top: 50%;
        right: 17px;
        content: "\f0d7";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        color: #D3D3D3;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    
    .header-more-filters .input-group label {
        padding-left: 22px;
        font-size: 12px;
        line-height: 22px
    }
    
    .header-more-filters .input-group label:before {
        height: 15px;
        width: 15px
    }
    
    .header-more-filters .input-group .checkbox label:before {
        background-color: #eae8e8;
        border-radius: 0;
        border: 1px solid #d4d3d3
    }
    
    .header-more-filters .input-group a {
        font-size: 13px;
        margin-top: 6px;
        display: inline-block
    }
    
    .lp-header-search-filters input[type=checkbox]:checked+label:before {
        line-height: 15px
    }
    
    .lp-header-search-filters .header-filter-wrap {
        float: none;
        display: inline-block;
        padding: 0 15px;
        line-height: 35px;
        margin-left: 8px;
        font-size: 12px;
        cursor: pointer;
        border-radius: 2px;
        background-color: #f4f4f4;
        border: 1px solid #dedede;
    }
    
    .lp-header-search-filters .sort-by-filter {
        position: relative
    }
    
    .near-me-filter.header-filter-wrap .lp-tool-tip-content {
        width: 200px !important
    }
    
    .near-me-filter.header-filter-wrap .lp-tooltip-div-hidden {
        top: 75px !important;
        margin-left: -15px
    }
    
    .lp-header-search-filters .sort-filters-wrap {
        position: relative
    }
    
    .lp-header-search-filters .sort-filters-wrap .sort-filter-inner {
        position: absolute;
        left: 0;
        top: 46px;
        z-index: 999;
        background-color: #fff;
        padding: 8px 8px 8px 0;
        display: none;
        width: 312px;
        -moz-box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
        -webkit-box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
        box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0
    }
    
    .lp-header-search-filters .sort-filters-wrap .open-now-filter .sort-filter-inner,
    .lp-header-search-filters .sort-filters-wrap .best-match-filter .sort-filter-inner {
        width: 185px
    }
    
    .lp-header-search-filters .sort-filters-wrap .sort-filter-inner:after {
        content: ' ';
        display: block;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid transparent;
        width: 10px;
        position: absolute;
        top: -10px
    }
    
    .lp-header-search-filters .sort-filters-wrap .sort-filter-inner .header-filter-wrap {
        font-size: 12px;
        padding: 3px 8px
    }
    
    .lp-header-search-filters .header-filter-wrap.more-filters {
        float: none;
        border-radius: 0
    }
    
    .lp-header-search-filters .header-filter-wrap.more-filters .fa {
        margin-right: 5px;
    }
    
    .lp-header-search-filters .select-filter {
        width: 250px;
        float: left;
        margin-left: 8px
    }
    
    .lp-header-search-filters .select-filter select {
        border: none;
        width: 200px
    }
    
    .lp-header-search-filters .select-filter .chosen-container-single .chosen-single {
        background-color: #f4f4f4;
        border-color: #dedede;
        color: #797979;
        height: 43px;
        padding-left: 45px;
        border-radius: 0
    }
    
    .lp-header-search-filters .select-filter i {
        position: absolute;
        z-index: 2;
        margin-top: 11px;
        font-size: 21px;
        margin-left: 15px
    }
    
    .lp-header-search-filters .select-filter .chosen-container.chosen-container-single.chosen-container-single-nosearch {
        height: 38px
    }
    
    .lp-header-search-filters .header-filter-wrap i {
        margin-right: 3px
    }
    
    .lp-header-search-filters .lp-features-filter {
        margin-top: 20px
    }
    
    .lp-header-search-filters .lp-features-filter .form-group {
        background: none !important;
    }
    
    .lp-header-search-filters .lp-features-filter .features-heading {
        color: #fff
    }
    
    .lp-header-search-filters .lp-features-filter.add-border {
        border-bottom: solid 1px #dedede;
        padding-bottom: 20px
    }
    
    .lp-header-search-filters .lp-features-filter.add-border:last-child {
        border-bottom: solid 0 #dedede;
    }
    
    .lp-header-search-filters .lp-features-filter .features-heading,
    .lp-header-search-filters .header-more-filters .features-heading {
        font-size: 18px;
        display: block;
        margin-bottom: 8px
    }
    
    .lp-header-search-filters .lp-features-filter .checkbox label {
        color: #fff;
        padding-left: 22px;
        line-height: 18px
    }
    
    .lp-header-search-filters .lp-features-filter .checkbox label:before {
        width: 25px;
        height: 25px;
        border-radius: 0;
        background-color: #eae8e8;
        top: 0;
        line-height: 25px !important;
    }
    
    .lp-header-search .price-filter ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .lp-header-search .price-filter ul li {
        text-align: center;
        float: left;
        font-size: 12px;
        cursor: pointer;
        font-weight: 400;
        border-left: none;
        background-color: #fff;
    }
    
    .lp-header-search .price-filter ul li a {
        padding: 0 12px;
        line-height: 35px;
        display: inline-block;
        border: 1px solid #dedede !important;
        border-right: 1px solid #fff !important;
    }
    
    .lp-header-search .price-filter ul li:last-child a {
        border-right: 1px solid #dedede !important;
    }
    
    .lp-header-search .price-filter ul li:hover,
    .lp-header-search .price-filter ul li:hover a {
        color: #797979 !important;
        border-color: #dedede !important;
    }
    
    .lp-header-search .price-filter ul li:hover a,
    .lp-header-search .price-filter ul li .active,
    .lp-header-search-filters .open-now-filter:hover a,
    .lp-header-search-filters .open-now-filter .active {
        color: #fff !important;
    }
    
    .lp-header-search-filters .open-now-filter {
        padding: 0 !important;
        line-height: unset !important;
        border: 0 solid #dedede !important;
    }
    
    .lp-header-search-filters .open-now-filter a {
        display: inline-block;
        padding: 0 15px !important;
        line-height: 35px !important;
        color: #797979 !important;
        border: 1px solid #dedede;
    }
    
    .more-filters-container {
        display: none
    }
    
    .lp-section {
        padding: 40px 0;
        position: relative
    }
    
    .lp-section.lp-section-detail-page {
        padding-top: 0
    }
    
    .section-with-background.lp-section-row {
        margin-top: 80px
    }
    
    .lp-section.single-page-bg {
        padding-top: 0
    }
    
    .lp-section-heading {
        text-align: center;
        margin-bottom: 40px
    }
    
    .lp-section-heading i,
    .lp-section-title-container i {
        font-size: 16px;
        border: solid 1px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 5px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 40px;
        width: 40px;
        color: #ff5a5f
    }
    
    .post-with-map-container-right #searchform .chosen-container-single .chosen-single span {
        line-height: 36px
    }
    
    .left-heading-icon .lp-section-title-container .lp-sub-title {
        color: #333
    }
    
    .left-heading-icon .lp-section-title-container i {
        display: inline-block;
        padding: 0;
        border: none;
        width: auto;
        height: auto;
        margin-bottom: 0;
        margin-right: 5px;
        color: #333 !important
    }
    
    .section-bottom-magrin0 .lp-section-content-container {
        padding-bottom: 0
    }
    
    .lp-section-heading h2 {
        font-weight: 700;
        font-size: 45px;
        text-transform: uppercase;
        margin: 0
    }
    
    .contact-style2.contact-right .form-control,
    .contact-style2.contact-right .lp-review-btn {
        border-radius: 0
    }
    
    .page-heading {
        z-index: 1
    }
    
    .page-heading.banner_view2 {
        height: 160px
    }
    
    .page-heading.banner_view2 h3 {
        float: left;
        color: #fff;
    }
    
    .page-heading.banner_view2 .breadcrumbs {
        float: right;
        margin-top: 12px
    }
    
    .vc_column_container {
        padding-bottom: 40px
    }
    
    .lp-section-title-container h1 {
        margin: 0
    }
    
    .lp-section-heading p,
    .lp-sub-title {
        font-size: 16px;
        color: #797979;
        text-transform: capitalize
    }
    
    .left-heading .lp-section-title-container h2,
    .left-heading .lp-sub-title {
        text-align: left !important;
        margin-left: 4px !important;
        margin-right: 0 !important
    }
    
    .left-heading .lp-sub-title {
        font-size: 15px
    }
    
    .lp-section-title-container .lp-sub-title {
        width: 100%
    }
    
    .lp-section-title-container .lp-sub-title a {
        float: right;
        margin-right: 4px;
        font-size: 14px;
        border: solid 1px #e2e2e2;
        padding: 0 10px;
        transition: all 0.20s ease-in-out
    }
    
    .left-heading .lp-section-title-container h2 {
        font-size: 24px !important;
        text-transform: capitalize !important;
        line-height: 24px
    }
    
    .lp-listings.grid-style .lp-grid-box-contianer {
        margin-bottom: 5px
    }
    
    .lp-listings.list-style .lp-listings-inner-wrap {
        margin-left: 15px;
        margin-right: 15px;
        padding: 15px 0 15px 0;
        border: solid 1px;
        overflow: hidden
    }
    
    .lp-listings-inner-wrap.lp-listings-inner-wrap-with-sidebar {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border: none !important
    }
    
    .lp-listings.list-style .lp-listing {
        border: none;
        border-bottom: solid 1px #dedede
    }
    
    .listing-style-3:last-child .lp-listing {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0
    }
    
    .lp-listings.list-style .lp-listing.last {
        margin-bottom: 0;
        border-bottom: 0;
        padding-bottom: 0
    }
    
    .lp-listings.grid-style .lp-listing,
    .lp-listings.list-style .lp-listing {
        margin-bottom: 15px
    }
    
    .lp-listings.list-style .lp-listing {
        padding-bottom: 15px
    }
    
    .lp-listings .listing-slider {
        display: none;
        max-height: 525px;
    }
    
    .lp-listings .listing-slider .lp-listing {
        border: none;
        position: relative
    }
    
    .slick-prev:before,
    .slick-next:before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        background-color: #fff;
        color: #333;
        opacity: 1;
        -webkit-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .66);
        -moz-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .66);
        box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .66)
    }
    
    .arrow-left,
    .arrow-right {
        position: absolute;
        top: 50%;
        -webkit-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .66);
        -moz-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .66);
        box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .66);
        font-size: 18px;
        text-align: center;
        background-color: #fff;
        z-index: 1;
        cursor: pointer;
        transition: bottom 0.40s ease-in-out;
        margin-top: -17px;
    }
    
    .arrow-left {
        right: 12px;
        padding: 7px 13px 7px 13px;
        border-radius: 50%;
        box-shadow: none;
        opacity: 0.5;
    }
    
    .arrow-right {
        left: 12px;
        padding: 7px 13px 7px 13px;
        border-radius: 50%;
        box-shadow: none;
        opacity: 0.5;
    }
    
    .arrow-right::before,
    .arrow-left::before {
        color: #fff;
    }
    
    .arrow-right:hover,
    .arrow-left:hover {
        opacity: 1;
        color: #fff;
    }
    
    .listing-slider .arrow-right {
        left: -2px
    }
    
    .listing-slider .arrow-left {
        right: -2px
    }
    
    .listing-slider .arrow-left,
    .listing-slider .arrow-right {
        margin-top: -15px
    }
    
    .slick-prev:before {
        content: "\f053"
    }
    
    .slick-next:before {
        content: "\f054"
    }
    
    .lp-listings .listing-slider .slick-prev,
    .lp-listings .listing-slider .slick-next {
        z-index: 10;
        height: 40px;
        width: 40px
    }
    
    .lp-listings .listing-slider .slick-prev {
        left: 5px
    }
    
    .lp-listings .listing-slider .slick-next {
        right: 25px
    }
    
    .lp-listing-slider .slick-next,
    .lp-listing-slider .slick-prev {
        z-index: 10
    }
    
    .lp-listing-slider .slick-next {
        right: 15px
    }
    
    .lp-listing-slider .slick-prev {
        left: -8px
    }
    
    .listing-review-slider .arrow-right {
        left: -10px;
        margin-top: -15px
    }
    
    .listing-review-slider .arrow-left {
        right: -10px;
        margin-top: -15px
    }
    
    .lp-listing .lp-listing-top {
        position: relative
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-top {
        float: left
    }
    
    .lp-listing .lp-listing-top .lp-listing-price-range,
    .lp-listing .lp-listing-top .lp-listing-favrt,
    .lp-listing .lp-listing-top .li-listing-clock,
    .lp-listing .lp-listing-top .lp-listing-cat {
        position: absolute;
        color: #fff
    }
    
    .lp-listing .lp-listing-top .lp-listing-price-range {
        bottom: 15px;
        left: 15px;
        font-weight: 700;
        padding: 0 10px;
        width: 26px;
        overflow: hidden;
        height: 26px;
        line-height: 25px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing-discount-range {
        transition: all 0.30s ease-in-out;
        position: relative;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .5);
        float: right;
        margin-top: -3px;
        padding-right: 5px;
        padding-left: 15px;
        padding-bottom: 2px;
    }
    
    .lp-listing-discount-range:before {
        content: "\f0c4";
        font-family: FontAwesome;
        position: absolute;
        left: 7px;
        bottom: 0;
        color: #fff;
        -webkit-transform: rotate(20deg);
        -moz-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        -o-transform: rotate(20deg);
        transform: rotate(-18deg)
    }
    
    .lp-listing-discount-range .lp-listing-price-range-currency {
        display: inline-block;
        position: relative;
        line-height: 18px;
        padding: 0 10px;
        margin-top: 5px;
        color: #fff !important;
        border: 1px dashed #fff !important
    }
    
    .lp-listings .listing-slider .lp-listing:hover .lp-listing-discount-range {
        bottom: 60px
    }
    
    .lp-listing-discount-outer {
        position: absolute;
        bottom: 15px;
        line-height: 26px;
        width: 100%;
        padding: 0 15px;
    }
    
    .grid-style .lp-listing-top .lp-listing-price-range {
        position: relative;
        left: 0;
        bottom: 0
    }
    
    .lp-listing .lp-listing-top .lp-listing-price-range span {
        color: #fff;
        font-weight: 700
    }
    
    .lp-listing .lp-listing-top .lp-listing-price-range span.lp-listing-price-range-currency {
        padding-right: 10px
    }
    
    .lp-listing .lp-listing-top .lp-listing-favrt {
        top: 12px;
        left: 15px;
        font-size: 18px
    }
    
    .lp-listing .lp-listing-top .li-listing-clock {
        top: 15px;
        right: 15px;
        background-color: #141414;
        font-size: 14px;
        padding: 0 7px;
        display: block;
        height: 22px;
        overflow: hidden;
        transition: width 0.20s ease-in-out;
        width: 25px
    }
    
    .lp-listing .lp-listing-top .li-listing-clock.status-red {
        background-color: #ff5a5f;
        width: 25px
    }
    
    .lp-listing .lp-listing-top .li-listing-clock.status-green {
        background-color: #73cf42
    }
    
    .lp-listing:hover .lp-listing-top .li-listing-clock.fulltime {
        width: 113px
    }
    
    .lp-listing:hover .lp-listing-top .li-listing-clock {
        width: 80px;
        border-radius: 2px;
    }
    
    .lp-listing:hover .lp-listing-top .lp-listing-price-range {
        width: auto;
        line-height: 24px;
    }
    
    .lp-listing .lp-listing-top .lp-listing-cat {
        bottom: -22px;
        right: 15px;
        text-align: center;
        font-size: 18px;
        padding: 8px 12px;
        z-index: 5;
        transition: bottom 0.20s ease-in-out
    }
    
    .grid-style .lp-listing .lp-listing-top .lp-listing-cat {
        display: none !important;
    }
    
    .listing-slider .lp-listing .lp-listing-top .lp-listing-cat {
        padding: 10px 12px;
        bottom: -20px
    }
    
    .lp-listing .lp-listing-top .lp-listing-cat img {
        height: 20px;
        width: 20px
    }
    
    .lp-listing .lp-listing-top .lp-listing-cat:after,
    .lp-listing .lp-listing-top .lp-listing-cat:before {
        -webkit-transform: translate(-50%, -16px);
        -moz-transform: translate(-50%, -16px);
        -ms-transform: translate(-50%, -16px);
        -o-transform: translate(-50%, -16px);
        transform: translate(-50%, -16px);
        border-radius: 0
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat {
        margin: 5px 0;
        display: inline-block;
        margin-top: 0;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-size: 11px;
        line-height: unset;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat img {
        height: 20px;
        width: 20px;
        margin-top: -2px !important;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat .lp-list-cat-wrap {
        margin-right: 6px
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat .lp-list-cat-wrap img {
        margin: 0
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat i {
        font-size: 19px;
        padding: 13px 0;
        text-align: center;
        width: 45px;
        display: inline-block;
        margin-right: 10px
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-top-thumb {
        border: none;
        border-radius: 4px;
        overflow: hidden;
        max-width: 190px
    }
    
    .lp-listing .listing-slider .lp-listing-top-thumb {
        border: none
    }
    
    .lp-listing .lp-listing-top-thumb img {
        max-width: 100%;
        width: 100%
    }
    
    .lp-listing .lp-listing-bottom {
        padding: 15px 15px 15px 15px;
        border: solid 1px;
        border-top: 0;
        min-height: 108px !important;
    }
    
    .lp-listing .list-style-cotainer .lp-listing-bottom,
    .listing-slider .lp-listing .lp-listing-bottom {
        border: none
    }
    
    .lp-listings .listing-slider .lp-listing .lp-listing-bottom {
        padding: 0;
        position: relative;
        height: 95px;
        min-height: 95px !important;
    }
    
    .lp-listings .listing-slider .lp-listing:hover .lp-listing-bottom .lp-listing-bottom-inner {
        top: -75px
    }
    
    .lp-listings .listing-slider .lp-listing:hover .lp-listing-top .lp-listing-price-range {
        bottom: 58px
    }
    
    .lp-listings .listing-slider .lp-listing:hover .lp-listing-top .lp-listing-cat {
        bottom: 38px
    }
    
    .lp-listings .listing-slider .lp-listing .lp-listing-bottom .lp-listing-bottom-inner {
        position: absolute;
        padding: 10px 15px;
        width: 100%;
        height: 165px;
        top: -4px;
        transition: top 0.20s ease-in-out;
        cursor: auto;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom {
        float: left;
        padding-top: 0;
        padding-bottom: 0;
        width: calc(100% - 190px);
        padding-right: 0
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-left {
        width: 60%;
        float: left
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-left.lp-listing-bottom-left-full {
        width: 100%;
        float: none
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right {
        width: 35%;
        float: right;
        padding: 0;
        text-align: center;
        background: #ffeef0;
        border: dashed 1px #ff5a5f;
        position: relative;
        margin-top: 14px;
        border-radius: 3px;
        overflow: hidden;
    }
    
    .lp-listing-bottom-right .lp-listing-bottom-right-title {
        line-height: 16px;
        margin-bottom: 14px;
        margin-top: 10px;
    }
    
    .lp-listing-bottom-right span.percent-off {
        color: #ff5a5f;
        font-weight: 700;
        font-size: 20px;
        text-transform: uppercase;
    }
    
    .lp-listing-bottom-right strong {
        color: #333;
        line-height: 14px;
        font-size: 13px;
        font-weight: 400
    }
    
    .lp-listing-bottom-right a.deal-button {
        background-color: #2ecc71;
        color: #fff;
        text-align: center;
        display: inline-block;
        padding: 7px 5px;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }
    
    .lp-listing-bottom-right .flip-clock-wrapper {
        display: inline-block;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: auto;
    }
    
    .lp-listing-bottom-right .flip-clock-divider .flip-clock-label {
        left: 4px
    }
    
    .lp-listing-bottom-right .flip-clock-wrapper ul li a div div.inn {
        font-size: 17px;
        color: #222 !important;
    }
    
    .lp-listing-bottom-right .flip-clock-wrapper ul {
        width: 12px;
        height: 22px
    }
    
    .lp-listing-bottom-right .flip-clock-divider {
        width: 2px
    }
    
    .lp-listing-bottom-right .flip-clock-wrapper ul li,
    .lp-listing-bottom-right .flip-clock-wrapper ul li a,
    .lp-listing-bottom-right .flip-clock-divider {
        line-height: 17px;
        height: 17px
    }
    
    .lp-listing-bottom-right .flip-clock-wrapper ul li a {
        font-weight: 600;
        background-color: #ead4d6;
    }
    
    .lp-listing .lp-listing-bottom h3,
    .lp-activity h3 {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 3px;
        margin-top: 0
    }
    
    .lp-activity h3 a {
        font-size: 18px
    }
    
    .lp-listing .lp-listing-bottom h4 {
        margin-top: 2px;
    }
    
    .list-style .lp-listing .lp-listing-bottom h4 {
        margin-bottom: 6px;
        margin-top: 2px;
        line-height: 20px;
    }
    
    .lp-listing .lp-listing-bottom h3 a,
    .lp-activity h3 a {
        text-transform: capitalize
    }
    
    .lp-listing .lp-listing-bottom h4 span,
    .lp-activity h4 span {
        font-weight: 700;
        border: solid 1px;
        font-size: 14px;
        line-height: 18px;
        padding: 0 5px;
        margin-right: 6px;
        height: 19px;
        display: inline-block;
        float: left;
        margin-top: 0;
    }
    
    .lp-listing .lp-listing-bottom h4 a span,
    .lp-activity h4 a span {
        background-color: #40b3ef !important;
        border-radius: 100% !important;
        color: #fff !important;
        display: inline-block !important;
        height: 15px !important;
        line-height: 15px !important;
        margin-top: -3px !important;
        text-align: center !important;
        vertical-align: middle !important;
        width: 15px !important;
        font-size: 8px !important;
        padding: 0 !important;
        border: 0;
        float: none;
    }
    
    .lp-listing .lp-listing-bottom h4 a span .fa,
    .lp-activity h4 a span .fa {
        color: #fff;
    }
    
    .lp-listing .lp-listing-bottom .lp-listing-cats {
        margin-bottom: 8px;
        line-height: 15px;
        max-width: 100%;
    }
    
    .lp-listings .listing-slider .lp-listing .lp-listing-bottom .lp-listing-cats {
        margin-bottom: 10px;
        margin-top: 5px
    }
    
    .lp-listing .lp-listing-bottom .lp-listing-cats a {
        margin-right: 0;
        font-size: 13px;
    }
    
    .lp-listing .lp-listing-bottom .lp-listing-cats a:hover {
        text-decoration: underline
    }
    
    .lp-listing .lp-listing-bottom .lp-listing-stars {
        float: left;
        line-height: 18px
    }
    
    .listing-slider .lp-listing .lp-listing-bottom .lp-listing-stars {
        float: none
    }
    
    .lp-multi-rating-ui-wrap .review-emoticons {
        height: 20px;
        width: 20px
    }
    
    .lp-listing-stars .lp-star-box {
        line-height: 12px;
        border: solid 1px;
        height: 18px;
        width: auto;
        display: inline-block;
        text-align: center;
        font-size: 13px;
        padding: 2px 0;
    }
    
    .lp-listing-stars .lp-rating-num {
        display: inline-block;
        background: #73cf42;
        color: #fff !important;
        float: left;
        height: 23.2px;
        padding: 0 5px;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    
    .lp-listing-stars .lp-rating-num.zero-rating {
        margin-left: 0
    }
    
    .listing-slider .lp-listing-stars .lp-rating-num.zero-rating {
        line-height: 16px
    }
    
    .lp-multi-rating-ui-wrap .list-style-none span:first-of-type {
        line-height: 21px;
    }
    
    .lp-listing-announcements .lp-listing-announcement {
        position: absolute;
        background-color: #fff;
        z-index: 10;
        left: 0;
        width: 100%;
        margin-bottom: 0;
        display: none;
        bottom: 90px
    }
    
    .lp-listing-announcements .lp-listing-announcement .close-ann {
        position: absolute;
        left: -9px;
        top: -11px;
        line-height: 5px;
        cursor: pointer;
        color: #fff;
        font-size: 17px;
        z-index: 2;
        padding: 3px 5px;
        border-radius: 50%;
    }
    
    .lp-listing-announcements .lp-listing-announcement .announcement-wrap {
        margin-bottom: 0;
        padding: 8px 8px 8px 13px;
        border-top: none
    }
    
    .lp-listing-announcements .lp-listing-announcement .announcement-wrap span {
        font-size: 14px
    }
    
    .lp-listing-announcements .lp-listing-announcement .announcement-wrap i {
        font-size: 23px
    }
    
    .lp-listing-announcements .lp-listing-announcement .announcement-wrap a {
        font-size: 14px;
        padding: 3px 15px
    }
    
    .lp-listing-announcements a.lp-ann-btn {
        color: #ff5a5f;
        border: solid 1px #dedede;
        line-height: 26px;
        display: inline-block;
        padding: 0 10px;
        margin-top: 8px;
        transition: all 0.20s ease-in-out;
        font-size: 14px
    }
    
    .add-new-announcement .form-group {
        margin: 0;
        margin-bottom: 5px
    }
    
    .add-new-announcement .form-group label {
        margin-bottom: 0
    }
    
    #lp-save-announcements {
        margin-top: 20px
    }
    
    .lp-listing-announcements a.lp-ann-btn:hover {
        color: #fff;
        border-color: #fff;
        background-color: #ff5a5f
    }
    
    .lp-listing .lp-listing-bottom .lp-listing-location {
        float: right;
        line-height: 23px;
    }
    
    .grid-style .lp-listing .lp-listing-bottom .lp-listing-location .fa {
        font-size: 13px;
    }
    
    .grid-style .lp-listing .lp-listing-bottom .lp-listing-location a {
        font-size: 13px;
        color: #333 !important;
    }
    
    .lp-listing .list-style-cotainer .lp-listing-bottom .lp-listing-location {
        float: none
    }
    
    .lp-listing .list-style-cotainer .lp-listing-bottom-left .lp-listing-location {
        overflow: hidden;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 95%
    }
    
    .lp-listing .list-style-cotainer .lp-listing-bottom .lp-listing-location a {
        font-weight: 400;
        font-size: 14px;
        color: #333333 !important;
    }
    
    .lp-listing .lp-listing-bottom .lp-listing-location a .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-location,
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-stars {
        float: none;
        font-size: 14px
    }
    
    .listing-slider .lp-listing .lp-listing-bottom .lp-listing-location {
        float: none;
        margin-top: 10px;
    }
    
    .lp-listings .more-listings {
        margin-top: 20px;
        text-align: center
    }
    
    .lp-listings .more-listings a {
        border: solid 1px #e2e2e2;
        padding: 2px 15px;
        text-transform: capitalize;
        display: inline-block;
        font-size: 14px;
        transition: all 0.20s ease-in-out;
        border-radius: 3px;
    }
    
    .lp-locations {
        text-align: center;
        max-width: 1125px;
        margin-top: -38px
    }
    
    .lp-locations .lp-locations-slider .arrow-right {
        left: -10px;
        margin-top: -20px
    }
    
    .lp-locations .lp-locations-slider .arrow-left {
        right: -10px;
        margin-top: -20px
    }
    
    .lp-locations .col-md-2 {
        padding: 0 0 0 4px;
        display: inline-block
    }
    
    .lp-locations .lp-location-box {
        position: relative;
        overflow: hidden
    }
    
    .lp-locations .lp-location-box .lp-location-thumb a img {
        max-width: 100%;
        height: auto;
        width: 100%
    }
    
    .lp-locations .lp-location-box .lp-location-bottom {
        position: absolute;
        bottom: 0;
        transition: bottom 0.15s ease-out;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 8px 0
    }
    
    .lp-locations .lp-location-box:hover .lp-location-bottom a span.lp-cat-list-count {
        display: block
    }
    
    .lp-locations .lp-location-box:hover .lp-location-bottom a span.lp-cat-name {
        margin-top: 10px
    }
    
    .lp-locations .lp-location-box .lp-location-bottom a {
        position: absolute;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 8px 0;
        bottom: 0;
        background-image: url(data:image/png;base64,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);
        line-height: 12px;
        height: 68px
    }
    
    .lp-locations .lp-location-box .lp-location-bottom a span.lp-cat-name {
        display: block;
        font-weight: 700;
        line-height: 15px;
        margin-top: 25px;
        transition: all 0.35s ease-out
    }
    
    .lp-locations .lp-location-box .lp-location-bottom a span.lp-cat-list-count {
        display: none;
        line-height: 25px;
        transition: all 0.35s ease-out
    }
    
    .lp-activities .lp-activity {
        margin-bottom: 20px
    }
    
    .lp-activities .lp-activity.style2 .lp-activity-description p {
        min-height: 50px
    }
    
    .lp-activities .lp-activity.style2.bottom0 {
        margin-bottom: 0
    }
    
    .lp-activities .lp-activity .lp-activity-top {
        position: relative
    }
    
    .lp-activities .lp-activity .lp-activity-author-thumb {
        position: absolute;
        left: 10px;
        bottom: -27px
    }
    
    .lp-activities .lp-activity.style2 .lp-activity-author-thumb {
        right: -10px;
        top: 50%;
        margin-top: -27px;
        left: auto;
        height: 55px
    }
    
    .lp-activities .lp-activity .lp-activity-author-thumb img {
        height: 55px;
        width: 55px;
        -webkit-border-radius: 50% !important;
        -moz-border-radius: 50% !important;
        border-radius: 50% !important;
        border: solid 2px;
        background-color: #fafafa;
    }
    
    .lp-activities .lp-activity .lp-activity-thumb img {
        max-width: 100%
    }
    
    .lp-activities .lp-activity .lp-activity-bottom {
        padding-top: 45px
    }
    
    .lp-activities .lp-activity .lp-activity-bottom strong {
        font-weight: 400;
        font-size: 14px;
        color: #333;
    }
    
    .lp-activities .lp-activity.style2 .lp-activity-bottom {
        padding-top: 15px
    }
    
    .lp-activities .lp-activity .lp-activity-review-writer {
        margin-bottom: 12px;
        line-height: 16px;
        text-transform: capitalize;
    }
    
    .lp-activities .lp-activity .lp-activity-review-writer p {
        margin-bottom: 0;
        font-size: 12px;
    }
    
    .lp-activities .lp-activity.style2 .lp-activity-review-writer {
        margin-top: 14px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    
    .lp-activities .lp-activity.style2 .lp-activity-review-writer p {
        margin-bottom: 0;
        font-size: 12px;
    }
    
    .lp-activities .lp-activity .lp-listing-stars {
        margin-bottom: 10px
    }
    
    .lp-activities .lp-activity .lp-activity-description .activity-reactions {
        margin-top: 15px
    }
    
    .lp-activities .lp-activity .lp-activity-description .activity-reactions .review-reaction {
        margin-left: 0;
        margin-right: 5px;
        line-height: 30px;
    }
    
    .lp-activities .lp-activity .lp-activity-description .activity-reactions .review-reaction i {
        margin-right: 5px
    }
    
    .lp-activities .lp-activity .lp-activity-description .activity-reactions.small-btns .review-reaction {
        padding: 0 8px 0 8px;
        margin-top: 5px;
        line-height: 30px;
    }
    
    .lp-activities .lp-activity .lp-activity-description .activity-reactions.small-btns .review-reaction:hover {
        border-radius: 3px;
    }
    
    .lp-activities .lp-activity .lp-activity-description p {
        margin-bottom: 0;
        overflow-wrap: break-word;
        min-height: 49px
    }
    
    .news-section {
        background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/listing-mg4.jpg);
        background-size: cover
    }
    
    .section-with-overlay {
        position: relative
    }
    
    .section-with-overlay:before {
        display: block;
        content: ' ';
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .6);
        position: absolute;
        top: 0;
        left: 0
    }
    
    .lp-read-news {
        font-family: 'Rock Salt', cursive;
        text-align: center;
        width: 100%;
        padding: 50px 0
    }
    
    .lp-read-news p,
    .lp-read-news a {
        font-family: 'Rock Salt', cursive !Important;
        color: #fff !important;
    }
    
    .lp-read-news p:first-child {
        font-size: 30px;
        margin-bottom: 45px;
    }
    
    .lp-read-news p {
        line-height: 50px
    }
    
    .lp-read-news p.large-size {
        font-size: 80px;
        background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/read-news.png);
        background-repeat: no-repeat;
        background-position: center;
        line-height: 80px
    }
    
    .lp-read-news a {
        font-size: 25px;
        margin-top: 45px;
        display: inline-block;
        text-decoration: underline;
    }
    
    .travel-brands {
        text-align: center
    }
    
    .partner-box {
        float: none;
        display: inline-block;
        width: 20%
    }
    
    .lp-logos {
        text-align: center
    }
    
    .lp-logos ul {
        margin: 0 auto
    }
    
    .lp-logos ul li {
        list-style: none;
        display: inline-block;
        margin: 0 25px
    }
    
    .lp-sidebar .lp-widget {
        margin-bottom: 25px;
        position: relative;
        z-index: 0;
    }
    
    .lp-sidebar .lp-widget#lp-sidebar-video {
        margin-bottom: -6px;
        overflow: hidden;
        width: 360px;
        border: none;
        margin-left: -1px
    }
    
    .lp-sidebar .lp-widget#lp-sidebar-video iframe {
        width: 360px;
        height: 300px;
        margin-bottom: 0
    }
    
    .lp-sidebar .map-widget #map {
        height: 420px;
        min-height: 420px
    }
    
    .lp-sidebar .lp-widget .lp-widget-title,
    .widget-box>h2 {
        font-size: 20px;
        margin: 0;
        text-transform: capitalize;
        margin-bottom: 20px
    }
    
    .lp-widget img {
        max-width: 100%
    }
    
    .lp-sidebar .lp-listings-widget .lp-listing {
        padding: 10px;
        border: solid 1px;
        margin-bottom: 0;
        border-bottom: 0;
    }
    
    .lp-listings-widget .lp-listing:last-child {
        border-bottom: solid 1px;
    }
    
    .lp-listings-widget .lp-listing {
        padding: 10px;
        border: solid 1px;
        margin-bottom: 0;
        border-bottom: 0;
    }
    
    .lp-sidebar .lp-listings-widget .lp-listing:last-child {
        border-bottom: solid 1px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-thumb {
        float: left;
        width: 46px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-thumb img {
        border-radius: 3px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail {
        float: left;
        width: calc(100% - 48px);
        padding-left: 10px;
        position: relative;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail h6 {
        font-size: 14px;
        margin: 0;
        margin-bottom: 2px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail h6 a {
        line-height: 20px;
        font-size: 15px;
        font-weight: 400;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail h6 span {
        font-weight: 500;
        font-size: 13px;
        line-height: 17px;
        padding: 0 6px;
        margin-right: 5px;
        height: 18px;
        border: solid 1px;
        display: inline-block;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail .lp-listing-rating {
        margin-bottom: 8px
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg,
    .lp-listing-review .lp-review-right .lp-rating-num {
        font-weight: 700;
        width: 30px;
        text-align: center;
        display: inline-block;
        margin-right: 5px;
        line-height: 20px
    }
    
    .lp-listing-review .lp-review-right .lp-rating-num {
        width: auto !important;
        line-height: 25px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-count {
        text-transform: capitalize;
        margin-right: 15px
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail .lp-listing-miles {
        font-weight: 400;
        color: #fff;
        background: #c1c1c1;
        border-radius: 3px;
        padding: 0 4px;
        float: right;
        font-size: 12px;
        line-height: 20px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail h6 span {
        border-radius: 5px;
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail .lp-listing-location {
        font-size: 14px;
        line-height: 18px
    }
    
    .lp-listings-widget .lp-listing .lp-listing-detail .lp-listing-location a {
        font-size: 13px;
        font-weight: 400;
    }
    
    .detail-page-header-bg {
        background-color: #f0f3f6;
        position: absolute;
        width: 100%;
        height: 167px;
        top: 0;
        left: 0;
        background-size: cover
    }
    
    .detail-page-header-bg.gal-yes {
        height: 470px
    }
    
    .detail-page-header-bg.style4-bg.two-lines-title {
        height: 170px
    }
    
    .detail-page-header-bg.style4-bg.no-tagline.two-lines-title {
        height: 135px
    }
    
    .detail-page-header-bg.style4-bg.no-tagline {
        height: 110px
    }
    
    .detail-page-header-bg.gal-yes.style4-bg {
        height: 475px
    }
    
    .detail-page-header-bg.gal-yes.style4-bg.two-lines-title {
        height: 500px
    }
    
    .detail-page-header-bg.gal-yes.style4-bg.two-lines-title.no-tagline {
        height: 470px
    }
    
    .detail-page-header-bg.gal-yes.style4-bg.no-tagline {
        height: 440px
    }
    
    .lp-listing-slider {
        margin-bottom: 30px;
        max-height: 270px;
        overflow: hidden
    }
    
    .lp-see-all {
        text-align: center;
        margin: 15px 0;
        margin-bottom: 30px
    }
    
    .lp-see-all a {
        text-transform: capitalize
    }
    
    .lp-listing-slider .lp-listing-slide-wrap {
        padding: 0
    }
    
    .lp-listing-slider .lp-listing-slide img {
        max-width: 100%;
        border-radius: 2px;
    }
    
    .lp-listing-title.gal-yes {
        margin-top: 30px
    }
    
    .single-page-bg .lp-listing-title {
        margin-top: 0;
        margin-bottom: 20px
    }
    
    .lp-listing-title .lp-listing-logo {
        float: left;
        margin-right: 15px;
        width: 82px;
        height: 82px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .lp-listing-title .lp-listing-logo img {
        width: 82px;
        height: 82px;
    }
    
    .lp-listing-title .lp-listing-name {
        float: left;
        width: calc(100% - 235px)
    }
    
    .lp-listing-title .lp-listing-name h2 {
        position: relative;
    }
    
    .post-meta-left-box .lp-listing-title {
        margin-top: 10px;
    }
    
    .lp-listing-title .lp-listing-name h2 span.claimed {
        position: absolute;
        margin-left: 8px;
        margin-top: 4px;
    }
    
    .lp-listing-title .lp-listing-name h2 span.claimed.position-static {
        position: static;
        display: block;
        margin-left: 0;
    }
    
    .single-page-bg .lp-listing-title .lp-listing-name {
        margin-left: 0
    }
    
    .single-page-bg .lp-listing-title .lp-listing-name span {
        color: #fff
    }
    
    .lp-listing-title .lp-listing-name h2 {
        font-size: 28px;
        font-weight: 500;
        margin: 10px 0 5px 0;
        line-height: 33px;
        word-wrap: break-word
    }
    
    .lp-listing-title .lp-listing-name h2 span i {
        background-color: #40b3ef;
        color: #fff;
        border-radius: 50%;
        font-size: 11px;
        padding: 3px;
        line-height: 11px
    }
    
    .claim-details>h2>span {
        font-size: 27px
    }
    
    .claim-details ul {
        margin-bottom: 20px !important
    }
    
    .claim-details ul li {
        background: none !important;
        border: none !important;
        width: 320px;
        padding: 5px 0 !important
    }
    
    .lp-post-meta-right-box-style3 .post-meta-left-box h1 {
        word-wrap: break-word
    }
    
    .single-page-bg .lp-listing-title .lp-listing-name h2 {
        line-height: 30px
    }
    
    .single-page-bg .lp-listing-title .lp-listing-name h2 {
        margin-top: 0
    }
    
    .lp-listing-title .lp-listing-name .lp-listing-name-tagline {
        font-size: 14px
    }
    
    .lp-listing-title .lp-listing-title-rating {
        float: right;
        margin-top: 15px;
        text-align: right;
        margin-right: 3px
    }
    
    .lp-listing-title-rating .review-form-toggle i {
        margin-right: 5px
    }
    
    .single-page-bg .lp-listing-title .lp-listing-title-rating {
        float: none;
        margin-top: 8px;
        text-align: left
    }
    
    .lp-listing-title .lp-listing-title-rating .lp-rating-avg {
        font-weight: 700;
        font-size: 20px;
        line-height: 20px;
        padding: 7px 10px;
        margin-bottom: 8px;
        display: inline-block;
        border-radius: 3px;
    }
    
    .single-page-bg .lp-listing-title .lp-listing-title-rating .lp-rating-avg {
        margin-bottom: 0;
        padding: 4px 10px;
        margin-right: 10px
    }
    
    .lp-rating-avg sub {
        bottom: .05em
    }
    
    .lp-listing-title .lp-listing-title-rating .lp-rating-count,
    .lp-listing-title .lp-listing-title-rating .review-form-toggle {
        font-size: 13px
    }
    
    .lp-listing-title .lp-listing-title-rating .review-form-toggle {
        color: #fff
    }
    
    .lp-listing-title .lp-listing-title-rating .review-form-toggle:hover {
        text-decoration: underline
    }
    
    .single-page-bg .lp-listing-title .lp-listing-title-rating .lp-rating-count {
        margin-right: 6px
    }
    
    .single-page-bg .lp-listing-title .lp-listing-title-rating .lp-rating-count:after {
        content: '-';
        display: inline-block;
        margin-left: 10px
    }
    
    .lp-listing-action-btns {
        margin-top: 27px;
        position: relative;
        height: 14px
    }
    
    .lp-listing-action-btns .md-overlay,
    .lp-listing-action-btns .smenu {
        visibility: visible;
        opacity: 1;
        z-index: 100
    }
    
    .lp-listing-action-btns .smenu {
        z-index: 999999999;
        min-width: 217px !important;
        padding: 7px;
        left: 0;
        top: -90px;
        display: none;
    }
    
    .lp_detail_page_styles4 .lp-listing-action-btns .smenu {
        width: auto;
        left: -170px
    }
    
    .lp_detail_page_styles4 .lp-listing-action-btns .smenu:after {
        left: 91%
    }
    
    .lp-listing-action-btns .smenu:after {
        left: 10%;
        bottom: -10px;
        border-top-color: #fff
    }
    
    .lp-listing-action-btns .smenu div {
        display: block;
        float: left;
        text-align: center;
        margin: 3px
    }
    
    .lp-listing-action-btns .smenu div a {
        display: inline-block;
        width: 34px;
        text-align: center;
        padding: 7px 0
    }
    
    .single-page-bg .lp-listing-action-btns {
        float: right;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 2px
    }
    
    .lp-listing-action-btns ul {
        list-style: none;
        margin: 0;
        padding: 0;
        position: absolute;
        margin-top: 0
    }
    
    .single-page-bg .lp-listing-action-btns ul {
        margin-top: 10px
    }
    
    .lp-listing-action-btns ul li {
        float: left;
        margin-right: 8px
    }
    
    .lp-listing-action-btns.buttons-in-header ul li {
        margin-right: 0;
        margin-left: 10px;
        float: right
    }
    
    .lp-listing-action-btns.buttons-in-header ul {
        margin-top: 4px;
        position: static
    }
    
    .lp-listing-action-btns.buttons-in-header ul li a {
        padding-left: 13px;
        padding-right: 13px;
        border: none
    }
    
    .lp-listing-action-btns ul li>a {
        padding: 5px 12px 4px 12px;
        border: solid 1px;
        border-radius: 3px;
    }
    
    .lp-listing-action-btns ul li a>i {
        color: #797979
    }
    
    .lp-listing-action-btns ul li>a:hover {
        background-color: #f8f8f8
    }
    
    .lp-listing-action-btns ul li#lp-book-now {
        margin-right: 0;
        margin-top: 16px;
        margin-left: 15px;
        width: 100%;
        float: none
    }
    
    .lp-listing-action-btns ul li#lp-book-now>a {
        width: 150px;
        display: inline-block;
        text-align: center;
        font-size: 18px;
        border: solid 1px #fff !important;
        padding-top: 9px;
        padding-bottom: 5px;
        margin-right: 1px;
        background-color: transparent !important;
        color: #fff !important;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing-action-btns ul li#lp-book-now>a>i {
        transition: all 0.20s ease-in-out;
        color: #fff
    }
    
    .lp-listing-announcement {
        margin-bottom: 35px
    }
    
    .lp-listing-announcement .announcement-wrap {
        font-weight: 700;
        border: solid 1px;
        padding: 10px 10px 10px 15px;
        margin-bottom: 20px
    }
    
    .lp_detail_page_styles1 .lp-listing-announcement .announcement-wrap,
    .lp_detail_page_styles2 .lp-listing-announcement .announcement-wrap {
        border-radius: 5px
    }
    
    .lp-listing-announcement .announcement-wrap span {
        font-weight: 700
    }
    
    .lp-listing-announcement .announcement-wrap.last {
        margin-bottom: 0
    }
    
    .lp-listing-announcements .announcement-wrap.last {
        border-bottom: none
    }
    
    .lp-listing-announcement .announcement-wrap i,
    .lp-listing-announcement .announcement-wrap img {
        font-size: 26px;
        float: left;
        margin-right: 15px;
        float: left
    }
    
    .lp-listing-announcement .announcement-wrap p {
        float: left;
        width: 60%;
        margin-bottom: 0
    }
    
    .lp-listing-announcement .announcement-wrap span {
        float: left;
        max-width: 555px;
        font-weight: 400;
        line-height: 17px
    }
    
    .lp-listing-announcement .announcement-wrap strong {
        display: block
    }
    
    .lp-listing-announcement .announcement-wrap a {
        float: right;
        padding: 6px 15px;
        text-align: center;
        border-radius: 3px;
        font-weight: 400;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing-announcement .announcement-wrap a:hover {
        opacity: .7
    }
    
    .lp-listing-desription {
        margin-bottom: 35px;
        font-size: 15px
    }
    
    .lp-listing-desription p {
        margin-bottom: 15px;
        overflow-wrap: break-word
    }
    
    .lp-listing-desription p:last-child {
        margin-bottom: 0
    }
    
    .lp-listing-specs {
        margin-top: 40px
    }
    
    .lp-listing-specs ul li {
        list-style: none;
        width: 40%;
        float: left;
        padding-bottom: 10px;
        margin-bottom: 25px;
        border-bottom: solid 1px;
        line-height: 17px
    }
    
    .lp-listing-specs ul li:nth-child(2n) {
        float: right
    }
    
    .lp-listing-specs ul li label {
        font-size: 16px
    }
    
    .lp-listing-specs ul li span {
        font-size: 15px;
        float: right
    }
    
    .lp-listing-faqs {
        margin-bottom: 45px;
        float: none
    }
    
    .lp-listing-faqs .lp-listing-faq {
        border: solid 1px;
        margin-bottom: 15px;
        -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        -moz-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        padding: 0;
        border-radius: 3px;
    }
    
    .lp-listing-faqs .lp-listing-faq.last {
        margin-bottom: 0
    }
    
    .lp-listing-faqs .ui-accordion-header-icon {
        display: none;
        float: none
    }
    
    .lp-listing-faq .faq-title {
        margin: 0;
        padding: 15px 20px;
        -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        -moz-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        border: solid 1px #dedede;
        margin-bottom: 15px;
    }
    
    .lp-listing-faq .faq-title.ui-accordion-header-active {
        border-bottom: none;
        box-shadow: none;
    }
    
    .lp-listing-faq.ui-accordion .ui-accordion-content {
        -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        -moz-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .17);
        border: solid 1px #dedede;
        border-top: none;
        margin-bottom: 15px;
    }
    
    .lp-listing-faq.ui-accordion .ui-accordion-content p {
        margin-bottom: 0;
    }
    
    .lp-listing-faq.ui-accordion .ui-accordion-content.ui-accordion-content-active {
        margin-top: -15px;
    }
    
    .lp-listing-faq .faq-title a {
        font-size: 16px;
        font-weight: 400;
        display: block;
    }
    
    .lp-listing-faq .faq-title a:focus {
        color: #333 !important;
    }
    
    .lp-listing-faq .faq-title a span {
        font-size: 20px;
        display: inline-block;
        margin-right: 15px;
        line-height: 20px
    }
    
    .lp-listing-faq .faq-title a i {
        float: right;
        font-size: 12px;
        margin-top: 4px
    }
    
    .lp-listing-faq .faq-answer p {
        margin-bottom: 0
    }
    
    .lp-listing-faq .faq-answer .answer-body {
        padding: 20px;
        padding-top: 0
    }
    
    .lp-listing-reviews {
        margin-bottom: 40px
    }
    
    .lp-listing-reviews .lp-total-reviews {
        font-size: 18px;
        font-weight: 500;
        text-transform: capitalize;
        margin-top: 0;
        margin-bottom: 0
    }
    
    .lp-listing-reviews .lp-listing-review {
        margin-top: 20px;
        border-top: solid 1px;
        padding-top: 30px
    }
    
    .lp-listing-review .lp-review-left {
        float: left;
        width: 20%;
        max-width: 100px;
        text-align: center;
    }
    
    .lp-listing-review .lp-review-left .lp-review-thumb {
        margin-bottom: 15px
    }
    
    .lp-listing-review .lp-review-left .lp-review-thumb img {
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        height: 85px;
        width: 85px
    }
    
    .lp-listing-review .lp-review-left .lp-review-name {
        display: block;
        margin-bottom: 0;
        line-height: 16px;
        text-transform: capitalize;
    }
    
    .lp-listing-review .lp-review-left .lp-review-count {
        display: block
    }
    
    .lp-listing-review .lp-review-right {
        float: right;
        width: 86%;
        padding-left: 30px
    }
    
    .lp-listing-review .lp-review-right .lp-review-right-top strong {
        display: block;
        font-weight: 500;
        font-size: 16px;
        font-family: Poppins,"Poppins Fallback";
    }
    
    .lp-listing-review .lp-review-right .lp-review-right-top time {
        font-size: 14px
    }
    
    .lp-listing-review .lp-review-right .lp-review-right-top .lp-review-stars {
        float: right;
        position: relative
    }
    
    .lp-listing-review .lp-review-right .lp-review-right-top .lp-review-stars .open-multi-rate-box .fa-star {
        color: #73cf42
    }
    
    .lp-listing-review .lp-review-right .lp-review-right-top .lp-review-stars .lp-multi-star-wrap {
        left: -140px
    }
    
    .lp-listing-review .lp-review-right .lp-rating-num {
        margin-right: 0
    }
    
    .lp-listing-review .lp-review-right .lp-review-right-content {
        margin-top: 15px
    }
    
    .lp-reivew-gallery {
        margin-top: 15px
    }
    
    .lp-reivew-gallery {
        margin-left: 10px
    }
    
    .lp-reivew-gallery .listing-review-slider .slick-slide {
        padding: 0 5px
    }
    
    .lp-reivew-gallery .slick-prev,
    .lp-reivew-gallery .slick-next {
        padding: 15px 0;
        width: 30px;
        background-size: 10px;
        margin-top: 0;
        right: -7px
    }
    
    .lp-reivew-gallery .slick-prev {
        left: -7px
    }
    
    .lp-reivew-gallery img {
        max-width: 100%;
        border-radius: 3px;
    }
    
    .lp-listing-review .lp-review-right-bottom {
        margin-top: 30px
    }
    
    .lp-listing-review .lp-review-right-bottom .review-interesting,
    .lp-listing-review .lp-review-right-bottom .review-love,
    .lp-listing-review .lp-review-right-bottom .review-lol,
    .lp-activity-description .review-interesting,
    .lp-activity-description .review-love,
    .lp-activity-description .review-lol {
        padding: 0 10px 0 10px;
        border: solid 1px;
        margin: 0 4px;
        display: inline-block;
        position: relative;
        line-height: 30px;
        border-radius: 3px;
        font-size: 13px;
    }
    
    .lp-listing-review .lp-review-right-bottom .review-interesting:hover,
    .lp-activity-description .review-interesting:hover {
        border-radius: 3px;
    }
    
    .lp-listing-review .lp-review-right-bottom .review-reaction .react-msg,
    .lp-activity-description .review-reaction .react-msg {
        position: absolute;
        font-size: 13px;
        top: -30px;
        left: 0;
        display: none;
        width: 200%;
    }
    
    .lp-listing-review-form {
        margin-bottom: 30px;
        border: solid 1px;
        padding: 35px;
        position: relative;
        border-radius: 2px;
    }
    
    .lp-listing-review-form .lp-form-opener {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 5
    }
    
    .lp-listing-review-form h2 {
        margin: 0;
        font-size: 18px;
        text-transform: capitalize;
        margin-bottom: 20px;
        cursor: pointer;
        font-weight: 500;
    }
    
    .lp-listing-review-form h2 i {
        float: right
    }
    
    .lp-listing-review-form .lp-review-form-top {
        border: solid 1px;
        padding: 15px
    }
    
    .lp-listing-review-form .lp-review-form-top .fa-star-o {
        display: inline-block;
        margin-top: 4px
    }
    
    .lp-listing-review-form .lp-review-form-bottom {
        display: none;
        margin-top: 20px
    }
    
    .lp-review-form-bottom input {
        border-radius: 0
    }
    
    .lp-review-form-top .lp-review-stars {
        width: 50%;
        float: left;
        margin-top: 6px
    }
    
    .lp-review-form-top .submit-images {
        margin: 0
    }
    
    .lp-review-form-top .lp-review-stars span.stars-label {
        float: left;
        margin-right: 8px
    }
    
    .lp-review-form-top .lp-review-images label {
        font-weight: 400;
        margin-bottom: 0
    }
    
    .lp-review-form-top .lp-review-images {
        width: 50%;
        float: right;
        text-align: right
    }
    
    .lp-review-form-top .lp-review-images button,
    a.browse-imgs {
        border: none;
        padding: 0 25px;
        line-height: 37px;
        margin-left: 8px;
        display: inline-block
    }
    
    .lp-listing-review-form textarea {
        resize: none;
        width: 100%;
        padding: 15px;
        height: 160px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0
    }
    
    .lp-listing-review-form .review-submit-btn {
        border: none;
        font-size: 16px;
        padding: 9px 40px;
        margin-top: 15px;
        border-radius: 3px;
    }
    
    .lp-listing-review-form .form-submit {
        margin-bottom: 0
    }
    
    .listing-page-sidebar .lp-widget {
        border-radius: 3px;
    }
    
    .listing-page-sidebar .lp-deal {
        margin-bottom: 20px
    }
    
    .listing-page-sidebar .lp-widget.lp-widget-top {
        border-top: solid 1px;
    }
    
    .widget-box.widget_listingpro_nearby_v2 {
        padding: 0;
        margin-bottom: 30px
    }
    
    .listing-page-sidebar .lp-widget #singlepostmap {
        height: 235px;
        border-left: solid 1px;
        border-right: solid 1px;
    }
    
    .listing-page-sidebar .lp-widget ul {
        padding: 0;
        margin: 0;
        list-style: none
    }
    
    .listing-page-sidebar .lp-widget ul li {
        padding: 10px 20px;
    }
    
    .lp-widget-top .lp-listing-timings .all-days-timings li {
        background-color: #fff !important;
    }
    
    .listing-page-sidebar .lp-widget ul li span.social-icon {
        font-size: 18px;
        display: inline-block;
        text-align: left;
        width: 30px;
    }
    
    .widget-social-icons li {
        font-size: 14px
    }
    
    .widget-social-icons li a {
        color: #797979
    }
    
    .listing-page-sidebar .lp-widget ul li span img {
        width: 20px
    }
    
    .listing-page-sidebar .lp-widget ul li p {
        margin-bottom: 0
    }
    
    .listing-page-sidebar .lp-widget ul li a.addr-margin {
        margin-left: 33px
    }
    
    .lp-widget-social-links a {
        font-size: 22px;
        margin-right: 4px;
        display: block;
        float: left
    }
    
    .lp-listing-timings {
        position: relative
    }
    
    .lp-listing-timings .toggle-all-days {
        position: absolute;
        border: solid 1px;
        padding: 2px 6px;
        border-radius: 2px;
        right: 15px;
        bottom: -10px;
        font-size: 11px;
        z-index: 2;
        line-height: 14px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing-timings .toggle-all-days i {
        margin-right: 3px
    }
    
    .lp-listing-timings .all-days-timings {
        display: none
    }
    
    .lp-listing-timings .lp-today-timing {
        padding: 14px 20px
    }
    
    .lp-listing-timings div.lp-today-timing {
        border-top: solid 1px;
        background-color: #fff
    }
    
    .lp-listing-timings div.lp-today-timing strong img {
        width: 20px;
    }
    
    .lp-listing-timings .lp-today-timing .lp-timing-status {
        margin-left: 12px
    }
    
    .lp-listing-timings .lp-today-timing .lp-timings {
        float: right;
        margin-right: 0;
        width: auto
    }
    
    .lp-widget .lp-listing-price-range {
        padding: 15px 20px;
        border-top: solid 1px
    }
    
    .lp-widget .lp-listing-price-range .simptip-position-top.simptip-movable:hover:after {
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
    }
    
    .lp-widget .lp-listing-price-range .lp-listing-price-range {
        border: none;
        font-weight: 700;
        padding: 0
    }
    
    .lp-widget .lp-listing-price-range p {
        margin: 5px 0
    }
    
    .lp-widget .lp-listing-price-range p.pricey {
        font-size: 16px
    }
    
    .lp-widget .lp-listing-price-range p a {
        font-weight: 700
    }
    
    .lp-widget .lp-listing-price-range p i {
        margin-right: 8px
    }
    
    .lp-widget .lp-listing-price-range p img {
        width: 18px;
        margin-left: -3px;
        margin-right: 8px
    }
    
    .lp-listing-additional-details {
        position: relative
    }
    
    .lp-listing-additional-details.bottom35 {
        margin-bottom: 46px
    }
    
    .lp-listing-additional-details h4 {
        font-weight: 500;
        font-size: 16px;
        margin: 0;
        padding: 16px 20px;
        border-top: solid 1px;
        background-color: #fff
    }
    
    .lp-listing-additional-details li {
        font-weight: 700
    }
    
    .lp-listing-additional-details li label {
        font-weight: 700;
        margin-bottom: 0
    }
    
    .lp-listing-additional-details li span {
        float: right
    }
    
    .lp-listing-additional-details .toggle-additional-details {
        position: absolute;
        text-align: center;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: none;
        padding: 4px 0;
        bottom: -46px;
        left: 0;
        outline: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing-additional-details .toggle-additional-details:hover {
        opacity: .7
    }
    
    .lp-listing-additional-details .toggle-additional-details i {
        margin-right: 5px
    }
    
    .additional-detail-hidden {
        display: none
    }
    
    .online-owner-widget {
        padding: 15px
    }
    
    .online-owner-widget .lp-online-thumb {
        width: 85px;
        height: 85px;
        float: left;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px
    }
    
    .online-owner-widget .lp-online-detail {
        float: left;
        margin-left: 10px
    }
    
    .online-owner-widget .lp-online-detail h4 {
        margin-top: 0;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px
    }
    
    .online-owner-widget .lp-online-detail h4 span {
        font-size: 14px;
        font-weight: 400;
        margin-left: 10px
    }
    
    .online-owner-widget .lp-online-detail h4 span:before {
        content: ' ';
        height: 6px;
        width: 6px;
        display: inline-block;
        border-radius: 50%;
        margin-right: 4px
    }
    
    .online-owner-widget .lp-online-social a {
        font-size: 20px;
        margin-right: 4px
    }
    
    .online-owner-widget .lp-online-detail p {
        margin-bottom: 0;
        font-size: 14px;
        margin-top: 4px
    }
    
    .lp-widget.lp-discount-widget {
        position: relative;
        margin-bottom: 25px;
        border: solid 1px #dedede;
        overflow: hidden;
        border-radius: 3px;
    }
    
    .lp-widget.lp-discount-widget .flip-clock-wrapper {
        width: auto;
        display: inline-block;
        margin-left: auto
    }
    
    .lp-discount-widget .lp-discount-btn {
        position: relative;
        width: 100.8%;
        text-align: center;
        font-weight: 700;
        padding: 12px 0;
        font-size: 16px;
        text-transform: capitalize;
        cursor: pointer;
        z-index: 1;
        display: block
    }
    
    .lp-discount-widget .lp-discount-btn span {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 23px
    }
    
    .no-padding-discount:nth-child(even) {
        padding-left: 0;
        clear: both
    }
    
    .no-padding-discount:nth-child(odd) {
        padding-right: 0
    }
    
    .no-padding-sidebar {
        padding: 0
    }
    
    .lp-discount-widget .lp-discount-top {
        text-align: center;
        padding: 20px;
        position: relative
    }
    
    .lp-discount-widget .lp-discount-top strong {
        margin-bottom: 20px;
        text-transform: capitalize;
        display: block;
        margin-bottom: 10px
    }
    
    .lp-discount-widget .lp-discount-top .lp-discount-thumb {
        height: 100px;
        width: 100px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: solid 1px;
        position: absolute;
        left: 50%;
        margin-left: -50px
    }
    
    .lp-discount-widget .lp-discount-top .lp-discount-thumb img {
        max-width: 100%;
        border-radius: 50%
    }
    
    .lp-discount-widget .lp-discount-top .lp-discount-thumb .lp-discount-thumb-tagline {
        color: #fff;
        left: 0;
        font-weight: 700;
        padding: 0 10px;
        background-color: #73cf42;
        position: absolute;
        bottom: -5px;
        font-size: 12px;
        right: auto;
        width: 100%;
        text-align: center
    }
    
    .lp-dis-code-copy {
        text-align: center;
        line-height: 18px;
        position: absolute;
        background-color: #fff;
        width: 100%;
        z-index: 15;
        bottom: 12px;
        left: 0;
        display: none
    }
    
    .lp_detail_page_styles1 .lp-dis-code-copy,
    .lp_detail_page_styles2 .lp-dis-code-copy,
    .lp_detail_page_styles5 .lp-dis-code-copy {
        border-radius: 5px
    }
    
    .lp_detail_page_styles1 .lp-dis-code-copy .popup-header strong,
    .lp_detail_page_styles2 .lp-dis-code-copy .popup-header strong,
    .lp_detail_page_styles5 .lp-dis-code-copy .popup-header strong {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px
    }
    
    .lp-discount-widget .lp-dis-code-copy {
        bottom: 30px
    }
    
    .offer-btn .lp-dis-code-copy {
        width: 300px;
        left: auto;
        right: 0
    }
    
    .lp-listing-bottom-right .lp-dis-code-copy {
        min-width: 300px;
        left: -47px
    }
    
    .popup-header strong {
        position: relative;
        color: #fff !important;
        text-align: left;
        padding: 10px;
        font-size: 16px !important;
        margin-top: 0 !important;
        display: block;
        float: left
    }
    
    .lp-dis-code-copy .popup-header strong,
    .lp-listing-announcement .popup-header strong {
        display: block;
        float: none
    }
    
    .lp-listing-announcement .popup-header strong {
        padding: 8px 13px
    }
    
    .offer-btn .lp-dis-code-copy {
        bottom: 55px
    }
    
    .deal-content .lp-dis-code-copy {
        bottom: 60px
    }
    
    .deal-content .lp-dis-code-copy:after {
        left: 40px
    }
    
    .lp-listing-bottom-right .lp-dis-code-copy {
        bottom: 70px
    }
    
    .lp-dis-code-copy:after,
    .lp-listing-announcements .lp-listing-announcement:after {
        display: block;
        content: ' ';
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-top: 10px solid #fff;
        position: absolute;
        bottom: -20px;
        left: 50%;
        margin-left: -5px
    }
    
    .offer-btn .lp-dis-code-copy:after {
        right: 20px;
        left: auto
    }
    
    .lp-listing-announcements .lp-listing-announcement:after {
        left: 37%
    }
    
    .lp-dis-code-copy strong {
        font-size: 20px;
        color: #7f7f7f;
        margin-top: 12px;
        margin: 0;
        display: block;
        float: left;
        padding: 10px
    }
    
    .lp-dis-code-copy span {
        font-weight: 400;
        display: inline-block;
        cursor: pointer;
        padding: 9px 10px;
        display: block;
        line-height: 10px;
        float: right
    }
    
    .lp-dis-code-copy input {
        position: absolute;
        z-index: -1;
        background-color: transparent;
        border: none;
        color: #fff;
        opacity: 0
    }
    
    .code-overlay {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, .2);
        position: fixed;
        z-index: 9;
        top: 0;
        left: 0;
        display: none
    }
    
    .close-copy-code {
        position: absolute;
        right: 10px;
        cursor: pointer;
        color: #fff;
        top: 8px
    }
    
    .lp-discount-widget .lp-discount-bottom {
        padding: 70px 20px 0 20px;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        margin-top: 25px
    }
    
    .lp-discount-widget .lp-discount-bottom strong.dishead {
        font-size: 18px;
        text-transform: capitalize;
        display: block;
        margin-bottom: 8px
    }
    
    .lp-discount-widget .lp-discount-thumb-tagline {
        border: solid 1px #73cf42;
        padding: 0 20px;
        color: #73cf42;
        display: inline-block;
        margin-bottom: 20px
    }
    
    .lp-widget.related-listings,
    .lp-widget.widget_listingpro_nearby_v2 {
        border: none
    }
    
    .lp-sidebar .lp-widget .lp-widget-title a {
        font-size: 14px;
        margin-left: 10px
    }
    
    footer.style3 {
        padding: 30px 0;
        border-top: solid 1px
    }
    
    footer .lp-footer-logo {
        float: left;
        max-width: 160px
    }
    
    footer .lp-footer-copyrights {
        margin-left: 15px;
        float: left;
        margin-top: 8px
    }
    
    footer .lp-footer-copyrights span {
        font-size: 16px !important
    }
    
    .footer-menu ul {
        list-style: none;
        margin-top: 7px
    }
    
    .lp-header .footer-menu ul {
        margin-top: 8px
    }
    
    .footer-menu ul li {
        float: right;
        margin: 0 10px
    }
    
    .footer-menu li:before {
        display: none
    }
    
    .lp-header .footer-menu ul li {
        margin-left: 0;
        margin-right: 20px
    }
    
    .footer-menu ul li a {
        font-size: 16px;
    }
    
    .rating-symbol:first-of-type::after,
    .rating-symbol:nth-child(2)::after,
    .rating-symbol:nth-child(3)::after,
    .rating-symbol:nth-child(4)::after,
    .rating-symbol:nth-child(5)::after,
    .ann-err-msg,
    .lp-dash-ann-list li form,
    .lp-dash-dis-list li form,
    .lp-dash-offer-list li form,
    .lp-menus-list li form {
        display: none
    }
    
    .lp-dash-ann-list li i,
    .lp-dash-dis-list li i,
    .lp-dash-offer-list li i {
        cursor: pointer
    }
    
    .lp-dash-offer-list li p {
        margin-bottom: 0;
        line-height: 35px
    }
    
    #input-dropdown>ul li {
        text-align: left;
        padding-left: 11px;
        padding-right: 11px
    }
    
    .list-style .grid-style-container {
        display: none
    }
    
    .grid-style .list-style-cotainer {
        display: none
    }
    
    .grid-style-container {
        min-height: 320px
    }
    
    .lp-listing-offers .lp-listing-offer {
        margin-bottom: 35px;
        position: relative;
        overflow: hidden
    }
    
    .lp_detail_page_styles1 .lp-listing-offers .lp-listing-offer,
    .lp_detail_page_styles2 .lp-listing-offers .lp-listing-offer,
    .lp_detail_page_styles5 .lp-listing-offers .lp-listing-offer {
        border-radius: 5px
    }
    
    .lp_detail_page_styles1 .lp-listing-offer .offer-bottom,
    .lp_detail_page_styles2 .lp-listing-offer .offer-bottom,
    .lp_detail_page_styles5 .lp-listing-offer .offer-bottom {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px
    }
    
    .lp-listing-offer .offer-top {
        padding: 38px 25px;
        border: solid 1px #dedede;
        padding-bottom: 20px;
        min-height: 100px;
    }
    
    .lp-listing-offer.offer-sidebar .offer-top {
        text-align: center;
        padding: 25px
    }
    
    .lp-listing-offer.offer-sidebar .offer-top .offer-tagline.tagline-margin {
        margin-bottom: 85px
    }
    
    .lp-listing-offer.offer-sidebar .offer-bottom .offer-thumb {
        left: 50%;
        margin-left: -75px
    }
    
    .lp-listing-offer.offer-sidebar .offer-bottom .offer-btn {
        position: static;
        margin-top: 50px
    }
    
    .lp-listing-offer.offer-sidebar .offer-top .offer-expiry strong {
        display: none
    }
    
    .offer-expiry .flip-clock-divider.minutes .flip-clock-label {
        left: 10px
    }
    
    .lp-listing-offer.offer-sidebar .offer-top .offer-expiry .flip-clock-wrapper {
        float: none;
        margin-left: 43px
    }
    
    .flip-clock-divider .flip-clock-label {
        margin-left: 0
    }
    
    .flip-clock-divider.minutes .flip-clock-label {
        margin-left: 1px
    }
    
    #offer-countdown-1 .flip-clock-divider.days .flip-clock-label,
    .lp-discount-widget .flip-clock-divider.days .flip-clock-label {
        left: 3px;
    }
    
    #offer-countdown-1 .flip-clock-divider.hours .flip-clock-label {
        left: 13px;
    }
    
    .lp-discount-widget .flip-clock-divider.hours .flip-clock-label {
        left: 11px;
    }
    
    #offer-countdown-1 .flip-clock-divider.minutes .flip-clock-label {
        left: 12px;
    }
    
    .listing-page-sidebar #lp-deals-countdown1 ul.flip li a {
        line-height: 33px;
    }
    
    .lp-discount-widget .flip-clock-divider.hours .flip-clock-label {
        margin-left: 2px
    }
    
    .lp-discount-widget .flip-clock-divider.minutes .flip-clock-label,
    .lp-discount-widget .flip-clock-divider.seconds .flip-clock-label {
        margin-left: 7px;
        top: -17px
    }
    
    .lp-listing-offer.offer-sidebar .offer-top .offer-expiry {
        margin-top: 25px;
        margin-bottom: 80px
    }
    
    .lp-listing-offer.offer-sidebar .offer-bottom .offer-title {
        margin-top: 20px
    }
    
    .lp-listing-offer .offer-bottom .offer-thumb {
        width: 150px;
        height: 150px;
        position: absolute;
        top: -75px
    }
    
    .lp-listing-offer .offer-bottom .offer-tagline {
        color: #73cf42;
        left: 0;
        font-weight: 400;
        padding: 6px 70px;
        border: 1px solid #73cf42;
        font-size: 16px;
        right: auto;
        vertical-align: bottom;
        text-align: center;
        display: inline-block
    }
    
    .lp-listing-offer .offer-top .offer-tagline {
        border: solid 1px #73cf42;
        padding: 2px 10px;
        color: #73cf42;
        margin-left: 160px;
        margin-top: 8px;
        display: inline-block;
        float: left
    }
    
    .lp-listing-offer.offer-sidebar .offer-top .offer-tagline {
        margin-left: 0;
        float: none
    }
    
    .lp-listing-offer .offer-bottom .offer-thumb img {
        width: 150px;
        height: 150px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%
    }
    
    .lp-listing-offer .offer-bottom .offer-thumb span.offer-num {
        position: absolute;
        background-color: #2690ff;
        color: #fff;
        width: 40px;
        text-align: center;
        padding: 6px 0;
        font-size: 20px;
        top: 5px
    }
    
    .lp-listing-offer .offer-top .offer-expiry {
        text-align: right;
        line-height: 44px
    }
    
    .lp-listing-offer .offer-top .offer-expiry .flip-clock-wrapper {
        width: auto;
        float: right;
        margin: 0;
        margin-left: 20px
    }
    
    .lp-listing-offer .offer-bottom {
        padding: 23px;
        background-color: #f7f9fa;
        position: relative;
        border: 1px solid #dedede;
        border-top: 0
    }
    
    .lp-listing-offer .offer-bottom .offer-title {
        display: block;
        margin-top: 70px;
        color: #333
    }
    
    .lp-listing-offer .offer-bottom .offer-description {
        position: relative
    }
    
    .lp-listing-offer .offer-bottom .offer-description p {
        line-height: 22px;
        margin-bottom: 0;
        max-width: 540px;
    }
    
    .lp-listing-offer .offer-bottom .offer-description p:first-child {
        margin-bottom: 4px
    }
    
    .lp-listing-offer .offer-bottom .offer-description p:last-child {
        margin-bottom: 0
    }
    
    .lp-listing-offer .offer-bottom .offer-btn {
        position: absolute;
        right: 25px;
        top: 0
    }
    
    .offer-description .lp-copy-code {
        padding: 8px 16px;
        color: #fff;
        background-color: #73cf42;
        text-transform: capitalize;
        margin-top: 20px;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
        position: absolute;
        bottom: 0;
        right: 0
    }
    
    .add-new-offer .upload-field,
    .add-new-discount-code .upload-field {
        margin-top: 0
    }
    
    .add-new-offer #frontend-button,
    .add-new-discount-code #frontend-button {
        margin-bottom: 0
    }
    
    #listingpro_nearby-2 {
        padding: 0
    }
    
    .lp-category-abs2 {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px
    }
    
    .lp-category-abs2:last-child {
        padding-right: 0
    }
    
    .lp-category-abs2 .lp-category-abs2-inner {
        position: relative
    }
    
    .lp-category-abs2 .lp-category-abs2-inner img {
        height: 375px;
        width: 100%
    }
    
    .lp-category-abs2.abs2-third,
    .lp-category-abs2.abs2-fourth {
        padding-right: 0
    }
    
    .lp-category-abs2.abs2-third .lp-category-abs2-inner img,
    .lp-category-abs2.abs2-fourth .lp-category-abs2-inner img {
        height: 182px
    }
    
    .lp-category-abs2 .lp-category-abs2-inner span {
        position: absolute;
        bottom: 15px;
        left: 15px;
        color: #fff;
        padding: 0 10px;
        transition: all 0.20s ease-in-out;
        font-family: 'Poppins',"Poppins Fallback";
        font-weight: 500;
        font-size: 16px;
        border-radius: 3px;
    }
    
    .lp-category-abs2 .lp-category-abs2-inner .lp-category-abs2-inner-sub-cats {
        position: absolute;
        padding: 0 10px;
        background-color: #555;
        color: #fff;
        bottom: 0;
        border-radius: 2px;
        left: 15px
    }
    
    .lp-category-abs2 .lp-category-abs2-inner.has-child-cats:hover span {
        bottom: 45px
    }
    
    .lp-category-abs2 .lp-category-abs2-inner .lp-category-abs2-inner-sub-cats a {
        color: #fff;
        font-size: 12px;
    }
    
    .lp-category-abs2 .lp-category-abs2-inner .lp-category-abs2-inner-sub-cats a:hover {
        text-decoration: underline
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner {
        background-color: #fafafa;
        margin-bottom: 30px;
        text-align: center;
        border: solid 1px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner:hover {
        -webkit-box-shadow: 0 0 15px 2px rgba(184, 184, 184, .79);
        -moz-box-shadow: 0 0 15px 2px rgba(184, 184, 184, .79);
        box-shadow: 0 0 15px 2px rgba(184, 184, 184, .79)
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner .lp-category-boxed2-inner-top,
    .lp-category-boxed2 .lp-category-boxed2-inner .lp-category-boxed2-inner-bottom {
        padding: 20px
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner .lp-category-boxed2-inner-top img {
        display: block;
        margin: 0 auto 6px auto;
        width: 66px;
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner .lp-category-boxed2-inner-top h5 {
        margin: 0
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner .lp-category-boxed2-inner-top {
        padding-top: 10px;
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner.with-icon {
        text-align: left
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner-bottom {
        border-top: solid 1px
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner-bottom li img {
        width: 24px;
        margin-right: 5px
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner-bottom li {
        margin-bottom: 3px;
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner-bottom li a {
        display: inline-block;
        vertical-align: middle;
    }
    
    .lp-category-boxed2 .lp-category-boxed2-inner-bottom li:last-child {
        margin-bottom: 0;
    }
    
    .widget_listingpro_ads_widget_v2 {
        padding: 0
    }
    
    .add-btn-v2 {
        border: 0
    }
    
    .lp-deals-wrap {
        margin-bottom: 35px
    }
    
    .lp-deals-wrap .lp-deal {
        position: relative;
        color: #fff;
        margin-bottom: 30px;
        overflow: hidden
    }
    
    .lp-deals-wrap .lp-deal .deal-details {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000
    }
    
    .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off {
        color: #fff;
        padding: 0 7px;
        position: absolute;
        top: 15px;
        left: 15px;
        border: solid 1px #fff
    }
    
    .lp-deals-wrap .lp-deal .deal-details .deal-button {
        padding: 4px 15px 4px 15px;
        transition: all 0.20s ease-in-out;
        display: inline-block;
        background-color: #73cf42 !important;
        color: #fff;
        margin-top: 4px;
        cursor: pointer
    }
    
    .lp-deals-wrap .lp-deal .deal-details .deal-content {
        width: 100%;
        position: absolute;
        padding: 15px;
        bottom: 0
    }
    
    .lp-deals-wrap .lp-deal .deal-details .deal-content p {
        margin-bottom: 0;
        color: #fff;
        line-height: 20px
    }
    
    .lp-deals-wrap .lp-deal .deal-details .lp-deal-validity span {
        color: #fff;
        font-size: 12px
    }
    
    .deal-countdown-wrap {
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 1;
    }
    
    .deal-countdown-wrap .flip-clock-label {
        color: #fff;
        top: auto;
        bottom: -15px;
        left: 6px
    }
    
    .deal-countdown-wrap .flip-clock-wrapper {
        margin: 0
    }
    
    .deal-countdown-wrap .flip-clock-wrapper ul li a div div.inn,
    .deal-countdown-wrap .flip-clock-wrapper ul li a div {
        font-size: 18px;
        border-radius: 0
    }
    
    .deal-countdown-wrap .flip-clock-wrapper ul li a {
        line-height: 30px;
        font-weight: 400
    }
    
    .deal-countdown-wrap .flip-clock-wrapper ul {
        height: 30px;
        box-shadow: none;
        border: solid 1px;
        margin: 0 2px 0 2px !important
    }
    
    .deal-countdown-wrap .flip-clock-divider {
        width: 4px
    }
    
    .fa-check-circle {
        color: #73cf42
    }
    
    .lp-listing-offer .flip-clock-wrapper .flip {
        border: solid 1px #e3e3e3;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none
    }
    
    .listing-page-sidebar .lp-widget.lp-discount-widget ul li {
        border: solid 1px
    }
    
    .lp-discount-count-wrap .lp-discount-countdown {
        margin-left: 35px
    }
    
    .deal-details .flip-clock-wrapper ul li a div div.inn {
        background-color: #fff
    }
    
    .lp-discount-count-wrap .flip li {
        border: none
    }
    
    .lp-pagination ul li>span.current:hover,
    .lp-pagination ul li>span.current,
    .lp-pagination ul li .page-numbers {
        line-height: 29px;
        padding: 0 12px;
        border-radius: 2px;
    }
    
    .lp-header-search .lp-search-btn {
        padding: 11px 25px 11px 40px;
    }
    
    .lp-header-search.archive-search .lp-search-btn {
        padding: 11px 30px 11px 40px
    }
    
    .lp-header-search.archive-search .lp-search-icon {
        font-size: 25px;
        left: 25px
    }
    
    .lp-header-search .lp-search-icon {
        left: 20px;
    }
    
    .nicescroll-cursors {
        background-color: rgb(236, 236, 236) !important
    }
    
    #input-dropdown {
        box-shadow: 0 2px 2px rgba(0, 0, 0, .3)
    }
    
    .form-group.submit-images.lp-review-images>input[type="file"] {
        width: 0
    }
    
    .lp-listing-menuu-wrap {
        margin-bottom: 35px;
        background-color: #fff;
        border: solid 1px;
        border-radius: 3px;
    }
    
    .lp-listing-menu-items {
        padding-bottom: 15px;
        padding-top: 15px;
    }
    
    .lp-listing-menu-items h6 {
        margin-bottom: 25px;
        margin-top: 25px;
        line-height: 13px;
        padding-bottom: 12px;
        position: relative;
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .lp-listing-menu-items h6:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 150%;
        height: 1px;
    }
    
    .lp-listing-menu-items .lp-listing-menu-item {
        border-bottom: solid 1px;
        margin-bottom: 15px;
        padding-bottom: 15px
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-thumb {
        margin-right: 15px;
        width: 65px;
        float: left
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-thumb img {
        border-radius: 2px;
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail {
        float: left;
        width: calc(100% - 200px)
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail .lp-menu-item-title {
        display: block;
        color: #333;
        line-height: 16px;
        margin-bottom: 10px
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail .lp-menu-order {}
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail .lp-menu-order img {
        display: inline-block;
        margin: 0;
    }
    
    .lp-menu-order-fields select {
        width: 100% !important;
        padding-top: inherit;
        box-shadow: none;
        height: 42px;
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail .lp-menu-item-tags {
        display: block;
        color: #797979;
        line-height: 17px;
        font-size: 13px;
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price {
        float: right
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price span {
        display: block;
        line-height: 16px;
        margin-bottom: 5px
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price span.old-price {
        color: #797979 !important
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price span.line-through {
        text-decoration: line-through;
        text-align: center;
    }
    
    .lp-listing-menu-top {
        line-height: 15px;
        text-align: center;
        padding: 42px 15px;
        background-color: #fafafa;
        margin-bottom: 0;
        border-bottom: solid 1px;
        position: relative
    }
    
    .lp-listing-menu-top span {
        line-height: 15px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
    }
    
    .lp-listing-menuu-slider .slick-arrow {
        top: 15px;
        box-shadow: none;
        padding: 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
        opacity: 1;
    }
    
    .lp-listing-menuu-slider .arrow-right::before,
    .lp-listing-menuu-slider .arrow-left::before {
        color: unset;
    }
    
    .lp-listing-menuu-slider .slick-arrow.arrow-right {
        left: 15px
    }
    
    .lp-listing-menuu-slider .slick-arrow.arrow-left {
        right: 15px
    }
    
    .flip-clock-wrapper ul {
        border-radius: 0
    }
    
    .lp-review-form-top a.browse-imgs {
        border-radius: 3px;
    }
    
    .lp-locations .lp-location-box .lp-location-bottom a span.lp-cat-list-count {
        display: block;
        opacity: 0;
        position: relative;
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out
    }
    
    .lp-locations .lp-location-box:hover .lp-location-bottom a span.lp-cat-list-count {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
    
    .lp-category-abs2-inner-sub-cats {
        opacity: 0;
        bottom: 0;
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out
    }
    
    .lp-category-abs2 .lp-category-abs2-inner.has-child-cats:hover .lp-category-abs2-inner-sub-cats {
        opacity: 1;
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px)
    }
    
    .lp-category-abs2 .lp-category-abs2-inner {
        overflow: hidden;
        border-radius: 3px;
    }
    
    .sort-filter-inner:after {
        content: "";
        width: 0;
        height: 0;
        border-left: 8px solid transparent !important;
        border-right: 8px solid transparent !important;
        border-bottom: 8px solid #fff !important;
        position: absolute;
        top: -8px !important;
        left: 10px
    }
    
    .sort-by-filter {
        position: relative
    }
    
    .sort-filter-inner p {
        text-align: center;
        margin: 0;
        font-size: 11px
    }
    
    .price-filter .simptip-position-top:before,
    .price-filter .simptip-position-top:after {
        bottom: 77%
    }
    
    .menu ul.children li>a::before,
    .menu ul.sub-menu li>a::before,
    .lp-user-menu li>a::before {
        display: none
    }
    
    .menu ul.children li:hover>a,
    .menu ul.sub-menu li:hover>a,
    .lp-user-menu li:hover>a {
        border-left: solid 2px
    }
    
    .menu ul.children li>a,
    .menu ul.sub-menu li>a,
    .lp-user-menu li>a {
        border-left: solid 2px transparent
    }
    
    .menu ul.children,
    .menu ul.sub-menu {
        border-left: none
    }
    
    .flip-clock-divider .flip-clock-label {
        font-size: 12px;
        bottom: -10px
    }
    
    .flip-clock-divider.hours .flip-clock-label {
        bottom: -14px
    }
    
    .lp-deals-wrap .lp-deal .deal-details .flip-clock-divider.hours .flip-clock-label {
        bottom: -16px
    }
    
    .lp-detail-section-title {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 500;
    }
    
    .grid-style3 .lp-blog-grid-box-thumb,
    .new-list-style .lp-blog-grid-box-thumb {
        position: relative
    }
    
    .grid-style3 .lp-blog-grid-title {
        position: absolute;
        width: 85%;
        bottom: 0;
        left: 0;
        text-align: center;
        padding: 0
    }
    
    .grid-style3 .lp-blog-grid-title h4 {
        background-color: #fff;
        margin: 0;
        text-align: left;
        padding: 20px;
        padding-bottom: 15px
    }
    
    .grid-style3 .lp-blog-grid-title h4 a {
        display: inline-block
    }
    
    .grid-style3 .lp-blog-grid-box-description {
        padding: 0 35px 10px 20px
    }
    
    .grid-style3 .lp-blog-grid-date,
    .new-list-style .lp-blog-grid-date {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: #141414;
        font-size: 14px;
        padding: 0 7px;
        color: #fff
    }
    
    .grid-style3 .lp-blog-grid-category {
        margin-top: 0
    }
    
    .grid-style3 .lp-blog-grid-author li,
    .new-list-style .lp-blog-grid-author li {
        margin-right: 15px
    }
    
    .grid-style3 .lp-blog-grid-author li a span,
    .grid-style3 .lp-blog-grid-author li a,
    .new-list-style .lp-blog-grid-author li a span,
    .new-list-style .lp-blog-grid-author li a {
        font-size: 12px
    }
    
    .lp-blog-grid-author li.category-link a {
        padding: 2px 5px;
        transition: all 0.20s ease-in-out;
        background-color: #737373;
        border-top: solid 1px #737373;
        color: #fff
    }
    
    .grid-style3 .lp-blog-grid-box-description p,
    .new-list-style .lp-blog-grid-box-description p {
        line-height: 22px;
        margin-top: 10px;
        margin-bottom: 20px;
        height: 65px;
        overflow: hidden
    }
    
    .new-list-style .lp-blog-grid-box-description p {
        height: 40px;
        margin-bottom: 16px;
        padding-right: 40px
    }
    
    .grid-style3 .lp-blog-grid-link,
    .new-list-style .lp-blog-grid-link {
        padding: 5px 15px 3px 15px;
        display: inline-block;
        margin: 7px 0 15px 0;
        transition: all 0.20s ease-in-out
    }
    
    .new-list-style .lp-blog-grid-link {
        margin-bottom: 0
    }
    
    .grid-style3 .lp-blog-grid-link:hover,
    .new-list-style .lp-blog-grid-link:hover,
    .blog-social .lp-blog-grid-link:hover {
        opacity: .7
    }
    
    .grid-style3 .lp-blog-grid-shares,
    .blog-social .lp-blog-grid-shares,
    .new-list-style .lp-blog-grid-shares {
        float: right;
        margin-top: 8px;
        position: relative
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares {
        float: none
    }
    
    .blog-social .lp-blog-grid-shares {
        margin-top: 0
    }
    
    .grid-style3 .lp-blog-grid-shares {
        margin-right: -20px
    }
    
    .lp-blog-grid-shares-contact-page a {
        color: #fff;
        background-color: #878686;
        float: left;
        display: inline-block;
        margin-right: 6px;
        line-height: 36px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        font-size: 16px;
        border-radius: 50px;
        transition: all 0.20s ease-in-out;
    }
    
    .lp-blog-grid-shares-contact-page a.icon-fb {
        background-color: #899dce
    }
    
    .lp-blog-grid-shares-contact-page a.icon-tw {
        background-color: #60d2f5
    }
    
    .lp-blog-grid-shares-contact-page a.icon-gp.icon-gp {
        background-color: #d34836
    }
    
    .lp-blog-grid-shares-contact-page a.icon-pin {
        background-color: #f74c53
    }
    
    .lp-blog-grid-shares-contact-page a:hover {
        opacity: .8
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon,
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon,
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon {
        display: block;
        background-color: #878686;
        color: #fff;
        padding-left: 2px;
        padding-right: 2px;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        left: 0;
        top: 0;
        text-align: center;
        z-index: 1;
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
        -o-transition: all .3s linear;
        transition: all .3s linear;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition-delay: 0s;
        -webkit-transition-delay: 0s;
        width: 32px;
        padding-top: 5px;
        padding-bottom: 3px;
        border-radius: 50px
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-fb,
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-fb,
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-fb {
        background-color: #899dce
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-tw,
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-tw,
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-tw {
        background-color: #60d2f5
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-gp,
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-gp,
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-gp {
        background-color: #d34836
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-pin,
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-pin,
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon.icon-pin {
        background-color: #f74c53
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(1),
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(1),
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(1) {
        -webkit-transform: translate3d(-32px, 0, 0);
        -moz-transform: translate3d(-32px, 0, 0);
        -ms-transform: translate3d(-32px, 0, 0);
        -o-transform: translate3d(-32px, 0, 0);
        transform: translate3d(-32px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(1) {
        -webkit-transform: translate3d(32px, 0, 0);
        -moz-transform: translate3d(32px, 0, 0);
        -ms-transform: translate3d(32px, 0, 0);
        -o-transform: translate3d(32px, 0, 0);
        transform: translate3d(32px, 0, 0)
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(2),
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(2),
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(2) {
        -webkit-transform: translate3d(-32px, 0, 0);
        -moz-transform: translate3d(-32px, 0, 0);
        -ms-transform: translate3d(-32px, 0, 0);
        -o-transform: translate3d(-32px, 0, 0);
        transform: translate3d(-32px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(2) {
        -webkit-transform: translate3d(36px, 0, 0);
        -moz-transform: translate3d(36px, 0, 0);
        -ms-transform: translate3d(36px, 0, 0);
        -o-transform: translate3d(36px, 0, 0);
        transform: translate3d(36px, 0, 0)
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(3),
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(3),
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(3) {
        -webkit-transform: translate3d(-68px, 0, 0);
        -moz-transform: translate3d(-68px, 0, 0);
        -ms-transform: translate3d(-68px, 0, 0);
        -o-transform: translate3d(-68px, 0, 0);
        transform: translate3d(-68px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(3) {
        -webkit-transform: translate3d(72px, 0, 0);
        -moz-transform: translate3d(72px, 0, 0);
        -ms-transform: translate3d(72px, 0, 0);
        -o-transform: translate3d(72px, 0, 0);
        transform: translate3d(72px, 0, 0)
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(4),
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(4),
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(4) {
        -webkit-transform: translate3d(-104px, 0, 0);
        -moz-transform: translate3d(-104px, 0, 0);
        -ms-transform: translate3d(-104px, 0, 0);
        -o-transform: translate3d(-104px, 0, 0);
        transform: translate3d(-104px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(4) {
        -webkit-transform: translate3d(108px, 0, 0);
        -moz-transform: translate3d(108px, 0, 0);
        -ms-transform: translate3d(108px, 0, 0);
        -o-transform: translate3d(108px, 0, 0);
        transform: translate3d(108px, 0, 0)
    }
    
    .new-list-style .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(5),
    .grid-style3 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(5),
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(5) {
        -webkit-transform: translate3d(-140px, 0, 0);
        -moz-transform: translate3d(-140px, 0, 0);
        -ms-transform: translate3d(-140px, 0, 0);
        -o-transform: translate3d(-140px, 0, 0);
        transform: translate3d(-140px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(5) {
        -webkit-transform: translate3d(144px, 0, 0);
        -moz-transform: translate3d(144px, 0, 0);
        -ms-transform: translate3d(144px, 0, 0);
        -o-transform: translate3d(144px, 0, 0);
        transform: translate3d(144px, 0, 0)
    }
    
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(6) {
        -webkit-transform: translate3d(-176px, 0, 0);
        -moz-transform: translate3d(-176px, 0, 0);
        -ms-transform: translate3d(-176px, 0, 0);
        -o-transform: translate3d(-176px, 0, 0);
        transform: translate3d(-176px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(6) {
        -webkit-transform: translate3d(180px, 0, 0);
        -moz-transform: translate3d(180px, 0, 0);
        -ms-transform: translate3d(180px, 0, 0);
        -o-transform: translate3d(180px, 0, 0);
        transform: translate3d(176px, 0, 0)
    }
    
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(7) {
        -webkit-transform: translate3d(-212px, 0, 0);
        -moz-transform: translate3d(-212px, 0, 0);
        -ms-transform: translate3d(-212px, 0, 0);
        -o-transform: translate3d(-212px, 0, 0);
        transform: translate3d(-212px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(7) {
        -webkit-transform: translate3d(216px, 0, 0);
        -moz-transform: translate3d(216px, 0, 0);
        -ms-transform: translate3d(216px, 0, 0);
        -o-transform: translate3d(216px, 0, 0);
        transform: translate3d(216px, 0, 0)
    }
    
    .blog-social .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(8) {
        -webkit-transform: translate3d(-248px, 0, 0);
        -moz-transform: translate3d(-248px, 0, 0);
        -ms-transform: translate3d(-248px, 0, 0);
        -o-transform: translate3d(-248px, 0, 0);
        transform: translate3d(-248px, 0, 0)
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares .lp-blog-grid-shares-icon:nth-child(8) {
        -webkit-transform: translate3d(252px, 0, 0);
        -moz-transform: translate3d(252px, 0, 0);
        -ms-transform: translate3d(252px, 0, 0);
        -o-transform: translate3d(252px, 0, 0);
        transform: translate3d(252px, 0, 0)
    }
    
    .new-list-style .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon,
    .grid-style3 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon,
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon {
        visibility: visible;
        pointer-events: auto;
        opacity: 1;
        z-index: 0
    }
    
    .new-list-style .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(1),
    .grid-style3 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(1),
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(1) {
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
        -o-transition: all .3s linear;
        transition: all .3s linear
    }
    
    .new-list-style .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(2),
    .grid-style3 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(2),
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(2) {
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
        -o-transition: all .3s linear;
        transition: all .3s linear
    }
    
    .new-list-style .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(3),
    .grid-style3 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(3),
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(3) {
        -webkit-transform: translateX(-68px);
        -moz-transform: translateX(-68px);
        -ms-transform: translateX(-68px);
        -o-transform: translateX(-68px);
        transform: translateX(-68px);
        transition-delay: .2s;
        -webkit-transition-delay: .2s
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(3) {
        -webkit-transform: translateX(72px);
        -moz-transform: translateX(72px);
        -ms-transform: translateX(72px);
        -o-transform: translateX(72px);
        transform: translateX(72px);
        transition-delay: .2s;
        -webkit-transition-delay: .2s
    }
    
    .new-list-style .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(4),
    .grid-style3 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(4),
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(4) {
        -webkit-transform: translateX(-104px);
        -moz-transform: translateX(-104px);
        -ms-transform: translateX(-104px);
        -o-transform: translateX(-104px);
        transform: translateX(-104px);
        transition-delay: .3s;
        -webkit-transition-delay: .3s
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(4) {
        -webkit-transform: translateX(108px);
        -moz-transform: translateX(108px);
        -ms-transform: translateX(108px);
        -o-transform: translateX(108px);
        transform: translateX(108px);
        transition-delay: .3s;
        -webkit-transition-delay: .3s
    }
    
    .new-list-style .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(5),
    .grid-style3 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(5),
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(5) {
        -webkit-transform: translateX(-140px);
        -moz-transform: translateX(-140px);
        -ms-transform: translateX(-140px);
        -o-transform: translateX(-140px);
        transform: translateX(-140px);
        transition-delay: .4s;
        -webkit-transition-delay: .4s
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(5) {
        -webkit-transform: translateX(144px);
        -moz-transform: translateX(144px);
        -ms-transform: translateX(144px);
        -o-transform: translateX(144px);
        transform: translateX(144px);
        transition-delay: .4s;
        -webkit-transition-delay: .4s
    }
    
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(6) {
        -webkit-transform: translate3d(-176px, 0, 0);
        -moz-transform: translate3d(-176px, 0, 0);
        -ms-transform: translate3d(-176px, 0, 0);
        -o-transform: translate3d(-176px, 0, 0);
        transform: translate3d(-176px, 0, 0);
        transition-delay: .5s;
        -webkit-transition-delay: .5s
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(6) {
        -webkit-transform: translate3d(180px, 0, 0);
        -moz-transform: translate3d(180px, 0, 0);
        -ms-transform: translate3d(180px, 0, 0);
        -o-transform: translate3d(180px, 0, 0);
        transform: translate3d(180px, 0, 0);
        transition-delay: .5s;
        -webkit-transition-delay: .5s
    }
    
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(7) {
        -webkit-transform: translate3d(-212px, 0, 0);
        -moz-transform: translate3d(-212px, 0, 0);
        -ms-transform: translate3d(-212px, 0, 0);
        -o-transform: translate3d(-212px, 0, 0);
        transform: translate3d(-212px, 0, 0);
        transition-delay: .6s;
        -webkit-transition-delay: .6s
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(7) {
        -webkit-transform: translate3d(216px, 0, 0);
        -moz-transform: translate3d(216px, 0, 0);
        -ms-transform: translate3d(216px, 0, 0);
        -o-transform: translate3d(216px, 0, 0);
        transform: translate3d(216px, 0, 0);
        transition-delay: .6s;
        -webkit-transition-delay: .6s
    }
    
    .blog-social .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(8) {
        -webkit-transform: translate3d(-248px, 0, 0);
        -moz-transform: translate3d(-248px, 0, 0);
        -ms-transform: translate3d(-248px, 0, 0);
        -o-transform: translate3d(-248px, 0, 0);
        transform: translate3d(-248px, 0, 0);
        transition-delay: .7s;
        -webkit-transition-delay: .7s
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares:hover .lp-blog-grid-shares-icon:nth-child(8) {
        -webkit-transform: translate3d(225px, 0, 0);
        -moz-transform: translate3d(252px, 0, 0);
        -ms-transform: translate3d(252px, 0, 0);
        -o-transform: translate3d(252px, 0, 0);
        transform: translate3d(252px, 0, 0);
        transition-delay: .7s;
        -webkit-transition-delay: .7s
    }
    
    .grid-style3 .lp-blog-grid-shares span i,
    .blog-social .lp-blog-grid-shares span i,
    .new-list-style .lp-blog-grid-shares span i {
        border: solid 1px;
        padding: 8px 10px 8px 9px;
        border-radius: 50px;
        margin-left: 4px;
        transition: all 0.20s ease-in-out;
        cursor: pointer
    }
    
    .blog-social.contact-style2 .lp-blog-grid-shares span i {
        margin-left: 0;
        margin-right: 0
    }
    
    .new-list-style .lp-blog-grid-box-container {
        background-color: #fff;
        border: none
    }
    
    .new-list-style .lp-blog-grid-box-container .col-md-7 {
        padding-left: 5px
    }
    
    .new-list-style .lp-blog-grid-title {
        padding: 0
    }
    
    .new-list-style .lp-blog-grid-title h4 {
        margin-top: 0
    }
    
    .new-list-style .lp-blog-grid-box-description {
        padding: 20px 20px 20px 0
    }
    
    .lp-blog-grid-share {
        position: absolute;
        top: 0;
        width: 150px;
        right: 25px;
        display: none
    }
    
    .lp-blog-grid-share li {
        float: left;
        width: 50px;
        text-align: center
    }
    
    .imo-widget-title-container {
        position: relative
    }
    
    .imo-widget-title-container:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 2px;
        top: 40%;
        transform: translateY(-50%);
        display: block;
        z-index: 0;
    }
    
    .imo-widget-title-container .widget-title {
        position: relative;
        background-color: #fff;
        padding-right: 15px;
        font-size: 16px !important;
        margin-bottom: 0 !important
    }
    
    .imo-widget-title-container .widget-title:after {
        display: none
    }
    
    .jw-recent-posts-widget .recent-thumb {
        border-radius: 0
    }
    
    .jw-recent-content {
        width: calc(100% - 130px)
    }
    
    .jw-recent-content.with-thumb p {
        display: none
    }
    
    .jw-recent-content.with-thumb .meta {
        display: block
    }
    
    .jw-recent-posts-widget .jw-recent-content.with-thumb>h3 a {
        line-height: 12px;
        font-size: 14px !important;
        margin-bottom: 0 !important
    }
    
    .jw-recent-content .meta .date {
        border: none
    }
    
    #sidebar aside.widget ul li {
        padding: 15px 0 !important;
        border-bottom: 1px solid #f0f0f0
    }
    
    #sidebar aside.widget.widget_categories ul li {
        padding: 10px 0 !important
    }
    
    .tagcloud a {
        color: #7f7f7f
    }
    
    #sidebar aside.widget.widget_recent_entries li {
        padding: 10px 0 !important
    }
    
    #sidebar aside.widget.widget_recent_entries li span {
        display: block;
        font-size: 12px;
        color: #b0b0b0
    }
    
    #sidebar aside.widget.widget_categories ul li {
        padding: 2px 0 !important;
        border: none
    }
    
    #sidebar aside.widget.widget_recent_entries li a {
        color: #333;
        line-height: 18px
    }
    
    .sidebar-style1 #sidebar .widget {
        padding: 13px 20px 30px 20px !important
    }
    
    .sidebar-style1 #sidebar .widget:last-child {
        padding-bottom: 0 !important
    }
    
    .sidebar-style1 #sidebar {
        border-radius: 0 !important
    }
    
    .element-inner-button {
        font-size: 15px;
        border: solid 1px #e2e2e2;
        padding: 0 10px;
        transition: all 0.20s ease-in-out;
        position: absolute;
        z-index: 10;
        right: 15px;
        display: inline-block;
        top: -50px;
        border-radius: 3px;
        text-transform: capitalize;
    }
    
    .lp-listings .element-inner-button {
        right: 15px
    }
    
    .lp-listing-action-btns ul li div a:hover>i {
        color: #fff
    }
    
    .blog-single-page.blog-single-page-style2 {
        height: 480px
    }
    
    .page-container-second-style2 {
        margin-top: -57px
    }
    
    .page-container-second-style2 .blog-single-inner-container .blog-content-outer-container {
        padding-top: 100px;
        border: 0;
        border-radius: 0
    }
    
    .page-container-second-style2 #sidebar {
        margin-top: 105px
    }
    
    .page-container-second-style2 .blog-pagination a,
    .page-container-second-style2 .lp-review-btn {
        border-radius: 0
    }
    
    .blog-page-heading-style2 {
        margin-bottom: -90px
    }
    
    .blog-single-page .blog-page-heading-style2 .lp-blog-user-thumb {
        position: absolute;
        margin-left: 20px
    }
    
    .blog-page-heading-style2 .lp-blog-grid-author,
    .blog-page-heading-style2 .breadcrumbs {
        margin-top: -1px;
        padding-top: 10px
    }
    
    .blog-single-page .blog-page-heading-style2 .lp-blog-grid-author li i,
    .blog-single-page .blog-page-heading-style2 .lp-blog-grid-author li span {
        color: #363F48 !important
    }
    
    .blog-page-heading-style2 .breadcrumbs,
    .blog-page-heading-style2 .lp-blog-grid-author,
    .blog-page-heading-style2 h1 {
        width: 80%;
        background-color: #fff;
        padding: 0 20px
    }
    
    .blog-page-heading-style2 .breadcrumbs {
        padding-bottom: 10px
    }
    
    .blog-page-heading-style2 .lp-blog-grid-author {
        padding: 0 20px 12px 20px !important
    }
    
    .blog-page-heading-style2 h1 {
        margin: 0;
        padding-top: 40px;
        padding-bottom: 10px;
        font-size: 34px
    }
    
    .blog-page-heading-style2 .breadcrumbs a,
    .blog-page-heading-style2 .breadcrumbs span,
    .blog-page-heading-style2 h1,
    .blog-page-heading-style2 .lp-blog-grid-author a span,
    .blog-page-heading-style2 .lp-blog-grid-author a i {
        color: #333
    }
    
    .price-filter .simptip-position-top.simptip-movable:hover:before,
    .price-filter .simptip-position-top.simptip-movable:hover:after {
        -webkit-transform: translate(-50%, -13px);
        -moz-transform: translate(-50%, -13px);
        -ms-transform: translate(-50%, -13px);
        -o-transform: translate(-50%, -13px);
        transform: translate(-50%, -13px)
    }
    
    .price-filter .simptip-position-top.simptip-movable:hover:after {
        border-radius: 2px;
    }
    
    .discount_displayin_wrap {
        position: relative
    }
    
    .discount_displayin_wrap i {
        position: absolute;
        z-index: 2;
        right: 20px;
        top: 42px
    }
    
    .city-thumb2 img {
        min-height: 240px
    }
    
    .lp-home-banner-contianer .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single {
        width: 98%
    }
    
    .lp-home-banner-contianer .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single span {
        margin-left: 70px;
        line-height: 46px;
    }
    
    .lp-listing-leadform {
        background-color: #fff;
        border: 1px solid #dedede;
        border-radius: 3px;
        margin-bottom: 25px;
    }
    
    .lp-listing-leadform h4 {
        font-weight: 500;
        font-size: 16px;
        margin: 0;
        text-transform: capitalize;
        padding: 16px 20px;
    }
    
    .lp-listing-leadform-inner .form-horizontal {
        margin-top: 0
    }
    
    .lp-listing-leadform-inner .form-horizontal .form-group {
        margin-left: 20px;
        margin-right: 20px
    }
    
    .lp-listing-leadform-inner .form-horizontal .form-group .form-control {
        border-radius: 3px
    }
    
    .lp-listing-leadform-inner .form-horizontal .form-group.pos-relative {
        margin-left: -1px;
        margin-right: -1px;
        margin-bottom: -1px;
    }
    
    .lp-listing-leadform-inner .form-horizontal input[type="submit"] {
        width: 100%;
        border-radius: 0;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        color: #fff;
        font-size: 16px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing-leadform-inner .form-horizontal .form-group.pos-relative i {
        color: #fff;
        top: 13px;
        left: 37%
    }
    
    .lp-header-search-wrap .lp-dyn-city,
    .lp-header-search-tagline.text-center {
        font-size: 28px !important;
        font-weight: 300;
    }
    
    .lp-header-search-wrap .lp-header-search-tagline-sidebar-banner .lp-dyn-city {
        font-size: 50px !important;
        font-weight: 700;
    }
    
    .listing-simple .lp-listings.list-style.active-view {
        width: 900px;
        margin-left: auto;
        margin-right: auto
    }
    
    .listing-simple .listing-with-header-filters-wrap .active-view.grid-style,
    .listing-simple .listing-with-header-filters-wrap .active-view.list-style {
        width: auto
    }
    
    .dashboard-tabs.lp-main-tabs.text-center>ul>li>a {
        line-height: 47px
    }
    
    .listing-style4 .list_view .lp-grid-box-thumb-container {
        width: 34%
    }
    
    .listing-style4 .list_view .lp-grid-box-thumb-container {
        width: 34%
    }
    
    .listing-style4 .list_view.lp-grid-box-contianer .lp-grid-box-description {
        width: 65%
    }
    
    .lp-child-cats-tax {
        padding: 0 12px;
        margin-bottom: 15px;
        overflow: hidden;
        height: 132px
    }
    
    .lp-child-cats-tax.style-fullwidth {
        height: 117px
    }
    
    .lp-child-cats-tax .lp-child-cats-tax-inner {
        position: relative;
        padding: 0 3px;
        overflow: hidden
    }
    
    .lp-child-cats-tax .lp-child-cats-tax-wrap {
        padding: 0
    }
    
    .col-grid-3.lp-child-cats-tax-wrap {
        width: 33.3%;
        float: left
    }
    
    .col-grid-5.lp-child-cats-tax-wrap {
        width: 20%;
        display: block;
        float: left
    }
    
    .lp-header-search-wrap {
        background-size: cover;
    }
    
    .lp-child-cats-tax .lp-child-cat-tax-name {
        position: absolute;
        width: 246px;
        height: 100%;
        top: 0;
        left: 0;
        transition: all 0.20s ease-in-out;
        background-color: rgba(0, 0, 0, .45);
        margin-left: 3px;
        text-align: center
    }
    
    .lp-child-cats-tax .lp-child-cat-tax-name:hover {
        background-color: #ff5a5f
    }
    
    .style-fullwidth.lp-child-cats-tax .lp-child-cat-tax-name,
    .style-fullwidth.lp-child-cats-tax .lp-child-cat-tax-thumb {
        width: 229px
    }
    
    .lp-child-cats-tax .lp-child-cat-tax-name a {
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        padding: 54px 5px;
        display: inline-block;
        width: 100%;
        position: relative
    }
    
    .lp-child-cats-tax .lp-child-cat-tax-name a span {
        font-weight: 400;
        font-size: 14px
    }
    
    .lp-child-cats-tax .lp-child-cat-tax-name a span {
        display: block;
        color: #fff;
        position: absolute;
        width: 100%;
        bottom: -24px;
        left: 0;
        transition: all 0.20s ease-in-out
    }
    
    .lp-child-cats-tax .lp-child-cat-tax-name a:hover span {
        bottom: 30px;
        left: 0
    }
    
    .lp-child-cats-tax-slider .arrow-right,
    .lp-child-cats-tax-slider .arrow-left {
        margin-top: -16px
    }
    
    .lp-review-btn {
        font-family: 'Quicksand',"Quicksand Fallback", sans-serif
    }
    
    .add-form-hide-wrap {
        display: none
    }
    
    .add-form-hide-wrap.show-form {
        display: block
    }
    
    .listing-view-layout-v2 ul li a {
        border: none;
        width: auto;
        height: 38px;
    }
    
    .hours-select>li>button.add-hours>span {
        font-size: 31px;
        line-height: 45px !important
    }
    
    .select2-dash .select2-selection__rendered {
        line-height: 40px !important
    }
    
    .select2-dash .select2-selection {
        height: 40px;
        line-height: 40px !important;
        border: 1px solid #e3e3e3
    }
    
    .select2-dash .select2-selection .select2-selection__arrow {
        height: 40px
    }
    
    .container.pos-relative {
        position: relative
    }
    
    .sidebar-top0 {
        position: absolute;
        right: 0;
        z-index: 1;
        top: -420px;
    }
    
    .sidebar-top138 {
        top: -138px;
        position: absolute;
        right: 0
    }
    
    .lp-listing-top-title-header {
        background-color: #f0f3f6;
        padding-top: 40px;
        margin-bottom: 40px;
        position: relative
    }
    
    .lp-listing-top-title-header .lp-header-overlay {
        z-index: 0
    }
    
    .form-page-heading.form-page-heading_style2 {
        text-align: center;
        margin-bottom: 20px
    }
    
    .form-page-heading_style2:after {
        display: block;
        content: ' ';
        border: dashed 2px #333;
        width: 28px;
        margin: 0 auto
    }
    
    .lp-section-content .submit_new_style .author-section.author-section-style2.lp-form-row {
        background-color: #bdc3c7;
        padding: 25px 60px;
        border-radius: 0
    }
    
    .author-section.author-section-style2 .avatar-circle {
        height: 95px;
        width: 95px;
        margin-right: 20px
    }
    
    .lp-section-content .submit_new_style .author-section-style2 .lp-form-row-left>p {
        color: #fff;
        width: calc(100% - 125px);
        line-height: 20px
    }
    
    .lp-section-content .submit_new_style .author-section-style2 .lp-form-row-left>p a.author-section-logout {
        float: right;
        font-size: 16px;
        border: solid 1px #fff;
        padding: 8px 20px;
        color: #fff
    }
    
    .lp-ann-btn {
        color: #afafaf !important;
        border: solid 1px #dedede;
        line-height: 20px;
        display: inline-block;
        padding: 1px 10px;
        margin-top: 8px;
        transition: all 0.20s ease-in-out;
        font-size: 13px;
        margin-right: 5px;
        border-radius: 3px;
        min-width: 137px;
        text-align: center;
    }
    
    .lp-ann-btn .fa {
        color: #ff5a5f !important;
    }
    
    .lp-no-review-btn {
        font-style: italic;
    }
    
    .list-style .lp-no-review-btn {
        margin-bottom: 7px !important;
    }
    
    .lp-review-form-top-multi .rating-symbol {
        font-size: 10px
    }
    
    .lp-review-form-top-multi .lp-multi-rating-ui-wrap {
        width: 65%
    }
    
    .lp-review-form-top-multi .lp-review-images-multi {
        width: 35%
    }
    
    .lp-multi-rating-ui-wrap .rating-symbol {
        font-size: 7px;
        margin-right: 0;
    }
    
    .flip-clock-divider.minutes .flip-clock-label {
        left: 5px
    }
    
    .lp_detail_page_styles5 .lp-listing-announcement .announcement-wrap a,
    .lp_detail_page_styles5 .lp-listing-offer .offer-bottom .offer-btn a,
    .lp_detail_page_styles5 .lp-listing-offer .offer-top .offer-tagline,
    .lp_detail_page_styles5 .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off,
    .lp_detail_page_styles5 .lp-deals-wrap .lp-deal .deal-details .deal-button {
        border-radius: 20px
    }
    
    .lp_detail_page_styles5 .lp-listing-announcement.active-ann .announcement-wrap a {
        border-radius: 0
    }
    
    .lp_detail_page_styles5 .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off {
        padding: 2px 10px
    }
    
    .lp_detail_page_styles2 .lp-listing-announcement .announcement-wrap a,
    .lp_detail_page_styles2 .lp-listing-offer .offer-bottom .offer-btn a,
    .lp_detail_page_styles2 .lp-listing-offer .offer-top .offer-tagline,
    .lp_detail_page_styles2 .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off,
    .lp_detail_page_styles2 .lp-deals-wrap .lp-deal .deal-details .deal-button,
    .lp_detail_page_styles1 .lp-listing-announcement .announcement-wrap a,
    .lp_detail_page_styles1 .lp-listing-offer .offer-bottom .offer-btn a,
    .lp_detail_page_styles1 .lp-listing-offer .offer-top .offer-tagline,
    .lp_detail_page_styles1 .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off,
    .lp_detail_page_styles1 .lp-deals-wrap .lp-deal .deal-details .deal-button {
        border-radius: 5px
    }
    
    .lp_detail_page_styles1 .lp-discount-widget .lp-discount-btn,
    .lp_detail_page_styles2 .lp-discount-widget .lp-discount-btn {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px
    }
    
    .lp_detail_page_styles1 .flip-clock-wrapper ul li a,
    .lp_detail_page_styles2 .flip-clock-wrapper ul li a {
        background: #fff;
        border: 1px solid #dedede;
    }
    
    .lp-search-bar.lp-header-search-form #input-dropdown,
    .header-filter #input-dropdown,
    .lp-search-bar.lp-header-search-form .chosen-container-single .chosen-drop {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }
    
    .page-heading-inner-container.page-heading-new {
        z-index: 10
    }
    
    .breadcrumb-style2 .container {
        z-index: 10;
        padding-top: 35px;
        position: relative
    }
    
    .lp-author-banner .lp-banner-top {
        height: 130px;
        position: relative
    }
    
    .lp-author-banner .lp-banner-top .lp-header-overlay {
        z-index: 0
    }
    
    .lp-author-banner .lp-banner-top .lp-banner-top-thumb {
        position: absolute;
        margin-top: 47px;
        z-index: 2
    }
    
    .lp-author-banner .lp-banner-top .lp-banner-top-thumb img {
        width: 165px;
        height: 165px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%
    }
    
    .lp-author-banner .lp-banner-top .lp-banner-top-detail {
        float: left;
        margin-left: 185px;
        margin-top: 30px;
        color: #fff;
        position: relative
    }
    
    .lp-author-banner .lp-banner-top .lp-banner-top-detail h3,
    .lp-author-banner .lp-banner-top .lp-banner-top-detail p {
        color: #fff
    }
    
    .lp-author-banner .lp-banner-top .lp-banner-date {
        color: #fff;
        float: right;
        margin-top: 70px;
        position: relative
    }
    
    .lp-author-banner .lp-banner-top .lp-banner-date p {
        color: #fff;
        margin-bottom: 0;
        margin-top: 13px
    }
    
    .lp-author-banner .lp-banner-bottom {
        padding-top: 40px;
        padding-bottom: 40px;
        border-bottom: solid 1px #e7e7e7;
        min-height: 106px
    }
    
    .lp-banner-bottom .lp-banner-bottom-left {
        float: left;
        margin-left: 185px
    }
    
    .lp-banner-bottom .lp-banner-bottom-left li {
        display: inline-block;
        margin-right: 60px
    }
    
    .lp-banner-bottom .lp-banner-bottom-left li i {
        margin-right: 8px
    }
    
    .lp-banner-bottom .lp-banner-bottom-left li.banner-ratings i {
        background-color: #73cf42;
        color: #fff;
        padding: 6px 7px;
        font-size: 13px
    }
    
    .lp-banner-bottom .lp-banner-bottom-right {
        float: right
    }
    
    .lp-banner-bottom-right a {
        border: solid 1px #e7e7e7;
        color: #797979;
        padding: 6px 20px;
        font-size: 14px;
        transition: all 0.20s ease-in-out
    }
    
    .lp-banner-bottom-right a i {
        margin-right: 6px
    }
    
    .lp-author-content {
        padding: 40px 0
    }
    
    .lp-author-content .padding0 {
        padding: 0
    }
    
    .lp-author-content .lp-author-nav {
        border-right: none
    }
    
    .lp-author-nav ul li {
        position: relative
    }
    
    .lp-author-nav ul li:last-child a {
        border-bottom: solid 1px #e7e7e7
    }
    
    .lp-author-nav ul li a {
        display: block;
        font-size: 16px;
        padding: 15px 20px 13px 20px;
        border: solid 1px #e7e7e7;
        border-bottom: none;
        border-right: none
    }
    
    .lp-author-nav ul li a i {
        margin-right: 5px;
        color: #41a6df
    }
    
    .lp-author-nav ul li a:hover,
    .lp-author-nav ul li a:hover i {
        color: #e7e7e7
    }
    
    .lp-author-nav ul li a.active {
        background-color: #fafafa
    }
    
    .lp-author-nav ul li a.active:before {
        content: ' ';
        display: block;
        content: ' ';
        display: block;
        width: 2px;
        height: 54px;
        background-color: #41a6df;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1
    }
    
    .lp-author-nav ul li a.active:after {
        content: ' ';
        display: block;
        content: ' ';
        display: block;
        width: 1px;
        height: 100%;
        background-color: #fafafa;
        position: absolute;
        right: -1px;
        top: 0;
        z-index: 1
    }
    
    .author-tab-content {
        border: solid 1px #e7e7e7;
        background-color: #fafafa
    }
    
    .author-tab-content .tab-pane {
        display: none;
        padding: 25px;
        min-height: 320px
    }
    
    .author-tab-content .tab-pane h3 {
        margin-top: 0;
        margin-bottom: 30px
    }
    
    .author-tab-content .tab-pane#reviews h3 {
        float: left
    }
    
    .author-tab-content .tab-pane#reviews .lp-reviews-dropdown {
        float: right
    }
    
    .author-tab-content .tab-pane#reviews .lp-reviews-dropdown .select2-selection--single {
        border-radius: 0;
        border-color: #e7e7e7;
        width: 300px
    }
    
    .author-tab-content .tab-pane#reviews h4,
    .author-tab-content .tab-pane#reviews h4 a {
        font-size: 18px
    }
    
    .author-tab-content .tab-pane#mylistings {
        padding-bottom: 0
    }
    
    .author-tab-content .tab-pane.active {
        display: block
    }
    
    .lp-author-listings-wrap .lp-listing {
        margin-bottom: 30px
    }
    
    .lp-author-listings-wrap .lp-listing .lp-listing-bottom {
        min-height: 110px;
        background-color: #fff
    }
    
    .lp-author-listings-wrap .lp-grid-box-contianer {
        margin-bottom: 0
    }
    
    .lp-author-listings-wrap .lp-listings.list-style .lp-listing {
        margin-bottom: 25px;
        padding-bottom: 25px
    }
    
    .lp-author-listings-wrap .lp-listings.list-style .lp-listing.last {
        margin-bottom: 0
    }
    
    .lp-author-listings-wrap .grid_view2,
    .lp-author-listings-wrap .list_view {
        margin-bottom: 25px
    }
    
    .author-tab-content p.tab-spiiner {
        text-align: center;
        font-size: 51px;
        padding: 50px 0
    }
    
    .author-contact-wrap .info-row label {
        display: block;
        margin-bottom: 0
    }
    
    .author-photos-wrap .author-gallery {
        padding: 3px
    }
    
    .author-photos-wrap .row {
        margin-left: -3px;
        margin-right: -3px
    }
    
    .author-contact-wrap .lp-listing-leadform {
        border: solid 1px #e3e3e3;
        max-width: 450px
    }
    
    .author-inner-content-wrap .lp-pagination {
        margin-top: 0;
        margin-bottom: 25px
    }
    
    .author-contact-wrap h4 {
        display: none
    }
    
    .author-contact-wrap .lp-listing-leadform {
        background-color: transparent;
        border: none
    }
    
    .author-contact-wrap .lp-listing-leadform .lp-listing-leadform-inner {
        padding: 0
    }
    
    .author-contact-wrap .lp-listing-leadform-inner .form-horizontal .form-group {
        margin-left: 0;
        margin-right: 0
    }
    
    .author-contact-wrap .lp-listing-leadform .form-group.pos-relative {
        margin-left: 0;
        margin-right: 0;
        width: auto
    }
    
    .author-contact-wrap .lp-listing-leadform .form-group.pos-relative .lp-review-btn {
        width: auto;
        padding-left: 50px;
        padding-right: 24px
    }
    
    .author-contact-wrap .lp-listing-leadform .form-group.pos-relative i {
        left: 25px
    }
    
    .author-contact-second-heading {
        margin-top: 20px
    }
    
    .author-photos-wrap-inner {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: solid 1px #e7e7e7
    }
    
    .author-photos-wrap-inner h4 a i {
        margin-right: 5px
    }
    
    a.switch-fields.ann-toggle-btn {
        margin-bottom: 10px;
        display: inline-block
    }
    
    .aboutmap.contactmap {
        width: 100% !important;
        height: 200px !important
    }
    
    .ann-style-wrap label span {
        color: #333;
        background-color: #e7e7e7;
        padding: 5px 10px;
        display: inline-block
    }
    
    .ann-style-wrap label>input {
        visibility: hidden;
        position: absolute
    }
    
    .ann-style-wrap label>input+span {
        cursor: pointer;
        border: solid 2px #fff
    }
    
    .ann-style-wrap label>input:checked+span {
        border: solid 2px #ccc
    }
    
    .ann-preivew-wrap .lp-listing-announcement {
        margin-bottom: 0
    }
    
    .ann-preivew-wrap>div {
        display: none
    }
    
    .ann-preivew-wrap div.active-preview {
        display: block
    }
    
    .add-new-announcement .form-group .field-desc {
        font-size: 12px;
        margin-bottom: 15px;
        color: #ccc;
        line-height: 8px
    }
    
    .dis-code-copy-pop {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        background-color: #fafafa;
        z-index: 9;
        text-align: center
    }
    
    .close-right-icon {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 19px;
        cursor: pointer
    }
    
    .dis-code-copy-pop.extra-bottom {
        height: calc(100% - 49px)
    }
    
    .dis-code-copy-pop .dis-code-copy-pop-inner {
        display: table;
        width: 100%;
        height: 100%
    }
    
    .dis-code-copy-pop .dis-code-copy-pop-inner .dis-code-copy-pop-inner-cell {
        display: table-cell;
        vertical-align: middle
    }
    
    .dis-code-copy-pop input {
        border: solid 1px #dedede;
        font-size: 22px;
        font-weight: 700;
        line-height: 39px;
        padding: 3px 10px 0 10px;
        width: 150px;
        float: left;
        border-right: none
    }
    
    .dis-code-copy-pop .dis-code-copy-wrap {
        text-align: center;
        margin: 0 auto;
        overflow: hidden;
        width: 220px
    }
    
    .dis-code-copy-pop .copy-now {
        float: left;
        color: #fff;
        padding: 9px 15px;
        font-size: 16px
    }
    
    @media (max-width: 480px) {
        .lp-header-search-wrap {
            top: -150px
        }
        .lp-top-bar-menu,
        .lp-top-bar-social {
            text-align: center
        }
        .lp-top-bar-menu ul li,
        .lp-top-bar-social ul li {
            float: none;
            display: inline-block
        }
        .lp-top-bar-social ul li {
            margin: 0 7px
        }
        .lp-header-middle .lp-header-logo img {
            height: 30px
        }
        .lp-header-middle .lp-header-nav-btn button {
            width: 31px;
            padding: 3px 0
        }
        .lp-header-middle .mobile-nav-icon {
            float: right;
            top: 7px;
            text-align: right;
            right: 0
        }
        .lp-header-middle .mobile-nav-icon .nav-icon {
            float: right
        }
        .lp-search-bar .lp-search-bar-right {
            width: 100%
        }
        .lp-header-search .lp-header-search-cats ul li {
            width: 41%;
            text-align: left;
            float: left
        }
        .lp-header-search .lp-search-icon {
            left: 50% !important;
            margin-left: -8px
        }
        .lp-locations .lp-location-box {
            margin-bottom: -3px
        }
        .lp-category-abs2 .lp-category-abs2-inner .lp-category-abs2-inner-sub-cats {
            transform: translateY(-15px);
            -webkit-transform: translateY(-15px);
            -moz-transform: translateY(-15px);
            -o-transform: translateY(-15px);
            opacity: 1
        }
        .lp-category-abs2 .lp-category-abs2-inner.has-child-cats span {
            bottom: 45px
        }
        .lp-category-abs2 .lp-category-abs2-inner img,
        .lp-category-abs2.abs2-third .lp-category-abs2-inner img,
        .lp-category-abs2.abs2-fourth .lp-category-abs2-inner img {
            width: 100%;
            height: auto
        }
        .lp-listings .listing-slider .lp-listing .lp-listing-bottom .lp-listing-bottom-inner {
            top: -75px
        }
        .lp-listings .listing-slider .lp-listing .lp-listing-top .lp-listing-cat {
            bottom: 38px
        }
        .lp-listings .listing-slider .lp-listing .lp-listing-top .lp-listing-price-range {
            bottom: 75px
        }
        .lp-listing-review .lp-review-right-bottom .review-interesting,
        .lp-listing-review .lp-review-right-bottom .review-love,
        .lp-listing-review .lp-review-right-bottom .review-lol,
        .lp-activity-description .review-interesting,
        .lp-activity-description .review-love,
        .lp-activity-description .review-lol {
            padding: 2px 4px 0 4px;
            font-size: 14px
        }
        .lp-read-news p {
            line-height: 20px
        }
        .lp-read-news p:first-child {
            font-size: 20px;
            margin-bottom: 30px
        }
        .lp-read-news p.large-size {
            font-size: 32px;
            background-size: contain
        }
        .lp-read-news a {
            margin-top: 5px
        }
        .lp-activities .lp-activity.style2.bottom0 {
            margin-bottom: 26px
        }
        .element-inner-button {
            position: static;
            margin-bottom: 10px;
            margin-left: 6px
        }
        .lp-activities .lp-activity.style2 .lp-activity-author-thumb {
            top: auto;
            left: 25px;
            right: auto
        }
        .lp-activity-top-right {
            padding-top: 20px
        }
        .sidebar-top0 {
            position: static;
            margin-top: 80px
        }
        .lp-listing-top-title-header {
            background-color: transparent;
            margin-bottom: 0
        }
        .lp-listing-action-btns {
            margin-top: 0
        }
        .lp-listing-action-btns ul li {
            margin: 8px 8px 8px 0
        }
        .lp-listing-action-btns ul {
            position: static
        }
        .lp-listing-review-form {
            padding: 15px
        }
        .lp-listing-reviews .lp-total-reviews {
            line-height: 28px
        }
        .lp-review-form-top .lp-review-stars {
            float: none;
            width: 100%
        }
        .lp-listing-title .lp-listing-logo img {
            max-width: 50px;
            max-height: 50px
        }
        .lp-listing-title .lp-listing-name {
            width: calc(100% - 65px);
            margin-left: 10px
        }
        .lp-listing-title .lp-listing-title-ratings {
            float: none;
            text-align: left
        }
        lp-listing-title-rating br {
            display: none
        }
        .lp-listing-title .lp-listing-name h2 {
            font-size: 24px;
            margin-top: 0
        }
        .lp-listing-title .lp-listing-logo a {
            display: inline-block;
            width: 50px
        }
        .lp-listing-review .lp-review-right {
            width: calc(100% - 50px);
            padding-left: 10px
        }
        .lp-listing-review .lp-review-left .lp-review-thumb img {
            height: auto
        }
        .lp-listing-review .lp-review-left {
            width: 50px
        }
        .lp-listing-review .lp-review-right .lp-review-right-top .lp-review-stars {
            float: none
        }
        .lp-listing-review .lp-review-right .lp-review-right-content {
            margin-top: 10px
        }
        .lp-reivew-gallery {
            margin-top: 10px
        }
        .lp-listing-review .lp-review-right-bottom {
            margin-top: 10px
        }
        .lp-listing-reviews .lp-listing-review {
            margin-top: 20px;
            padding-top: 20px
        }
        .lp-listing-reviews {
            margin-bottom: 0
        }
        .lp-listing-review-form h2 {
            margin-bottom: 10px
        }
        .lp-review-form-top .lp-review-images {
            text-align: left;
            float: none;
            width: 100%;
            margin-top: 10px
        }
        .lp-listing-review-form .form-group label {
            margin-bottom: 0
        }
        .lp-listing-title .lp-listing-title-rating {
            width: 100%;
            text-align: left;
            padding-left: 60px;
            margin-top: 0
        }
        .lp-listing-title .lp-listing-title-rating br {
            display: none
        }
        .lp-section {
            padding: 50px 0
        }
        .lp-deals-wrap .lp-deal {
            margin-bottom: 10px;
            border-radius: 3px;
        }
        .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off {
            top: 10px;
            left: 10px
        }
        .deal-countdown-wrap {
            right: 10px;
            top: 10px
        }
        .deal-countdown-wrap .flip-clock-wrapper ul li a {
            line-height: 24px
        }
        .deal-countdown-wrap .flip-clock-wrapper ul li a div div.inn,
        .deal-countdown-wrap .flip-clock-wrapper ul li a div {
            font-size: 14px
        }
        .deal-countdown-wrap .flip-clock-wrapper ul {
            width: 26px;
            height: 26px
        }
        .lp-deals-wrap .lp-deal .deal-details .deal-content {
            padding: 10px
        }
        .lp-listing-faq .faq-answer .answer-body {
            padding: 15px
        }
        .lp-listing-faq .faq-title {
            padding: 10px 15px
        }
        .lp-listing-offer .offer-top {
            padding: 10px 15px
        }
        .lp-listing-offer .offer-top {
            text-align: center
        }
        .lp-listing-offer .offer-top .offer-expiry strong {
            display: none
        }
        .flip-clock-divider:first-child {
            line-height: initial !important
        }
        .lp-listing-offer .offer-top .offer-expiry .flip-clock-wrapper {
            float: none
        }
        .lp-listing-offer .flip-clock-wrapper ul li a div div.inn {
            font-size: 18px;
            font-weight: 400;
            border-radius: 0
        }
        .lp-listing-offer .flip-clock-wrapper ul {
            height: 30px;
            line-height: 30px
        }
        .lp-listing-offer .flip-clock-wrapper ul li a {
            line-height: 29px
        }
        .lp-listing-offer .offer-top .offer-expiry {
            margin-top: 25px
        }
        .lp-listing-offer .offer-bottom .offer-thumb {
            left: 50%;
            margin-left: -75px
        }
        .lp-listing-offer .offer-bottom .offer-btn {
            position: static;
            margin-top: 50px
        }
        .lp-listing-offer .offer-bottom .offer-title {
            margin-top: 20px
        }
        .lp-listing-offer .offer-top .offer-tagline {
            margin-left: 0;
            float: none
        }
        .lp-listing-offer .offer-top .offer-expiry {
            margin-bottom: 80px
        }
        .lp-listing-offer .offer-top .offer-tagline.tagline-margin {
            margin-bottom: 85px
        }
        .lp-listings.list-style .lp-listing .lp-listing-top {
            float: none
        }
        .lp-listings.list-style .lp-listing .lp-listing-bottom {
            float: none;
            padding-left: 0;
            width: 100%;
            margin-top: 15px
        }
        .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-left {
            width: 100%
        }
        .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right {
            display: none
        }
        .lp-coupon-btn {
            color: #ff5a5f;
            border: solid 1px #dedede;
            line-height: 30px;
            display: inline-block;
            padding: 0 10px;
            margin-top: 8px;
            transition: all 0.20s ease-in-out;
            font-size: 14px
        }
        .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right.lp-listing-bottom-right-mobile {
            width: 205px;
            position: absolute;
            left: 50%;
            margin-left: -103px;
            z-index: 10;
            background-color: #fff;
            border: none;
            padding: 0 0 10px 0
        }
        .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right.lp-listing-bottom-right-mobile .lp-listing-bottom-right-title {
            padding: 10px 10px 0 10px
        }
        .lp-listing-bottom-right.lp-listing-bottom-right-mobile .archive-countdown-wrap {
            padding: 0 17px 5px 17px
        }
        .lp-listing-bottom-right.lp-listing-bottom-right-mobile .close-coupon {
            position: absolute;
            right: 10px;
            top: 8px;
            line-height: 5px;
            cursor: pointer;
            color: #fff;
            font-size: 17px
        }
        .lp-child-cats-tax {
            display: none
        }
        .archive-search .chosen-container.chosen-container-single.chosen-container-single-nosearch {
            margin-bottom: 15px
        }
        .archive-search .lp-search-bar div.form-group.lp-location-search {
            margin-bottom: 0 !important
        }
        .lp-header-search-filters .sort-filters-wrap {
            clear: both
        }
        .lp-header-search-filters .header-filter-wrap {
            margin-left: 0;
            margin-top: 5px
        }
        .filters-wrap-for-mobile {
            display: none
        }
        .mobile-toggle-filters {
            background-color: #fff;
            float: left;
            border: solid 1px #dedede !important;
            padding: 9px 15px;
            margin-top: 5px;
            margin-bottom: 15px
        }
        .lp-header-toggles {
            text-align: left
        }
    }
    
    .map-no-btns .gmnoprint,
    .map-no-btns .gm-fullscreen-control {
        display: none !important
    }
    
    .ui-datepicker td a {
        text-align: center
    }
    
    table.ui-datepicker-calendar {
        border: solid 1px #e3e3e3;
        border-top: none
    }
    
    .ui-datepicker .ui-datepicker-title span {
        color: #fff
    }
    
    .page-style2-content-wrap {
        padding-right: 0
    }
    
    .page-style2-content-wrap .white-section {
        border-radius: 0
    }
    
    .page-style2-sidebar-wrap {
        padding-left: 0
    }
    
    .page-style2-sidebar-wrap .quick_tip {
        border-radius: 0
    }
    
    .page-style2-sidebar {
        position: static;
        width: auto
    }
    
    .submitbutton-wraper-style2 .lp-secondary-btn {
        width: 100%;
        background: #27ae60;
        font-size: 16px
    }
    
    .submitbutton-wraper-style2 .lp-secondary-btn:hover {
        background-color: #078e40
    }
    
    #announcements-message {
        height: 119px
    }
    
    body.author .page-heading {
        display: none
    }
    
    .lp-left-filter.width-3 {
        width: 25%
    }
    
    .lp-left-filter.width-2 {
        width: 18%
    }
    
    .lp-center-content.width-5 {
        width: 42%;
        left: 25%
    }
    
    .lp-center-content.width-6 {
        width: 50%;
        left: 25%
    }
    
    .lp-center-content.width-8 {
        width: 64%;
        left: 18%
    }
    
    .lp-right-map.width-4 {
        width: 33%
    }
    
    .lp-right-map.width-4 .sidemap-container {
        width: 33%
    }
    
    .lp-right-map.width-3 {
        width: 25%
    }
    
    .lp-right-map.width-3 .sidemap-container {
        width: 25%
    }
    
    .lp-right-map.width-2 {
        width: 18%
    }
    
    .lp-right-map.width-2 .sidemap-container {
        width: 18%
    }
    
    .post-with-map-container-right.width-8 .post-with-map-container {
        width: 66%
    }
    
    .post-with-map-container-right.width-6 .post-with-map-container {
        width: 50%
    }
    
    .post-with-map-container-right.width-7 .post-with-map-container {
        width: 60%
    }
    
    .sidemap-container.width-4 {
        width: 33%
    }
    
    .sidemap-container.width-5 {
        width: 40%
    }
    
    .sidemap-container.width-6 {
        width: 50%
    }
    
    .listing-with-header-filters-wrap .grid_view2 .lp-grid-box-description .lp-grid-box-right,
    .listing-with-header-filters-wrap .grid_view2 .lp-grid-box-description .lp-grid-box-left.pull-left {
        padding: 0
    }
    
    .listing-with-header-filters-wrap .list_view.lp-grid-box-contianer .lp-grid-box-description h4 {
        margin-top: 0;
        margin-bottom: 5px
    }
    
    .listing-with-header-filters-wrap .list_view.lp-grid-box-contianer .lp-grid-box ul {
        margin-bottom: 8px
    }
    
    .listing-with-header-filters-wrap .list_view.lp-grid-box-contianer .lp-grid-style3-outer {
        margin-bottom: 0
    }
    
    .listing-with-header-filters-wrap .list_view.lp-grid-box-contianer .lp-grid-box-description {
        padding-bottom: 0
    }
    
    .lp-header-togglesa .listing-view-layout-v2 .fa {
        width: 46px;
        height: 38px;
        line-height: 38px;
        border: 1px solid #dedede;
        color: #919191;
        border-radius: 2px;
        font-size: 17px;
    }
    
    .lp-header-togglesa {
        line-height: 32px;
        font-size: 14px
    }
    
    .lp-header-title-leftt h3 {
        line-height: 30px;
        font-size: 18px;
        margin: 0
    }
    
    .lp_detail_page_styles2 .lp-archive-banner .lp-search-bar .lp-location-search .ui-widget>i,
    .lp-archive-banner .lp-search-bar .lp-location-search .ui-widget>i {
        left: 77px
    }
    
    .lp-change-extrafields .lp-popup-extre-fields .input-group label {
        padding-left: 22px;
        font-size: 12px
    }
    
    .lp-change-extrafields .lp-popup-extre-fields .input-group label:before {
        height: 14px;
        width: 14px
    }
    
    .lp-change-extrafields .lp-popup-extre-fields .input-group .checkbox label:before {
        background-color: #eae8e8;
        border-radius: 0;
        border: none;
        top: 2px
    }
    
    .lp-change-extrafields .lp-popup-extre-fields input[type=checkbox]:checked+label:before {
        line-height: 15px
    }
    
    .lp-change-extrafields .input-group.margin-right-0>ul {
        float: none;
        width: auto
    }
    
    .lp-change-extrafields .input-group {
        display: -webkit-box
    }
    
    .lp-change-extrafields .checkbox,
    .lp-change-extrafields .radio {
        margin-top: 2px;
        margin-bottom: 2px
    }
    
    .active-ann-form p.paragraph-form {
        margin-top: 10px
    }
    
    .lp-change-extrafields {
        overflow-y: initial !important
    }
    
    .lp-change-extrafields .modal-body {
        height: 450px;
        overflow-y: auto
    }
    
    .lp-change-extrafields .btn-default {
        color: #fff;
        background-color: #333;
        border-color: #333;
        font-weight: 700;
        text-transform: capitalize
    }
    
    .add-new-discount-code label,
    .announcements-wrap label {
        margin-top: 10px
    }
    
    .add-new-discount-code .form-horizontal .form-group,
    .announcements-wrap .form-horizontal .form-group,
    .lp-dashboard-new .announcements-wrap .form-horizontal .form-group {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    
    .best-discounts-filter .sort-filter-inner {
        width: 200px !important
    }
    
    .lp-header-search-filters .header-more-filters .features-heading {
        display: none
    }
    
    #sidebar-wrapper .row {
        margin-left: 0;
        margin-right: 0
    }
    
    #wrapper {
        padding-left: 70px;
        transition: all .4s ease 0s;
        height: 100%
    }
    
    #sidebar-wrapper {
        margin-left: -240px;
        width: 240px;
        background: #2c3e50;
        float: left;
        height: 100%;
        z-index: 10000;
        transition: all .4s ease 0s
    }
    
    .sidebar-nav {
        display: block;
        float: left;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0
    }
    
    #page-content-wrapper {
        padding-left: 0;
        margin-left: 0;
        width: 100%;
        height: auto
    }
    
    #wrapper.active {
        padding-left: 240px;
        position: relative
    }
    
    #wrapper.active #sidebar-wrapper {
        left: 240px;
        float: left
    }
    
    #page-content-wrapper {
        width: 100%;
        float: left
    }
    
    .lp-dashboard-new #sidebar_menu li a,
    .lp-dashboard-new .sidebar-nav li a {
        color: #fff;
        display: block;
        border-left: 5px solid transparent;
        text-decoration: none;
        width: 100%;
        background: #2c3e50;
        -webkit-transition: background .5s;
        -moz-transition: background .5s;
        -o-transition: background .5s;
        -ms-transition: background .5s;
        transition: background .5s;
        font-size: 15px;
    }
    
    .lp-dashboard-new .sidebar_name {
        padding-top: 25px;
        color: #fff;
        opacity: .7
    }
    
    .lp-dashboard-new .sidebar-nav li {
        line-height: 45px;
        text-indent: 20px
    }
    
    .lp-dashboard-new .sidebar-nav li a {
        color: #fff;
        display: block;
        text-decoration: none;
        padding-right: 0 !important;
        line-height: 45px
    }
    
    .lp-dashboard-new .sidebar-nav li a .fa {
        color: #fff
    }
    
    .lp-dashboard-new .sidebar-nav>li:hover a,
    .lp-dashboard-new .sidebar-nav>li:hover a .fa {
        color: #fff;
        text-decoration: none
    }
    
    .lp-dashboard-new.active .sidebar-nav li a:hover {
        background: rgba(70, 85, 101, .9)
    }
    
    .lp-dashboard-new .sidebar-nav li .sub_iconsecond {
        padding-right: 0;
        margin-right: 20px
    }
    
    .lp-dashboard-new .sidebar-nav li .sub_iconsecond:after {
        border-radius: 0;
        content: attr(data-tooltip);
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        padding: 0 25px;
        white-space: nowrap;
        font-weight: 500;
        text-align: center;
        margin: 0;
        bottom: auto;
        text-indent: 0
    }
    
    .lp-dashboard-new .sidebar-nav li .pull-right {
        padding-right: 40px
    }
    
    .lp-dashboard-new .sidebar-nav li .sub_iconsecond .fa {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        line-height: 40px;
        text-align: center;
        text-indent: 0;
        display: inline-block
    }
    
    .lp-dashboard-new .sidebar-nav li .fa {
        display: inherit
    }
    
    .lp-dashboard-new .sidebar-nav li:hover .sub_iconsecond .fa {
        color: #fff
    }
    
    .lp-dashboard-new #sidebar {
        padding: 10px 0 !important;
        padding-top: 0 !important;
        background: #2c3e50
    }
    
    .lp-dashboard-new .sidebar-nav li a:active,
    .lp-dashboard-new .sidebar-nav li a:focus {
        text-decoration: none
    }
    
    .lp-dashboard-new .sidebar-nav li {
        position: relative
    }
    
    .lp-dashboard-new .sidebar-nav>.sidebar-brand {
        height: 56px;
        line-height: 56px;
        font-size: 18px;
    }
    
    .lp-dashboard-new .sidebar-nav>.sidebar-brand a {
        color: #999
    }
    
    .lp-dashboard-new #main_icon {
        float: right;
        padding-right: 30px;
        padding-top: 20px;
        font-size: 16px;
        color: #fff
    }
    
    .lp-dashboard-new .sub_icon {
        float: right;
        padding-right: 50px
    }
    
    .lp-dashboard-new .content-header {
        height: 65px;
        line-height: 65px
    }
    
    .lp-dashboard-new .content-header h1 {
        margin: 0;
        margin-left: 20px;
        line-height: 65px;
        display: inline-block
    }
    
    .lp-dashboard-new .sub_iconfirst {
        float: none;
        padding-right: 5px
    }
    
    .lp-dashboard-new .sidebar-nav li a:hover .fa {
        color: #fff
    }
    
    #wrapper.active .sub_icon {
        opacity: 0
    }
    
    .lp-dashboard-new .sub_iconfirst {
        opacity: 1 !important
    }
    
    .lp-dashboard-new {
        background: #2c3e50
    }
    
    .lp-dashboard-new #page-content-wrapper {
        background-color: #fafbfb;
    }
    
    .lp-dashboard-new .info {
        margin-bottom: 10px
    }
    
    .lp-dashboard-new.active .sidebar-wrapper ul li .active-dash-menu {
        border-left-color: #41a6df !important;
        color: #fff !important;
        background: rgba(70, 85, 101, .9) !important
    }
    
    .lp-dashboard-new.active .active-dash-menu {
        background: rgba(70, 85, 101, .9) !important;
        color: #fff !important;
        border-left: 5px solid #1e73be !important
    }
    
    .lp-dashboard-new.active .dropdown.opened .active {
        background: rgba(70, 85, 101, .9) !important;
        color: #fff !important;
        border-left: 5px solid #1e73be !important
    }
    
    .lp-dashboard-new .sidebar-wrapper ul li a {
        border-left: 5px solid transparent;
        color: #fff;
        font-size: 14px
    }
    
    .lp-dashboard-new.active .active-dash-menu .sub_icon {
        color: #fff
    }
    
    .lp-dashboard-new .dashboard-content .right-panel {
        width: 100%;
        float: none;
        padding: 0;
        min-height: 900px;
        padding-left: 0;
        background-color: #fafbfb
    }
    
    .lp-dashboard-new .dashboard-content {
        float: none;
        padding: 0;
        background-color: #fafbfb
    }
    
    .lp-dashboard-new .dashboard-content>.row {
        margin-left: 0;
        margin-right: 0
    }
    
    .lp-dashboard-new.active .dropdown li a {
        border-top: 1px solid #42474c;
        color: #fff;
        padding-right: 16px !important;
        font-size: 13px;
        line-height: 34px;
        width: 100%
    }
    
    .lp-dashboard-new.active .dropdown li a:hover,
    .lp-dashboard-new.active .dropdown li a,
    .lp-dashboard-new.active .dropdown li a span {
        background-color: transparent;
        color: #fff
    }
    
    .lp-dashboard-new.active .dropdown li a .fa {
        display: inline;
        margin-right: 10px
    }
    
    .lp-dashboard-new.active .dropdown li a span {
        float: right
    }
    
    .lp-dashboard-new .sidebar-nav>li>ul {
        display: none
    }
    
    .lp-dashboard-new .sidebar-nav>li>ul.opened {
        display: block
    }
    
    .lp-dashboard-new.active .sidebar-nav>.dropdown>ul li a .sub_iconsecond {
        display: none
    }
    
    .lp-new-user-portfolio-outer .avatar-circle {
        width: 35px;
        height: 35px
    }
    
    .lp-new-user-portfolio-outer .user-thumb,
    .lp-new-user-portfolio-outer .user-text {
        text-indent: 0;
        vertical-align: middle
    }
    
    .lp-new-user-portfolio-outer .user-text h5 {
        color: #fff;
        font-size: 15px;
        font-weight: 500
    }
    
    .lp-new-user-portfolio-outer .user-text a {
        line-height: 10px;
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        border: 0 !important
    }
    
    .lp-new-user-portfolio-outer .user-text a:hover,
    .lp-new-user-portfolio-outer .user-text a:focus {
        background-color: transparent !important;
        text-indent: 0;
        margin: 0;
        padding: 0;
        border: 0
    }
    
    .sidebar-nav {
        position: relative
    }
    
    .lp-new-user-portfolio-outer {
        position: absolute;
        left: 15px;
        bottom: 30px
    }
    
    .lp-contact-support-outer {
        text-align: center;
        border-radius: 0;
        line-height: 32px;
        padding: 0 10px 0 10px;
        padding-left: 0;
        margin-right: 10px;
        position: relative;
    }
    
    .lp-contact-support-outer>a:before {
        position: absolute;
        content: '';
        right: 0;
        top: 50%;
        width: 1px;
        height: 14px;
        background: #44566c;
        transform: translateY(-50%);
    }
    
    .lp-contact-support-outer>a {
        display: inline-block;
        font-size: 11px;
        text-transform: uppercase;
        color: #4a5b6d;
        font-weight: 600;
    }
    
    #sidebar_menu .sidebar-brand img {
        width: 70%;
        padding-left: 20px
    }
    
    @media (max-width: 767px) {
        #wrapper {
            padding-left: 70px;
            transition: all .4s ease 0s
        }
        #sidebar-wrapper {
            left: 70px
        }
        #wrapper.active {
            padding-left: 150px
        }
        #wrapper.active #sidebar-wrapper {
            left: 150px;
            width: 150px;
            transition: all .4s ease 0s
        }
    }
    
    #dashboard-delete-modal {
        top: 20%
    }
    
    .attachment-details .edit-attachment {
        display: none !important;
    }
    
    .zero-with-top-margin {
        margin-top: 5px;
        display: inline-block;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-stars {
        margin-bottom: 7px;
    }
    
    .lp-header-user-nav .lp-user-menu .lp-user-welcome {
        background-color: #2c3e50 !important;
    }
    
    .lp-multi-rating-ui-wrap .form-review-stars .rating-symbol {}
    
    .lp-multi-rating-ui-wrap .rating-symbol .fa {
        width: 20px;
        height: 20px;
        border: 0 solid;
        line-height: 20px !important;
        text-align: center;
    }
    
    .lp-multi-rating-ui-wrap .form-review-stars .rating-symbol .rating-symbol-background {
        font-size: 12px;
        line-height: 22px;
        padding-left: 5px;
    }
    
    .lp-multi-rating-ui-wrap .form-review-stars>span {
        border: 1px solid #dedede;
        padding: 0 4px;
        border-radius: 2px;
    }
    
    .lp-close-timing {
        color: #ff5a5f !important;
    }
    
    .lp-listings.grid-style .lp-listing-bottom .lp-listing-cats a {
        font-size: 13px;
    }
    
    .lp-archive-banner {
        background-color: #f0f3f6;
    }
    
    .archive-search .col-md-12 .lp-header-search-form {
        width: 827px;
        margin: 0 auto;
    }
    
    .more-filters {
        float: left;
        padding: 9px 0;
    }
    
    .lp-header-search-filters {
        margin-top: 20px !important;
        text-align: center;
        margin: 0 auto;
        display: inline-block;
        left: 0;
        right: 0;
    }
    
    .filters-wrap-for-mobile {
        float: left;
        margin-right: 10px;
    }
    
    .lp-user-menu.show-cat-nav {
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .lp-user-menu.show-cat-nav:after {
        visibility: visible;
        opacity: 1;
    }
    
    .lp-header-search .lp-suggested-search .pos-relative {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }
    
    .lp-header-search .form-group .lp-search-bar-right,
    .lp-header-search .lp-search-form-submit {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    
    .lp-join-now-v2 ul:before {
        content: ' ';
        display: block;
        width: 100%;
        position: absolute;
        height: 14px;
        top: -14px;
    }
    
    .lp-listing-menuu-slider .arrow-left,
    .lp-listing-menuu-slider .arrow-right {
        background-color: transparent;
    }
    
    .lp-listing-leadform-inner {
        position: relative;
    }
    
    .lp-default-all-stats.default-fields {}
    
    .lp-default-all-stats.default-fields .lp-menu-closed {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        text-align: left;
        margin: 0;
        background-color: transparent;
    }
    
    .lp-default-all-stats.default-fields .lp-menu-closed .lp-remove-form-field,
    .lp-default-all-stats.default-fields .lp-menu-closed .fa-bars {
        display: none;
    }
    
    .lp-default-all-stats.default-fields .lp-menu-closed .lp-right-side-title {
        float: none;
        color: #44566c;
    }
    /*new css*/
    
    .lp-header-search-filters .price-filter,
    .lp-header-search-filters .sort-filters-wrap {
        float: left;
    }
    
    .lp-header-search-filters .more-filters {
        padding: 0 0;
        font-size: 13px;
        line-height: 40px;
    }
    
    .lp-header-search-filters .more-filters:hover {
        text-decoration: underline;
    }
    
    .lp-header-search-filters .more-filters.lp-advence-filtr-colr {
        color: #fff !important;
    }
    
    .lp-header-search-filters .more-filters:hover {
        cursor: pointer;
    }
    
    .lp-filter-top-text h4 {
        font-size: 20px;
        font-weight: 400;
        color: #797979;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .lp-filter-top-text h4 strong {
        color: #333;
        font-size: 18px;
        font-weight: 600;
    }
    
    .lp-header-search-filters .header-more-filters {
        display: none;
        background: #fff;
        padding: 30px 0;
        border: 1px solid #dedede;
    }
    
    .lp-header-search-filters .header-more-filters {
        display: none;
        background: #fff;
        padding: 30px 0;
        border: 1px solid #dedede;
        border-top: 0;
        position: absolute;
        left: 0;
        right: 0;
        width: 827px;
        margin: 0 auto;
        -webkit-box-shadow: 0 -2px 10px 1px rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 -2px 10px 1px rgba(0, 0, 0, 0.16);
        box-shadow: 0 -2px 10px 1px rgba(0, 0, 0, 0.16);
    }
    
    .lp-header-search-filters .header-more-filters .lp-features-filter.add-border {
        padding: 24px 10px !important;
        margin: 0 !important;
        text-align: left;
        width: 100%;
        padding-bottom: 14px !important;
    }
    
    .lp-header-search-filters .header-more-filters .lp-features-filter .tags-area.add-border {
        text-align: left;
        width: 100%;
        padding-bottom: 0 !important;
        border-bottom: solid 1px #dedede;
        margin-bottom: 20px !important;
    }
    
    .lp-header-search.archive-search .form-inline .form-group {
        float: none !important;
        width: 100%;
    }
    
    .lp-header-search-filters .input-group.margin-right-0>ul {
        width: 100% !important;
    }
    
    .lp-features-inner-container li {
        float: left;
        width: 33%;
        margin-bottom: 10px;
    }
    
    .header-more-filters .lp-features-filter .checkbox label {
        padding-left: 35px;
        line-height: 30px;
        font-weight: 400;
        text-transform: capitalize;
        color: #333;
        font-size: 14px;
    }
    
    .lp-header-search-filters .lp-features-filter .checkbox label:before {
        background-color: #fff !important;
        border-radius: 2px;
    }
    
    .header-more-filters .lp-features-filter li {
        margin-top: 0 !important;
    }
    
    .lp-header-search-filters .header-more-filters {
        padding: 0 0 !important;
    }
    
    .listing-page-sidebar .widget_listingpro_ads_widget {
        padding: 0;
    }
    
    .lp-new-grid-bottom-button ul li a.grind-number {
        display: none;
    }
    
    .lp-listing-menuu-slider .slick-arrow {
        top: 54px !important;
        margin-top: -20px;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom {
        margin-top: -6px;
    }
    
    .grid-style .lp-listing-cat {
        margin-bottom: 12px;
        display: inline-block;
        font-size: 11px;
        line-height: 0;
        text-transform: uppercase;
    }
    
    .grid-style .lp-no-review-btn {
        margin-top: 0;
    }
    
    .grid-style .lp-listing .lp-listing-bottom .lp-listing-cats {
        margin-bottom: 10px !important;
    }
    
    .grid-style .lp-listing .lp-listing-bottom {
        padding: 8px 15px 10px 15px;
    }
    
    .listing-page-sidebar .lp-widget ul li strong {
        font-weight: 400;
        font-size: 14px;
    }
    
    .lp-listing-price-range .icon.icons8-building,
    .lp-listing-price-range .icon.icons8-Flag-2 {
        width: 18px;
        margin-left: 0;
        margin-right: 8px;
    }
    
    .lp-listing-price-range .icon.icons8-building {
        margin-left: -5px;
    }
    
    .lp-listing-price-range .claim-area {
        padding-bottom: 10px;
    }
    
    .lp-listing-price-range #lp-report-listing {
        display: inline-block;
    }
    
    .lp-listing-price-range .claim-area a.phone-number,
    .lp-listing-price-range #lp-report-listing a {
        border: 1px solid;
        font-size: 14px;
        font-weight: 400;
        color: #797979 !important;
        padding: 0 6px;
        transition: all 0.20s ease-in-out;
        margin-left: 5px;
        line-height: inherit;
        height: 25px;
        border-radius: 2px;
    }
    
    .lp-listing-price-range .claim-area a.phone-number:hover,
    .lp-listing-price-range #lp-report-listing a:hover,
    .listing-page-sidebar .lp-listing-price-range .claim-area a.phone-number:hover {
        color: #fff !important;
    }
    
    .listing-page-sidebar .lp-widget ul li a {
        height: 22px;
        display: inline-block;
        line-height: 20px;
    }
    
    .lp-listing-price-range .claim-area span.phone-icon strong {
        font-weight: 400;
    }
    
    .lp-header-user-nav .lp-user-menu:after {
        border-bottom-color: #2c3e50 !important;
    }
    
    .lp-notification-wrap {
        position: fixed;
        z-index: 9;
        bottom: -150px;
        left: 40%;
        transition: all .5s;
    }
    
    .lp-notification-wrap.active-wrap {
        bottom: 100px;
    }
    
    .lp-dashboard-new .sidebar-nav li .sub_iconsecond .fa:hover {
        background: #505c6a;
    }
    
    #reply-title i.fa-angle-down {
        display: none;
    }
    
    #modal-lp-submit-ad .modal-content {
        overflow: hidden;
        top: 30px;
    }
    
    .lp-review-form-top-multi .lp-review-images-multi {
        width: 45%;
    }
    
    .lp-listing-features {
        margin-bottom: 35px;
    }
    
    .lp-listing-features ul li {
        background-color: rgba(0, 0, 0, 0);
        border: medium none;
        border-radius: 0;
        float: left;
        font-size: 14px;
        line-height: 24px;
        margin-right: 0;
        min-height: 0;
        width: 25%;
    }
    
    .lp-new-grid-bottom-button ul li:first-child:nth-last-child(1) {
        width: 100%;
    }
    
    .lp-new-grid-bottom-button ul li:first-child:nth-last-child(2),
    .lp-new-grid-bottom-button ul li:first-child:nth-last-child(2)~li {
        width: 50%;
    }
    
    .lp-new-grid-bottom-button ul li:first-child:nth-last-child(3),
    .lp-new-grid-bottom-button ul li:first-child:nth-last-child(3)~li {
        width: 33.3333%;
    }
    
    .grid-show-popup {
        text-align: center;
    }
    
    .grid-show-popup img {
        margin: 0 auto;
        padding: 50px;
    }
    
    .grid-show-popup .lpmap-icon-contianer img {
        padding: 0;
    }
    
    #grid-show-popup .widget-map-click i {
        right: 20px;
    }
    
    .lp-deals-wrap .lp-deal .deal-details {
        background-color: #00000096;
    }
    
    .author-inner-content-wrap .info-row label {
        display: block;
        margin-bottom: 0;
    }
    
    .lp-multi-rating-ui-wrap {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .listing-page-sidebar .lp-widget ul.flip li a {
        display: block;
        height: inherit;
        line-height: inherit;
        background: #fff;
    }
    
    .listing-page-sidebar .lp-widget ul.flip li {
        padding: 0 !important;
    }
    
    .listing-page-sidebar .list-discount-outer .lp-widget.lp-discount-widget {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
    
    .lp-listings .listing-slider .lp-rating-num {
        float: none;
    }
    
    .lp-listings .listing-slider .lp-listing-bottom h4 {
        margin-top: 5px;
    }
    
    .lp-listings .listing-slider .lp-listing-cats {
        margin-bottom: 12px !important;
    }
    
    .lp-listings .listing-slider .lp-listing-cat {
        font-size: 11px;
    }
    
    .lp-listing-top a.lp-listing-cat {
        display: none;
    }
    
    .lp-menu-form-feilds .form-control.error {
        border: 1px solid #eb5439 !important;
    }
    
    .listing-slider .lp-listing-stars .lp-no-review-btn {
        margin-top: 0 !important;
    }
    
    .lp-activities .lp-activity .lp-activity-thumb img,
    .lp-listings.list-style .lp-listings-inner-wrap {
        border-radius: 2px;
    }
    
    .lp-header-search.archive-search {
        text-align: center;
    }
    
    .lp-listing-announcement .announcement-wrap {
        border-radius: 2px;
    }
    
    .lp-coupns-form .lp-main-title .text-center,
    .lp-coupns-form .lp-coupon-outer-container .text-center {
        text-align: center;
    }
    
    #lp-events .lp-main-title .col-md-2:last-child p {
        padding-left: 0;
    }
    
    .lp-coupon-outer-container .lp-listing-pay-button {
        text-align: left;
    }
    
    .discount_displayin_wrap .select2.select2-container.select2-container--default {
        width: 350px !important;
        min-width: 350px !important;
    }
    
    .panel-heading .discount_displayin_wrap {
        margin-top: -6px;
    }
    
    .panel-heading .discount_displayin_wrap .discount_displayin_wrap_title {
        color: #3f576e;
        font-size: 13px;
        text-transform: capitalize;
        font-weight: 600;
        margin-right: 10px;
    }
    
    .bottomofbutton.lpsubmitloading {
        position: absolute;
        z-index: 999;
        right: 250px;
        bottom: 15px;
        color: #fff;
    }
    
    .jFiler-input-dragDrop .upload-field:before {
        content: 'Browse Files';
        position: absolute;
        width: 105px;
        font-size: 13px;
        left: 0;
        bottom: 30px;
        z-index: 999;
        text-align: center;
        border-radius: 5px;
        height: 100px;
        border: 1px solid #0c86ff;
        height: 36px;
        line-height: 36px;
        margin: 0 auto;
        right: 0;
        color: #0c86ff;
        background: #fff;
        font-weight: 600;
        display: none;
    }
    
    .jFiler-input-dragDrop.pos-relative:hover .upload-field:before {
        background: #0c86ff;
        color: #fff;
    }
    
    .status-red,
    .status-red:hover {
        color: #d0021b !important;
    }
    
    .status-green,
    .status-green:hover {
        color: #73cf42 !important;
    }
    
    #lp-save-events,
    #lp-save-events:hover,
    .lp-save-events:hover,
    .lp-save-events,
    .lp-edit-announcements:hover,
    .lp-edit-announcements,
    .lp-save-template,
    .lp-save-template:hover,
    .add-form-field,
    .add-form-field:hover,
    #lp-save-dis,
    #lp-save-dis:hover,
    .lp-edit-dis:hover,
    .lp-edit-dis,
    .lp-save-btn,
    .lp-save-btn:hover,
    #lp_campaign_paynow,
    #lp_campaign_paynow:hover,
    .lp-edit-menu:hover,
    .lp-edit-menu,
    .lp-add-announcement-form .lp-coupns-btns {
        background-color: #73d500 !important;
        color: #fff !important;
    }
    
	.btn-link.googledroppin.events-dash {
		display: flex;
		align-items: center;
		gap: 6px;
	}
	
	
	.fa-trash::before {
		content: "\f1f8" ! IMPORTANT;
	}
			
    .lp-header-search-filters .header-filter-wrap:hover {
        color: #fff !important;
    }
    
    .listing-page-sidebar .lp-listing-timings .lp-today-timing {
        padding: 14px 17px !important;
    }
    
    .listing-page-sidebar .lp-listing-timings .lp-today-timing.all-days-timings {
        padding: 0 !important;
        padding-bottom: 14px !important;
        background-color: #fff;
    }
    
    .lp-listing .lp-listing-top .post-price-row {
        line-height: 0;
        font-weight: 700;
        padding: 0 0;
        transition: all 0.20s ease-in-out
    }
    
    .lp-listing .lp-listing-top .post-price-row li {
        display: inline-block;
        vertical-align: middle;
        background: rgba(0, 0, 0, .5);
        padding: 0 5px;
        color: #fff;
        float: left;
        height: 24px;
        line-height: 24px;
        font-weight: 700;
    }
    
    .lp-listing .lp-listing-top .post-price-row li:last-child {
        width: 0;
        opacity: 0;
        height: 0;
        visibility: hidden;
        padding-left: 0;
        transition: all 0.10s ease-in-out;
    }
    
    .lp-listings .lp-listing .list-style-none span {
        font-weight: 600;
        color: #fff;
        line-height: 0;
        font-size: 14px;
    }
    
    .lp-listings .lp-listing:hover .lp-listing-top .post-price-row li:last-child {
        width: auto;
        height: 24px;
        opacity: 1;
        visibility: visible;
        transition: all 0.10s ease-in-out;
    }
    
    .lp-listings .lp-listing .list-style-none span.post-rice span.text {
        display: none;
    }
    
    .lp-listings .lp-listing .simptip-position-top.simptip-movable:after {
        border-radius: 2px;
    }
    
    .lp-listings .listing-slider .lp-listing:hover .post-price-row {
        bottom: 60px;
    }
    
    .listing-slider .lp-listing .lp-listing-top .post-price-row {
        width: 240px;
        float: left;
        bottom: 0;
        position: absolute;
        transition: all 0.20s ease-in-out;
    }
    
    .lp-listings.list-style .lp-listing .list-style-none span {
        font-weight: 700;
        color: #797979;
        line-height: 24px;
        font-size: 14px;
    }
    
    .lp-listings .lp-listing .list-style-none .active {
        color: #73cf42 !important;
    }
    
    .lp-listing .lp-listing-top-thumb img {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }
    
    .lp-new-grid-bottom-button ul {
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    
    .listing-simple #lp-find-near-me,
    .post-with-map-container #lp-find-near-me {
        margin-top: 0 !important;
    }
    
    .listing-simple #lp-find-near-me a,
    .post-with-map-container #lp-find-near-me a {
        color: #9f9f9f;
        border: 1px solid #eaeaea;
    }
    
    .listing-simple #lp-find-near-me a:hover,
    .post-with-map-container #lp-find-near-me a:hover {
        border-color: #eaeaea;
        color: #9f9f9f !important;
    }
    
    .lp_auto_loc_container .lp-dyn-city {
        font-size: 40px;
    }
    
    .post-submit .chosen-container-single .chosen-single span {
        margin-right: 0;
        line-height: 46px;
    }
    
    .lp-listing-title .lp-listing-name h2 span.claimed {
        font-size: 14px;
        font-weight: 400;
    }
    
    .lp-listing-desription ul li {
        list-style: circle;
    }
    
    .lp-listing-desription .lp-section-row .lp_section_inner {
        width: 100%;
    }
    
    .lp-price-main .lp-price-list .lp-listprc li span.icon,
    .lp-price-main .lp-price-list .lp-listprc li span.icon-text {
        float: inherit;
    }
    
    .lp-right-panel-height {
        position: absolute;
        right: 0;
        height: 100%;
        background-color: #fff;
        border-left: 1px solid #e9ebf2;
        padding: 0;
    }
    
    #events-form-toggle,
    #discount-form-toggle,
    #menu-form-toggle {
        position: relative;
        float: right;
        width: 100%;
    }
    
    #lp-listings .md-content form .form-group {
        padding: 30px
    }
    
    .lp-archive-banner.empty-filter {
        padding: 80px 0;
        padding-top: 70px
    }
    
    .lp-archive-banner.empty-filter h4 {
        font-size: 30px
    }
    
    .lp-header-search.archive-search .lp-filter-top-text .colorWhite {
        color: #fff !important;
    }
    
    .lp-listing-bottom-right .dis-code-copy-pop input {
        font-size: 17px;
        line-height: 28px;
        padding: 3px 0 4px 10px;
        width: 110px;
    }
    
    .lp-listing-bottom-right .dis-code-copy-pop .copy-now {
        padding: 5px 10px;
        font-size: 13px;
        height: 37px;
    }
    
    .lp-listing-bottom-right .dis-code-copy-pop .dis-code-copy-wrap {
        width: 161px;
    }
    
    .lp-listing-bottom-right .dis-code-copy-pop .dis-code-copy-pop-inner-cell p:first-child {
        font-size: 13px;
    }
    
    .lp-listing-bottom-right .close-right-icon {
        right: 10px;
        top: 4px;
        font-size: 14px;
    }
    
    .event-hosted-grid h6 {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .event-hosted-grid label {
        margin-bottom: 0;
    }
    
    .grid-style .lp-listing-cat.event-grid-date {
        background-color: #dedcdc;
        line-height: 20px;
        padding: 0 5px 0 0;
        border-radius: 2px;
        color: #333 !important;
        font-weight: bold;
    }
    
    .event-grid-date span {
        color: #fff;
        padding: 2px 5px;
        line-height: 20px;
        border-top-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    
    .event-grid-thumb {
        max-height: 210px;
        overflow: hidden;
    }
    
    .event-grid-ticket {
        position: absolute;
        color: #fff;
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
        font-weight: bold;
        border-radius: 2px;
    }
    
    .event-grid-ticket i {
        margin-right: 5px;
    }
    
    #lp-find-near-me.near-me-app-view-btn {
        top: 0;
    }
    
    #lp-find-near-me.near-me-app-view-btn a {
        height: 33px;
    }
    
    .listing-page-sidebar .lp-widget ul,
    .listing-page-sidebar .lp-widget .lp-listing-price-range,
    .listing-page-sidebar .lp-listing-additional-details h4,
    .listing-page-sidebar .lp-listing-timings .lp-today-timing {
        border: solid 1px #e3e3e3;
        border-top: none;
    }
    
    .listing-page-sidebar .lp-widget .lp-event-outer {
        border: solid 1px #e3e3e3;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .listing-page-sidebar .lp-widget .lp-event-list-area ul {
        border-left: 0;
        border-right: 0;
        padding: 20px;
    }
    
    .lp-widget.lp-discount-widget {
        margin-top: 0;
    }
    
    .listing-page-sidebar .lp-listing-additional-details .toggle-additional-details {
        bottom: -29px;
    }
    
    .listing-page-sidebar .lp-listing-additional-details.bottom35 {
        margin-bottom: 32px;
    }
    
    .listing-page-sidebar .event-sidebar-wrapper+.lp-listing-price-range,
    .listing-page-sidebar .event-sidebar-wrapper+.lp-listing-additional-details,
    .listing-page-sidebar .event-sidebar-wrapper+.lp-listing-timings .lp-today-timing,
    .listing-page-sidebar .list-discount-outer+.lp-listing-price-range,
    .listing-page-sidebar .list-discount-outer+.lp-listing-additional-details,
    .listing-page-sidebar .list-discount-outer+.lp-listing-timings .lp-today-timing {
        border-top: solid 1px #e3e3e3;
    }
    
    .listing-page-sidebar .event-sidebar-wrapper+.list-discount-outer .lp-widget.lp-discount-widget {
        margin-top: 0;
    }
    
    .listing-page-sidebar .lp-deals-wrap {
        margin-bottom: 0;
    }
    
    .listing-page-sidebar .lp-widget .lp-event-list-area ul.border-bottom-zero {
        border-bottom: none;
    }
    
    .upload-field[data-multiple="true"] img {
        height: 40px;
        width: auto;
        float: left;
        position: relative;
        bottom: 83px;
    }
    
    .menu-hotel .open-modal {
        border: none;
        margin-bottom: 0;
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price a {
        font-size: 14px;
    }
    /*----------------------Event Detail page-----------------*/
    
    .lp-event-detail {
        display: inline-block;
    }
    
    .lp-event-top-title-header {
        display: inline-block;
        width: 100%;
        float: left;
        position: relative;
        padding: 40px 0;
        overflow: hidden;
    }
    
    .lp-event-bgimage {
        width: 100%;
        height: 100%;
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-filter: blur(6px);
        -moz-filter: blur(6px);
        -o-filter: blur(6px);
        -ms-filter: blur(6px);
        filter: blur(6px);
    }
    
    .lp-event-detail-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .lp-event-detail-thumbnail {
        display: inline-block;
        width: 100%;
    }
    
    .lp-event-detail-thumbnail img {
        width: 100%;
    }
    
    .lp-event-detail-date-title-outer {
        width: 100%;
        display: inline-block;
        margin-top: 20px;
    }
    
    .lp-event-detail-date {
        width: 85px;
        height: 85px;
        float: left;
        display: inline-block;
        border-radius: 2px;
        background: #fff;
        padding: 14px 0;
        margin-right: 15px;
    }
    
    .lp-event-detail-date span {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 20px;
        line-height: 26px;
        margin: 0;
        padding: 0;
        color: #333333;
        text-transform: uppercase;
    }
    
    .lp-event-detail-date span.event-detil-date {
        color: #ff4945;
        font-size: 30px;
        margin-bottom: 5px;
    }
    
    .lp-event-detail-title-hosted {
        display: inline-block;
        float: left;
        width: 85%;
    }
    
    .lp-event-detail-title-hosted h1 {
        font-size: 30px;
        margin: 0;
        color: #fff;
        font-weight: normal;
        line-height: 26px;
        margin-top: 4px;
    }
    
    .lp-event-detail-title-hosted h2 {
        font-size: 14px;
        margin: 0;
        color: #fff;
        font-weight: normal;
        margin-top: 15px;
        display: inline-block;
    }
    
    .lp-event-detail-title-hosted h2 a {
        font-weight: normal;
        text-decoration: underline;
        font-size: 16px;
        line-height: initial;
    }
    
    .lp-event-detail-side-section {
        display: inline-block;
        width: 100%;
    }
    
    .lp-event-detail-side-section ul {
        width: 100%;
        display: inline-block;
        float: left;
        background: #fff;
        border-radius: 2px;
        border: 1px solid #dedede;
    }
    
    .lp-event-detail-side-section ul li {
        width: 100%;
        display: inline-block;
        float: left;
        padding: 20px;
    }
    
    .lp-event-detail-side-section ul li:nth-child(even) {
        background: #fafafa;
        border-bottom: 1px solid #dedede;
    }
    
    .lp-event-detail-side-section ul li:first-child {
        padding: 0;
    }
    
    .lp-event-detail-side-section ul li:last-child {
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }
    
    .lp-event-detail-side-section ul li h3 {
        color: #797979;
        font-size: 14px;
        margin: 0;
    }
    
    .lp-event-detail-side-section ul li h3 i {
        font-size: 20px;
        vertical-align: middle;
    }
    
    .lp-event-detail-side-section ul li h3 span {
        margin-left: 10px;
        display: inline-block;
        font-weight: 600;
    }
    
    .lp-event-detail-side-section ul li h3 i.fa-clock-o {
        margin-right: -2px;
    }
    
    .lp-event-detail-side-section ul li>a,
    .lp-event-detail-side-section ul li>span {
        padding-left: 25px;
        margin-top: 5px;
        font-weight: normal;
    }
    
    .lp-event-detail-side-section ul li .lp-event-detail-map {
        height: 250px !important;
    }
    
    .lp-event-detail-white-bg-section {
        display: inline-block;
        width: 100%;
        float: left;
        padding: 40px 0;
    }
    
    .lp-event-detail-content {
        display: inline-block;
        width: 100%;
    }
    
    .lp-event-detail-content p {
        margin: 0;
    }
    
    .lp-event-detal-share {
        position: absolute;
        width: 88px;
        right: 6px;
        top: -50px;
        margin: 0;
    }
    
    .lp-event-detail-sidebar-area {
        display: inline-block;
        width: 100%;
        float: left;
    }
    
    .event-total-going {
        display: block;
        margin-bottom: 10px;
    }
    
    .event-total-going span {
        color: #797979;
        display: block;
        font-size: 14px;
        text-transform: uppercase;
    }
    
    .event-total-going span strong {
        color: #333333;
        margin-right: 10px;
    }
    
    .lp-detail-event-going-btn {
        display: inline-block;
        width: 100%;
    }
    
    .lp-detail-event-going-btn button {
        width: 100%;
        border: 0;
        background: #03c4c6;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
        padding: 12px 0;
        text-align: center;
        border-radius: 3px;
    }
    
    .lp-detail-event-going-btn button:hover {
        background: #0eb4b6;
        color: #fff;
    }
    
    .lp-event-detail-ticket {
        width: 100%;
        display: inline-block;
        border: 0;
        background: #f25f5c;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
        padding: 12px 0;
        text-align: center;
        border-radius: 3px;
        margin-top: 10px;
    }
    
    .lp-event-detail-ticket i {
        margin-right: 5px;
    }
    
    .lp-event-detail-ticket:hover {
        color: #fff;
        background: #e35855;
    }
    
    .lp-event-detail-ticket:focus {
        color: #fff;
    }
    
    .lp-event-detail-attendes-section {
        width: 100%;
        display: inline-block;
    }
    
    .lp-event-detail-attendes-section ul {
        display: inline-block;
        width: 100%;
        margin: 0;
    }
    
    .lp-event-detail-attendes-section ul li {
        display: inline-block;
        float: left;
        text-align: center;
        background: #fafafa;
        border: 1px solid #dedede;
        border-radius: 2px;
        padding: 20px 20px;
        margin-left: 20px;
        width: 23%;
        margin-bottom: 20px;
    }
    
    .lp-event-detail-attendes-section ul li:nth-child(4n+1) {
        margin-left: 0;
    }
    
    .lp-event-detail-attendes-section ul li .attende-avtar {
        width: 90px;
        height: 90px;
        display: inline-block;
        background: #ccc;
        border-radius: 50%;
        margin-bottom: 20px;
    }
    
    .lp-event-detail-attendes-section ul li .attende-avtar img {
        border-radius: 50%;
    }
    
    .lp-event-detail-attendes-section ul li span {
        display: block;
        font-size: 16px;
        color: #333333;
        font-weight: bold;
        text-transform: capitalize;
    }
    
    .lp-event-detail-attendes-section ul li h5 {
        display: block;
        font-size: 16px;
        color: #7f7f7f;
        margin: 0;
        text-transform: capitalize;
        font-weight: 400;
    }
    
    .lp-event-viewall-attende {
        display: inline-block;
        width: 100%;
        margin: 40px 0 20px;
    }
    
    .lp-event-viewall-attende h4 {
        font-size: 20px;
        color: #333333;
        font-weight: bold;
        margin: 0;
        display: inline-block;
        float: left;
    }
    
    .lp-event-attende-view-all {
        display: inline-block;
        width: 100%;
    }
    
    .lp-event-attende-view-all span {
        font-size: 16px;
        font-weight: normal;
        margin: 0 auto;
        text-align: center;
        cursor: pointer;
        display: block;
        border: 1px solid;
        padding: 5px 0;
        width: 130px;
    }
    
    .lp-event-detail-dynamic-sidebar {
        display: inline-block;
        width: 100%;
        margin-top: 20px;
    }
    
    .lp-event-detail-dynamic-sidebar .widget-box {
        padding: 0;
    }
    
    .lp-attende-extra {
        display: none !important;
    }
    
    .lp-attende-extra.active {
        display: block !important;
    }
    /*---------app view events-------*/
    
    .app-view-events .lp-event-top-title-header {
        padding: 0;
    }
    
    .app-view-events .lp-event-appview-section-wrap {
        background: #eff3f6;
        display: inline-block;
        width: 100%;
        padding: 0 5% 20px;
    }
    
    .app-view-events .lp-event-detail-date-title-outer {
        background: #fff;
        border-radius: 8px;
        width: 100%;
        margin: -40px 0 0;
        border: 1px solid #dbe7ef;
        padding-top: 27px;
    }
    
    .app-view-events .lp-event-detail-date {
        display: block;
        margin: 0 auto;
        float: none;
        background: #fafbfb;
    }
    
    .app-view-events .lp-event-detail-title-hosted {
        width: 100% !important;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 27px;
    }
    
    .app-view-events .lp-event-detail-title-hosted h1 {
        font-size: 22px;
        margin-top: 5px;
        color: #333;
        font-weight: bold;
    }
    
    .app-view-events .lp-event-detail-title-hosted h2 {
        color: #7f7f7f;
        font-size: 13px;
        margin-top: 5px;
    }
    
    @media (max-width: 1024px) {
        .app-view-events .lp-event-top-title-header .col-md-8,
        .app-view-events .lp-event-top-title-header .col-md-4,
        .app-view-events .lp-event-detail-white-bg-section .col-md-8,
        .app-view-events .lp-event-detail-white-bg-section .col-md-4 {
            width: 100%;
        }
    }
    
    .app-view-events .lp-event-detal-share {
        position: relative;
        display: inline-block;
        width: 100%;
        top: 0;
        height: auto;
        float: left;
    }
    
    .app-view-events .lp-event-detal-share ul {
        border-top: 1px solid #dedede;
        position: relative;
    }
    
    .app-view-events .lp-event-detal-share ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 9px 0;
    }
    
    .app-view-events .lp-event-detal-share ul li a.lp-single-sharing {
        border: none;
        padding: 0;
        width: 50px;
        display: inline-block;
        font-size: 12px;
        color: #333 !important;
    }
    
    .app-view-events .lp-event-detal-share ul li a.lp-single-sharing:hover {
        background: none !important;
    }
    
    .app-view-events .lp-event-detal-share ul li a.lp-single-sharing i {
        display: block;
        margin-bottom: 5px;
        color: #333;
    }
    
    .app-view-events .lp-event-detal-share ul li .md-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .app-view-events .lp-event-detal-share ul li .social-icons.post-socials.smenu {
        width: 176px;
        top: -100px;
        left: 50%;
        margin-left: -88px;
    }
    
    .app-view-events .lp-event-detal-share ul li .social-icons.post-socials.smenu::after {
        content: none;
    }
    
    .app-view-events .lp-event-detail-sidebar-area {
        margin-top: 20px;
    }
    
    .app-view-events .lp-event-detail-side-section ul {
        border: 0;
        border-bottom: 1px solid #dedede;
    }
    
    .app-view-events .lp-event-detail-side-section ul li {
        background: #fff;
    }
    
    .app-view-events .lp-event-detail-content {
        background: #eff3f6;
        padding: 20px 15px;
    }
    
    .app-view-events .lp-event-detail-side-section {
        float: left;
    }
    
    .app-view-events .lp-event-detail-white-bg-section {
        padding: 0 0 40px;
    }
    
    .app-view-events .lp-event-viewall-attende {
        margin: 20px 0;
        padding: 0 15px;
    }
    
    .app-view-events .lp-event-detail-attendes-section {
        padding: 0 15px;
    }
    
    .app-view-events .lp-event-detail-dynamic-sidebar {
        padding: 0 15px;
    }
    
    .app-view-events .lp-event-detail-dynamic-sidebar .list_view_v2 {
        padding: 0;
    }
    
    .maring-top8 {
        margin-top: 8px;
    }
    
    .padding-bottom0 {
        padding-bottom: 0;
    }
    
    .padding-right15 {
        padding-right: 15px !important;
        margin-bottom: 20px;
    }
    
    .img-menu-upload-field.upload-field[data-multiple="true"] img {
        height: 90px;
        margin: 5px 5px 5px 0;
        width: auto;
        float: none;
        position: static;
    }
    
    .dashboard-upload-field .frontend-button {
        background-color: #f5f5f5;
    }
    
    .menu-edit-imgs-wrap {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 40px;
        z-index: 99;
    }
    
    .menu-edit-imgs-wrap .menu-edit-img-wrap img {
        position: static;
        height: 50px;
    }
    
    .menu-edit-img-wrap {
        position: relative;
        display: inline-block;
        border: solid 1px;
        margin-left: 2px;
        position: absolute;
        left: 10px;
    }
    
    .remove-menu-img {
        background-color: #000;
        color: #fff;
        position: absolute;
        top: 0;
        z-index: 9999;
        font-size: 9px;
        padding: 0 6px;
        cursor: pointer;
        right: 0;
        line-height: 19px;
    }
    
    .lp-header-search.archive-search h4.lp-title em {
        font-style: normal;
    }
    
    .lp-share-event-detail {
        display: inline-block;
        margin-top: 17px;
        padding-left: 10px;
        float: right;
        margin-right: -12px;
    }
    
    .lp-share-event-detail .lp-event-share-btn-st {
        display: inline-block;
        float: left;
        color: #fff;
        font-size: 14px;
        padding-top: 2px;
    }
    
    .lp-event-shar-btn-align-title {
        display: inline-block;
        margin: 0;
        padding: 0;
    }
    
    .lp-event-shar-btn-align-title li {
        display: inline-block;
        float: left;
        text-align: center;
        margin-left: 5px;
    }
    
    .lp-event-shar-btn-align-title li a i {
        font-size: 14px;
        background: #fff;
        width: 25px;
        height: 25px;
        line-height: 25px;
        border-radius: 2px;
    }
    
    .lp-event-shar-btn-align-title li a i:hover {
        color: #fff !important;
        -webkit-transition: all .25s ease;
        -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
        -o-transition: all .25s ease;
        transition: all .25s ease;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-facebook {
        color: #3B5998;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-facebook:hover {
        background: #3B5998;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-google-plus {
        color: #E37167;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-google-plus:hover {
        background: #E37167;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-twitter {
        color: #55ACEE;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-twitter:hover {
        background: #55ACEE;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-linkedin {
        color: #0077B5;
    }
    
    .lp-event-shar-btn-align-title li a i.fa-linkedin:hover {
        background: #0077B5;
    }
    
    .lp-deatil-reply-review-area {
        background: #fafafa;
        border: 1px solid #dedede;
        padding: 20px;
        border-radius: 3px;
        margin-top: 20px;
    }
    
    .lp-deatil-reply-review-area h3 {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
    }
    
    .lp-additional-appview-filter-new h3 {
        font-size: 15px;
        margin: 5px 0 -10px;
    }
    
    .lp-listing-leadform {
        margin-top: 25px;
    }
    
    .lp-sidebar.listing-page-sidebar .lp-listing-leadform {
        margin-top: 50px !important;
    }
    
    .listing-page-sidebar .widget-box {
        padding: 0;
        margin: 25px 0 0 0;
    }
    
    .listing-page-sidebar .widget-box ul {
        border: none;
    }
    
    .listing-page-sidebar .widget-box ul li {
        padding: 0;
        background-color: transparent;
        border: none;
    }
    
    .menu-edit-imgs-wrap.image-menu-multiple-wrap {
        position: static;
    }
    
    .menu-edit-imgs-wrap.image-menu-multiple-wrap .menu-edit-img-wrap {
        border: none;
        margin-left: 0;
    }
    
    .menu-edit-imgs-wrap.image-menu-multiple-wrap .menu-edit-img-wrap .remove-menu-img {
        top: 5px;
        right: 5px;
    }
    
    .lp-listing-price-range.lp-widget-inner-wrap {
        width: 100%;
        display: inline-block;
    }
    
    .del-group-type {
        cursor: pointer;
    }
    /*new css*/
    
    .lp-home-banner-contianer .lp-search-bar-view1 .hide-what .chosen-container.chosen-container-single .chosen-single span {
        padding-left: 0 !important;
    }
    
    .lp-home-banner-contianer .form-group.hide-what .chosen-container.chosen-container-single,
    form .hide-what #cities {
        border-radius: 5px;
    }
    
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view1 .form-group.lp-suggested-search.hide-where .pos-relative input {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .header-bg-color-class .width-49-percent.hide-what .input-group-addon.lp-border {
        z-index: 99;
    }
    
    .lp-home-banner-contianer .form-group.lp-location-search.hide-what .chosen-container.chosen-container-single .chosen-single span {
        margin-left: 70px !important;
    }
    
    .header-bg-color-class .lp-search-chnage-styles-st .header-filter .input-group.width-49-percent.margin-right-15.hide-where,
    .lp-search-bar-view1 form .hide-what #cities,
    .lp-search-bar-view2 .hide-what {
        border-radius: 0 !important;
    }
    
    .lp-search-bar-view2 form #cities {
        color: #bbbbbb !important;
        height: 54px;
    }
    
    .lp-home-banner-contianer .lp-search-bar.lp-search-bar-view2 .form-group.lp-suggested-search.hide-where {
        border-radius: 0 !Important;
    }
    
    .lp-bottom-with-map-back form #cities {
        border: 0;
    }
    
    .lp-search-bar-all-demo.lp-bottom-with-map-back .form-group.lp-location-search {
        margin-left: 0;
    }
    
    .header-container .select2.select2-container.select2-container--default {
        border-radius: 0 5px 5px 0;
    }
    
    .header-container .lp-search-bar-view1 .select2.select2-container.select2-container--default {
        border-radius: 0;
        border-bottom: 1px solid #fff;
        background-color: transparent !important;
        color: #fff;
    }
    
    .header-container .lp-search-bar-view1 .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #fff;
    }
    
    .header-container .lp-search-bar-view2 .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        text-align: left;
        line-height: 57px;
    }
    
    .lp-header-search.archive-search form #cities,
    .lp-header-search.archive-search form #cities-filter {
        border-radius: 3px !Important;
        height: 46px !important;
        line-height: 46px !important;
    }
    
    .lp-header-search-wrap .select2.select2-container.select2-container--default {
        border-radius: 0;
    }
    
    .header-container .lp-location-search .select2.select2-container.select2-container--default {
        background-color: transparent !Important;
    }
    
    .lp-header-search.archive-search .form-inline .form-group.lp-location-search {
        background: #fff !important;
        height: 46px;
        border-radius: 4px;
    }
    
    .lp-header-search.archive-search .lp-location-search .ui-widget {
        width: 100%;
    }
    
    .input-group.width-49-percent .border-dropdown span::after {
        display: none;
    }
    
    .header-container .lp-search-chnage-styles-st .select2.select2-container.select2-container--default {
        background-color: transparent !Important;
        height: 37px;
    }
    
    .lp-search-chnage-styles-st .header-filter .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 39px;
    }
    
    .fullwidth-header .lp-search-chnage-styles-st .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 54%;
    }
    
    .home .lp-header-search .form-group.lp-location-search {
        background-color: #fff !Important;
        min-width: 200px;
    }
    
    .lp-header-search .ui-widget {
        float: left;
        width: 100%;
    }
    
    .lp-header-search .lp-header-search-form .lp-search-icon {
        top: 13px;
    }
    
    .home .lp-header-search .border-dropdown span:after,
    .input-group.width-49-percent .border-dropdown span::after {
        display: none;
    }
    
    .left-section-menu-outer .lp-menu ul li {
        line-height: 45px;
    }
    
    .lp-logo-header4-sts .lp-header-logo {
        line-height: 48px;
    }
    
    .header-container .header-bg-color-class .select2.select2-container.select2-container--default {
        background-color: transparent !Important;
    }
    
    .select2-container *:focus {
        outline: none;
    }
    
    .lp-home-banner-contianer-inner-new-search.search-view-move-down-two .lp-search-bar.lp-search-bar-view1 .select2-container .select2-selection--single {
        border: 1px solid #fff !important;
        height: 42px;
        border-radius: 0 !Important;
    }
    
    .lp-home-banner-contianer-inner.lp-home-banner-contianer-inner-new-search.search-view-move-down-two .lp-search-bar.lp-search-bar-view1 .select2.select2-container.select2-container--default {
        border-bottom: 0 !important;
    }
    
    .lp-search-bar .select2-container .select2-selection--single .select2-selection__rendered {
        color: #797979;
        line-height: 42px;
    }
    
    .select2-container--default .select2-search--dropdown .select2-search__field {
        border-radius: 2px;
        border: 1px solid #e5e5e5;
    }
    
    .select2-container--open .select2-dropdown--below {
        border: 1px solid #e5e5e5;
        border-top: none;
    }
    
    .lp-search-bar.lp-search-bar-view1.lp-search-bar-view2 .select2-container .select2-selection--single {
        border: 0 solid #fff !important;
        height: 56px;
        border-radius: 0 !Important;
    }
    
    .lp-home-banner-contianer-inner .lp-search-bar.lp-search-bar-view1 .select2-container .select2-selection--single {
        height: 42px;
    }
    
    .lp-home-banner-contianer-inner.lp-home-banner-contianer-inner-new-search .lp-search-bar.lp-search-bar-view1 .select2.select2-container.select2-container--default {
        border-bottom: 1px solid #fff !important;
    }
    
    .lp-search-bar.lp-search-bar-view1.lp-search-bar-view2.lp-search-bar-view3 .select2.select2-container.select2-container--default,
    .lp-search-bar.lp-search-bar-view1.lp-search-bar-view2 .select2.select2-container.select2-container--default {
        border-bottom: 0 !important;
    }
    
    .lp-home-banner-contianer-inner.lp-home-banner-contianer-inner-new-search {
        border: 0 solid #fff !important;
    }
    
    .lp-home-banner-contianer-inner.lp-home-banner-contianer-inner-new-search .lp-search-bar.lp-search-bar-view1.lp-search-bar-view2 .select2-container .select2-selection--single {
        height: 56px;
    }
    
    .lp-home-banner-contianer-inner.lp-home-banner-contianer-inner-new-search .lp-search-bar.lp-search-bar-view1.lp-search-bar-view2 .select2.select2-container.select2-container--default,
    .lp-home-banner-contianer-inner.banner-view-cat-tranparent .lp-search-bar-view1.lp-search-bar-view2 .select2.select2-container.select2-container--default {
        border-bottom: 0 !important;
    }
    
    .lp-home-banner-contianer-inner.banner-view-cat-tranparent .lp-search-bar-view1 .select2.select2-container.select2-container--default {
        border-bottom: 1px solid #fff !important;
    }
    
    .lp-home-banner-contianer .lp-search-bar-view1 .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
        border-bottom: 1px solid #fff !important;
    }
    
    .lp-header-middle .lp-header-logo {
        max-width: 100%;
        width: auto;
    }
    
    .lp-header-middle .header-filter .input-group.width-49-percent {
        width: 40%;
    }
    
    .lp-header-middle .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 57%;
    }
    
    .header-container .lp-header-middle.fullwidth-header .lp-logo-header4-sts .select2.select2-container.select2-container--default {
        background-color: transparent !important;
    }
    
    .lp-header-middle.fullwidth-header .header-filter.pos-relative.form-group.margin-bottom-0.col-md-6 {
        width: 64%;
    }
    
    .lp-header-search.archive-search .lp-search-bar .select2-container .select2-selection--single {
        height: 46px !important;
        border: 1px solid #dedede;
    }
    
    .lp-menu-bar-color .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15,
    .lp-menu-bar.header-bg-color-class .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 60% !important;
    }
    
    .lp-menu-bar.header-bg-color-class .lp-search-chnage-styles-st-fix .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 52% !important;
    }
    
    .lp-menu-bar.header-bg-color-class .fullwidth-header .lp-search-chnage-styles-st .header-filter .input-group.width-49-percent.margin-right-15 {
        width: 52% !important;
    }
    
    .lp-header-search.archive-search .lp-header-search-form .chosen-container .chosen-results li {
        line-height: 20px;
    }
    
    .lp-header-search.archive-search .lp-features-inner-container li {
        margin-top: -10px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        margin-left: -6px;
        margin-top: -2px;
        transform: translateY(-50%);
        border-width: 7px 6px 0 6px;
    }
    
    .lp-listing .lp-rating-stars-outer {
        line-height: 18px;
    }
    
    .lp-listing .lp-listing-stars .lp-rating-num {
        line-height: 23px;
    }
    
    .submit_new_style #tags-by-cat {
        margin-bottom: 5px;
    }
    
    @media (max-width: 1024px) {
        .lp-header-middle.fullwidth-header .header-filter.pos-relative.form-group.margin-bottom-0.col-md-6 {
            width: 100%;
            margin-top: 62px;
        }
    }
    /*archive counter css*/
    
    .listing-simple .lp-all-results span,
    .listing-simple .lp-all-results {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
    }
    
    .listing-with-map .lp-all-results span,
    .listing-with-map .lp-all-results {
        color: #797979;
        font-size: 13px;
        margin-top: 5px;
        font-weight: 400;
    }
    
    .lp-result-bold {
        font-weight: 400 !important;
    }
    
    .lp-section.listing-style4 .lp-all-results,
    .lp-section.listing-style4 .lp-all-results span {
        font-size: 14px;
        color: #797979;
    }
    
    .lp-section.listing-style4 #lp-find-near-me,
    .lp-section.listing-style4 #select-lp-more-filter {
        margin-top: 0 !important;
        padding-top: 0;
    }
    
    .lp-section.listing-style4 .lp-sorting-filter-outer #lp-find-near-me .near-me-btn {
        line-height: 20px !important;
        padding-bottom: 0;
    }
    
    .remove-event-img {
        position: absolute;
        z-index: 9999;
        background-color: #000;
        color: #fff;
        font-size: 13px;
        line-height: 9px;
        padding: 5px 6px;
        margin-top: 125px;
        cursor: pointer;
        left: 10px;
    }
    
    .listingpro_TWRecentPostWidget+.lp-listing-additional-details h4 {
        border-top: solid 1px #e3e3e3 !important;
    }
    /*rating star colors*/
    
    .rating.rating-with-colors.lp-star-satisfactory .fa-star,
    .lp-multi-star-wrap .lp-multi-star-field.rating-with-colors.lp-star-satisfactory p i.fa-star {
        color: #c5de35;
    }
    
    .rating.rating-with-colors.lp-star-bad .fa-star,
    .lp-multi-star-wrap .lp-multi-star-field.rating-with-colors.lp-star-bad p i.fa-star {
        color: #ffc800;
    }
    
    .rating.rating-with-colors.lp-star-good .fa-star,
    .lp-multi-star-wrap .lp-multi-star-field.rating-with-colors.lp-star-good p i.fa-star {
        color: #73cf42;
    }
    
    .lp-rating-num.rating-with-colors.lp-star-satisfactory {
        background-color: #c5de35;
    }
    
    .lp-rating-num.rating-with-colors.lp-star-bad {
        background-color: #ffc800;
    }
    
    .lp-rating-num.rating-with-colors.lp-star-good {
        background-color: #73cf42;
    }
    
    .author-reviews-pagination {
        margin-top: 30px !important;
    }
    
    .about-activities-inner .reviews-pagin-wrap {
        display: none;
    }
    
    .about-activities-inner .reviews-pagin-wrap-1 {
        display: block;
    }
    
    .page-heading,
    .listing-page {
        background-position: center center;
        background-size: cover;
    }
    
    .lp-menu-bar.header-bg-color-class .fullwidth-header .lp-search-chnage-styles-st .header-filter .input-group.width-49-percent.margin-right-15.hide-where {
        width: 96% !important;
    }
    
    .featuresDataContainerOuterSubmit {
        display: none;
    }
    
    .lp-bottom-left-full-outer .lp-listing-announcements {
        position: absolute;
        height: 100%;
        width: 97% !important;
        left: 11px;
        right: 11px;
        display: none;
    }
    
    .lp-listing-announcements .lp-listing-announcement {
        bottom: auto !important;
    }
    
    .lp-menu-bar.header-bg-color-class .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15.hide-where,
    .lp-menu-bar-color .fullwidth-header .header-filter .input-group.width-49-percent.margin-right-15.hide-where {
        width: 96% !important;
    }
    
    .lp-header-middle .header-filter .input-group.width-49-percent.hide-what {
        width: 96%;
    }
    
    .lp-search-section-header-view .lp-search-bar.lp-search-bar-header .form-inline .form-group.lp-suggested-search.hide-where {
        border-right: 0;
        width: 96%;
    }
    
    .homepage-listing-view2-element {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .homepage-listing-view2-element .lp-grid-box-contianer {
        margin-bottom: 0;
    }
    /*new banner css*/
    
    .lp-header-search-tagline-sidebar-banner {
        font-size: 50px !important;
        margin-top: 39px !important;
        line-height: 60px !important;
        font-weight: 700;
        padding-right: 100px;
    }
    
    .lp-header-search-tagline-sidebar-banner span {
        font-size: 50px !important;
    }
    
    .sidebar-banner-des {
        font-size: 24px;
        margin-top: 15px;
        line-height: 30px;
        color: #fff;
        font-weight: 400;
        padding-right: 50px
    }
    
    .lp-header-search-wrap-sidebar-banner .lp-header-search-cats ul li a {
        font-size: 13px;
        font-weight: 700;
    }
    
    .lp-new-search-title {
        font-size: 22px;
        color: #fff;
        font-weight: 400;
    }
    
    .lp-new-search-des {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
    }
    
    .lp-banner-sidebar-search {
        background-color: rgb(32, 32, 32, .5);
        padding: 23px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    .lp-header-search .lp-banner-sidebar-search .lp-search-form-what {
        background-color: #fff !important;
        border-radius: 5px !important;
    }
    
    .lp-banner-sidebar-search .lp-search-bar {
        padding: 0;
    }
    
    .lp-banner-sidebar-search .lp-header-search-form .lp-suggested-search {
        width: 100%;
    }
    
    .lp-banner-sidebar-search .lp-search-bar .lp-suggested-search .input-group-addon.lp-border,
    .lp-banner-sidebar-search .form-group.lp-location-search .lp-where {
        line-height: 53px;
        height: 53px;
        font-weight: 700;
        font-size: 18px;
    }
    
    .lp-banner-sidebar-search input.dropdown_fields {
        height: 53px;
        line-height: 53px;
    }
    
    .input-group-addon-what-icon {
        background-color: transparent;
        color: #f189a8;
        float: left;
        font-size: 18px;
        font-weight: 600;
        height: 53px;
        right: 0;
        left: auto;
        line-height: 53px;
        padding: 0 0 0 0;
        position: absolute;
        top: 0;
        width: auto;
        z-index: 2;
        padding-right: 10px;
        display: none;
    }
    
    .input-group-addon-what-icon .fa.fa-calendar {
        display: none;
    }
    
    .lp-banner-sidebar-search .lp-search-bar .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 53px;
    }
    
    .lp-banner-sidebar-search .lp-search-bar .select2-container .select2-selection--single {
        padding-left: 80px;
        height: 53px;
    }
    
    .home .lp-banner-sidebar-search .form-group.lp-location-search {
        background-color: #fff !Important;
        width: 100%;
        border-radius: 5px;
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .lp-banner-sidebar-search .ui-widget select {
        height: 53px;
    }
    
    .lp-banner-sidebar-search .ui-widget {
        float: none;
    }
    
    .lp-banner-sidebar-search .lp-search-bar .form-group.lp-suggested-search {
        margin-bottom: 20px;
    }
    
    .home .lp-banner-sidebar-search .lp-search-form-submit,
    .lp-banner-sidebar-search .form-group .lp-search-bar-right {
        margin-left: 0 !important;
        border-radius: 5px !important;
        text-transform: capitalize;
        font-weight: 400;
    }
    
    .lp-banner-sidebar-search .header-filter .lp-location-search .ui-widget>i,
    .lp-banner-sidebar-search .lp-search-bar .lp-location-search .ui-widget>i {
        left: 72px;
    }
    
    .lp-banner-sidebar-search form #cities {
        padding-left: 90px;
        width: 100%;
        height: 53px;
        line-height: 53px;
        border-radius: 5px !important;
        border: 0;
    }
    
    .lp-header-search .lp-banner-sidebar-search .lp-header-search-form form #cities {
        border-radius: 5px !important;
    }
    
    .lp-header-search .lp-banner-sidebar-search .lp-search-icon {
        left: 17px;
    }
    
    .lp-banner-sidebar-search .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
        font-family: FontAwesome;
        content: "\f073";
        font-weight: 900;
        color: #f189a8;
        transform: translateY(-50%);
        height: auto;
        left: 50%;
        margin-left: -8px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0;
        display: none;
    }
    
    .lp-banner-sidebar-search .select2-container--default .select2-selection--single .select2-selection__arrow b,
    .lp-banner-sidebar-search .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-width: 0;
        height: auto;
        margin: 0;
    }
    
    .lp-sidebar-search-location {
        background-color: rgb(32, 32, 32, .5);
        padding: 23px;
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }
    
    .lp-sidebar-search-location img {
        width: 24px;
    }
    
    .home .lp-header-search-sidebar-style {
        bottom: 80px !important;
    }
    
    .lp-header-search.lp-header-search-sidebar-style .lp-search-form-what input {
        padding-left: 76px !important;
    }
    
    .lp-header-search.lp-header-search-sidebar-style form i.cross-search-q {
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lp-banner-sidebar-search .form-group.lp-location-search .chosen-container.chosen-container-single {
        background-color: transparent;
        height: 53px !important;
    }
    
    .lp-header-search.lp-header-search-sidebar-style .lp-location-search .chosen-container-single .chosen-single span {
        line-height: 53px;
        margin-left: 75px !important;
    }
    
    .lp-header-search.lp-header-search-sidebar-style .form-group.lp-location-search .chosen-container.chosen-container-single .chosen-single {
        height: 53px;
        line-height: 53px;
    }
    
    .lp-header-search.lp-header-search-sidebar-style .lp-header-search-form .chosen-container .chosen-results li {
        padding: 10px 20px !important;
    }
    
    .lp-header-search.lp-header-search-sidebar-style .lp-header-search-form .chosen-container .chosen-results li:hover,
    .lp-header-search.lp-header-search-sidebar-style .lp-header-search-form .chosen-container .chosen-results li.result-selected,
    .lp-header-search.lp-header-search-sidebar-style .lp-header-search-form #input-dropdown>ul li:hover {
        background-color: #333 !important;
        color: #fff !important;
        border-bottom: 1px solid #333 !important;
    }
    /*end new banner css*/
    
    .lp-sidebar-filters-style {
        opacity: 1;
        top: 0;
        height: 100vh;
    }
    
    .sidebar-filters .sidemap-container {
        width: -moz-calc(100% - 750px);
        width: -webkit-calc(100% - 750px);
        width: -o-calc(100% - 750px);
        width: calc(100% - 750px);
        height: 100vh;
        position: absolute;
        -webkit-transition: width .5s;
        /* For Safari 3.1 to 6.0 */
        transition: width .5s;
        right: 0;
        z-index: 7;
    }
    
    .sidebar-filters .post-with-map-container {
        width: 100%;
        height: 100%;
        padding: 0;
        -webkit-transition: width .5s;
        /* For Safari 3.1 to 6.0 */
        transition: width .5s;
    }
    
    .sidebar-filters .content-grids-wraps {
        width: 400px;
        float: left;
        -webkit-transition: width .5s;
        /* For Safari 3.1 to 6.0 */
        transition: width .5s;
        overflow-y: scroll;
        height: 100vh;
    }
    
    .lp-sidebar-filters-style .post-with-map-container-right {
        -webkit-transition: width .5s;
        transition: width .5s;
        width: 750px;
    }
    
    .sidebar-filters .sidebar-filters-wrap {
        -webkit-transition: width .5s;
        /* For Safari 3.1 to 6.0 */
        transition: width .5s;
        width: 350px;
        margin: 0;
        height: 100vh;
        left: 0;
        float: left;
        padding: 0 15px;
        overflow-y: scroll;
        background-color: #fff;
        letter-spacing: 0;
    }
    
    .lp-sidebar-filters-style .lp-listings.grid-style .lp-grid-box-contianer {
        margin-bottom: 20px;
    }
    
    .lp-grid-width2 .sidebar-filters-wrap {
        width: 350px;
    }
    
    .lp-grid-width2 .sidemap-container {
        width: -moz-calc(100% - 1108px);
        width: -webkit-calc(100% - 1108px);
        width: -o-calc(100% - 1108px);
        width: calc(100% - 1108px);
    }
    
    .lp-grid-width3 .sidebar-filters-wrap {
        width: 350px;
    }
    
    .lp-grid-width3 .lp-grid-box-contianer {
        width: 33.33%;
    }
    
    .lp-grid-width3 .sidemap-container {
        width: calc(100% - 100%);
        width: -moz-calc(100% - 100%);
        width: -webkit-calc(100% - 100%);
        width: -o-calc(100% - 100%);
    }
    
    .lp-grid-width3 .post-with-map-container-right {
        width: 100%;
        overflow: visible;
    }
    
    .lp-grid-width3 .content-grids-wraps {
        width: -moz-calc(100% - 350px);
        width: -webkit-calc(100% - 350px);
        width: -o-calc(100% - 350px);
        width: calc(100% - 350px);
    }
    
    .lp-sidebar-filters-style.sidebar-filters.lp-grid-width3 {
        height: 100%;
    }
    
    .lp-grid-width3 .post-with-map-container,
    .lp-grid-width3 .content-grids-wraps,
    .lp-grid-width3 .sidebar-filters-wrap {
        height: auto;
    }
    
    .lp-grid-width3 .post-with-map-container {
        overflow-x: visible;
    }
    
    .lp-sidebar-filters-style.lp-grid-width2 .post-with-map-container-right {
        width: 1108px;
    }
    
    .lp-sidebar-filters-style.lp-grid-width2 .content-grids-wraps {
        width: -moz-calc(100% - 350px);
        width: -webkit-calc(100% - 350px);
        width: -o-calc(100% - 350px);
        width: calc(100% - 350px);
    }
    
    .lp-sidebar-filters-style .lp-list-page-grid {
        border-left: 1px solid #eee;
    }
    
    .sidebar-filters .sidebar-filters-wrap::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }
    
    .sidebar-filters .sidebar-filters-wrap::-webkit-scrollbar {
        width: 12px;
        background-color: #F5F5F5;
    }
    
    .sidebar-filters .sidebar-filters-wrap::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        background-color: #D62929;
    }
    
    .sidebar-filters .filters-section-wrap {
        padding: 30px 15px;
        border-bottom: solid 1px #eee;
        padding-top: 23px;
    }
    
    .sidebar-filters .post-with-map-container-right .search-row {
        padding: 0;
    }
    
    .sidebar-filters .filters-section-wrap .filters-label {
        display: block;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
        color: #aaa9a9 !important;
        margin-bottom: 15px;
    }
    
    .sidebar-filters-wrap .lp_extrafields_select-border,
    .sidebar-filters-wrap .lp-filter_data_switch_on_off {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .listing-simple .lp-search-cats-filter-dropdown .input-group-addon:first-child {
        border-top-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important;
    }
    
    .sidebar-filters .filters-section-wrap .lp-search-cats-filter-dropdown {
        width: 100%;
    }
    
    .sidebar-filters .filters-section-wrap .lp-search-cats-filter-dropdown .input-group-addon {
        width: 40px;
        background-color: #fff;
    }
    
    .sidebar-filters .post-with-map-container-right .search-row #searchform .filters-section-wrap .lp-search-cats-filter-dropdown .chosen-container.chosen-container-single.chosen-container-single-nosearch {
        width: 100% !important;
    }
    
    .sidebar-filters .post-with-map-container-right .chosen-container-single .chosen-single {
        background-color: #fff;
    }
    
    .sidebar-filters .filters-section-wrap .currency-signs>ul>li {
        width: 23%;
    }
    
    .sidebar-filters .filters-section-wrap .currency-signs>ul>li>a {
        border: solid 1px #eaeaea;
        background-color: #fff;
        border-radius: 3px !important;
    }
    
    .sidebar-filters .input-group-addon:first-child {
        border-radius: 3px !important;
    }
    
    .sidebar-filters .filters-section-wrap.currencty-signs-wrap .form-group {
        display: block;
    }
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap {}
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap ul li {
        width: 48%;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap ul li a {
        background-color: #fff;
        padding-left: 0;
        padding-right: 0;
    }
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap #lp-find-near-me {
        width: 100%;
    }
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap #lp-find-near-me li {
        width: 97%;
    }
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap #lp-find-near-me .near-me-btn i {
        float: none;
    }
    
    .sidebar-filters .outer_all_page_overflow {
        display: block;
        position: static;
        width: 100%;
        height: auto;
    }
    
    .sidebar-filters .outer_all_page_overflow .lp_all_page_overflow {
        height: auto;
        padding-left: 0;
        width: 100%;
        border: 0;
        text-align: left;
    }
    
    .sidebar-filters .lp_all_page_overflow .col-md-12 {
        padding: 0;
    }
    
    .sidebar-filters .outer_all_page_overflow {
        display: block;
        position: static;
        width: 100%;
        height: auto;
    }
    
    .sidebar-filters .outer_filter_show_result_cancel {
        display: none;
    }
    
    .lp-sidebar-filters-style.sidebar-filters {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        position: relative;
        overflow: hidden;
    }
    
    .lp-sidebar-filters-style .mapSidebar {
        height: calc(100% - 105px);
    }
    
    .lp-filter-top-section {
        margin-top: 20px;
        margin-bottom: 10px;
        padding: 0 15px;
    }
    
    .lp-filter-top-section li h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }
    
    .lp-filter-top-section li {
        display: inline-block;
    }
    
    .lp-filter-top-section li:last-child {
        float: right;
    }
    
    .lp-filter-top-section li a {
        font-size: 14px;
    }
    
    .lp-sidebar-filters-style form#searchform {
        padding: 0;
    }
    
    .lp-sidebar-filters-style .post-with-map-container-right .search-row .lp-filter-inner {
        border-top: 0 solid #dedede !important;
        border-bottom: 0 solid #dedede !important;
        padding-top: 0 !important;
    }
    
    .lp-sidebar-filters-style .currency-signs>ul>li>a.active {
        color: #fff !important;
        border-color: #bdbcbc !important;
        background-color: #bdbcbc !important;
        border-radius: 2px;
    }
    
    .lp-sidebar-filters-style .currency-signs>ul>li>a.active:hover {
        border-color: #bdbcbc !important;
    }
    
    .lp-sidebar-filters-style .search-filters>ul>li>a {
        color: #797979;
        border: 1px solid #dedede;
    }
    
    .lp-sidebar-filters-style .lp-s-hidden-ara,
    .lp-sidebar-filters-style .outer_all_page_overflow {
        display: block !important;
    }
    
    .lp-sidebar-filters-style .lp_add_more_filter {
        display: none;
        position: relative;
    }
    
    .lp-sidebar-filters-style .lp_all_page_overflow h2 {
        display: block;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 16px;
        color: #aaa9a9;
        margin-bottom: 0;
    }
    
    .lp-sidebar-filters-style .lp_more_filter_data_section h3 {
        display: inline;
        color: #797979;
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .lp-sidebar-filters-style .lp_extrafields_select-border2 h3 {
        display: inline-block;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .lp-sidebar-filters-style .lp-more-filters-outer {
        float: left;
        width: 100%;
        margin-bottom: 0;
    }
    
    .lp-sidebar-filters-style .lp_extrafields_select-border2 {
        border-bottom: 0 solid #dedede !important;
        padding-bottom: 0 !important;
        padding-top: 0;
    }
    
    .lp-sidebar-filters-style .lp_filter_checkbox li {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        line-height: 36px;
    }
    
    .lp-sidebar-filters-style .lp-more-filters-outer .lp_filter_checkbox {
        display: block;
        width: auto;
    }
    
    .lp-sidebar-filters-style .filter_checkbox_container,
    .lp-sidebar-filters-style .filter_radiobox_container {
        width: 100%;
        padding-left: 35px;
        text-transform: capitalize;
        font-size: 12px;
        color: #797979 !important;
        font-weight: 300;
    }
    
    .lp-sidebar-filters-style .filter_checkbox_checkmark,
    .lp-sidebar-filters-style .filter_radio_select {
        left: 0;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lp-sidebar-filters-style .lp_more_filter_data_section {
        padding-bottom: 5px;
    }
    
    .lp-sidebar-filters-style .lp-features-filter ul>li {
        width: 100% !important;
        padding-right: 0 !important;
    }
    
    .lp-sidebar-filters-style .lp-features-filter ul>li .checkbox label::before {
        left: auto;
        right: 0;
        margin-right: 0;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    
    .lp-sidebar-filters-style .lp-features-filter .input-group.margin-right-0 input[type="checkbox"] {
        width: 100%;
    }
    
    .lp-sidebar-filters-style .lp-features-filter .checkbox,
    .lp-sidebar-filters-style .tags-area.lp-features-filter ul li .checkbox label {
        width: 100%;
        padding-left: 0;
    }
    
    .lp-sidebar-filters-style .tags-area.lp-features-filter ul li .checkbox label {
        font-weight: 400;
        width: 100%;
        padding-left: 0;
        text-transform: capitalize;
        color: #797979;
        font-size: 14px;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me {
        display: inline-block;
        float: left;
        margin-top: 10px;
        margin-left: 0;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me .lp-tooltip-div-hidden>.lp-tooltip-arrow {
        display: none;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me ul li a {
        float: none;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me .lp-tooltip-div-hidden {
        position: relative;
        box-shadow: none;
        visibility: hidden;
        display: none;
        opacity: 0;
        margin-top: 30px;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me .lp-tooltip-div-hidden.active {
        position: relative !important;
        box-shadow: none;
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me .lp-tooltip-outer .lp-tool-tip-content .location-filters-wrapper {
        padding: 7px 0;
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        padding-bottom: 0;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me .slider:before {
        display: none !important;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me #distance_range_div .slider {
        background-color: #cfcfcf !important;
    }
    
    .search-filters>ul>li>a.active {
        color: #fff;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me a {
        color: #797979 !important;
        border: 1px solid #dedede !important;
        background-color: #fff;
    }
    
    .lp-sidebar-filters-style #lp-find-near-me a:hover {
        background-color: #fff;
        color: #797979 !important;
    }
    
    .search-filters>ul>li>a.active,
    div#lp-find-near-me ul li a.active {
        color: #fff !important;
    }
    
    .lp-grid-width2 .lp-grid-box-contianer {
        width: 374px;
    }
    
    .lp-title-new-style .listing-view-layout>ul li a {
        border-radius: 4px;
        height: 41px;
        line-height: 41px;
        width: 50px;
        font-size: 18px;
    }
    
    .lp-title-new-style .listing-view-layout>ul li {
        float: left;
        margin-left: 4px;
    }
    
    .lp-title-new-style {
        padding: 20px;
        border-left: 1px solid #eee;
    }
    
    .lp-filter-name span:first-child {
        color: #6c6c6c;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .lp-filter-name span:last-child {
        font-size: 14px;
        color: #919191;
        line-height: 41px;
    }
    
    .lp-grid-width1 .lp-filter-name span:last-child {
        line-height: 20px;
        display: block;
    }
    
    .lp-sidebar-filters-style #searchform .chosen-container.chosen-with-drop .chosen-drop {
        width: calc(100% + 41px);
        left: -41px;
    }
    
    .lp-header.style-v2 {
        z-index: 99999 !important;
    }
    
    .lp-grid-width3 .lp-archive-clearfix {
        display: none;
    }
    
    .view-on-map {
        background-color: #444 !important;
        BORDER-RADIUS: 5px !important;
        padding: 0 20px !important;
        display: none !important;
        overflow: hidden !important;
        position: fixed !important;
        right: 20px !important;
        bottom: 0 !important;
        z-index: 99 !important;
    }
    
    .lp-grid-width3 .view-on-map {
        display: block !important;
    }
    
    .lp-sidebar-filters-style .lp-pagination.pagination {
        margin-bottom: 30px;
    }
    /*new archive page */
    /*new grid style*/
    
    .lp-grid6-status {
        position: absolute;
        left: 21px;
        top: 17px;
        border: 1px solid #fff;
        border-radius: 2px;
        padding: 1px 8px;
        background: rgba(0, 0, 0, .5);
    }
    
    .lp-grid6-status .fa {
        color: #fff;
        margin-right: 5px;
    }
    
    .lp-grid6-status .li-listing-clock-outer {
        margin-top: 0;
        padding: 5px 0;
    }
    
    .lp-grid6-status a span,
    .lp-grid6-status a {
        color: #fff !important;
        line-height: 12px !important;
    }
    
    .lp-grid6-status a:hover span,
    .lp-grid6-status a:hover {
        color: #fff !important;
    }
    
    .lp-grid6-rating {
        background-color: #eeeeee;
        position: absolute;
        right: 21px;
        top: 17px;
        border-radius: 25px;
        overflow: hidden;
        height: 26px;
        line-height: 26px;
        padding-right: 10px;
    }
    
    .lp-grid6-rating .lp-rating-num {
        color: #797979;
        font-weight: 700;
        font-size: 16px;
    }
    
    .lp-grid6-rating .fa {
        background-color: #8fce6e;
        width: 40px;
        text-align: center;
        font-size: 16px;
        height: 26px;
        line-height: 26px;
        margin-right: 4px;
    }
    
    .lp-grid6-top-container {
        top: auto !important;
        bottom: 0;
        -webkit-transform: translateY(calc(100% - 105px));
        transform: translateY(calc(100% - 105px));
        transition: all .3s;
        padding: 0 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        position: absolute;
        width: 100%;
        border-right: 1px solid #dedede;
        border-left: 1px solid #dedede;
    }
    
    .lp-grid6-top-container .clearfix {
        background: #fff;
        padding: 17px 20px;
    }
    
    .lp-grid6-top-container .price-range .list-style-none .active {
        color: #73cf42 !important;
    }
    
    .lp-grid6-top-container .price-range .list-style-none .post-rice {
        display: none;
    }
    
    .lp-grid6-top-container .lp-h4 {
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    .lp-grid-box-contianer.grid_view6 .lp-grid-box-thumb-container {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .grid_view6 .lp-grid-box-thumb-container:hover .lp-grid6-top-container {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .grid_view6 .lp-grid-box ul {
        margin-bottom: 5px;
    }
    
    .grid_view6 .list-style-none span {
        color: #797979;
        font-weight: 500;
        padding: 0;
        font-size: 14px;
    }
    
    .lp-listing-cats a {
        color: #797979;
        font-size: 14px;
    }
    
    .lp-grid6-cate span.cat-icon {
        display: inline-block;
        line-height: 17px;
        margin-right: 5px;
        width: 15px;
    }
    
    .lp-grid6-top-container-inner {
        height: 105px;
        background: #fff;
        width: calc(100% - 98px);
        padding-left: 20px;
        padding-top: 20px;
        margin-top: 1px;
    }
    
    .lp-grid-box-bottom-grid6 .fa {
        margin-right: 5px;
    }
    
    .lp-grid-box-bottom-grid6 a,
    .lp-grid6-cate a {
        color: #797979 !important;
        font-size: 13px;
    }
    
    .grid_view6 .lp-grid-box {
        border-radius: 8px;
        border-bottom: 1px solid #dedede;
        overflow: hidden;
    }
    
    .grid_view6 .lp-new-grid-bottom-button {
        background-color: #f5f5f5;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .grid_view6 .lp-new-grid-bottom-button ul {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        margin-bottom: 0;
        border-bottom: 0;
    }
    
    .grid_view6 .lp-new-grid-bottom-button ul li p,
    .grid_view6 .lp-new-grid-bottom-button ul li a {
        line-height: 42px;
        font-size: 12px;
    }
    
    .lp-grid6-top-container-inner .price-range .simptip-position-top.simptip-movable:hover:before,
    .lp-grid6-top-container-inner .price-range .simptip-position-top.simptip-movable:hover:after {
        display: none;
    }
    
    .lp-grid6-top-container-inner .lp-listing-logo-outer {
        position: absolute;
        right: 0;
        top: 0;
        width: 100px;
        background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/admin/grid6-top.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        height: 106px;
        padding-bottom: 0;
        text-align: center;
    }
    
    .grid_view6 .lp-grid-box-thumb {
        overflow: hidden;
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
    }
    
    .lp-grid6-top-container-inner .lp-listing-logo img {
        width: 54px;
        height: 54px;
        border-radius: 100%;
        margin-top: -25px;
    }
    
    .lp-grid6-top-container-inner h4.lp-h4>a>.listing-pro {
        border: 1px solid #ebac2c;
        border-radius: 3px;
        color: #ebac2c;
        float: left;
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        margin-right: 7px;
        margin-top: 4px;
        padding: 0 3px 0 4px;
    }
    /*end new grid style*/
    /*//event grid style*/
    
    .lp-event-grid-new .lp-event-image-container {
        position: relative;
    }
    
    .lp-event-grid-new .lp-event-author-listing {
        position: absolute;
        margin: 10px;
        z-index: 9999;
    }
    
    .lp-event-grid-new .lp-event-author-listing .event-author-img {
        float: left;
        width: 38px;
        height: 38px !important;
        border: solid 2px #fff;
        border-radius: 18px;
        margin-right: 12px;
    }
    
    .lp-event-grid-new .lp-event-author-listing span {
        color: #fff;
        float: left;
        line-height: 18px;
    }
    
    .lp-event-grid-new .lp-event-outer-content {
        margin-bottom: 0 !important;
        padding-bottom: 20px;
        border-bottom: dashed 1px #e3e3e3;
    }
    
    .lp-event-grid-new .lp-evnt-content-container a {
        margin-bottom: 0;
        display: block;
    }
    
    .lp-event-grid-new .lp-event-venue {}
    
    .lp-event-grid-new .lp-event-venue li span {
        font-size: 13px;
    }
    
    .lp-event-grid-new .lp-event-venue li span i {
        margin-right: 5px;
        display: inline-block;
    }
    
    .lp-event-grid-new .lp-events-btns-outer .total-going {
        display: none;
    }
    
    .lp-event-grid-new .lp-evnt-date-container {
        background-color: transparent;
        border: solid 1px #e3e3e3;
    }
    
    .lp-event-grid-new .lp-attending-users-list {
        padding-left: 20px;
        float: left;
        line-height: 52px;
    }
    
    .lp-event-grid-new .lp-attending-users-list span {
        margin-left: 6px;
        margin-top: 0;
        font-size: 14px;
        display: inline-block;
        vertical-align: middle;
    }
    
    .lp-event-grid-new .lp-event-attendees {
        margin-left: 10px !important;
        display: inline-block;
        vertical-align: middle;
    }
    
    .lp-event-grid-new .lp-event-attendees li {
        width: 38px;
        height: 38px;
        display: inline-block;
        margin-left: -15px;
    }
    
    .lp-event-grid-new .lp-event-attendees li img {
        width: auto;
        height: auto;
        border: solid 2px #fff;
        border-radius: 20px;
    }
    
    .lp-event-grid-new .lp-event-attendees li,
    .listing-page-sidebar .lp-widget .lp-event-attendees li:last-child {
        padding: 0 !important;
    }
    
    .lp-event-grid-new .lp-attending-users-outer {
        float: right;
    }
    
    .lp-event-grid-new .lp-attending-users-outer .attend-event {
        width: auto;
        padding: 1px 15px;
    }
    
    .lp-event-grid-new .lp-event-image-container .lp-event-image-overlay {
        background-image: linear-gradient(to left, rgba(255, 0, 0, 0), rgba(5, 5, 5, 0.75));
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 0;
    }
    /*event calender css start*/
    
    .event-pager ul li span.current {
        cursor: default;
    }
    
    .list-calendar-pager-wrap {
        display: none;
    }
    
    .list-calendar-pager-wrap.current-event-page-active {
        display: block;
    }
    
    .event-calender-weekly-wrap .week-days-wrap,
    .event-calender-weekly-wrap .events-for-day,
    .event-calender-weekly-wrap .no-events-msg {
        display: none;
    }
    
    .event-calender-weekly.events-after-ajax .week-days-wrap:first-child {
        display: block;
    }
    
    .week-days-wrap.active-week {
        display: block;
    }
    
    .week-day-box,
    .week-day-date-box {
        float: left;
        width: 14.28%;
        text-align: center;
        border: solid 0 #ccc;
    }
    
    .week-day-date-box.has-events {}
    
    .week-day-date-box span {
        position: relative;
        width: 42px;
        height: 42px;
        line-height: 42px;
        border-radius: 100%;
        margin: 0 auto;
        display: inline-block;
    }
    
    .week-day-date-box span:hover {
        background-color: #f3f3f3;
        cursor: pointer;
    }
    
    .week-days-dates-row {
        margin-bottom: 10px;
    }
    
    .event-calender-filters {
        margin: 50px;
    }
    
    .events-by-day-wrap {
        display: none;
    }
    
    .event-calender-list-view .events-by-day-wrap {
        display: block;
    }
    
    .event-spinner {
        width: 100%;
        text-align: center;
        font-size: 79px;
        display: none;
        min-height: 265px;
    }
    
    .event-calender-modern-main {
        border: 1px solid #d8d8d8;
        border-radius: 3px;
        -webkit-box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        -moz-box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    }
    
    .event-calender-monthly {
        padding-bottom: 25px;
        -webkit-box-shadow: inset -2px -60px 0 -35px rgba(225, 225, 225, 1);
        -moz-box-shadow: inset -2px -60px 0 -35px rgba(225, 225, 225, 1);
        box-shadow: inset -2px -60px 0 -35px rgba(225, 225, 225, 1);
    }
    
    .cc-month {
        font-size: 16px;
        color: #333;
        font-weight: 600;
    }
    
    .get-npm {
        color: #888;
        font-size: 14px;
    }
    
    .get-npm:hover {
        cursor: pointer;
    }
    
    .calender-header {
        padding-bottom: 25px;
        padding-top: 25px;
    }
    
    .week-day-box {
        color: #333;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .week-day-date-box {
        font-size: 14px;
        font-weight: 400;
        color: #333;
        line-height: 42px;
    }
    
    .calender-header-switcher {
        padding-top: 25px;
        background: #f5f5f5;
        padding-bottom: 25px;
    }
    
    .calender-header-switcher ul li {
        color: #888888;
        font-weight: 400;
        font-size: 14px;
        background: #fff;
        border-radius: 5px;
        border: 1px solid #dedede;
        line-height: 36px;
    }
    
    .calender-header-switcher ul li.active {
        color: #fff;
    }
    
    .calender-header-switcher ul li:first-child {
        border-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .calender-header-switcher ul li:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .calender-header-switcher ul li .fa {
        margin-right: 4px;
    }
    
    .event-calender-monthly,
    .today-event-date-container {
        background: #f5f5f5;
    }
    
    .modern-calender-inner-right {
        background: #f5f5f5;
    }
    
    .today-event-date-container p {
        font-size: 13px;
        color: #888;
    }
    
    .today-event-date-container p span {
        color: #333;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .modern-calender-inner-right .event-img {
        width: 72px;
        height: 72px;
        overflow: hidden;
        margin-right: 10px;
        display: inline-table;
        vertical-align: top;
        float: left;
    }
    
    .modern-calender-inner-right .event-by-day-content-wrap {
        display: inline-table;
        vertical-align: top;
        width: -webkit-calc(100% - 86px);
        width: -moz-calc(100% - 86px);
        width: calc(100% - 86px);
        float: left;
    }
    
    .prev-mon-markup .fa {
        margin-right: 5px;
    }
    
    .next-mon-markup .fa {
        margin-left: 5px;
    }
    
    .event-by-day-content-wrap-time {
        font-size: 12px;
        margin: 0;
    }
    
    .event-by-day-content-wrap p {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 24px;
    }
    
    .event-by-day-content-wrap-time-title {
        color: #333;
        font-size: 14px;
        font-weight: 700;
    }
    
    .modern-calender-inner-right .event-by-day-wrap,
    .event-calender-classic .event-by-day-wrap,
    .event-calender-list-view .event-by-day-wrap {
        border: 1px solid #dedede;
        border-radius: 5px;
        background: #fff;
        padding: 9px;
        -webkit-box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        -moz-box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        margin-bottom: 14px !important;
    }
    
    .event-calender-classic .event-by-day-wrap:last-child,
    .event-calender-list-view .event-by-day-wrap:last-child {
        margin-bottom: 0 !important;
    }
    
    .event-calender-classic .event-by-day-wrap,
    .event-calender-list-view .event-by-day-wrap {
        padding: 20px;
    }
    
    .event-calender-classic .event-calender-monthly {
        background: #fff;
    }
    
    .event-calender-classic .event-by-day-wrap,
    .event-calender-list-view .event-by-day-wrap {
        margin: 30px;
        margin-top: 0;
    }
    
    .modern-calender-inner-right .event-by-day-wrap,
    .event-calender-classic .event-by-day-wrap,
    .event-calender-list-view .event-by-day-wrap {
        border-right: 12px solid #6fb2f6;
    }
    
    .event-calender-classic .event-by-day-wrap .event-img,
    .event-calender-list-view .event-by-day-wrap .event-img {
        width: 140px;
        height: 140px;
        overflow: hidden;
        margin-right: 10px;
        display: inline-table;
        vertical-align: top;
        background-color: #f9f9f9;
    }
    
    .event-calender-classic .event-by-day-content-wrap,
    .event-calender-list-view .event-by-day-content-wrap {
        display: inline-table;
        vertical-align: top;
        width: -webkit-calc(730px - 190px);
        width: -moz-calc(730px - 190px);
        width: calc(730px - 190px);
        margin-right: 30px;
    }
    
    .event-calender-classic .events-by-day-wrap.caew-box,
    .event-calender-list-view .list-calendar-inner-wrap {
        background: #f5f5f5;
        padding: 30px 0;
    }
    
    .event-by-day-content-wrap-time-title {
        display: inline-block;
    }
    
    .classic-event-by-day-content-wrap-time {
        margin-bottom: 3px;
    }
    
    .events-by-day-wrap-classic-con .calender-header-switcher {
        padding: 0;
    }
    
    .events-by-day-wrap-classic-con {
        padding-bottom: 25px;
        padding: 30px;
        padding-top: 0;
        background: #f5f5f5;
    }
    
    .event-calender-classic .event-by-going-wrap,
    .event-calender-list-view .event-by-going-wrap {
        display: inline-table;
        vertical-align: top;
        width: -webkit-calc(100% - 730px);
        width: -moz-calc(100% - 730px);
        width: calc(100% - 730px);
    }
    
    .event-by-going-wrap p {
        color: #888;
        font-size: 12px;
        margin: 0;
        line-height: 24px;
        font-weight: 400;
    }
    
    .event-by-going-wrap p:first-child {
        color: #333;
        font-size: 14px !important;
        line-height: 0;
        margin: 6px 0;
        margin-bottom: 10px;
    }
    
    .event-by-going-wrap ul li {
        background-color: #f9f9f9;
        border-radius: 5px;
        width: 43px;
        height: 43px;
        display: inline-block;
        margin-bottom: 5px;
        float: right;
        margin-left: 5px;
    }
    
    .event-by-going-wrap ul li button {
        display: inline-block;
        width: 100%;
        height: 100%;
        color: #fff;
        border-radius: 5px;
        border: 0;
    }
    
    .event-calender-classic .week-days-dates-row {
        margin-bottom: 0;
        position: relative;
    }
    
    .event-calender-classic .week-days-dates-row:before {
        content: '';
        height: 1px;
        content: '';
        background: #dedede;
        height: 1px;
        width: -webkit-calc(100% - 140px);
        width: -moz-calc(100% - 140px);
        width: calc(100% - 140px);
        position: absolute;
        left: 70px;
    }
    
    .event-calender-classic .week-days-dates-row .event-calender-classic .today-event-date-container p,
    .event-calender-list-view .today-event-date-container p,
    .event-calender-weekly .today-event-date-container p {
        font-size: 15px !important;
        color: #333 !important;
        display: inline-block;
        border: 1px solid #dedede;
        border-radius: 5px;
        padding: 0 15px;
        line-height: 33px;
        margin-top: 3px;
    }
    
    .calender-header-switcher2 ul li {
        display: inline-block;
    }
    
    .calender-header-switcher2 ul li .fa {
        display: inline-block;
        width: 40px;
        height: 36px;
        border: 1px solid #dedede;
        border-radius: 3px;
        text-align: center;
        color: #333;
        font-size: 18px;
        line-height: 36px;
        background: #fff;
    }
    
    .calender-header-switcher2 ul .active .fa {
        color: #fff;
        -webkit-box-shadow: 0 -1px 6px 1px rgba(222, 222, 222, 1);
        -moz-box-shadow: 0 -1px 6px 1px rgba(222, 222, 222, 1);
        box-shadow: 0 -1px 6px 1px rgba(222, 222, 222, 1);
    }
    
    .calender-header-moderen-date2 .today-event-date-container p {
        margin: 0;
        line-height: 20px;
    }
    
    .calender-header-moderen-date2 .today-event-date-container p span {
        display: inline-block;
        width: 100%;
    }
    
    .event-calender-list-view .calender-header {
        padding: 25px 30px;
    }
    
    .event-calender-list-view .events-by-day-wrap {
        margin-bottom: 15px;
    }
    
    .event-calender-list-view .events-by-day-wrap:last-child {
        margin-bottom: 0;
    }
    
    .event-calender-classic-weekly .week-day-events-wrap {
        background: #f5f5f5;
        padding: 30px 0;
        padding-bottom: 50px;
        -webkit-box-shadow: inset -2px -60px 0 -30px rgba(225, 225, 225, 1);
        -moz-box-shadow: inset -2px -60px 0 -30px rgba(225, 225, 225, 1);
        box-shadow: inset -2px -60px 0 -30px rgba(225, 225, 225, 1);
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner {
        border: 1px solid #dedede;
        border-radius: 5px;
        background: #fff;
        padding: 9px;
        -webkit-box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        -moz-box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
        margin-bottom: 14px !important;
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner {
        padding: 20px;
        margin: 30px;
        margin-top: 0;
        border-right: 12px solid #6fb2f6;
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner:last-child {
        margin-bottom: 0 !important;
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner .event-img {
        width: 140px;
        height: 140px;
        overflow: hidden;
        margin-right: 10px;
        display: inline-table;
        vertical-align: top;
        background-color: #f9f9f9;
        position: relative;
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner .event-by-day-content-wrap {
        display: inline-table;
        vertical-align: top;
        width: -webkit-calc(730px - 190px);
        width: -moz-calc(730px - 190px);
        width: calc(730px - 190px);
        margin-right: 30px;
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner .event-by-going-wrap {
        display: inline-table;
        vertical-align: top;
        width: -webkit-calc(100% - 730px);
        width: -moz-calc(100% - 730px);
        width: calc(100% - 730px);
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner .events-for-day-date {
        position: absolute;
        top: 5px;
        left: 5px;
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        line-height: 24px;
        padding: 0 12px;
        border-radius: 3px;
    }
    
    .event-calender-classic-weekly .event-by-day-wrap-inner .events-for-day-date span {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
    }
    
    .event-calender-classic-weekly .week-day-box {
        margin-bottom: 15px;
    }
    
    .event-calender-classic-weekly .week-day-box span {
        display: inline-block;
        width: 100%;
        font-weight: 500;
        color: #333;
    }
    
    .event-calender-classic-weekly .calender-header {
        padding: 25px 30px !important;
    }
    
    .week-days-wrap-next-prv span {
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        background: #fff;
        border: 1px solid #e2e2e2;
        border-radius: 50px;
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, .015);
        transition: all .33s ease;
        display: inline-block;
        font-size: 26px;
    }
    
    .week-days-wrap-next-prv {
        font-weight: 600;
        font-size: 16px;
        background: #fafafa;
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .week-days-wrap-next-prv .event-npw {
        margin-right: 25px;
    }
    
    .week-days-wrap-next-prv .event-npw {
        margin-left: 25px;
    }
    
    .event-calender-classic .calender-header {
        padding: 25px 50px;
    }
    
    .lp-pagination.event-pager ul.page-numbers {
        margin-top: 30px !important;
    }
    
    .week-day-date-box.has-events span:before {
        content: '';
        width: 8px;
        height: 8px;
        position: absolute;
        bottom: 2px;
        border-radius: 100%;
        margin: 0 auto;
        text-align: center;
        left: 0;
        right: 0;
    }
    
    .event-calender-modern-main .event-calender-monthly .col-md-6.background-white {
        padding-left: 0;
        padding-right: 0;
    }
    
    .event-calender-modern-main .calender-header {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .event-calender-classic .week-day-date-box {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
    .event-calender-list-view .cc-month {
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .list-calendar-pager-wrap .event-by-day-content-wrap-time-title {
        margin-top: 0;
    }
    
    .event-calender-classic .week-days-wrap,
    .event-calender-classic .week-days-dates-row,
    .lp-week-days-wrape-inner-container {
        margin: 0 -45px;
    }
    
    .week-days-wrap-next-prv span:hover {
        cursor: pointer;
    }
    
    .event-calender-classic .week-days-dates-events-row {
        padding: 0 45px !important;
    }
    
    .event-calender-classic .month-dates-wrap,
    .event-calender-modern-main .month-dates-wrap {
        margin-bottom: 0 !important;
    }
    
    .event-calender-classic .cc-month,
    .event-calender-classic-weekly .cc-month {
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .event-calander-classic2 .events-by-day-wrap-classic-con {
        padding-bottom: 30px !important;
        padding-top: 30px;
    }
    
    .event-calander-classic2 {
        background: #f5f5f5;
        padding-bottom: 10px;
    }
    
    .modern-calender-inner-right .event-by-day-wrap {
        margin-bottom: 10px !Important;
    }
    
    .modern-calender-inner-right .event-calander-map {
        height: 235px;
    }
    
    .event-calender-classic-map {
        padding: 0 30px;
        padding-bottom: 20px;
        padding-top: 10px;
    }
    
    .event-calander-list-map {
        padding: 0 30px;
    }
    
    .event-calender-weekly-map {
        padding-bottom: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }
    /*new color for event */
    
    .calender-header-switcher ul li.active,
    .calender-header-switcher2 ul .active .fa {
        background: #ff5a5f;
        border-color: #ff5a5f;
    }
    
    .prev-mon-markup .fa,
    .next-mon-markup .fa,
    .event-by-day-content-wrap-time,
    .event-by-day-content-wrap-time-title:hover,
    .get-npm:hover {
        color: #ff5a5f;
    }
    
    .event-by-going-wrap ul li button,
    .event-calender-classic-weekly .event-by-day-wrap-inner .events-for-day-date,
    .week-day-date-box.has-events span:before {
        background: #ff5a5f;
    }
    
    .event-calender-classic .today-event-date-container p span,
    .event-calender-list-view .today-event-date-container p span,
    .event-calender-weekly .today-event-date-container p span {
        color: #ff5a5f !important;
    }
    
    .week-day-date-box.has-events span:hover {
        background-color: #ff5a5f;
        color: #fff;
    }
    
    .week-days-wrap-next-prv span:hover {
        border-color: #ff5a5f;
        color: #ff5a5f;
    }
    /*by sajid for event calander STARTS*/
    
    .event-calender-weekly-map,
    .event-calander-list-map,
    .event-calander-moder-map,
    .event-calender-classic-map,
    .event-calander-classic2,
    .event-calander-classic2 .event-by-day-wrap {
        display: none;
    }
    
    .event-calander-map {
        width: 100%;
        height: 400px;
    }
    
    .event-calender-classic .today-event-date-container p {
        font-size: 15px !important;
        color: #333 !important;
        display: inline-block;
        border: 1px solid #dedede;
        border-radius: 5px;
        padding: 0 15px;
        line-height: 33px;
        margin-top: 3px;
    }
    
    .lp-close-active-box-inner {
        line-height: 36px;
    }
    
    .close-active-box .fa {
        background: #ff5a5f;
        border-radius: 100%;
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 11px;
        text-align: center;
        color: #fff;
        display: inline-block;
        vertical-align: middle;
        margin-top: -1px;
    }
    
    .close-active-box:hover {
        cursor: pointer;
    }
    
    .event-calender-modern .close-active-box {
        display: none;
    }
    /*by sajid for event calander ENDS*/
    /*responsive for events */
    /*new anncouncement page css*/
    
    .dashboard-form-submit-section {
        background-color: #fff;
        border: solid 1px #ebebeb;
        border-radius: 2px;
        padding: 15px;
        margin-bottom: 15px;
        -webkit-box-shadow: -1px 4px 9px -4px #767676;
        box-shadow: -1px 4px 9px -4px #767676;
    }
    
    .lp-add-announcement-form .lp-coupon-box-row label {
        margin-top: 0;
    }
    
    .lp-add-announcement-form .lp-coupon-box-row .form-group {
        margin-top: 0 !important;
    }
    /*new events page css*/
    
    .event-featured-image-wrap-dash {
        height: 200px;
    }
    
    .events-map-wrap {
        position: relative;
    }
    
    .events-map-wrap .lp-coordinates {
        position: absolute;
        right: 0;
        top: 6px;
        border: 1px solid #dedede;
        padding: 0;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom: 0;
    }
    
    .events-map-wrap .lp-coordinates a {
        background: none;
        color: #000;
        margin: 0;
        border-right: 1px solid #dedede;
        border-radius: 0;
        padding: 0 10px;
        float: left;
        font-size: 12px;
        display: inline-block;
        line-height: 26px;
    }
    
    .events-map-wrap .lp-coordinates a:last-child {
        border-right: 0;
    }
    
    .events-map-wrap .lp-coordinates a.active,
    .events-map-wrap .lp-coordinates a:hover {
        background: #0095ff;
        color: #fff;
    }
    
    .events-map-wrap .lp-coordinates a:after {
        display: none;
    }
    /*new menu page css*/
    
    .manange-typs-groups-tabs {
        border-bottom: solid 1px #dce0e2;
        margin-bottom: 30px;
        padding: 10px 20px;
    }
    
    .manange-typs-groups-tabs li {
        display: inline-block;
        font-weight: bold;
        font-size: 12px;
        width: 48%;
        text-align: center;
        position: relative;
        cursor: pointer;
        color: #3f576e;
    }
    
    .manange-typs-groups-tabs li.active {
        color: #007fd4;
    }
    
    .manange-typs-groups-tabs li.active:after {
        content: ' ';
        width: 100%;
        height: 1px;
        background-color: #007fd4;
        display: block;
        position: absolute;
        bottom: -12px;
    }
    
    .manange-typs-groups-tabs-content {}
    
    .manange-typs-groups-tabs-content .types-group-content,
    .ordering-service-wrap ul {
        padding: 0 20px 20px 20px;
        display: none;
    }
    
    .manange-typs-groups-tabs-content .types-group-content.active-content {
        display: block;
    }
    
    .manange-typs-groups-tabs-content .types-group-content {}
    
    .manange-typs-groups-tabs-content .types-group-content ul {}
    
    .manange-typs-groups-tabs-content .types-group-content ul li,
    .ordering-service-wrap ul li {
        margin-bottom: 10px;
        margin-bottom: 10px;
        color: #3a3a3a;
        text-transform: uppercase;
        font-size: 14px;
    }
    
    .manange-typs-groups-tabs-content .types-group-content ul li span,
    .ordering-service-wrap ul li span {
        float: right;
        margin-left: 8px;
        color: #aab5bf;
    }
    
    .lp-listing-selecter-drop.lp-coupon-box-row {
        margin-bottom: 0;
    }
    
    .manange-typs-groups-tabs-content .add-new-type input[type="text"],
    .manange-typs-groups-tabs-content .add-new-group input[type="text"],
    .add-new-service select {
        border: 1px solid #e3e3e3;
        height: 36px;
        border-radius: 4px;
        width: 186px;
        margin-right: 10px;
        padding: 0 10px;
    }
    
    .manange-typs-groups-tabs-content .add-new-type i,
    .manange-typs-groups-tabs-content .add-new-group i,
    .add-new-service i {
        font-size: 21px;
        color: #007fd4;
        cursor: pointer;
    }
    
    .ordering-service-wrap {
        padding-top: 20px;
        margin-bottom: 20px;
    }
    
    .ordering-service-wrap ul {
        display: block;
    }
    
    .add-new-service select {
        margin-left: 20px;
    }
    
    #add-new-service-spinner,
    #add-new-type-spinner,
    #add-new-group-spinner {
        display: none;
        font-size: 14px;
    }
    
    #lp-menus .lp-right-panel-height .lp-ad-click-outer {
        background-color: #fff;
    }
    
    .lp-listing-selecter-outer,
    .lp-listing-selecter-drop.lp-coupon-box-row {
        border: 1px solid #dedede;
        box-shadow: none;
    }
    
    #lp-menus .lp-menu-step-two.margin-top-10 .lp-menu-open {
        border: 1px solid #dedede;
        box-shadow: none;
    }
    
    #lp-menus .lp-menu-step-two.margin-top-10 .lp-menu-open .lp-menu-form-inner {
        box-shadow: none;
        border: 0;
        padding: 0;
    }
    
    .lp-right-panel-height.lp-right-panel-height-outer {
        height: auto;
    }
    
    #lp-menus .lp-dashboard-tabs.lp-left-panel-height-outer {
        padding-left: 15px;
    }
    
    .lp-listing-selecter-drop.lp-coupon-box-row .select2-container--default .select2-selection--multiple {
        height: 42px;
    }
    
    .lp-listing-selecter-drop.lp-coupon-box-row .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        height: 40px;
    }
    
    .lp-listing-selecter-drop.lp-coupon-box-row .select2-container--default .select2-selection--multiple .select2-selection__choice {
        padding: 0 5px !important;
    }
    
    .lp-invoices-all-stats-on-off-switcher {
        position: relative !important;
        display: block !important;
    }
    
    .lp-menu-step-two .lp-menu-close-outer.lp-menu-open .lp-invoices-all-stats-on-off.lp-invoices-all-stats-on-off-switcher h5 {
        font-size: 14px;
    }
    
    .lp-menu-step-two .lp-menu-close-outer.lp-menu-open .lp-invoices-all-stats-on-off.lp-invoices-all-stats-on-off-switcher h5 label {
        margin-right: 10px;
    }
    
    .jFiler-input-dragDrop-title {
        font-weight: 600;
        color: #44566c;
        font-size: 14px;
    }
    
    .lp-menu-step-two .lp-menu-form-feilds label span {
        color: red;
    }
    
    .lp-panel-body-outer {
        box-shadow: none !important;
        padding: 0 !important;
        background-color: transparent !important;
    }
    
    .lp-tab-content-outer {
        padding: 0 !important;
    }
    
    .lp-tab-content-outer .lp-menu-closed {
        box-shadow: none !important;
        border: 1px solid #dedede;
    }
    
    .lp-right-side-title {
        color: #333;
        font-size: 12px;
        margin: 0;
    }
    
    .lp-tab-content-outer .lp-menu-closed span {
        color: #8a8a8a;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
    }
    
    .lp-tab-content-outer .lp-menu-closed .col-md-2 {
        color: #333;
        font-size: 12px;
    }
    
    .lp-tab-content-outer .lp-menu-closed .col-md-2 {
        text-transform: uppercase;
    }
    
    .lp-panel-body-outer .lp-dot-extra-buttons .fa {
        font-size: 20px;
        line-height: 48px;
    }
    
    .fa-check-circle2 {
        line-height: 48px;
        margin-right: 15px;
        display: inline-block;
        vertical-align: top;
        font-size: 20px;
    }
    /*styles for compact view*/
    
    .lp-list-view-compact-outer .lp_list_main {
        padding: 10px;
    }
    
    .lp-list-view-compact-outer .lp_list_main_left {
        width: 20%;
        float: left;
    }
    
    .lp-list-view-compact-outer .lp_list_main_right {
        width: 80%;
        float: left;
    }
    
    .lp-list-view-compact-outer .list_own_col_lt {
        width: 92px;
        height: 92px;
        float: left;
        overflow: hidden;
    }
    
    .lp-list-view-compact-outer {
        margin-bottom: 18px !important;
        padding-bottom: 18px;
        border-bottom: 1px solid #dedede;
        padding-left: 0;
        margin-left: 15px;
        width: calc(100% - 30px);
    }
    
    .lp-list-view-compact-outer .list_own_col_gt {
        min-width: 83%;
        max-width: 83%;
        float: left;
        padding-left: 20px;
    }
    
    .lp-list-view-compact-outer .lp_list_title a {
        font-size: 18px;
        font-weight: 400;
        color: #151515;
        text-transform: capitalize;
    }
    
    .lp-list-view-compact-outer .lp_list_address {
        font-weight: normal;
        color: #797979;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 0;
    }
    
    .lp-list-view-compact-outer .lp_list_call a,
    .lp_list_map a {
        color: #ff595f;
        font-size: 14px;
        float: left;
    }
    
    .lp-list-view-compact-outer .lp_list_call .fa,
    .lp-list-view-compact-outer .lp_list_map .fa {
        margin-right: 5px;
    }
    
    .lp-list-view-compact-outer .lp_list_call,
    .lp_list_map {
        margin-top: 5px;
        float: left;
        margin-bottom: 0;
    }
    
    .lp-list-view-compact-outer .lp_list_call {
        margin-right: 30px;
    }
    
    .lp-list-view-compact-outer .lp_list_rating {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .lp-list-view-compact-outer .lp_list_no_review {
        position: absolute;
        top: 0;
        right: 0;
        color: #afafaf !important;
        border: solid 1px #dedede;
        line-height: 20px;
        display: inline-block;
        transition: all 0.20s ease-in-out;
        font-size: 13px;
        border-radius: 3px;
        min-width: 137px;
        text-align: center;
    }
    
    .lp-list-view-compact-outer .lp-list-rateing-good {
        background-color: #73cf42;
        border-radius: 5px;
        color: #fff;
        display: inline-block;
        font-weight: 700;
        line-height: 19px;
        margin-right: 5px;
        padding: 3px 6px;
    }
    
    .lp-list-view-compact-outer .lp_compact_list_ad {
        background-color: transparent;
        border: 1px solid #ebac2c;
        border-radius: 5px;
        color: #ebac2c;
        font-weight: 600;
        font-size: 12px !important;
        line-height: 18px;
        margin-right: 5px;
        padding: 1px 4px;
        display: none;
    }
    
    .promoted-listings .lp-list-view-compact-outer .lp_compact_list_ad {
        display: inline-block;
    }
    
    .lp-list-view-compact-outer .lp_list_compact_claim {
        background-color: #ff595f;
        position: relative;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        text-align: center;
        margin-top: -1321321550px !important;
        padding: 0 !important;
        top: 7px;
        left: 5px;
        line-height: 11px;
    }
    
    .lp-list-view-compact-outer .lp_list_compact_claim i {
        font-size: 10px;
        color: #fff;
    }
    
    .lp-list-view-compact-outer [data-tooltip].simptip-position-top:after {
        background-color: #ff595f !important;
    }
    
    .lp-list-view-compact-outer [data-tooltip].simptip-position-top:before {
        border-top-color: #ff595f !important;
    }
    
    .map-post .map-post-thumb img {
        min-width: 100%;
    }
    
    .map-post .map-post-thumb {
        border-top-left-radius: 5px !important;
        border-top-right-radius: 5px !important;
    }
    /*compact view style ends*/
    
    #app-view-login-popup .login-form-pop-tabs ul li {
        float: left;
        display: inline-flex;
    }
    
    #app-view-login-popup .login-form-pop-tabs a {
        color: #fff;
        font-size: 15px;
        padding: 15px;
    }
    
    .login-form-pop-tabs .active {
        background: #fff;
        color: #333 !important;
    }
    
    @media screen and (max-width: 580px) and (min-width: 320px) {
        .col-md-12.lp-additional-appview-filter-new .lp_all_page_overflow .lp-more-filters-outer {
            width: 100%;
        }
    }
    
    .widget-box .open-hours {
        margin-bottom: 30px;
    }
    /*start new dashboard css*/
    
    .lp-container-center {
        width: 675px;
        margin: 0 auto;
        margin-top: 20px;
        padding-bottom: 70px !important;
    }
    
    .lp-dashboard-left-label {
        margin: 0 !important;
        line-height: 46px !important;
        text-transform: capitalize !important;
        color: #000000 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    
    .lp-dashboard-text-field {
        height: 46px !important;
        width: 100%;
        line-height: 46px !important;
        border: 1px solid #dedede !important;
        padding: 6px 12px;
        border-radius: 5px;
        color: #818181 !important;
    }
    
    .lp-dashboard-des-field {
        border: 1px solid #dedede !important;
        color: #818181 !important;
        height: 57px !important;
    }
    
    .lp-dashboard-text-field::placeholder {
        color: #818181 !important;
        opacity: 1;
        /* Firefox */
    }
    
    .lp-dashboard-text-field:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #818181 !important;
    }
    
    .lp-dashboard-text-field::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #818181 !important;
    }
    
    .lp-dashboard-des-field::-webkit-input-placeholder {
        color: #818181 !important;
    }
    
    .lp-dashboard-des-field:-moz-placeholder {
        /* Firefox 18- */
        color: #818181 !important;
    }
    
    .lp-dashboard-des-field::-moz-placeholder {
        /* Firefox 19+ */
        color: #818181 !important;
    }
    
    .lp-dashboard-des-field:-ms-input-placeholder {
        color: #fff;
    }
    
    .lp-dashboard-select-box {
        border: 1px solid #dedede !important;
        color: #818181 !important;
        line-height: 46px !important;
        height: 46px !important;
    }
    
    .lp-dashboard-top-label {
        text-transform: capitalize !important;
        color: #000000 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
    }
    
    .lp-view-larg-btn {
        float: right;
        margin-bottom: 0 !important;
    }
    
    .lp-view-all-btn,
    .lp-view-larg-btn {
        font-size: 14px;
        color: #9b9b9b;
        margin-bottom: 20px;
        display: inline-block;
        font-weight: 400 !important;
    }
    
    .lp-view-all-btn:hover,
    .lp-view-all-btn:focus,
    .lp-view-larg-btn:hover,
    .lp-view-larg-btn:focus {
        color: #9b9b9b;
    }
    
    .lp-view-all-btn .fa {
        color: #818181;
        margin-right: 4px;
    }
    
    .lp-save-btn-container {
        position: fixed;
        bottom: 0;
        z-index: 9999;
        left: 0;
        padding: 10px 15px;
        border-radius: 0;
        border: 0;
        border-top: 1px solid #dedede;
        transition: all .4s ease 0s;
        margin-bottom: 0 !important;
    }
    
    #wrapper .lp-save-btn-container {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    
    #wrapper.active .lp-save-btn-container {
        width: calc(100% - 240px);
        margin-left: 240px;
    }
    
    .lp-dashboard-new #page-content-wrapper {}
    
    .lp-margin-right-10 {
        margin-right: 10px !important;
    }
    
    .lp-unsaved-btn {
        font-size: 14px;
        color: #9b9b9b;
        display: inline-block;
        font-weight: 400 !important;
        line-height: 35px;
        font-weight: 400 !important;
        display: none;
    }
    
    .lp-unsaved-btn:hover,
    .lp-unsaved-btn:focus {
        color: #9b9b9b;
    }
    
    .lp-review-sorting {
        overflow: visible;
    }
    
    .margin-top-30 {
        margin-top: 50px !Important;
    }
    
    .lp-all-post-center-container {
        width: 830px !important;
        margin: 0 auto !important;
        float: none !important;
    }
    
    .lp-dashboard-right-sidebar {
        width: 312px !important;
    }
    
    .lp-dashboard-container-left {
        width: 61%;
        margin: 0 60px;
        float: left;
    }
    
    #lp-menus .lp-dashboard-tabs.lp-left-panel-height-outer {
        padding: 0;
    }
    
    .lp-dashboard-container-left .panel-body {
        padding: 0;
    }
    
    .lp-listing-selecter-drop .select2-container .select2-selection--single {
        color: #b1b7be !important;
        line-height: 46px !important;
        height: 46px !important;
        font-size: 13px
    }
    
    .lp-listing-selecter-drop .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 46px !important;
        height: 46px !important;
    }
    
    .margin-top-0 {
        margin-top: 0 !important;
    }
    
    .lp-menu-panel-body-outer .lp-menu-close-outer {
        border: 0 !important;
        margin-bottom: 14px;
    }
    
    .lp-menu-panel-body-outer .lp-menu-close-outer:last-child {
        margin-bottom: 4px;
    }
    
    .lp-menu-panel-body-outer {
        border: 0 !important;
    }
    
    .lp-menu-panel-body-outer .lp-menu-closed .row div {
        line-height: 24px;
        color: #333;
    }
    
    .lp-menu-panel-body-outer .lp-menu-closed .row div span {
        color: #8a8a8a;
    }
    
    .lp-label-menu-group {
        color: #9b9b9b;
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .active-update-formm .lp-menu-form-inner {
        box-shadow: none;
        border: 1px solid #dedede;
    }
    
    .lp-menu-panel-body-outer .active-update-formm {
        border: 1px solid #dedede;
        border-top: 0;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    
    .lp-save-btn-container #ad-announcement-btn {
        background-color: #73d500 !important;
        color: #fff !important;
    }
    
    .lp-save-btn-container .form-group,
    .lp-coupon-box-row .form-group {
        margin-bottom: 0 !important;
    }
    
    .lp-dashboard-top-label span {
        color: red;
    }
    
    .lp-dashboard-switcher h5 {
        font-size: 12px;
        font-weight: 400;
        color: #000;
        width: 250px;
    }
    
    .lp-dashboard-switcher .switch {
        float: left;
        margin-right: 10px;
    }
    
    .lp-dashboard-switcher {
        display: inline-block;
        overflow: hidden;
        width: 250px;
        padding: 15px;
        padding-bottom: 0;
        padding-top: 10px;
    }
    
    .lp-dashboard-top-label .fa {
        margin-left: 5px;
        color: #818181;
    }
    
    .lp-dashboard-event-tick-btn .fa {
        font-size: 30px;
        color: blue;
        line-height: 46px;
    }
    
    .event-tickets-list-dash li strong {
        color: #000;
        margin-right: 10px;
    }
    
    .event-tickets-list-dash li .fa {
        float: right;
        width: 20px;
        height: 20px;
        line-height: 20px;
        background-color: #df9a93;
        text-align: center;
        border-radius: 100%;
        color: #fff;
        font-size: 12px;
        margin-top: -1px;
    }
    
    .event-tickets-list-dash li {
        border-bottom: 3px solid #fafafa;
        padding-bottom: 25px;
        margin-bottom: 25px;
        color: #000;
    }
    
    .event-tickets-list-dash li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
    
    #lp-all-menus .lp-listing-outer-container {
        padding-left: 20px;
        padding-right: 15px;
    }
    
    #lp-all-menus .lp-announcement-title a {
        margin-top: 8px;
        color: #035ea1;
        margin-bottom: 0;
        font-size: 15px;
        font-weight: 700;
        line-height: 39px;
    }
    
    #lp-all-menus .lp-announcement-title a:hover {
        color: #035ea1;
        text-decoration: underline;
    }
    
    .lp-all-menu-btns a {
        font-size: 12px;
        text-transform: uppercase;
        color: #4a5b6d;
        margin-right: 10px;
        line-height: 32px;
        display: inline;
    }
    
    .lp-all-menu-btns a:first-child {
        border-right: 1px solid #4a5b6d;
        padding-right: 10px;
    }
    
    .lp-all-menu-btns h5 {
        margin-bottom: 0;
        line-height: 32px;
    }
    
    .lp-ads-form-container {
        width: 1005px;
        margin: 0 auto;
        float: none;
        margin-top: 30px;
    }
    
    .lp-compaignForm-leftside {
        width: 674px;
    }
    
    .lp-compaignForm-righside {
        width: 300px;
    }
    
    .lp-ads-form-container .lp-review-sorting {
        padding-right: 0;
    }
    
    .lp-ads-form-container .lp-review-sorting h5 {
        font-weight: 600 !important;
    }
    
    .lp_payment_methods_ads .lp-dashboard-top-label.margin-bottom-0 {
        margin-bottom: 0 !important;
    }
    
    .lp-ad-location-image-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(65, 88, 105, .9);
    }
    
    .lp-ad-location-image-overlay .fa {
        color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
    }
    
    #lp-menus .lp-right-panel-height.lp-right-panel-height-outer {
        position: relative;
        padding-bottom: 40px;
    }
    
    .lp-dashboard-menu-container {
        width: 1005px !important;
        margin: 0 auto;
        float: none !important;
    }
    /* end new dashboard css*/
    
    .lp-add-announcement-form #announcements-listing {
        height: 46px;
    }
    
    .events-map-wrap .lp-coordinates {
        top: 2px !important
    }
    
    #login-style2-page-wrap #app-view-login-popup {
        position: static !important;
    }
    
    #login-style2-page-wrap #app-view-login-popup a.md-close {
        display: none;
    }
    
    .loop-grid-style3,
    .margin-bottom-class {
        margin-bottom: 20px;
    }
    
    .col-md-5.lp-list-form-outer-postion:after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 60%);
    }
    
    .lp_hori_view_plan_left_section .lp-listprc li:last-child {
        margin-bottom: 60px;
    }
    
    .lp-claim-cuccess-return {
        padding: 10px 20px;
        background: #35ad46;
        color: #fff;
        border-radius: 5px;
        position: relative;
        float: left;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 20px;
        font-size: 16px;
        margin-top: 20px;
    }
    
    .lp-claim-cuccess-return:hover {
        color: #fff;
    }
    
    .text-center.lp-claim-cuccess p {
        font-size: 14px;
        color: #9ea0a5;
        font-weight: 300;
        margin-left: 20px;
        margin-right: 20px;
        line-height: 23px;
    }
    
    .text-center.lp-claim-cuccess h3 {
        font-size: 22px;
    }
    /*new*/
    
    .lp-form-planclaim-st .statuss {
        display: none;
    }
    
    .lp-message-title.clearfix.text-right {
        padding: 5px 30px;
    }
    
    #lp_inbox_search {
        width: 100%;
        line-height: 36px;
        padding: 10px;
        height: 36px;
        border-radius: 5px;
        text-transform: capitalize;
    }
    
    .lp-message-search-title {
        padding: 8px 30px;
        padding-right: 10px;
        padding-left: 10px !important;
    }
    
    .lp-delte-conv:hover,
    .lp-delte-conv:focus {
        background-color: transparent;
        border-color: transparent;
        box-shadow: none;
        outline: none;
    }
    
    .lp-read-message-inner.unread {
        background-color: #fff !important;
    }
    
    .lp-read-messages {
        border-right: 1px solid #e9ebf2;
    }
    
    .lp-field-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lp-pos-relative-input {
        padding-left: 30px;
    }
    
    .lp-camp-bottom-summary .graycheck,
    .lp-listing-selecter .graycheck,
    .lp-camp-bottom-summary .greencheck,
    .lp-listing-selecter .greencheck {
        MARGIN-RIGHT: 2px;
        FONT-SIZE: 10PX;
    }
    
    .lp-invoices-all-stats li a.listingDtlurl {
        font-size: 10px;
    }
    
    .lp-sender-info button {
        background: none;
        border: 0;
        box-shadow: none;
        font-size: 13px;
        width: 100%;
        margin-top: 6px;
    }
    
    .lp-read-message-inner .lp-sender-image {
        width: 33px;
        height: 33px;
        border-radius: 100%;
        display: inline-block;
        line-height: 33px;
        vertical-align: middle;
    }
    
    .lp-read-message-inner p span {
        display: inline-block;
        vertical-align: middle;
        line-height: 33px;
    }
    
    .lp-read-message-inner h5 {
        margin-bottom: 14px;
        text-transform: capitalize;
    }
    
    .lp-ad-location-image-overlay {
        opacity: 0;
        visibility: hidden;
    }
    
    .lp-select-ad-place:hover .lp-ad-location-image-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .lp-camp-border {
        margin-bottom: 0 !important;
    }
    
    .lp-dashboard-top-label .help-text,
    .lp-dashboard-top-label .help-text .camp-required {
        margin: 0 !important;
        float: none;
    }
    
    #lp-new-ad-compaignForm .camp-required {
        color: red;
    }
    
    #lp-new-ad-compaignForm .help-text {
        margin: 0 !important;
        float: none;
    }
    
    #lp-new-ad-compaignForm .lp-select-ad-place input[type="checkbox"]+label:before {
        width: 23px;
        height: 23px;
        line-height: 23px;
        font-size: 13px;
    }
    
    h5.lp-general-section-title {
        margin: 0;
        color: #8697a8;
        font-size: 12px;
        background: #eef2f4;
        color: #8697a8;
        padding: 4px 20px;
        text-transform: uppercase;
        line-height: 24px !important;
    }
    
    .lp-ads-placement-container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .lp-ads-placement-container p {
        color: #3f576e;
        font-size: 11px;
        margin-bottom: 0;
    }
    
    .lp-ad-all-attached-packages li span {
        font-size: 12px;
        color: #000;
    }
    
    .lp-ad-all-attached-packages li span .fa {
        margin-left: 6px;
    }
    
    .lp-ad-all-other-info li {
        font-size: 12px;
        color: #3f576e;
    }
    
    .lp-ads-placement-container.padding-top-15 li {
        line-height: 25px;
    }
    
    .lp-ad-all-stats.lp-ad-packages-stats h4 {
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .lp-menu-panel-body-outer .lp-menu-close-outer:last-child {
        margin-bottom: 14px;
    }
    
    .ordering-service-wrap ul li .fa {
        font-size: 12px;
        color: #aeb6be;
        line-height: 20px;
    }
    
    .manange-typs-groups-tabs-content .add-new-type input[type="text"],
    .manange-typs-groups-tabs-content .add-new-group input[type="text"],
    .add-new-service select {
        width: 196px;
    }
    
    .lp-sender-image img {
        border-radius: 100%;
    }
    
    .lp-read-message-inner .lp-sender-image {
        margin-right: 5px;
    }
    
    .lp-field-icon-right {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lp-field-icon-right:hover {
        cursor: pointer;
    }
    
    .lp-coupons-tab {
        padding: 0 15px !important;
    }
    
    .lp-coupons-tab-nav li a {
        color: #000;
        FONT-SIZE: 12px;
    }
    
    .lp-coupons-tab-nav li.active a {
        color: #0093ff;
    }
    
    .lp-coupons-tab-nav li:first-child {
        border-right: 1px solid #000;
        padding-right: 5px;
    }
    
    .lp-coupons-tab-nav li {
        display: inline-block;
        line-height: 10px !important;
    }
    
    .lp-read-message-inner:last-child {
        border-bottom: 1px solid #e9ebf2;
    }
    
    .lp-read-messages {
        border-right: 0 solid #e9ebf2;
    }
    
    .lpQest-img-outer {
        display: inline-table;
        vertical-align: top;
        text-align: left;
        max-width: 100px;
        min-width: 100px;
        float: left;
        margin-right: 0;
    }
    
    .lpQest-outer.lpreplyQest-outer .lpQest-img-outer {
        text-align: right;
        float: right;
    }
    
    .lpQest-outer.lpreplyQest-outer .lpQest {
        width: -webkit-calc(100% - 100px) !important;
        width: -moz-calc(100% - 100px) !important;
        width: calc(100% - 100px) !important;
        border-radius: 35px;
        border: 0;
        border-top-left-radius: 35px !important;
        margin-right: 0 !important;
        border-top-right-radius: 0 !important;
    }
    
    .lpQest-outer .lpQest {
        width: -webkit-calc(100% - 100px) !important;
        width: -moz-calc(100% - 100px) !important;
        width: calc(100% - 100px) !important;
        border-radius: 35px;
        border: 0;
    }
    
    .lp-dashboard-tabs .panel-heading .nav-tabs li a:hover,
    .lp-dashboard-tabs .panel-heading .nav-tabs li a:focus {
        color: #3f576e !important;
    }
    
    .lp-message-title.clearfix.text-right {
        padding: 5px 5px;
    }
    
    .lp-coupon-box-row .select2-container--default .select2-selection--single .select2-selection__rendered,
    .lp-coupon-box-row .select2-container--default .select2-selection--single .select2-selection__arrow {
        padding-left: 12px;
    }
    
    .lp-dashboard-select-box {
        padding-left: 9px;
    }
    
    .lp-dot-extra-buttons .list-style-none.main {
        right: -10% !important;
    }
    
    .lp-dot-extra-buttons .lp-user-menu:after {
        right: 10px;
    }
    
    .lp-user-menu:before {
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid rgba(0, 0, 0, 0.4);
        position: absolute;
        top: -10px;
        right: 10px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }
    
    .list-style-none.main:before {
        opacity: 1;
        overflow: visible;
        visibility: visible;
    }
    
    .sidebar-filters-wrap .lp-tooltip-div.active {
        top: 120% !important;
    }
    
    .sidebar-filters .filters-section-wrap.sort-by-section-wrap ul li {
        position: relative;
    }
    
    .sidebar-filters .content-grids-wraps {
        border-left: 1px solid #eee;
        -webkit-box-shadow: inset 9px 0 9px -11px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: inset 9px 0 9px -11px rgba(0, 0, 0, 0.3);
        box-shadow: inset 9px 0 9px -11px rgba(0, 0, 0, 0.3);
    }
    
    .lp-sidebar-filters-style .lp-list-page-grid,
    .lp-title-new-style {
        border-left: 0 solid #eee;
    }
    /* Scrollbar styles */
    
    .sidebar-filters .content-grids-wraps::-webkit-scrollbar {
        width: 6px;
        background-color: #F5F5F5;
    }
    
    .sidebar-filters .content-grids-wraps::-webkit-scrollbar-track {
        background-color: #F5F5F5;
    }
    
    .sidebar-filters .content-grids-wraps::-webkit-scrollbar {
        width: 6px;
        background-color: #F5F5F5;
    }
    
    .sidebar-filters .content-grids-wraps::-webkit-scrollbar-thumb {
        background-color: #41a6df;
    }
    
    .sidebar-filters .content-grids-wraps {
        scrollbar-color: #F5F5F5 #41a6df;
        scrollbar-width: thin;
        scrollbar-corner: #F5F5F5;
    }
    
    .sidebar-filters .sidebar-filters-wrap {
        /*FireFox*/
        scrollbar-width: none;
        /*IE10+*/
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    
    .sidebar-filters .sidebar-filters-wrap::-webkit-scrollbar {
        /*Chrome, Safari, Edge*/
        display: none;
    }
    
    .lp-grid-width3 .post-with-map-container,
    .lp-grid-width3 .content-grids-wraps,
    .lp-grid-width3 .sidebar-filters-wrap {
        height: 100vh;
    }
    /*end new css*/
    
    .termloc-name,
    .lp-filter-top-text h4.colorWhite strong {
        color: #fff !important;
    }
    
    .lp-multi-start-wrap-edit-review {
        display: block !important;
        position: static;
        width: auto;
        padding: 0;
        box-shadow: none !important;
    }
    
    .event-tickets-platforms.lp-dashboard-select-box.custom-form-control {
        padding: 0 10px;
    }
    
    .lp-list-view-compact-outer .lp_list_compact_claim {
        top: 2px;
    }
    
    .lp-list-view-compact-outer .lp_list_title {
        margin-bottom: 8px;
    }
    
    .lp-list-view-compact-outer .lp_list_title a {
        display: inline-table;
        vertical-align: middle;
    }
    
    .claim_formbgimage .slick-dots {
        border: 0 !important;
    }
    
    .claim_formbgimage .slick-dots li {
        background-color: transparent !Important;
        border: 0 !important;
    }
    
    .lp-form-planclaim-st .claim-detailstext .slick-slide h5,
    .lp-form-planclaim-st .claim-detailstext .slick-slide p {
        color: #fff !important;
    }
    
    .lp-form-planclaim-st .statuss.text-center {
        min-height: 450px;
    }
    
    .lp-plan-paid-claim .lp-active-badge-on-plan {
        display: none !important;
    }
    
    .lp-claim-plans .horizontal_view_list {
        border: 1px solid #3b88dd !important;
    }
    
    .lp-claim-plans .lp-plan-paid-claim .lp_hori_view_plan_left_section .lp-listprc {
        border: 0;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right {
        background-color: #16a085 !important;
        border: dashed 2px #fff !important;
        color: #fff !important;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right .discount-bar {
        cursor: pointer;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right {
        width: 45%;
        padding: 5px;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right i.pull-left {
        margin-top: 5px;
        margin-right: 0;
        margin-left: 5px;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right i.pull-right {
        margin-top: 2px;
        margin-right: 5px;
        margin-left: 0;
    }
    
    .coupons-bottom-content-wrap {
        padding-top: 20px;
        display: none;
    }
    
    select {
        outline: none;
    }
    
    .custom-form-control {
        display: block;
        width: 100%;
        height: 46px;
        line-height: 46px;
        padding: 0 12px !important;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #dce0e2;
        border-radius: 4px;
        box-shadow: none;
    }
    
    .listing-app-view .open-hours .today-hrs a.show-all-timings {
        line-height: initial;
        top: 10px;
        position: absolute !important;
    }
    
    .listing-app-view2 .widget-box.clearfix {
        position: relative;
    }
    
    .listing-app-view2 .toggle-all-days {
        position: absolute;
        right: 0;
        top: 55px;
    }
    
    .listing-app-view .open-hours {
        margin-bottom: 0 !important;
    }
    
    .app-view-new-gallery-title {
        z-index: 99999;
    }
    
    .app-view-new-ann-dis .app-view-dis-wrap .app-view-new-dis,
    .listing-app-view .listing-app-view2 .lp-listing-announcement .announcement-wrap.last p,
    .app-view-news-reviews-inner p {
        font-size: 14px;
    }
    
    .listing-app-view-new .app-view-new-sec .claim-area a.phone-number {
        font-size: 15PX !important;
    }
    
    .listing-app-view .claimform.claimform-open .form-group {
        margin-right: -15px;
        margin-left: -15px;
        margin-bottom: 15px;
    }
    
    .listing-app-view .lp-events-btns-outer {
        border-bottom: 0 !important;
    }
    
    .listing-app-view .smenu li:last-child {
        border-bottom: 1px solid #cdcdcd;
        padding-bottom: 0;
    }
    
    .listing-app-view-new .lp-title2 span,
    .listing-app-view-new .lp-title2 {
        margin-top: 20px;
    }
    
    .lp-archive-page-border {
        height: 10px;
        background-color: #ececec;
        width: calc(100% - -30px);
        margin: 0 -15px;
        margin-bottom: 20px;
    }
    
    .app-view-new-ads-slider {
        margin-bottom: 20px;
    }
    
    .listing-app-view-new .lp_section_inner .lp-section-content .lp-section-title-container {
        padding-bottom: 10px;
    }
    
    .listing-app-view-new .single-tabber2 {
        border-top: 0;
        margin-top: 20px;
        margin-left: 0;
    }
    
    .lp-list-view-compact-outer .lp-grid-box-thumb img {
        border-radius: 0;
        min-height: 92px;
        object-fit: cover;
    }
    
    .allowedListing {
        font-size: inherit !important;
        color: inherit !important;
        display: inline-block !important;
        width: 100% !important;
    }
    
    .allowedListingv8 {
        color: #222 !important;
    }
    
    [data-style^="vertical_view_2"] .lp-plane-top-wrape p span,
    [data-style^="vertical_view_2"] .allowedListing {
        color: #fff !important;
    }
    
    [data-style^="vertical_view_2"] .lp-plane-top-wrape p span,
    [data-style^="vertical_view_2"] .allowedListing {
        color: #b5b5b5 !important;
    }
    
    .pricing_plans_v2 .lp-price-main .lp-title .lp-des-v2 {
        font-weight: 400;
        font-size: 14px;
        color: #b5b5b5;
        padding: 0 10px;
        margin-top: 0;
        line-height: 20px;
    }
    
    .per_user_per_listing_price-hv2 p:last-child {
        margin-left: 5px;
    }
    
    [data-content^="Associated Plan"] {
        color: #44566c;
        margin: 0;
        line-height: 50px;
        font-size: 15px;
        text-align: center;
    }
    
    .style2-popup-login .form-horizontal.margin-top-30 {
        margin-top: 0 !important;
    }
    
    .style2-popup-login .login-form-popup-outer .social-login {
        margin-top: 20px;
    }
    
    .margin-right-10 {
        margin-right: 10px;
    }
    
    .lp-text-right {
        padding-right: 70px;
    }
    
    #inbox .background-white.lpinboxrightpart {
        width: 312px;
    }
    
    .lp-inbox-left-sec {
        width: 294px;
    }
    
    .lpinboxmiddlepart {
        width: -moz-calc(100% - 606px);
        width: -webkit-calc(100% - 606px);
        width: -o-calc(100% - 606px);
        width: calc(100% - 606px);
    }
    
    .footer-menu ul li a {
        color: #fff !important;
    }
    
    .lp-form-builder-field {
        display: none;
    }
    
    .lp-form-builder-field.lp-form-builder-field-yes {
        display: block !important;
    }
    
    .dashboard-upload-field .jFiler-input-choose-btn.blue {
        margin-top: 106px;
        position: absolute;
        z-index: 3;
        left: 50%;
        margin-left: -45px;
    }
    
    header {
        z-index: 9999;
    }
    /*card Fixes*/
    
    form #cities {
        border: 0 solid;
    }
    
    .popup-inner-left-padding .lp-insert-data .lp-grid-box-description {
        padding: 10px 0 0;
    }
    
    .siginupcontainer form#register .form-group p {
        margin-bottom: 0;
    }
    
    .testimonial-description:after {
        left: 20px;
    }
    
    .lp-blog-grid-box .lp-blog-grid-box-description .lp-blog-user-thumb {
        border: 2px solid #fff;
        display: inline-block;
    }
    
    .search-filters>ul>li>.lp-tooltip-div.active ul li a:hover {
        box-shadow: none;
    }
    
    .lp-lead-form-st .user_text .author-social .social-icons.post-socials {
        padding: 0 0 0 10px;
    }
    
    .lp-lead-form-st .user_text .author-social div.status {
        float: none;
    }
    
    .lp-lead-form-st .user_text .author-social {
        margin-top: 0;
    }
    
    .lp-price-main .lp-price-list .lp-listprc li span img {
        margin-top: -4px;
    }
    
    .lp-no-title-subtitle {
        padding-top: 0 !important;
    }
    
    .submit-img {
        padding-top: 0;
    }
    
    .lp-header-middle .lp-header-user-nav .header-login-btn,
    .lp-header-middle .lp-header-user-nav .lp-join-now {
        display: inline-table;
        vertical-align: middle;
    }
    
    .home .lp-header-search .lp-search-form-submit {
        margin-left: 0;
    }
    
    .lp-search-bar .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 46px;
        padding-left: 25px;
        text-align: left;
    }
    
    .lp-listing .lp-listing-top .post-price-row li {
        line-height: 24px;
    }
    
    .lp-activity .lp-listing-stars {
        float: none !important;
    }
    
    .col-md-4 .lp-activity .lp-listing-stars {
        float: right !important;
    }
    
    .lp-header-search-filters .more-filters {
        line-height: 37px !important;
    }
    
    .margin-bottom-80 {
        margin-bottom: 80px;
    }
    
    .lp-listing .lp-listing-top-thumb img {
        object-fit: cover;
    }
    
    .lp-listing-announcement .announcement-wrap a {
        line-height: 30px;
    }
    
    #input-dropdown .lp-wrap-cats>img {
        margin-top: 4px;
    }
    
    .form-group.lp-location-search {
        margin-left: -5px;
    }
    
    .submit_new_style .form-group label.switch {
        margin-left: 5px;
    }
    
    .submit_new_style .form-group label.switch {
        font-size: 15px !important;
    }
    
    .video-bottom-search-content h3 {
        text-transform: capitalize;
    }
    
    .lp-menu .sub-menu .menu-item-has-children a:after {
        top: 0 !important;
    }
    
    .input-group .form-control:first-child,
    .input-group-addon:first-child,
    .input-group-btn:first-child>.btn,
    .input-group-btn:first-child>.btn-group>.btn,
    .input-group-btn:first-child>.dropdown-toggle,
    .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
    .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
        border-radius: 0 !important;
    }
    
    .search-row #searchform .chosen-container.chosen-container-single.chosen-container-single-nosearch {
        border-radius: 0 !important;
    }
    
    .lp-blog-grid-container:not(.lp-blog-grid-container-style2) .lp-blog-grid-box.col-md-12 {
        min-height: 406px !important;
        max-height: 406px !important;
    }
    
    footer .widget-title {
        margin-bottom: 10px;
    }
    
    .lp-grid-box-description .lp-grid-desc .this {
        font-size: 14px;
    }
    
    .lp-blog-grid-container-style2 .lp-blog-grid-box-thumb {
        border: 1px solid #e3e3e3;
        border-bottom: none;
    }
    
    .lp-blog-grid-container-style2 .lp-blog-grid-box-thumb img {
        width: 100%;
        height: 100%;
    }
    
    .lp-invoice-leftinfo span,
    .lp-invoice-rightinfo span,
    .lp-invoice-rightinfo p {
        color: #8996a6;
        font-size: 13px;
        font-weight: 400;
    }
    
    .lp-invoice-description-title-inner h3 span {
        color: #8697a8;
        font-size: 13px;
        font-weight: 400;
    }
    
    .lp-invoice-description-title-inner h3 {
        margin-bottom: 0;
    }
    
    .lp-in-trns-id span {
        color: #44566c !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        float: none !important;
    }
    
    .lp-in-trns-id p,
    .lp-in-trns-id p .lp-plan-name {
        color: #8996a6 !important;
        font-size: 12px;
        text-transform: capitalize;
        margin-bottom: 0;
        padding: 0;
        border: 0;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right {
        background-color: #16a085 !important;
        border: dashed 1px #fff !important;
        color: #fff !important;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .discount-bar {
        text-align: left;
        padding: 5px;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right .discount-bar {
        cursor: pointer;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right {
        width: 31%;
        padding: 0;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 0;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right.active {
        box-shadow: -3px 3px 10px -4px #00000061;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right i.pull-left {
        margin-top: 5px;
        margin-right: 5px;
        margin-left: 5px;
    }
    
    .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-bottom-right i.pull-right {
        margin-top: 2px;
        margin-right: 5px;
        margin-left: 0;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .discount-bar {
        font-weight: 600;
        font-size: 14px;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right a.deal-button {
        background: #FF8C00;
        width: calc(100% - 10px);
        margin: 0 5px 5px 5px;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .flip-clock-wrapper ul {
        width: 22px !important;
        height: 20px !important;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .flip-clock-wrapper .flip {
        border: 1px solid #ddd;
    }
    
    .lp-listing-archive-coupon {
        line-height: 18px;
        text-align: justify;
        margin-top: -10px !important;
        font-size: 12px;
        margin-bottom: 25px;
        padding-left: 7px;
        padding-right: 7px;
    }
    
    .coupons-bottom-content-wrap {
        padding-top: 20px;
        display: none;
        background: #fff;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .flip-clock-wrapper {
        margin-left: -2px;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .morelink {
        display: block;
    }
    
    .lp-listing-bottom-left-full .lp-listing-bottom-right .morecontent span {
        display: none;
    }
    
    .lp-invoice-rightinfo .spanblock.graycolor {
        margin-top: 10px;
    }
    
    .lp-simple-ad-archive .lp-title.col-md-10.col-sm-10 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .lp-simple-ad-archive .filter-top-section .lp-title h3,
    .lp-simple-ad-archive .filter-top-section .lp-title h3 span {
        color: #333 !important;
    }
    
    .listing-second-view .lp-deals-wrap .lp-deal .deal-details span.lp-deal-off,
    .listing-second-view .lp-deals-wrap .lp-deal .deal-details .deal-content {
        font-size: 14px;
    }
    
    .lp-cl-image-label {
        display: inline-block;
        width: auto !important;
    }
    
    .lp-form-planclaim-st .form-control.textarea1 {
        height: 50px !important;
        margin-bottom: 10px;
    }
    
    #lp-listings .lp-coupon-listing-pay-outer.pull-right {
        float: right !important;
    }
    
    .lp-modal-content-image {
        width: 90%;
    }
    
    .lp-modal-content-image-outer {
        z-index: 9999999999;
        background-color: rgba(0, 0, 0, .7);
    }
    
    .lp-modal-content-image-outer [data-dismiss^="modal"] {
        color: #fff;
        font-size: 16px;
        position: absolute;
        right: 30px;
        top: 30px;
    }
    
    .lp-modal-content-image-outer [data-dismiss^="modal"]:hover {
        cursor: pointer;
    }
    
    .planclaim-page-popup.single-page-popup {
        min-height: auto;
    }
    
    .md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st,
    .md-modal.planclaim-page-popup.single-page-popup.planclaim-page-popup-st .lp-plan-face {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        left: 50%;
        height: auto;
    }
    
    .lp-claim-plan-container.active .lp-plan-front.lp-plan-face .md-close i {
        display: none;
    }
    
    .lp-form-planclaim-st .form-group label span {
        color: red;
    }
    
    .planclaim-page-popup .md-close i {
        border-radius: 50%;
        cursor: pointer;
        font-size: 11px;
        height: 15px;
        line-height: 15px;
        position: absolute;
        right: -6px;
        text-align: center;
        top: -4px;
        width: 15px;
        background-color: #eff7ff !important;
        color: #333 !important;
        top: -4px;
    }
    
    .lp-no-title-subtitleeeeeeeee {
        text-align: center;
        background-image: url(https://kothrud.com/wp-content/themes/listingpro/assets/images/paidclaim.jpg);
        background-size: cover;
        line-height: 95px;
        color: #fff;
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 20px;
        margin-left: -40px;
        width: calc(100% - -80px);
    }
    
    .lp-plan-front .padding-bottom-40 {
        padding-top: 0 !important;
    }
    
    #lp-signin-on-claim {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        top: 0;
        margin-right: 0;
        position: absolute;
        left: 20px;
        bottom: 1px;
        -webkit-transition: all .1s ease;
        -moz-transition: all .1s ease;
        -o-transition: all .1s ease;
        transition: all .1s ease;
        border-radius: 2px;
        background-color: #333;
        box-shadow: none;
        border: 0;
    }
    
    .checkbox .lp-signin-on-claim:before {
        background-color: #fff;
        border: 1px solid #e2e5ed;
    }
    
    #lp-signin-on-claim input[type=checkbox]:checked+label:after {
        content: "\f00c";
        font-size: 11px;
        text-align: center;
        line-height: 20px;
        font-family: FontAwesome;
        color: #7f7f7f;
        background-color: transparent;
        border: 1px solid #7f7f7f;
    }
    
    .lp-claim-form-check-circle-new input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }
    
    .lp-claim-form-check-circle-new input[type="checkbox"]+.lp-new-checkbox-style {
        font-size: 12px;
        color: #0095ff !important;
        line-height: 20px;
        display: inline-table;
    }
    
    .lp-claim-form-check-circle-new input[type="checkbox"]+.lp-new-checkbox-style:before {
        font: 14pt FontAwesome;
        content: '\00f096';
        display: inline-block;
        width: 16pt;
        margin-right: 0.2em;
        color: #797979;
    }
    
    .lp-claim-form-check-circle-new input[type="checkbox"]:checked+.lp-new-checkbox-style:before {
        content: '\00f046';
    }
    
    .lp-claim-form-check-circle-new input[type="checkbox"]:focus+.lp-new-checkbox-style:before {
        outline: 1px dotted #aaa;
    }
    
    .lp-claim-form-check-circle-new input[type="checkbox"]:disabled+.lp-new-checkbox-style {
        color: #999;
    }
    
    .lp-claim-form-check-circle-new label::before {
        display: none;
    }
    
    .lp-new-checkbox-style2 {
        display: inline-table;
        vertical-align: top;
        width: calc(100% - 40px);
    }
    
    .more-filter-left-col .form-group,
    .more-filter-right-col .form-group {
        margin-bottom: 0 !important;
    }
    
    .more-filter-left-col #lp-find-near-me {
        margin-right: 4px;
    }
    
    .lp_all_page_overflow .col-md-12>h2 {
        margin: 0;
        -ms-flex-negative: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        border-bottom: 1px solid #EBEBEB;
        padding-top: 24px;
        padding-bottom: 16px;
        padding-right: 24px;
        color: #222222;
        font-size: 21px;
        line-height: 24px;
        font-weight: 600;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }
    
    .lp_more_filter_data_section h3 {
        font-size: 16px;
        text-transform: capitalize;
        font-weight: 600;
    }
    
    .lp_all_page_overflow .lp_more_filter_data_section {
        padding-bottom: 0;
        border-bottom: 0;
    }
    
    .lp_all_page_overflow .filter_checkbox_container {
        text-transform: capitalize;
        padding: 0;
        line-height: 26px;
        letter-spacing: 0px;
        color: #424857;
        opacity: 1;
        font-size: 15px;
        text-align: left;
    }
    
    .lp_all_page_overflow .lp_extrafields_select-border2 .filter_checkbox_container {
        padding-left: 40px;
        line-height: 30px;
    }
    
    .filter_data_switch_on_off li .slider {
        position: absolute;
    }
    
    .filter_data_switch_on_off li .switch {
        float: right;
    }
    
    .lp_all_page_overflow .filter_checkbox_container .filter_checkbox_checkmark:after {
        content: "\f00c";
        font-family: FontAwesome;
        font-size: 12px;
        color: #fff;
        margin-top: -13px;
        position: relative !important;
        top: -3px !important;
        left: 2px;
    }
    
    .lp-filter_data_checkbox .filter_checkbox_checkmark {
        left: -15px;
    }
    
    .lp-filter_data_checkbox .lp_filter_checkbox {
        float: right;
    }
    
    .lp-filter_data_checkbox {
        width: 100%;
    }
    
    .lp-filter_data_checkbox .filter_checkbox_container input {
        position: relative;
    }
    
    .lp-filter_data_switch_on_off {
        padding-bottom: 15px;
        border-bottom: 1px solid #dedede;
    }
    
    .lp_extrafields_select-border {
        padding-bottom: 20px !important;
        border-bottom: 1px solid #dedede !important;
        padding-top: 10px !important;
    }
    
    .lp_extrafields_select-border .lp_filter_checkbox li {
        margin-top: 0;
    }
    
    .overlay_on_map_for_filter {
        display: none !important;
    }
    
    .lp-read-message-inner.unread p,
    .lp-read-message-inner.unread h5,
    .lp-read-message-inner.unread p span,
    .lp-read-message-inner.read p .lp-inbox-date {
        color: #8697a8;
    }
    
    .lp-read-message-inner.read p,
    .lp-read-message-inner.read p span {
        color: #3f576e;
    }
    
    .order_food_online_container {
        min-height: 40px;
        overflow: hidden;
    }
    
    .order_food_online_main-header {
        margin-bottom: 20px;
    }
    
    .order_food_online_main-header .lp-detail-section-title {
        margin: 0 !important;
        line-height: 41px;
    }
    
    span.pull-left.order_food_online_text {
        font-size: 15px;
        line-height: 41px;
        color: #d10000;
        text-transform: capitalize;
        margin-right: 10px;
    }
    
    .order_food_online_img {
        border-radius: 7px;
        border: 1px solid #b7b7b7;
        overflow: hidden;
        max-height: 41px;
        padding: 10px 10px;
    }
    
    .order_food_online_img a img {
        margin-top: -5px;
        max-width: 40px;
        max-height: 25px;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    button#lp-save-menu {
        margin-bottom: 35px;
    }
    
    select.online-order-type {
        margin-left: 20px !important;
        margin-right: 20px !important;
        width: calc(100% - 40px);
        position: relative;
    }
    
    .menu_online_order_url input {
        width: calc(100% - 74px);
        margin-left: 20px;
        margin-right: 10px;
        display: inline-block;
        margin-top: 15px;
    }
    
    .form-group.menu_online_order_url.with_error {
        position: relative;
    }
    
    .form-group.menu_online_order_url.with_error:after {
        position: absolute;
        content: "Please Enter Valid URL...";
        top: 1px;
        left: 20px;
        color: #f00;
        font-size: 10px;
    }
    
    .lp-lp-more-filters-outer h3 {
        line-height: 36px !important;
    }
    
    .lp_extrafields_select-border2 {
        border-bottom: 1px solid #dedede !important;
        padding-bottom: 10px !important;
    }
    
    .lp-plan-back .lp-new-checkbox-style2,
    .claimform-box .lp-new-checkbox-style2 {
        color: #6b6b6b !important;
        text-transform: capitalize !important;
    }
    
    .lp-form-planclaim-st .topwrap {
        position: absolute;
        top: 40px;
        right: 0px;
    }
    
    .lp-plan-back .lp-signin-on-claim,
    .claimform-box .lp-signin-on-claim {
        padding-left: 0 !important;
        line-height: 20px;
    }
    
    .lp-plan-back .singincheckboxx,
    .claimform-box .singincheckboxx {
        min-height: auto;
        line-height: 20px;
    }
    
    .dashboard-upload-field .lp-uploaded-img {
        display: block;
    }
    
    .lp-menu-item-detail img {
        width: 12px;
        text-align: left;
        margin: unset;
        margin-top: 10px;
    }
    
    .lp-menu-new-price {
        border: 1px solid;
        border-radius: 25px;
        padding: 0 17px;
        line-height: 23px !important;
        text-align: center;
    }
    
    .lp-listing-menuu-slider .slick-arrow:hover {
        color: #fff !important;
    }
    
    .lp-pop-men-inner {
        max-height: 96px;
        overflow: hidden;
        position: relative;
    }
    
    .lp-menu-item-detail .help-text {
        display: inline-block;
        float: none;
    }
    
    .lp-popular-menu-outer h6 {
        margin-bottom: 16px;
        margin-top: 25px;
        line-height: 13px;
        font-weight: 700;
        text-transform: uppercase;
        padding-left: 7px;
    }
    
    .lp-pop-menu-detail {
        position: absolute;
        left: 0;
        bottom: 0;
    }
    
    .lp-pop-menu-detail span {
        display: inline-block;
        background-color: rgba(0, 0, 0, .5);
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        width: 100%;
        padding: 7px;
        padding-top: 5px;
    }
    
    .lp-pop-menu-detail .lp-pop-menu-detail-pr {
        display: inline-block;
        float: left;
        width: auto;
        padding: 2px 11px;
        padding-bottom: 0;
        padding-left: 7px;
    }
    
    .lp-popular-menu-outer {
        padding: 0 10px;
    }
    
    .lp-popular-menu-outer .col-md-4 {
        padding: 0 5px;
    }
    
    .lp-coupon-outer-container .lp-listing-pay-button {
        position: relative;
    }
    
    .lp-coupon-outer-container .lp-listing-pay-button:before {
        content: '';
        position: absolute;
        left: 0;
        width: 13px;
        height: 13px;
        border-radius: 50px;
        background-color: #73d500;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lp-coupon-outer-container .lp-listing-pay-button.button-upcoming:before {
        background-color: #ff8a00;
    }
    
    .lp-coupon-outer-container .lp-listing-pay-button.inactive:before {
        background-color: #d70404;
    }
    
    .lp-display-inline {
        display: inline-block;
        vertical-align: middle;
    }
    
    .delete-subsc-btn {
        color: #44566c;
        text-transform: uppercase;
        display: inline-block;
        font-size: 12px;
        padding: 0 25px;
        border-radius: 5px;
        font-weight: 500;
        line-height: 36px;
        background: #eef2f4;
    }
    
    .delete-subsc-btn:hover {
        color: #fff;
        background-color: #333;
    }
    
    .lp-plane-btn-front a {
        float: none;
        position: relative;
        width: 100%;
    }
    
    .lp-plane-btn-front a .fa {
        color: #73d500;
        margin-right: 5px;
        font-size: 16px;
    }
    
    .lp-plane-btn-front-inactive a .fa {
        color: #d70404;
    }
    
    #lp-user-g-analytics input,
    #lp-user-g-analytics button {
        width: auto;
        display: inline-block;
    }
    
    #lp-user-g-analytics .form-group {
        margin-bottom: 0 !Important;
        margin-top: -10px;
    }
    
    #lp-user-g-analytics .form-control {
        height: 34px;
    }
    
    .lp-ad-all-attached-packages .fa-check-circle {
        float: right;
        line-height: 26px;
    }
    
    .lp-v-code {
        width: auto !important;
    }
    
    .lp-listing-announcement .announcement-wrap p {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }
    
    .lp-home-banner-contianer .video-bottom-search-container .lp-search-bar .form-group.lp-location-search {
        width: 33%;
        float: left;
        margin-right: 20px;
    }
    
    .lp-home-banner-contianer .video-bottom-search-container .lp-search-bar .form-group.pull-right {
        float: left !important;
    }
    
    #listing-preview-popup .popup-inner-left-padding .lp-insert-data .lp-grid-desc-container.lp-border.clearfix {
        margin-top: 10px;
    }
    
    #listing-preview-popup .popup-inner-left-padding .lp-insert-data .lp-grid-box-thumb {
        border-top-left-radius: 5px;
    }
    
    #listing-preview-popup .quickmap {
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }
    
    .page .lp-no-title-subtitleeeeeeeee {
        display: none;
    }
    
    .style2-popup-login p.status {
        margin-left: 0;
    }
    
    .page .col-md-4 .lp-activity .lp-listing-stars {
        float: none !important;
    }
    
    .lp-header-search .form-group .lp-search-bar-right {
        height: 46px;
    }
    
    .text-center.margin-top-80.margin-bottom-80 {
        display: inline-block;
        width: 100%;
    }
    
    .lp-top-bar-menu ul li ul {
        display: inline-block;
        float: left;
        margin-top: 0;
    }
    
    .view-event-attendees {
        font-size: 13px;
    }
    
    .lp_popup_preview_invoice .modal-footer {
        padding: 15px;
    }
    
    .lp_preview_this_invoice {
        background: #eef2f4;
    }
    
    .lp_preview_this_invoice:hover {
        color: #fff;
        background: #333;
    }
    
    .lp-sidebar-filters-style .lp_all_page_overflow .col-md-12>h2 {
        color: #aaa9a9 !important;
        font-size: 15px;
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        -webkit-justify-content: left;
        justify-content: left;
    }
    
    .lp-sidebar-filters-style .sidebar-filters-wrap .lp-tooltip-outer:hover .lp-tooltip-div {
        z-index: 9999 !important;
    }
    
    .modal-open #app-view-login-popup {
        -webkit-box-sizing: border-box !important;
        -webkit-appearance: none !important;
        z-index: 999999999;
    }
    
    body .container {
        min-height: inherit;
    }
    
    .listing-app-view .list_view a.add-to-fav.lp-add-to-fav {
        display: none;
    }
    
    .review-form .lp-review-btn {
        display: inline-block;
    }
    
    .loadinerSearchblock {
        display: inline-block !important;
    }
    
    @media (min-width: 1024px) {
        .pricing_plans_v2:nth-child(3n+1),
        .pricing_plans_v3:nth-child(3n+1),
        .view_version8:nth-child(3n+1) {
            clear: left
        }
    }
    
    .pricing_plans_v3 .lp-hide-show-price-features {
        position: static;
    }
    
    .view_version8 {
        margin-bottom: 30px;
    }
    
    .pricing_plans_v3.col-md-4:first-child .lp-view-all-price-feature,
    .pricing_plans_v3.col-md-4:first-child .lp-view-all-price-feature {
        display: none;
    }
    
    .pricing_plans_v3.col-md-4:nth-of-type(2) .lp-view-all-price-feature,
    .pricing_plans_v3.col-md-4:nth-of-type(2) .lp-view-all-price-feature {
        display: inline-block;
        margin-bottom: 30px;
    }
    
    .lp-topbar-menu li ul,
    .lp-topbar-menu ul li ul {
        display: inline-block;
        float: left;
    }
    
    .lp-popular-menu-outer .col-md-4 {
        padding: 5px !important;
    }
    
    #menuSpice-control {
        width: 30% !important;
        margin-left: 15px;
        display: inline-block;
        /*-webkit-appearance: textfield;*/
    }
    
    .lp-menu-item-detail img.spice {
        display: inline-block;
    }
    
    .lp-menu-item-detail .help-text {
        display: block;
        float: none;
        width: 100% !important;
    }
    
    .lp-listing-menu-items h6 {
        margin-bottom: 10px !important;
        margin-top: 10px !important;
    }
    
    .lp-listing-menu-items h6:after {
        height: 0 !important;
        content: '';
    }
    
    .lp-dashboard-menu-container {
        width: 100% !important;
    }
    
    .lp-dashboard-menu-container .lp-compaignForm-leftside {
        width: calc(100% - 315px) !important;
    }
    
    @media only screen and (max-width: 1000px) {
        .lp-dashboard-menu-container .lp-compaignForm-leftside {
            width: 100% !important;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        .lp-dashboard-menu-container .lp-compaignForm-righside {
            width: 100% !important;
            margin-top: 10px;
            margin-bottom: 10px;
        }
    }
    
    .lp-requires-filed {
        color: #d10000 !important;
        font-size: 14px;
        margin-left: 3px;
        display: inline-block;
        line-height: unset;
        vertical-align: middle;
    }
    
    .search-page-header .text-right .view-on-map {
        display: inline-block !important;
        background: transparent !important;
        position: static !important;
        top: 0 !important;
        right: 0 !important;
        overflow: auto !important;
        border-radius: 0 !important;
        padding: 0 !important;
        bottom: 0 !important;
        z-index: auto !important;
    }
    
    button.lp-view-all-btn {
        margin: 0 !important;
        color: #44566c !important;
        background-color: #e7edf3 !important;
    }
    
    .lp-listing-menu-top {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        position: relative;
    }
    
    .lp-listing-menu-top .backg_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00000055;
        z-index: 9;
    }
    
    .lp-listing-menu-top .lp-listing-menu-top-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 99;
    }
    
    .lp-listing-menu-top .fa {
        color: #fff;
        z-index: 99;
    }
    
    .order_food_online_img {
        max-height: 100px !important;
        padding: 5px !important;
        margin-top: 3px;
    }
    
    .order_food_online_img a img {
        margin-top: -3px !important;
    }
    
    .listing-second-view .widget-box.viewed-listing ul li a {
        font-size: 14px;
    }
    
    .lp-plan-front .singincheckbox label {
        padding-left: 0;
    }
    
    .lp-plan-front .lp-listprc li span {
        width: auto;
    }
    
    .lp-plan-front .featured-plan:first-of-type {
        margin-top: 8px;
    }
    
    .lp-secondary-choose.lp-claim-plan-btn.LPdisabled {
        background: #bbc2d2 !important;
        color: #fff !important;
        cursor: not-allowed !important;
        border-color: #bbc2d2 !important;
    }
    
    .lp-claim-form-check-circle-new .help-text {
        margin-top: -2px;
    }
    
    .lp-claim-form-check-circle-new .help {
        line-height: 20px;
        display: inline-block;
        vertical-align: top;
    }
    
    .lp-plan-front .awesome_plan_icon_check {
        width: 0;
        border-radius: 100%;
    }
    
    .lp-plan-front .awesome_plan_icon_check:before {
        border-radius: 100%;
    }
    
    .lp-plan-front .lp-no-pay-per-plan {
        display: none;
    }
    
    .lp-plan-front .lp-no-pay-per-plan:last-child {
        display: block !Important;
    }
    
    .manange-typs-groups-tabs-content .add-new-type input[type="text"],
    .manange-typs-groups-tabs-content .add-new-group input[type="text"] {
        width: calc(100% - 33px);
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail .lp-menu-item-tags {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-left: -5px;
    }
    
    .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-detail .lp-menu-item-title {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .lp-pop-menu-detail .lp-pop-menu-detail-pr {
        float: none !important;
    }
    
    .lp-pop-menu-detail div {
        background-color: rgba(0, 0, 0, .5);
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        width: 100%;
        padding: 7px;
        padding-top: 5px;
    }
    
    .lp-pop-menu-detail {
        width: 100%;
    }
    
    .order_food_online_img {
        border: 0;
    }
    
    .order_food_online_img a img {
        max-width: inherit;
        min-width: auto;
        max-height: inherit;
        min-height: auto;
        margin-left: 2.5px;
        margin-right: 2.5px;
    }
    
    .lp-listing-menuu-wrap .lp-listing-menuu-slider .slick-arrow {
        top: 45px !important;
        transform: translate(0, -50%) !important;
        margin-top: 0 !important;
    }
    
    .claim_file-btn-wrapper .custom-file-upload {
        cursor: pointer;
        color: #3e3f42;
        font-size: 10px;
        margin-bottom: 0;
    }
    
    .active-subscirptions-area .lp-listing-outer-container {
        line-height: 35px;
    }
    
    .select_listing_for_img_menu {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: calc(100% - 40px);
        position: relative;
    }
    
    .select_listing_for_img_menu .select2.select2-container.select2-container--default.select2-container--below {
        min-width: calc(100% + 40px);
        max-width: calc(100% + 40px);
    }
    
    .select_listing_for_img_menu .select2.select2-container.select2-container--default {
        min-width: calc(100% + 40px);
        max-width: calc(100% + 40px);
    }
    
    .add-new-service_img_menu input {
        width: calc(100% - 74px);
        margin-left: 20px;
        margin-right: 10px;
        display: inline-block;
        margin-top: 15px;
        line-height: 30px;
        cursor: pointer;
    }
    
    .add-menu_image i {
        font-size: 22px;
        color: #007fd4;
        cursor: pointer;
        margin-top: 10px;
    }
    
    .lp-blank-section.menu-lp-blank-section {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .add-menu_image .upload-field.img-menu-upload-field {
        width: calc(100% - 71px);
        margin-left: 20px;
        margin-right: 10px;
        display: inline-block;
        margin-top: 5px;
        line-height: 30px;
        cursor: pointer;
    }
    
    .add-menu_image .frontend-button {
        z-index: -1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
    }
    
    .add-menu_image .img-menu-upload-field.upload-field[data-multiple="true"] img {
        height: 40px;
        margin: 0;
        width: 40px;
        float: none;
        position: relative;
        left: 0;
        top: 0;
        margin-left: 10px;
        display: none;
        margin-top: 2px;
        box-shadow: none;
        border: 0;
        cursor: auto;
    }
    
    .add-menu_image a.jFiler-input-choose-btn {
        border: 0 !important;
        padding: 0;
        font-family: FontAwesome;
        font-size: 14px;
        color: #3a3a3a;
        font-weight: 500;
    }
    
    .add-menu_image a.jFiler-input-choose-btn:hover {
        background: #fff;
        color: #008BFF;
    }
    
    .add-menu_image .upload-field.img-menu-upload-field .clearfix {
        display: none;
    }
    
    .add-menu_image a.jFiler-input-choose-btn.blue:before {
        content: "\f03e";
        margin-right: 5px;
    }
    
    .add-menu_image .menu-edit-img-wrap {
        position: relative !important;
        float: left;
        display: none;
    }
    
    #add-menu-img-spinner {
        display: none;
        font-size: 14px;
    }
    
    .add-menu_image .menu-edit-imgs-wrap.image-menu-multiple-wrap .menu-edit-img-wrap .remove-menu-img {
        top: 0;
        right: 0;
        line-height: 0;
        width: 15px;
        height: 15px;
        padding: 0;
    }
    
    .add-menu_image .menu-edit-imgs-wrap.image-menu-multiple-wrap .menu-edit-img-wrap .remove-menu-img i.fa-close {
        font-size: 14px;
    }
    
    .del_img_menu {
        cursor: pointer;
    }
    
    p.add_img_menu_error {
        display: block;
        float: none;
        clear: both;
        padding: 0 0 0 20px;
        color: #f00;
        position: relative;
        top: -10px;
    }
    
    .menu-add-new {
        cursor: pointer;
    }
    
    .del-order-service {
        cursor: pointer;
    }
    
    #lp_leadReply .pos-relative {
        display: inline-block;
        float: right;
        margin: 20px 0;
    }
    
    #lp_leadReply .pos-relative .lpthisloading {
        font-size: 12px;
        position: absolute;
        bottom: 0;
        right: 10px;
        display: none;
        float: none;
        line-height: 37px;
        margin-left: 0;
        color: #fff;
    }
    
    #lp_leadReply .pos-relative .lppRocesesp {
        margin: 0;
    }
    
    .submit_new_style .form-group label small {
        color: red;
    }
    
    .lp-invoices-all-stats-on-off .slider:before {
        width: 13px;
        height: 13px;
    }
    
    .lp-menu-form-feilds .switch {
        margin-top: -3px;
    }
    
    .sidebar-filters .filters-section-wrap .currency-signs>ul>li>a {
        border-radius: 5px !important;
    }
    
    .sidebar-filters .filters-section-wrap .lp-search-cats-filter-dropdown {
        border: 1px solid #eaeaea;
        width: calc(100% - 1px);
    }
    
    .breadcrumb-style2 .container {
        z-index: 2 !important;
    }
    
    .Popular_item_container {
        display: inline-block !important;
        position: relative !important;
        margin-left: 15px !important;
        line-height: 46px;
    }
    
    .menuSpice-control_containter {
        display: inline-block !important;
        float: right;
        width: 200px;
        margin-right: 15px;
    }
    
    .lp-listing .lp-listing-top-thumb {
        overflow: hidden;
    }
    
    p.lp-general-section-title {
        border-radius: 0
    }
    
    .ordering-service-wrap {
        background: #fff;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .add-menu_image a.jFiler-input-choose-btn {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        color: #035ea1;
    }
    
    .lp-dashboard-tabs p#reply-title {
        margin: 0;
        color: #8697a8;
        font-size: 12px;
        padding-left: 35px;
        cursor: auto;
        font-weight: 700;
    }
    
    .lp-listing-menu-top .lp-listing-menu-top-content {
        color: #fff !important;
    }
    
    .online_ordring_list_title {
        margin-top: 10px;
        color: #035ea1;
        margin-bottom: 0;
        font-size: 15px;
        text-transform: capitalize;
        font-weight: 600;
    }
    
    .online_ordring_list_title:hover {
        text-decoration: underline;
    }
    
    .online_order_food,
    .image_menu_trigger,
    .view_all_menu_trigger {
        cursor: pointer;
    }
    
    button.lp-view-all-btn {
        font-weight: 500 !important;
    }
    
    .ordering-service-wrap ul li a {
        margin-top: 10px;
        color: #035ea1;
        margin-bottom: 0;
        font-size: 15px;
        text-transform: capitalize;
        font-weight: 600;
    }
    
    .ordering-service-wrap ul li a:hover {
        text-decoration: underline;
    }
    
    #lp-menus .lp-right-panel-height.lp-right-panel-height-outer {
        min-height: 100vh;
    }
    
    .lp-all-menu-btns .lp-dashboard-tabs .panel-heading .nav-tabs li a {
        padding-bottom: 0;
        border-right: 0;
    }
    
    .lp-all-menu-btns a:first-child {
        border-right: 0;
    }
    
    .form-group.add-menu_image {
        width: 20%;
        display: inline-block;
        float: right;
    }
    
    .select_listing_for_img_menu {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: calc(100% - 20%);
        position: relative;
        display: inline-block;
    }
    
    .menu_online_order_url input {
        margin-top: 0;
        margin-left: 0;
        height: 46px;
    }
    
    .form-group.menu_online_order_url {
        width: 55%;
        display: inline-block;
        float: right;
    }
    
    select.online-order-type {
        margin-left: 20px !important;
        margin-right: 20px !important;
        width: 40%;
        position: relative;
        display: inline-block;
        height: 46px;
    }
    
    p.add_img_menu_error {
        font-size: 12px;
    }
    
    .app-view-filters2 .modal-title {
        font-size: 18px;
        font-weight: 400;
        color: #222222;
    }
    
    .app-view-filters.app-view-filters2 .modal-header {
        border-bottom: 0 solid #e5e5e5;
        z-index: 9999;
        background-color: #ececec;
        border-radius: 0;
        width: 100%;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .modal-body {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .currency-signs>ul>li>a {
        background-color: #fff;
        color: #222;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .currency-signs>ul>li>a.active,
    .listing-app-view .app-view-filters.app-view-filters2 .search-filters>ul>li>a.active {
        background-color: #fff;
        border-color: #8a6aeb !important;
        color: #8a6aeb !important;
        border-right: 1px solid #8a6aeb;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp-border-bottom.padding-top-5.padding-bottom-10 {
        padding-bottom: 20px;
        border-bottom: 12px solid #e3e3e3;
        padding-left: 20px;
        padding-right: 20px !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .slider:before {
        background-color: #8a6aeb;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .slider {
        background-color: #e2e2e2;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp-filter-wrap-app span {
        color: #222;
        line-height: 30px;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .app-view-filters p {
        font-size: 14px;
        color: #222;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .input-group-addon i {
        color: #8a6aeb !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .close {
        border-color: #8a6aeb !important;
        color: #8a6aeb;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp-filter-wrap-app {
        padding: 20px 20px;
        padding-bottom: 15px;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .form-group.padding-bottom-10.padding-top-10.pull-right.margin-right-0.clearfix,
    .listing-app-view .app-view-filters.app-view-filters2 .form-inline.lp-features-filter tags-area {
        padding-left: 20px;
        padding-right: 20px !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .form-group.padding-bottom-10.padding-top-10.pull-right.margin-right-0.clearfix {
        border-top: 11px solid #dedede;
        border-bottom: 12px solid #dedede;
        padding-bottom: 20px;
        margin-bottom: 8px;
        padding-top: 15px !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp-additional-appview-filter-new h3 {
        padding-left: 20px;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp-additional-appview-filter-new>h3 {
        margin-bottom: 20px;
        font-size: 16px;
        color: #222;
        font-weight: 400;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 p {
        margin-bottom: 10px;
        font-size: 15px;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .modal-dialog {
        position: absolute;
        top: 0 !important;
        transform: translate(0, 0) !important;
        -ms-transform: translate(0, 0) !important;
        -webkit-transform: translate(0, 0) !important;
        margin: auto 0%;
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 {
        z-index: 9999999;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .search-row .form-inline.tags-area {
        padding: 0 20px !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .col-md-12>h2,
    .listing-app-view .app-view-filters .lp_all_page_overflow .col-md-12>h2 {
        padding-top: 10px;
        font-size: 16px;
        color: #222;
        font-weight: 400;
        text-transform: uppercase;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .col-md-12 {
        padding: 0;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .filter_checkbox_container {
        padding-left: 0 !important;
        font-size: 14px;
        font-weight: 400;
        color: #222;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .lp_extrafields_select-border2 .filter_checkbox_container {
        padding-left: 40px !important;
        font-size: 14px;
        font-weight: 400;
        color: #7f7f7f;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow,
    .listing-app-view .app-view-filters .lp_all_page_overflow {
        width: 100%;
        border: 0;
    }
    
    .listing-app-view .app-view-filters .lp_all_page_overflow,
    .listing-app-view .app-view-filters .lp_all_page_overflow .col-md-12 {
        padding: 0;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_more_filter_data_section h3 {
        padding-left: 0 !important;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .lp_extrafields_select-border2 h3,
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .lp_extrafields_select-border2 .lp-more-filters-outer {
        margin-bottom: 10px;
        font-size: 16px;
        color: #222;
        font-weight: 400;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp_all_page_overflow .lp_extrafields_select-border2 {
        padding-bottom: 12px !important;
        padding-top: 10px;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .filter_data_switch_on_off.lp-filter_data_switch_on_off h3 {
        margin-top: 0;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .modal-content {
        border-radius: 0;
        box-shadow: none;
        border: 0;
    }
    
    .listing-app-view .app-view-filters #searchform .tags-area.form-inline ul li .checkbox label {
        font-weight: 400;
        color: #7f7f7f;
        padding-left: 40px;
    }
    
    .listing-app-view .app-view-filters #searchform .tags-area.form-inline ul li .checkbox label::before {
        background-color: #fff;
        border: 1px solid #dedede;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .modal-footer {
        width: 100%;
    }
    
    .listing-app-view .app-view-filters.app-view-filters2 .lp-features-filter ul>li {
        width: 50% !important;
        margin: 0 !important;
        padding: 5px 0 !important;
        border-top: 0 solid #e3e3e3 !important;
    }
    
    .listing-app-view .app-view-filters .filter_checkbox_container {
        text-transform: capitalize;
        color: #333;
        line-height: 26px;
        font-weight: 400;
        font-size: 14px;
    }
    
    .lp-header-search-filters .header-more-filters .outer_all_page_overflow .lp-features-filter {
        padding: 0 !important;
        ;
    }
    
    .listing-app-view .app-view-filters .lp-features-filter strong {
        display: none;
    }
    
    .listing-app-view .app-view-filters .modal-body>h3 {
        display: none;
    }
    
    .listing-app-view .app-view-filters .lp_extrafields_select-border2 .lp-more-filters-outer h3 {
        text-transform: capitalize;
        color: #333;
        font-weight: 400;
        font-size: 14px;
    }
    
    .lp-right-static {
        width: 315px;
        padding: 0;
    }
    
    .lp-left-static {
        width: calc(100% - 315px);
    }
    
    .login-form-popup.lp-border-radius-8 .status {
        width: calc(100% + 30px);
    }
    
    .page-style2-content-wrap .featuresDataContainer .col-md-3.col-sm-3.col-xs-6.form-group label {
        width: auto;
    }
    
    .submit_new_style #features-by-cat {
        margin-bottom: 10px;
        padding-bottom: 25px;
        margin-top: 15px;
    }
    
    .submit_new_style #features-by-cat .form-group .checkbox label,
    .submit_new_style #features-by-cat .col-md-3.col-sm-3.col-xs-6.form-group label {
        font-size: 13px !important;
    }
    
    .submit_new_style #features-by-cat .form-group label {
        margin-right: 10px;
        font-size: 15px !important;
    }
    
    .lp-archive-banner .lp-header-search.archive-search .lp-search-bar .select2-container .select2-selection--single {
        padding-left: 90px;
        text-align: left;
    }
    
    .header-more-filters .outer_all_page_overflow {
        display: block !important;
        padding-top: 0;
        -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.16);
        box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.16);
    }
    
    .header-more-filters .lp_all_page_overflow {
        width: 100%;
        text-align: left;
        border: 0;
        height: 100%;
        overflow-y: auto;
        border-radius: 0;
        margin-top: 0;
    }
    
    .header-more-filters .lp_all_page_overflow .lp_extrafields_select-border2 .filter_checkbox_container {
        padding-left: 40px;
    }
    
    .header-more-filters .outer_all_page_overflow {
        width: 100%;
    }
    
    .code-overlay {
        z-index: 99999 !important;
    }
    
    .lp-bottom-left-full-outer .lp-listing-announcements {
        z-index: 999999 !important;
        top: 10% !important;
    }
    
    .sidebar-filters .outer_all_page_overflow {
        background: #fff;
    }
    
    .near-me-btn-style-3 {
        border-color: #eaeaea !important;
    }
    
    .near-me-btn-style-3:hover {
        color: #333 !important;
    }
    
    .lp-compact-view-outer {
        border: 1px solid #dedede;
        padding: 15px 0;
        margin: 0 15px;
    }
    
    .page-container.listing-simple .lp-compact-view-outer {
        margin: 0 0;
    }
    
    .listing-with-header-filters-wrap .list_view.lp-grid-box-contianer .lp-grid-box .lp-grid-box-bottom {
        bottom: -5px;
        right: 8px;
        width: calc(100% - 260px) !important;
    }
    
    .listing-style4 .listing-with-header-filters-wrap .list_view .lp-grid-box-thumb-container {
        width: 34% !important;
    }
    
    .lp-list-view-compact-outer .li-listing-clock-outer {
        position: absolute;
        right: 5px;
    }
    
    .listing-app-view .planclaim-page-popup .lp-secondary-btn {
        width: 300px !important
    }
    
    .listing-app-view .lp-claim-plans .lp-list-form-outer-postion {
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 0;
    }
    
    .listing-app-view .lp-claim-plans .lp_hori_view_plan_left_section .lp-listprc {
        height: 200px;
    }
    
    .listing-app-view .lp-claim-form-check-circle {
        margin-top: 0;
        padding-top: 0;
    }
    
    .lp-listing-menu-item-outer .lp-listing-menu-item :last-child {
        border-bottom: solid 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .listing-page-sidebar .lp-widget-inner-wrap {
        margin-top: 0 !important;
    }
    
    .listing-page-sidebar .lp-widget .lp-listing-price-range {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    .single-listing .lp-event-grid-new .lp-event-venue li {
        line-height: 20px;
        padding: 0 !important;
    }
    
    .lp-event-grid-new .lp-event-venue li {
        line-height: 25px;
        padding: 0 !important;
    }
    
    .lp-event-detail-end-time-outer {
        background-color: #fff !important;
        padding-top: 0 !important;
    }
    
    .listing-app-view-new.app-view-home .lp-menu-bar {
        background: transparent !important;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .listing-app-view2 .lp-listing-bottom-right {
        position: relative;
        overflow: hidden;
    }
    
    .listing-app-view2 .discount-bar {
        color: #fff;
        padding: 5px 13px;
        cursor: pointer;
        font-size: 14px;
    }
    
    .listing-app-view2 .discount-bar .fa {
        line-height: 23px;
    }
    
    .listing-app-view2 .coupons-bottom-content-wrap {
        text-align: center;
    }
    
    .listing-app-view2 .lp-listing-bottom-right.active {
        box-shadow: -3px 3px 10px -4px #00000061;
    }
    
    .listing-app-view2 .lp-listing-bottom-right {
        background-color: #16a085 !important;
        border: dashed 1px #fff !important;
        color: #fff !important;
        margin-bottom: 10px;
    }
    
    .listing-app-view2 .coupons-bottom-content-wrap {
        padding-top: 30px;
    }
    
    .listing-app-view2 .lp-listing-bottom-right .flip-clock-wrapper ul li a div div.inn {
        line-height: 30px;
        font-size: 18px;
    }
    
    .listing-app-view2 .lp-listing-bottom-right .flip-clock-wrapper ul {
        width: 30px;
        height: 30px;
    }
    
    .listing-app-view2 .lp-listing-bottom-right .flip-clock-wrapper ul li,
    .listing-app-view2 .lp-listing-bottom-right .flip-clock-wrapper ul li a,
    .listing-app-view2 .lp-listing-bottom-right .flip-clock-divider {
        line-height: 17px;
        height: 30px;
    }
    
    .listing-app-view2 .archive-countdown-wrap {
        margin-bottom: 10px;
    }
    
    #lp-new-ad-compaignForm .lp-select-ad-place input[type="checkbox"] {
        z-index: 0 !important;
    }
    
    div#ad_preview:before {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #00000055;
        z-index: 0;
    }
    
    .lp-fields-sroter-lead-sorter li {
        margin-bottom: 15px;
    }
    
    #lp-leadform .lp-dashboard-tabs.lp-left-static {
        padding-left: 15px;
    }
    
    .lp-join-now-v2 .lp-user-menu.list-style-none {
        top: 33px;
        padding-top: 10px;
    }
    
    .lp-join-now-v2 .lp-user-menu:after {
        top: 0;
    }
    
    .lp-header-middle .lp-header-user-nav .lp-join-now-v2.after-login .juname {
        line-height: 18px;
    }
    
    .rightside-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .4);
    }
    
    .lp-listings .listing-slider .lp-new-grid-bottom-button {
        display: none;
    }
    
    .lp-listings .listing-slider .clearfix.slick-slide.slick-cloned,
    .lp-listings .listing-slider .clearfix.slick-slide.slick-active,
    .lp-listings .listing-slider .clearfix.slick-slide {
        display: none !important;
    }
    
    .elementor-icon-box-title span {
        font-family: Poppins,"Poppins Fallback";
        font-size: 30px;
        font-weight: 400;
        color: #333;
        line-height: 30px;
        display: inline-block;
        margin-top: 14px;
    }
    
    .elementor-inner:first-child .elementor-icon-box-wrapper {
        margin-bottom: 50px;
        margin-top: 50px;
    }
    
    .elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-description {
        color: #797979;
        font-family: "Roboto","Roboto Fallback", Sans-serif;
        font-weight: 400;
        font-size: 16px;
    }
    
    .lp-grid-width3 .lp-grid-box-contianer .lp-grid-box-thumb .lp-grid-box-thumb-container img,
    .lp-grid-width3 .grid_view6 .lp-grid-box-thumb img,
    .lp-grid-width3 .grid_view2 .lp-grid-box-thumb img {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .lp-grid-width3 .grid_view_s3 .lp-grid-box-description {
        min-height: 122px;
    }
    
    .lp-grid-width3 .lp-listing .lp-listing-bottom {
        min-height: 152px !important;
    }
    
    .listing-app-view .lp-booking-section,
    .lp-booking-form-container {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-top: 30px;
    }
    
    .lp-booking-bar,
    .lp-booking-bar-login {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-top: 30px;
    }
    
    .dashboard-content .lp-notifaction-area {
        z-index: 9999999;
    }
    
    .app-view-new-gallery-title .slick-list,
    .app-view-new-gallery-title .slick-list .slick-slide {
        min-height: 150px;
    }
    
    .form-group.datetimepicker2,
    .form-group.datetimepicker1 {
        position: static !important;
    }
    
    .bootstrap-datetimepicker-widget.dropdown-menu {
        z-index: 99999 !important;
        display: block !important;
    }
    
    .widget-social-icons .social-icon {
        float: left;
    }
    
    .widget-social-icons #lp-respo-direc {
        float: left;
        width: calc(100% - 40px);
    }
    
    .lp-right-15 {
        right: 15px;
    }
    
    .get-directions {
        z-index: 99;
    }
    /*Listing Archive Near Me Tag Css*/
    
    .grid_view6 .lp-grid-box-thumb .lp-nearest-distance {
        position: absolute;
        top: 17px;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        background: #42a7df;
        width: 71px;
        color: #fff;
        line-height: 26px;
        border-radius: 3px;
    }
    
    .grid-style-container .lp-listing-top .lp-nearest-distance,
    .list-style-cotainer .lp-listing-top .lp-nearest-distance {
        position: absolute;
        top: 12px;
        right: 15px;
        text-align: center;
        background: #42a7df;
        width: 71px;
        color: #fff;
        line-height: 26px;
        border-radius: 3px;
    }
    
    .lp_show_hide_plans.active::before {
        background-color: #cfcfcf !important;
    }
    
    .lp_button_switcher a.lp_show_hide_plans.active::after {
        border: 2px solid #cfcfcf !important;
        color: #cfcfcf !important;
    }
    
    .lp-grid-box {
        border-radius: 7px;
    }
    
    .select2-container--default .select2-selection--multiple {
        border-color: #dce0e2;
    }
    
    .app-view-filters#app-view-archive-login-popup {
        z-index: 99999;
    }
    
    .tab-pane.lpreviews .review-img-slider.slick-initialized .galImgFull {
        min-width: 184px;
    }
    
    .lp-deal .deal-thumb {
        min-height: 260px;
    }
    
    .map-banner-search-container .lp-search-bar {
        padding-bottom: 0 !important;
    }
    
    .lp-grid-box-contianer.grid_view6.grid_view_s5.card1.lp-grid-box-contianer1.listing-grid-view2-outer {
        min-height: 444px;
    }
    
    .lp-header {
        display: block !important;
        float: none !important;
        clear: both !important;
    }
    
    .lp-header:before,
    .lp-header:after {
        content: '';
        display: block !important;
        float: none !important;
        clear: both !important;
    }
    
    .home #searchlocation {
        width: 100% !important;
        padding-left: 80px;
        border-radius: 0 4px 4px 0;
        box-shadow: 0 2px 7px rgba(0, 0, 0, .12);
        padding-top: 0px;
        border: none;
    }
    /* new css changes for filters 2.8 */
    
    .pin:hover {
        background: #688bf7;
    }
    
    .lpmap-icon-shape.cardHighlight {
        background-color: #ff0000 !important;
    }
    /* new css changes for filters` */
    
    .lp-tooltip-div {
        border: unset;
        border-radius: 6px;
        margin-top: 5px;
    }
    
    .lp-tooltip-div ul {
        display: flex;
        flex-direction: column;
        min-width: 130px;
    }
    
    .lp-tooltip-div ul li a {
        text-align: left;
        border: unset;
        padding: 6px 10px;
        border-radius: 7px !important;
        background: transparent;
    }
    
    .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer {
        width: auto;
    }
    
    .lp-tool-tip-content p {
        padding: 8px;
        border-radius: 5px;
    }
    
    .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li a {
        text-align: left;
        border: unset;
        border-radius: 7px !important;
        background: transparent;
        display: block;
        float: inherit;
        min-width: 150px;
        padding: 14px 10px;
        margin: 0;
    }
    
    .post-with-map-container-right #searchform .chosen-container.chosen-with-drop .chosen-drop {
        width: 122%;
        border: unset !important;
        text-align: left;
        border: unset !important;
        -moz-box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
        -webkit-box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
        box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
        border-radius: 6px;
        margin-top: 5px !important;
    }
    
    .post-with-map-container-right #searchform .chosen-container.chosen-with-drop .chosen-drop .chosen-results::-webkit-scrollbar {
        width: 5px;
        border-radius: 5px;
    }
    /* Track */
    
    .post-with-map-container-right #searchform .chosen-container.chosen-with-drop .chosen-drop .chosen-results::-webkit-scrollbar-track {
        background: transparent;
    }
    /* Handle */
    
    .post-with-map-container-right #searchform .chosen-container.chosen-with-drop .chosen-drop .chosen-results::-webkit-scrollbar-thumb {
        background: #808080c7;
        border-radius: 5px;
    }
    /* Handle on hover */
    
    .post-with-map-container-right #searchform .chosen-container.chosen-with-drop .chosen-drop .chosen-results::-webkit-scrollbar-thumb:hover {
        opacity: 0.8;
    }
    
    .chosen-container .chosen-results {
        padding: 5px 0 !important;
    }
    
    .lp-header-search-filters .header-more-filters,
    .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow {
        width: 100% !important;
        padding-top: 4px;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 100%;
        background: #ffffff00 !important;
        border: unset !important;
        opacity: 1;
        top: 0;
        z-index: 99999;
        top: 0;
        display: block !important;
        transition: 0.5s;
        position: fixed !important;
        transform: translatex(-300px);
        visibility: hidden;
        height: 0;
    }
    
    .lp-header-search-filters .header-more-filters {
        box-shadow: unset !important;
    }
    
    .header-more-filters .lp_all_page_overflow h2 {
        font-size: 20px;
        text-align: left;
        letter-spacing: 0px;
        color: #484F5F;
        opacity: 1;
        margin: 0;
    }
    
    .header-more-filters .outer_all_page_overflow {
        background-color: transparent !important;
        overflow: hidden;
    }
    
    .lp-header-search-filters .header-more-filters.hide-filters,
    .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow.hide-filters {
        transform: translatex(0);
        visibility: visible;
        height: 100%;
    }
    
    .header-more-filters .lp_all_page_overflow,
    .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow .lp_all_page_overflow {
        width: 300px !important;
        border: unset;
        height: 100%;
        margin: 0;
        padding: 30px 40px;
        box-shadow: 0px 12px 26px #4F568580;
    }
    
    .lp-filter_data_switch_on_off,
    .lp_all_page_overflow .lp_more_filter_data_section,
    .lp-filter_data_switch_on_off,
    .lp_all_page_overflow .col-md-12>h2 {
        border: unset !important;
        padding: 15px 0 0 0 !important;
    }
    
    .lp-header-search-filters .lp_all_page_overflow_after,
    .page-container:not(.lp-sidebar-filters-style) .lp_all_page_overflow_after {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 300px;
        right: 0;
        bottom: 0;
    }
    
    .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow .lp_all_page_overflow h2 {
        font-size: 20px;
        text-align: left;
        letter-spacing: 0px;
        color: #484F5F;
        opacity: 1;
        margin: 0;
    }
    
    .lp_extrafields_select-border2 .lp-more-filters-outer ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    .lp_all_page_overflow .lp_extrafields_select-border2 .filter_checkbox_container {
        padding-left: 40px;
        line-height: 30px;
        text-align: left;
        font-size: 14px;
        letter-spacing: 0px;
        color: #424857;
        opacity: 0.8;
    }
    
    @media(max-width:980px) {
        header {
            z-index: 5;
        }
        .lp-header-search-filters .header-more-filters,
        .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow {
            padding-top: 0 !important;
        }
        .page-container:not(.lp-sidebar-filters-style) .lp_all_page_overflow_after {
            z-index: -1;
        }
        .header-more-filters .lp_all_page_overflow,
        .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow .lp_all_page_overflow {
            height: 100%;
            padding: 24px;
            border-radius: 0 !important;
            margin: 0;
        }
        .lp-header-search-filters .header-more-filters.hide-filters,
        .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow.hide-filters {
            margin: 0 !important;
            z-index: 999999999;
        }
        .header-more-filters .lp_all_page_overflow {
            padding-top: 16px !important;
        }
        .lp-header-search-filters .header-more-filters {
            width: calc(100% - 0px) !important;
        }
    }
    /* new classic setting css  */
    
    .classic-search #input-dropdown {
        display: none;
    }
    
    .classic-search #input-dropdown.active {
        display: block !important;
        overflow-y: hidden;
        outline: none;
        cursor: -webkit-grab;
    }
    
    .classic-search .what-placeholder .down-search-q.active {
        transform: rotate(180deg) translatey(4px);
    }
    
    .banner-view-top-classic .nicescroll-rails {
        border-radius: 0 30px 27px 0;
        overflow: hidden;
    }
    
    .lp-header-style-classic .nicescroll-rails {
        border-radius: 0 30px 27px 0;
        overflow: hidden;
    }



	/* new classic grid */

	.classic-view-grid-container {
		margin-bottom: 20px;
		padding: 5px;
		border-radius: 5px;
		background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
		background: #FFFFFF 0% 0% no-repeat padding-box;
		box-shadow: 0px 12px 26px #4F56850A;
		opacity: 1;
		transition: 0.3s ease-in-out;
        min-height: 370px;
	}

	.classic-view-grid-container:hover {
		background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
		background: #FFFFFF 0% 0% no-repeat padding-box;
		box-shadow: 0px 12px 26px #4F56852F;
	}

	.classic-view-grid-thumbnail {
		overflow: hidden;
		border-radius: 5px;
		position: relative;
	}

	.classic-view-grid-container .classic-view-grid-thumbnail img {
		width: 100%;
		height: 217px;
		object-fit: cover;
		transition: 0.3s ease-in-out;
		border-radius: 5px;
		transform: scale(1);
	}

	.classic-view-grid-container:hover .classic-view-grid-thumbnail img {
		transform: scale(1.1);
	}

	.classic-view-grid-saved-options {
		position: absolute;
		background: #faebd700;
		top: 14px;
		right: 14px;
	}

	.classic-view-grid-saved-options a i {
		width: 35px;
		height: 35px;
		display: flex;
		font-size: 12px !important;
		align-items: center;
		transition: 0.3s ease-in-out;
		justify-content: center;
		background: #00000080 0% 0% no-repeat padding-box;
		box-shadow: 0px 12px 26px #4F568514;
		border-radius: 18px;
		opacity: 1;
	}

	.classic-view-grid-container .classic-view-grid-saved-options a i:hover {
		background: #ffffffb8 0% 0% no-repeat padding-box;
	}

	.classic-view-grid-content-area {
		padding: 10px 14px 0 14px;
	}

	.classic-view-grid-content-area h4 {
	    margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.classic-view-grid-content-area h4.ad {
		padding-left: 35px;
	}

	.classic-view-grid-content-area h4 a {
		font-size: 19px;
		text-align: left;
		letter-spacing: 0px;
		color: #4F5685;
		opacity: 1;
		display: inline-block;
		position: relative;
	}

	.promoted-listings .promoted .listing-pro {
		display: inline-block !important;
	}

	.classic-view-grid-content-area .listing-pro {
		background: #FF4A68 0% 0% no-repeat padding-box;
		border-radius: 4px;
		text-align: left;
		letter-spacing: 0px;
		color: #FFFFFF;
		opacity: 1;
		font-weight: 500;
		display: block !important;
		font-size: 13px;
		padding: 2px 6px;
		position: absolute;
		margin-top: 1px;
	}

	.promoted-listings .promoted .listing-pro {
		display: inline-block !important;
		padding: 0px 6px;
	}

	.classic-view-grid-content-area .lp-listing-content-grid img {
		width: 12px;
		height: auto;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button li {
		border: unset !important;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button ul {
		border: unset;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button ul li p span,
	.classic-view-grid-container .lp-new-grid-bottom-button ul li p,
	.classic-view-grid-container .lp-new-grid-bottom-button ul li:not(.show-number-wrap) a {
		margin: 0;
		text-transform: capitalize;
		text-align: left;
		letter-spacing: 0px;
		color: #4F5685;
		opacity: 1;
		font-weight: 500;
		font-size: 13px;
		font-family: 'Open Sans',"Open Sans Fallback";
		display: flex;
		align-items: center;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button ul li:hover {
		background: #f5f5f500;
	}

	.lp-grid-box-bottom.content .show i {
		font-size: 13px;
		margin-right: 4px;
		margin-left: 7px;
		color: #4f5685;
	}

	.lp-grid-box-bottom.content .show {
		display: flex !important;
		align-items: center;
	}

	.lp-grid-box-bottom.content {
		float: unset;
		display: flex;
		border: unset !important;
		justify-content: space-between;
		padding-top: 0px;
		margin-bottom: 4px;
		min-height: 22px !important;
		line-height: 0 !important;
		padding-bottom: 0;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button ul li:hover span,
	.classic-view-grid-container .lp-new-grid-bottom-button ul li:hover i,
	.classic-view-grid-container .lp-new-grid-bottom-button ul li:hover a {
		color: #2440FF !important;
	}

	.lp-grid-box-bottom.content a {
		margin: 0;
		text-transform: capitalize;
		text-align: left;
		letter-spacing: 0px;
		color: #4F5685;
		opacity: 1;
		font-weight: 500;
		font-size: 13px;
		font-family: 'Open Sans',"Open Sans Fallback";
		display: flex;
		align-items: center;
	}

	.lp-classic-reviews {
		display: flex;
		align-items: center;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button::after {
		content: '';
		border-top: 1px solid #4F568526;
		left: -6px;
		right: -6px;
		position: absolute;
		top: 0;
	}

	.lp-classic-reviews span {
		margin: 0;
		text-transform: capitalize;
		text-align: left;
		letter-spacing: 0px;
		color: #4F5685;
		opacity: 1;
		font-weight: 500;
		font-size: 13px;
		font-family: 'Open Sans',"Open Sans Fallback";
	}

	.lp-classic-reviews .lp-rating-stars-outers span i {
		color: #4f56856e;
	}

	.post-meta-info-classic .post-meta-right-box {
		margin-top: 5px;
	}

	.classic-view-grid-container a.status-btn>span.grid-closed {
		color: #C84031 !important;
	}

	.classic-detail-reviews .lp-classic-reviews span {
		font-size: 16px;
	}

	.classic-view-grid-container a.status-btn span {
		margin: 0;
		padding: 0;
		opacity: 1;
		font-weight: 600;
		font-size: 13px;
		font-family: 'Open Sans',"Open Sans Fallback";
		display: flex;
		align-items: center;
	}

	.lp-classic-reviews .lp-rating-stars-outers {
		margin: 0 5px;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button {
		padding: 6px 16px 4px 16px;
		position: relative;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button ul li:first-child:nth-last-child(2)~li a {
		text-align: right;
		display: flex;
		justify-content: end;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button i {
		font-size: 16px;
		color: #606791;
		margin-right: 4px;
	}

	.classic-view-grid-container .lp-new-grid-bottom-button ul li:first-child:nth-last-child(2) {
		text-align: left;
	}

	.classic-view-grid-content-area .lp-listing-content-grid a {
		text-align: left;
		letter-spacing: 0px;
		color: #4F5685;
		opacity: 1;
		font-weight: 500;
		font-size: 13px;
		font-family: 'Open Sans',"Open Sans Fallback";
		padding: 3px 6px;
	}

	.classic-view-grid-content-area .lp-listing-content-grid a:hover,
	.lp-grid-box-bottom.content .show:hover a,
	.lp-grid-box-bottom.content .show:hover i {
		color: #2458ff;
	}

	.classic-view-grid-content-area .lp-listing-content-grid {
		margin: 8px 0;
	}

	.lp-rating-stars-outers.lp-listing-stars span.lp-star-box {
		border: unset;
	}
	.classic-view-grid-content-area .classic-category-loop-main {
		display: flex;
		align-items: center;
		margin-top: 2px;
	}
	.classic-view-grid-content-area .classic-category-loop-main .cat-icon i,.classic-category-loop-price .element-price-range span {
		color: #5d638f;
	}
	.classic-category-loop:hover span.cat-icon i {
		color: #2458ff;
	}
/* claim */
.classic-view-grid-content-area .verified i {
    background: #2458ff;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    width: 16px;
	transform: translate(0px, -3px);
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-inner-classic-container .listing-price .post-row.price-range span {
    text-transform: capitalize;
    text-align: left;
    letter-spacing: 0px;
    color: #4F5685 !IMPORTANT;
    opacity: 1;
    font-weight: 600;
    font-size: 14px !important;
}
.single-inner-classic-container .listing-price .post-row.price-range {
    border: medium none;
    line-height: 36px;
	transform: translate(0px, -3px);
    border-bottom: 1px solid #F7F7F7;
    padding-bottom: 36px;
    margin-bottom: 15px;
}

.contact-right .cwp-frontend-section-content-container {
    padding: 0px !important;
    border: none !important;
}
.contact-right .cwp-frontend-section-container .cwp-field-container {
    padding: 0px !important;
}
.contact-right  .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label {
    display: none !important;
}			
.contact-right .cwp-frontend-form-container .cwp-custom-form input[type=submit] {
    margin: -20px 0px 0px 0px !important;
}
}
/* SCRIPT : https://kothrud.com/wp-content/themes/listingpro/assets/css/colors-new.css?ver=7.0.4 */
@media all {
.lp-top-bar{

    background-color: rgba(0, 0, 0, 0.24);;

}




.lp-header-search .lp-header-search-tagline,

.lp-header-search .lp-header-search-cats ul li a,

.lp-header-search .lp-search-form-submit button,

.lp-listing .lp-listing-top .lp-listing-price-range,

.lp-listing .lp-listing-top .lp-listing-favrt,

.lp-listing .lp-listing-top .li-listing-clock,

.lp-listing .lp-listing-top .lp-listing-cat,

.lp-locations .lp-location-box .lp-location-bottom a,

.lp-read-news,

.lp-read-news a,

.lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat i,

.lp-listings-widget .lp-listing .lp-listing-detail h6 span,

.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg,

.lp-header-title .lp-header-title-left h3,

.lp-header-title .lp-header-title-left .lp-header-breadcrumbs a,

.lp-header-title .lp-header-title-left .lp-header-breadcrumbs a:hover:before,

.lp-header-title .lp-header-title-left .lp-header-breadcrumbs a:before,

.lp-header-title .lp-header-title-left .lp-header-breadcrumbs,

.lp-header-toggles,

.lp-header-search .price-filter ul li:hover,

.lp-listing-title .lp-listing-title-rating .lp-rating-avg,

.lp-listing-announcement .announcement-wrap a,

.lp-review-form-top .lp-review-images button,

.lp-listing-review-form .review-submit-btn,

.lp-listing-additional-details .toggle-additional-details,

.lp-discount-btn,

.single-page-bg .lp-listing-title .lp-listing-name h2,
.single-page-bg .lp-listing-title .lp-listing-name h1,
.single-page-bg .lp-listing-title .lp-listing-name .lp-listing-name-tagline,

.single-page-bg .lp-listing-title .lp-listing-title-rating .lp-rating-count,

.lp-see-all a,

a.browse-imgs,

.lp-header-search .price-filter ul li.active,

.lp-locations .lp-location-box .lp-location-bottom a span
{

    color: #fff !important;

}

.lp-listing .lp-listing-top .lp-listing-price-range{

    background-color: #1414148a !important;

}



.lp-header-search .lp-search-form-submit button{

    background-color: transparent !important;

}

.lp-header-middle .lp-header-nav-btn button span,

.header-style2 .lp-top-bar,

.lp-listing-action-btns ul li a,

.lp-review-form-top,

.lp-listing-offer .flip-clock-wrapper ul li a div div.inn{

    background-color: #fff;

}

.header-style3 .lp-top-bar{

    background-color: #333333 !important;

}



.lp-header-middle .lp-header-nav-btn button,

.lp-activities .lp-activity .lp-activity-author-thumb img{

    border-color: #fff !important;

}

.lp-header-search .lp-search-form-what,

.lp-header-search .lp-search-form-where{



}

.lp-header-search .lp-search-form-what label,

.lp-header-search .lp-search-form-where label,

.lp-section-heading h2,

.lp-listing .lp-listing-bottom h3 a,

.lp-activity h3 a,

.footer-menu ul li a,

.lp-listings-widget .lp-listing .lp-listing-detail h3 a,

.lp-listing-faq .faq-title a,

.lp-listing-reviews .lp-total-reviews,

.lp-listing-review .lp-review-left .lp-review-name,

.lp-listing-review .lp-review-right strong,

.lp-discount-widget .lp-discount-top strong,

.lp-discount-widget .lp-discount-bottom strong,

.lp-discount-widget .lp-discount-bottom p,

.lp-listing-action-btns .smenu div a,

.announcement-wrap span{

    /*color: #333333 !important;*/

}

.footer-menu ul li a{

    color: #333333 !important;

}

.lp-header-search .lp-search-form-what input,

.lp-header-search .lp-search-form-where input,

.lp-section-heading p,

.lp-listing .lp-listing-bottom .lp-listing-cats a,

.lp-rating-num,

.lp-listing-location a,

.lp-activity .lp-activity-description,

.lp-activity .lp-activity-bottom .lp-activity-review-writer,

footer .copyrights,

.header-style2 .lp-top-bar a,

.header-style2 .lp-top-bar li:before,

.lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat,

.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-count,

.lp-header-search .price-filter ul li,

.lp-header-search-filters .header-filter-wrap,

.lp-header-search-filters .header-filter-wrap.select-filter select,

.lp-listing-title .lp-listing-name .lp-listing-name-tagline,

.lp-listing-title .lp-listing-title-rating .lp-rating-count,

.lp-listing-action-btns ul li a,

.lp-listing-desription,

.lp-listing-specs ul li,

.lp-listing-faq .faq-answer,

.lp-listing-review .lp-review-left .lp-review-count,

.lp-listing-review .lp-review-left .lp-review-count i,

.lp-listing-review .lp-review-right .lp-review-right-top time,

.lp-listing-review .lp-review-right .lp-review-right-content,

.lp-review-form-top .lp-review-stars span.stars-label,

.lp-review-form-top .lp-review-images label,

.listing-page-sidebar .lp-widget ul li,

.lp-widget-social-links a,

.lp-listing-timings .toggle-all-days,

.listing-page-sidebar .lp-widget ul li.lp-widget-social-links a,

.online-owner-widget .lp-online-social a,

.online-owner-widget .lp-online-detail p{

    color: #797979 !important;

}

.lp-header-search .lp-search-form-what{

    background-color: #eeeeee !important;

}

.lp-header-search.archive-search .lp-search-form-what{

    background-color: #fff !important;

}

.lp-header-search .lp-search-form-where,

.lp-listing-timings .toggle-all-days{

    background-color: #fff !important;

}

.red-tooltip + .tooltip.left .tooltip-arrow{

    border-left-color: #ff5a5f !important;

}

.lp-listings .lp-listing,

.lp-listing .lp-listing-top-thumb,

.lp-listings.list-style .lp-listings-inner-wrap,
.lp-listings-widget .lp-listing,

.lp-listing-action-btns ul li a,

.lp-listing-announcement .announcement-wrap,

.lp-listing-specs ul li,

.lp-listing-faqs .lp-listing-faq,

.lp-listing-reviews .lp-listing-review,

.lp-listing-review-form,

.lp-listing-review-form .lp-review-form-top,

.lp-listing-review-form textarea,

.listing-page-sidebar .lp-widget,

.lp-listing-timings div.lp-today-timing,

.lp-listing-timings .toggle-all-days,

.lp-category-boxed2 .lp-category-boxed2-inner,

.lp-category-boxed2 .lp-category-boxed2-inner-bottom,

.lp-listing .lp-listing-bottom,

.lp-discount-widget .lp-discount-top .lp-discount-thumb,

footer.style3,

.lp-listing-menu-items .lp-listing-menu-item,

.lp-listing-menu-top,

.lp-listing-menuu-wrap{

    border-color: #dedede !important;

}

.lp-listing-stars .lp-star-box,

.lp-listing-stars .lp-star-box i{



    border-color: #73cf42 !important;

}



/*.lp-listing-stars .lp-star-box:hover,*/



.lp-listing-review .lp-review-right .lp-rating-num,

.online-owner-widget .lp-online-detail h4 span:before{

    color: #fff !important;

    background-color: #73cf42 !important;

}

.lp-timing-status.status-open,

.lp-widget .lp-listing-price-range p span.currency-sign.green{

    color: #73cf42 !important;

}

.lp-listing .lp-listing-bottom h4 span,

.lp-activity h4 span,

.lp-listings-widget .lp-listing .lp-listing-detail h6 span{

    color: #ebac2c !important;

}

.lp-listings-widget .lp-listing .lp-listing-detail h6 span{

    /*background-color: #ebac2c !important;*/

}

.lp-listings .listing-slider .lp-listing .lp-listing-bottom,

.lp-listing-review-form,

.lp-listing-price-range,

.lp-discount-widget .lp-discount-bottom,

.lp-listings .listing-slider .lp-listing .lp-listing-bottom .lp-listing-bottom-inner{

    background-color: #fafafa !important;

}





.lp-header-search-filters .header-filter-wrap.select-filter select{

    background-color: #f4f4f4;

    border-color: #dedede !important;

}



.lp-listing-title .lp-listing-logo img{

    border-color: #dfdfdf !important;

}

.lp-listing-action-btns ul li a:hover{

    background-color: #f8f8f8 !important;

}



.lp-listing-review .lp-review-right-bottom .review-interesting,

.lp-listing-review .lp-review-right-bottom .review-interesting .react-count,

.lp-activity-description .review-interesting,

.lp-activity-description .review-interesting .react-count{

    color: #3498db !important;

}

.lp-listing-review .lp-review-right-bottom .review-interesting:hover,

.lp-activity-description .review-interesting:hover{

    color: #fff !important;

    background-color: #3498db !important;

}

.lp-listing-review .lp-review-right-bottom .review-interesting:hover .react-count,

.lp-activity-description .review-interesting:hover .react-count{

    color: #fff !important;

}

.lp-listing-review .lp-review-right-bottom .review-love,

.lp-listing-review .lp-review-right-bottom .review-love .react-count,

.lp-activity-description .review-love,

.lp-activity-description .review-love .react-count{

    color: #e67e22 !important;

}

.lp-listing-review .lp-review-right-bottom .review-love:hover,

.lp-activity-description .review-love:hover{

    color: #fff !important;

    background-color: #e67e22 !important;

}

.lp-listing-review .lp-review-right-bottom .review-love:hover .react-count,

.lp-activity-description .review-love:hover .react-count{

    color: #fff !important;

}

.lp-listing-review .lp-review-right-bottom .review-lol,

.lp-listing-review .lp-review-right-bottom .review-lol .react-count,

.lp-activity-description .review-lol,

.lp-activity-description .review-lol .react-count{

    color: #e74c3c !important;

}

.lp-listing-review .lp-review-right-bottom .review-lol:hover,

.lp-activity-description .review-lol:hover{

    color: #fff !important;

    background-color: #e74c3c !important;

}

.lp-listing-review .lp-review-right-bottom .review-lol:hover .react-count,

.lp-activity-description .review-lol:hover .react-count{

    color: #fff !important;

}

.lp-review-form-top .lp-review-images button,

a.browse-imgs,

.lp-listing-action-btns .smenu div,

.lp-listing-action-btns .smenu div a{

    background-color: #acacac;

}

.listing-page-sidebar .lp-widget ul li,

.lp-widget .lp-listing-price-range,

.lp-listing-additional-details h4,

.listing-page-sidebar .lp-widget #singlepostmap{

    border-color: #e3e3e3 !important;

}

.lp-widget .lp-listing-price-range p,

.online-owner-widget .lp-online-detail h4 span{

    color: #7f7f7f !important;

}

#claimform .claim-details ul li{

    background-color: #fff !important;

}



.lp-listing-action-btns ul li#lp-book-now > a{

    background-color: transparent; !important;

}



/*.lp-listings-widget .lp-listing .lp-listing-detail .lp-rating-avg,*/

/*.lp-listing-title .lp-listing-title-rating .lp-rating-avg{*/

/*background-color: #73cf42 !important;*/

/*}*/

/*new color css*/
.lp-coupns-btns:hover,
.lp-menu-step-two-btn button:hover,
.lp-menu-save-btns button:hover,
.lp-form-feild-btn:hover {
    background-color: #42a7df
}

.lp-menu-step-two-btn button span,
.lp-menu-step-two-btn button,
.lp-step-icon i,
.lp-choose-menu .lp-listing-selecter-drop a,
.lp-menu-container-outer .ui-tabs .ui-tabs-nav .ui-tabs-active a,.lp-header-togglesa .listing-view-layout-v2 ul li .active .fa{
    color: #42a7df
}

.lp-menu-step-two-btn button,.lp-header-togglesa .listing-view-layout-v2 ul li .active .fa{
    border: 1px solid #42a7df
}

.lp-form-feild-btn,
.lp-location-picker-outer .active {
    border-color: #42a7df
}

.lp-left-content-container a:hover,
.lp-form-feild-btn{
    color: #42a7df
}

.lp-review-reply-btn {
    background-color: #42a7df
}

.lp-add-new-btn,
.lp-let-start-btn,
.lp-location-picker-outer .active,.arrow-left,.arrow-right{
    background: #42a7df;
}
.lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat,
.lp-listings.grid-style .lp-listing-location a:hover,.lp-listings.grid-style .lp-listing-location:hover .fa{
    color: #42a7df !important;
}
.lp-sorting-filter-outer .active,.lp-sorting-filter-outer .active:hover{
    border-bottom:1px solid #42a7df!important;
    color: #42a7df !important;
}
.lp-sorting-filter-outer .active .fa,.lp-header-search-filters .more-filters{
    color: #42a7df !important;
}

.lp-listing-price-range .claim-area a.phone-number:hover,
.lp-listing-price-range #lp-report-listing a:hover{

    border-color: #41a6df;
    background-color: #41a6df;
}
/*new color css end*/
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/exclusive-addons-elementor-pro/assets/css/exad-pro-styles.min.css?ver=7.0.4 */
@media all {
.exad-animated-shape-image.style_1 img{-webkit-animation: clip-1 10s linear infinite alternate forwards;animation: clip-1 10s linear infinite alternate forwards}.exad-animated-shape-image.style_2 img{-webkit-animation: clip-2 10s linear infinite alternate forwards;animation: clip-2 10s linear infinite alternate forwards}.exad-animated-shape-image.style_3 img{-webkit-animation: clip-3 10s linear infinite alternate forwards;animation: clip-3 10s linear infinite alternate forwards}.exad-animated-shape-image.style_4 img{animation: clip-4 10s linear infinite alternate forwards;-webkit-animation: clip-4 10s linear infinite alternate forwards}.exad-animated-shape-image.style_5 img{animation: clip-5 10s linear infinite alternate forwards;-webkit-animation: clip-5 10s linear infinite alternate forwards}.exad-animated-shape-image.style_6 img{animation: clip-6 10s linear infinite alternate forwards;-webkit-animation: clip-6 10s linear infinite alternate forwards}.exad-animated-shape-image.style_7 img{animation: clip-7 10s linear infinite alternate forwards;-webkit-animation: clip-7 10s linear infinite alternate forwards}.exad-animated-shape-image.style_8 img{animation: clip-8 10s linear infinite alternate forwards;-webkit-animation: clip-8 10s linear infinite alternate forwards}@keyframes clip-4{from{border-radius: 25% 67% 73% 60% / 56% 28% 80% 14%}to{border-radius: 57% 34% 12% 45% / 15% 34% 23% 90%}}@keyframes clip-1{0%, 100%{border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%}14%{border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%}28%{border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%}42%{border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%}56%{border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%}70%{border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%}84%{border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%}}@keyframes clip-2{0%, 100%{border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;box-shadow: 15px 15px 50px rgba(0,0,0,0.2)}25%{border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%}50%{border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;box-shadow: -10px -5px 50px rgba(0,0,0,0.2)}75%{border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%}}@keyframes clip-3{0%, 100%{border-radius: 45% 55% 62% 38% / 53% 51% 49% 47%}40%{border-radius: 45% 55% 49% 51% / 36% 51% 49% 64%}60%{border-radius: 60% 40% 57% 43% / 47% 62% 38% 53%}80%{border-radius: 60% 40% 32% 68% / 38% 36% 64% 62%}}@keyframes clip-5{0%, 20%, 100%{border-radius: 52% 89% 62% 41% / 80% 77% 65%}40%{border-radius: 53% 85% 92% 95% / 89% 68% 90%}60%{border-radius: 92% 92% 72% 64% / 69% 50% 96%}80%{border-radius: 30% 40% 50% 60% / 59% 40% 66%}}@keyframes clip-6{0%, 100%{border-radius: 49% 42% 65% 75% / 47% 85% 70% 79%}20%{border-radius: 41% 90% 76% 99% / 98% 74% 50% 68%}40%{border-radius: 96% 93% 50% 79% / 92% 67% 42% 65%}60%{border-radius: 87% 90% 73% 81% / 42% 82% 73% 65%}80%{border-radius: 71% 80% 48% 63% / 93% 47% 69% 50%}}@keyframes clip-7{0%, 100%{border-radius: 54% 79% 51% 66% / 94% 74% 73% 85%}20%{border-radius: 69% 68% 51% 75% / 64% 77% 59% 76%}40%{border-radius: 91% 89% 96% 40% / 85% 89% 64% 62%}60%{border-radius: 91% 89% 96% 40% / 85% 89% 64% 62%}80%{border-radius: 76% 79% 95% 92% / 87% 75% 78% 68%}}@keyframes clip-8{0%, 100%{border-radius: 75% 61% 56% 78% / 86% 88% 96% 50%}25%{border-radius: 55% 84% 41% 67% / 86% 43% 60% 57%}50%{border-radius: 51% 48% 80% 68% / 55% 96% 67% 92%}75%{border-radius: 81% 90% 70% 64% / 86% 83% 76% 70%}90%{border-radius: 68% 48% 66% 85% / 93% 66% 96% 70%}}.exad-author-box.exad_author_left .exad-author-box-wrapper,.exad-author-box.exad_author_right .exad-author-box-wrapper{display: flex}.exad-author-box.exad_author_right .exad-author-box-wrapper{text-align: right}.exad-author-box.exad_author_right .exad-author-box-wrapper .exad-author-box-thumb{order: 2}.exad-author-box.exad_author_top.left .exad-author-box-wrapper{text-align: left}.exad-author-box.exad_author_top.center .exad-author-box-wrapper{text-align: center}.exad-author-box.exad_author_top.right .exad-author-box-wrapper{text-align: right}.exad-author-box.exad_author_top.left .exad-author-box-wrapper .exad-author-box-thumb{margin-right: auto}.exad-author-box.exad_author_top.center .exad-author-box-wrapper .exad-author-box-thumb{margin: 0 auto}.exad-author-box.exad_author_top.right .exad-author-box-wrapper .exad-author-box-thumb{margin-left: auto}.exad-author-box-wrapper .exad-author-box-thumb{overflow: hidden;background: #fff}.exad-author-box-wrapper .exad-author-box-thumb img{height: 100%;width: 100%;object-fit: cover;-o-object-fit: cover}.exad-author-box-wrapper .exad-author-box-content .exad-author-name{line-height: 1;text-decoration: none;display: block;transition: all .3s ease}.exad-author-box .exad-author-social{margin: 0;padding: 0}.exad-author-box .exad-author-social li{list-style: none;display: inline-block}.exad-author-box .exad-author-social li a{position: relative;display: block;transition: all .3s ease}.exad-author-box .exad-author-social li a svg,.exad-author-box .exad-author-social li a i{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);margin: 0}.exad-author-box-wrapper .exad-author-box-content .exad-author-email{line-height: 1}.exad-author-box-wrapper .exad-author-box-content .exad-author-email-text{display: inline-block;line-height: 1}.exad-author-box-wrapper .exad-author-box-content .exad-author-email-address{display: inline-block;line-height: 1;transition: all .3s ease}.exad-author-box-wrapper .exad-author-box-content .exad-author-website{line-height: 1}.exad-author-box-wrapper .exad-author-box-content .exad-author-website-text{display: inline-block;line-height: 1}.exad-author-box-wrapper .exad-author-box-content .exad-author-website-address{display: inline-block;line-height: 1;transition: all .3s ease}.exad-author-login{display: block;transition: all .3s ease}.exad-background-color-change-yes{position: relative}.exad-background-animation-canvas{position: absolute;top: 0;left: 0;bottom: 0;right: 0;height: 100%;width: 100%}.exad-blob-maker.yes{position: absolute;z-index: -1}.exad-blob-maker .exad-blob-shape.exad-blob-shape-current-position-yes{position: absolute;z-index: -1}.exad-blob-maker{display: flex;flex-wrap: wrap}.exad-blob-maker .exad-blob-shape img{height: 100%;width: 100%}.exad-breadcrumb-wrapper{display: flex}ul.exad-breadcrumb-items{margin: 0;padding: 0;list-style: none;display: block}ul.exad-breadcrumb-items li{display: inline-block;position: relative;margin: 0}ul.exad-breadcrumb-items li.exad-breadcrumb-item a{display: inline-block}ul.exad-breadcrumb-items li.exad-breadcrumb-item .exad-arrow{position: absolute;content: '';right: 0;top: 6px;-webkit-transform: translate(50%,-50%);transform: translate(50%,-50%);top: calc( 50% 0px );z-index: 1;text-align: center}ul.exad-breadcrumb-items li.exad-breadcrumb-item .exad-button-icon-wrapper svg{height:16px}.exad-mailchimp-submit-btn .exad-button-icon-wrapper,.exad-mailchimp-subscribe-btn-icon,.exad-businesshours-container .business-date{display: flex;flex-wrap: wrap;align-items: center}.exad-businesshours-container .business-date span.single-business-date{flex: 1;-webkit-box-flex: 1;-webkit-flex-grow: 1;-moz-box-flex: 1;-ms-flex-positive: 1;-webkit-flex-basis: 0;-ms-flex-preferred-size: 0;flex-basis: 0}.exad-businesshours-container .business-date span.single-business-time{-webkit-box-flex: 1;-webkit-flex-grow: 1;-moz-box-flex: 1;-ms-flex-positive: 1;flex-grow: 1;-webkit-flex-basis: 0;-ms-flex-preferred-size: 0;flex-basis: 0;padding-left: 15px}@keyframes chartjs-render-animation{from{opacity: .99}to{opacity: 1}}.chartjs-render-monitor{animation: chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position: absolute;direction: ltr;left: 0;top: 0;right: 0;bottom: 0;overflow: hidden;pointer-events: none;visibility: hidden;z-index: -1}.chartjs-size-monitor-expand>div{position: absolute;width: 1000000px;height: 1000000px;left: 0;top: 0}.chartjs-size-monitor-shrink>div{position: absolute;width: 200%;height: 200%;left: 0;top: 0}.exad-carousel-item .exad-carousel-nav-prev,.exad-carousel-item .exad-carousel-nav-next{position: absolute;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);height: 60px;width: 60px;background: transparent;border-radius: 50%;text-align: center;cursor: pointer;transition: all .3s ease;z-index: 1}.exad-carousel-item .exad-carousel-nav-prev i,.exad-carousel-item .exad-carousel-nav-next i{top: 50%;position: absolute;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 20px}.exad-carousel-item .exad-carousel-nav-prev:hover,.exad-carousel-item .exad-carousel-nav-next:hover{color: #0a1724}.exad-carousel-item .exad-carousel-nav-prev{left: -70px}.exad-carousel-item .exad-carousel-nav-next{right: -70px}.exad-carousel-item .slick-dots{position: relative;width: auto;display: table}.exad-carousel-item .slick-dots li{list-style: none;display: inline-block;height: auto;width: auto}.exad-carousel-item .slick-dots li:not(:last-child){margin-right: 10px}.exad-carousel-item .slick-dots li button{width: 10px;height: 10px;outline: 0;cursor: pointer;border: none;border-radius: 50%;background-color: #8a8d91;-webkit-text-fill-color: transparent;transition: .3s ease;padding: 0;align-items: center;display: flex}.exad-carousel-item.exad-team-carousel-dots-left .slick-dots{margin-right: auto}.exad-carousel-item.exad-team-carousel-dots-center .slick-dots{margin-left: auto;margin-right: auto}.exad-carousel-item.exad-team-carousel-dots-right .slick-dots{margin-left: auto}.exad-carousel-item.exad-testimonial-carousel-dots-left .slick-dots{margin-right: auto}.exad-carousel-item.exad-testimonial-carousel-dots-center .slick-dots{margin-left: auto;margin-right: auto}.exad-carousel-item.exad-testimonial-carousel-dots-right .slick-dots{margin-left: auto}.exad-instagram-row-wrapper.exad-instagram-carousel-dots-left .slick-dots{margin-right: auto}.exad-instagram-row-wrapper.exad-instagram-carousel-dots-center .slick-dots{margin-left: auto;margin-right: auto}.exad-instagram-row-wrapper.exad-instagram-carousel-dots-right .slick-dots{margin-left: auto}.exad-woo-product-cat-items.exad-woo-product-cat-carousel-dots-left .slick-dots{margin-right: auto}.exad-woo-product-cat-items.exad-woo-product-cat-carousel-dots-center .slick-dots{margin-left: auto;margin-right: auto}.exad-woo-product-cat-items.exad-woo-product-cat-carousel-dots-right .slick-dots{margin-left: auto}.exad-post-carousel.exad-post-carousel-dots-left .slick-dots{margin-right: auto}.exad-post-carousel.exad-post-carousel-dots-center .slick-dots{margin-left: auto;margin-right: auto}.exad-post-carousel.exad-post-carousel-dots-right .slick-dots{margin-left: auto}.exad-element-row-grid{display: flex;flex-wrap: wrap;margin: 0 -10px -20px}.exad-slider-gap-default{margin: 0 -10px}.exad-element-row-grid .exad-col-grid{padding: 0 10px 20px}.exad-slider-gap-default .exad-col-slider{margin: 0 10px}.exad-element-row-grid.exad-col-1 .exad-col-grid{flex: 0 0 100%;max-width: 100%}.exad-element-row-grid.exad-col-2 .exad-col-grid{flex: 0 0 50%;max-width: 50%}.exad-element-row-grid.exad-col-3 .exad-col-grid{flex: 0 0 33.333333%;max-width: 33.333333%}.exad-element-row-grid.exad-col-4 .exad-col-grid{flex: 0 0 25%;max-width: 25%}.exad-element-row-grid.exad-col-5 .exad-col-grid{flex: 0 0 20%;max-width: 20%}.exad-element-row-grid.exad-col-6 .exad-col-grid{flex: 0 0 16.66666%;max-width: 16.666666%}@media (max-width: 767px){.exad-element-row-grid.exad-col-2 .exad-col-grid,.exad-element-row-grid.exad-col-3 .exad-col-grid,.exad-element-row-grid.exad-col-4 .exad-col-grid,.exad-element-row-grid.exad-col-5 .exad-col-grid,.exad-element-row-grid.exad-col-6 .exad-col-grid{flex: 0 0 100%;max-width: 100%}.exad-element-row-grid .exad-col-grid{padding: 10px 10px}}.exad-post-carousel.exad-carousel-item .slick-dots{position: absolute;padding: 0;left: 50%;transform: translateX(-50%);bottom: 0;margin: 0}.exad-row-wrapper .exad-post-grid-container .exad-post-grid-thumbnail{position: relative}.exad-row-wrapper .exad-post-grid-container .exad-post-grid-thumbnail::before{position: absolute;content: '';top: 0;left: 0;height: 100%;width: 100%}.slick-slide:focus{outline: 0}.exad-post-carousel .slick-slide a:focus{outline: 0}tr.table-heading th{position: relative}.exad-table-container table{overflow: inherit}@media( max-width: 768px ){.exad-table-container{overflow-x: scroll}}.exad-main-table thead tr th{position: relative}.exad-main-table{border-spacing: 0;border-collapse: initial}.exad-table-container tr.table-heading td span.exad-table-heading{font-weight: 600;font-size: 20px}.exad-table-ribbon-content span{color: #ffffff;background-color: #46b812;padding: 4px 0 4px 0;text-align: center;font-size: 14px;font-weight: 800}.exad-table-ribbon-content.exad-table-ribbon-top{transform: translateY(-100%);position: absolute;width: 100%;top: 0;left: 0}.exad-table-ribbon-content.exad-table-ribbon-top span{width: 100%;display: block}.exad-table-ribbon-content.exad-table-ribbon-left{transform: rotate(0deg);left: 0px;right: auto}.exad-table-ribbon-content.exad-table-ribbon-left{position: absolute;top: 0px;width: 100px;height: 100px;z-index: 998;overflow: hidden}.exad-table-ribbon-content.exad-table-ribbon-left .exad-table-ribbon-wrapper{position: absolute;text-align: center;left: 0px;top: 0px;width: 200%;transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top: 35px;line-height: 2}.exad-table-ribbon-content.exad-table-ribbon-right{-webkit-transform: rotate(90);-ms-transform: rotate(90);transform: rotate(90deg);left: auto;right: 0;position: absolute;top: 0;width: 100px;overflow: hidden;height: 100px;z-index: 998}.exad-table-ribbon-content.exad-table-ribbon-right .exad-table-ribbon-wrapper{margin-top: 30px;transform: translateY(-50%) translateX(-50%) translateX(30px) rotate(-45deg);position: absolute;text-align: center;left: 0;top: 0;width: 200%;-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);-ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top: 30px;line-height: 2}.exad-td-tooltip{display: flex;justify-content: flex-end;margin: 0;position: relative;margin-left: auto}.eicon-info-circle{position: relative}.exad-td-tooltip .exad-tooltip-text{visibility: hidden;min-width: 120px;background-color: #000;color: #fff;text-align: center;border-radius: 6px;padding: 5px 0;position: absolute;z-index: 1;bottom: 137%;left: calc( 50% - 60px );transition: .3s}.exad-td-tooltip .exad-tooltip-text::before{content: '';border-width: 5px 5px 0 5px;border-color: #fff;border-left-color: transparent;border-right-color: transparent;border-bottom-color: transparent;border-top-color: #000000;bottom: -10px;width: 0;height: 0;border-style: solid;position: absolute;margin: 5px;left: 42%}.exad-td-tooltip:hover .exad-tooltip-text{visibility: visible}.exad-heading-pricing-duration,.exad-heading-pricing-wrapper{display: block}.exad-heading-regular-price{margin-right: 10px;text-decoration: line-through}.exad-table-container tr.table-heading td{position: relative}.exad-heading-current-price{font-size: 28px}.exad-content-switcher-toggle-switch-label{position: relative;display: inline-block;width: 60px;height: 34px}.exad-content-switcher-toggle-switch-label input{opacity: 0;width: 0;height: 0}.exad-content-switcher-toggle-switch-slider{position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;-webkit-transition: .4s;transition: .4s;display: block;border-style: solid}.exad-content-switcher-toggle-switch-slider:before{position: absolute;content: "";height: 26px;width: 26px;left: 0;top: 50%;transform: translateY(-50%);background-color: white;-webkit-transition: .4s;transition: .4s}input:checked .exad-content-switcher-toggle-switch-slider{background-color: #2196F3}input:focus .exad-content-switcher-toggle-switch-slider{box-shadow: 0 0 1px #2196F3}input:checked .exad-content-switcher-toggle-switch-slider:before{-webkit-transform: translate(34px, -50%);-ms-transform: translate(34px, -50%);transform: translate(34px, -50%)}.exad-content-switcher-toggle-inner{display: flex;align-items: center;flex-direction: row;padding: 30px 0}.exad-content-switcher-toggle.exad_switecher_left{justify-content: flex-start;display: flex}.exad-content-switcher-toggle.exad_switecher_center{justify-content: center;display: flex}.exad-content-switcher-toggle.exad_switecher_right{justify-content: flex-end;display: flex}.exad-content-switcher-toggle.exad_switecher_justify{display: block}.exad-content-switcher-toggle.exad_switecher_justify .exad-content-switcher-toggle-inner{justify-content: center}.exad-content-switcher-toggle-label-1{cursor: pointer}.exad-content-switcher-toggle-label-2{cursor: pointer}.cc-banner.cc-bottom{left: 0;right: 0;bottom: 0}.cc-window{transition: all 0.3s ease}.cc-window.cc-invisible{opacity: 0;transition: all 0.3s ease}.cc-banner.cc-top{left: 0;right: 0;top: 0}.cc-window.cc-bottom.cc-left{left: 10px;bottom: 10px}.cc-window.cc-left.cc-center{left: 10px;top: 50%;transform: translateY(-50%)}.cc-window.cc-right.cc-center{right: 10px;top: 50%;transform: translateY(-50%)}.cc-window.cc-banner.cc-bottom.cc-right,.cc-window.cc-bottom.cc-right{right: 10px;bottom: 10px;left: inherit}.cc-window.cc-bottom.cc-left,.cc-window.cc-bottom.cc-right,.cc-window.cc-right.cc-center,.cc-window.cc-left.cc-center{display: flex;flex-direction: column}.cc-window{position: fixed;overflow: hidden;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;z-index: 999}.cc-window.cc-banner{-ms-flex-align: center;align-items: center}.cc-banner .cc-message{-ms-flex: 1;flex: 1}.cc-compliance{display: flex}body .cc-btn.cc-dismiss{display: inline-flex}body .cc-btn.cc-dismiss:hover{cursor: pointer}body .cc-window .cc-link{font-weight: 600;text-decoration: underline}body .cc-bottom.cc-left .cc-btn.cc-dismiss,body .cc-bottom.cc-right .cc-btn.cc-dismiss,body .cc-left.cc-center .cc-btn.cc-dismiss,body .cc-right.cc-center .cc-btn.cc-dismiss{margin-top: 20px}@media (max-width: 767px){.cc-window.cc-banner{flex-direction: column}body .cc-window.cc-banner .cc-btn.cc-dismiss{margin-top: 20px}}.exad-counter-item.exad-counter-left{text-align: left}.exad-counter-item.exad-counter-center{text-align: center}.exad-counter-data.yes{text-align: center}.exad-counter-item.exad-counter-left .exad-counter-data.yes{margin-right: auto}.exad-counter-item.exad-counter-center .exad-counter-data.yes{margin: 0 auto}.exad-counter-item.exad-counter-right .exad-counter-data.yes{margin-left: auto}.exad-counter-item.exad-counter-right{text-align: right}.exad-counter-wrapper .exad-counter-item .exad-counter-icon{line-height: 0;display: inline-block}.exad-counter-wrapper .exad-counter-item .exad-counter-data{line-height: 1}.exad-counter-wrapper .exad-counter-item .exad-counter-content h4{margin: 0}.exad-counter-item.layout-3,.exad-counter-item.layout-4{display: flex}.exad-counter-item.layout-4 .exad-counter-icon{order: 2}.exad-counter-item.layout-4 .exad-counter-content-wrapper{order: 1}.exad-counter-icon.yes{position: relative}.exad-counter-icon.yes i{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-counter-icon.yes{position: relative}.exad-counter-icon.yes svg{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-demo-previewer-image{height: 200px;overflow: hidden;position: relative}.exad-demo-previewer-cover-image{position: absolute;top: 0;left: 0;height: 100% !important;width: 100%;object-fit: cover;z-index: 1;transition: .6s ease;opacity: 1}.exad-demo-previewer-image .exad-demo-previewer-scroll-image{width: 100%;overflow: hidden;object-fit: cover;-o-object-fit: cover;transition: transform 2s ease-in-out}.exad-demo-previewer-image:hover .exad-demo-previewer-scroll-image{transform: translateY(calc(-100% 200px));transition: transform 7s ease-in-out}.exad-demo-previewer-image:hover .exad-demo-previewer-cover-image{transform: translateY(-100%)}.exad-demo-previewer-element{display: flex;flex-wrap: wrap}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-1{width: 100%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-2{width: 50%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-3{width: 33.3333333333333%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-4{width: 25%}.exad-demo-previewer-menu{display: flex}.exad-demo-previewer .exad-demo-previewer-menu button.filter-item{border: none;transition: all .3s ease;text-transform: capitalize;background: transparent}.exad-demo-previewer .exad-demo-previewer-menu button.filter-item.current:focus,.exad-demo-previewer .exad-demo-previewer-menu button.filter-item:focus{outline: 0;border: none}.exad-demo-previewer-item-content-inner{display: flex;align-items: center;justify-content: space-between}.exad-demo-previewer-item-content-inner.yes .exad-demo-previewer-item-content{width: 60%}.exad-demo-previewer-item-content{width: 100%}.exad-demo-previewer-item-content-title a{display: block}.exad-demo-previewer-item-content-button{display: inline-block;transition: all .3s ease;text-decoration: none;line-height: 1}.exad-demo-previewer-item-date{display: flex;align-items: center;justify-content: space-between}.exad-demo-previewer-updated_date p{margin: 0}.exad-demo-previewer-tag ul{margin: 0;padding: 0}.hidden{visibility:hidden;width:0px!important;height:0px!important;margin:0px!important;padding:0px!important}#exad-demo-previewer-load-more-button{display: inline-block;transition: all .3s ease}@media( max-width: 768px ){.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-1{width: 100%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-2{width: 50%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-3{width: 50%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-4{width: 50%}}@media( max-width: 575px ){.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-1{width: 100%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-2{width: 100%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-3{width: 100%}.exad-demo-previewer-element .exad-demo-previewer-item.exad-col-4{width: 100%}.exad-demo-previewer .exad-demo-previewer-menu{display: block}.exad-demo-previewer .exad-demo-previewer-menu button.filter-item{display: block;width: 100%;text-align: left}.exad-demo-previewer.exad-demo-previewer-layout-2, .exad-demo-previewer.exad-demo-previewer-layout-3{display: block !important}.exad-demo-previewer.exad-demo-previewer-layout-1{display: block !important}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-menu-wrapper,.exad-demo-previewer.exad-demo-previewer-layout-3 .exad-demo-previewer-menu-wrapper{width: 100% !important}.exad-demo-previewer.exad-demo-previewer-layout-1 .exad-demo-previewer-menu-wrapper{width: 100% !important;display: block !important}.exad-demo-previewer.exad-demo-previewer-layout-1 .exad-demo-previewer-menu{width: 100% !important}.exad-demo-previewer.exad-demo-previewer-layout-1 .exad-demo-previewer-search{width: 100% !important}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-element,.exad-demo-previewer.exad-demo-previewer-layout-3 .exad-demo-previewer-element{width: 100% !important}.exad-demo-previewer.exad-demo-previewer-layout-1 .exad-demo-previewer-element{width: 100% !important}}.exad-demo-previewer.exad-demo-previewer-layout-2, .exad-demo-previewer.exad-demo-previewer-layout-3{display: flex}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-menu-wrapper{width: 20%;display: flex;flex-direction: column}.exad-demo-previewer.exad-demo-previewer-layout-3 .exad-demo-previewer-menu-wrapper{width: 20%;display: flex;flex-direction: column;order: 2}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-menu-wrapper .exad-demo-previewer-menu{width: 100%;display: block}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-menu button.filter-item{width: 100%;display: block}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-element{width: 80%}.exad-demo-previewer.exad-demo-previewer-layout-3 .exad-demo-previewer-menu-wrapper .exad-demo-previewer-menu{width: 100%;display: block}.exad-demo-previewer.exad-demo-previewer-layout-3 .exad-demo-previewer-menu button.filter-item{width: 100%;display: block}.exad-demo-previewer.exad-demo-previewer-layout-3 .exad-demo-previewer-element{width: 80%}.exad-demo-previewer.exad-demo-previewer-layout-1 .exad-demo-previewer-menu-wrapper{display: flex;justify-content: space-between;align-items: baseline}.exad-demo-previewer-search{position: relative}.exad-demo-previewer-search #exad-demo-previewer-search-input{width: 100%;height: 100%;background: transparent;border: none;padding: 0}.exad-demo-previewer.exad-demo-previewer-layout-2 .exad-demo-previewer-search{width: 100%}.exad-demo-previewer-search #exad-demo-previewer-search-input:focus{outline: 0}.exad-demo-previewer-search-icon{position: absolute;right: 20px;top: 50%;transform: translateY(-50%)}.exad-demo-previewer-dropdown-filter-wrapper{display: block;width: 200px;position: relative;user-select: none}.exad-demo-previewer-dropdown-filter-shape{position: absolute;top: 50%;right: 20px;transform: translateY(-50%);z-index: 12;pointer-events: none}.exad-demo-previewer-dropdown-filter-wrapper ul{margin: 0;padding: 0}.exad-demo-previewer-dropdown-filter-wrapper ul li{list-style: none}.exad-demo-previewer-dropdown-filter-wrapper ul li button{padding: 0;text-align: left;display: block;color: #000;background: transparent}.exad-demo-previewer-dropdown-filter-wrapper .exad-demo-previewer-dropdown-filter-default{background: #fff;border-radius: 5px;position: relative;cursor: pointer}.exad-demo-previewer-dropdown-filter-wrapper .exad-demo-previewer-dropdown-filter-default li{padding: 10px 20px}.exad-demo-previewer-dropdown-filter-wrapper .exad-demo-previewer-dropdown-filter-select{position: absolute;top: 40px;left: 0;width: 100%;background: #fff;border-radius: 5px;z-index: 111;display: none;overflow: hidden}.exad-demo-previewer-dropdown-filter-wrapper .exad-demo-previewer-dropdown-filter-select li{padding: 10px 20px;cursor: pointer;transition: all .3s ease}.exad-demo-previewer-dropdown-filter-wrapper.active .exad-demo-previewer-dropdown-filter-select{display: block}.exad-demo-previewer-menu-wrapper.search-control-nav-dropdown-filter .exad-demo-previewer-search{order: -1}.exad-demo-previewer-menu-wrapper.dropdown-filter-control-nav-search .exad-demo-previewer-menu.exad-demo-previewer-dropdown-control-wrapper{order: 1}.exad-demo-previewer-menu-wrapper.dropdown-filter-control-nav-search .exad-demo-previewer-search{order: 1}.exad-demo-previewer-label-text{display: block}.exad-demo-previewer-item .exad-demo-previewer-tag ul li{position: relative;list-style: none;display: inline-block}.exad-demo-previewer-item .exad-demo-previewer-tag ul li:not(:last-child)::before{position: absolute;content: "";top: 50%;right: 0;transform: translateY(-50%)}.exad-gravity-form.form-align-center, .exad-gravity-form.button-align-center input.gform_button.button{margin-left: auto !important;margin-right: auto !important;display: block;float: none}.exad-gravity-form.form-align-left, .exad-gravity-form.button-align-left input.gform_button.button{float: left;width: auto}.exad-gravity-form.form-align-right, .exad-gravity-form.button-align-right input.gform_button.button{float: right;width: auto}.exad-gravity-form.button-align-center #field_submit{display: flex;justify-content: center}.exad-gravity-form.button-align-left #field_submit{display: flex;justify-content: flex-start}.exad-gravity-form.button-align-right #field_submit{display: flex;justify-content: flex-end}.exad-gravity-form.placeholder-no textarea::placeholder,.exad-gravity-form.placeholder-no input[type=text]::placeholder,.exad-gravity-form.placeholder-no input[type=search]::placeholder,.exad-gravity-form.placeholder-no input[type=number]::placeholder,.exad-gravity-form.placeholder-no input[type=tel]::placeholder,.exad-gravity-form.placeholder-no input[type=url]::placeholder,.exad-gravity-form.placeholder-no input[type=password]::placeholder,.exad-gravity-form.placeholder-no input[type=email]::placeholder{opacity:0;visibility:hidden}.exad-gravity-form .gform_wrapper textarea:focus,.exad-gravity-form .gform_wrapper input[type=text]:focus,.exad-gravity-form .gform_wrapper input[type=search]:focus,.exad-gravity-form .gform_wrapper input[type=number]:focus,.exad-gravity-form .gform_wrapper input[type=tel]:focus,.exad-gravity-form .gform_wrapper input[type=url]:focus,.exad-gravity-form .gform_wrapper input[type=password]:focus,.exad-gravity-form .gform_wrapper select:focus,.exad-gravity-form .gform_wrapper input[type=email]:focus{outline: none}.exad-gravity-form.label-no .gform_wrapper .top_label .gfield_label, .exad-gravity-form.label-no .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label{display: none}.exad-gravity-form.show-error-no .validation_message{display: none !important}.exad-gravity-form.show-valid-no .validation_error{display: none !important}.exad-gravity-form.field-desc-no .gfield_description{display: none !important}.exad-gravity-form .gform_wrapper ul.gfield_checkbox li input[type=checkbox], .exad-gravity-form .gform_wrapper ul.gfield_radio li input[type=radio]{-webkit-appearance: none;-moz-appearance: none;border-style: solid;border-width: 0;outline: none;min-width: 1px;width: 15px !important;height: 15px !important;background: #ddd;padding: 3px}.exad-gravity-form input[type=radio]{border-radius: 50%}.exad-gravity-form input[type=checkbox]:checked, .exad-gravity-form input[type=radio]:checked{position: relative}.exad-gravity-form input[type=checkbox]:checked:before, .exad-gravity-form input[type=radio]:checked:before{background: #999;-webkit-transition: all 0.25s linear 0s;transition: all 0.25s linear 0s}.exad-gravity-form input[type=checkbox]:before, .exad-gravity-form input[type=radio]:before{content: "";width: 100%;height: 100%;padding: 0;margin: 0;display: block}.exad-gravity-form input[type=radio]:before{border-radius: 50%}.exad-gravity-form .gform_wrapper select{height: inherit;line-height: inherit}.theme-twentytwenty .exad-gravity-form .gform_wrapper select{font-family: sans-serif}.theme-twentytwenty .exad-gravity-form .gform_wrapper input[type=submit].button:hover{text-decoration: none}.exad-gravity-form .gform_wrapper .gform_footer{padding: 0}.exad-gravity-form.button-align-center .gform_footer{display: flex;justify-content: center}.exad-gravity-form.button-align-left .gform_footer{display: flex;justify-content: flex-start}.exad-gravity-form.button-align-right .gform_footer{display: flex;justify-content: flex-end}.exad-gravity-form .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],.exad-gravity-form .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select{margin: 0}.exad-gravity-form .gform_wrapper ul li.gfield{margin: 0}.exad-gravity-form .gform_wrapper .top_label div.ginput_container{margin: 0}.exad-gravity-form .gform_wrapper .exad-gform-select select{width: 100%}.exad-gravity-form .gform_wrapper .exad-gform-select select{-moz-appearance: none;-webkit-appearance: none;appearance: none}.exad-gravity-form .gform_wrapper .exad-gform-select{position: relative;display: inline-table}.exad-gravity-form .gform_wrapper .exad-gform-select::before{position: absolute;content: '>';top: 50%;right: 15px;transform: translateY(-50%) rotate(90deg);font-family: "Consolas", monospace !important;font-size: 20px}.exad-gravity-form .gform_wrapper .exad-gform-select select::-ms-expand{display: none}.exad-gravity-form .gform_wrapper .exad-gform-select{display: block}.exad-iconbox{display: block;transition: all .3s ease;position: relative}.exad-iconbox.exad-iconbox-left{text-align: left}.exad-iconbox.exad-iconbox-left .exad-iconbox-icon.yes{margin-right: auto}.exad-iconbox.exad-iconbox-center{text-align: center}.exad-iconbox.exad-iconbox-center .exad-iconbox-icon.yes{margin-left: auto;margin-right: auto}.exad-iconbox.exad-iconbox-right{text-align: right}.exad-iconbox.exad-iconbox-right .exad-iconbox-icon.yes{margin-left: auto}.exad-iconbox-icon{display: block;transition: all .3s ease}.exad-iconbox-icon i{transition: all .3s ease}.exad-iconbox-icon.yes{position: relative;transition: all .3s ease}.exad-iconbox-icon.yes i, .exad-iconbox-icon.yes svg{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);transition: all .3s ease}.exad-iconbox-title{margin: 0;transition: all .3s ease}.exad-iconbox-description{margin: 0;transition: all .3s ease}.exad-iconbox-label{position: absolute;top: 0;left: 0;line-height: 1}.exad-iconbox.exad-iconbox-icon-position-left,.exad-iconbox.exad-iconbox-icon-position-right{display: flex;align-items: center}.exad-iconbox.exad-iconbox-icon-position-right{flex-direction: row-reverse}.exad-image-carousel-item img{height: 100%;width: 100%;object-fit: cover;-o-object-fit: cover;transition: all .3s ease}.exad-image-carousel-item{transition: all .3s ease;overflow: hidden}.exad-image-carousel-item:focus{outline: 0}.exad-image-carousel-slider{position: relative}.exad-image-carousel-prev, .exad-image-carousel-next{position: absolute;z-index: 1;transition: all .3s ease;transform: translateY(-50%);cursor: pointer}.exad-image-carousel-prev i, .exad-image-carousel-next i{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-image-carousel-slider .slick-dots{position: relative;width: auto;display: flex;align-items: center;padding: 0;bottom: 0;margin: 0}.exad-image-carousel-slider.exad-image-carousel-dot-bullet .slick-dots{position: absolute;transform: translateX(-50%)}.exad-image-carousel-slider.exad-image-carousel-dots-left .slick-dots,.exad-image-carousel-slider.exad-image-carousel-dots-image-left .slick-dots{justify-content: flex-start}.exad-image-carousel-slider.exad-image-carousel-dots-center .slick-dots,.exad-image-carousel-slider.exad-image-carousel-dots-image-center .slick-dots{justify-content: center}.exad-image-carousel-slider.exad-image-carousel-dots-right .slick-dots,.exad-image-carousel-slider.exad-image-carousel-dots-image-right .slick-dots{justify-content: flex-end}.exad-image-carousel-slider.exad-image-carousel-dots-image-justify .slick-dots{display: flex;justify-content: space-between;width: auto}.exad-image-carousel-slider.exad-image-carousel-dots-image-justify .slick-dots li{width: auto}.exad-image-carousel-slider .slick-dots li{list-style: none;display: inline-table;cursor: pointer;transition: all .3s ease;margin: 0;height: auto;width: auto}.exad-image-carousel-slider .slick-dots li:not(:last-child){margin-right: 10px}.exad-image-carousel-slider .slick-dots li button{outline: 0;cursor: pointer;border: none;border-radius: 50%;-webkit-text-fill-color: transparent;transition: .3s ease;padding: 0;align-items: center;display: flex}.exad-image-carousel-slider .slick-dots li a{display: block;overflow: hidden}.exad-image-carousel-slider .slick-dots li a img{height: 100%;width: 100%;object-fit: cover;-o-object-fit: cover}.exad-image-carousel-slider.style-2 .slick-slide{-webkit-perspective: 1000px;perspective: 1000px}.exad-image-carousel-slider.style-2 .exad-image-carousel-item.slick-slide.slick-active:nth-child(0) img{transform: rotateY(30deg) scale(0.9)}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-left .exad-image-carousel-slider,.exad-image-carousel-wrapper.exad-image-carousel-dots-image-right .exad-image-carousel-slider{display: flex}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-right .exad-image-carousel-slider .slick-list{width: 80%}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-right .exad-image-carousel-slider .slick-dots{width: 20%;flex-direction: column;overflow-y: scroll}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-right .exad-image-carousel-slider .slick-dots::-webkit-scrollbar{display: none}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-left .exad-image-carousel-slider .slick-list{width: 80%;order: 2}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-left .exad-image-carousel-slider .slick-dots{width: 20%;flex-direction: column;order: 1;overflow-y: scroll;-ms-overflow-style: none;scrollbar-width: none}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-left .exad-image-carousel-slider .slick-dots::-webkit-scrollbar{display: none}@media (max-width: 768px){.exad-image-carousel-wrapper.exad-image-carousel-dots-image-right .exad-image-carousel-slider .slick-list{width: 100% !important}.exad-image-carousel-prev, .exad-image-carousel-next{display: none}.exad-image-carousel-wrapper.exad-image-carousel-dots-image-left .exad-image-carousel-slider .slick-list{width: 100%}}.exad-hotspot.exad-hotspot-slack-animation .exad-hotspot-item .exad-hotspot-dot::before{position: absolute;top: 50%;left: 50%;height: 100%;width: 100%;transform: translate(-50%, -50%);content: "";display: block;box-shadow: inset 0 0 4px 2px rgba(255,255,255, .2), 0 0 4px 2px rgba(255,255,255, .2);animation: slack 600ms linear infinite;animation-direction: alternate;z-index: -1;opacity: .8}.exad-hotspot.exad-hotspot-egg-animation .exad-hotspot-item .exad-hotspot-dot::before{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%) scale(1.3);height: 100%;width: 100%;content: "";display: block;animation: egg 600ms linear infinite;animation-direction: alternate}.exad-hotspot.exad-hotspot-glow-animation .exad-hotspot-item .exad-hotspot-dot::before{position: absolute;content: '';height: 100%;width: 100%;top: 0;left: 0;background: #fff;opacity: 0;z-index: 1;-webkit-animation: pulse-one 3s infinite;animation: pulse-one 3s infinite;-webkit-transform: scale(1);transform: scale(1);z-index: -1}.exad-hotspot.exad-hotspot-glowing-border .exad-hotspot-dot-icon{position: relative}.exad-hotspot.exad-hotspot-glowing-border .exad-hotspot-dot-icon::before{position: absolute;content: '';top: 50%;left: 50%;transform-origin: center center;transform: translate(-50%, -50%);height: 100%;width: 100%;opacity: .5;-webkit-animation: hotspot_pulse 2s infinite;animation: hotspot_pulse 2s infinite;transition: all .3s ease}.exad-hotspot.exad-hotspot-glowing-border .exad-hotspot-dot-icon::after{position: absolute;content: '';top: 50%;left: 50%;height: 70%;width: 70%;transform-origin: center center;transform: translate(-50%, -50%);opacity: .5;-webkit-animation: hotspot_pulse 2s infinite;animation: hotspot_pulse 2s infinite;transition: all .3s ease}.exad-hotspot.exad-hotspot-moving-animation .exad-hotspot-dot .exad-hotspot-dot-icon i{font-size: 36px;-webkit-transform-origin: left top;transform-origin: left top;transition: -webkit-transform 3s;transition: transform 3s;transition: transform 3s, -webkit-transform 3s;-webkit-animation: tag-rotate 4s infinite;animation: tag-rotate 4s infinite}.exad-hotspot .exad-hotspot-item .exad-hotspot-dot{position: absolute;z-index: 5;cursor: pointer;transition: all .3s ease}.exad-hotspot .exad-hotspot-item .exad-hotspot-dot-icon{position: relative}.exad-hotspot .exad-hotspot-item .exad-hotspot-dot-icon i, .exad-hotspot .exad-hotspot-item .exad-hotspot-dot-icon svg{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);z-index: 6}.exad-hotspot .exad-hotspot-item .exad-hotspot-dot-icon span{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);z-index: 6}.exad-hotspot.exad-hotspot-hover-scale .exad-hotspot-item .exad-hotspot-dot:hover{-webkit-transform: scale(1.5);transform: scale(1.5)}.exad-hotspot.exad-hotspot-tooltip-indicator-yes .exad-hotspot-item .exad-hotspot-tooltip::before{position: absolute;content: '';width: 0;height: 0;border-style: solid;border-width: 10px 7.5px 0 7.5px;border-color: #fff transparent transparent transparent;bottom: -8px;left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%)}.exad-hotspot.style-2.exad-hotspot-tooltip-indicator-yes .exad-hotspot-item .exad-hotspot-tooltip::before{position: absolute;content: '';width: 0;height: 0;border-style: solid;border-width: 7.5px 8px 7.5px 0;border-color: transparent #007bff transparent transparent;top: 19px;left: -4px}.exad-hotspot .exad-hotspot-item .exad-hotspot-tooltip .exad-hotspot-tooltip-content{margin: 0}.exad-hotspot .exad-hotspot-image{overflow: hidden}.exad-hotspot .exad-hotspot-image img{width: 100%;height: auto;object-fit: cover;-o-object-fit: cover}.exad-hotspot .exad-hotspot-image{position: relative}.exad-hotspot .exad-hotspot-image::before{position: absolute;content: '';top: 0;left: 0;height: 100%;width: 100%;z-index: 1}.exad-hotspot-tooltip-content .exad-hotspot-tooltip-content-button{text-decoration: none;transition: all .3s ease;display: inline-block}.exad-hotspot-tooltip-content .exad-hotspot-tooltip-content-image{width: 100%;overflow: hidden}.exad-hotspot-tooltip-content .exad-hotspot-tooltip-content-image img{width: 100%;height: 100%;object-fit: cover;-o-object-fit: cover}.exad-hotspot.default.tooltip-on-hover .exad-hotspot-item .exad-hotspot-dot:hover .exad-hotspot-tooltip{opacity: 1;visibility: visible}.exad-hotspot.default.tooltip-on-hover .exad-hotspot-item .exad-hotspot-tooltip{position: absolute;left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);border-radius: 5px;opacity: 0;visibility: hidden;transition: all .3s ease}.exad-hotspot.style-1.tooltip-on-hover .exad-hotspot-item .exad-hotspot-dot .exad-hotspot-dot-icon{transition: all 0.3s ease 0.3, border-radius 0.1s ease 0.3}.exad-hotspot.style-1.tooltip-on-hover .exad-hotspot-item .exad-hotspot-dot:hover .exad-hotspot-dot-icon{border-radius: 0}.exad-hotspot.style-1.tooltip-on-hover .exad-hotspot-item .exad-hotspot-dot:hover .exad-hotspot-tooltip{-webkit-transform: scale(1);transform: scale(1);opacity: 1;visibility: visible}.exad-hotspot.style-1.tooltip-on-hover .exad-hotspot-item .exad-hotspot-tooltip{position: absolute;top: 0;left: 0;-webkit-transform: scale(0.2);transform: scale(0.2);transition: all .3s ease;-webkit-transform-origin: left top;transform-origin: left top;z-index: -1;opacity: 0;visibility: hidden}.exad-hotspot.style-2.tooltip-on-hover .exad-hotspot-item .exad-hotspot-tooltip{position: absolute;top: 0;left: 60px;-webkit-transform: scaleX(0);transform: scaleX(0);transition: -webkit-transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91);transition: transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91);transition: transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91), -webkit-transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91);-webkit-transform-origin: left center;transform-origin: left center}.exad-hotspot.style-2.tooltip-on-hover .exad-hotspot-item .exad-hotspot-dot:hover .exad-hotspot-tooltip{-webkit-transform: scale(1);transform: scale(1)}.exad-hotspot.default.tooltip-on-click .exad-hotspot-item .exad-hotspot-tooltip{position: absolute;left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);border-radius: 5px;opacity: 0;visibility: hidden;transition: all .3s ease}.exad-hotspot.default.tooltip-on-click .exad-hotspot-item.exad-hotspot-open-default-tooltip .exad-hotspot-tooltip{opacity: 1;visibility: visible}.exad-hotspot.style-1.tooltip-on-click .exad-hotspot-item .exad-hotspot-dot .exad-hotspot-dot-icon{transition: all 0.3s ease 0.3, border-radius 0.1s ease 0.3}.exad-hotspot.style-1.tooltip-on-click .exad-hotspot-item.exad-hotspot-open-tooltip .exad-hotspot-dot .exad-hotspot-dot-icon{border-radius: 0}.exad-hotspot.style-1.tooltip-on-click .exad-hotspot-item .exad-hotspot-tooltip{position: absolute;top: 0;left: 0;-webkit-transform: scale(0.2);transform: scale(0.2);transition: all .3s ease;-webkit-transform-origin: left top;transform-origin: left top;z-index: -1;opacity: 0;visibility: hidden}.exad-hotspot.style-1.tooltip-on-click .exad-hotspot-item.exad-hotspot-open-tooltip .exad-hotspot-tooltip{-webkit-transform: scale(1);transform: scale(1);opacity: 1;visibility: visible}.exad-hotspot.style-2.tooltip-on-click .exad-hotspot-item .exad-hotspot-tooltip{position: absolute;top: 0;left: 60px;-webkit-transform: scaleX(0);transform: scaleX(0);transition: -webkit-transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91);transition: transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91);transition: transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91), -webkit-transform 0.5s cubic-bezier(0.36, 0.03, 0, 0.91);-webkit-transform-origin: left center;transform-origin: left center}.exad-hotspot.style-2.tooltip-on-click .exad-hotspot-item.exad-hotspot-open-style-2-tooltip .exad-hotspot-tooltip{-webkit-transform: scale(1);transform: scale(1)}@-webkit-keyframes hotspot_pulse{0%{-webkit-transform: translate(-50%, -50%) scale(1.5);transform: translate(-50%, -50%) scale(1.5);opacity: 1}100%{-webkit-transform: translate(-50%, -50%) scale(5);transform: translate(-50%, -50%) scale(5);opacity: 0}}@keyframes hotspot_pulse{0%{-webkit-transform: translate(-50%, -50%) scale(1.5);transform: translate(-50%, -50%) scale(1.5);opacity: 1}100%{-webkit-transform: translate(-50%, -50%) scale(5);transform: translate(-50%, -50%) scale(5);opacity: 0}}@-webkit-keyframes tag-rotate{0%{-webkit-transform: rotate(0);transform: rotate(0)}50%{-webkit-transform: rotate(30deg);transform: rotate(30deg)}100%{-webkit-transform: rotate(0);transform: rotate(0)}}@keyframes tag-rotate{0%{-webkit-transform: rotate(0);transform: rotate(0)}50%{-webkit-transform: rotate(30deg);transform: rotate(30deg)}100%{-webkit-transform: rotate(0);transform: rotate(0)}}@-webkit-keyframes pulse-one{0%{-webkit-transform: scale(1);transform: scale(1);opacity: .5}100%{-webkit-transform: scale(2);transform: scale(2);opacity: 0}}@keyframes pulse-one{0%{-webkit-transform: scale(1);transform: scale(1);opacity: .5}100%{-webkit-transform: scale(2);transform: scale(2);opacity: 0}}@keyframes slack{from{transform: translate(-50%, -50%) scale(1)}to{transform: translate(-50%, -50%) scale(1.4)}}@keyframes egg{from{box-shadow: inset 0 0 12px 6px #7b56ff94}to{box-shadow: inset 0 0 4px 2px #7b56ff94}}.exad-image-mask-figure{-webkit-mask-repeat: no-repeat;-webkit-mask-position: center center}.exad-image-mask-figure img{height: 100%;width: 100%}.exad-selector-wrapper input{display: none}.exad-image-mask-figure.exad-image-mask-flip-shape-vertical{transform: scaleY(-1)}.exad-image-mask-figure.exad-image-mask-flip-shape-vertical img{transform: scaleY(-1)}.exad-image-mask-figure.exad-image-mask-flip-shape-horizontal{transform: scaleX(-1)}.exad-image-mask-figure.exad-image-mask-flip-shape-horizontal img{transform: scaleX(-1)}.exad-instagram-feed-item{display: grid;grid-auto-rows: 1fr}.exad-instagram-feed-item .exad-instagram-feed-wrapper a.exad-instagram-feed-thumb{display: flex;overflow: hidden;position: relative}.exad-instagram-feed-item .exad-instagram-feed-wrapper{transition: all .3s ease;position: relative;overflow: hidden}.exad-instagram-feed-item .exad-instagram-feed-wrapper a.exad-instagram-feed-thumb::before{position: absolute;content: '';top: 0;left: 0;height: 100%;width: 100%;opacity: 0;transition: all .3s ease;z-index: 1}.exad-instagram-feed-thumb img{height: 100%;width: 100%;object-fit: cover;-o-object-fit: cover}.exad-instagram-feed-item .exad-instagram-feed-wrapper:hover a.exad-instagram-feed-thumb::before{opacity: 1}.exad-instagram-feed-item.over-image .exad-instagram-feed-wrapper .exad-instagram-feed-caption{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 2}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image .exad-instagram-feed-wrapper .exad-instagram-feed-caption{position: absolute;top: 0;left: 0;z-index: 2;width: 100%}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image.animate-slide .exad-instagram-feed-wrapper .exad-instagram-feed-caption{transform: translateY(-100%)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image.animate-slide .exad-instagram-feed-wrapper:hover .exad-instagram-feed-caption{transform: translateY(0)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.over-image.animate-slide .exad-instagram-feed-wrapper .exad-instagram-feed-caption{transform: translate(-50%,-90%)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.over-image.animate-slide .exad-instagram-feed-wrapper:hover .exad-instagram-feed-caption{transform: translate(-50%, -50%)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image.animate-slide .exad-instagram-feed-wrapper .exad-instagram-feed-caption{transform: translateY(100%)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image.animate-slide .exad-instagram-feed-wrapper:hover .exad-instagram-feed-caption{transform: translateY(0)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image.animate-slide-with-image .exad-instagram-feed-wrapper .exad-instagram-feed-caption{transform: translateY(100%)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image.animate-slide-with-image .exad-instagram-feed-wrapper .exad-instagram-feed-thumb img{transform: translateY(0px);transition: all .3s ease}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image.animate-slide-with-image .exad-instagram-feed-wrapper:hover .exad-instagram-feed-caption{transform: translateY(0)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image.animate-slide-with-image .exad-instagram-feed-wrapper:hover .exad-instagram-feed-thumb img{transform: translateY(-30px)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image.animate-slide-with-image .exad-instagram-feed-wrapper .exad-instagram-feed-caption{transform: translateY(-100%)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image.animate-slide-with-image .exad-instagram-feed-wrapper .exad-instagram-feed-thumb img{transform: translateY(0px);transition: all .3s ease}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image.animate-slide-with-image .exad-instagram-feed-wrapper:hover .exad-instagram-feed-caption{transform: translateY(0)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.top-of-image.animate-slide-with-image .exad-instagram-feed-wrapper:hover .exad-instagram-feed-thumb img{transform: translateY(30px)}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes.bottom-of-image .exad-instagram-feed-wrapper .exad-instagram-feed-caption{position: absolute;left: 0;bottom: 0;z-index: 2;width: 100%}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes .exad-instagram-feed-wrapper .exad-instagram-feed-caption{opacity: 0;transition: all .3s ease}.exad-instagram-feed-item.exad-insta-feed-show-caption-yes .exad-instagram-feed-wrapper:hover .exad-instagram-feed-caption{opacity: 1}.exad-instagram-feed-wrapper .exad-instagram-feed-thumb.image-zoom-in img{transform: scale(1);transition: all .3s ease}.exad-instagram-feed-wrapper:hover .exad-instagram-feed-thumb.image-zoom-in img{transform: scale(1.1)}.exad-instagram-feed-wrapper .exad-instagram-feed-thumb.image-zoom-out img{transform: scale(1.2);transition: all .3s ease}.exad-instagram-feed-wrapper:hover .exad-instagram-feed-thumb.image-zoom-out img{transform: scale(1)}.exad-instagram-user-profile{display: flex;align-items: center;transition: all .3s ease}.exad-instagram-user-profile-image{height: 80px;width: 80px;overflow: hidden}.exad-instagram-user-profile-image img{height: 100%;width: 100%;object-fit: cover;-o-object-fit: cover}.exad-instagram-user-profile-name{transition: all .3s ease}.exad-instagram-feed-user-info{display: flex;align-items: center;justify-content: space-between}.exad-login-register-field-item{display: flex;flex-direction: column}.exad-login-registration-form input[type=text]:focus,.exad-login-registration-form input[type=password]:focus{outline: none}.exad-login-registration-form input[type=checkbox]{-webkit-appearance: none;-moz-appearance: none;border-style: solid;border-width: 0;outline: none;min-width: 1px;width: 15px;height: 15px;background-color: #dddddd;padding: 3px;display: -moz-inline-stack;display: inline-block;vertical-align: middle;margin-right: 8px}.exad-login-registration-form input[type=checkbox]:checked{position: relative}.exad-login-registration-form input[type=checkbox]:checked:before{content: '';display: block;position: absolute;top: 42%;left: 50%;width: 6px;height: 12px;border-style: solid;border-color: #0079bf;border-width: 0 2px 2px 0;-webkit-transform: translate(-50%, -50%) rotate(45deg);transform: translate(-50%, -50%) rotate(45deg)}.exad-login-registration-form input[type=checkbox]:before{content: "";width: 100%;height: 100%;padding: 0;margin: 0;display: block}.exad-login-registration-form input[type=checkbox]:focus:checked{border: inherit;box-shadow: inherit}.exad-login-remember-me-label{display: flex;align-items: flex-end;line-height: 1}.exad-login-registration-form.button-align-center button.exad-login-register-submit-button{margin-left: auto !important;margin-right: auto !important;display: block;float: none}.exad-login-registration-form.button-align-left button.exad-login-register-submit-button{float: left;width: auto}.exad-login-registration-form.button-align-right button.exad-login-register-submit-button{float: right;width: auto}.exad-login-register-submit-button-wrapper.exad-submit-button-left{text-align: left}.exad-login-register-submit-button-wrapper.exad-submit-button-center{text-align: center}.exad-login-register-submit-button-wrapper.exad-submit-button-right{text-align: right}.exad-login-register-submit-button-wrapper.exad-submit-button-justify .exad-login-register-submit-button{width: 100%}.exad-login-register-heading.exad-login-heading-left{text-align: left}.exad-login-register-heading.exad-login-heading-left .exad-login-register-icon svg{margin-right: auto}.exad-login-register-heading.exad-login-heading-left .exad-login-register-icon.yes{margin-right: auto}.exad-login-register-heading.exad-login-heading-center{text-align: center}.exad-login-register-heading.exad-login-heading-center .exad-login-register-icon.yes{margin-right: auto;margin-left: auto}.exad-login-register-heading.exad-login-heading-center .exad-login-register-icon svg{margin-left: auto;margin-right: auto}.exad-login-register-heading.exad-login-heading-right{text-align: right}.exad-login-register-heading.exad-login-heading-right .exad-login-register-icon.yes{margin-left: auto}.exad-login-register-heading.exad-login-heading-right .exad-login-register-icon svg{margin-left: auto}.exad-login-register-icon{display: block;position: relative}.exad-login-register-icon.yes i, .exad-login-register-icon.yes svg{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-login-register-remember{display: flex;align-items: center}.exad-login-registration-form a{transition: all .3s ease}.exad-lottie-container{display: inline-block;max-width: 100%}.exad-mailchimp-container.exad-mailchimp-type-horizontal .exad-mailchimp-form-container{display: flex;flex-wrap: nowrap}.exad-mailchimp-container.exad-mailchimp-type-vertical.exad-mailchimp-item-vertical-left .exad-mailchimp-form-container .exad-mailchimp-item{margin-right: auto}.exad-mailchimp-container.exad-mailchimp-type-vertical.exad-mailchimp-item-vertical-center .exad-mailchimp-form-container .exad-mailchimp-item{margin-right: auto;margin-left: auto}.exad-mailchimp-container.exad-mailchimp-type-vertical.exad-mailchimp-item-vertical-right .exad-mailchimp-form-container .exad-mailchimp-item{margin-left: auto}.exad-mailchimp-container.exad-mailchimp-type-horizontal .exad-mailchimp-item:not(:last-child){margin-right: 10px}.exad-mailchimp-container label{display: block}.exad-mailchimp-container input:focus{outline: none}.exad-mailchimp-container .exad-mailchimp-input-field{width: 100%;display: block;height: 100%}.exad-mailchimp-container.button-align-center .exad-mailchimp-submit-btn{display: block;float: none;text-align: center}.exad-mailchimp-container.button-align-center .exad-mailchimp-submit-btn .exad-mailchimp-subscribe-btn{margin-left: auto;margin-right: auto}.exad-mailchimp-container.button-align-left .exad-mailchimp-submit-btn{float: left;width: auto}.exad-mailchimp-container.button-align-right .exad-mailchimp-submit-btn{float: right;width: auto}.exad-mailchimp-subscribe-btn{transition: all .3s ease;display: flex;align-items: center;justify-content: center}.exad-mega-menu-wrapper ul.exad-mega-menu-list{margin: 0;padding: 0;display: flex}.exad-mega-menu-wrapper.exad-mega-menu-align-left ul.exad-mega-menu-list{justify-content: flex-start}.exad-mega-menu-wrapper.exad-mega-menu-align-center ul.exad-mega-menu-list{justify-content: center}.exad-mega-menu-wrapper.exad-mega-menu-align-right ul.exad-mega-menu-list{justify-content: flex-end}.exad-mega-menu-wrapper.exad-mega-menu-align-justify ul.exad-mega-menu-list{justify-content: space-between}.exad-mega-menu-wrapper ul.exad-mega-menu-list li.menu-item{list-style: none;display: inline-block;position: relative;transition: all .3s ease}.exad-mega-menu-wrapper ul.exad-mega-menu-list li.menu-item .exad-menu-item{display: flex;align-items: center;line-height: 1}.exad-mega-menu .exad-mega-menu-wrapper ul.exad-mega-menu-list li.parent-has-no-child .exad-menu-toggle{display: none}.exad-mega-menu-wrapper ul.exad-sub-menu{position: absolute;top: 100%;left: 0;width: 200px;height: auto;margin: 0;padding: 0;opacity: 0;visibility: hidden;z-index: 111;transition: all .3s ease;transform: scaleY(0);transform-origin: top;overflow: hidden}.exad-mega-menu-wrapper ul.exad-mega-menu-list li.menu-item:hover ul.exad-sub-menu{opacity: 1;visibility: visible;transform: scaleY(1)}.exad-mega-menu-wrapper ul.exad-sub-menu > li.menu-item{display: block;text-align: left;transition: all .3s ease}.exad-mega-menu-wrapper ul.exad-sub-menu > li.menu-item a.exad-sub-menu-item{display: block}.exad-mega-menu-wrapper .exad-sub-menu li.menu-item:not(:last-child){border-bottom-style: solid}.exad-mega-menu-wrapper ul.exad-sub-menu div.menu-item{display: block}.exad-mega-menu.exad-mega-menu-oriantation-vertical ul.exad-mega-menu-list{flex-direction: column;width: 100%}.exad-mega-menu.exad-mega-menu-oriantation-vertical ul.exad-mega-menu-list ul.exad-sub-menu{top: 0;left: 100%}.exad-mega-menu.exad-mega-menu-oriantation-vertical .exad-mega-menu-wrapper{display: flex}.exad-mega-menu.exad-mega-menu-oriantation-vertical{width: 300px}.exad-mega-menu-icon{display: inline-block;line-height: 1}.exad-mega-menu-label{display: inline-block;position: relative;line-height: 1}.exad-mega-menu-wrapper .slicknav_menu{visibility: hidden;opacity: 0;display: none}@media (max-width: 1024px){.exad-mega-menu__breakpoint-tablet .exad-mega-menu-wrapper .slicknav_menu{visibility: visible;opacity: 1;display: block}.exad-mega-menu__breakpoint-tablet .exad-mega-menu-wrapper ul.exad-mega-menu-list{visibility: hidden;opacity: 0;height: 0;display: none}.exad-mega-menu__breakpoint-tablet .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav,.exad-mega-menu__breakpoint-mobile .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav{position: absolute;top: 100%;width: 100%;height: auto;z-index: 111;background: #ffffff;right: 0;margin: 0 -10px;padding: 0 10px}.exad-mega-menu__breakpoint-tablet .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav ul.exad-sub-menu,.exad-mega-menu__breakpoint-mobile .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav ul.exad-sub-menu{position: relative;top: 100%;left: 0;width: 100% !important;height: auto;margin: 0;padding: 0;opacity: 1;visibility: visible;z-index: 111;transition: all .3s ease;transform: scaleY(1);transform-origin: top;overflow: hidden}.exad-mega-menu__breakpoint-tablet .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav .exad-menu-toggle,.exad-mega-menu__breakpoint-mobile .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav .exad-menu-toggle{display: none}.exad-mega-menu__breakpoint-tablet .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav li,.exad-mega-menu__breakpoint-mobile .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav li{margin: 0}.slicknav_nav .slicknav_row{padding: 0 !important}.slicknav_nav .slicknav_arrow{margin: 0 15px 0 0 !important}}@media (max-width: 767px){.exad-mega-menu__breakpoint-mobile .exad-mega-menu-wrapper .slicknav_menu{visibility: visible;opacity: 1;display: block}.exad-mega-menu__breakpoint-mobile .exad-mega-menu-wrapper ul.exad-mega-menu-list{visibility: hidden;opacity: 0;height: 0;display: none}}@media (max-width: 992px){.exad-mega-menu__breakpoint-mobile.exad-mega-menu-dropdown-overflow-yes .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav, .exad-mega-menu__breakpoint-tablet.exad-mega-menu-dropdown-overflow-yes .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav{overflow-y: scroll}.exad-mega-menu__breakpoint-mobile.exad-mega-menu-dropdown-overflow-yes .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav, .exad-mega-menu__breakpoint-tablet.exad-mega-menu-dropdown-overflow-yes .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav{scrollbar-width: none;-ms-overflow-style: none}.exad-mega-menu__breakpoint-mobile.exad-mega-menu-dropdown-overflow-yes .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav::-webkit-scrollbar, .exad-mega-menu__breakpoint-tablet.exad-mega-menu-dropdown-overflow-yes .exad-mega-menu-wrapper .slicknav_menu .slicknav_nav::-webkit-scrollbar{width: 0;height: 0}}.exad-moving-lines{top: 0;left: 0;right: 0;height: 100%;margin: auto}.exad-moving-lines .line:nth-child(1){margin-left: -25%}.exad-moving-lines .line{position: absolute;width: 1px;height: 100%;top: 0;left: 50%;overflow: hidden}.exad-moving-lines .line:nth-child(3){margin-left: 25%}.exad-moving-lines .line:nth-child(1)::after{-webkit-animation-delay: 2s;animation-delay: 2s}.exad-moving-lines .line::after{content: "";display: block;position: absolute;height: 15vh;width: 100%;top: -50%;left: 0;background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);-webkit-animation: exadmovingline 7s 0s infinite;animation: exadmovingline 7s 0s infinite;-webkit-animation-fill-mode: forwards;animation-fill-mode: forwards;-webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97)}.exad-moving-lines .line:nth-child(3)::after{-webkit-animation-delay: 2.5s;animation-delay: 2.5s}@keyframes exadmovingline{0%{top: -50%}100%{top: 110%}}.exad-moving-cube{overflow: hidden}.exad-moving-cube .cube:nth-child(2){-webkit-animation-delay: 2s;animation-delay: 2s;left: 25vw;top: 40vh}.exad-moving-cube .cube:nth-child(2n){border-color: #0051f4}.exad-moving-cube .cube:nth-child(3){-webkit-animation-delay: 4s;animation-delay: 4s;left: 75vw;top: 50vh}.exad-moving-cube .cube:nth-child(4){-webkit-animation-delay: 6s;animation-delay: 6s;left: 90vw;top: 10vh}.exad-moving-cube .cube:nth-child(5){-webkit-animation-delay: 8s;animation-delay: 8s;left: 10vw;top: 85vh}.exad-moving-cube .cube:nth-child(6){-webkit-animation-delay: 10s;animation-delay: 10s;left: 50vw;top: 10vh}.exad-moving-cube .cube{position: absolute;top: 80vh;left: 45vw;width: 10px;height: 10px;border: solid 1px #003298;-webkit-transform-origin: top left;transform-origin: top left;-webkit-transform: scale(0) rotate(0deg) translate(-50%, -50%);transform: scale(0) rotate(0deg) translate(-50%, -50%);-webkit-animation: exadmovingcube 12s ease-in forwards infinite;animation: exadmovingcube 12s ease-in forwards infinite}@keyframes exadmovingcube{from{transform: scale(0) rotate(0deg) translate(-50%, -50%);opacity: 1}to{transform: scale(20) rotate(960deg) translate(-50%, -50%);opacity: 0}}.slicknav_btn{position: relative;display: block;vertical-align: middle;float: right;padding: 0.438em 0.625em 0.438em 0.625em;line-height: 1.125em;cursor: pointer}.slicknav_btn .slicknav_icon-bar .slicknav_icon-bar{margin-top: 0.188em}.slicknav_menu{*zoom: 1}.slicknav_menu .slicknav_menutxt{display: block;line-height: 1.188em;float: left}.slicknav_menu .slicknav_icon{float: left;width: 1.125em;height: 0.875em;margin: 0.188em 0 0 0.438em}.slicknav_menu .slicknav_icon:before{background: transparent;width: 1.125em;height: 0.875em;display: block;content: "";position: absolute}.slicknav_menu .slicknav_no-text{margin: 0;display: table}.slicknav_menu .slicknav_icon-bar{display: block;width: 1.125em;height: 0.125em;-webkit-border-radius: 1px;-moz-border-radius: 1px;border-radius: 1px;-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)}.slicknav_menu:before{content: " ";display: table}.slicknav_menu:after{content: " ";display: table;clear: both}.slicknav_nav{clear: both}.slicknav_nav ul{display: block}.slicknav_nav li{display: block}.slicknav_nav .slicknav_arrow{font-size: 0.8em;margin: 0 0 0 0.4em}.slicknav_nav .slicknav_item{cursor: pointer}.slicknav_nav .slicknav_item a{display: inline}.slicknav_nav .slicknav_row{display: block}.slicknav_nav a{display: block}.slicknav_nav .slicknav_parent-link a{display: inline}.slicknav_brand{float: left}.slicknav_menu{font-size: 16px;box-sizing: border-box}.slicknav_menu *{box-sizing: border-box}.slicknav_menu .slicknav_menutxt{color: #fff;font-weight: bold;text-shadow: 0 1px 3px #000}.slicknav_menu .slicknav_icon-bar{background-color: #fff}.slicknav_btn{margin: 0;text-decoration: none;text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color: #222}.slicknav_nav{margin: 0;padding: 0;list-style: none;overflow: hidden}.slicknav_nav ul{list-style: none;overflow: hidden;padding: 0;margin: 0 0 0 20px}.slicknav_nav .slicknav_row{padding: 5px 10px}.slicknav_nav .slicknav_row{display: flex;align-items: center;justify-content: space-between}.slicknav_nav a{text-decoration: none}.slicknav_nav .slicknav_txtnode{margin-left: 15px}.slicknav_nav .slicknav_item a{padding: 0;margin: 0}.slicknav_nav .slicknav_parent-link a{padding: 0;margin: 0}.slicknav_brand{font-size: 18px;line-height: 30px;padding: 7px 12px;height: 44px}.slicknav_nav .exad-has-submenu-container{display: flex;width: 100%}.exad-nav-menu__layout-horizontal, .exad-nav-menu__layout-horizontal .exad-nav-menu{-js-display: flex;display: -webkit-box;display: -webkit-flex;display: -moz-box;display: -ms-flexbox;display: flex}.exad-nav-menu__align-left .exad-nav-menu{margin-right: auto;-webkit-box-pack: start;-ms-flex-pack: start;-webkit-justify-content: flex-start;-moz-box-pack: start;justify-content: flex-start}ul.exad-nav-menu, .exad-nav-menu li, .exad-nav-menu ul{list-style: none !important;margin: 0;padding: 0}.exad-nav-menu li.menu-item{position: relative}ul.exad-nav-menu, .exad-nav-menu li, .exad-nav-menu ul{list-style: none !important;margin: 0;padding: 0}.exad-nav-menu a.exad-menu-item, .exad-nav-menu a.exad-sub-menu-item{line-height: 1;text-decoration: none;-js-display: flex;display: -webkit-box;display: -webkit-flex;display: -moz-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-moz-box-pack: justify;-ms-flex-pack: justify;-webkit-box-shadow: none;box-shadow: none;-webkit-box-align: center;-webkit-align-items: center;-moz-box-align: center;-ms-flex-align: center;align-items: center;-webkit-justify-content: space-between;justify-content: space-between}.exad-nav-menu a.exad-menu-item{padding-top: 15px;padding-bottom: 15px}.exad-nav-menu ul.sub-menu{width: 220px}.exad-nav-menu__layout-horizontal .exad-nav-menu .sub-menu{-webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1)}.exad-nav-menu .menu-item-has-children .sub-menu{position: absolute;top: 100%;left: 0;z-index: 9999;visibility: hidden;opacity: 0}.exad-nav-menu__layout-horizontal .exad-nav-menu .menu-item-has-children:hover > .sub-menu,.exad-nav-menu__layout-horizontal .exad-nav-menu .menu-item-has-children:hover > .sub-menu, .exad-nav-menu__layout-horizontal .exad-nav-menu .menu-item-has-children.focus > .sub-menu{visibility: visible;opacity: 1;-webkit-transition: all 300ms ease-out;transition: all 300ms ease-out}.exad-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu{top: 0;left: 100%}.exad-nav-menu a.exad-menu-item{font-size: 18px}.exad-nav-menu .sub-menu a.exad-sub-menu-item{font-size: 18px}nav.exad-dropdown-expandible li.menu-item:not(:last-child){border: 2px solid}.exad-nav-menu__align-left .exad-nav-menu{margin-right: auto;-webkit-box-pack: start;-ms-flex-pack: start;-webkit-justify-content: flex-start;-moz-box-pack: start;justify-content: flex-start}.exad-nav-menu__align-center .exad-nav-menu{margin-left: auto;margin-right: auto;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;-moz-box-pack: center;justify-content: center}.exad-nav-menu__align-right .exad-nav-menu{margin-left: auto;-webkit-box-pack: end;-ms-flex-pack: end;-webkit-justify-content: flex-end;-moz-box-pack: end;justify-content: flex-end}.exad-nav-menu__align-justify .exad-nav-menu__layout-horizontal .exad-nav-menu{width: 100%}.exad-nav-menu__align-justify .exad-nav-menu__layout-horizontal .exad-nav-menu li.menu-item{-webkit-box-flex: 1;-ms-flex-positive: 1;-webkit-flex-grow: 1;-moz-box-flex: 1;flex-grow: 1}.exad-nav-menu__align-justify .exad-nav-menu__layout-horizontal .exad-nav-menu li a.exad-menu-item{-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;-moz-box-pack: center;justify-content: center}.exad-nav-menu > li:not(:last-child){margin-right: 15px}.exad-nav-menu .sub-arrow{display: block;height: 0.7rem;pointer-events: none;transform: rotate(-45deg);width: 1.3rem}.exad-nav-menu .sub-arrow::before, .exad-nav-menu .sub-arrow::after{content: "";display: block;background-color: currentColor;position: absolute;bottom: 50%;left: 0}.exad-nav-menu .sub-arrow::before{height: 10px;width: 2px}.exad-nav-menu .sub-arrow::after{height: 2px;width: 10px}.exad-nav-menu li > .sub-menu .exad-has-submenu-container .sub-arrow::before{height: 10px;width: 2px}.exad-nav-menu li > .sub-menu .exad-has-submenu-container .sub-arrow::after{height: 2px;width: 10px}.exad-nav-menu li > .sub-menu .exad-has-submenu-container .sub-arrow::before, .exad-nav-menu li > .sub-menu .exad-has-submenu-container .sub-arrow::after{bottom: calc( 50% 10px );left: -21px}.exad-nav-menu-wrapper .slicknav_menu{visibility: hidden;opacity: 0;display: none}@media only screen and (max-width: 1024px){.exad-nav-menu__breakpoint-tablet .exad-nav-menu-wrapper .slicknav_menu{position: relative;visibility: visible;opacity: 1;display: block}.exad-nav-menu__breakpoint-tablet .exad-nav-menu-wrapper .exad-nav-menu__layout-horizontal{visibility: hidden;opacity: 0;height: 0;display: none}}@media only screen and (max-width: 767px){.exad-nav-menu__breakpoint-mobile .exad-nav-menu-wrapper .slicknav_menu{visibility: visible;opacity: 1;display: block}.exad-nav-menu__breakpoint-mobile .exad-nav-menu-wrapper .exad-nav-menu__layout-horizontal{visibility: hidden;opacity: 0;height: 0;display: none}.exad-layout-vartical .exad-nav-menu__layout-horizontal .exad-nav-menu{width: 100%}.exad-layout-vartical .exad-nav-menu__layout-horizontal .exad-nav-menu li.menu-item{-webkit-box-flex: 1;-ms-flex-positive: 1;-webkit-flex-grow: 1;-moz-box-flex: 1;flex-grow: 1}.exad-layout-vartical .exad-nav-menu__layout-horizontal .exad-nav-menu li a.exad-menu-item{-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;-moz-box-pack: center;justify-content: center}}.slicknav_nav .slicknav_row,.slicknav_nav li:not(.exad-has-submenu) a{padding: 10px 15px}.exad-nav-menu__layout-horizontal, .exad-nav-menu__layout-horizontal .exad-nav-menu{-js-display: flex;display: -webkit-box;display: -webkit-flex;display: -moz-box;display: -ms-flexbox;display: flex}.exad-nav-menu__align-left .exad-nav-menu{margin-right: auto;-webkit-box-pack: start;-ms-flex-pack: start;-webkit-justify-content: flex-start;-moz-box-pack: start;justify-content: flex-start}ul.exad-nav-menu, .exad-nav-menu li, .exad-nav-menu ul{list-style: none !important;margin: 0;padding: 0}.exad-nav-menu li.menu-item{position: relative}ul.exad-nav-menu, .exad-nav-menu li, .exad-nav-menu ul{list-style: none !important;margin: 0;padding: 0}.exad-nav-menu a.exad-menu-item, .exad-nav-menu a.exad-sub-menu-item{line-height: 1;text-decoration: none;-js-display: flex;display: -webkit-box;display: -webkit-flex;display: -moz-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-moz-box-pack: justify;-ms-flex-pack: justify;-webkit-box-shadow: none;box-shadow: none;-webkit-box-align: center;-webkit-align-items: center;-moz-box-align: center;-ms-flex-align: center;align-items: center;-webkit-justify-content: space-between;justify-content: space-between}.exad-nav-menu a.exad-menu-item{padding-top: 15px;padding-bottom: 15px}.exad-nav-menu ul.sub-menu{width: 220px}.exad-nav-menu__layout-horizontal .exad-nav-menu .sub-menu{-webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1)}.exad-nav-menu .menu-item-has-children .sub-menu{position: absolute;top: 100%;left: 0;z-index: 9999;visibility: hidden;opacity: 0}.exad-nav-menu__layout-horizontal .exad-nav-menu .menu-item-has-children:hover > .sub-menu,.exad-nav-menu__layout-horizontal .exad-nav-menu .menu-item-has-children:hover > .sub-menu, .exad-nav-menu__layout-horizontal .exad-nav-menu .menu-item-has-children.focus > .sub-menu{visibility: visible;opacity: 1;-webkit-transition: all 300ms ease-out;transition: all 300ms ease-out}.exad-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu{top: 0;left: 100%}.exad-nav-menu a.exad-menu-item{font-size: 18px}.exad-nav-menu .sub-menu a.exad-sub-menu-item{font-size: 18px}nav.exad-dropdown-expandible li.menu-item:not(:last-child){border: 2px solid}.exad-nav-menu__align-left .exad-nav-menu{margin-right: auto;-webkit-box-pack: start;-ms-flex-pack: start;-webkit-justify-content: flex-start;-moz-box-pack: start;justify-content: flex-start}.exad-nav-menu__align-center .exad-nav-menu{margin-left: auto;margin-right: auto;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;-moz-box-pack: center;justify-content: center}.exad-nav-menu__align-right .exad-nav-menu{margin-left: auto;-webkit-box-pack: end;-ms-flex-pack: end;-webkit-justify-content: flex-end;-moz-box-pack: end;justify-content: flex-end}.exad-nav-menu__align-justify .exad-nav-menu__layout-horizontal .exad-nav-menu{width: 100%}.exad-nav-menu__align-justify .exad-nav-menu__layout-horizontal .exad-nav-menu li.menu-item{-webkit-box-flex: 1;-ms-flex-positive: 1;-webkit-flex-grow: 1;-moz-box-flex: 1;flex-grow: 1}.exad-nav-menu__align-justify .exad-nav-menu__layout-horizontal .exad-nav-menu li a.exad-menu-item{-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;-moz-box-pack: center;justify-content: center}.slicknav_btn .slicknav_icon .slicknav_icon-bar{transition: all .3s ease}.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(2){visibility: hidden;opacity: 0}.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(1){transform: translate(0, 6px) rotate(45deg)}.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(3){transform: translate(0, 0) rotate(-45deg);margin: 0}.exad-nav-menu-wrapper.exad-layout-vartical.exad-nav-menu-layout.vartical .exad-nav-menu__layout-horizontal .exad-nav-menu{flex-direction: column}.exad-nav-menu__layout-horizontal .exad-nav-menu li a.exad-menu-item{position: relative;overflow: hidden}.exad-nav-menu__layout-horizontal.effect-1 .exad-nav-menu li a.exad-menu-item::before{position: absolute;transition: all .3s ease;content: '';height: 3px;width: 100%;transform: scaleX(0);transform-origin: left;background: #000;left: 0;bottom: 0}.exad-nav-menu__layout-horizontal.effect-1 .exad-nav-menu li a.exad-menu-item:hover::before{transform: scaleX(1)}.exad-nav-menu__layout-horizontal.effect-1 .exad-nav-menu li.current-menu-item a.exad-menu-item::before{transform: scaleX(1)}.exad-nav-menu__layout-horizontal.effect-2 .exad-nav-menu li a.exad-menu-item::before{position: absolute;transition: all .3s ease;content: '';height: 3px;width: 100%;transform: scale3d(0,1,1);transform-origin: 0 50%;background: #000;left: 0;bottom: 0}.exad-nav-menu__layout-horizontal.effect-2 .exad-nav-menu li a.exad-menu-item:hover::before{transform: scale3d(1,1,1);transform-origin: 100% 50%}.exad-nav-menu__layout-horizontal.effect-2 .exad-nav-menu li.current-menu-item a.exad-menu-item::before{transform: scale3d(1,1,1)}.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li a.exad-menu-item::before,.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li a.exad-menu-item::after{position: absolute;transition: all .3s ease;content: '';height: 3px;width: 100%;transform: scaleX(0);background: #000}.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li a.exad-menu-item::before{transform-origin: left;left: 0;top: 0}.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li a.exad-menu-item::after{right: 0;bottom: 0;transform-origin: right}.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li a.exad-menu-item:hover::before,.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li a.exad-menu-item:hover::after{transform: scaleX(1)}.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li.current-menu-item a.exad-menu-item::before,.exad-nav-menu__layout-horizontal.effect-3 .exad-nav-menu li.current-menu-item a.exad-menu-item::after{transform: scaleX(1)}.exad-nav-menu__layout-horizontal.effect-4 .exad-nav-menu li a.exad-menu-item::before{position: absolute;content: '';-webkit-transition: all 0.35s ease;transition: all 0.35s ease;opacity: 0;top: 25%;bottom: 25%;left: 0;right: 0;border-top: 3px solid #34495e;border-bottom: 3px solid #34495e}.exad-nav-menu__layout-horizontal.effect-4 .exad-nav-menu li a.exad-menu-item:hover::before{opacity: 1;top: 0;bottom: 0}.exad-nav-menu__layout-horizontal.effect-4 .exad-nav-menu li.current-menu-item a.exad-menu-item::before{opacity: 1;top: 0;bottom: 0}.exad-nav-menu__layout-horizontal.effect-5 .exad-nav-menu li a.exad-menu-item::before{position: absolute;content: '';-webkit-transition: all 0.35s ease;transition: all 0.35s ease;opacity: 0;top: 0;bottom: 0;left: 25%;right: 25%;border-left: 3px solid #34495e;border-right: 3px solid #34495e}.exad-nav-menu__layout-horizontal.effect-5 .exad-nav-menu li a.exad-menu-item:hover::before{opacity: 1;left: 0;right: 0}.exad-nav-menu__layout-horizontal.effect-5 .exad-nav-menu li.current-menu-item a.exad-menu-item::before{opacity: 1;left: 0;right: 0}.exad-nav-menu__layout-horizontal.effect-6 .exad-nav-menu li a.exad-menu-item::before{position: absolute;content: '';-webkit-transition: all 0.35s ease;transition: all 0.35s ease;left: 0;bottom: 0;height: 3px;width: 100%;transform: scaleX(0);transform-origin: center center;background: #34495e}.exad-nav-menu__layout-horizontal.effect-6 .exad-nav-menu li a.exad-menu-item:hover::before{transform: scaleX(1)}.exad-nav-menu__layout-horizontal.effect-6 .exad-nav-menu li.current-menu-item a.exad-menu-item::before{transform: scaleX(1)}.exad-nav-menu-wrapper .slicknav_nav{position: absolute;top: 100%;width: 100%;z-index: 11111;right: 0}body.excluisve-addons-elementor{transition: all .3s ease}.exad-offcanvas-content-inner{position: fixed;background: #f4f4f4;transition: all .3s ease;z-index: 9999;visibility: hidden;overflow: auto}.exad-offcanvas-content-inner::-webkit-scrollbar{display: none}.exad-offcanvas-content-inner{-ms-overflow-style: none;scrollbar-width: none}.exad-offcanvas-content.offcanvas-top .exad-offcanvas-content-inner,.exad-offcanvas-content.offcanvas-bottom .exad-offcanvas-content-inner{width: 100%;left: 0}.exad-offcanvas-content.offcanvas-left .exad-offcanvas-content-inner,.exad-offcanvas-content.offcanvas-right .exad-offcanvas-content-inner{height: 100%;top: 0}.exad-offcanvas-overlay{position: fixed;width: 100%;height: 100%;top: 0;left: 0;background: rgba(0, 0, 0, .5);z-index: 999;opacity: 0;visibility: hidden;transition: all .3s ease}.exad-offcanvas-overlay.offcanvas-active{opacity: 1;visibility: visible}.exad-offcanvas-content-body{padding: 50px 20px}.exad-offcanvas-content-inner.offcanvas-active{visibility: visible}.exad-offcanvas-close-button{position: absolute;top: 50px;right: 50px;height: 30px;width: 30px}.exad-offcanvas-close-button span{display: block;height: 100%;width: 100%}.exad-offcanvas-close-button span::before,.exad-offcanvas-close-button span::after{position: absolute;content: '';height: 20px;width: 1px;background: #000;transform: translate(-50%, -50%) rotate(45deg);top: 50%;left: 50%}.exad-offcanvas-close-button span::after{transform: translate(-50%, -50%) rotate(-45deg)}.exad-offcanvas-content-inner .list-inline-item{display: block}.exad-offcanvas-open-button{display: inline-block;text-decoration: none;transition: all .3s ease}.exad-offcanvas-open-button-wrapper.align-left{text-align: left}.exad-offcanvas-open-button-wrapper.align-center{text-align: center}.exad-offcanvas-open-button-wrapper.align-right{text-align: right}.exad-offcanvas-open-button-wrapper.absolute .exad-offcanvas-open-button{position: absolute}.exad-offcanvas-menu{margin: 0;padding: 0}.exad-offcanvas-menu li{list-style: none;transition: all .3s ease}.exad-offcanvas.exad-offcanvas-button-fixed .exad-offcanvas-open-button-wrapper{position: fixed;z-index: 111}.exad-page-link{display: flex;margin: 0}.exad-page-title{color: #000;font-size: 22px;margin: 0}.exad-parallax-scene{position: absolute;width: 100%;height: 100%;background-repeat: no-repeat;top: 0;left: 0;overflow: hidden}.exad-scene-item{position: absolute;width: 102%;height: 104%;background-repeat: no-repeat;overflow: hidden;margin: 0;padding: 0;top: -1%;left: -2%;background-size: auto}.exad-post-navigation-wrapper{overflow: hidden;display: -webkit-box;display: -ms-flexbox;display: flex;justify-content: space-between}.exad-post-nav-next{text-align: right}.exad-post-navigation-wrapper .exad-post-nav-previous a,.exad-post-navigation-wrapper .exad-post-nav-next a{display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;max-width: 100%}.exad-post-navigation-wrapper span.exad-post-nav-prev-link, .exad-post-navigation-wrapper span.exad-post-nav-next-link{display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;z-index: 1}.exad-post-nav-prev-title,.exad-post-nav-next-title,.exad-post-nav-prev-label,.exad-post-nav-next-label{color: #000000;z-index: 1}.exad-post-nav-prev-arrow,.exad-post-nav-next-arrow{display: flex;z-index: 1}.exad-post-nav-previous::before,.exad-post-nav-next::before{content: '';position: absolute;top: 0;left: 0;bottom: 0;width: 100%;height: 100%}.exad-post-nav-previous,.exad-post-nav-next{position: relative}.exad-post-slider .slick-prev:before, .exad-post-slider .slick-next:before{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-slide-content a{transition: all .3s ease}.exad-post-slider .exad-slide-bg{background-size: cover}.exad-product-cross-sell .cross-sells .products li a img{object-fit: cover;-o-object-fit: cover;width: 100%}.woocommerce .exad-product-cross-sell .cross-sells .products li a.woocommerce-LoopProduct-link:before{position: absolute;content: '';left: 0;right: 0;top: 0;bottom: 0;width: 100%;height: 100%;z-index: 0}.woocommerce .exad-product-cross-sell .cross-sells .products li a span.onsale{background-color: #3bc473;margin-bottom: 3px;padding: 5px 15px;position: relative;color: #fff;font-size: 14px;margin: 0;padding: 0;position: absolute;list-style: none;top: 20px;right: 20px;z-index: 99}.exad-product-cross-sell .cross-sells .product-prev,.exad-product-cross-sell .cross-sells .product-next{position: absolute;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);height: 60px;width: 60px;background: transparent;border-radius: 50%;text-align: center;cursor: pointer;transition: all .3s ease;z-index: 1}.exad-product-cross-sell .cross-sells .product-prev svg,.exad-product-cross-sell .cross-sells .product-next svg{top: 50%;position: absolute;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 20px}.exad-product-cross-sell .cross-sells .product-prev:hover,.exad-product-cross-sell .cross-sells .product-next:hover{color: #0a1724}.exad-product-cross-sell .cross-sells .product-prev{left: -70px}.exad-product-cross-sell .cross-sells .product-next{right: -70px}.exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-fraction{position: relative}.exad-product-cross-sell .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{width: 100%;height: 4px;left: 0px}.exad-Progressbar-align-top .exad-product-cross-sell .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{top: 74px}.exad-Progressbar-align-bottom .exad-product-cross-sell .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{bottom: 0}.exad-product-cross-sell .exad-swiper-pagination.swiper-pagination-fraction span{display: inline-block;text-align: center}.exad-product-upsell-carousel-layout.exad-product-navigation-none .exad-product-cross-sell .cross-sells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-none .exad-product-cross-sell .cross-sells .product-next,.exad-product-upsell-carousel-layout.exad-product-navigation-nav-dots .exad-product-cross-sell .cross-sells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-nav-dots .exad-product-cross-sell .cross-sells .product-next,.exad-product-upsell-carousel-layout.exad-product-navigation-progress-bar .exad-product-cross-sell .cross-sells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-progress-bar .exad-product-cross-sell .cross-sells .product-next,.exad-product-upsell-carousel-layout.exad-product-navigation-fraction .exad-product-cross-sell .cross-sells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-fraction .exad-product-cross-sell .cross-sells .product-next{display: none;opacity: 0 !important}.exad-product-image .thumb-prev,.exad-product-image .thumb-next{position: absolute;width: 30px;height: 30px;margin-top: -22px;z-index: 10;cursor: pointer;-webkit-background-size: 27px 44px;background-size: 27px 44px;background: no-repeat 50%;border-radius: 50px 50px 50px 50px;background: #7a56ff;color: #fff;fill: #fff}.exad-product-image.thumbnails-gallery-align-left .thumb-next{left: 13px;right: auto;top: 22%}.exad-product-image.thumbnails-gallery-align-left .thumb-prev{top: auto;right: auto;left: 13px;bottom: 118px;margin-bottom: -22px}.exad-product-image.thumbnails-gallery-align-bottom .thumb-next{bottom: 15px;right: -9px}.exad-product-image.thumbnails-gallery-align-bottom .thumb-prev{top: auto;right: auto;left: -15px;bottom: 16px;margin-bottom: 0}@media(max-width: 450px){.exad-product-image.thumbnails-gallery-align-left .thumb-next{left: 16px;right: auto;top: 14%}.exad-product-image.thumbnails-gallery-align-left .thumb-prev{left: 16px;right: auto;bottom: 42px}}.exad-product-image .thumb-prev svg,.exad-product-image .thumb-next svg{top: 50%;position: absolute;left: 50%;transform: translate(-50%,-50%);font-size: 20px}.woocommerce div.product .exad-product-thumb-view-carousel .exad-product-image.thumbnails-gallery-align-left .woocommerce-product-gallery .flex-control-nav{left: 0 }.theme-kadence.woocommerce div.product div.images .flex-control-thumbs{flex-wrap: inherit;margin-top: 0}.theme-kadence.woocommerce span.onsale{top: 20px;left: 85px}.woocommerce .exad-product-thumb-verticle-left .exad-product-image span.onsale{left: 78px}.woocommerce div.product div.images .flex-control-thumbs{overflow: unset}.gallery-thumb-swiper.swiper-container.swiper-container-vertical .swiper-slide img{height: 65px;object-fit: contain}.woocommerce .exad-product-add-to-cart div.product form.cart{margin-bottom: 0 !important}.exad-product-thumb-view-carousel .exad-product-image.thumbnails-gallery-align-left .woocommerce-product-gallery{display: flex;justify-content: space-between}@media(max-width: 450px){.gallery-thumb-swiper.swiper-container.swiper-container-vertical{top: 11%}}.exad-product-image .thumbnail-carousel-container .gallery-thumb-swiper.swiper-container-vertical{top: 50%;transform: translateY(-50%)}.exad-product-image .thumbnail-carousel-container{position: relative;z-index: 999}.woocommerce div.product .exad-product-thumb-view-carousel .exad-product-image.thumbnails-gallery-align-right .woocommerce-product-gallery .flex-control-nav,.woocommerce div.product .exad-product-thumb-view-carousel .exad-product-image.thumbnails-gallery-align-left .woocommerce-product-gallery .flex-control-nav{flex-direction: column;width: auto;transform: translate(-50%, -100%);top: 0;margin-top: 0 }.woocommerce .exad-product-thumb-view-carousel .exad-product-image div.images .flex-control-thumbs{zoom:1;margin: 0;padding: 0;padding-inline-start: 0}.woocommerce div.product .exad-product-image div.images .flex-control-thumbs li{float: none;width: unset}.exad-product-image .woocommerce-product-gallery{width: 100% !important}.woocommerce div.images{margin-bottom: 1em;padding-bottom: 1em}.woocommerce .exad-product-image div.images img{display: block;width: 100%;height: auto;box-shadow: none}.woocommerce .exad-product-image div.images div.thumbnails{padding-top: 1em}.woocommerce .exad-product-image div.images.woocommerce-product-gallery{position: relative}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__wrapper{transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;margin: 0;padding: 0}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color: #fff;opacity: 0}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__image--placeholder{border: 1px solid #f2f2f2}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__image:nth-child(n 2){display: none}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__trigger{position: absolute;top: 0.5rem;right: 0.5rem;font-size: 2em;z-index: 9;width: 36px;height: 36px;background: #fff;text-indent: -9999px;border-radius: 100%;box-sizing: content-box}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__trigger::before{content: "";display: block;width: 10px;height: 10px;border: 2px solid #000;border-radius: 100%;position: absolute;top: 9px;left: 9px;box-sizing: content-box}.woocommerce .exad-product-image div.images .woocommerce-product-gallery__trigger::after{content: "";display: block;width: 2px;height: 8px;background: #000;border-radius: 6px;position: absolute;top: 19px;left: 22px;-webkit-transform: rotate(-45deg);transform: rotate(-45deg);box-sizing: content-box}.woocommerce .exad-product-thumb-view-default .exad-product-image div.images .flex-control-thumbs{overflow: hidden;zoom:1;margin: 0;padding: 0;max-width: 94%;-webkit-transform: translate(-50%, 0);transform: translate(-50%, 0);margin-top: -32px !important;background: transparent;width: 100%;-webkit-flex-wrap: wrap;flex-wrap: wrap;display: -webkit-inline-flex;display: inline-flex;-webkit-justify-content: center;justify-content: center;position: relative;left: 50%}.woocommerce .exad-product-image div.images .flex-control-thumbs li{width: 60px !important;height: 65px;margin: 0;padding-top: 0px;padding-bottom: 0px;background: #fff;display: -webkit-inline-flex;display: inline-flex;list-style: none}.woocommerce .exad-product-image.thumbnails-gallery-align-bottom div.images .flex-control-thumbs li:first-child{width: 65px;padding-left: 5px}.woocommerce .exad-product-image.thumbnails-gallery-align-bottom div.images .flex-control-thumbs li:nth-child(9){width: 65px;padding-left: 5px}.woocommerce .exad-product-image div.images .flex-control-thumbs li img{cursor: pointer;opacity: 0.5;margin: 0;border-top: 5px solid #fff;border-bottom: 0px solid #fff;border-right: 5px solid #fff;border-left: 0}.woocommerce .exad-product-image.thumbnails-gallery-align-left div.images .flex-control-thumbs li img{border-top: 5px solid #fff;border-bottom: 5px solid #fff;border-right: 5px solid #fff;border-left: 5px solid #fff}.woocommerce .exad-product-image div.images .flex-control-thumbs li img.flex-active,.woocommerce .exad-product-image div.images .flex-control-thumbs li img:hover{opacity: 1}.woocommerce div.product div.images .exad-product-thumb-verticle-right .exad-product-image div.images .woocommerce-product-gallery__trigger,.woocommerce .exad-product-thumb-verticle-right .exad-product-image div.images .woocommerce-product-gallery__trigger{top: 15px;right: 75px}.exad-product-navigation{display: flex;align-items: center;list-style: none;margin-bottom: 0;padding-left: 0}@media (max-width: 575px){.exad-product-navigation{flex: 0 0 100%;padding: 0;justify-content: center;margin-top: 1rem}}.exad-product-navigation-link{position: relative;z-index: 100}.exad-product-navigation-link a{display: flex;align-items: center;font-weight: 400;font-size: 1.4rem;line-height: 1.3;letter-spacing: 0;color: #ccc}.exad-product-navigation-link i{font-size: 2rem;line-height: 1;transition: inherit}.exad-product-navigation-link span{display: inline-block;box-shadow: none}.exad-product-navigation-link:hover .dropdown,.exad-product-navigation-link:focus .dropdown{visibility: visible;opacity: 1;z-index: 1;transform: translateY(0px);pointer-events: auto}.exad-product-navigation-link .exad-product-navigation-prev .dropdown{left: 0;right: auto}.exad-product-navigation-link:last-of-type .dropdown{right: 0;left: auto}.exad-product-navigation-link .dropdown{position: absolute;top: 100%;padding-top: 1rem;width: 120px;visibility: hidden;opacity: 0;transition: all 0.3s;pointer-events: none;transform: translateY(10px);display: flex;justify-content: center;align-items: center}.exad-product-navigation-link .product-thumbnail a{position: relative;display: block}.exad-product-navigation-link .product-thumbnail .product-title{text-align: center;transition: color 0.3s;margin-bottom: 0;font-size: 14px}.exad-product-navigation-link .product-thumbnail{border-radius: 0.5rem;box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05), -5px 10px 16px rgba(51, 51, 51, 0.05)}.exad-product-navigation-prev i{margin-right: 0.5rem}.exad-product-navigation-next i{margin-left: 0.5rem}.pagination{display: flex;flex: 0 0 100%;position: relative;justify-content: center!important;align-items: center}.pagination ul{margin-top: 0;margin-bottom: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;list-style: none;border-radius: 0;align-items: center;margin-bottom: 2rem;display: flex}.pagination ul li{margin-right: 5px;margin-left: 5px}.pagination ul li .page-numbers.current{color: #FFF;background-color: #83b735;border: 1px solid #83b735}.page-links{clear: both}.page-links>*{margin-left: 3px}.post-page-numbers,li .page-numbers{display: inline-flex;align-items: center;justify-content: center;min-width: 32px;height: 34px;font-weight: 400;font-size: 1.4rem;padding: 5px;line-height: 1;color: #706f6c;border-radius: 2px;background-color: transparent;border: 1px solid #83b735}.post-page-numbers i,li .page-numbers i{font-size: 1.5rem}.post-page-numbers.prev,li .page-numbers.prev{margin-right: 1.7rem}.post-page-numbers.prev i,li .page-numbers.prev i{margin-left: 0;margin-right: 1rem}.post-page-numbers.next,li .page-numbers.next{margin-left: 1.8rem}.post-page-numbers.next i,li .page-numbers.next i{margin-left: 1rem;margin-right: 0}.post-page-numbers.current,li .page-numbers.current{background-color: transparent;border-color: #ebebeb}.post-page-numbers.next,.post-page-numbers.prev,li .page-numbers.next,li .page-numbers.prev{padding-left: 1rem;padding-right: 1rem;min-width: 80px}.post-page-numbers:focus,.post-page-numbers:hover,li .page-numbers:focus,li .page-numbers:hover{box-shadow: none;border-color: #ebebeb;text-decoration: none;background-color: transparent;outline: none!important}li.disabled .page-numbers{border-color: transparent;color: #999;pointer-events: none;cursor: auto}.exad-promo-box-container{position: relative}.exad-promo-box-container .exad-promo-logo{width: 150px;overflow: hidden;display: table}.exad-promo-box-container .exad-promo-logo img{max-width: 100%;width: 100%;height: 100%;object-fit: cover;-o-object-fit: cover}.exad-promo-box-container.exad-promo-content-type-horizontal{display: flex;align-items: center;justify-content: space-between}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container.exad-promo-content-type-horizontal,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container.exad-promo-content-type-horizontal{width: 100%;max-width: 1170px;margin: 0 auto}.exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-content-container,.exad-promo-box-container.exad-promo-content-type-horizontal .exad-countdown-content-container,.exad-promo-box-container.exad-promo-content-type-horizontal .exad-mailchimp-container{}.exad-promo-box-container .exad-countdown-content-container .exad-countdown-count{font-size: 16px;font-weight: 600;display: block}.exad-promo-box-container .exad-countdown-content-container .exad-countdown-title{font-size: 14px;font-weight: 600;display: block}.exad-promo-box-container.exad-promo-content-type-horizontal .exad-mailchimp-container.exad-mailchimp-type-horizontal .exad-mailchimp-form-container .exad-mailchimp-item{flex: inherit}.exad-promo-box-container .exad-countdown.exad-countdown-title-visibility-no .exad-countdown-container .exad-countdown-timer-wrapper>span.exad-countdown-title{display: none}.exad-mailchimp-submit-btn button{border: 0;outline: none}.exad-promo-box-container.exad-promo-content-type-vertical{display: block}.exad-promo-box-wrapper.exad-promo-allignment-flex-start .exad-promo-box-container.exad-promo-content-type-vertical .exad-promo-logo{margin-right: auto}.exad-promo-box-wrapper.exad-promo-allignment-flex-start .exad-promo-box-container.exad-promo-content-type-vertical .exad-countdown{justify-content: flex-start}.exad-promo-box-wrapper.exad-promo-allignment-flex-start .exad-promo-box-container.exad-promo-content-type-vertical .exad-mailchimp-input-field{margin-right: auto}.exad-promo-box-wrapper.exad-promo-allignment-flex-start .exad-promo-box-container.exad-promo-content-type-vertical .exad-promo-box-item{text-align: left}.exad-promo-box-wrapper.exad-promo-allignment-center .exad-promo-box-container.exad-promo-content-type-vertical .exad-promo-logo{margin-left: auto;margin-right: auto}.exad-promo-box-wrapper.exad-promo-allignment-center .exad-promo-box-container.exad-promo-content-type-vertical .exad-countdown{justify-content: center}.exad-promo-box-wrapper.exad-promo-allignment-center .exad-promo-box-container.exad-promo-content-type-vertical .exad-mailchimp-input-field{margin-left: auto;margin-right: auto}.exad-promo-box-wrapper.exad-promo-allignment-center .exad-promo-box-container.exad-promo-content-type-vertical .exad-promo-box-item{text-align: center}.exad-promo-box-wrapper.exad-promo-allignment-flex-end .exad-promo-box-container.exad-promo-content-type-vertical .exad-promo-logo{margin-left: auto}.exad-promo-box-wrapper.exad-promo-allignment-flex-end .exad-promo-box-container.exad-promo-content-type-vertical .exad-countdown{justify-content: flex-end}.exad-promo-box-wrapper.exad-promo-allignment-flex-end .exad-promo-box-container.exad-promo-content-type-vertical .exad-mailchimp-input-field{margin-left: auto}.exad-promo-box-wrapper.exad-promo-allignment-flex-end .exad-promo-box-container.exad-promo-content-type-vertical .exad-promo-box-item{text-align: right}.exad-promo-box-container.exad-promo-content-type-vertical a.exad-promo-button-link{display: inline-block}.exad-promo-box-container .exad-promo-box-dismiss-icon{position: absolute;transform: translateY(-50%);line-height: 0}.exad-promo-box-container .exad-promo-box-dismiss-icon svg{cursor: pointer}.exad-promo-box-wrapper.exad-promo-position-top,.exad-promo-box-wrapper.exad-promo-position-bottom{position: fixed;left: 0;right: 0;top: 0}.exad-promo-box-wrapper.exad-promo-align-type-horizontal.exad-promo-position-top,.exad-promo-box-wrapper.exad-promo-align-type-horizontal.exad-promo-position-bottom{display: flex;justify-content: space-between;align-items: center}.exad-promo-box-wrapper.exad-promo-position-bottom{top: inherit}body.admin-bar .exad-promo-box-wrapper.exad-promo-position-top{top: 32px}.exad-promo-box-wrapper.exad-promo-position-bottom{position: fixed;left: 0;right: 0;bottom: 0}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-responsive-heading,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-responsive-heading{display: none}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-wrapper,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-wrapper{height: 100px;background: #34495e;padding: 0 20px;color: #fff}.exad-promo-box-wrapper.exad-promo-position-top .show-menu-btn,.exad-promo-box-wrapper.exad-promo-position-top .hide-menu-btn,.exad-promo-box-wrapper.exad-promo-position-bottom .show-menu-btn,.exad-promo-box-wrapper.exad-promo-position-bottom .hide-menu-btn{transition: 0.4s;font-size: 30px;cursor: pointer;display: none}.exad-promo-box-wrapper.exad-promo-position-top .show-menu-btn i,.exad-promo-box-wrapper.exad-promo-position-bottom .show-menu-btn i{line-height: 1}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container a:hover,.exad-promo-box-wrapper.exad-promo-position-top .show-menu-btn:hover,.exad-promo-box-wrapper.exad-promo-position-top .hide-menu-btn:hover,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container a:hover,.exad-promo-box-wrapper.exad-promo-position-bottom .show-menu-btn:hover,.exad-promo-box-wrapper.exad-promo-position-bottom .hide-menu-btn:hover{color: #3498db}.exad-promo-box-wrapper.exad-promo-position-top #exad-promo-responsive-menu,.exad-promo-box-wrapper.exad-promo-position-bottom #exad-promo-responsive-menu{position: absolute;visibility: hidden;z-index: -1111}.exad-promo-box-wrapper .exad-countdown{display: flex;flex-wrap: nowrap;justify-content: center}.exad-promo-box-wrapper .exad-countdown .exad-countdown-container{margin: 0;width: auto}@media screen and (max-width:767px){.exad-promo-box-wrapper.exad-promo-position-top,.exad-promo-box-wrapper.exad-promo-position-bottom{z-index: 9;padding: 0 10px}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-top,.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-bottom{display: flex;justify-content: space-between;align-items: center}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-responsive-heading,.exad-promo-box-wrapper.exad-promo-position-top .show-menu-btn,.exad-promo-box-wrapper.exad-promo-position-top .hide-menu-btn,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-responsive-heading,.exad-promo-box-wrapper.exad-promo-position-bottom .show-menu-btn,.exad-promo-box-wrapper.exad-promo-position-bottom .hide-menu-btn{display: block}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container{position: fixed;width: 100%;height: 100vh;background: #e6e2ff;right: -100%;top: 0;text-align: center;padding: 80px 0;line-height: normal;transition: 0.7s}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container a,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container a{display: block;padding: 20px}.exad-promo-box-wrapper.exad-promo-position-top .hide-menu-btn,.exad-promo-box-wrapper.exad-promo-position-bottom .hide-menu-btn{position: absolute;top: 80px;right: 20px}.exad-promo-box-wrapper.exad-promo-position-top #exad-promo-responsive-menu:checked ~ .exad-promo-box-container,.exad-promo-box-wrapper.exad-promo-position-bottom #exad-promo-responsive-menu:checked ~ .exad-promo-box-container{right: 0}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container .exad-promo-logo,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container .exad-promo-logo{width: 100%;text-align: center;display: inline-block}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container .exad-promo-logo img,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container .exad-promo-logo img{max-width: 150px}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container.exad-promo-content-type-horizontal,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container.exad-promo-content-type-horizontal{flex-direction: column;align-items: inherit;justify-content: center}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-content-container, .exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container.exad-promo-content-type-horizontal .exad-countdown-content-container, .exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container.exad-promo-content-type-horizontal .exad-mailchimp-container,.exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-content-container, .exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container.exad-promo-content-type-horizontal .exad-countdown-content-container, .exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container.exad-promo-content-type-horizontal .exad-mailchimp-container{flex: inherit}.exad-promo-box-wrapper.exad-promo-position-top .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-box-item:not(:last-child), .exad-promo-box-wrapper.exad-promo-position-bottom .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-box-item:not(:last-child){margin: 0 15px !important}.exad-promo-box-wrapper.exad-promo-position-top.exad-responsive-promo-box .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-inner-content,.exad-promo-box-wrapper.exad-promo-position-bottom.exad-responsive-promo-box .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-inner-content{margin: 20px 0 !important}.exad-promo-box-wrapper.exad-promo-position-top.exad-responsive-promo-box .exad-countdown.exad-countdown-divider .exad-countdown-container::after{top: 22% !important}.exad-promo-box-wrapper.exad-promo-position-none .exad-promo-box-container.exad-promo-content-type-horizontal{flex-direction: column}.exad-promo-box-wrapper.exad-promo-position-none .exad-promo-box-container.exad-promo-content-type-horizontal .exad-promo-content-inside-wrapper{margin: 15px 0}body.admin-bar .exad-promo-box-wrapper.exad-promo-position-top{top: 46px}}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-bottom-right{width: 350px;position: fixed;bottom: 0;right: 0}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-bottom-left{width: 350px;position: fixed;bottom: 0;left: 0}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-top-left{width: 350px;position: fixed;top: 0;left: 0}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-top-right{width: 350px;position: fixed;top: 0;right: 0}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-left-center{width: 350px;position: fixed;top: 50%;left: 0;transform: translateY(-50%)}.exad-promo-box-wrapper.exad-promo-align-type-vertical.exad-promo-position-right-center{width: 350px;position: fixed;top: 50%;right: 0;transform: translateY(-50%)}.exad-mailchimp-container .exad-mailchimp-input-field{border: none}#exad-viewmodal{position: fixed;left: 0;top: 0;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;z-index: 999;opacity: 0;visibility: hidden;background-color: transparent;overflow-y: auto}#exad-viewmodal.exadquickview-open{opacity: 1;visibility: visible;background-color: rgba(0,0,0,0.75)}#exad-viewmodal .exad-close-btn{background: transparent none repeat scroll 0 0;color: #000;height: inherit;line-height: inherit;padding: 0;position: absolute;right: 5px;top: 5px;cursor: pointer;display: none}#exad-viewmodal .exad-close-btn:hover{color: red;background: transparent}#exad-viewmodal .exad-modal-quickview-dialog{max-width: 960px;padding: 35px;width: 100%;position: relative;opacity: 0;visibility: hidden;transition: all 0.3s ease 0s;border-radius: 10px}#exad-viewmodal.exadquickview-open .exad-modal-quickview-dialog{opacity: 1;visibility: visible;transition: all 0.3s ease 0.3s}#exad-viewmodal.woocommerce div.product .product_title{color: #010101;font-size: 24px;line-height: 1;margin: 15px 0;display: block}.content-exadquickview.entry-summary{margin: 0;max-height: 450px;overflow-y: auto}#exad-viewmodal.woocommerce div.product p.price, #exad-viewmodal.woocommerce div.product span.price{color: #444444;font-size: 1.25em;margin-bottom: 15px}#exad-viewmodal.woocommerce div.product .woocommerce-product-rating{margin: 15px 0}#exad-viewmodal.woocommerce button.button.alt{background-color: #444444;color: #fff;font-weight: normal;line-height: 1}#exad-viewmodal.woocommerce .ht-qwick-view-left .images{float: left !important}.ht-quick-view-thumbnails .ht-quick-thumb-single{cursor: pointer;padding: 0 2px}.ht-quick-view-thumbnails .slick-slide img{width: 100%;border: 1px solid #cccccc}#exad-viewmodal .quantity{float: left;margin-right: 10px;width: auto}#exad-viewmodal.woocommerce .quantity .qty{text-align: center;width: 3.631em}#exad-viewmodal.woocommerce .product_meta{margin-top: 20px}#exad-viewmodal .star-rating{float: left;margin-right: 10px;margin-top: 4px}#exad-viewmodal.woocommerce div.product div.images{margin-bottom: 5px}#exad-viewmodal.woocommerce div.product .woocommerce-product-gallery__image img{border: 1px solid #ccc}@media (max-width: 450px){#exad-viewmodal .exad-row-wrapper{flex-direction: column}#exad-viewmodal .exad-row-wrapper .exad-col.exad-col-2{flex: 0 0 100%;max-width: 100%}}.exad-row-wrapper .exad-col.exad-col-2{flex: 0 0 50%;max-width: 50%}.exad-quick-view-img-wrapper .woocommerce-product-gallery{opacity: 1}.exad-quick-view-img-wrapper .exad-quick-view-thumbnails{width: 100px;float: left}#exad-viewmodal .woocommerce .exad-product-image div.images .flex-control-thumbs li img{border: 5px solid #fff}#exad-viewmodal .woocommerce div.product form.cart{overflow: hidden}.exad-search-form-container{display: flex;overflow: hidden}.exad-search-button-wrapper input[type=search]{border: 0;padding: 10px;cursor: pointer;border-radius: 0;transition: all .5s;box-sizing: border-box;outline: none}.exad-search-button-wrapper button{border: none;border-radius: 0;padding: 0}.exad-search-button-wrapper input[type=search]:focus{cursor: auto;border: none;box-shadow: none}.exad-search-icon-toggle input:-moz-placeholder,.exad-search-icon-toggle input::-webkit-input-placeholder{color: transparent}.exad-search-button-wrapper.exad-input-focus{display: flex}.exad-search-form-container .exad-search-submit{min-width: 3%;position:relative}.exad-search-form-container button#clear,.exad-search-icon-toggle button#clear{visibility: hidden;position: absolute;right:0;top:0;padding: 0 8px;font-style: normal;user-select: none;cursor: pointer;bottom:0;margin-right:10px;background-color: transparent}.exad-search-button-wrapper input[type="search"]::-webkit-search-decoration,.exad-search-button-wrapper input[type="search"]::-webkit-search-cancel-button,.exad-search-button-wrapper input[type="search"]::-webkit-search-results-button,.exad-search-button-wrapper input[type="search"]::-webkit-search-results-decoration{display: none}.exad-search-form-container button#clear-with-button{visibility: hidden;position: absolute;top: 0;padding: 0 8px;font-style: normal;font-size: 1.2em;user-select: none;cursor: pointer;bottom:0;background-color: transparent}.exad-search-button-wrapper, .exad-search-form-container,.exad-search-icon-toggle,.exad-search-button-wrapper .exad-search-icon-toggle i,.exad-search-button-wrapper .exad-search-icon-toggle i:before{position: relative}.exad-search-button-wrapper .exad-search-icon-toggle .exad-search-form-input{position: absolute;width: 0;right: 0;background-color: transparent}.exad-search-icon-toggle{width: 100%!important}.exad-search-button-wrapper.exad-input-focus .exad-search-icon-toggle .exad-search-form-input{position: absolute;width: 250px;right: 0}.exad-search-type-text .exad-search-form-container,.exad-search-type-icon_text .exad-search-form-container,.exad-search-type-text .exad-search-form-container .exad-search-form-input,.exad-search-type-icon_text .exad-search-form-container .exad-search-form-input{width: 100%}.exad-search-icon-toggle{line-height: 1.5}.woocommerce form.cart div.quantity{float: left;margin: 0 4px 0 0}.woocommerce .exad-product-add-to-cart form.cart div.quantity,.woocommerce .exad-product-add-to-cart form.cart div.quantity{position: relative;display: inline-block;overflow: hidden}.exad-product-add-to-cart .cart .quantity input::-webkit-outer-spin-button,.exad-product-add-to-cart .cart .quantity input::-webkit-inner-spin-button{-webkit-appearance: none;margin: 0}.exad-product-add-to-cart .cart .quantity input.qty{position: relative;border: none}.exad-product-add-to-cart form.cart .quantity input{width: 100%}.exad-quantity-minus-btn, .exad-quantity-plus-btn{position: absolute;top: 50%;transform: translateY(-50%);z-index: 1;height: 96%;width: 30px;padding: 0;border: none}.exad-quantity-minus-btn:hover, .exad-quantity-plus-btn:hover{background: none;border: none}.exad-quantity-minus-btn:focus, .exad-quantity-plus-btn:focus{outline: 0;background: none}.exad-product-add-to-cart .exad-quantity-plus-btn{right: 1px}.exad-product-add-to-cart .exad-quantity-minus-btn{left: 1px}.exad-quantity-minus-btn::before,.exad-quantity-plus-btn::before,.exad-quantity-plus-btn::after{content: '';position: absolute;height: 1px;width: 10px;background: #000;left: 50%;top: 50%;transform: translate(-50%, -50%)}.exad-quantity-plus-btn::after{transform: translate(-50%, -50%) rotate(90deg)}.exad-product-add-to-cart .cart{overflow: hidden !important}.exad-product-add-to-cart .cart button.button:focus{outline: 0}.exad-product-add-to-cart .cart button.button:focus{outline: 0}.woocommerce .exad-woo-cart-block-view .exad-product-add-to-cart form.cart{display: flex;flex-direction: column;float: none}.exad-woo-meta-block-view .exad-product-meta{display: flex;flex-direction: column}.exad-product-meta .exad-meta-container a{display: inline-flex;justify-content: center;align-items: center}.exad-product-related .related .products li a img{object-fit: cover;-o-object-fit: cover;width: 100%}.woocommerce .exad-product-related .related .products li a.woocommerce-LoopProduct-link:before{position: absolute;content: '';left: 0;right: 0;top: 0;bottom: 0;width: 100%;height: 100%;z-index: 0}.woocommerce .exad-product-related .related .products li a span.onsale{background-color: #3bc473;margin-bottom: 3px;padding: 5px 15px;position: relative;color: #fff;font-size: 14px;margin: 0;padding: 0;position: absolute;list-style: none;top: 20px;right: 20px;z-index: 99}.exad-product-related .related .product-prev,.exad-product-related .related .product-next{position: absolute;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);height: 60px;width: 60px;background: transparent;border-radius: 50%;text-align: center;cursor: pointer;transition: all .3s ease;z-index: 1}.exad-product-related .related .product-prev svg,.exad-product-related .related .product-next svg{top: 50%;position: absolute;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 20px}.exad-product-related .related .product-prev:hover,.exad-product-related .related .product-next:hover{color: #0a1724}.exad-product-related .related .product-prev{left: -70px}.exad-product-related .related .product-next{right: -70px}.exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-fraction{position: relative}.exad-product-related .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{width: 100%;height: 4px;left: 0px}.exad-Progressbar-align-top .exad-product-related .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{top: 74px}.exad-Progressbar-align-bottom .exad-product-related .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{bottom: 0}.exad-product-related .exad-swiper-pagination.swiper-pagination-fraction span{display: inline-block;text-align: center}.exad-product-carousel-layout.exad-product-navigation-none .exad-product-related .related .product-prev,.exad-product-carousel-layout.exad-product-navigation-none .exad-product-related .related .product-next,.exad-product-carousel-layout.exad-product-navigation-nav-dots .exad-product-related .related .product-prev,.exad-product-carousel-layout.exad-product-navigation-nav-dots .exad-product-related .related .product-next,.exad-product-carousel-layout.exad-product-navigation-progress-bar .exad-product-related .related .product-prev,.exad-product-carousel-layout.exad-product-navigation-progress-bar .exad-product-related .related .product-next,.exad-product-carousel-layout.exad-product-navigation-fraction .exad-product-related .related .product-prev,.exad-product-carousel-layout.exad-product-navigation-fraction .exad-product-related .related .product-next{display: none;opacity: 0 !important}.woocommerce .related-pro-swiper ul.products, .woocommerce-page .related-pro-swiper ul.products{display: flex;grid-template-columns: unset;column-gap: unset}.woocommerce .related-pro-swiper ul.products .star-rating, .woocommerce-page .related-pro-swiper .star-rating{margin-left: auto;margin-right: auto}.exad-single-product-details{}.exad-single-product-details .woocommerce-tabs .wc-tabs{border: none;display: flex;margin-bottom: 0;padding-left: 0;list-style: none !important}.woocommerce div.product .exad-single-product-details .woocommerce-tabs ul.tabs li{border: 1px solid none;background-color: transparent;display: inline-block;position: relative;z-index: 0;border-radius:0;margin: 0;padding: 0}.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before{border: 1px solid transparent;position: absolute;bottom: -1px;width: 5px;height: 5px;content: none;box-sizing: border-box}@media (max-width: 575px){.exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs .wc-tabs, .exad-single-product-details.exad-tabs-menu-container-align-right .woocommerce-tabs .wc-tabs, .exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs .woocommerce-Tabs-panel, .exad-single-product-details.exad-tabs-menu-container-align-right .woocommerce-tabs .woocommerce-Tabs-panel{width: 100% !important;flex-direction: column;display:block !important}.exad-single-product-details.exad-tabs-menu-container-align-right .woocommerce-tabs,.exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs{display:block !important}.exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs .woocommerce-Tabs-panel{margin-left: 0 !important}}.exad-single-product-details.exad-tabs-menu-container-align-right .woocommerce-tabs,.exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs{display:flex}.exad-single-product-details.exad-tabs-menu-container-align-right .woocommerce-tabs .wc-tabs,.exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs .wc-tabs{display: flex;flex-direction: column}.exad-single-product-details.exad-tabs-menu-container-align-left .woocommerce-tabs .wc-tabs{order: 0}.exad-single-product-details.exad-tabs-menu-container-align-right .woocommerce-tabs .wc-tabs{order: 1}.woocommerce div.product .woocommerce-tabs ul.tabs::before{border-bottom: unset}.exad-product-upsell .upsells .products li a img{object-fit: cover;-o-object-fit: cover;width: 100%}.woocommerce .exad-product-upsell .upsells .products li a.woocommerce-LoopProduct-link:before{position: absolute;content: '';left: 0;right: 0;top: 0;bottom: 0;width: 100%;height: 100%;z-index: 0}.woocommerce .exad-product-upsell .upsells .products li a span.onsale{background-color: #3bc473;margin-bottom: 3px;padding: 5px 15px;position: relative;color: #fff;font-size: 14px;margin: 0;padding: 0;position: absolute;list-style: none;top: 20px;right: 20px;z-index: 99}.exad-product-upsell .upsells .product-prev,.exad-product-upsell .upsells .product-next{position: absolute;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);height: 60px;width: 60px;background: transparent;border-radius: 50%;text-align: center;cursor: pointer;transition: all .3s ease;z-index: 1}.exad-product-upsell .upsells .product-prev svg,.exad-product-upsell .upsells .product-next svg{top: 50%;position: absolute;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 20px}.exad-product-upsell .upsells .product-prev:hover,.exad-product-upsell .upsells .product-next:hover{color: #0a1724}.exad-product-upsell .upsells .product-prev{left: -70px}.exad-product-upsell .upsells .product-next{right: -70px}.exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-fraction{position: relative}.exad-product-upsell .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{width: 100%;height: 4px;left: 0px}.exad-Progressbar-align-top .exad-product-upsell .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{top: 74px}.exad-Progressbar-align-bottom .exad-product-upsell .exad-dots-container .exad-swiper-pagination.swiper-pagination.swiper-pagination-progressbar{bottom: 0}.exad-product-upsell .exad-swiper-pagination.swiper-pagination-fraction span{display: inline-block;text-align: center}.exad-product-upsell-carousel-layout.exad-product-navigation-none .exad-product-upsell .upsells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-none .exad-product-upsell .upsells .product-next,.exad-product-upsell-carousel-layout.exad-product-navigation-nav-dots .exad-product-upsell .upsells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-nav-dots .exad-product-upsell .upsells .product-next,.exad-product-upsell-carousel-layout.exad-product-navigation-progress-bar .exad-product-upsell .upsells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-progress-bar .exad-product-upsell .upsells .product-next,.exad-product-upsell-carousel-layout.exad-product-navigation-fraction .exad-product-upsell .upsells .product-prev,.exad-product-upsell-carousel-layout.exad-product-navigation-fraction .exad-product-upsell .upsells .product-next{display: none;opacity: 0 !important}.woocommerce .upsell-pro-swiper ul.products, .woocommerce-page .upsell-pro-swiper ul.products{display: flex;grid-template-columns: unset;column-gap: unset}.woocommerce .up-sells ul.products .star-rating,.woocommerce-page .up-sells ul.products .star-rating,.woocommerce .upsell-pro-swiper ul.products .star-rating, .woocommerce-page .upsell-pro-swiper ul.products .star-rating{margin-left: auto;margin-right: auto}.exad-site-logo img{transition: all .3s ease}.exad-site-logo .custom-logo-link:focus{outline: 0}.exad-site-link{display: flex;margin: 0}.exad-site-tagline{color: #000;font-size: 22px;margin: 0}.exad-site-link{display: flex;margin: 0}.exad-site-title{color: #000;font-size: 22px;margin: 0}.exad-slider.fullscreen .exad-each-slider-item{height: 100vh}body.admin-bar .exad-slider.fullscreen .exad-each-slider-item{height: calc(100vh - 32px)}.exad-each-slider-item{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;position: relative;overflow: hidden}.exad-each-slider-item .exad-slider-bg-overlay{position: absolute;height: 100%;width: 100%;top: 0;left: 0}.exad-slide-bg{-webkit-flex-basis: 100%;-ms-flex-preferred-size: 100%;flex-basis: 100%;width: 100%;background-repeat: no-repeat;min-width: 100%;min-height: 100%}.exad-slide-inner{-webkit-flex-basis: 100%;-ms-flex-preferred-size: 100%;flex-basis: 100%;width: 100%;color: #fff;display: -webkit-box;display: -ms-flexbox;display: flex;background-repeat: no-repeat;background-position: 50%;position: absolute;top: 0;left: 0;bottom: 0;right: 0}.exad-slide-content{position: relative;z-index: 1;width: 100%;margin: 0 auto}.exad-slide-content .exad-slider-title{font-size: 30px}.exad-slide-content .exad-slider-details{font-size: 18px}.exad-slide-content a{font-size: 15px;display: inline-block}.exad-slider .slick-next, .exad-slider .slick-prev{z-index: 1;font-size: 0;line-height: 0;position: absolute;top: 50%;display: block;padding: 0;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);cursor: pointer;color: transparent;border: none;outline: none;background: rgba(255, 255, 255, .3);outline: none}.exad-slider .slick-next:focus, .exad-slider .slick-prev:focus{outline: none}.exad-slider .slick-prev{left: 0px}.exad-slider .slick-next{right: 0px}.exad-slider .slick-next:before, .exad-slider .slick-prev:before{font-size: 35px;color: #fff;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;opacity: 1;line-height: unset}.exad-slider .slick-prev:hover,.exad-slider .slick-next:hover{background-color: inherit}.exad-slider.dot-bullet ul.slick-dots{bottom: 15px;left: 0;transform: translateX(-50%);position: absolute;display: flex;align-items: center;padding: 0;margin: 0;list-style: none;line-height: 1;width: auto}.exad-slider.dot-bullet ul.slick-dots li{position: relative;display: table;margin: 0;padding: 0;cursor: pointer}.exad-slider.dot-bullet ul.slick-dots li.slick-active{background: rgba(255, 255, 255, 1)}.exad-slider.dot-bullet ul.slick-dots li button{display: none}.exad-slider.dot-image ul.slick-dots{padding: 0;margin: 0;list-style: none;text-align: center}.exad-slider.dot-image ul.slick-dots li{position: relative;display: inline-block;cursor: pointer}.exad-slider .slick-dots{display: flex}.exad-slider.dot-hide .slick-dots{display: none}.exad-slider .slick-dots li a{height: 70px;display: block}.exad-slider .slick-dots li a img{height: 100%;width: 100%;object-fit: cover}.exad-slider.dot-image ul li:first-child{margin-left: 0px !important}.exad-slider.dot-image ul li:last-child{margin-right: 0px !important}.slick-active.slick-current .exad-slider-progressbar-active{position: absolute;top: 0;left: 0;height: 7px;-webkit-animation: exadSliderProgressbar 5000ms ease-in-out;-moz-animation: exadSliderProgressbar 5000ms ease-in-out;-ms-animation: exadSliderProgressbar 5000ms ease-in-out;animation: exadSliderProgressbar 5000ms ease-in-out;background-color: rgba(255, 255, 255, .7);z-index: 99}.exad-slide-content.exad-slide-content-title-background-yes .exad-slide-content{-webkit-background-clip: text;background-clip: text;-webkit-text-fill-color: transparent}@-webkit-keyframes exadSliderProgressbar{from{width: 0}to{width: 100%}}@keyframes exadSliderProgressbar{from{width: 0}to{width: 100%}}@-webkit-keyframes fadeInDown{from{opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0)}to{opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}}@keyframes fadeInDown{from{opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0)}to{opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}}.fadeInDown{-webkit-animation-name: fadeInDown;animation-name: fadeInDown}@-webkit-keyframes fadeOutDown{from{opacity: 1}to{opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0)}}@keyframes fadeOutDown{from{opacity: 1}to{opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0)}}.fadeOutDown{-webkit-animation-name: fadeOutDown;animation-name: fadeOutDown}.animated{-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both}@media (print), (prefers-reduced-motion: reduce){.animated{-webkit-animation-duration: 1ms !important;animation-duration: 1ms !important;-webkit-transition-duration: 1ms !important;transition-duration: 1ms !important;-webkit-animation-iteration-count: 1 !important;animation-iteration-count: 1 !important}}.exad-social-share-icons.exad-social-share-display-horizontal{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;overflow: hidden;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap}.exad-social-share-icons.exad-social-share-display-vertical{display: flex;flex-direction: column}.exad-social-share-icons a{display: inline-flex;align-items: center;transition: all .3s ease}.exad-social-share-icons a svg path{transition: all .3s ease}.exad-social-share-icons.exad-social-share-box-yes a{position: relative}.exad-social-share-icons.exad-social-share-box-yes a i,.exad-social-share-icons.exad-social-share-box-yes a svg{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-source-code pre{position: relative}.exad-source-code.visibility-on-hover pre .exad-copy-button{opacity: 0}.exad-source-code pre .exad-copy-button{position: absolute;content: '';right: 0;top: 0;font-size: 13px;border: none;outline: 0;transition: .3s}.exad-source-code.position-bottom-right pre .exad-copy-button{top: inherit;bottom: 0}.exad-source-code pre .exad-copy-button:focus{outline: 0}.exad-source-code.visibility-on-hover:hover pre .exad-copy-button{opacity: 1}.exad-source-code pre[class*="language-"].line-numbers{position: relative;padding-left: 3.8em;counter-reset: linenumber}.exad-source-code pre[class*="language-"].line-numbers > code{position: relative;white-space: inherit}.exad-source-code .line-numbers .line-numbers-rows{position: absolute;pointer-events: none;top: 0;font-size: 100%;left: -3.8em;width: 3em;letter-spacing: -1px;border-right: 1px solid #999;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none}.exad-source-code .line-numbers-rows > span{display: block;counter-increment: linenumber}.exad-source-code .line-numbers-rows > span:before{content: counter(linenumber);color: #999;display: block;padding-right: 0.8em;text-align: right}/* PrismJS 1.19.0https://prismjs.com/download.html#themes=prism
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/elementor-icons-f5b6abb236.css */
@media all {
/*! elementor-icons - v5.53.0 - 16-07-2026 */
@font-face{font-display: block;font-family:eicons;src:url(https://kothrud.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.53.0);src:url(https://kothrud.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.53.0#iefix) format("embedded-opentype"),url(https://kothrud.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.53.0) format("woff2"),url(https://kothrud.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.53.0) format("woff"),url(https://kothrud.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.53.0) format("truetype"),url(https://kothrud.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.53.0#eicon) format("svg");font-weight:400;font-style:normal;}[class*=" eicon-"],[class^=eicon]{display:inline-block;font-family:eicons;font-size:inherit;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:a 2s infinite linear}.eicon-editor-link:before{content:"\e800"}.eicon-editor-unlink:before{content:"\e801"}.eicon-editor-external-link:before{content:"\e802"}.eicon-editor-close:before{content:"\e803"}.eicon-editor-list-ol:before{content:"\e804"}.eicon-editor-list-ul:before{content:"\e805"}.eicon-editor-bold:before{content:"\e806"}.eicon-editor-italic:before{content:"\e807"}.eicon-editor-underline:before{content:"\e808"}.eicon-editor-paragraph:before{content:"\e809"}.eicon-editor-h1:before{content:"\e80a"}.eicon-editor-h2:before{content:"\e80b"}.eicon-editor-h3:before{content:"\e80c"}.eicon-editor-h4:before{content:"\e80d"}.eicon-editor-h5:before{content:"\e80e"}.eicon-editor-h6:before{content:"\e80f"}.eicon-editor-quote:before{content:"\e810"}.eicon-editor-code:before{content:"\e811"}.eicon-elementor:before{content:"\e812"}.eicon-elementor-circle:before{content:"\e813"}.eicon-pojome:before{content:"\e814"}.eicon-plus:before{content:"\e815"}.eicon-menu-bar:before{content:"\e816"}.eicon-apps:before{content:"\e817"}.eicon-accordion:before{content:"\e818"}.eicon-alert:before{content:"\e819"}.eicon-animation-text:before{content:"\e81a"}.eicon-animation:before{content:"\e81b"}.eicon-banner:before{content:"\e81c"}.eicon-blockquote:before{content:"\e81d"}.eicon-button:before{content:"\e81e"}.eicon-call-to-action:before{content:"\e81f"}.eicon-captcha:before{content:"\e820"}.eicon-carousel:before{content:"\e821"}.eicon-checkbox:before{content:"\e822"}.eicon-columns:before{content:"\e823"}.eicon-countdown:before{content:"\e824"}.eicon-counter:before{content:"\e825"}.eicon-date:before{content:"\e826"}.eicon-divider-shape:before{content:"\e827"}.eicon-divider:before{content:"\e828"}.eicon-download-button:before{content:"\e829"}.eicon-dual-button:before{content:"\e82a"}.eicon-email-field:before{content:"\e82b"}.eicon-facebook-comments:before{content:"\e82c"}.eicon-facebook-like-box:before{content:"\e82d"}.eicon-form-horizontal:before{content:"\e82e"}.eicon-form-vertical:before{content:"\e82f"}.eicon-gallery-grid:before{content:"\e830"}.eicon-gallery-group:before{content:"\e831"}.eicon-gallery-justified:before{content:"\e832"}.eicon-gallery-masonry:before{content:"\e833"}.eicon-icon-box:before{content:"\e834"}.eicon-image-before-after:before{content:"\e835"}.eicon-image-box:before{content:"\e836"}.eicon-image-hotspot:before{content:"\e837"}.eicon-image-rollover:before{content:"\e838"}.eicon-info-box:before{content:"\e839"}.eicon-inner-section:before{content:"\e83a"}.eicon-mailchimp:before{content:"\e83b"}.eicon-menu-card:before{content:"\e83c"}.eicon-navigation-horizontal:before{content:"\e83d"}.eicon-nav-menu:before{content:"\e83e"}.eicon-navigation-vertical:before{content:"\e83f"}.eicon-number-field:before{content:"\e840"}.eicon-parallax:before{content:"\e841"}.eicon-php7:before{content:"\e842"}.eicon-post-list:before{content:"\e843"}.eicon-post-slider:before{content:"\e844"}.eicon-post:before{content:"\e845"}.eicon-posts-carousel:before{content:"\e846"}.eicon-posts-grid:before{content:"\e847"}.eicon-posts-group:before{content:"\e848"}.eicon-posts-justified:before{content:"\e849"}.eicon-posts-masonry:before{content:"\e84a"}.eicon-posts-ticker:before{content:"\e84b"}.eicon-price-list:before{content:"\e84c"}.eicon-price-table:before{content:"\e84d"}.eicon-radio:before{content:"\e84e"}.eicon-rtl:before{content:"\e84f"}.eicon-scroll:before{content:"\e850"}.eicon-search:before{content:"\e851"}.eicon-select:before{content:"\e852"}.eicon-share:before{content:"\e853"}.eicon-sidebar:before{content:"\e854"}.eicon-skill-bar:before{content:"\e855"}.eicon-slider-3d:before{content:"\e856"}.eicon-slider-album:before{content:"\e857"}.eicon-slider-device:before{content:"\e858"}.eicon-slider-full-screen:before{content:"\e859"}.eicon-slider-push:before{content:"\e85a"}.eicon-slider-vertical:before{content:"\e85b"}.eicon-slider-video:before{content:"\e85c"}.eicon-slides:before{content:"\e85d"}.eicon-social-icons:before{content:"\e85e"}.eicon-spacer:before{content:"\e85f"}.eicon-table:before{content:"\e860"}.eicon-tabs:before{content:"\e861"}.eicon-tel-field:before{content:"\e862"}.eicon-text-area:before{content:"\e863"}.eicon-text-field:before{content:"\e864"}.eicon-thumbnails-down:before{content:"\e865"}.eicon-thumbnails-half:before{content:"\e866"}.eicon-thumbnails-right:before{content:"\e867"}.eicon-time-line:before{content:"\e868"}.eicon-toggle:before{content:"\e869"}.eicon-url:before{content:"\e86a"}.eicon-t-letter:before{content:"\e86b"}.eicon-wordpress:before{content:"\e86c"}.eicon-text:before{content:"\e86d"}.eicon-anchor:before{content:"\e86e"}.eicon-bullet-list:before{content:"\e86f"}.eicon-code:before{content:"\e870"}.eicon-favorite:before{content:"\e871"}.eicon-google-maps:before{content:"\e872"}.eicon-image:before{content:"\e873"}.eicon-photo-library:before{content:"\e874"}.eicon-woocommerce:before{content:"\e875"}.eicon-youtube:before{content:"\e876"}.eicon-flip-box:before{content:"\e877"}.eicon-settings:before{content:"\e878"}.eicon-headphones:before{content:"\e879"}.eicon-testimonial:before{content:"\e87a"}.eicon-counter-circle:before{content:"\e87b"}.eicon-person:before{content:"\e87c"}.eicon-chevron-right:before{content:"\e87d"}.eicon-chevron-left:before{content:"\e87e"}.eicon-close:before{content:"\e87f"}.eicon-file-download:before{content:"\e880"}.eicon-save:before{content:"\e881"}.eicon-zoom-in:before{content:"\e882"}.eicon-shortcode:before{content:"\e883"}.eicon-nerd:before{content:"\e884"}.eicon-device-desktop:before{content:"\e885"}.eicon-device-tablet:before{content:"\e886"}.eicon-device-mobile:before{content:"\e887"}.eicon-document-file:before{content:"\e888"}.eicon-folder-o:before{content:"\e889"}.eicon-hypster:before{content:"\e88a"}.eicon-h-align-left:before{content:"\e88b"}.eicon-h-align-right:before{content:"\e88c"}.eicon-h-align-center:before{content:"\e88d"}.eicon-h-align-stretch:before{content:"\e88e"}.eicon-v-align-top:before{content:"\e88f"}.eicon-v-align-bottom:before{content:"\e890"}.eicon-v-align-middle:before{content:"\e891"}.eicon-v-align-stretch:before{content:"\e892"}.eicon-pro-icon:before{content:"\e893"}.eicon-mail:before{content:"\e894"}.eicon-lock-user:before{content:"\e895"}.eicon-testimonial-carousel:before{content:"\e896"}.eicon-media-carousel:before{content:"\e897"}.eicon-section:before{content:"\e898"}.eicon-column:before{content:"\e899"}.eicon-edit:before{content:"\e89a"}.eicon-clone:before{content:"\e89b"}.eicon-trash:before{content:"\e89c"}.eicon-play:before{content:"\e89d"}.eicon-angle-right:before{content:"\e89e"}.eicon-angle-left:before{content:"\e89f"}.eicon-animated-headline:before{content:"\e8a0"}.eicon-menu-toggle:before{content:"\e8a1"}.eicon-fb-embed:before{content:"\e8a2"}.eicon-fb-feed:before{content:"\e8a3"}.eicon-twitter-embed:before{content:"\e8a4"}.eicon-twitter-feed:before{content:"\e8a5"}.eicon-sync:before{content:"\e8a6"}.eicon-import-export:before{content:"\e8a7"}.eicon-check-circle:before{content:"\e8a8"}.eicon-library-save:before{content:"\e8a9"}.eicon-library-download:before{content:"\e9dd"}.eicon-insert:before{content:"\e8ab"}.eicon-preview-medium:before{content:"\e8ac"}.eicon-sort-down:before{content:"\e8ad"}.eicon-sort-up:before{content:"\e8ae"}.eicon-heading:before{content:"\e8af"}.eicon-logo:before{content:"\e8b0"}.eicon-meta-data:before{content:"\e8b1"}.eicon-post-content:before{content:"\e8b2"}.eicon-post-excerpt:before{content:"\e8b3"}.eicon-post-navigation:before{content:"\e8b4"}.eicon-yoast:before{content:"\e8b5"}.eicon-nerd-chuckle:before{content:"\e8b6"}.eicon-nerd-wink:before{content:"\e8b7"}.eicon-comments:before{content:"\e8b8"}.eicon-download-circle-o:before{content:"\e8b9"}.eicon-library-upload:before{content:"\e8ba"}.eicon-save-o:before{content:"\e8bb"}.eicon-upload-circle-o:before{content:"\e8bc"}.eicon-ellipsis-h:before{content:"\e8bd"}.eicon-ellipsis-v:before{content:"\e8be"}.eicon-arrow-left:before{content:"\e8bf"}.eicon-arrow-right:before{content:"\e8c0"}.eicon-arrow-up:before{content:"\e8c1"}.eicon-arrow-down:before{content:"\e8c2"}.eicon-play-o:before{content:"\e8c3"}.eicon-archive-posts:before{content:"\e8c4"}.eicon-archive-title:before{content:"\e8c5"}.eicon-featured-image:before{content:"\e8c6"}.eicon-post-info:before{content:"\e8c7"}.eicon-post-title:before{content:"\e8c8"}.eicon-site-logo:before{content:"\e8c9"}.eicon-site-search:before{content:"\e8ca"}.eicon-site-title:before{content:"\e8cb"}.eicon-plus-square:before{content:"\e8cc"}.eicon-minus-square:before{content:"\e8cd"}.eicon-cloud-check:before{content:"\e8ce"}.eicon-drag-n-drop:before{content:"\e8cf"}.eicon-welcome:before{content:"\e8d0"}.eicon-handle:before{content:"\e8d1"}.eicon-cart:before{content:"\e8d2"}.eicon-product-add-to-cart:before{content:"\e8d3"}.eicon-product-breadcrumbs:before{content:"\e8d4"}.eicon-product-categories:before{content:"\e8d5"}.eicon-product-description:before{content:"\e8d6"}.eicon-product-images:before{content:"\e8d7"}.eicon-product-info:before{content:"\e8d8"}.eicon-product-meta:before{content:"\e8d9"}.eicon-product-pages:before{content:"\e8da"}.eicon-product-price:before{content:"\e8db"}.eicon-product-rating:before{content:"\e8dc"}.eicon-product-related:before{content:"\e8dd"}.eicon-product-stock:before{content:"\e8de"}.eicon-product-tabs:before{content:"\e8df"}.eicon-product-title:before{content:"\e8e0"}.eicon-product-upsell:before{content:"\e8e1"}.eicon-products:before{content:"\e8e2"}.eicon-bag-light:before{content:"\e8e3"}.eicon-bag-medium:before{content:"\e8e4"}.eicon-bag-solid:before{content:"\e8e5"}.eicon-basket-light:before{content:"\e8e6"}.eicon-basket-medium:before{content:"\e8e7"}.eicon-basket-solid:before{content:"\e8e8"}.eicon-cart-light:before{content:"\e8e9"}.eicon-cart-medium:before{content:"\e8ea"}.eicon-cart-solid:before{content:"\e8eb"}.eicon-exchange:before{content:"\e8ec"}.eicon-preview-thin:before{content:"\e8ed"}.eicon-device-laptop:before{content:"\e8ee"}.eicon-collapse:before{content:"\e8ef"}.eicon-expand:before{content:"\e8f0"}.eicon-navigator:before{content:"\e8f1"}.eicon-plug:before{content:"\e8f2"}.eicon-dashboard:before{content:"\e8f3"}.eicon-typography:before{content:"\e8f4"}.eicon-info-circle-o:before{content:"\e8f5"}.eicon-integration:before{content:"\e8f6"}.eicon-plus-circle-o:before{content:"\e8f7"}.eicon-rating:before{content:"\e8f8"}.eicon-review:before{content:"\e8f9"}.eicon-tools:before{content:"\e8fa"}.eicon-loading:before{content:"\e8fb"}.eicon-sitemap:before{content:"\e8fc"}.eicon-click:before{content:"\e8fd"}.eicon-clock:before{content:"\e8fe"}.eicon-library-open:before{content:"\e8ff"}.eicon-warning:before{content:"\e900"}.eicon-flow:before{content:"\e901"}.eicon-cursor-move:before{content:"\e902"}.eicon-arrow-circle-left:before{content:"\e903"}.eicon-flash:before{content:"\e904"}.eicon-redo:before{content:"\e905"}.eicon-ban:before{content:"\e906"}.eicon-barcode:before{content:"\e907"}.eicon-calendar:before{content:"\e908"}.eicon-caret-left:before{content:"\e909"}.eicon-caret-right:before{content:"\e90a"}.eicon-caret-up:before{content:"\e90b"}.eicon-chain-broken:before{content:"\e90c"}.eicon-check-circle-o:before{content:"\e90d"}.eicon-check:before{content:"\e90e"}.eicon-chevron-double-left:before{content:"\e90f"}.eicon-chevron-double-right:before{content:"\e910"}.eicon-undo:before{content:"\e911"}.eicon-filter:before{content:"\e912"}.eicon-circle-o:before{content:"\e913"}.eicon-circle:before{content:"\e914"}.eicon-clock-o:before{content:"\e915"}.eicon-cog:before{content:"\e916"}.eicon-cogs:before{content:"\e917"}.eicon-commenting-o:before{content:"\e918"}.eicon-copy:before{content:"\e919"}.eicon-database:before{content:"\e91a"}.eicon-dot-circle-o:before{content:"\e91b"}.eicon-envelope:before{content:"\e91c"}.eicon-external-link-square:before{content:"\e91d"}.eicon-eyedropper:before{content:"\e91e"}.eicon-folder:before{content:"\e91f"}.eicon-font:before{content:"\e920"}.eicon-adjust:before{content:"\e921"}.eicon-lightbox:before{content:"\e922"}.eicon-heart-o:before{content:"\e923"}.eicon-history:before{content:"\e924"}.eicon-image-bold:before{content:"\e925"}.eicon-info-circle:before{content:"\e926"}.eicon-link:before{content:"\e927"}.eicon-long-arrow-left:before{content:"\e928"}.eicon-long-arrow-right:before{content:"\e929"}.eicon-caret-down:before{content:"\e92a"}.eicon-paint-brush:before{content:"\e92b"}.eicon-pencil:before{content:"\e92c"}.eicon-plus-circle:before{content:"\e92d"}.eicon-zoom-in-bold:before{content:"\e92e"}.eicon-sort-amount-desc:before{content:"\e92f"}.eicon-sign-out:before{content:"\e930"}.eicon-spinner:before{content:"\e931"}.eicon-square:before{content:"\e932"}.eicon-star-o:before{content:"\e933"}.eicon-star:before{content:"\e934"}.eicon-text-align-justify:before{content:"\e935"}.eicon-text-align-center:before{content:"\e936"}.eicon-tags:before{content:"\e937"}.eicon-text-align-left:before{content:"\e938"}.eicon-text-align-right:before{content:"\e939"}.eicon-close-circle:before{content:"\e93a"}.eicon-trash-o:before{content:"\e93b"}.eicon-font-awesome:before{content:"\e93c"}.eicon-user-circle-o:before{content:"\e93d"}.eicon-video-camera:before{content:"\e93e"}.eicon-heart:before{content:"\e93f"}.eicon-wrench:before{content:"\e940"}.eicon-help:before{content:"\e941"}.eicon-help-o:before{content:"\e942"}.eicon-zoom-out-bold:before{content:"\e943"}.eicon-plus-square-o:before{content:"\e944"}.eicon-minus-square-o:before{content:"\e945"}.eicon-minus-circle:before{content:"\e946"}.eicon-minus-circle-o:before{content:"\e947"}.eicon-code-bold:before{content:"\e948"}.eicon-cloud-upload:before{content:"\e949"}.eicon-search-bold:before{content:"\e94a"}.eicon-map-pin:before{content:"\e94b"}.eicon-meetup:before{content:"\e94c"}.eicon-slideshow:before{content:"\e94d"}.eicon-t-letter-bold:before{content:"\e94e"}.eicon-preferences:before{content:"\e94f"}.eicon-table-of-contents:before{content:"\e950"}.eicon-tv:before{content:"\e951"}.eicon-upload:before{content:"\e952"}.eicon-instagram-comments:before{content:"\e953"}.eicon-instagram-nested-gallery:before{content:"\e954"}.eicon-instagram-post:before{content:"\e955"}.eicon-instagram-video:before{content:"\e956"}.eicon-instagram-gallery:before{content:"\e957"}.eicon-instagram-likes:before{content:"\e958"}.eicon-facebook:before{content:"\e959"}.eicon-twitter:before{content:"\e95a"}.eicon-pinterest:before{content:"\e95b"}.eicon-frame-expand:before{content:"\e95c"}.eicon-frame-minimize:before{content:"\e95d"}.eicon-archive:before{content:"\e95e"}.eicon-colors-typography:before{content:"\e95f"}.eicon-custom:before{content:"\e960"}.eicon-footer:before{content:"\e961"}.eicon-header:before{content:"\e962"}.eicon-layout-settings:before{content:"\e963"}.eicon-lightbox-expand:before{content:"\e964"}.eicon-error-404:before{content:"\e965"}.eicon-theme-style:before{content:"\e966"}.eicon-search-results:before{content:"\e967"}.eicon-single-post:before{content:"\e968"}.eicon-site-identity:before{content:"\e969"}.eicon-theme-builder:before{content:"\e96a"}.eicon-download-bold:before{content:"\e96b"}.eicon-share-arrow:before{content:"\e96c"}.eicon-global-settings:before{content:"\e96d"}.eicon-user-preferences:before{content:"\e96e"}.eicon-lock:before{content:"\e96f"}.eicon-export-kit:before{content:"\e970"}.eicon-import-kit:before{content:"\e971"}.eicon-lottie:before{content:"\e972"}.eicon-products-archive:before{content:"\e973"}.eicon-single-product:before{content:"\e974"}.eicon-disable-trash-o:before{content:"\e975"}.eicon-single-page:before{content:"\e976"}.eicon-wordpress-light:before{content:"\e977"}.eicon-cogs-check:before{content:"\e978"}.eicon-custom-css:before{content:"\e979"}.eicon-global-colors:before{content:"\e97a"}.eicon-globe:before{content:"\e97b"}.eicon-typography-1:before{content:"\e97c"}.eicon-background:before{content:"\e97d"}.eicon-device-responsive:before{content:"\e97e"}.eicon-device-wide:before{content:"\e97f"}.eicon-code-highlight:before{content:"\e980"}.eicon-video-playlist:before{content:"\e981"}.eicon-download-kit:before{content:"\e982"}.eicon-kit-details:before{content:"\e983"}.eicon-kit-parts:before{content:"\e984"}.eicon-kit-upload:before{content:"\e985"}.eicon-kit-plugins:before{content:"\e986"}.eicon-kit-upload-alt:before{content:"\e987"}.eicon-hotspot:before{content:"\e988"}.eicon-paypal-button:before{content:"\e989"}.eicon-shape:before{content:"\e98a"}.eicon-wordart:before{content:"\e98b"}.eicon-checkout:before{content:"\e98c"}.eicon-container:before{content:"\e98d"}.eicon-flip:before{content:"\e98e"}.eicon-info:before{content:"\e98f"}.eicon-my-account:before{content:"\e990"}.eicon-purchase-summary:before{content:"\e991"}.eicon-page-transition:before{content:"\e992"}.eicon-spotify:before{content:"\e993"}.eicon-stripe-button:before{content:"\e994"}.eicon-woo-settings:before{content:"\e995"}.eicon-woo-cart:before{content:"\e996"}.eicon-grow:before{content:"\e997"}.eicon-order-end:before{content:"\e998"}.eicon-nowrap:before{content:"\e999"}.eicon-order-start:before{content:"\e99a"}.eicon-progress-tracker:before{content:"\e99b"}.eicon-shrink:before{content:"\e99c"}.eicon-wrap:before{content:"\e99d"}.eicon-align-center-h:before{content:"\e99e"}.eicon-align-center-v:before{content:"\e99f"}.eicon-align-end-h:before{content:"\e9a0"}.eicon-align-end-v:before{content:"\e9a1"}.eicon-align-start-h:before{content:"\e9a2"}.eicon-align-start-v:before{content:"\e9a3"}.eicon-align-stretch-h:before{content:"\e9a4"}.eicon-align-stretch-v:before{content:"\e9a5"}.eicon-justify-center-h:before{content:"\e9a6"}.eicon-justify-center-v:before{content:"\e9a7"}.eicon-justify-end-h:before{content:"\e9a8"}.eicon-justify-end-v:before{content:"\e9a9"}.eicon-justify-space-around-h:before{content:"\e9aa"}.eicon-justify-space-around-v:before{content:"\e9ab"}.eicon-justify-space-between-h:before{content:"\e9ac"}.eicon-justify-space-between-v:before{content:"\e9ad"}.eicon-justify-space-evenly-h:before{content:"\e9ae"}.eicon-justify-space-evenly-v:before{content:"\e9af"}.eicon-justify-start-h:before{content:"\e9b0"}.eicon-justify-start-v:before{content:"\e9b1"}.eicon-woocommerce-cross-sells:before{content:"\e9b2"}.eicon-woocommerce-notices:before{content:"\e9b3"}.eicon-inner-container:before{content:"\e9b4"}.eicon-warning-full:before{content:"\e9b5"}.eicon-exit:before{content:"\e9b6"}.eicon-loop-builder:before{content:"\e9b7"}.eicon-notes:before{content:"\e9b8"}.eicon-read:before{content:"\e9b9"}.eicon-unread:before{content:"\e9ba"}.eicon-carousel-loop:before{content:"\e9bb"}.eicon-mega-menu:before{content:"\eb78"}.eicon-nested-carousel:before{content:"\e9bd"}.eicon-ai:before{content:"\e9be"}.eicon-taxonomy-filter:before{content:"\eb7d"}.eicon-container-grid:before{content:"\ef02"}.eicon-upgrade:before{content:"\e9c1"}.eicon-advanced:before{content:"\eb84"}.eicon-div-block:before{content:"\eb9b"}.eicon-notification:before{content:"\e9c3"}.eicon-light-mode:before{content:"\e9c4"}.eicon-dark-mode:before{content:"\e9c5"}.eicon-upgrade-crown:before{content:"\e9c6"}.eicon-off-canvas:before{content:"\e9c7"}.eicon-speakerphone:before{content:"\e9c9"}.eicon-ehp-cta:before{content:"\e9cb"}.eicon-ehp-forms:before{content:"\e9bc"}.eicon-ehp-hero:before{content:"\e9ca"}.eicon-ehp-zigzag:before{content:"\e9cc"}.eicon-e-button:before{content:"\e9ce"}.eicon-flexbox:before{content:"\e9d0"}.eicon-paragraph:before{content:"\e9d1"}.eicon-icon:before{content:"\e9d2"}.eicon-e-image:before{content:"\e9d3"}.eicon-video:before{content:"\e9d4"}.eicon-svg:before{content:"\e9d5"}.eicon-e-divider:before{content:"\e9d6"}.eicon-e-heading:before{content:"\e9d7"}.eicon-atomic:before{content:"\ebae"}.eicon-library-delete:before{content:"\e9d8"}.eicon-library-copy:before{content:"\e9d9"}.eicon-library-folder-empty:before{content:"\e9da"}.eicon-library-move:before{content:"\e9db"}.eicon-library-edit:before{content:"\e9dc"}.eicon-library-subscription-upgrade:before{content:"\e9de"}.eicon-library-folder-view:before{content:"\e9df"}.eicon-library-grid:before{content:"\e9e1"}.eicon-library-cloud-connect:before{content:"\e9e2"}.eicon-library-import:before{content:"\e9e3"}.eicon-library-list:before{content:"\e9e4"}.eicon-library-cloud-empty:before{content:"\e9e5"}.eicon-folder-plus:before{content:"\e8aa"}.eicon-library-folder:before{content:"\e9e6"}.eicon-accessibility:before{content:"\e9bf"}.eicon-lock-outline:before{content:"\e9e7"}.eicon-e-youtube:before{content:"\e9e8"}.eicon-contact:before{content:"\ebd2"}.eicon-layout:before{content:"\ebd8"}.eicon-components:before{content:"\ebd9"}.eicon-tab-content:before{content:"\ebda"}.eicon-tab-menu:before{content:"\ebdb"}.eicon-atomic-label:before{content:"\e9ee"}.eicon-atomic-form:before{content:"\e9ef"}.eicon-atomic-submit-button:before{content:"\e9f0"}.eicon-atomic-input:before{content:"\e9f1"}.eicon-atomic-text-area:before{content:"\e9f2"}.eicon-atomic-select:before{content:"\e9f3"}.eicon-atomic-checkbox:before{content:"\e9f4"}.eicon-atomic-radiobutton:before{content:"\e9f5"}.eicon-atomic-file-upload:before{content:"\ebe9"}.eicon-atomic-time-picker:before{content:"\ebea"}.eicon-atomic-date-picker:before{content:"\ebeb"}.eicon-upgrade-crown-full:before{content:"\ef03"}.eicon-after:before{content:"\ebfa"}.eicon-pagination-item:before{content:"\ebfb"}.eicon-before:before{content:"\ebfc"}.eicon-pagination:before{content:"\ebfd"}.eicon-loop-item:before{content:"\ec00"}.eicon-loop-widget:before{content:"\ec01"}.eicon-x-twitter:before{content:"\ef04"}.eicon-eye:before{content:"\e8ac"}.eicon-elementor-square:before{content:"\e813"}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/exclusive-addons-elementor-pro/assets/css/exad-pro-eicons-styles.min.css?ver=7.0.4 */
@media all {
.exad-slider .slick-prev:before{content:"\e89f"}.exad-slider .slick-next:before{content:"\e89e"}.exad-slider .slick-next:before,.exad-slider .slick-prev:before{font-family:eicons}.exad-woo-products-container.woocommerce .exad-woo-product-carousel-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a:after{font-family:eicons;content:'\e8e9'}.exad-woo-products-container.woocommerce .exad-woo-product-carousel-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a.loading:after{font-family:eicons;content:'\e931'}.exad-woo-products-container.woocommerce .exad-woo-product-carousel-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a.added_to_cart:after{font-family:eicons;content:'\e90e'}.exad-woo-products.woocommerce .exad-woo-product-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a:after{font-family:eicons;content:'\e8e9'}.exad-woo-products.woocommerce .exad-woo-product-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a.exad-product-quickview-btn:after{font-family:eicons;content:'\e8ed'}.exad-woo-products.woocommerce .exad-woo-product-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a.loading:after{font-family:eicons;content:'\e931'}.exad-woo-products.woocommerce .exad-woo-product-item .exad-single-woo-product-image .exad-single-woo-product-hover-items a.added_to_cart:after{font-family:eicons;content:'\e90e'}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/css/slick.min.css?ver=7.0.4 */
@media all {
.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list,.slick-slider{position:relative;display:block}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translateZ(0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/exad-slick-theme-393e02b171.css */
@media all {
@font-face{font-display: swap;font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/slick.eot');
    src: url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/slick.eot?#iefix') format('embedded-opentype'), 
    url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/slick.woff') format('woff'), 
    url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/slick.ttf') format('truetype'), 
    url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/slick.svg#slick') format('svg');
;}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px !important;
    left: auto !important;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next, 
html[dir='rtl'] .slick-next, 
body.rtl .slick-next
{
    right: auto !important;
    left: -25px !important;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wp-cio/css/exad-image-hover-5e229cdfe8.css */
@media all {
/* *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; } // required */
@font-face{font-display: block;font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
;}

.exad-ihe-grid {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

/* Common style */
.exad-ihe-grid figure.exad-ihe-figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	/* min-width: 320px;
	max-width: 480px;
	max-height: 360px; */
	width: 100%;
	background: #3085a3;
	text-align: center;
	/* cursor: pointer; */
}

.exad-ihe-grid figure.exad-ihe-figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
	width: 100%;
}

.exad-ihe-grid figure.exad-ihe-figure figcaption.exad-ihe-figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.exad-ihe-grid figure.exad-ihe-figure figcaption.exad-ihe-figcaption::before,
.exad-ihe-grid figure.exad-ihe-figure figcaption.exad-ihe-figcaption::after {
	pointer-events: none;
}

.exad-ihe-grid figure.exad-ihe-figure figcaption.exad-ihe-figcaption,
.exad-ihe-grid figure.exad-ihe-figure figcaption.exad-ihe-figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
.exad-ihe-grid figure.exad-ihe-figure figcaption.exad-ihe-figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.exad-ihe-grid figure.exad-ihe-figure .exad-ihe-title {
	word-spacing: -0.15em;
	font-weight: 300;
}

.exad-ihe-grid figure.exad-ihe-figure .exad-ihe-title span {
	font-weight: 800;
}

.exad-ihe-grid figure.exad-ihe-figure .exad-ihe-title,
.exad-ihe-grid figure.exad-ihe-figure p {
	margin: 0;
}

.exad-ihe-grid figure.exad-ihe-figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.exad-ihe-figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.exad-ihe-figure.effect-lily figcaption.exad-ihe-figcaption {
	text-align: left;
}

figure.exad-ihe-figure.effect-lily figcaption.exad-ihe-figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 50%;
}

figure.exad-ihe-figure.effect-lily .exad-ihe-title,
figure.exad-ihe-figure.effect-lily p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.exad-ihe-figure.effect-lily .exad-ihe-title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-lily p {
	color: rgba(255,255,255,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.exad-ihe-figure.effect-lily:hover img,
figure.exad-ihe-figure.effect-lily:hover p {
	opacity: 1;
}

figure.exad-ihe-figure.effect-lily:hover img,
figure.exad-ihe-figure.effect-lily:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-lily:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}

/*---------------*/
/***** Sadie *****/
/*---------------*/

figure.exad-ihe-figure.effect-sadie figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
	background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
}

figure.exad-ihe-figure.effect-sadie .exad-ihe-title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: #484c61;
	-webkit-transition: -webkit-transform 0.35s, color 0.35s;
	transition: transform 0.35s, color 0.35s;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

figure.exad-ihe-figure.effect-sadie figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-sadie p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-sadie p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
}

figure.exad-ihe-figure.effect-sadie:hover .exad-ihe-title {
	color: #fff;
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
	transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
}

figure.exad-ihe-figure.effect-sadie:hover figcaption.exad-ihe-figcaption::before ,
figure.exad-ihe-figure.effect-sadie:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Roxy *****/
/*---------------*/

figure.exad-ihe-figure.effect-roxy {
	background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
	background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
}

figure.exad-ihe-figure.effect-roxy img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50px,0,0);
	transform: translate3d(-50px,0,0);
}

figure.exad-ihe-figure.effect-roxy figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-20px,0,0);
	transform: translate3d(-20px,0,0);
}

figure.exad-ihe-figure.effect-roxy figcaption.exad-ihe-figcaption {
	padding: 3em;
	text-align: left;
}

figure.exad-ihe-figure.effect-roxy .exad-ihe-title {
	padding: 30% 0 10px 0;
}

figure.exad-ihe-figure.effect-roxy p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
}

figure.exad-ihe-figure.effect-roxy:hover img {
	opacity: 0.7;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-roxy:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-roxy:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Bubba *****/
/*---------------*/

figure.exad-ihe-figure.effect-bubba {
	background: #9e5406;
}

figure.exad-ihe-figure.effect-bubba img {
	opacity: 0.7;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-bubba:hover img {
	opacity: 0.4;
}

figure.exad-ihe-figure.effect-bubba figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-bubba figcaption.exad-ihe-figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-bubba figcaption.exad-ihe-figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.exad-ihe-figure.effect-bubba figcaption.exad-ihe-figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

figure.exad-ihe-figure.effect-bubba .exad-ihe-title {
	padding-top: 30%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

figure.exad-ihe-figure.effect-bubba p {
	padding: 20px 2.5em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.exad-ihe-figure.effect-bubba:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-bubba:hover figcaption.exad-ihe-figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.exad-ihe-figure.effect-bubba:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Romeo *****/
/*---------------*/

figure.exad-ihe-figure.effect-romeo img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.4,1.4,1);
	transform: scale3d(1.4,1.4,1);
}

figure.exad-ihe-figure.effect-romeo:hover img {
	opacity: 0.6;
	-webkit-transform: scale3d(1,1,1);
	transform: translate3d(1,1,1);
}

figure.exad-ihe-figure.effect-romeo figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-romeo figcaption.exad-ihe-figcaption::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	height: 1px;
	background: #fff;
	content: '';
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

figure.exad-ihe-figure.effect-romeo:hover figcaption.exad-ihe-figcaption::before {
	opacity: 0.5;
	-webkit-transform: translate3d(-50%,-50%,0) rotate(45deg);
	transform: translate3d(-50%,-50%,0) rotate(45deg);
}

figure.exad-ihe-figure.effect-romeo:hover figcaption.exad-ihe-figcaption::after {
	opacity: 0.5;
	-webkit-transform: translate3d(-50%,-50%,0) rotate(-45deg);
	transform: translate3d(-50%,-50%,0) rotate(-45deg);
}

figure.exad-ihe-figure.effect-romeo .exad-ihe-title,
figure.exad-ihe-figure.effect-romeo p {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-romeo .exad-ihe-title {
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
	transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
}

figure.exad-ihe-figure.effect-romeo p {
	padding: 0.25em 2em;
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,150%,0);
	transform: translate3d(0,-50%,0) translate3d(0,150%,0);
}

figure.exad-ihe-figure.effect-romeo:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
	transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
}

figure.exad-ihe-figure.effect-romeo:hover p {
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,100%,0);
	transform: translate3d(0,-50%,0) translate3d(0,100%,0);
}

/*---------------*/
/***** Layla *****/
/*---------------*/

figure.exad-ihe-figure.effect-layla {
	background: #18a367;
}

/* figure.exad-ihe-figure.effect-layla img {
	height: 390px;
} */

figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption {
	padding: 3em;
}

figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption::after {
	position: absolute;
	content: '';
	opacity: 0;
}

figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption::before {
	top: 50px;
	right: 30px;
	bottom: 50px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption::after {
	top: 30px;
	right: 50px;
	bottom: 30px;
	left: 50px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

figure.exad-ihe-figure.effect-layla .exad-ihe-title {
	padding-top: 26%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-layla p {
	padding: 0.5em 2em;
	text-transform: none;
	opacity: 0;
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
}

figure.exad-ihe-figure.effect-layla img,
figure.exad-ihe-figure.effect-layla .exad-ihe-title {
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
}

figure.exad-ihe-figure.effect-layla img,
figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-layla figcaption.exad-ihe-figcaption::after,
figure.exad-ihe-figure.effect-layla p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-layla:hover img {
	opacity: 0.7;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-layla:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-layla:hover figcaption.exad-ihe-figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.exad-ihe-figure.effect-layla:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-layla:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-layla:hover figcaption.exad-ihe-figcaption::after,
figure.exad-ihe-figure.effect-layla:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-layla:hover p,
figure.exad-ihe-figure.effect-layla:hover img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

/*---------------*/
/***** Honey *****/
/*---------------*/

figure.exad-ihe-figure.effect-honey {
	background: #4a3753;
}

figure.exad-ihe-figure.effect-honey img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-honey:hover img {
	opacity: 0.5;
}

figure.exad-ihe-figure.effect-honey figcaption.exad-ihe-figcaption::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #fff;
	content: '';
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
}

figure.exad-ihe-figure.effect-honey .exad-ihe-title {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 1em 1.5em;
	width: 100%;
	text-align: left;
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
}

figure.exad-ihe-figure.effect-honey .exad-ihe-title i {
	font-style: normal;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
}

figure.exad-ihe-figure.effect-honey figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-honey .exad-ihe-title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-honey:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-honey:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-honey:hover .exad-ihe-title i {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.exad-ihe-figure.effect-oscar {
	background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
	background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}

figure.exad-ihe-figure.effect-oscar img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-oscar figcaption.exad-ihe-figcaption {
	padding: 3em;
	background-color: rgba(58,52,42,0.7);
	-webkit-transition: background-color 0.35s;
	transition: background-color 0.35s;
}

figure.exad-ihe-figure.effect-oscar figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
}

figure.exad-ihe-figure.effect-oscar .exad-ihe-title {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.exad-ihe-figure.effect-oscar figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-oscar p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.exad-ihe-figure.effect-oscar:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-oscar:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-oscar:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.exad-ihe-figure.effect-oscar:hover figcaption.exad-ihe-figcaption {
	background-color: rgba(58,52,42,0);
}

figure.exad-ihe-figure.effect-oscar:hover img {
	opacity: 0.4;
}

/*---------------*/
/***** Marley *****/
/*---------------*/

figure.exad-ihe-figure.effect-marley figcaption.exad-ihe-figcaption {
	text-align: right;
}

figure.exad-ihe-figure.effect-marley .exad-ihe-title,
figure.exad-ihe-figure.effect-marley p {
	position: absolute;
	right: 30px;
	left: 30px;
	padding: 10px 0;
}


figure.exad-ihe-figure.effect-marley p {
	bottom: 30px;
	line-height: 1.5;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.exad-ihe-figure.effect-marley .exad-ihe-title {
	top: 30px;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.exad-ihe-figure.effect-marley:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-marley .exad-ihe-title::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	content: '';
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.exad-ihe-figure.effect-marley .exad-ihe-title::after,
figure.exad-ihe-figure.effect-marley p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-marley:hover .exad-ihe-title::after,
figure.exad-ihe-figure.effect-marley:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Ruby *****/
/*---------------*/

figure.exad-ihe-figure.effect-ruby {
	background-color: #17819c;
}

figure.exad-ihe-figure.effect-ruby img {
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

figure.exad-ihe-figure.effect-ruby:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.exad-ihe-figure.effect-ruby .exad-ihe-title {
	margin-top: 20%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.exad-ihe-figure.effect-ruby p {
	margin: 1em 0 0;
	padding: 3em;
	border: 1px solid #fff;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0) scale(1.1);
	transform: translate3d(0,20px,0) scale(1.1);
} 

figure.exad-ihe-figure.effect-ruby:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-ruby:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

/*---------------*/
/***** Milo *****/
/*---------------*/

figure.exad-ihe-figure.effect-milo {
	background: #2e5d5a;
}

figure.exad-ihe-figure.effect-milo img {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	opacity: 1;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-30px,0,0) scale(1.12);
	transform: translate3d(-30px,0,0) scale(1.12);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.exad-ihe-figure.effect-milo:hover img {
	opacity: 0.5;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

figure.exad-ihe-figure.effect-milo .exad-ihe-title {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 1em 1.2em;
}

figure.exad-ihe-figure.effect-milo p {
	padding: 0 10px 0 0;
	width: 50%;
	border-right: 1px solid #fff;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0,0);
	transform: translate3d(-40px,0,0);
}

figure.exad-ihe-figure.effect-milo:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Dexter *****/
/*---------------*/

figure.exad-ihe-figure.effect-dexter {
	background: -webkit-linear-gradient(top, rgba(37,141,200,1) 0%, rgba(104,60,19,1) 100%);
	background: linear-gradient(to bottom, rgba(37,141,200,1) 0%,rgba(104,60,19,1) 100%); 
}

figure.exad-ihe-figure.effect-dexter img {
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-dexter:hover img {
	opacity: 0.4;
}

figure.exad-ihe-figure.effect-dexter figcaption.exad-ihe-figcaption::after {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	height: -webkit-calc(50% - 30px);
	height: calc(50% - 30px);
	border: 7px solid #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}

figure.exad-ihe-figure.effect-dexter:hover figcaption.exad-ihe-figcaption::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-dexter figcaption.exad-ihe-figcaption {
	padding: 3em;
	text-align: left;
}

figure.exad-ihe-figure.effect-dexter p {
	position: absolute;
	right: 60px;
	bottom: 60px;
	left: 60px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,-100px,0);
	transform: translate3d(0,-100px,0);
}

figure.exad-ihe-figure.effect-dexter:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Sarah *****/
/*---------------*/

figure.exad-ihe-figure.effect-sarah {
	background: #42b078;
}

figure.exad-ihe-figure.effect-sarah img {
	max-width: none;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.exad-ihe-figure.effect-sarah:hover img {
	opacity: 0.4;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-sarah figcaption.exad-ihe-figcaption {
	text-align: left;
}

figure.exad-ihe-figure.effect-sarah .exad-ihe-title {
	position: relative;
	overflow: hidden;
	padding: 0.5em 0;
}

figure.exad-ihe-figure.effect-sarah .exad-ihe-title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

figure.exad-ihe-figure.effect-sarah:hover .exad-ihe-title::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-sarah p {
	padding: 1em 0;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

figure.exad-ihe-figure.effect-sarah:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Zoe *****/
/*---------------*/

figure.exad-ihe-figure.effect-zoe figcaption.exad-ihe-figcaption {
	top: auto;
	bottom: 0;
	padding: 1em;
	height: 3.75em;
	background: #fff;
	color: #3c4a50;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.exad-ihe-figure.effect-zoe .exad-ihe-title {
	float: left;
}

figure.exad-ihe-figure.effect-zoe p.icon-links a {
	float: right;
	color: #3c4a50;
	font-size: 1.4em;
}

figure.exad-ihe-figure.effect-zoe:hover p.icon-links a:hover,
figure.exad-ihe-figure.effect-zoe:hover p.icon-links a:focus {
	color: #252d31;
}

figure.exad-ihe-figure.effect-zoe p.description {
	position: absolute;
	bottom: 8em;
	padding: 2em;
	color: #fff;
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	/* -webkit-backface-visibility: hidden; Fix for Chrome 37.0.2062.120 (Mac) */
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	/* -webkit-backface-visibility: hidden; Fix for Chrome 37.0.2062.120 (Mac) */
}

figure.exad-ihe-figure.effect-zoe .exad-ihe-title,
figure.exad-ihe-figure.effect-zoe p.icon-links a {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
}

figure.exad-ihe-figure.effect-zoe p.icon-links a span::before {
	display: inline-block;
	padding: 8px 10px;
	font-family: 'feathericons';
	/* speak: none; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-eye::before {
	content: '\e000';
}

.icon-paper-clip::before {
	content: '\e001';
}

.icon-heart::before {
	content: '\e024';
}

figure.exad-ihe-figure.effect-zoe .exad-ihe-title {
	display: inline-block;
}

figure.exad-ihe-figure.effect-zoe:hover p.description {
	opacity: 1;
}

figure.exad-ihe-figure.effect-zoe:hover figcaption.exad-ihe-figcaption,
figure.exad-ihe-figure.effect-zoe:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-zoe:hover p.icon-links a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-zoe:hover .exad-ihe-title {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.exad-ihe-figure.effect-zoe:hover p.icon-links a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.exad-ihe-figure.effect-zoe:hover p.icon-links a:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.exad-ihe-figure.effect-zoe:hover p.icon-links a:first-child {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

/*---------------*/
/***** Chico *****/
/*---------------*/

figure.exad-ihe-figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}

figure.exad-ihe-figure.effect-chico:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.exad-ihe-figure.effect-chico figcaption.exad-ihe-figcaption {
	padding: 3em;
}

figure.exad-ihe-figure.effect-chico figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

figure.exad-ihe-figure.effect-chico figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-chico p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-chico .exad-ihe-title {
	padding: 20% 0 20px 0;
}

figure.exad-ihe-figure.effect-chico p {
	margin: 0 auto;
	max-width: 200px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.exad-ihe-figure.effect-chico:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media screen and (max-width: 50em) {
	.exad-ihe-grid figure.exad-ihe-figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}

/* *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; } // required */
.exad-ihe-grid {
	position: relative;
	clear: both;
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

/* Individual effects */

/*---------------*/
/***** Julia *****/
/*---------------*/

figure.exad-ihe-figure.effect-julia {
	background: #2f3238;
}

figure.exad-ihe-figure.effect-julia img {
	max-width: none;
	object-fit: cover;
	/* height: 400px; */
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.exad-ihe-figure.effect-julia figcaption.exad-ihe-figcaption {
	text-align: left;
}

figure.exad-ihe-figure.effect-julia .exad-ihe-title {
	position: relative;
	padding: 0.5em 0;
}

figure.exad-ihe-figure.effect-julia p {
	display: inline-block;
	margin: 0 0 0.25em;
	padding: 0.4em 1em;
	background: rgba(255,255,255,0.9);
	color: #2f3238;
	text-transform: none;
	font-weight: 500;
	font-size: 75%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-360px,0,0);
	transform: translate3d(-360px,0,0);
}

figure.exad-ihe-figure.effect-julia p:first-child {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.exad-ihe-figure.effect-julia p:nth-of-type(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.exad-ihe-figure.effect-julia p:nth-of-type(3) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.exad-ihe-figure.effect-julia:hover p:first-child {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

figure.exad-ihe-figure.effect-julia:hover p:nth-of-type(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.exad-ihe-figure.effect-julia:hover p:nth-of-type(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.exad-ihe-figure.effect-julia:hover img {
	opacity: 0.4;
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

figure.exad-ihe-figure.effect-julia:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*-----------------*/
/***** Goliath *****/
/*-----------------*/

figure.exad-ihe-figure.effect-goliath {
	background: #df4e4e;
}

figure.exad-ihe-figure.effect-goliath img,
figure.exad-ihe-figure.effect-goliath .exad-ihe-title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-goliath img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.exad-ihe-figure.effect-goliath .exad-ihe-title,
figure.exad-ihe-figure.effect-goliath p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
}

figure.exad-ihe-figure.effect-goliath p {
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
}

figure.exad-ihe-figure.effect-goliath:hover img {
	-webkit-transform: translate3d(0,-80px,0);
	transform: translate3d(0,-80px,0);
}

figure.exad-ihe-figure.effect-goliath:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,-100px,0);
	transform: translate3d(0,-100px,0);
}

figure.exad-ihe-figure.effect-goliath:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*-----------------*/
/***** Hera *****/
/*-----------------*/

figure.exad-ihe-figure.effect-hera {
	background: #303fa9;
}

figure.exad-ihe-figure.effect-hera .exad-ihe-title {
	font-size: 158.75%;
}

figure.exad-ihe-figure.effect-hera .exad-ihe-title,
figure.exad-ihe-figure.effect-hera p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}

figure.exad-ihe-figure.effect-hera figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	border: 2px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
	transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}

figure.exad-ihe-figure.effect-hera p {
	width: 100px;
	text-transform: none;
	font-size: 121%;
	line-height: 2;
}

figure.exad-ihe-figure.effect-hera p a {
	color: #fff;
}

figure.exad-ihe-figure.effect-hera p a:hover,
figure.exad-ihe-figure.effect-hera p a:focus {
	opacity: 0.6;
}

figure.exad-ihe-figure.effect-hera p a i {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-hera p a:first-child i {
	-webkit-transform: translate3d(-60px,-60px,0);
	transform: translate3d(-60px,-60px,0);
}

figure.exad-ihe-figure.effect-hera p a:nth-child(2) i {
	-webkit-transform: translate3d(60px,-60px,0);
	transform: translate3d(60px,-60px,0);
}

figure.exad-ihe-figure.effect-hera p a:nth-child(3) i {
	-webkit-transform: translate3d(-60px,60px,0);
	transform: translate3d(-60px,60px,0);
}

figure.exad-ihe-figure.effect-hera p a:nth-child(4) i {
	-webkit-transform: translate3d(60px,60px,0);
	transform: translate3d(60px,60px,0);
}

figure.exad-ihe-figure.effect-hera:hover figcaption.exad-ihe-figcaption::before {
	opacity: 1;
	-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
	transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
}

figure.exad-ihe-figure.effect-hera:hover .exad-ihe-title {
	opacity: 0;
	-webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
	transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}

figure.exad-ihe-figure.effect-hera:hover p i:empty {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0); /* just because it's stronger than nth-child */
	opacity: 1;
}

/*-----------------*/
/***** Winston *****/
/*-----------------*/

figure.exad-ihe-figure.effect-winston {
	background: #162633;
	text-align: left;
}

figure.exad-ihe-figure.effect-winston img {
	-webkit-transition: opacity 0.45s;
	transition: opacity 0.45s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.exad-ihe-figure.effect-winston figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/img/triangle.svg) no-repeat center center;
	background-size: 100% 100%;
	content: '';
	-webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
	transition: opacity 0.45s, transform 0.45s;
	-webkit-transform: rotate3d(0,0,1,45deg);
	transform: rotate3d(0,0,1,45deg);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

figure.exad-ihe-figure.effect-winston .exad-ihe-title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.exad-ihe-figure.effect-winston p {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 1.5em 7% 0;
}

figure.exad-ihe-figure.effect-winston a {
	margin: 0 10px;
	color: #5d504f;
	font-size: 170%;
}

figure.exad-ihe-figure.effect-winston a:hover,
figure.exad-ihe-figure.effect-winston a:focus {
	color: #cc6055;
}

figure.exad-ihe-figure.effect-winston p a i {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
}

figure.exad-ihe-figure.effect-winston:hover img {
	opacity: 0.6;
}

figure.exad-ihe-figure.effect-winston:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-winston:hover figcaption.exad-ihe-figcaption::before {
	opacity: 0.7;
	-webkit-transform: rotate3d(0,0,1,20deg);
	transform: rotate3d(0,0,1,20deg);
}

figure.exad-ihe-figure.effect-winston:hover p i {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-winston:hover p a:nth-child(3) i {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.exad-ihe-figure.effect-winston:hover p a:nth-child(2) i {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.exad-ihe-figure.effect-winston:hover p a:first-child i {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

/*-----------------*/
/***** Selena *****/
/*-----------------*/

figure.exad-ihe-figure.effect-selena {
	background: #fff;
}

figure.exad-ihe-figure.effect-selena img {
	opacity: 0.95;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

figure.exad-ihe-figure.effect-selena:hover img {
	-webkit-transform: scale3d(0.95,0.95,1);
	transform: scale3d(0.95,0.95,1);
}

figure.exad-ihe-figure.effect-selena .exad-ihe-title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.exad-ihe-figure.effect-selena p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg);
	transform: perspective(1000px) rotate3d(1,0,0,90deg);
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

figure.exad-ihe-figure.effect-selena:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-selena:hover p {
	opacity: 1;
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,0);
	transform: perspective(1000px) rotate3d(1,0,0,0);
}

/*-----------------*/
/***** Terry *****/
/*-----------------*/

figure.exad-ihe-figure.effect-terry {
	background: #34495e;
}

figure.exad-ihe-figure.effect-terry figcaption.exad-ihe-figcaption {
	padding: 1em;
}

figure.exad-ihe-figure.effect-terry figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-terry figcaption.exad-ihe-figcaption::after {
	position: absolute;
	width: 200%;
	height: 200%;
	border-style: solid;
	border-color: #101010;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-terry figcaption.exad-ihe-figcaption::before {
	right: 0;
	bottom: 0;
	border-width: 0 70px 60px 0;
	-webkit-transform: translate3d(70px,60px,0);
	transform: translate3d(70px,60px,0);
}

figure.exad-ihe-figure.effect-terry figcaption.exad-ihe-figcaption::after {
	top: 0;
	left: 0;
	border-width: 15px 0 0 15px;
	-webkit-transform: translate3d(-15px,-15px,0);
	transform: translate3d(-15px,-15px,0);
}

figure.exad-ihe-figure.effect-terry img,
figure.exad-ihe-figure.effect-terry p a {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-terry img {
	opacity: 0.85;
}

figure.exad-ihe-figure.effect-terry .exad-ihe-title {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0.4em 10px;
	width: 50%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

@media screen and (max-width: 920px) {
	figure.exad-ihe-figure.effect-terry .exad-ihe-title {
		padding: 0.75em 10px;
		font-size: 120%;
	}
}

figure.exad-ihe-figure.effect-terry p {
	float: right;
	clear: both;
	text-align: left;
	text-transform: none;
	font-size: 111%;
}

figure.exad-ihe-figure.effect-terry p a {
	display: block;
	margin-bottom: 1em;
	color: #fff;
	opacity: 0;
	-webkit-transform: translate3d(90px,0,0);
	transform: translate3d(90px,0,0);
}

figure.exad-ihe-figure.effect-terry p a:hover,
figure.exad-ihe-figure.effect-terry p a:focus {
	color: #f3cf3f;
}

figure.exad-ihe-figure.effect-terry:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-terry:hover figcaption.exad-ihe-figcaption::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-terry:hover img {
	opacity: 0.6;

}

figure.exad-ihe-figure.effect-terry:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-terry:hover p a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-terry:hover p a {
	opacity: 1;
}

figure.exad-ihe-figure.effect-terry:hover p a:first-child {
	-webkit-transition-delay: 0.025s;
	transition-delay: 0.025s;
}

figure.exad-ihe-figure.effect-terry:hover p a:nth-child(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.exad-ihe-figure.effect-terry:hover p a:nth-child(3) {
	-webkit-transition-delay: 0.075s;
	transition-delay: 0.075s;
}

figure.exad-ihe-figure.effect-terry:hover p a:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/*-----------------*/
/***** Phoebe *****/
/*-----------------*/

figure.exad-ihe-figure.effect-phoebe {
	background: #675983;
}

figure.exad-ihe-figure.effect-phoebe img {
	opacity: 0.85;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-phoebe:hover img {
	opacity: 0.6;
}

figure.exad-ihe-figure.effect-phoebe figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/img/triangle2.svg) no-repeat center center;
	background-size: 100% 100%;
	content: '';
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(5,2.5,1);
	transform: scale3d(5,2.5,1);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

figure.exad-ihe-figure.effect-phoebe:hover figcaption.exad-ihe-figcaption::before {
	opacity: 0.6;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.exad-ihe-figure.effect-phoebe .exad-ihe-title {
	margin-top: 1em;
	-webkit-transition: transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.exad-ihe-figure.effect-phoebe:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-phoebe p a {
	color: #fff;
	font-size: 140%;
	opacity: 0;
	position: relative;
	display: inline-block;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-phoebe p a:first-child {
	-webkit-transform: translate3d(-60px,-60px,0);
	transform: translate3d(-60px,-60px,0);
}

figure.exad-ihe-figure.effect-phoebe p a:nth-child(2) {
	-webkit-transform: translate3d(0,60px,0);
	transform: translate3d(0,60px,0);
}

figure.exad-ihe-figure.effect-phoebe p a:nth-child(3) {
	-webkit-transform: translate3d(60px,-60px,0);
	transform: translate3d(60px,-60px,0);
}

figure.exad-ihe-figure.effect-phoebe:hover p a {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*-----------------*/
/***** Apollo *****/
/*-----------------*/

figure.exad-ihe-figure.effect-apollo {
	background: #3498db;
}

figure.exad-ihe-figure.effect-apollo img {
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05,1.05,1);
	transform: scale3d(1.05,1.05,1);
}

figure.exad-ihe-figure.effect-apollo figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
}

figure.exad-ihe-figure.effect-apollo p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 3em;
	padding: 0 1em;
	max-width: 150px;
	border-right: 4px solid #fff;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-apollo .exad-ihe-title {
	text-align: left;
}

figure.exad-ihe-figure.effect-apollo:hover img {
	opacity: 0.6;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.exad-ihe-figure.effect-apollo:hover figcaption.exad-ihe-figcaption::before {
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
}

figure.exad-ihe-figure.effect-apollo:hover p {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/*-----------------*/
/***** Kira *****/
/*-----------------*/

figure.exad-ihe-figure.effect-kira {
	background: #fff;
	text-align: left;
}

figure.exad-ihe-figure.effect-kira img {
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-kira figcaption.exad-ihe-figcaption {
	z-index: 1;
}

figure.exad-ihe-figure.effect-kira p {
	padding: 2.25em 0.5em;
	font-weight: 600;	
	font-size: 100%;
	line-height: 1.5;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
}

figure.exad-ihe-figure.effect-kira p a {
	margin: 0 0.5em;
	color: #101010;
}

figure.exad-ihe-figure.effect-kira p a:hover,
figure.exad-ihe-figure.effect-kira p a:focus {
	opacity: 0.6;
}

figure.exad-ihe-figure.effect-kira figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 0;
	right: 2em;
	left: 2em;
	z-index: -1;
	height: 3.5em;
	background: #fff;
	content: '';
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,4em,0) scale3d(1,0.023,1) ;
	transform: translate3d(0,4em,0) scale3d(1,0.023,1);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

figure.exad-ihe-figure.effect-kira:hover img {
	opacity: 0.5;
}

figure.exad-ihe-figure.effect-kira:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-kira:hover figcaption.exad-ihe-figcaption::before {
	opacity: 0.7;
	-webkit-transform: translate3d(0,5em,0) scale3d(1,1,1) ;
	transform: translate3d(0,5em,0) scale3d(1,1,1);
}

/*-----------------*/
/***** Steve *****/
/*-----------------*/

figure.exad-ihe-figure.effect-steve {
	z-index: auto;
	overflow: visible;
	background: #000;
}

figure.exad-ihe-figure.effect-steve:before,
figure.exad-ihe-figure.effect-steve .exad-ihe-title:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #000;
	content: '';
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-steve:before {
	box-shadow: 0 3px 30px rgba(0,0,0,0.8);
	opacity: 0;
}

figure.exad-ihe-figure.effect-steve figcaption.exad-ihe-figcaption {
	z-index: 1;
}

figure.exad-ihe-figure.effect-steve img {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: perspective(1000px) translate3d(0,0,0);
	transform: perspective(1000px) translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-steve .exad-ihe-title,
figure.exad-ihe-figure.effect-steve p {
	background: #fff;
	color: #2d434e;
}

figure.exad-ihe-figure.effect-steve .exad-ihe-title {
	position: relative;
	margin-top: 2em;
	padding: 0.25em;
}

figure.exad-ihe-figure.effect-steve .exad-ihe-title:before {
	box-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

figure.exad-ihe-figure.effect-steve p {
	margin-top: 1em;
	padding: 0.5em;
	font-weight: 800;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(0.9,0.9,1);
	transform: scale3d(0.9,0.9,1);
}

figure.exad-ihe-figure.effect-steve:hover:before {
	opacity: 1;
}

figure.exad-ihe-figure.effect-steve:hover img {
	-webkit-transform: perspective(1000px) translate3d(0,0,21px);
	transform: perspective(1000px) translate3d(0,0,21px);
}

figure.exad-ihe-figure.effect-steve:hover .exad-ihe-title:before {
	opacity: 0;
}

figure.exad-ihe-figure.effect-steve:hover p {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

/*-----------------*/
/***** Moses *****/
/*-----------------*/

figure.exad-ihe-figure.effect-moses {
	background: -webkit-linear-gradient(-45deg, #EC65B7 0%,#05E0D8 100%);
	background: linear-gradient(-45deg, #EC65B7 0%,#05E0D8 100%);
}

figure.exad-ihe-figure.effect-moses img {
	opacity: 0.85;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-moses .exad-ihe-title,
figure.exad-ihe-figure.effect-moses p {
	padding: 20px;
	width: 50%;
	height: 50%;
	border: 2px solid #fff;
}

figure.exad-ihe-figure.effect-moses .exad-ihe-title {
	padding: 20px;
	width: 50%;
	height: 50%;
	text-align: left;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(10px,10px,0);
	transform: translate3d(10px,10px,0);
}

figure.exad-ihe-figure.effect-moses p {
	float: right;
	padding: 20px;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

figure.exad-ihe-figure.effect-moses:hover .exad-ihe-title {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-moses:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-moses:hover img {
	opacity: 0.6;
}

/*---------------*/
/***** Jazz *****/
/*---------------*/

figure.exad-ihe-figure.effect-jazz {
	background: -webkit-linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
	background: linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
}

figure.exad-ihe-figure.effect-jazz img {
	opacity: 0.9;
}

figure.exad-ihe-figure.effect-jazz figcaption.exad-ihe-figcaption::after,
figure.exad-ihe-figure.effect-jazz img,
figure.exad-ihe-figure.effect-jazz p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-jazz figcaption.exad-ihe-figcaption::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
	transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

figure.exad-ihe-figure.effect-jazz .exad-ihe-title,
figure.exad-ihe-figure.effect-jazz p {
	opacity: 1;
	-webkit-transform: scale3d(0.8,0.8,1);
	transform: scale3d(0.8,0.8,1);
}

figure.exad-ihe-figure.effect-jazz .exad-ihe-title {
	padding-top: 26%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-jazz p {
	padding: 0.5em 2em;
	text-transform: none;
	font-size: 0.85em;
	opacity: 0;
}

figure.exad-ihe-figure.effect-jazz:hover img {
	opacity: 0.7;
	-webkit-transform: scale3d(1.05,1.05,1);
	transform: scale3d(1.05,1.05,1);
}

figure.exad-ihe-figure.effect-jazz:hover figcaption.exad-ihe-figcaption::after {
	opacity: 1;
	-webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,1,1);
	transform: rotate3d(0,0,1,45deg) scale3d(1,1,1);
}

figure.exad-ihe-figure.effect-jazz:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-jazz:hover p {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

/*---------------*/
/***** Ming *****/
/*---------------*/

figure.exad-ihe-figure.effect-ming {
	background: #030c17;
}

figure.exad-ihe-figure.effect-ming img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.exad-ihe-figure.effect-ming figcaption.exad-ihe-figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 2px solid #fff;
	box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.4,1.4,1);
	transform: scale3d(1.4,1.4,1);
}

figure.exad-ihe-figure.effect-ming .exad-ihe-title {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.exad-ihe-figure.effect-ming p {
	padding: 1em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.exad-ihe-figure.effect-ming:hover .exad-ihe-title {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

figure.exad-ihe-figure.effect-ming:hover figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-ming:hover p {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.exad-ihe-figure.effect-ming:hover figcaption.exad-ihe-figcaption {
	background-color: rgba(58,52,42,0);
}

figure.exad-ihe-figure.effect-ming:hover img {
	opacity: 0.4;
}

/*---------------*/
/***** Lexi *****/
/*---------------*/

figure.exad-ihe-figure.effect-lexi {
	background: -webkit-linear-gradient(-45deg, #000 0%,#fff 100%);
	background: linear-gradient(-45deg, #000 0%,#fff 100%);
}

figure.exad-ihe-figure.effect-lexi img {
	margin: -10px 0 0 -10px;
	max-width: none;
	width: -webkit-calc(100% + 10px);
	width: calc(100% + 10px);
	opacity: 0.9;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(10px,10px,0);
	transform: translate3d(10px,10px,0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.exad-ihe-figure.effect-lexi figcaption.exad-ihe-figcaption::before,
figure.exad-ihe-figure.effect-lexi p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-lexi figcaption.exad-ihe-figcaption::before {
	position: absolute;
	right: -100px;
	bottom: -100px;
	width: 300px;
	height: 300px;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 900px rgba(255,255,255,0.2);
	content: '';
	opacity: 0;
	-webkit-transform: scale3d(0.5,0.5,1);
	transform: scale3d(0.5,0.5,1);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

figure.exad-ihe-figure.effect-lexi:hover img {
	opacity: 0.6;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.exad-ihe-figure.effect-lexi .exad-ihe-title {
	text-align: left;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(5px,5px,0);
	transform: translate3d(5px,5px,0);
}

figure.exad-ihe-figure.effect-lexi p {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 1.5em 1.5em 0;
	width: 140px;
	text-align: right;
	opacity: 0;
	-webkit-transform: translate3d(20px,20px,0);
	transform: translate3d(20px,20px,0);
}

figure.exad-ihe-figure.effect-lexi:hover figcaption.exad-ihe-figcaption::before {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.exad-ihe-figure.effect-lexi:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-lexi:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*---------------*/
/***** Duke *****/
/*---------------*/

figure.exad-ihe-figure.effect-duke {
	background: -webkit-linear-gradient(-45deg, #34495e 0%,#cc6055 100%);
	background: linear-gradient(-45deg, #34495e 0%,#cc6055 100%);
}

figure.exad-ihe-figure.effect-duke img,
figure.exad-ihe-figure.effect-duke p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.exad-ihe-figure.effect-duke:hover img {
	opacity: 0.1;
	-webkit-transform: scale3d(2,2,1);
	transform: scale3d(2,2,1);
}

figure.exad-ihe-figure.effect-duke .exad-ihe-title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: scale3d(0.8,0.8,1);
	transform: scale3d(0.8,0.8,1);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

figure.exad-ihe-figure.effect-duke p {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 20px;
	padding: 30px;
	border: 2px solid #fff;
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transform: scale3d(0.8,0.8,1);
	transform: scale3d(0.8,0.8,1);
	-webkit-transform-origin: 50% -100%;
	transform-origin: 50% -100%;
}

figure.exad-ihe-figure.effect-duke:hover .exad-ihe-title,
figure.exad-ihe-figure.effect-duke:hover p {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

/* Media queries */
@media screen and (max-width: 50em) {
	.exad-ihe-grid figure.exad-ihe-figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}

/*!
 * ImageHover.css - http://www.imagehover.io
 * Version 2.0
 * Author: Ciarán Walsh

 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php

 */
.exad-ihe-wrapper [class^="imghvr-"],
.exad-ihe-wrapper [class*=" imghvr-"] {
    position: relative;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    background-color: #2266a5;
    color: #fff;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}

.exad-ihe-wrapper [class^="imghvr-"] > img,
.exad-ihe-wrapper [class*=" imghvr-"] > img {
    vertical-align: top;
    max-width: 100%;
}

.exad-ihe-wrapper [class^="imghvr-"] figcaption,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption {
    background-color: #135796;
    padding: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
}

.exad-ihe-wrapper [class^="imghvr-"] figcaption h1,
.exad-ihe-wrapper [class^="imghvr-"] figcaption h2,
.exad-ihe-wrapper [class^="imghvr-"] figcaption h3,
.exad-ihe-wrapper [class^="imghvr-"] figcaption h4,
.exad-ihe-wrapper [class^="imghvr-"] figcaption h5,
.exad-ihe-wrapper [class^="imghvr-"] figcaption h6,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption h1,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption h2,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption h3,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption h4,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption h5,
.exad-ihe-wrapper [class*=" imghvr-"] figcaption h6 {
    color: #ffffff;
}

.exad-ihe-wrapper [class^="imghvr-"] a,
.exad-ihe-wrapper [class*=" imghvr-"] a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.exad-ihe-wrapper [class^="imghvr-"],
.exad-ihe-wrapper [class*=" imghvr-"],
.exad-ihe-wrapper [class^="imghvr-"]:before,
.exad-ihe-wrapper [class^="imghvr-"]:after,
.exad-ihe-wrapper [class*=" imghvr-"]:before,
.exad-ihe-wrapper [class*=" imghvr-"]:after,
.exad-ihe-wrapper [class^="imghvr-"] *,
.exad-ihe-wrapper [class*=" imghvr-"] *,
.exad-ihe-wrapper [class^="imghvr-"] *:before,
.exad-ihe-wrapper [class^="imghvr-"] *:after,
.exad-ihe-wrapper [class*=" imghvr-"] *:before,
.exad-ihe-wrapper [class*=" imghvr-"] *:after {
    box-sizing: border-box;
    transition: all 0.35s ease;
}

/* imghvr-fade-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-fade"] figcaption,
.exad-ihe-wrapper [class*=" imghvr-fade"] figcaption {
    opacity: 0;
}

.exad-ihe-wrapper [class^="imghvr-fade"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-fade"]:hover figcaption {
    opacity: 1;
}

.exad-ihe-wrapper [class^="imghvr-fade"]:hover > img,
.exad-ihe-wrapper [class^="imghvr-fade"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-fade"]:hover > img,
.exad-ihe-wrapper [class*=" imghvr-fade"]:hover figcaption {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}

/* imghvr-fade
   ----------------------------- */
/* imghvr-fade-in-up
   ----------------------------- */
.exad-ihe-wrapper .imghvr-fade-in-up figcaption {
    -webkit-transform: translate(0, 15%);
            transform: translate(0, 15%);
}

/* imghvr-fade-in-down
   ----------------------------- */
.exad-ihe-wrapper .imghvr-fade-in-down figcaption {
    -webkit-transform: translate(0, -15%);
            transform: translate(0, -15%);
}

/* imghvr-fade-in-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-fade-in-left figcaption {
    -webkit-transform: translate(-15%, 0);
            transform: translate(-15%, 0);
}

/* imghvr-fade-in-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-fade-in-right figcaption {
    -webkit-transform: translate(15%, 0);
            transform: translate(15%, 0);
}

/* imghvr-push-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-push-"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-push-"]:hover figcaption {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}

/* imghvr-push-up
   ----------------------------- */
.exad-ihe-wrapper .imghvr-push-up figcaption {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

.exad-ihe-wrapper .imghvr-push-up:hover > img {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

/* imghvr-push-down
   ----------------------------- */
.exad-ihe-wrapper .imghvr-push-down figcaption {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

.exad-ihe-wrapper .imghvr-push-down:hover > img {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/* imghvr-push-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-push-left figcaption {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

.exad-ihe-wrapper .imghvr-push-left:hover > img {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

/* imghvr-push--right
   ----------------------------- */
   .exad-ihe-wrapper .imghvr-push-right figcaption {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

.exad-ihe-wrapper .imghvr-push-right:hover > img {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

/* imghvr-slide-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-slide-"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-slide-"]:hover figcaption {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}

/* imghvr-slide-up
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-up figcaption {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/* imghvr-slide-down
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-down figcaption {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

/* imghvr-slide-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-left figcaption {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

/* imghvr-slide-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-right figcaption {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

/* imghvr-slide-top-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-top-left figcaption {
    -webkit-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%);
}

/* imghvr-slide-top-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-top-right figcaption {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
}

/* imghvr-slide-bottom-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-bottom-left figcaption {
    -webkit-transform: translate(-100%, 100%);
            transform: translate(-100%, 100%);
}

/* imghvr-slide-bottom-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-slide-bottom-right figcaption {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
}

/* imghvr-reveal-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-reveal-"]:before,
.exad-ihe-wrapper [class*=" imghvr-reveal-"]:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: #135796;
}

.exad-ihe-wrapper [class^="imghvr-reveal-"] figcaption,
.exad-ihe-wrapper [class*=" imghvr-reveal-"] figcaption {
    opacity: 0;
}

.exad-ihe-wrapper [class^="imghvr-reveal-"]:hover:before,
.exad-ihe-wrapper [class*=" imghvr-reveal-"]:hover:before {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}

.exad-ihe-wrapper [class^="imghvr-reveal-"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-reveal-"]:hover figcaption {
    opacity: 1;
    transition-delay: 0.21s;
}

/* imghvr-reveal-up
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-up:before {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/* imghvr-reveal-down
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-down:before {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

/* imghvr-reveal-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-left:before {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

/* imghvr-reveal-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-right:before {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

/* imghvr-reveal-top-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-top-left:before {
    -webkit-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%);
}

/* imghvr-reveal-top-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-top-right:before {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
}

/* imghvr-reveal-bottom-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-bottom-left:before {
    -webkit-transform: translate(-100%, 100%);
            transform: translate(-100%, 100%);
}

/* imghvr-reveal-bottom-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-reveal-bottom-right:before {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
}

/* imghvr-hinge-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-hinge-"],
.exad-ihe-wrapper [class*=" imghvr-hinge-"] {
    -webkit-perspective: 50em;
            perspective: 50em;
}

.exad-ihe-wrapper [class^="imghvr-hinge-"] figcaption,
.exad-ihe-wrapper [class*=" imghvr-hinge-"] figcaption {
    opacity: 0;
    z-index: 1;
}

.exad-ihe-wrapper [class^="imghvr-hinge-"]:hover img,
.exad-ihe-wrapper [class*=" imghvr-hinge-"]:hover img {
    opacity: 0;
}

.exad-ihe-wrapper [class^="imghvr-hinge-"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-hinge-"]:hover figcaption {
    opacity: 1;
    transition-delay: 0.21s;
}

/* imghvr-hinge-up
   ----------------------------- */
.exad-ihe-wrapper .imghvr-hinge-up img {
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
}

.exad-ihe-wrapper .imghvr-hinge-up figcaption {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
}

.exad-ihe-wrapper .imghvr-hinge-up:hover > img {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

.exad-ihe-wrapper .imghvr-hinge-up:hover figcaption {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
}

/* imghvr-hinge-down
   ----------------------------- */
.exad-ihe-wrapper .imghvr-hinge-down img {
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
}

.exad-ihe-wrapper .imghvr-hinge-down figcaption {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 50% -50%;
            transform-origin: 50% -50%;
}

.exad-ihe-wrapper .imghvr-hinge-down:hover > img {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    opacity: 0;
}

.exad-ihe-wrapper .imghvr-hinge-down:hover figcaption {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
}

/* imghvr-hinge-left
   ----------------------------- */
.exad-ihe-wrapper .imghvr-hinge-left img {
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
}

.exad-ihe-wrapper .imghvr-hinge-left figcaption {
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
}

.exad-ihe-wrapper .imghvr-hinge-left:hover > img {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
}

.exad-ihe-wrapper .imghvr-hinge-left:hover figcaption {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
}

/* imghvr-hinge-right
   ----------------------------- */
.exad-ihe-wrapper .imghvr-hinge-right img {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
}

.exad-ihe-wrapper .imghvr-hinge-right figcaption {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
}

.exad-ihe-wrapper .imghvr-hinge-right:hover > img {
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
}

.exad-ihe-wrapper .imghvr-hinge-right:hover figcaption {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
}

/* imghvr-flip-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-flip-"],
.exad-ihe-wrapper [class*=" imghvr-flip-"] {
    -webkit-perspective: 50em;
            perspective: 50em;
}

.exad-ihe-wrapper [class^="imghvr-flip-"] img,
.exad-ihe-wrapper [class*=" imghvr-flip-"] img {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.exad-ihe-wrapper [class^="imghvr-flip-"] figcaption,
.exad-ihe-wrapper [class*=" imghvr-flip-"] figcaption {
    opacity: 0;
}

.exad-ihe-wrapper [class^="imghvr-flip-"]:hover > img,
.exad-ihe-wrapper [class*=" imghvr-flip-"]:hover > img {
    opacity: 0;
}

.exad-ihe-wrapper [class^="imghvr-flip-"]:hover figcaption,
.exad-ihe-wrapper [class*=" imghvr-flip-"]:hover figcaption {
    opacity: 1;
    transition-delay: 0.14s;
}

/* imghvr-flip-horiz
   ----------------------------- */
.exad-ihe-wrapper .imghvr-flip-horiz figcaption {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
}

.exad-ihe-wrapper .imghvr-flip-horiz:hover img {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
}

.exad-ihe-wrapper .imghvr-flip-horiz:hover figcaption {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}

/* imghvr-flip-vert
   ----------------------------- */
.exad-ihe-wrapper .imghvr-flip-vert figcaption {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
}

.exad-ihe-wrapper .imghvr-flip-vert:hover > img {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
}

.exad-ihe-wrapper .imghvr-flip-vert:hover figcaption {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
}

/* imghvr-flip-diag-1
   ----------------------------- */
.exad-ihe-wrapper .imghvr-flip-diag-1 figcaption {
    -webkit-transform: rotate3d(1, -1, 0, 100deg);
            transform: rotate3d(1, -1, 0, 100deg);
}

.exad-ihe-wrapper .imghvr-flip-diag-1:hover > img {
    -webkit-transform: rotate3d(-1, 1, 0, 100deg);
            transform: rotate3d(-1, 1, 0, 100deg);
}

.exad-ihe-wrapper .imghvr-flip-diag-1:hover figcaption {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
            transform: rotate3d(0, 0, 0, 0deg);
}

/* imghvr-flip-diag-2
   ----------------------------- */
.exad-ihe-wrapper .imghvr-flip-diag-2 figcaption {
    -webkit-transform: rotate3d(1, 1, 0, 100deg);
            transform: rotate3d(1, 1, 0, 100deg);
}

.exad-ihe-wrapper .imghvr-flip-diag-2:hover > img {
    -webkit-transform: rotate3d(-1, -1, 0, 100deg);
            transform: rotate3d(-1, -1, 0, 100deg);
}

.exad-ihe-wrapper .imghvr-flip-diag-2:hover figcaption {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
            transform: rotate3d(0, 0, 0, 0deg);
}

/* imghvr-shutter-out-*
   ----------------------------- */
.exad-ihe-wrapper [class^="imghvr-shutter-out-"]:before,
.exad-ihe-wrapper [class*=" imghvr-shutter-out-"]:before {
    background: #135796;
    position: absolute;
    content: "";
    transition-delay: 0.105s;
}

.exad-ihe-wrapper [class^="imghvr-shutter-out-"] figcaption,
.exad-ihe-wrapper [class*=" imghvr-shutter-out-"] figcaption {
    opacity: 0;
    transition-delay: 0s;
}

[class^="imghvr-shutter-out-"]:hover:before,
[class*=" imghvr-shutter-out-"]:hover:before {
    transition-delay: 0s;
}

[class^="imghvr-shutter-out-"]:hover figcaption,
[class*=" imghvr-shutter-out-"]:hover figcaption {
    opacity: 1;
    transition-delay: 0.105s;
}

/* imghvr-shutter-out-horiz
   ----------------------------- */
.imghvr-shutter-out-horiz:before {
    left: 50%;
    right: 50%;
    top: 0;
    bottom: 0;
}

.imghvr-shutter-out-horiz:hover:before {
    left: 0;
    right: 0;
}

/* imghvr-shutter-out-vert
   ----------------------------- */
.imghvr-shutter-out-vert:before {
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
}

.imghvr-shutter-out-vert:hover:before {
    top: 0;
    bottom: 0;
}

/* imghvr-shutter-out-diag-1
   ----------------------------- */
.imghvr-shutter-out-diag-1:before {
    top: 50%;
    bottom: 50%;
    left: -35%;
    right: -35%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.imghvr-shutter-out-diag-1:hover:before {
    top: -35%;
    bottom: -35%;
}

/* imghvr-shutter-out-diag-2
   ----------------------------- */
.imghvr-shutter-out-diag-2:before {
    top: 50%;
    bottom: 50%;
    left: -35%;
    right: -35%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.imghvr-shutter-out-diag-2:hover:before {
    top: -35%;
    bottom: -35%;
}

/* imghvr-shutter-in-*
   ----------------------------- */
[class^="imghvr-shutter-in-"]:after, [class^="imghvr-shutter-in-"]:before,
[class*=" imghvr-shutter-in-"]:after,
[class*=" imghvr-shutter-in-"]:before {
    background: #135796;
    position: absolute;
    content: "";
}

[class^="imghvr-shutter-in-"]:after,
[class*=" imghvr-shutter-in-"]:after {
    top: 0;
    left: 0;
}

[class^="imghvr-shutter-in-"]:before,
[class*=" imghvr-shutter-in-"]:before {
    right: 0;
    bottom: 0;
}

[class^="imghvr-shutter-in-"] figcaption,
[class*=" imghvr-shutter-in-"] figcaption {
    opacity: 0;
    z-index: 1;
}

[class^="imghvr-shutter-in-"]:hover figcaption,
[class*=" imghvr-shutter-in-"]:hover figcaption {
    opacity: 1;
    transition-delay: 0.21s;
}

/* imghvr-shutter-in-horiz
   ----------------------------- */
.imghvr-shutter-in-horiz:after, .imghvr-shutter-in-horiz:before {
    width: 0;
    height: 100%;
}

.imghvr-shutter-in-horiz:hover:after, .imghvr-shutter-in-horiz:hover:before {
    width: 50%;
}

/* imghvr-shutter-in-vert
   ----------------------------- */
.imghvr-shutter-in-vert:after, .imghvr-shutter-in-vert:before {
    height: 0;
    width: 100%;
}

.imghvr-shutter-in-vert:hover:after, .imghvr-shutter-in-vert:hover:before {
    height: 50%;
}

/* imghvr-shutter-in-out-horiz
   ----------------------------- */
.imghvr-shutter-in-out-horiz:after, .imghvr-shutter-in-out-horiz:before {
    width: 0;
    height: 100%;
    opacity: 0.75;
}

.imghvr-shutter-in-out-horiz:hover:after, .imghvr-shutter-in-out-horiz:hover:before {
    width: 100%;
}

/* imghvr-shutter-in-out-vert
   ----------------------------- */
.imghvr-shutter-in-out-vert:after, .imghvr-shutter-in-out-vert:before {
    height: 0;
    width: 100%;
    opacity: 0.75;
}

.imghvr-shutter-in-out-vert:hover:after, .imghvr-shutter-in-out-vert:hover:before {
    height: 100%;
}

/* imghvr-shutter-in-out-diag-1
   ----------------------------- */
.imghvr-shutter-in-out-diag-1:after, .imghvr-shutter-in-out-diag-1:before {
    width: 200%;
    height: 200%;
    transition: all 0.6s ease;
    opacity: 0.75;
}

.imghvr-shutter-in-out-diag-1:after {
    -webkit-transform: skew(-45deg) translateX(-150%);
            transform: skew(-45deg) translateX(-150%);
}

.imghvr-shutter-in-out-diag-1:before {
    -webkit-transform: skew(-45deg) translateX(150%);
            transform: skew(-45deg) translateX(150%);
}

.imghvr-shutter-in-out-diag-1:hover:after {
    -webkit-transform: skew(-45deg) translateX(-50%);
            transform: skew(-45deg) translateX(-50%);
}

.imghvr-shutter-in-out-diag-1:hover:before {
    -webkit-transform: skew(-45deg) translateX(50%);
            transform: skew(-45deg) translateX(50%);
}

/* imghvr-shutter-in-out-diag-2
   ----------------------------- */
.imghvr-shutter-in-out-diag-2:after, .imghvr-shutter-in-out-diag-2:before {
    width: 200%;
    height: 200%;
    transition: all 0.6s ease;
    opacity: 0.75;
}

.imghvr-shutter-in-out-diag-2:after {
    -webkit-transform: skew(45deg) translateX(-100%);
            transform: skew(45deg) translateX(-100%);
}

.imghvr-shutter-in-out-diag-2:before {
    -webkit-transform: skew(45deg) translateX(100%);
            transform: skew(45deg) translateX(100%);
}

.imghvr-shutter-in-out-diag-2:hover:after {
    -webkit-transform: skew(45deg) translateX(0%);
            transform: skew(45deg) translateX(0%);
}

.imghvr-shutter-in-out-diag-2:hover:before {
    -webkit-transform: skew(45deg) translateX(0%);
            transform: skew(45deg) translateX(0%);
}

/* imghvr-switch-*
   ----------------------------- */
[class^='imghvr-switch-'] > img,
[class^='imghvr-switch-'] figcaption,
[class*=' imghvr-switch-'] > img,
[class*=' imghvr-switch-'] figcaption {
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[class^='imghvr-switch-']:hover figcaption,
[class*=' imghvr-switch-']:hover figcaption {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}

/* imghvr-switch-up
   ----------------------------- */
.imghvr-switch-up figcaption {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

.imghvr-switch-up:hover > img {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/* imghvr-switch-down
   ----------------------------- */
.imghvr-switch-down figcaption {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

.imghvr-switch-down:hover > img {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

/* imghvr-switch-left
   ----------------------------- */
.imghvr-switch-left figcaption {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

.imghvr-switch-left:hover > img {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

/* imghvr-switch-right
   ----------------------------- */
.imghvr-switch-right figcaption {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

.imghvr-switch-right:hover > img {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

/* imghvr-pivot-in*
   ----------------------------- */
[class^='imghvr-pivot-in'] figcaption,
[class*=' imghvr-pivot-in'] figcaption {
    background-color: #135796;
}

[class^='imghvr-pivot-in']:hover figcaption,
[class*=' imghvr-pivot-in']:hover figcaption {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

/* imghvr-pivot-in-top-left*
   ----------------------------- */
.imghvr-pivot-in-top-left figcaption {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
}

/* imghvr-pivot-in-top-right*
   ----------------------------- */
.imghvr-pivot-in-top-right figcaption {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
}

/* imghvr-pivot-in-bottom-left*
   ----------------------------- */
.imghvr-pivot-in-bottom-left figcaption {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
}

/* imghvr-pivot-in-bottom-right*
   ----------------------------- */
.imghvr-pivot-in-bottom-right figcaption {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}

/* imghvr-pivot-out-*
   ----------------------------- */
[class^='imghvr-pivot-out'] > img,
[class*=' imghvr-pivot-out'] > img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

[class^='imghvr-pivot-out'] figcaption,
[class*=' imghvr-pivot-out'] figcaption {
    background-color: #135796;
    z-index: -1;
}

/* imghvr-pivot-out-top-left*
   ----------------------------- */
.imghvr-pivot-out-top-left > img {
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
}

.imghvr-pivot-out-top-left:hover > img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

/* imghvr-pivot-out-top-right*
   ----------------------------- */
.imghvr-pivot-out-top-right > img {
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
}

.imghvr-pivot-out-top-right:hover > img {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

/* imghvr-pivot-out-bottom-left*
   ----------------------------- */
.imghvr-pivot-out-bottom-left > img {
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
}

.imghvr-pivot-out-bottom-left:hover > img {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

/* imghvr-pivot-out-bottom-right*
   ----------------------------- */
.imghvr-pivot-out-bottom-right > img {
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}

.imghvr-pivot-out-bottom-right:hover > img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

/* imghvr-fold*
   ----------------------------- */
[class^="imghvr-fold"],
[class*=" imghvr-fold"] {
    -webkit-perspective: 50em;
            perspective: 50em;
}

[class^="imghvr-fold"] img,
[class*=" imghvr-fold"] img {
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
}

[class^="imghvr-fold"] figcaption,
[class*=" imghvr-fold"] figcaption {
    z-index: 1;
    opacity: 0;
}

[class^="imghvr-fold"]:hover > img,
[class*=" imghvr-fold"]:hover > img {
    opacity: 0;
    transition-delay: 0;
}

[class^="imghvr-fold"]:hover figcaption,
[class*=" imghvr-fold"]:hover figcaption {
    -webkit-transform: rotateX(0) translate3d(0, 0%, 0) scale(1);
            transform: rotateX(0) translate3d(0, 0%, 0) scale(1);
    opacity: 1;
    transition-delay: 0.21s;
}

/* imghvr-fold-up
   ----------------------------- */
.imghvr-fold-up > img {
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
}

.imghvr-fold-up figcaption {
    -webkit-transform: rotateX(-90deg) translate3d(0%, -50%, 0) scale(0.6);
            transform: rotateX(-90deg) translate3d(0%, -50%, 0) scale(0.6);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
}

.imghvr-fold-up:hover > img {
    -webkit-transform: rotateX(90deg) scale(0.6) translateY(50%);
            transform: rotateX(90deg) scale(0.6) translateY(50%);
}

/* imghvr-fold-down
   ----------------------------- */
.imghvr-fold-down > img {
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
}

.imghvr-fold-down figcaption {
    -webkit-transform: rotateX(90deg) translate3d(0%, 50%, 0) scale(0.6);
            transform: rotateX(90deg) translate3d(0%, 50%, 0) scale(0.6);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
}

.imghvr-fold-down:hover > img {
    -webkit-transform: rotateX(-90deg) scale(0.6) translateY(-50%);
            transform: rotateX(-90deg) scale(0.6) translateY(-50%);
}

/* imghvr-fold-left
   ----------------------------- */
.imghvr-fold-left > img {
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
}

.imghvr-fold-left figcaption {
    -webkit-transform: rotateY(90deg) translate3d(-50%, 0%, 0) scale(0.6);
            transform: rotateY(90deg) translate3d(-50%, 0%, 0) scale(0.6);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
}

.imghvr-fold-left:hover > img {
    -webkit-transform: rotateY(-90deg) scale(0.6) translateX(50%);
            transform: rotateY(-90deg) scale(0.6) translateX(50%);
}

/* imghvr-fold-right
   ----------------------------- */
.imghvr-fold-right > img {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
}

.imghvr-fold-right figcaption {
    -webkit-transform: rotateY(-90deg) translate3d(50%, 0%, 0) scale(0.6);
            transform: rotateY(-90deg) translate3d(50%, 0%, 0) scale(0.6);
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
}

.imghvr-fold-right:hover > img {
    -webkit-transform: rotateY(90deg) scale(0.6) translateX(-50%);
            transform: rotateY(90deg) scale(0.6) translateX(-50%);
}

/* imghvr-zoom-in
   ----------------------------- */
.imghvr-zoom-in figcaption {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
}

.imghvr-zoom-in:hover figcaption {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}

/* imghvr-zoom-out*
   ----------------------------- */
[class^="imghvr-zoom-out"] figcaption,
[class*=" imghvr-zoom-out"] figcaption {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    opacity: 0;
}

[class^="imghvr-zoom-out"]:hover figcaption, [class^="imghvr-zoom-out"].hover figcaption,
[class*=" imghvr-zoom-out"]:hover figcaption,
[class*=" imghvr-zoom-out"].hover figcaption {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    transition-delay: 0.35s;
}

/* imghvr-zoom-out
   ----------------------------- */
.imghvr-zoom-out:hover > img {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
}

/* imghvr-zoom-out-up
   ----------------------------- */
.imghvr-zoom-out-up:hover > img, .imghvr-zoom-out-up.hover > img {
    -webkit-animation: imghvr-zoom-out-up 0.4025s linear;
            animation: imghvr-zoom-out-up 0.4025s linear;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes imghvr-zoom-out-up {
    50% {
        -webkit-transform: scale(0.8) translateY(0%);
                transform: scale(0.8) translateY(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateY(-150%);
                transform: scale(0.8) translateY(-150%);
        opacity: 0.5;
    }
}

@keyframes imghvr-zoom-out-up {
    50% {
        -webkit-transform: scale(0.8) translateY(0%);
                transform: scale(0.8) translateY(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateY(-150%);
                transform: scale(0.8) translateY(-150%);
        opacity: 0.5;
    }
}

/* imghvr-zoom-out-down
   ----------------------------- */
.imghvr-zoom-out-down:hover > img, .imghvr-zoom-out-down.hover > img {
    -webkit-animation: imghvr-zoom-out-down 0.4025s linear;
            animation: imghvr-zoom-out-down 0.4025s linear;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes imghvr-zoom-out-down {
    50% {
        -webkit-transform: scale(0.8) translateY(0%);
                transform: scale(0.8) translateY(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateY(150%);
                transform: scale(0.8) translateY(150%);
        opacity: 0.5;
    }
}

@keyframes imghvr-zoom-out-down {
    50% {
        -webkit-transform: scale(0.8) translateY(0%);
                transform: scale(0.8) translateY(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateY(150%);
                transform: scale(0.8) translateY(150%);
        opacity: 0.5;
    }
}

/* imghvr-zoom-out-left
   ----------------------------- */
.imghvr-zoom-out-left:hover > img, .imghvr-zoom-out-left.hover > img {
    -webkit-animation: imghvr-zoom-out-left 0.4025s linear;
            animation: imghvr-zoom-out-left 0.4025s linear;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes imghvr-zoom-out-left {
    50% {
        -webkit-transform: scale(0.8) translateX(0%);
                transform: scale(0.8) translateX(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateX(-150%);
                transform: scale(0.8) translateX(-150%);
        opacity: 0.5;
    }
}

@keyframes imghvr-zoom-out-left {
    50% {
        -webkit-transform: scale(0.8) translateX(0%);
                transform: scale(0.8) translateX(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateX(-150%);
                transform: scale(0.8) translateX(-150%);
        opacity: 0.5;
    }
}

/* imghvr-zoom-out-right
   ----------------------------- */
.imghvr-zoom-out-right:hover > img, .imghvr-zoom-out-right.hover > img {
    -webkit-animation: imghvr-zoom-out-right 0.4025s linear;
            animation: imghvr-zoom-out-right 0.4025s linear;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes imghvr-zoom-out-right {
    50% {
        -webkit-transform: scale(0.8) translateX(0%);
                transform: scale(0.8) translateX(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateX(150%);
                transform: scale(0.8) translateX(150%);
        opacity: 0.5;
    }
}

@keyframes imghvr-zoom-out-right {
    50% {
        -webkit-transform: scale(0.8) translateX(0%);
                transform: scale(0.8) translateX(0%);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(0.8) translateX(150%);
                transform: scale(0.8) translateX(150%);
        opacity: 0.5;
    }
}

/* imghvr-zoom-out-flip-horiz
   ----------------------------- */
.imghvr-zoom-out-flip-horiz {
    -webkit-perspective: 50em;
            perspective: 50em;
}

.imghvr-zoom-out-flip-horiz figcaption {
    opacity: 0;
    -webkit-transform: rotateX(90deg) translateY(-100%) scale(0.5);
            transform: rotateX(90deg) translateY(-100%) scale(0.5);
}

.imghvr-zoom-out-flip-horiz:hover > img, .imghvr-zoom-out-flip-horiz.hover > img {
    -webkit-transform: rotateX(-100deg) translateY(50%) scale(0.5);
            transform: rotateX(-100deg) translateY(50%) scale(0.5);
    opacity: 0;
    transition-delay: 0;
}

.imghvr-zoom-out-flip-horiz:hover figcaption, .imghvr-zoom-out-flip-horiz.hover figcaption {
    -webkit-transform: rotateX(0) translateY(0%) scale(1);
            transform: rotateX(0) translateY(0%) scale(1);
    opacity: 1;
    transition-delay: 0.35s;
}

/* imghvr-zoom-out-flip-vert
   ----------------------------- */
.imghvr-zoom-out-flip-vert {
    -webkit-perspective: 50em;
            perspective: 50em;
}

.imghvr-zoom-out-flip-vert figcaption {
    opacity: 0;
    -webkit-transform: rotateY(90deg) translate(50%, 0) scale(0.5);
            transform: rotateY(90deg) translate(50%, 0) scale(0.5);
}

.imghvr-zoom-out-flip-vert:hover > img, .imghvr-zoom-out-flip-vert.hover > img {
    -webkit-transform: rotateY(-100deg) translateX(50%) scale(0.5);
            transform: rotateY(-100deg) translateX(50%) scale(0.5);
    opacity: 0;
    transition-delay: 0;
}

.imghvr-zoom-out-flip-vert:hover figcaption, .imghvr-zoom-out-flip-vert.hover figcaption {
    -webkit-transform: rotateY(0) translate(0, 0) scale(1);
            transform: rotateY(0) translate(0, 0) scale(1);
    opacity: 1;
    transition-delay: 0.35s;
}

/* imghvr-blur
   ----------------------------- */
.imghvr-blur figcaption {
    opacity: 0;
}

.imghvr-blur:hover > img {
    -webkit-filter: blur(30px);
            filter: blur(30px);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
}

.imghvr-blur:hover figcaption {
    opacity: 1;
    transition-delay: 0.21s;
}

/* imghvr-fall-away-*
   ----------------------------- */
[class^='imghvr-fall-away-'],
[class*=' imghvr-fall-away-'] {
    -webkit-perspective: 50em;
            perspective: 50em;
}

[class^='imghvr-fall-away-'] img,
[class*=' imghvr-fall-away-'] img {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    transition: all 0.455s ease-in;
}

[class^='imghvr-fall-away-'] figcaption,
[class*=' imghvr-fall-away-'] figcaption {
    opacity: 0;
    background-color: #135796;
}

[class^='imghvr-fall-away-']:hover img,
[class*=' imghvr-fall-away-']:hover img {
    opacity: 0;
}

[class^='imghvr-fall-away-']:hover figcaption,
[class*=' imghvr-fall-away-']:hover figcaption {
    opacity: 1;
    transition-delay: 0.455s;
}

/* imghvr-fall-away-horiz
   ----------------------------- */
.imghvr-fall-away-horiz:hover img {
    -webkit-transform: rotateX(-360deg) scale(0.2);
            transform: rotateX(-360deg) scale(0.2);
}

/* imghvr-fall-away-vert
   ----------------------------- */
.imghvr-fall-away-vert:hover img {
    -webkit-transform: rotateY(-360deg) scale(0.2);
            transform: rotateY(-360deg) scale(0.2);
}

/* imghvr-fall-away-cc
   ----------------------------- */
.imghvr-fall-away-cc:hover img {
    -webkit-transform: rotate(360deg) scale(0.2);
            transform: rotate(360deg) scale(0.2);
}

/* imghvr-fall-away-ccc
   ----------------------------- */
.imghvr-fall-away-ccc:hover img {
    -webkit-transform: rotate(-360deg) scale(0.2);
            transform: rotate(-360deg) scale(0.2);
}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/vendor/css/swiper.min.css?ver=2.8.1 */
@media all {
.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;z-index:1}.swiper-container .swiper-slide figure{line-height:0}.swiper-container .elementor-lightbox-content-source{display:none}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{touch-action:pan-y}.swiper-wp8-vertical{touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background:no-repeat 50%}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-pagination{position:absolute;text-align:center;transition:.3s;transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:5px;left:0;width:100%}.swiper-pagination-bullet{width:6px;height:6px;display:inline-block;border-radius:50%;background:#000;opacity:.2}.swiper-pagination-fraction{color:#000}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 6px}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#000;position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-progressbar.swiper-pagination-white{background:hsla(0,0%,100%,.5)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;z-index:1}.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper-container-cube .swiper-slide{visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;filter:blur(50px);z-index:0}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.elementor-pagination-position-outside .swiper-container{padding-bottom:30px}.elementor-pagination-position-outside .elementor-swiper-button{top:calc(50% - 30px / 2)}.elementor-swiper{position:relative}.elementor-main-swiper{position:static}.elementor-arrows-position-outside .swiper-container{width:calc(100% - 60px)}.elementor-arrows-position-outside .elementor-swiper-button-prev{left:0}.elementor-arrows-position-outside .elementor-swiper-button-next{right:0}.swiper-image-stretch .swiper-slide .swiper-slide-image{width:100%}.elementor-swiper-button{position:absolute;display:inline-flex;z-index:1;cursor:pointer;font-size:25px;color:hsla(0,0%,93.3%,.9);top:50%;transform:translateY(-50%)}.elementor-swiper-button svg{fill:hsla(0,0%,93.3%,.9);height:1em;width:1em}.elementor-swiper-button-prev{left:10px}.elementor-swiper-button-next{right:10px}.elementor-swiper-button.swiper-button-disabled{opacity:.3}.swiper-container-cube .elementor-swiper-button{transform:translate3d(0,-50%,1px)}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s steps(12) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-size:100%;background:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E") no-repeat 50%}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")}@keyframes swiper-preloader-spin{to{transform:rotate(1turn)}}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/exad-main-style-53fdcdf003-91133904bb.css */
@media all {
.exclusive-addons-elementor{-webkit-font-smoothing: antialiased}.exclusive-addons-elementor h1:not(.site-title):before, .exclusive-addons-elementor h2:before{content: none;background: none;height: auto;margin: 0}.elementor-widget-exad-image-hover-effect .elementor-widget-container{min-height: 1px}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title{position: relative;display: flex;overflow: hidden}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-accordion-heading{width: 100%;font-size: 15px}.exad-accordion-single-item .exad-accordion-heading{font-weight: 600}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title:hover{cursor: pointer}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-active-inactive-icon{position: relative;margin-left: 15px}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title span.exad-tab-title-icon{position: relative}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-active-icon svg,.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-inactive-icon svg,.exad-accordion-items .exad-accordion-single-item .exad-accordion-title span.exad-tab-title-icon svg,.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-active-icon i,.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-inactive-icon i,.exad-accordion-items .exad-accordion-single-item .exad-accordion-title span.exad-tab-title-icon i{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);font-size: 20px}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title.active .exad-inactive-icon,.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-active-icon{display: none}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title.active .exad-active-icon{display: block}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content{display: none}.exad-accordion-items .exad-accordion-single-item .exad-accordion-title .exad-active-inactive-icon{width: 70px;margin-left: auto}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper{display: flex}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper.has-image-yes .exad-accordion-text{width: 60%}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper.has-image-yes .exad-accordion-image{width: 40%}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper.has-image-yes.image-position-left .exad-accordion-text{order: 2}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper.has-image-yes.image-position-left .exad-accordion-image{order: 1}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper .exad-accordion-button a{display: inline-block}@media only screen and (max-width: 767px){.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper{flex-direction: column}.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper.has-image-yes .exad-accordion-text,.exad-accordion-items .exad-accordion-single-item .exad-accordion-content .exad-accordion-content-wrapper.has-image-yes .exad-accordion-image{width: 100%}}.exad-alert .exad-alert-element{display: flex;align-items: center;text-align: center;border-radius: 40px;position: relative}.exad-alert .exad-alert-element:not(:last-child){margin-bottom: 20px}.exad-alert .exad-alert-element .exad-alert-element-icon{width: 50px;text-align: left}.exad-alert .exad-alert-element .exad-alert-element-icon span{font-size: 24px}.exad-alert .exad-alert-element .exad-alert-element-content{width: calc( 100% - 50px );text-align: left}.exad-alert .exad-alert-element .exad-alert-element-content h5{margin: 0 0 10px 0;font-size: 20px}.exad-alert .exad-alert-element .exad-alert-element-content p{margin: 0;font-size: 16px}.exad-alert .exad-alert-element .exad-alert-element-dismiss-icon{position: absolute;top: 50%;transform: translateY(-50%);line-height: 0}.exad-alert .exad-alert-element .exad-alert-element-dismiss-icon svg{width: 16px;height: 16px;cursor: pointer}.exad-alert .exad-alert-element .exad-alert-element-dismiss-icon svg path{fill: #A1A5B5}.exad-alert-element-dismiss-button{display: inline-block}.exad-alert-element-dismiss-button .exad-alert-element-dismiss-done,.exad-alert-element-dismiss-button .exad-alert-element-dismiss-cancel{text-decoration: none;display: inline-block;transition: all .3s ease;border-radius: 5px;margin-right: 10px;font-size: 15px}.exad-alert-element-dismiss-button button{border: none}@media only screen and (max-width: 767px){.exad-alert .exad-alert-element{flex-direction: column}body .exad-alert .exad-alert-element .exad-alert-element-icon,body .exad-alert .exad-alert-element .exad-alert-element-content{width: 100% !important}}.morphext > .animated{display: inline-block}.exad-animated-text-align-left{text-align: left}.exad-animated-text-align-center{text-align: center}.exad-animated-text-align-right{text-align: right}.exad-typed-strings{margin: 0}.exad-animated-text-pre-heading,.exad-animated-text-animated-heading,.exad-animated-text-post-heading{font-size: 30px;font-weight: 600}.exad-button-wrapper .exad-button-action{text-align: center;display: inline-block;text-decoration: none;position: relative;z-index: 1;overflow: hidden}.exad-button-wrapper{margin: 0 auto;display: flex}.exad-button-wrapper.exad-button-fixed-height-yes .exad-button-action{position: relative}.exad-button-wrapper.exad-button-fixed-height-yes .exad-button-action span{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 1}.exad-button-wrapper .exad-button-action svg{height:20px;width:20px}.exad-button-icon-wrapper{display: inline-block;vertical-align:middle}.exad-button-icon-wrapper i{display: block}.exad-button-wrapper.exad-button-incon-before-text .exad-button-action .exad-button-icon-wrapper{margin-right: 10px}.exad-button-wrapper.exad-button-incon-after-text .exad-button-action .exad-button-icon-wrapper{margin-left: 10px}.exad-button-wrapper.effect-1 .exad-button-action::before{position: absolute;content: '';height: 100%;width: 0;background: #fff;top: 0;left: 0;z-index: -1;transition: all .3s ease}.exad-button-wrapper.effect-1 .exad-button-action:hover::before{width: 100%}.exad-button-wrapper.effect-2 .exad-button-action:before, .exad-button-wrapper.effect-2 .exad-button-action:after{content: '';height: 50%;width: 0;position: absolute;transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);z-index: -1}.exad-button-wrapper.effect-2 .exad-button-action:before{top: 0;left: 0;right: auto}.exad-button-wrapper.effect-2 .exad-button-action:after{bottom: 0;right: 0;left: auto}.exad-button-wrapper.effect-2 .exad-button-action:hover{color: #fff;-webkit-box-shadow: none;box-shadow: none}.exad-button-wrapper.effect-2 .exad-button-action:hover:before, .exad-button-wrapper.effect-2 .exad-button-action:hover:after{width: 100%}.exad-button-wrapper.effect-3 .exad-button-action::before{position: absolute;content: '';height: 100%;width: 100%;top: 0;left: 0;z-index: -1;-webkit-transform: scale(0);transform: scale(0);opacity: 0;transition: all .3s ease;-webkit-transform-origin: center center;transform-origin: center center}.exad-button-wrapper.effect-3 .exad-button-action:hover{color: #000000}.exad-button-wrapper.effect-3 .exad-button-action:hover::before{-webkit-transform: scale(1);transform: scale(1);opacity: 1}.exad-button-wrapper.effect-4 .exad-button-action{transition: all .5s ease}.exad-button-wrapper.effect-4 .exad-button-action::before, .exad-button-wrapper.effect-4 .exad-button-action::after{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: -1;transition: all .3s;-webkit-transform: translate(0, -100%);transform: translate(0, -100%);transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1)}.exad-button-wrapper.effect-4 .exad-button-action::before{background: #c4c4c4}.exad-button-wrapper.effect-4 .exad-button-action::after{transition-delay: 0.2s}.exad-button-wrapper.effect-4 .exad-button-action:hover{letter-spacing: 3px}.exad-button-wrapper.effect-4 .exad-button-action:hover::before{-webkit-transform: translate(0, 0);transform: translate(0, 0)}.exad-button-wrapper.effect-4 .exad-button-action:hover::after{-webkit-transform: translate(0, 0);transform: translate(0, 0)}.exad-button-wrapper.effect-5 .exad-button-action::before{position: absolute;content: '';top: 50%;bottom: 50%;left: 0;right: 0;z-index: -1;opacity: 0;transition: all .3s ease}.exad-button-wrapper.effect-5 .exad-button-action:hover{color: #000000}.exad-button-wrapper.effect-5 .exad-button-action:hover::before{top: 0;bottom: 0;opacity: 1}.exad-button-wrapper.effect-6 .exad-button-action{display: inline-block;text-decoration: none;position: relative;z-index: 1;border: 1px solid #8868fe}.exad-button-wrapper.effect-6 .exad-button-action:hover{-webkit-animation: pulse 0.5s cubic-bezier(0.66, 0, 0, 1);animation: pulse 0.5s cubic-bezier(0.66, 0, 0, 1)}@keyframes pulse{0%{box-shadow: 0 0 0 0px #A9FBD7}50%{box-shadow: 0 0 0 20px #A9FBD7}100%{box-shadow: 0 0 0 0px #A9FBD7}}.exad-button-wrapper.effect-7 .exad-button-action::before{position: absolute;content: '';top: 0;left: 0;-webkit-transform: translateY(100%);transform: translateY(100%);transition: all 0.3s ease;height: 100%;width: 100%;z-index: -1}.exad-button-wrapper.effect-7 .exad-button-action:hover{color: #fff}.exad-button-wrapper.effect-7 .exad-button-action:hover::before{-webkit-transform: translateY(0);transform: translateY(0)}.exad-button-wrapper.effect-7 .exad-button-action:hover span i{-webkit-transform: translate(0, 0);transform: translate(0, 0)}.exad-button-wrapper.effect-8 .exad-button-action span.effect-8-position{position: absolute;content: '';display: block;border-radius: 50%;height: 0;width: 0;transition: width 0.3s ease-in-out,height 0.3s ease-in-out;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);z-index: -1}.exad-button-wrapper.effect-8 .exad-button-action:hover{color: #fff}.exad-button-wrapper.effect-8 .exad-button-action:hover span.effect-8-position{height: 350%;width: 350%}.exad-button-wrapper.effect-9 .exad-button-action{transition: all .3s ease;border: 1px solid #8868fe}.exad-button-wrapper.effect-9 .exad-button-action:hover{letter-spacing: 5px}.exad-button-wrapper.effect-10 .exad-button-action{transition: all .3s ease}.exad-button-wrapper.effect-10 .exad-button-action::before{position: absolute;content: '';left: 50%;right: 50%;top: 0;bottom: 0;z-index: -1;opacity: 0;transition: all .3s ease}.exad-button-wrapper.effect-10 .exad-button-action:hover{color: #fff}.exad-button-wrapper.effect-10 .exad-button-action:hover::before{left: 0;right: 0;opacity: 1}.exad-button-wrapper.effect-11 .exad-button-action{padding: 20px 0;display: inline-block;color: #fff;text-transform: uppercase;text-decoration: none;position: relative;transition: all .3s ease}.exad-button-wrapper.effect-11 .exad-button-action:hover{-webkit-animation: anim 0.3s forwards;animation: anim 0.3s forwards}@keyframes anim{60%{-webkit-transform: scale3d(0.8, 0.8, 1);transform: scale3d(0.8, 0.8, 1)}85%{-webkit-transform: scale3d(1.1, 1.1, 1);transform: scale3d(1.1, 1.1, 1)}100%{-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1)}}.exad-button-wrapper.effect-12 .exad-button-action{padding: 20px 0;display: inline-block;text-transform: uppercase;text-decoration: none;position: relative;transition: all .3s ease;border-radius: 0}.exad-button-wrapper.effect-12 .exad-button-action::before, .exad-button-wrapper.effect-12 .exad-button-action::after{position: absolute;content: '';height: 2px;width: 0;transition: all .4s ease}.exad-button-wrapper.effect-12 .exad-button-action::before{top: 0;left: 0}.exad-button-wrapper.effect-12 .exad-button-action::after{bottom: 0;right: 0;top: inherit;left: inherit}.exad-button-wrapper.effect-12 .exad-button-action:hover{background: #fff}.exad-button-wrapper.effect-12 .exad-button-action:hover::before, .exad-button-wrapper.effect-12 .exad-button-action:hover::after{width: 100%;transition: all .7s ease}h1.exad-call-to-action-title{font-weight: 600;margin-bottom: 20px;font-size: 40px}ul.exad-call-to-action-buttons{margin: 0;padding: 0;list-style: none}.exad-call-to-action-buttons li,.exad-call-to-action-buttons li a{display: inline-block}.exad-call-to-action.skin-vertical p.exad-call-to-action-subtitle{margin-bottom: 50px;font-size: 16px}.exad-call-to-action.skin-horizontal .exad-call-to-action-content{display: -webkit-box;display: flex;-webkit-box-align: center;align-items: center}.exad-call-to-action.skin-horizontal .exad-call-to-action-content .exad-call-to-action-header{width: 70%}.exad-call-to-action.skin-horizontal .exad-call-to-action-content .exad-call-to-action-footer{-webkit-box-flex: 1;flex: 1;text-align: right}.exad-call-to-action-icon i{font-size: 40px;display: inline-block}@media only screen and (max-width: 493px){.exad-call-to-action-buttons li{display: flex}a.exad-call-to-action-secondary-btn{margin-top: 20px}}@media only screen and (max-width: 767px){.exad-call-to-action.skin-horizontal .exad-call-to-action-content{flex-direction: column;align-items: flex-start}.exad-call-to-action.skin-horizontal .exad-call-to-action-content .exad-call-to-action-header{width: 100%}}.exad-call-to-action-primary-btn, .exad-call-to-action-secondary-btn{position: relative;overflow: hidden;z-index: 1}.exad-call-to-action-primary-btn span, .exad-call-to-action-secondary-btn span{display: block}.exad-call-to-action-buttons.effect-1 .exad-call-to-action-primary-btn::before{position: absolute;content: '';height: 100%;width: 0;top: 0;left: 0;z-index: -1;transition: all .3s ease}.exad-call-to-action-buttons.effect-1 .exad-call-to-action-primary-btn:hover::before{width: 100%}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-primary-btn:before, .exad-call-to-action-buttons.effect-2 .exad-call-to-action-primary-btn:after{content: '';height: 50%;width: 0;position: absolute;transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);z-index: -1}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-primary-btn:before{top: 0;left: 0;right: auto}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-primary-btn:after{bottom: 0;right: 0;left: auto}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-primary-btn:hover:before, .exad-call-to-action-buttons.effect-2 .exad-call-to-action-primary-btn:hover:after{width: 100%}.exad-call-to-action-buttons.effect-3 .exad-call-to-action-primary-btn::before{position: absolute;content: '';height: 100%;width: 100%;top: 0;left: 0;z-index: -1;-webkit-transform: scale(0);transform: scale(0);opacity: 0;transition: all .3s ease;-webkit-transform-origin: center center;transform-origin: center center}.exad-call-to-action-buttons.effect-3 .exad-call-to-action-primary-btn:hover::before{-webkit-transform: scale(1);transform: scale(1);opacity: 1}.exad-call-to-action-buttons.effect-4 .exad-call-to-action-primary-btn::before{content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 0;z-index: -1;transition: all .3s}.exad-call-to-action-buttons.effect-4 .exad-call-to-action-primary-btn:hover::before{height: 100%}.exad-call-to-action-buttons.effect-5 .exad-call-to-action-primary-btn::before{position: absolute;content: '';top: 50%;bottom: 50%;left: 0;right: 0;z-index: -1;opacity: 0;transition: all .3s ease}.exad-call-to-action-buttons.effect-5 .exad-call-to-action-primary-btn:hover::before{top: 0;bottom: 0;opacity: 1}.exad-call-to-action-buttons.effect-6 .exad-call-to-action-primary-btn::before{position: absolute;content: '';top: 0;left: 0;transition: all 0.3s ease;height: 0;width: 100%;z-index: -1}.exad-call-to-action-buttons.effect-6 .exad-call-to-action-primary-btn:hover::before{height: 100%}.exad-call-to-action-buttons.effect-7 .exad-call-to-action-primary-btn{transition: all .3s ease}.exad-call-to-action-buttons.effect-7 .exad-call-to-action-primary-btn:hover{letter-spacing: 5px}.exad-call-to-action-buttons.effect-8 .exad-call-to-action-primary-btn{transition: all .3s ease}.exad-call-to-action-buttons.effect-8 .exad-call-to-action-primary-btn::before{position: absolute;content: '';left: 50%;right: 50%;top: 0;bottom: 0;z-index: -1;opacity: 0;transition: all .3s ease}.exad-call-to-action-buttons.effect-8 .exad-call-to-action-primary-btn:hover::before{left: 0;right: 0;opacity: 1}.exad-call-to-action-buttons.effect-9 .exad-call-to-action-primary-btn:hover{-webkit-animation: anim 0.3s forwards;animation: anim 0.3s forwards}@keyframes anim{60%{-webkit-transform: scale3d(0.8, 0.8, 1);transform: scale3d(0.8, 0.8, 1)}85%{-webkit-transform: scale3d(1.1, 1.1, 1);transform: scale3d(1.1, 1.1, 1)}100%{-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1)}}.exad-call-to-action-buttons.effect-10 .exad-call-to-action-primary-btn{transition: all .3s ease}.exad-call-to-action-buttons.effect-1 .exad-call-to-action-secondary-btn::before{position: absolute;content: '';height: 100%;width: 0;top: 0;left: 0;z-index: -1;transition: all .3s ease}.exad-call-to-action-buttons.effect-1 .exad-call-to-action-secondary-btn:hover::before{width: 100%}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-secondary-btn:before, .exad-call-to-action-buttons.effect-2 .exad-call-to-action-secondary-btn:after{content: '';height: 50%;width: 0;position: absolute;transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);z-index: -1}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-secondary-btn:before{top: 0;left: 0;right: auto}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-secondary-btn:after{bottom: 0;right: 0;left: auto}.exad-call-to-action-buttons.effect-2 .exad-call-to-action-secondary-btn:hover:before, .exad-call-to-action-buttons.effect-2 .exad-call-to-action-secondary-btn:hover:after{width: 100%}.exad-call-to-action-buttons.effect-3 .exad-call-to-action-secondary-btn::before{position: absolute;content: '';height: 100%;width: 100%;top: 0;left: 0;z-index: -1;-webkit-transform: scale(0);transform: scale(0);opacity: 0;transition: all .3s ease;-webkit-transform-origin: center center;transform-origin: center center}.exad-call-to-action-buttons.effect-3 .exad-call-to-action-secondary-btn:hover::before{-webkit-transform: scale(1);transform: scale(1);opacity: 1}.exad-call-to-action-buttons.effect-4 .exad-call-to-action-secondary-btn::before{content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 0;z-index: -1;transition: all .3s}.exad-call-to-action-buttons.effect-4 .exad-call-to-action-secondary-btn:hover::before{height: 100%}.exad-call-to-action-buttons.effect-5 .exad-call-to-action-secondary-btn::before{position: absolute;content: '';top: 50%;bottom: 50%;left: 0;right: 0;z-index: -1;opacity: 0;transition: all .3s ease}.exad-call-to-action-buttons.effect-5 .exad-call-to-action-secondary-btn:hover::before{top: 0;bottom: 0;opacity: 1}.exad-call-to-action-buttons.effect-6 .exad-call-to-action-secondary-btn::before{position: absolute;content: '';top: 0;left: 0;transition: all 0.3s ease;height: 0;width: 100%;z-index: -1}.exad-call-to-action-buttons.effect-6 .exad-call-to-action-secondary-btn:hover::before{height: 100%}.exad-call-to-action-buttons.effect-7 .exad-call-to-action-secondary-btn{transition: all .3s ease}.exad-call-to-action-buttons.effect-7 .exad-call-to-action-secondary-btn:hover{letter-spacing: 5px}.exad-call-to-action-buttons.effect-8 .exad-call-to-action-secondary-btn{transition: all .3s ease}.exad-call-to-action-buttons.effect-8 .exad-call-to-action-secondary-btn::before{position: absolute;content: '';left: 50%;right: 50%;top: 0;bottom: 0;z-index: -1;opacity: 0;transition: all .3s ease}.exad-call-to-action-buttons.effect-8 .exad-call-to-action-secondary-btn:hover::before{left: 0;right: 0;opacity: 1}.exad-call-to-action-buttons.effect-9 .exad-call-to-action-secondary-btn:hover{-webkit-animation: anim 0.3s forwards;animation: anim 0.3s forwards}@keyframes anim{60%{-webkit-transform: scale3d(0.8, 0.8, 1);transform: scale3d(0.8, 0.8, 1)}85%{-webkit-transform: scale3d(1.1, 1.1, 1);transform: scale3d(1.1, 1.1, 1)}100%{-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1)}}.exad-call-to-action-buttons.effect-10 .exad-call-to-action-secondary-btn{transition: all .3s ease}.exad-card-description{margin: 0 auto}.exad-card-tag{margin: 0}.exad-card.default{position: relative}.exad-card.default .exad-card-thumb img{display: block}.exad-card.default .exad-card-body .exad-card-title,.exad-card.text_on_image .exad-card-body .exad-card-title{display: inline-block;text-decoration: none;position: relative;transition: all .4s ease;font-size: 20px;font-weight: bold}.exad-card.default .exad-card-body .exad-card-title::before,.exad-card.text_on_image .exad-card-body .exad-card-title::before{position: absolute;content: '';height: 3px;width: 25px;top: 50%;transform: translateY(-50%);left: 0;transition: all .3s ease;opacity: 0}.exad-card.default .exad-card-body .exad-card-title:hover::before,.exad-card.text_on_image .exad-card-body .exad-card-title:hover::before{opacity: 1;left: -30px}.exad-card .exad-card-body .exad-card-action{display: table;border-radius: 4px;transition: all .4s ease;color: #132c47;text-decoration: none}.exad-card.left .exad-card-action{margin-right: auto}.exad-card.center .exad-card-action{margin-right: auto;margin-left: auto}.exad-card.right .exad-card-action{margin-left: auto}.exad-card.text_on_image{position: relative;overflow: hidden}.exad-card.text_on_image::before{position: absolute;content: '';top: 0;left: 0;width: 100%;height: 5px;-webkit-transform: scaleX(0);transform: scaleX(0);-webkit-transform-origin: left center;transform-origin: left center;transition: all .2s ease;z-index: 1}.exad-card.text_on_image:hover::before{-webkit-transform: scaleX(1);transform: scaleX(1)}.exad-card.text_on_image .exad-card-thumb{position: relative}.exad-card-thumb{overflow: hidden}.exad-card.left .exad-card-thumb{margin-right: auto}.exad-card.center .exad-card-thumb{margin-left: auto;margin-right: auto}.exad-card.right .exad-card-thumb{margin-left: auto}.exad-card .exad-card-thumb img{height: 100%;width: 100%;object-fit: cover;-o-object-fit: cover}.exad-card.text_on_image .exad-card-thumb img{width: 100%}.exad-card.text_on_image .exad-card-thumb::after{position: absolute;content: '';width: 100%;height: 100%;top: 0;left: 0;background: linear-gradient(to top, rgba(0, 0, 0, 0.99) 0%, rgba(128, 128, 128, 0.1) 50%, rgba(255, 255, 255, 0.1) 100%)}.exad-card.text_on_image .exad-card-body{position: absolute;left: 0;bottom: 0;right: 0}.exad-card.yes .exad-card-thumb img{transform: scale(1);transition: all .3s ease}.exad-card:hover.yes .exad-card-thumb img{transform: scale(1.15)}.exad-card{position: relative}.exad-card-badge{position: absolute}.exad-contact-form-7 .wpcf7{width: 100%}.exad-contact-form{display: flex;flex-wrap: wrap;position: relative;margin-bottom: 30px}.exad-contact-form .exad-contact-form-title{display: block;width: 100%;margin-bottom: 30px;font-size: 30px;color: #132c47;font-weight: 500}.exad-contact-form .exad-contact-form-input-group{width: 100%;margin-bottom: 20px;position: relative}@media (max-width: 575px){.exad-contact-form .exad-contact-form-input-group{width: 100%}}.exad-contact-form-7 input[type="text"], .exad-contact-form-7 input[type="email"], .exad-contact-form-7 input[type="url"], .exad-contact-form-7 input[type="password"], .exad-contact-form-7 input[type="search"], .exad-contact-form-7 input[type="number"], .exad-contact-form-7 input[type="tel"], .exad-contact-form-7 input[type="range"], .exad-contact-form-7 input[type="date"], .exad-contact-form-7 input[type="month"], .exad-contact-form-7 input[type="week"], .exad-contact-form-7 input[type="time"], .exad-contact-form-7 input[type="datetime"], .exad-contact-form-7 input[type="datetime-local"], .exad-contact-form-7 input[type="color"], .exad-contact-form-7 textarea{width: 100%;border: none}.exad-contact-form-7 label{display: block}.exad-contact-form-7 textarea{height: auto}.exad-contact-form .exad-contact-form-input-group label{display: inline-block;position: relative;margin-right: 20px;margin-top: 20px;padding: 0 0 0 25px}.exad-contact-form .exad-contact-form-input-group label input{opacity: 0;height: 0;width: 0;position: absolute;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none}.exad-contact-form .exad-contact-form-input-group label input:checked ~ .checkmark:after{display: block}.exad-contact-form .exad-contact-form-input-group label input:checked ~ .checkmark{background-color: #4ce2bd;border: none}.exad-contact-form .exad-contact-form-input-group label .checkmark{position: absolute;top: 0;left: 0;height: 18px;width: 18px;background-color: #fff;border: 1px solid #e3e6ec}.exad-contact-form .exad-contact-form-input-group label .checkmark::after{content: "\e90e";font-family: eicons;position: absolute;display: none;color: #fff;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 12px}.exad-contact-form-7 .wpcf7-form input[type="submit"]{transition: all .4s ease;display: flex}.exad-contact-form-7 .exad-cf7-column{display: grid;grid-auto-flow: column;grid-column-gap: 15px}.exad-contact-form .exad-contact-form-input-action i{margin-left: 10px}.exad-contact-form.two{display: flex;flex-wrap: wrap}.exad-contact-form-7 br{display: none}.exad-corona-wrapper.exad-col-1, .exad-corona-wrapper.exad-col-2, .exad-corona-wrapper.exad-col-3, .exad-corona-wrapper.exad-col-4, .exad-corona-wrapper.exad-col-5, .exad-corona-wrapper.exad-col-6{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-corona-wrapper .exad-corona-col{padding: 0px 10px 20px 10px}.exad-corona-wrapper.exad-col-1 .exad-corona-col{flex: 0 0 100%;max-width: 100%}.exad-corona-wrapper.exad-col-2 .exad-corona-col{flex: 0 0 50%;max-width: 50%}.exad-corona-wrapper.exad-col-3 .exad-corona-col{flex: 0 0 33.333333%;max-width: 33.333333%}.exad-corona-wrapper.exad-col-4 .exad-corona-col{flex: 0 0 25%;max-width: 25%}.exad-corona-wrapper.exad-col-5 .exad-corona-col{flex: 0 0 20%;max-width: 20%}.exad-corona-content-horizontal{display: flex;flex-direction: row}.exad-corona-content-vertical{display: flex;flex-direction: column}.exad-corona-wrapper.exad-col-6 .exad-corona-col{flex: 0 0 16.66666%;max-width: 16.666666%}@media (max-width: 991px){.exad-corona-wrapper.exad-col-4 .exad-corona-col,.exad-corona-wrapper.exad-col-5 .exad-corona-col,.exad-corona-wrapper.exad-col-6 .exad-corona-col{flex: 0 0 33.333333%;max-width: 33.333333%}}@media (max-width: 767px){.exad-corona-wrapper.exad-col-1 .exad-corona-col, .exad-corona-wrapper.exad-col-2 .exad-corona-col,.exad-corona-wrapper.exad-col-3 .exad-corona-col,.exad-corona-wrapper.exad-col-4 .exad-corona-col,.exad-corona-wrapper.exad-col-5 .exad-corona-col,.exad-corona-wrapper.exad-col-6 .exad-corona-col{flex: 0 0 100%;max-width: 100%;padding: 0 10px 20px 10px}}.flag-row{width: 80px}.flag img{width: 35px;height: auto}.exad-corona-search-form{width: 350px;height: 50px;margin-bottom: 20px;position: relative}.exad-corona-search-icon{position: absolute;top: 50%;transform: translateY(-50%);left: 20px}.exad-corona-search-form input{height: 100%;width: 100%}.exad-data-table .exad-data-table-row td,.exad-data-table .exad-corona-table-heading th{padding: 15px}.exad-corona-table-heading.yes th{position: sticky;position: -webkit-sticky;top: -2px}.admin-bar .exad-corona-table-heading.yes th{position: sticky;position: -webkit-sticky;top: 30px}.exad-covid-continent-btn{transition: all .3s ease;display: inline-block}.exad-covid-continent-btn:focus{outline: 0}.exad-corona-heading.inline{display: flex;justify-content: space-between}.exad-corona-heading.inline .exad-corona-last-update{order: 2}@media (max-width: 769px){.exad-corona-table{overflow-x: scroll}}.exad-corona-table.yes{overflow-y: scroll!important}.admin-bar .exad-corona-table.yes .exad-corona-table-heading.yes th{top: 0}.exad-countdown-description{text-align: center;margin-bottom: 90px;position: relative;z-index: 2}.exad-countdown-description h2{font-size: 40px;color: #0a1724;font-weight: 500;margin-bottom: 23px;position: relative}.exad-countdown-description p{margin-bottom: 0;padding: 0 300px}.exad-countdown-description{color: #fff}.exad-countdown-description h2{color: #fff}.exad-countdown{display: flex;flex-wrap: wrap;position: relative;z-index: 2}.exad-countdown .exad-countdown-container{width: calc((100% / 4) - 23px);margin-right: 30px;text-align: center}.exad-countdown-content-container.yes .exad-countdown{justify-content: center}.exad-countdown-content-container.yes .exad-countdown .exad-countdown-container{position: relative}.exad-countdown-content-container.yes .exad-countdown-timer-wrapper{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-countdown .exad-countdown-container:last-child{margin-right: 0px}.exad-countdown .exad-countdown-container .exad-countdown-timer-wrapper > span{display: block}.exad-countdown .exad-countdown-count{line-height: 1}.exad-countdown .exad-countdown-count{position: relative}.exad-countdown.exad-countdown-divider .exad-countdown-container{position: relative}.exad-countdown.exad-countdown-divider .exad-countdown-container::after{content: ":";font-weight: 100;position: absolute;right: 0;top: 10%;color: #ffffff;font-size: 70px}.exad-countdown.exad-countdown-divider .exad-countdown-container:last-child::after{display: none}.exad-countdown .exad-countdown-count{font-size: 80px;color: #000;text-align: center}.exad-countdown .exad-countdown-title{color: #0a1724;text-align: center}.exad-coundown-bg > svg{position: absolute;bottom: 0;left: 0;pointer-events: none;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none}.exad-coundown-bg > svg > path{fill: rgba(255, 255, 255, 0.078)}.exad-countdoen-watermark{font-size: 200px;color: inherit;position: absolute;top: 0;left: 0;width: 100%;display: block;font-weight: 700}.exad-countdown-offer-limitation-title{font-size: 20px;font-weight: 400;color: #fff;margin-bottom: 38px;position: relative;z-index: 2}.exad-countdown .message{text-align: center;font-size: 30px;font-weight: 700;width: 100%;margin-bottom: 0}.exad-countdown-banner{padding: 194px 0}.exad-countdown-banner .exad-countdown-description{margin-bottom: 117px}@media (max-width: 1200px){.exad-countdown-description p{padding: 0 150px}}@media (max-width: 991px){.exad-countdown-description p{padding: 0 20px}.exad-coundown-bg > svg,.exad-countdoen-watermark{display: none}}@media (max-width: 767px){.exad-countdown .exad-countdown-container{width: calc((100% / 2) - 20px);margin-right: 10px;margin-left: 10px;margin-bottom: 20px;padding: 23px 10px}.exad-countdown .exad-countdown-container.gradient-version, .exad-countdown .exad-countdown-container.image-version, .exad-countdown .exad-countdown-container.modern{padding-left: 15px;padding-right: 15px}.exad-countdown .exad-countdown-container{width: calc((100% / 2) - 20px);margin-right: 10px;margin-left: 10px}.exad-countdown .exad-countdown-count{font-size: 40px}.exad-countdown.exad-countdown-divider .exad-countdown-container::after{top: 0}.exad-countdown.exad-countdown-divider .exad-countdown-container:nth-child(2)::after{display: none}}@media (max-width: 480px){.exad-countdown .exad-countdown-container{width: calc(100% - 20px)}.exad-countdown.exad-countdown-divider .exad-countdown-container::after{display: none}}@media (max-width: 400px){.exad-countdown-banner{padding: 97px 0}.exad-countdown-banner .exad-countdown-description{margin-bottom: 58.5px}.exad-countdown-description.two p{padding-right: 0px}}.exad-dual-button{display: table}.exad-dual-button.exad-dual-button-align-left{margin-right: auto}.exad-dual-button.exad-dual-button-align-center{margin-left: auto;margin-right: auto}.exad-dual-button.exad-dual-button-align-right{margin-left: auto}.exad-dual-button-action{display: inline-block;text-decoration: none}.exad-dual-button-primary{position: relative}.exad-dual-button-connector{position: absolute;top: 50%;right: 0;transform: translate(50%, -50%);-ms-transform: translate(50%, -50%);-webkit-transform: translate(50%, -50%);z-index: 10}.exad-dual-button-connector span{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%)}.exad-dual-button-primary.effect-1, .exad-dual-button-secondary.effect-1,.exad-dual-button-primary.effect-2, .exad-dual-button-secondary.effect-2,.exad-dual-button-primary.effect-3, .exad-dual-button-secondary.effect-3,.exad-dual-button-primary.effect-4, .exad-dual-button-secondary.effect-4,.exad-dual-button-primary.effect-6, .exad-dual-button-secondary.effect-6{position: relative;transition: all .3s ease}.exad-dual-button-primary.effect-1::before, .exad-dual-button-secondary.effect-1::before{position: absolute;content: '';height: 100%;width: 0;top: 0;left: 0;-webkit-transition: all .3s ease;transition: all .3s ease}.exad-dual-button-primary.effect-1:hover, .exad-dual-button-secondary.effect-1:hover{z-index: 1}.exad-dual-button-primary.effect-1:hover::before, .exad-dual-button-secondary.effect-1:hover::before{width: 100%;z-index: -1}.exad-dual-button-primary.effect-2::before, .exad-dual-button-secondary.effect-2::before{position: absolute;content: '';height: 100%;width: 100%;top: 0;left: 0;-webkit-transform: scale(0);transform: scale(0);opacity: 0;-webkit-transition: all .3s ease;transition: all .3s ease;-webkit-transform-origin: center center;transform-origin: center center}.exad-dual-button-primary.effect-2:hover, .exad-dual-button-secondary.effect-2:hover{z-index: 1}.exad-dual-button-primary.effect-2:hover::before, .exad-dual-button-secondary.effect-2:hover::before{-webkit-transform: scale(1);transform: scale(1);opacity: 1;z-index: -1}.exad-dual-button-primary.effect-3::before, .exad-dual-button-secondary.effect-3::before{position: absolute;content: '';height: 0;width: 100%;bottom: 0;left: 0;-webkit-transition: all .3s ease;transition: all .3s ease}.exad-dual-button-primary.effect-3:hover, .exad-dual-button-secondary.effect-3:hover{z-index: 1}.exad-dual-button-primary.effect-3:hover::before, .exad-dual-button-secondary.effect-3:hover::before{height: 100%;z-index: -1}.exad-dual-button-primary.effect-4::before, .exad-dual-button-secondary.effect-4::before{position: absolute;content: '';top: 50%;bottom: 50%;left: 0;right: 0;opacity: 0;-webkit-transition: all .3s ease;transition: all .3s ease}.exad-dual-button-primary.effect-4:hover, .exad-dual-button-secondary.effect-4:hover{z-index: 1}.exad-dual-button-primary.effect-4:hover::before, .exad-dual-button-secondary.effect-4:hover::before{top: 0;bottom: 0;opacity: 1;z-index: -1}.exad-dual-button-primary.effect-5, .exad-dual-button-secondary.effect-5{-webkit-transition: all .3s ease;transition: all .3s ease}.exad-dual-button-primary.effect-6::before, .exad-dual-button-secondary.effect-6::before{position: absolute;content: '';height: 100%;width: 0;top: 0;right: 0;-webkit-transition: all .3s ease;transition: all .3s ease}.exad-dual-button-primary.effect-6:hover, .exad-dual-button-secondary.effect-6:hover{z-index: 1}.exad-dual-button-primary.effect-6:hover::before, .exad-dual-button-secondary.effect-6:hover::before{width: 100%;z-index: -1}.exad-dual-heading .exad-dual-heading-wrapper{padding: 5px}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-description{line-height: 26px;margin: 30px 0 0 0;padding: 10px;font-weight: 400}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-icon{display: inline-block}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-icon i{font-size: 36px}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-title{font-size: 36px;margin-top: 10px}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-title{font-size: 30px;color: #132c47;text-transform: uppercase;font-weight: bold;text-decoration: none}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-title .first-heading,.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-title .second-heading{padding: 15px 10px}.exad-dual-heading .exad-dual-heading-wrapper .exad-dual-heading-title span{color: #132c47}.exad-facebook-feed-wrapper .exad-facebook-meta{display: flex;align-items: center}.exad-facebook-feed-wrapper .exad-facebook-author{display: flex;align-items: center}.exad-facebook-feed-wrapper .exad-facebook-author .exad-facebook-avatar{width: 50px;border-radius: 50%}.exad-facebook-feed-wrapper .exad-facebook-likes{margin-right: 15px}.exad-facebook-feed-wrapper .exad-facebook-feed-item{position: relative;display: flex}.exad-facebook-feed-wrapper.exad-layout-2 .exad-facebook-feed-item .exad-facebook-feed-feature-image,.exad-facebook-feed-wrapper.exad-layout-3 .exad-facebook-feed-item .exad-facebook-feed-feature-image{flex-direction: row}.exad-facebook-feed-wrapper.exad-layout-3 .exad-facebook-feed-item .exad-facebook-feed-feature-image{order: 2}.exad-facebook-feed-wrapper .exad-facebook-feed-item .exad-facebook-feed-feature-image img{width: 100%;height: 100%;object-fit: cover;-o-object-fit: cover}.exad-facebook-feed-wrapper{display: grid}.exad-facebook-footer-wrapper{position: absolute;bottom: 0;width: 100%;left: 0}.exad-facebook-author-name{display: block}@media(max-width: 575px){.exad-filterable-items.exad-filterable-menu-container-align-left,.exad-filterable-items.exad-filterable-menu-container-align-right{display: block !important}.exad-filterable-items.exad-filterable-menu-container-align-left .exad-filterable-controls,.exad-filterable-items.exad-filterable-menu-container-align-right .exad-filterable-controls,.exad-filterable-items.exad-filterable-menu-container-align-left .exad-filterable-menu-container,.exad-filterable-items.exad-filterable-menu-container-align-right .exad-filterable-menu-container{width: 100% !important}}.exad-filterable-items.exad-filterable-menu-container-align-left,.exad-filterable-items.exad-filterable-menu-container-align-right{display: flex}.exad-filterable-items.exad-filterable-menu-container-align-left .exad-filterable-menu-container,.exad-filterable-items.exad-filterable-menu-container-align-right .exad-filterable-menu-container{width: 20%;display: flex;flex-direction: column}.exad-filterable-items.exad-filterable-menu-container-align-left .exad-filterable-menu-container{order: 0}.exad-filterable-items.exad-filterable-menu-container-align-right .exad-filterable-menu-container{order: 1}.exad-filterable-items.exad-filterable-menu-container-align-left .exad-filterable-controls,.exad-filterable-items.exad-filterable-menu-container-align-right .exad-filterable-controls{width: 80%}.exad-filterable-items .exad-filterable-content-wrapper{position: relative;overflow: hidden}.exad-filterable-items .exad-filterable-image .exad-filterable-thumbnail-holder{position: absolute;top: 0;left: 0;width: 100.1%;height: 100.1%;background-position: center;background-size: cover;z-index: 0;-webkit-transition: all 0.2s ease;-o-transition: all 0.2s ease;transition: all 0.2s ease;will-change: transform;overflow: hidden}.exad-filterable-items .exad-filterable-image{position: relative;background-color: #eeeeee;padding-bottom: 80%}.exad-filterable-menu .filter-item{background: none;border: none;cursor: pointer;outline: none;transition: all .3s ease;text-transform: capitalize;display: inline-block}.exad-filterable-items .filterable-post-container{display: flex;flex-wrap: wrap}.exad-filterable-items .filterable-post-container .exad-filterable-item{position: relative;overflow: hidden}.exad-filterable-items .filterable-post-container .exad-filterable-item img{width: 100%;display: block}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay{position: absolute;top: 0;left: 0;bottom: 0;right: 0;background: rgba(114, 76, 255, 0.8);transition: all .3s ease}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay .exad-filterable-item-overlay-content{position: absolute;top: 0;left: 0;right: 0;bottom: 0}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay .exad-filterable-item-overlay-content .exad-fg-icons{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);width: 100%}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay .exad-filterable-item-overlay-content .exad-filterable-item-content{position: absolute;right: 0;bottom: 0;left: 0}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay .exad-filterable-item-overlay-content a{height: 60px;width: 60px;margin-right: 10px;position: relative;cursor: pointer;display: inline-block;transition: all .3s ease;border-radius: 100%}.exad-filterable-items .exad-filterable-item-content.below-image{display: flex;flex-direction: column}.exad-filterable-items .exad-filterable-item-content h2{margin: 10px 0px 10px 0px;font-size: 20px}.exad-filterable-items .exad-filterable-item-content p{margin: 10px 0px 10px 0px}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay .exad-filterable-item-overlay-content a i{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay.exad-zoom-in{-webkit-transform: scale(0);transform: scale(0)}.exad-filterable-items .filterable-post-container .exad-filterable-item:hover .exad-filterable-item-overlay.exad-zoom-in{-webkit-transform: scale(1);transform: scale(1)}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay.exad-slide-left{-webkit-transform: translateX(-100%);transform: translateX(-100%);opacity: 0}.exad-filterable-items .filterable-post-container .exad-filterable-item:hover .exad-filterable-item-overlay.exad-slide-left{-webkit-transform: translateX(0%);transform: translateX(0%);opacity: 1}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay.exad-slide-right{-webkit-transform: translateX(100%);transform: translateX(100%);opacity: 0}.exad-filterable-items .filterable-post-container .exad-filterable-item:hover .exad-filterable-item-overlay.exad-slide-right{-webkit-transform: translateX(0%);transform: translateX(0%);opacity: 1}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay.exad-slide-top{-webkit-transform: translateY(-100%);transform: translateY(-100%);opacity: 0}.exad-filterable-items .filterable-post-container .exad-filterable-item:hover .exad-filterable-item-overlay.exad-slide-top{-webkit-transform: translateY(0%);transform: translateY(0%);opacity: 1}.exad-filterable-items .filterable-post-container .exad-filterable-item .exad-filterable-item-overlay.exad-slide-bottom{-webkit-transform: translateY(100%);transform: translateY(100%);opacity: 0}.exad-filterable-items .filterable-post-container .exad-filterable-item:hover .exad-filterable-item-overlay.exad-slide-bottom{-webkit-transform: translateY(0%);transform: translateY(0%);opacity: 1}.exad-filterable-items .exad-row-wrapper .exad-post-grid-container .exad-post-grid-thumbnail:before{display: none}.exad-flip-box{-webkit-perspective: 1000px;perspective: 1000px;background-color: transparent}.exad-flip-box-front-overlay, .exad-flip-box-back-overlay{position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0}.exad-flip-box-front-content, .exad-flip-box-back-content{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 100%}.exad-flip-box:hover .left-to-right{-webkit-transform: rotateY(180deg);transform: rotateY(180deg)}.exad-flip-box:hover .left-to-right .exad-flip-box-front{opacity: 0}.exad-flip-box:hover .right-to-left{-webkit-transform: rotateY(-180deg);transform: rotateY(-180deg)}.exad-flip-box:hover .right-to-left .exad-flip-box-front{opacity: 0}.exad-flip-box:hover .top-to-bottom{-webkit-transform: rotateX(-180deg);transform: rotateX(-180deg)}.exad-flip-box:hover .top-to-bottom .exad-flip-box-front{opacity: 0}.exad-flip-box:hover .bottom-to-top{-webkit-transform: rotateX(180deg);transform: rotateX(180deg)}.exad-flip-box:hover .bottom-to-top .exad-flip-box-front{opacity: 0}.exad-flip-box:hover .top-to-bottom-angle{-webkit-transform: rotate3d(1, 1, 0, -180deg);transform: rotate3d(1, 1, 0, -180deg)}.exad-flip-box:hover .top-to-bottom-angle .exad-flip-box-front{opacity: 0}.exad-flip-box:hover .bottom-to-top-angle{-webkit-transform: rotate3d(1, 1, 0, 180deg);transform: rotate3d(1, 1, 0, 180deg)}.exad-flip-box:hover .bottom-to-top-angle .exad-flip-box-front{opacity: 0}.exad-flip-box:hover .exad-flip-box-inner.fade-in-out .exad-flip-box-front{opacity: 0;-webkit-transform: scale(0.5);transform: scale(0.5);z-index: 2}.exad-flip-box:hover .exad-flip-box-inner.fade-in-out .exad-flip-box-back{opacity: 1;-webkit-transform: scale(1);transform: scale(1);z-index: 3}@media only screen and (max-width: 1023px){.exad-flip-box.efb-hovered .left-to-right{-webkit-transform: rotateY(180deg);transform: rotateY(180deg)}.exad-flip-box.efb-hovered .left-to-right .exad-flip-box-front{opacity: 0}.exad-flip-box.efb-hovered .right-to-left{-webkit-transform: rotateY(-180deg);transform: rotateY(-180deg)}.exad-flip-box.efb-hovered .right-to-left .exad-flip-box-front{opacity: 0}.exad-flip-box.efb-hovered .top-to-bottom{-webkit-transform: rotateX(-180deg);transform: rotateX(-180deg)}.exad-flip-box.efb-hovered .top-to-bottom .exad-flip-box-front{opacity: 0}.exad-flip-box.efb-hovered .bottom-to-top{-webkit-transform: rotateX(180deg);transform: rotateX(180deg)}.exad-flip-box.efb-hovered .bottom-to-top .exad-flip-box-front{opacity: 0}.exad-flip-box.efb-hovered .top-to-bottom-angle{-webkit-transform: rotate3d(1, 1, 0, -180deg);transform: rotate3d(1, 1, 0, -180deg)}.exad-flip-box.efb-hovered .top-to-bottom-angle .exad-flip-box-front{opacity: 0}.exad-flip-box.efb-hovered .bottom-to-top-angle{-webkit-transform: rotate3d(1, 1, 0, 180deg);transform: rotate3d(1, 1, 0, 180deg)}.exad-flip-box.efb-hovered .bottom-to-top-angle .exad-flip-box-front{opacity: 0}.exad-flip-box.efb-hovered .exad-flip-box-inner.fade-in-out .exad-flip-box-front{opacity: 0;-webkit-transform: scale(0.5);transform: scale(0.5);z-index: 2}.exad-flip-box.efb-hovered .exad-flip-box-inner.fade-in-out .exad-flip-box-back{opacity: 1;-webkit-transform: scale(1);transform: scale(1);z-index: 3}}.exad-flip-box .exad-flip-box-inner{position: relative;transition: -webkit-transform 1s cubic-bezier(.17,.67,.47,1.18);transition: transform 1s cubic-bezier(.17,.67,.47,1.18);transition: transform 1s, -webkit-transform 1s cubic-bezier(.17,.67,.47,1.18);-webkit-transform-style: preserve-3d;transform-style: preserve-3d;width: 100%;height: 100%}.exad-flip-box .exad-flip-box-inner .exad-flip-box-front{transition: all .5s cubic-bezier(.17,.67,.47,1.18)}.exad-flip-box .exad-flip-box-inner .exad-flip-box-front .exad-flip-box-front-title{font-size: 30px}.exad-flip-box .exad-flip-box-inner .exad-flip-box-back{position: absolute;top: 0;left: 0;width: 100%}.exad-flip-box .exad-flip-box-front .exad-flip-box-front-image i{font-size: 50px}.exad-flip-box .exad-flip-box-inner .exad-flip-box-back .exad-flip-box-back-action{text-decoration: none;transition: all .4s ease;display: inline-block;font-weight: 400}.exad-flip-box .exad-flip-box-inner .exad-flip-box-back a.exad-flip-box-back-action:hover{cursor: pointer}.exad-flip-box .exad-flip-box-inner.left-to-right .exad-flip-box-back{-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotateY(180deg);transform: rotateY(180deg)}.exad-flip-box .exad-flip-box-inner.right-to-left .exad-flip-box-back{-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotateY(180deg);transform: rotateY(180deg)}.exad-flip-box .exad-flip-box-inner.top-to-bottom .exad-flip-box-back{-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotateX(180deg);transform: rotateX(180deg)}.exad-flip-box .exad-flip-box-inner.bottom-to-top .exad-flip-box-back{-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotateX(-180deg);transform: rotateX(-180deg)}.exad-flip-box .exad-flip-box-inner.top-to-bottom-angle .exad-flip-box-front{-webkit-backface-visibility: hidden;backface-visibility: hidden}.exad-flip-box .exad-flip-box-inner.top-to-bottom-angle .exad-flip-box-back{-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotate3d(1, 1, 0, 180deg);transform: rotate3d(1, 1, 0, 180deg)}.exad-flip-box .exad-flip-box-inner.bottom-to-top-angle .exad-flip-box-front{-webkit-backface-visibility: hidden;backface-visibility: hidden}.exad-flip-box .exad-flip-box-inner.bottom-to-top-angle .exad-flip-box-back{-webkit-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotate3d(1, 1, 0, -180deg);transform: rotate3d(1, 1, 0, -180deg)}.exad-flip-box .exad-flip-box-inner.fade-in-out .exad-flip-box-front{transition: all .8s cubic-bezier(.17,.67,.47,1.18);-webkit-transform: scale(1);transform: scale(1)}.exad-flip-box .exad-flip-box-inner.fade-in-out .exad-flip-box-back{position: absolute;top: 0;left: 0;opacity: 0;-webkit-transform: scale(0.5);transform: scale(0.5);transition: all .8s cubic-bezier(.17,.67,.47,1.18)}.exad-flip-box .exad-flip-box-inner.three-d-flip .exad-flip-box-front{-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);-webkit-transform: rotateY(0);transform: rotateY(0);-webkit-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-backface-visibility: hidden;backface-visibility: hidden;min-height: 280px;background: #ffffff}.exad-flip-box .exad-flip-box-inner.three-d-flip .exad-flip-box-front .exad-flip-box-front-content{-webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);transform: translateY(-50%) translateZ(60px) scale(0.94);top: 50%;position: absolute;left: 0;width: 100%;-webkit-perspective: inherit;perspective: inherit}.exad-flip-box .exad-flip-box-inner.three-d-flip .exad-flip-box-back{position: absolute;top: 0;left: 0;-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);-webkit-transform: rotateY(180deg);transform: rotateY(180deg);-webkit-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-backface-visibility: hidden;backface-visibility: hidden;min-height: 280px;height: auto;width: 100%;background: #ffffff}.exad-flip-box .exad-flip-box-inner.three-d-flip .exad-flip-box-back .exad-flip-box-back-content{-webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);transform: translateY(-50%) translateZ(60px) scale(0.94);top: 50%;position: absolute;left: 0;width: 100%;-webkit-perspective: inherit;perspective: inherit}.exad-flip-box .exad-flip-box-inner.three-d-flip:hover .exad-flip-box-front, .exad-flip-box .exad-flip-box-inner.three-d-flip:hover .exad-flip-box-back{-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32);transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.3, 1.32)}.exad-flip-box .exad-flip-box-inner.three-d-flip:hover .exad-flip-box-front{-webkit-transform: rotateY(-180deg);transform: rotateY(-180deg);-webkit-transform-style: preserve-3d;transform-style: preserve-3d}.exad-flip-box .exad-flip-box-inner.three-d-flip:hover .exad-flip-box-back{-webkit-transform: rotateY(0);transform: rotateY(0);-webkit-transform-style: preserve-3d;transform-style: preserve-3d}.exad-flip-box .exad-flip-box-inner.fade .exad-flip-box-back{opacity: 0;transition: all 0.5s ease}.exad-flip-box .exad-flip-box-inner.fade:hover .exad-flip-box-front{opacity: 0}.exad-flip-box .exad-flip-box-inner.fade:hover .exad-flip-box-back{opacity: 1}.exad-flip-box-front.left .exad-flip-box-front-image, .exad-flip-box-back.left .exad-flip-box-back-image{margin-right: auto}.exad-flip-box-front.center .exad-flip-box-front-image, .exad-flip-box-back.center .exad-flip-box-back-image{margin-left: auto;margin-right: auto}.exad-flip-box-front.right .exad-flip-box-front-image, .exad-flip-box-back.right .exad-flip-box-back-image{margin-left: auto}.exad-flip-box .exad-flip-box-inner .exad-flip-box-front .exad-flip-box-front-image,.exad-flip-box .exad-flip-box-inner .exad-flip-box-back .exad-flip-box-back-image{position: relative}.exad-flip-box .exad-flip-box-inner .exad-flip-box-front .exad-flip-box-front-image i,.exad-flip-box .exad-flip-box-inner .exad-flip-box-front .exad-flip-box-front-image svg,.exad-flip-box .exad-flip-box-inner .exad-flip-box-back .exad-flip-box-back-image i, .exad-flip-box .exad-flip-box-inner .exad-flip-box-back .exad-flip-box-back-image svg{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-flip-box .exad-flip-box-inner .exad-flip-box-front .exad-flip-box-front-image img,.exad-flip-box .exad-flip-box-inner .exad-flip-box-back .exad-flip-box-back-image img{width: 100%;height: 100%;object-fit: cover;-o-object-fit: cover}@font-face{font-display: block;font-family: 'Exclusive Icons';src:url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/fonts/exad-logo.eot?1gib8x');src:url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/fonts/exad-logo.eot?1gib8x#iefix') format('embedded-opentype'),url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/fonts/exad-logo.ttf?1gib8x') format('truetype'),url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/fonts/exad-logo.woff?1gib8x') format('woff'),url('https://kothrud.com/wp-content/plugins/exclusive-addons-for-elementor/assets/fonts/exad-logo.svg?1gib8x#exad-logo') format('svg');font-weight: normal;font-style: normal;;}.exad{font-family: 'Exclusive Icons' !important;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;line-height: 1;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale}.exad-logo:after{content: "\e900";color: #fff}.exad-gallery-items{text-align: center}.exad-gallery-items .exad-gallery-content-wrapper{position: relative;overflow: hidden}.exad-gallery-items .exad-gallery-image .exad-gallery-thumbnail-holder{position: absolute;top: 0;left: 0;width: 100.1%;height: 100.1%;background-position: center;background-size: cover;z-index: 0;-webkit-transition: all 0.2s ease;-o-transition: all 0.2s ease;transition: all 0.2s ease;will-change: transform;overflow: hidden}.exad-gallery-items .exad-gallery-image{position: relative;background-color: #eeeeee;padding-bottom: 80%}.exad-gallery-menu{display: block}.exad-gallery-menu .filter-item{background: none;border: none;cursor: pointer;outline: none;transition: all .3s ease;text-transform: capitalize}.exad-gallery-items .exad-gallery-element{display: flex;flex-wrap: wrap}.exad-gallery-items .exad-gallery-element .exad-gallery-item{position: relative;overflow: hidden}@media (max-width: 991px){.exad-gallery-items .exad-gallery-element .exad-gallery-item{width: 50%}}@media (max-width: 575px){.exad-gallery-items .exad-gallery-element .exad-gallery-item{width: 100%}}.exad-gallery-items .exad-gallery-element .exad-gallery-item img{width: 100%;display: block}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay{position: absolute;top: 0;left: 0;bottom: 0;right: 0;background: rgba(114, 76, 255, 0.8);transition: all .3s ease}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay .exad-gallery-item-overlay-content{position: absolute;top: 0;left: 0;right: 0;bottom: 0}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay .exad-gallery-item-overlay-content .exad-fg-icons{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);width: 100%}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay .exad-gallery-item-overlay-content .exad-gallery-item-content{position: absolute;right: 0;bottom: 0;left: 0}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay .exad-gallery-item-overlay-content a{height: 60px;width: 60px;margin-right: 10px;position: relative;cursor: pointer;display: inline-block;transition: all .3s ease;border-radius: 100%}.exad-gallery-items .exad-gallery-item-content.below-image{display: flex;flex-direction: column}.exad-gallery-items .exad-gallery-item-content h2{margin: 10px 0px 10px 0px;font-size: 20px}.exad-gallery-items .exad-gallery-item-content p{margin: 10px 0px 10px 0px}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay .exad-gallery-item-overlay-content a svg,.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay .exad-gallery-item-overlay-content a i{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay.exad-zoom-in{-webkit-transform: scale(0);transform: scale(0)}.exad-gallery-items .exad-gallery-element .exad-gallery-item:hover .exad-gallery-item-overlay.exad-zoom-in{-webkit-transform: scale(1);transform: scale(1)}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay.exad-slide-left{-webkit-transform: translateX(-100%);transform: translateX(-100%);opacity: 0}.exad-gallery-items .exad-gallery-element .exad-gallery-item:hover .exad-gallery-item-overlay.exad-slide-left{-webkit-transform: translateX(0%);transform: translateX(0%);opacity: 1}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay.exad-slide-right{-webkit-transform: translateX(100%);transform: translateX(100%);opacity: 0}.exad-gallery-items .exad-gallery-element .exad-gallery-item:hover .exad-gallery-item-overlay.exad-slide-right{-webkit-transform: translateX(0%);transform: translateX(0%);opacity: 1}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay.exad-slide-top{-webkit-transform: translateY(-100%);transform: translateY(-100%);opacity: 0}.exad-gallery-items .exad-gallery-element .exad-gallery-item:hover .exad-gallery-item-overlay.exad-slide-top{-webkit-transform: translateY(0%);transform: translateY(0%);opacity: 1}.exad-gallery-items .exad-gallery-element .exad-gallery-item .exad-gallery-item-overlay.exad-slide-bottom{-webkit-transform: translateY(100%);transform: translateY(100%);opacity: 0}.exad-gallery-items .exad-gallery-element .exad-gallery-item:hover .exad-gallery-item-overlay.exad-slide-bottom{-webkit-transform: translateY(0%);transform: translateY(0%);opacity: 1}.exad-gallery-element .exad-gallery-item.exad-col-1{width: 100%}.exad-gallery-element .exad-gallery-item.exad-col-2{width: 50%}.exad-gallery-element .exad-gallery-item.exad-col-3{width: 33.3333333333333%}.exad-gallery-element .exad-gallery-item.exad-col-4{width: 25%}@media only screen and (max-width: 991px){.exad-gallery-element .exad-gallery-item.exad-col-1,.exad-gallery-element .exad-gallery-item.exad-col-2,.exad-gallery-element .exad-gallery-item.exad-col-3,.exad-gallery-element .exad-gallery-item.exad-col-4{width: 50%}}@media only screen and (max-width: 767px){.exad-gallery-element .exad-gallery-item.exad-col-1,.exad-gallery-element .exad-gallery-item.exad-col-2,.exad-gallery-element .exad-gallery-item.exad-col-3,.exad-gallery-element .exad-gallery-item.exad-col-4{width: 100%}}.exad-google-reviews-carousel-wrapper .exad-google-reviews-carousel-quote{font-size: 16px}.exad-carousel-nav-next i,.exad-google-reviews-carousel-wrapper .exad-carousel-nav-prev i{transition: 0.3s ease;color: #b1b1b1;line-height: 58px}.exad-google-reviews-carousel-basic:before{position: absolute;content: '"';font-family: Roboto,"Roboto Fallback", sans-serif;color: #f3f3f4;font-size: 400px;right: 100px;top: 50px;line-height: 400px;font-weight: 700}.exad-google-reviews-carousel-circle{margin: 0 -15px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-ratings{padding-left: 0;margin-bottom: 0;list-style: none;margin-bottom: 30px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-ratings li{display: inline-block;font-size: 20px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-ratings li.exad-google-reviews-carousel-ratings-active i{color: #ff8e4a}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-inner{background: #fff;outline: 0;margin: 0 15px;padding: 40px 30px;text-align: center}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image{position: relative;z-index: 1;width: 122px;height: 122px;margin: 0 auto;margin-bottom: 45px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image img{position: absolute;width: 100px;height: 100px;top: 50%;left: 50%;transform: translate(-50%, -50%);border-radius: 50%}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg{position: absolute;width: 123px;height: 123px;z-index: -1}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg:first-child{left: 7px;bottom: 7px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg:nth-child(2){top: 7px;left: 7px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg:nth-child(3){right: 4px;top: 0}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg.violate{fill: #826eff}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg.orange{fill: #ff6a47}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-image svg.cyan{fill: #3ad8f4}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-name{font-size: 18px;font-family: Roboto,"Roboto Fallback", sans-serif;margin-bottom: 5px}.exad-google-reviews-carousel-circle .exad-google-reviews-carousel-designation{font-size: 14px}.exad-google-reviews-carousel-circle .exad-carousel-nav-next,.exad-google-reviews-carousel-circle .exad-carousel-nav-prev{position: absolute;z-index: 2;width: 60px;height: 60px;background: #fff;text-align: center;border-radius: 50%;border: 1px solid #e5e5e5;opacity: 0.7;transition: 0.3s ease;cursor: pointer;top: 50%;transform: translateY(-50%)}.exad-google-reviews-carousel-circle .exad-carousel-nav-next:hover,.exad-google-reviews-carousel-circle .exad-carousel-nav-prev:hover{box-shadow: 0 15px 39px 0 rgba(9, 24, 33, 0.06);opacity: 1}.exad-google-reviews-carousel-circle .exad-carousel-nav-prev{left: -80px}.exad-google-reviews-carousel-circle .exad-carousel-nav-next{right: -80px}.exad-google-reviews-carousel-single{margin: 0}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-item{margin: 0 56px 100px}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-inner{display: flex;align-items: center}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-inner .exad-google-reviews-carousel-inner-left{flex-basis: 40%}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-inner .exad-google-reviews-carousel-inner-right{flex-basis: 58%;margin-left: 2%}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-name{font-size: 22px;font-family: Roboto,"Roboto Fallback", sans-serif;margin-bottom: 5px}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-designation{font-size: 16px;display: inline-block;margin-bottom: 25px}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-quote{margin-bottom: 25px}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-ratings{padding-left: 0;margin-bottom: 0;list-style: none}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-ratings li{display: inline-block;font-size: 20px}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-ratings li.exad-google-reviews-carousel-ratings-active i{color: #806bff}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-image{box-shadow: 0 40px 81px 0 rgba(9, 24, 33, 0.14)}.exad-google-reviews-carousel-single .exad-google-reviews-carousel-image img{width: 100%}.exad-google-reviews-carousel-single .exad-carousel-nav-next,.exad-google-reviews-carousel-single .exad-carousel-nav-prev{position: absolute;display: block;width: 60px;height: 60px;cursor: pointer;background: #fff;text-align: center;border-radius: 50%;font-size: 25px;transition: 0.3s ease;margin-right: 20px;border: 1px solid #e5e5e5;bottom: 20px;z-index: 1}.exad-google-reviews-carousel-single .exad-carousel-nav-next:hover,.exad-google-reviews-carousel-single .exad-carousel-nav-prev:hover{color: #fff;box-shadow: 0 19px 27px 0 rgba(56, 218, 232, 0.25);background: #806bff}.exad-google-reviews-carousel-single .exad-carousel-nav-prev{left: 56px}.exad-google-reviews-carousel-single .exad-carousel-nav-next{left: 126px}@media only screen and (max-width: 630px){.exad-google-reviews-carousel-single .exad-google-reviews-carousel-inner{flex-direction: column;align-items: flex-start}}@media only screen and (max-width: 400px){.exad-google-reviews-carousel-basic{padding: 50px}.exad-google-reviews-carousel-basic .exad-google-reviews-carousel-name{font-size: 18px}.exad-google-reviews-carousel-basic .exad-google-reviews-carousel-designation{font-size: 14px}.exad-google-reviews-carousel-basic .exad-carousel-nav-next,.exad-google-reviews-carousel-basic .exad-carousel-nav-prev{bottom: 0}.exad-google-reviews-carousel-basic .exad-carousel-nav-next{right: 25px}.exad-google-reviews-carousel-basic .exad-carousel-nav-prev{right: 90px}}.exad-google-reviews-ratings{margin: 0;padding: 0}.exad-google-reviews-ratings li{list-style: none;display: inline-block}.exad-google-reviews-thumb img{height: 100% !important;width: 100%;display: block;object-fit: cover}.exad-google-reviews-thumb{background: #ffffff}.exad-google-reviews-wrapper{border-radius: 10px 10px 10px 10px;padding: 20px 20px 20px 20px}.exad-google-reviews-wrapper.exad-google-reviews-align-center{text-align: center}.exad-google-reviews-wrapper.exad-google-reviews-align-center .exad-google-reviews-thumb{margin-left: auto;margin-right: auto}.exad-google-reviews-wrapper.exad-google-reviews-align-bottom{text-align: center}.exad-google-reviews-wrapper.exad-google-reviews-align-bottom .exad-google-reviews-thumb{margin-left: auto;margin-right: auto}.exad-google-reviews-wrapper.exad-google-reviews-align-right{text-align: right}.exad-google-reviews-wrapper.exad-google-reviews-align-center .exad-google-reviews-thumb{margin-left: auto}.exad-google-reviews-wrapper.exad-google-reviews-align-left .exad-google-reviews-reviewer-wrapper .exad-google-reviews-thumb,.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-reviewer-wrapper .exad-google-reviews-thumb,.exad-google-reviews-wrapper.exad-google-reviews-align-center .exad-google-reviews-reviewer-wrapper .exad-google-reviews-thumb,.exad-google-reviews-wrapper.exad-google-reviews-align-bottom .exad-google-reviews-reviewer-wrapper .exad-google-reviews-thumb{border-radius: 50% 50% 50% 50%;margin-bottom: 0px}.exad-google-reviews-wrapper.exad-google-reviews-align-left .exad-google-reviews-reviewer-wrapper,.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-reviewer-wrapper{display: flex;align-items: center}.exad-google-reviews-wrapper.exad-google-reviews-align-left .exad-google-reviews-reviewer-wrapper .exad-google-reviews-reviewer{padding-left: 20px}.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-reviewer-wrapper .exad-google-reviews-reviewer{padding-right: 20px}.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-reviewer-wrapper{justify-content: flex-end}.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-reviewer-wrapper .exad-google-reviews-thumb{order: 2}.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-reviewer-wrapper .exad-google-reviews-reviewer{order: 1}.exad-google-reviews-description{margin: 0}.exad-google-reviews-name{margin: 0;font-size: 22px;transition: all .3s ease}.exad-google-reviews-designation{margin: 0;display: block;font-size: 14px}.exad-google-reviews-content-wrapper-arrow::before{position: absolute;content: "\e92a";font-family: eicons;transform: translateX(-50%);font-size: 25px;line-height: 1}.exad-google-reviews-wrapper-inner.layout-2 .exad-google-reviews-content-wrapper-arrow::before{transform: translateX(-50%) rotate(180deg)}.exad-google-reviews-wrapper{transition: all .3s ease}.exad-google-reviews-content-wrapper-arrow{position: relative;z-index: 1}.exad-google-reviews-wrapper.exad-google-reviews-align-center .exad-google-reviews-wrapper-inner.layout-1 .exad-google-reviews-content-wrapper-arrow::before{left: 50%;bottom: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-bottom .exad-google-reviews-wrapper-inner.layout-1 .exad-google-reviews-content-wrapper-arrow::before{left: 50%;bottom: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-left .exad-google-reviews-wrapper-inner.layout-1 .exad-google-reviews-content-wrapper-arrow::before{left: 40px;bottom: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-wrapper-inner.layout-1 .exad-google-reviews-content-wrapper-arrow::before{right: 25px;bottom: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-center .exad-google-reviews-wrapper-inner.layout-2 .exad-google-reviews-content-wrapper-arrow::before{left: 50%;top: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-bottom .exad-google-reviews-wrapper-inner.layout-2 .exad-google-reviews-content-wrapper-arrow::before{left: 50%;top: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-left .exad-google-reviews-wrapper-inner.layout-2 .exad-google-reviews-content-wrapper-arrow::before{left: 40px;top: -15px}.exad-google-reviews-wrapper.exad-google-reviews-align-right .exad-google-reviews-wrapper-inner.layout-2 .exad-google-reviews-content-wrapper-arrow::before{right: 25px;top: -15px}.exad-google-reviews-wrapper.exad-google-reviews-image-aside{display: flex;align-items: center}.exad-google-reviews-wrapper.exad-google-reviews-transition-top-yes:hover{transform: translateY(-10px)}.exad-google-reviews-wrapper.exad-google-reviews-transition-top-yes{transform: translateY(0px);-webkit-transition: all .3s ease;transition: all .3s ease}.exad-google-reviews-carousel-wrapper.exad-google-reviews-carousel-dots-center .exad-swiper-pagination{margin-left: auto;margin-right: auto;text-align: center;position: absolute;width: 100%}.exad-google-reviews-carousel-wrapper.exad-google-reviews-carousel-dots-right .exad-swiper-pagination{margin-left: auto;text-align: right;position: absolute;width: 100%}.exad-google-reviews-carousel-wrapper.exad-google-reviews-carousel-dots-left .exad-swiper-pagination{margin-right: auto;text-align: left;position: absolute;width: 100%}.exad-google-reviews-wrapper .exad-google-reviews-reviewer-wrapper .exad-google-reviews-reviewer .exad-author-name{line-height: 24px}.exad-google-reviews-wrapper .exad-google-reviews-reviewer-wrapper .exad-google-reviews-reviewer .exad-author-name a{margin: 0;font-size: 20px;line-height: 20px;transition: all .3s ease}.exad-google-reviews-wrapper .exad-google-reviews-reviewer-wrapper .exad-google-reviews-reviewer .exad-google-reviews-date{margin: 0;display: block;font-size: 14px}.exad-google-review-transition-top-yes{transform: translateY(0);transition: all .3s ease}.exad-google-reviews-carousel-wrapper .exad-google-review-transition-top-yes:hover{transform: translateY(-10px)}.exad-google-reviews-carousel-wrapper .exad-dots-container .exad-swiper-pagination .swiper-pagination-bullet{transition: all 0.3s}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-handle:before, .exad-image-comparision .twentytwenty-horizontal .twentytwenty-handle:after, .exad-image-comparision .twentytwenty-vertical .twentytwenty-handle:before, .exad-image-comparision .twentytwenty-vertical .twentytwenty-handle:after{content: " ";display: block;background: white;position: absolute;z-index: 30}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-handle:before, .exad-image-comparision .twentytwenty-horizontal .twentytwenty-handle:after{width: 3px;height: 9999px;left: 50%;margin-left: -1.5px}.exad-image-comparision .twentytwenty-vertical .twentytwenty-handle:before, .exad-image-comparision .twentytwenty-vertical .twentytwenty-handle:after{width: 9999px;height: 3px;top: 50%;margin-top: -1.5px}.exad-image-comparision .twentytwenty-before-label, .exad-image-comparision .twentytwenty-after-label, .exad-image-comparision .twentytwenty-overlay{position: absolute;top: 0;width: 100%;height: 100%}.exad-image-comparision .twentytwenty-before-label, .exad-image-comparision .twentytwenty-after-label, .exad-image-comparision .twentytwenty-overlay{-webkit-transition-duration: 0.5s;-moz-transition-duration: 0.5s;transition-duration: 0.5s}.exad-image-comparision .twentytwenty-before-label, .exad-image-comparision .twentytwenty-after-label{-webkit-transition-property: opacity;-moz-transition-property: opacity;transition-property: opacity}.exad-image-comparision .twentytwenty-before-label:before, .exad-image-comparision .twentytwenty-after-label:before{color: white;font-size: 13px;letter-spacing: 0.1em}.exad-image-comparision .twentytwenty-before-label:before, .exad-image-comparision .twentytwenty-after-label:before{position: absolute;background: rgba(255, 255, 255, 0.2);line-height: 38px;padding: 0 20px;-webkit-border-radius: 2px;-moz-border-radius: 2px;border-radius: 2px}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-before-label:before, .exad-image-comparision .twentytwenty-horizontal .twentytwenty-after-label:before{top: 50%;margin-top: -19px}.exad-image-comparision .twentytwenty-vertical .twentytwenty-before-label:before, .exad-image-comparision .twentytwenty-vertical .twentytwenty-after-label:before{left: 50%;margin-left: -45px;text-align: center}.exad-image-comparision .twentytwenty-left-arrow, .exad-image-comparision .twentytwenty-right-arrow, .exad-image-comparision .twentytwenty-up-arrow, .exad-image-comparision .twentytwenty-down-arrow{width: 0;height: 0;border: 6px inset transparent;position: absolute}.exad-image-comparision .twentytwenty-left-arrow, .exad-image-comparision .twentytwenty-right-arrow{top: 50%;margin-top: -6px}.exad-image-comparision .twentytwenty-up-arrow, .exad-image-comparision .twentytwenty-down-arrow{left: 50%;margin-left: -6px}.exad-image-comparision .twentytwenty-container{-webkit-box-sizing: content-box;-moz-box-sizing: content-box;box-sizing: content-box;z-index: 0;overflow: hidden;position: relative;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none}.exad-image-comparision .twentytwenty-container img{max-width: 100%;position: absolute;top: 0;display: block}.exad-image-comparision .twentytwenty-container.active .twentytwenty-overlay, .exad-image-comparision .twentytwenty-container.active :hover.twentytwenty-overlay{background: rgba(0, 0, 0, 0)}.exad-image-comparision .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,.exad-image-comparision .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,.exad-image-comparision .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,.exad-image-comparision .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label{opacity: 0}.exad-image-comparision .twentytwenty-container *{-webkit-box-sizing: content-box;-moz-box-sizing: content-box;box-sizing: content-box}.exad-image-comparision .twentytwenty-before-label{opacity: 0}.exad-image-comparision .twentytwenty-before-label:before{content: attr(data-content)}.exad-image-comparision .twentytwenty-after-label{opacity: 0}.exad-image-comparision .twentytwenty-after-label:before{content: attr(data-content)}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-before-label:before{left: 10px}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-after-label:before{right: 10px}.exad-image-comparision .twentytwenty-vertical .twentytwenty-before-label:before{top: 10px}.exad-image-comparision .twentytwenty-vertical .twentytwenty-after-label:before{bottom: 10px}.exad-image-comparision .twentytwenty-overlay{-webkit-transition-property: background;-moz-transition-property: background;transition-property: background;background: rgba(0, 0, 0, 0);z-index: 25}.exad-image-comparision .twentytwenty-overlay:hover{background: rgba(0, 0, 0, 0.5)}.exad-image-comparision .twentytwenty-overlay:hover .twentytwenty-after-label{opacity: 1}.exad-image-comparision .twentytwenty-overlay:hover .twentytwenty-before-label{opacity: 1}.exad-image-comparision .twentytwenty-before{z-index: 20}.exad-image-comparision .twentytwenty-after{z-index: 10}.exad-image-comparision .twentytwenty-handle{height: 38px;width: 38px;position: absolute;left: 50%;top: 50%;margin-left: -22px;margin-top: -22px;border: 3px solid white;-webkit-border-radius: 1000px;-moz-border-radius: 1000px;border-radius: 1000px;z-index: 40;cursor: pointer}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-handle:before{bottom: 50%;margin-bottom: 22px}.exad-image-comparision .twentytwenty-horizontal .twentytwenty-handle:after{top: 50%;margin-top: 22px}.exad-image-comparision .twentytwenty-vertical .twentytwenty-handle:before{left: 50%;margin-left: 22px}.exad-image-comparision .twentytwenty-vertical .twentytwenty-handle:after{right: 50%;margin-right: 22px}.exad-image-comparision .twentytwenty-left-arrow{border-right: 6px solid white;left: 50%;margin-left: -16px}.exad-image-comparision .twentytwenty-right-arrow{border-left: 6px solid white;right: 50%;margin-right: -16px}.exad-image-comparision .twentytwenty-up-arrow{border-bottom: 6px solid white;top: 50%;margin-top: -16px}.exad-image-comparision .twentytwenty-down-arrow{border-top: 6px solid white;bottom: 50%;margin-bottom: -16px}.exad-image-magnify{width: 100%;position: relative;cursor: none}.exad-magnify-large{position: absolute;z-index: 1;display: none}.exad-magnify-small > img{display: block;z-index: -1}.exad-infobox-align-left{text-align: left}.exad-infobox-align-center{text-align: center}.exad-infobox-align-right{text-align: right}.exad-infobox-align-left .exad-infobox-icon{margin-right: auto;text-align: left}.exad-infobox-align-center .exad-infobox-icon{margin: 0 auto;text-align: center}.exad-infobox-align-right .exad-infobox-icon{margin-left: auto;text-align: right}.exad-infobox-item{position: relative}.simple-transition:hover{transform: translateY(-10px)}.simple-transition{transform: translateY(0px);-webkit-transition: all .3s ease;transition: all .3s ease}.zoom-transition{position: relative;-webkit-transition: all .3s ease;transition: all .3s ease;z-index: 1}.zoom-transition::before{content: '';position: absolute;-webkit-transform-origin: center center;transform-origin: center center;top: 0;left: 0;width: 100%;height: 100%;-webkit-transition: .3s ease;transition: .3s ease;z-index: -1;-webkit-transform: scale(0);transform: scale(0)}.zoom-transition:hover::before{-webkit-transform: scale(1);transform: scale(1)}.exad-infobox .exad-infobox-item{padding: 30px;transition: all 0.3s ease}.exad-infobox .exad-infobox-item.exad-infobox-enable-box-yes .exad-infobox-icon{border-radius: 50%;position: relative;z-index: 1;transition: all .3s ease}.exad-infobox .exad-infobox-item .exad-infobox-icon.style_1{-webkit-animation: clip-1 10s linear infinite alternate forwards;animation: clip-1 10s linear infinite alternate forwards}.exad-infobox .exad-infobox-item .exad-infobox-icon.style_2{-webkit-animation: clip-2 10s linear infinite alternate forwards;animation: clip-2 10s linear infinite alternate forwards}.exad-infobox .exad-infobox-item .exad-infobox-icon.style_3{-webkit-animation: clip-3 10s linear infinite alternate forwards;animation: clip-3 10s linear infinite alternate forwards}.exad-infobox .exad-infobox-item.exad-infobox-enable-box-yes .exad-infobox-icon::before{content: '';position: absolute;width: 100%;height: 100%;border-radius: 50%;left: 0;top: 0;z-index: -1;-webkit-transform: scale(0);transform: scale(0);-webkit-transform-origin: center center;transform-origin: center center;transition: .3s ease}.exad-infobox .exad-infobox-item.exad-infobox-enable-box-yes .exad-infobox-icon i{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);transition: all .3s ease}.exad-infobox .exad-infobox-item.exad-infobox-enable-box-yes .exad-infobox-icon svg{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);transition: all .3s ease}.exad-infobox .exad-infobox-item.exad-infobox-enable-box-yes .exad-infobox-icon img{height: 40px;width: 40px;position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}.exad-infobox-content a{display: block}.exad-infobox-content-title{font-size: 30px;line-height: 1.5;font-weight: 600;transition: all .3s ease}.exad-infobox-content-description{font-size: 16px}.exad-infobox .exad-infobox-item .exad-infobox-content .exad-infobox-content-description{line-height: 1.5}.exad-infobox .exad-infobox-item:hover .exad-infobox-icon::before{-webkit-transform: scale(1);transform: scale(1)}.exad-infobox-icon-position-left, .exad-infobox-icon-position-right{display: flex;align-items: center;transition: .3s ease}.exad-infobox-icon-position-left .exad-infobox-content, .exad-infobox-icon-position-right .exad-infobox-content{flex-basis: calc(100% - 100px)}.exad-infobox-icon-position-right .exad-infobox-content{order: 1}.exad-infobox-icon-position-right .exad-infobox-icon{order: 2}@keyframes clip-1{0%, 100%{border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%}14%{border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%}28%{border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%}42%{border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%}56%{border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%}70%{border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%}84%{border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%}}@keyframes clip-2{0%, 100%{border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%}25%{border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%}50%{border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%}75%{border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%}}@keyframes clip-3{0%, 100%{border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;}20%{border-radius: 45% 55% 62% 38% / 53% 51% 49% 47%}40%{border-radius: 45% 55% 49% 51% / 36% 51% 49% 64%}60%{border-radius: 60% 40% 57% 43% / 47% 62% 38% 53%}80%{border-radius: 60% 40% 32% 68% / 38% 36% 64% 62%}}.exad-list-group-wrapper{margin: 0;padding: 0;list-style: none}.exad-list-group .exad-list-group-wrapper.layout_1{display: flex;flex-direction: column}.exad-list-group .exad-list-group-wrapper.layout_2{display: flex;flex-direction: row}.exad-list-group .exad-list-group-wrapper .exad-list-group-item, .exad-list-group .exad-list-group-wrapper .exad-list-group-item a{position: relative;line-height: 1;display: flex}.exad-list-group .exad-list-group-wrapper .exad-list-group-item.exad-icon-center, .exad-list-group .exad-list-group-wrapper .exad-list-group-item.exad-icon-center a{flex-direction: column}.exad-list-group .exad-list-group-wrapper .exad-list-group-item.exad-icon-right .exad-list-group-icon{order: 2}.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon .exad-list-group-icon-image img{width: 100%;height:100%;object-fit: cover}.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon .exad-list-group-icon-image{display: flex}.exad-list-group .exad-list-group-wrapper.layout_1 .exad-list-group-item:after{position: absolute;bottom: 0;width: 100%;content: '';left: 0}.exad-list-group .exad-list-group-wrapper.layout_2 .exad-list-group-item:after{position: absolute;right: 0;height: 100%;content: '';top: 0}.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon.yes{position: relative}.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon.yes svg,.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon.yes i,.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon.yes .exad-list-group-icon-image,.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon.yes .exad-list-group-icon-number{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-list-group .exad-list-group-wrapper .exad-list-group-item .exad-list-group-icon.yes .exad-list-group-icon-number{line-height: 0}@media (max-width: 768px){.exad-list-group .exad-list-group-wrapper.layout_2{flex-direction: column}}.exad-logo-box .exad-logo-item{position: relative;border-radius: 2px;transition: all .3s ease;cursor: pointer;text-align: center}.exad-logo-box.exad-logo-left .exad-logo-item{text-align: left}.exad-logo-box.exad-logo-left .exad-logo-item.exad-logo-item-max-height-yes{justify-content: flex-start}.exad-logo-box.exad-logo-center .exad-logo-item{text-align: center}.exad-logo-box.exad-logo-center .exad-logo-item.exad-logo-item-max-height-yes{justify-content: center}.exad-logo-box.exad-logo-right .exad-logo-item{text-align: right}.exad-logo-box.exad-logo-right .exad-logo-item.exad-logo-item-max-height-yes{justify-content: flex-end}.exad-logo-box .exad-logo-item img{vertical-align: middle}.exad-logo-item.exad-logo-item-max-height-yes{display: flex;align-items: center}.exad-logo-carousel-element{visibility:hidden;opacity:0;transition: opacity .3s}.exad-logo-carousel-element.slick-initialized{visibility:visible;opacity:1}.exad-logo-carousel-element .exad-logo-carousel-item{display:none }.exad-logo-carousel-element .exad-logo-carousel-item:first-child{display:block;visibility:hidden}.exad-logo-carousel-element.slick-initialized .exad-logo-carousel-item{display:block;visibility:visible}.exad-logo-carousel .slick-dots{width: auto;display: table;margin: 0 auto;padding: 0;position: absolute}.exad-logo-carousel .slick-dots li{list-style: none;display: inline-block;padding: inherit;outline: none;border: 0}.exad-logo-carousel .slick-dots li button{padding: inherit;outline: none;border: 0;text-indent: -9999px}.exad-logo-carousel-left img{margin-right: auto}.exad-logo-carousel-center img{margin-left: auto;margin-right: auto}.exad-logo-carousel-right img{margin-left: auto}.exad-logo-carousel-prev,.exad-logo-carousel-next{position: absolute;text-align: center;cursor: pointer;transition: all .3s ease}.exad-logo-carousel-prev i, .exad-logo-carousel-element .exad-logo-carousel-next i{top: 50%;position: absolute;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 20px}.exad-logo-carousel-element .exad-logo-carousel-prev:hover, .exad-logo-carousel-element .exad-logo-carousel-next:hover{background: #fff}.exad-logo-carousel-element .exad-logo-carousel-prev:hover i, .exad-logo-carousel-element .exad-logo-carousel-next:hover i{color: #000000}.exad-logo-carousel-element .exad-logo-carousel-prev{z-index: 1;top: 50%;left: -80px;-webkit-transform: translateY(-50%);transform: translateY(-50%)}.exad-logo-carousel-element .exad-logo-carousel-next{z-index: 1;top: 50%;right: -80px;-webkit-transform: translateY(-50%);transform: translateY(-50%)}.exad-logo-carousel .slick-dots{width: auto;display: table;margin: 0 auto;padding: 0;left: 50%;transform: translateX(-50%)}.exad-logo-carousel-element.exad-logo-carousel-max-height-yes .exad-logo-carousel-item{display: flex;align-items: center}.exad-carousel-item .exad-carousel-nav-prev,.exad-carousel-item .exad-carousel-nav-next{position: absolute;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);height: 60px;width: 60px;background: transparent;border-radius: 50%;text-align: center;cursor: pointer;transition: all .3s ease;z-index: 1}.exad-carousel-item .exad-carousel-nav-prev i,.exad-carousel-item .exad-carousel-nav-next i{top: 50%;position: absolute;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);font-size: 20px}.exad-carousel-item .exad-carousel-nav-prev:hover,.exad-carousel-item .exad-carousel-nav-next:hover{color: #0a1724}.exad-carousel-item .exad-carousel-nav-prev{left: -70px}.exad-carousel-item .exad-carousel-nav-next{right: -70px}.exad-exclusive-heading .exad-exclusive-heading-title a{text-decoration: none;display: inline-block}.exad-exclusive-heading .exad-exclusive-heading-title{margin: 0 auto}.exad-exclusive-heading .exad-exclusive-heading-description{line-height: 26px;margin: 0}.exad-heading-icon-box-yes .exad-heading-icon{position: relative}.exad-heading-icon-box-yes .exad-heading-icon i,.exad-heading-icon-box-yes .exad-heading-icon svg{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)}.exad-exclusive-heading.parallax .exad-exclusive-heading-wrapper .exad-exclusive-heading-title{-webkit-background-clip: text;background-clip: text;-webkit-text-fill-color: transparent}.exad-exclusive-heading.separator .exad-exclusive-heading-wrapper .exad-exclusive-heading-title{position: relative}.exad-heading-text-background .exad-exclusive-heading-title{position: relative;z-index: 1}.exad-heading-text-background .exad-exclusive-heading-title::after{position: absolute;content: attr(data-content);top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);width: 100%;z-index: -1;letter-spacing: 3px;line-height: 50px}.exad-heading-image-gradient .exad-exclusive-heading-title{-webkit-background-clip: text;-webkit-text-fill-color: transparent}.exad-heading-icon{display: inline-block}.exad-modal-button .exad-modal-image-action{display: inline-block;text-decoration: none;transition: all .3s ease;position: relative;text-align: center;z-index: 1;overflow: hidden}.exad-modal-button .exad-modal-image-action:before{position: absolute;content: '';height: 100%;width: 100%;top: 0;left: 0;-webkit-transform: scale(0);transform: scale(0);opacity: 0;-webkit-transition: all .3s ease;transition: all .3s ease;-webkit-transform-origin: center center;transform-origin: center center}.exad-modal-button .exad-modal-image-action:hover::before{-webkit-transform: scale(1);transform: scale(1);opacity: 1;z-index: -1}.top-to-middle{-webkit-transform: translate(-50%, -60%);transform: translate(-50%, -60%);-webkit-transition: all .3s ease;transition: all .3s ease}.exad-modal-item.modal-vimeo.bottom-to-middle{-webkit-transform: translate(-50%, -30%);transform: translate(-50%, -30%);-webkit-transition: all .3s ease;transition: all .3s ease}.exad-modal-item.active.modal-vimeo.bottom-to-middle{z-index: 9999;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}.exad-modal-item.modal-vimeo.right-to-middle{-webkit-transition: all .3s ease;transition: all .3s ease;-webkit-transform: translate(-30%, -50%);transform: translate(-30%, -50%)}.exad-modal-item.active.modal-vimeo.right-to-middle{-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);z-index: 9999}.exad-modal-item.modal-vimeo.left-to-middle{-webkit-transform: translate(-70%, -50%);transform: translate(-70%, -50%);-webkit-transition: all .3s ease;transition: all .3s ease}.exad-modal-item.active.modal-vimeo.left-to-middle{z-index: 9999;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}.exad-modal-item.modal-vimeo.zoom-in{-webkit-transform: translate(-50%, -50%) scale(0.5);transform: translate(-50%, -50%) scale(0.5);-webkit-transform-origin: center center;transform-origin: center center;-webkit-transition: all .3s ease;transition: all .3s ease}.exad-modal-item.active.modal-vimeo.zoom-in{z-index: 9999;-webkit-transform: translate(-50%, -50%) scale(1);transform: translate(-50%, -50%) scale(1)}.exad-modal-item.modal-vimeo.zoom-out{-webkit-transform: translate(-50%, -50%) scale(1.5);transform: translate(-50%, -50%) scale(1.5);-webkit-transform-origin: center center;transform-origin: center center;-webkit-transition: all .3s ease;transition: all .3s ease}.exad-modal-item.active.modal-vimeo.zoom-out{z-index: 9999;display: block;-webkit-transform: translate(-50%, -50%) scale(1);transform: translate(-50%, -50%) scale(1)}.exad-modal-item.modal-vimeo.left-rotate{opacity: 0;-webkit-transition: all .8s ease;transition: all .8s ease;-webkit-perspective: 1000;perspective: 1000;-webkit-transform: translate(-50%, -50%) rotateX(90deg);transform: translate(-50%, -50%) rotateX(90deg);-webkit-transform-origin: center center;transform-origin: center center}.exad-modal-item.active.modal-vimeo.left-rotate{opacity: 1;z-index: 9999;-webkit-transform: translate(-50%, -50%) rotateX(0);transform: translate(-50%, -50%) rotateX(0)}.exad-modal-item.modal-vimeo .exad-modal-content .exad-close-btn{position: absolute;top: -40px;right: -40px;cursor: pointer;height: 40px;width: 40px;border-radius: 50%}.exad-modal-item.modal-vimeo .exad-modal-content .exad-close-btn span{display: block;height: 100%;width: 100%;position: absolute}.exad-modal-item.modal-vimeo .exad-modal-content .exad-close-btn span::before{content: '';position: absolute;height: 2px;width: 20px;background: #fff;transform: translate(-50%,-50%) rotate(45deg);top: 50%;left: 50%}.exad-modal-item.modal-vimeo .exad-modal-content .exad-close-btn span::after{content: '';position: absolute;height: 20px;width: 2px;background: #fff;transform: translate(-50%,-50%) rotate(45deg);top: 50%;left: 50%}.exad-modal-overlay{position: fixed;width: 100%;height: 100%;top: 0;left: 0;opacity: 0;z-index: -1;background: rgba(0, 0, 0, 0.5);transition: all 0.3s ease;display: none}.exad-modal-overlay.active{opacity: 1;z-index: 1000;display: block;transition: all 0.3s ease}.exad-modal-prevent-page-scroll{overflow:hidden !important}.exad-modal-item.image-gallery .exad-modal-element{display: flex;flex-wrap: wrap}.exad-modal-item.image-gallery .exad-modal-element.column-one .exad-modal-element-card{width: 100%}.exad-modal-item.image-gallery .exad-modal-element.column-two .exad-modal-element-card{width: 50%}.exad-modal-item.image-gallery .exad-modal-element.column-three .exad-modal-element-card{width: 33.33%}.exad-modal-item.image-gallery .exad-modal-element.column-four .exad-modal-element-card{width: 25%}.exad-modal-item.image-gallery .exad-modal-element.column-five .exad-modal-element-card{width: 20%}.exad-modal-item.image-gallery .exad-modal-element.column-six .exad-modal-element-card{width: 16.66%}.exad-modal-item{position: fixed !important;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%)}.exad-modal-item.modal-vimeo{opacity: 0;-webkit-transform: translate(-50%, -60%);transform: translate(-50%, -60%);height: auto;-webkit-transition: all .3s ease;transition: all .3s ease;visibility: hidden}@media (max-width: 991px){.exad-modal-item.modal-vimeo{height: 100%}.exad-modal-item.modal-vimeo::-webkit-scrollbar{display: none}}.exad-modal-item.modal-vimeo .exad-modal-content .exad-modal-element img{display: block;max-width: 100%;height: auto}.exad-modal-item.modal-vimeo .exad-modal-content .exad-modal-element .exad-modal-element-card .exad-modal-element-card-body p{margin: 0}.exad-modal-item.modal-vimeo-img-fluid .exad-modal-content .exad-modal-element img,.exad-modal-item.modal-vimeo .exad-modal-content .exad-modal-element .exad-modal-element-card img{display: block;width: 100%}.exad-modal-item.modal-vimeo .exad-modal-content{position: relative}.exad-modal-item .exad-modal-content .exad-modal-element iframe{display: block;height: 100%;width: 100%}.exad-modal-item.active.modal-vimeo{opacity: 1;z-index: 16777221 !important;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);visibility: visible}.exad-modal-button.exad-modal-btn-fixed-width-yes .exad-modal-image-action{position: relative}.exad-modal-button.exad-modal-btn-fixed-width-yes .exad-modal-image-action span{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 1}.exad-modal-wrapper .exad-modal-item.exad-content-overflow-x-{overflow-x: hidden}.exad-modal-wrapper .exad-modal-item.exad-content-overflow-y-{overflow-y: scroll}.exad-news-ticker{display: block;width: 100%;box-sizing: border-box;position: relative;overflow: hidden;font-size: 14px}.exad-news-ticker *{box-sizing: border-box}.exad-news-ticker.bn-fixed-top{position: fixed;left: 0;right: 0;top: 0}.exad-news-ticker.bn-fixed-bottom{position: fixed;left: 0;right: 0;bottom: 0}.exad-news-ticker .exad-bn-label{left: 0;top: 0;bottom: 0;height: 100%;position: absolute;text-align: center;z-index: 3;white-space: nowrap;display: flex;width: auto;user-select: none;justify-content: center;align-items: center}.exad-news-ticker .exad-bn-label{padding: 0 15px;color: #FFF}.exad-news-ticker .exad-bn-label,.exad-news-ticker .exad-bn-label.yes-small:after{}.exad-news-ticker .exad-bn-label.yes-small:after{position: absolute;content: '';top: 50%;right: -5px;transform: translateY(-50%) rotate(45deg);width: 10px;height: 10px;z-index: -1}.exad-news-ticker .exad-nt-news{position: absolute;left: 0;top: 0;bottom: 0;height: 100%;right: 0;overflow: hidden}.exad-news-ticker .exad-nt-news ul{display: block;height: 100%;list-style: none;padding: 0;margin: 0;width: 100%}.exad-news-ticker .exad-nt-news ul li{list-style: none;white-space: nowrap;overflow:hidden;text-overflow: ellipsis;text-decoration: none;-webkit-transition: color .2s linear;-moz-transition: color .2s linear;-o-transition: color .2s linear;transition: color .2s linear;position: absolute;width: 100%;display: none;color: #333;padding: 0 15px;margin: 0;line-height: inherit}.exad-news-ticker .exad-nt-news ul li a{white-space: nowrap;text-overflow: ellipsis;text-decoration: none;color: #333;position: relative;display: block;overflow: hidden}.exad-news-ticker .exad-nt-news ul li a:hover{color: #069}.exad-news-ticker .bn-loader-text{padding: 0 10px}.exad-news-ticker .bn-seperator{display: inline-block;float: left;margin-right: 15px;width: 30px;height: 40px;background-position: center;background-size: contain;background-repeat: no-repeat;position: relative}.exad-news-ticker .bn-seperator.exad-nt-news-dot{margin-right: 0}.exad-news-ticker .bn-seperator.exad-nt-news-dot:after{content: '';position: absolute;width: 8px;height: 8px;background: #333;border-radius: 50%;top: 50%;margin-top: -4px;left: 50%;margin-left: -4px}.exad-news-ticker .bn-prefix{color: #d65d7a;margin-right: 15px;padding-left: 10px}.exad-news-ticker .bn-positive{color: #0b8457;font-weight: bold}.exad-news-ticker .bn-negative{color: #dc2f2f;font-weight: bold}.exad-news-ticker .exad-nt-controls{width: auto;right: 0;top: 0;bottom: 0;height: 100%;background-color: #ffffff;padding: 0 0 0 20px;position: absolute;-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;display: flex;justify-content: center;align-items: center}.exad-news-ticker.bn-direction-rtl .exad-nt-controls{flex-direction: row-reverse}.exad-news-ticker.bn-direction-rtl .exad-bn-label.yes-small:after{right: calc( 100% - 5px )}.exad-news-ticker .exad-nt-controls button{width: 30px;padding: 0;border: inherit;height: 30px;cursor: pointer;text-align: center;outline: none;border-radius: 0;width: 30px;border: 0}.exad-news-ticker .bn-arrow{margin: 0;display: inline-block;height: 8px;position: relative;width: 8px;top: -2px}.exad-news-ticker .bn-arrow::after{border-bottom-style: solid;border-bottom-width: 2px;border-right-style: solid;border-right-width: 2px;content: '';display: inline-block;height: 8px;left: 0;position: absolute;top: 0;width: 8px}.exad-news-ticker .bn-arrow.bn-next{-moz-transform: rotate(315deg);-ms-transform: rotate(315deg);-webkit-transform: rotate(315deg);transform: rotate(315deg);left:-3px}.exad-news-ticker .bn-arrow.bn-prev{-moz-transform: rotate(135deg);-ms-transform: rotate(135deg);-webkit-transform: rotate(135deg);transform: rotate(135deg);left: 3px}.exad-news-ticker .bn-play{position: relative;background: #999999;width: 0;height: 12px;display: inline-block;margin-left: -5px}.exad-news-ticker .bn-play::after{left: 100%;top: 50%;border: solid transparent;content: " ";height: 0;width: 0;position: absolute;pointer-events: none;border-color: rgba(136, 183, 213, 0);border-left-color: #999999;border-width: 8px;margin-top: -8px}.exad-news-ticker .bn-pause{position: relative;width: 0;height: 14px;display: inline-block;top: 1px;left:-1px}.exad-news-ticker .bn-pause::before{position: absolute;content: "";width: 2px;height: 100%;left: 3px}.exad-news-ticker .bn-pause::after{position: absolute;content: "";width: 2px;height: 100%;left: -3px}.exad-news-ticker.bn-direction-rtl{direction: rtl}.exad-news-ticker.bn-direction-rtl .exad-bn-label{left: auto;right: 0}.exad-news-ticker.bn-direction-rtl .exad-nt-controls{right: auto;left: 0}.exad-news-ticker.bn-direction-rtl .bn-seperator{margin-left: 15px;margin-right: 0;float: right}.exad-news-ticker.bn-direction-rtl .bn-prefix{margin-left: 15px;margin-right: 0;padding-left: 0;padding-right: 10px}.exad-news-ticker.bn-direction-rtl .exad-nt-controls button{border-left: none}.exad-news-ticker.bn-effect-scroll .exad-nt-news ul li{display: list-item;float: left;position: relative;width: auto}.exad-news-ticker.bn-effect-scroll .exad-nt-news ul li a:focus{outline: none}.exad-news-ticker.bn-effect-scroll.bn-direction-rtl .exad-nt-news ul li{float: right}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-thumbnail{position: relative;z-index: 0}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-thumbnail ul.exad-post-grid-category{margin: 0;padding: 0;list-style: none}.exad-post-grid-container .exad-post-grid-body{position: relative}.exad-post-grid-container .exad-post-grid-body ul.exad-post-grid-category.cat-pos-bottom-left{transform: translateY(-50%);top: 0;position: absolute}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-thumbnail ul.exad-post-grid-category.postion-top-right{position: absolute;top: 20px;right: 20px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-thumbnail ul.exad-post-grid-category li{display: inline-block}.exad-post-grid-container ul.exad-post-grid-category li:not(:last-child){margin-right: 8px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body{z-index: 9}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-category,.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-data{margin: 0;padding: 0}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-category{margin-bottom: 20px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-category li{display: inline-block;list-style: none}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body li{margin-left: 0px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-data li{display: flex;align-items: center;justify-content: center}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-data{display: flex;align-items: center}.exad-post-grid-container .exad-post-data.show-avatar-yes li.exad-post-date{margin-top: -3px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-author-avatar img{border-radius: 100%;margin-right: 12px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-category li:not(:last-child){margin-right: 5px}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-category li:hover:nth-child(2n-1){opacity: 0.7}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-category li:hover:nth-child(2n){opacity: 0.7}.exad-post-grid-container .exad-post-grid-body h3{margin: 15px 0 5px 0}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-title{display: block;text-decoration: none;-ms-word-wrap: break-word;word-wrap: break-word;transition: all .3s ease}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-title:hover{color: #FF6F51}.exad-row-wrapper .exad-post-grid-body .exad-post-data li{color: #848484}.exad-row-wrapper .exad-post-grid-three .exad-post-grid-body .exad-post-grid-action{display: inline-block;text-decoration: none;transition: all .3s ease}.exad-row-wrapper.exad-col-6{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-row-wrapper.exad-col-6 .exad-col{flex: 0 0 16.66666%;max-width: 16.666666%;padding: 0 10px}.exad-row-wrapper .exad-post-grid-body .exad-post-grid-read-time{display: inline-block}.exad-row-wrapper .exad-post-grid-body ul.exad-post-grid-time-comment{margin: 0;padding: 0;list-style: none}.exad-row-wrapper .exad-post-grid-body ul.exad-post-grid-time-comment li{display: inline-block}.exad-row-wrapper .exad-post-grid-body ul.exad-post-grid-time-comment li:not(:last-child){padding-right: 20px}.exad-row-wrapper .exad-post-grid-body ul.exad-post-grid-time-comment li i.fa.fa-comment-o{padding-right: 10px}.exad-post-grid-container .exad-post-grid-body .exad-post-footer a{display: inline-block;transition: all .3s ease}.exad-post-grid-container.image-position-left,.exad-post-grid-container.image-position-right{display: flex}.exad-post-grid-container.image-position-left .exad-post-grid-thumbnail,.exad-post-grid-container.image-position-right .exad-post-grid-thumbnail{z-index: 999}.exad-post-grid-container.image-position-left > figure,.exad-post-grid-container.image-position-left > div,.exad-post-grid-container.image-position-right > figure,.exad-post-grid-container.image-position-right > div{flex-direction: column}.exad-post-grid-container.image-position-left > figure,.exad-post-grid-container.image-position-right > figure{width: 40%}.exad-post-grid-container.image-position-left > div,.exad-post-grid-container.image-position-right > div{width: 60%}.exad-post-grid-container.image-position-left > figure img,.exad-post-grid-container.image-position-right > figure img{height: 100%;object-fit: cover;width: 100%}.exad-post-grid-container.image-position-right > figure{order: 2}.exad-post-grid-container.image-position-right > div{order: 1}.exad-post-grid-container.image-position-top .exad-post-grid-thumbnail a{display: flex}nav.exad-post-pagination{display: flex;width: 100%;align-items: center;justify-content: center}nav.exad-post-pagination ul{margin: 0;padding: 0;list-style: none}nav.exad-post-pagination ul li{display: inline-block}@media (max-width: 767px){.exad-row-wrapper.exad-col-6 .exad-col{flex: 0 0 100%;max-width: 100%;padding: 10px 10px}}.exad-row-wrapper{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-row-wrapper .exad-col{padding: 0 10px}.exad-row-wrapper.exad-col-5{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-row-wrapper.exad-col-5 .exad-col{flex: 0 0 20%;max-width: 20%;padding: 0 10px}@media (max-width: 767px){.exad-row-wrapper.exad-col-5 .exad-col{flex: 0 0 100%;max-width: 100%;padding: 10px 10px}}.exad-row-wrapper.exad-col-4{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-row-wrapper.exad-col-4 .exad-col{flex: 0 0 25%;max-width: 25%;padding: 0 10px}@media (max-width: 767px){.exad-row-wrapper.exad-col-4 .exad-col{flex: 0 0 100%;max-width: 100%;padding: 10px 10px}}.exad-row-wrapper.exad-col-3{display: flex;margin: 0 -10px;flex-wrap: wrap}.exad-row-wrapper.exad-col-3 .exad-col{flex: 0 0 33.333333%;max-width: 33.333333%;padding: 0 10px}@media (max-width: 767px){.exad-row-wrapper.exad-col-3 .exad-col{flex: 0 0 100%;max-width: 100%;padding: 10px 10px}}.exad-row-wrapper.exad-col-2{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-row-wrapper.exad-col-2 .exad-col{flex: 0 0 50%;max-width: 50%;padding: 0 10px}@media (max-width: 767px){.exad-row-wrapper.exad-col-2 .exad-col{flex: 0 0 100%;max-width: 100%;padding: 10px 10px}}.exad-row-wrapper.exad-col-1{display: flex;flex-wrap: wrap;margin: 0 -10px}.exad-row-wrapper.exad-col-1 .exad-col{width: 100%;flex: 0 0 100%;max-width: 100%;padding: 0 15px 25px}@media (max-width: 767px){.exad-row-wrapper.exad-col-1 .exad-col{flex: 0 0 100%;max-width: 100%;padding: 10px 10px}}@media (max-width: 480px){.exad-post-grid-container.image-position-left, .exad-post-grid-container.image-position-right{flex-direction: column}.exad-post-grid-container.image-position-left > figure, .exad-post-grid-container.image-position-right > figure,.exad-post-grid-container.image-position-left > div, .exad-post-grid-container.image-position-right > div{width: 100%}}.exad-post-grid-description{line-height: 1.8}.exad-post-grid-container.image-position-top .exad-post-grid-thumbnail a img{object-fit: cover;-o-object-fit: cover;width: 100%}.exad-post-grid-load-btn{text-align: center}.exad-post-grid-paginate-btn{text-align: center;display: inline-block;text-decoration: none;transition: all .3s ease}.exad-post-grid-container ul.exad-post-grid-category li a{display: block}.exad-post-grid.exad-post-grid-featured-post-yes article.exad-post-grid-three:first-child{flex: 100%;max-width: 100%}.exad-post-grid.exad-post-grid-featured-post-yes.layout_one article.exad-post-grid-three:first-child .exad-post-grid-container{display: flex}.exad-post-grid.exad-post-grid-featured-post-yes.layout_one article.exad-post-grid-three:first-child .exad-post-grid-container .exad-post-grid-thumbnail{width: 50%}.exad-post-grid.exad-post-grid-featured-post-yes.layout_one article.exad-post-grid-three:first-child .exad-post-grid-container .exad-post-grid-thumbnail a{height: 100%}.exad-post-grid.exad-post-grid-featured-post-yes.layout_one article.exad-post-grid-three:first-child .exad-post-grid-container .exad-post-grid-thumbnail a img{height: 100%;object-fit: cover;-o-object-fit: cover}.exad-post-grid.exad-post-grid-featured-post-yes.layout_one article.exad-post-grid-three:first-child .exad-post-grid-container .exad-post-grid-body{width: 50%}.exad-post-grid .exad-row-wrapper .exad-post-grid-container .exad-post-grid-thumbnail::before{display: none}.exad-post-timeline{margin-bottom: 35px}.exad-post-timeline .exad-post-timeline-item{display: flex;align-items: center;position: relative}.exad-post-timeline .exad-post-timeline-item::before{position: absolute;content: '';background: #e3e5e8;width: 3px;height: calc( 100% 100px);left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%);top: 0}.exad-post-timeline .exad-post-timeline-item:not(:last-child){margin-bottom: 100px}.exad-post-timeline .exad-post-timeline-item:last-child::before{height: 100%}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon{position: absolute;left: 50%;top: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);height: 60px;width: 60px;text-align: center;border-radius: 50%;z-index: 1}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon i{font-size: 24px;line-height: 60px;color: #D1C1FF}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon::before{position: absolute;content: '';width: 60px;height: 2px;background: transparent;border: 1px dashed #e3e3e3;top: 30px;left: -70px}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon::after{position: absolute;content: '';width: 60px;background: transparent;border: 1px dashed #e3e3e3;top: 30px;right: -70px}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content{flex-basis: 35%;overflow: hidden}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content img{width: 100%}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-date{flex-basis: 20%}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-date h4{font-size: 20px;margin: 6px auto}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-date p{font-size: 15px;margin: 0;color: #8a8d91}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content-text{padding: 25px 30px}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content-text h4{font-size: 20px}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content-text p{color: #8a8d91;margin-bottom: 0;font-size: 15px;line-height: 24px}.exad-post-timeline .exad-post-timeline-item:nth-child(odd) .exad-post-timeline-content{position: relative}.exad-post-timeline .exad-post-timeline-item:nth-child(odd) .exad-post-timeline-date{margin-left: 30%}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-content{order: 2;margin-left: 30%}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-date{order: 1;margin-left: 15%;text-align: right}@media only screen and (max-width: 1350px){.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon::before{width: 40px;left: -50px}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon::after{width: 40px;right: -50px}}@media only screen and (max-width: 992px){.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon::before{display: none}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon::after{display: none}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content{flex-basis: 40%}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-date{flex-basis: 30%}.exad-post-timeline .exad-post-timeline-item:nth-child(odd) .exad-post-timeline-date{margin-left: 20%}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-content{margin-left: 20%}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-date{margin-left: 10%}}@media only screen and (max-width: 552px){.exad-post-timeline .exad-post-timeline-item::before{display: none}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-icon{display: none}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-content{flex-basis: 100%}.exad-post-timeline .exad-post-timeline-item .exad-post-timeline-date{flex-basis: 100%}.exad-post-timeline .exad-post-timeline-item{flex-direction: column}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-content{margin-left: 0}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-content{order: 1}.exad-post-timeline .exad-post-timeline-item:nth-child(odd) .exad-post-timeline-date{margin-left: 0;margin-top: 10px}.exad-post-timeline .exad-post-timeline-item:nth-child(even) .exad-post-timeline-date{margin-left: 0;text-align: left;margin-top: 10px}.exad-post-timeline .exad-post-timeline-item:not(:last-child){margin-bottom: 50px}}.exad-pricing-list-wrapper.border_bottom .exad-pricing-list-item:last-child{border-bottom: none !important}.exad-pricing-list-item.yes{display: flex}.exad-pricing-list-item-thumbnail{overflow: hidden}.exad-pricing-list-item-thumbnail img{height: 100% !important;width: 100%;object-fit: cover;-o-object-fit: cover}.exad-pricing-title{display: flex;align-items: center}.exad-pricing-title .exad-pricing-list-item-price{margin-left: auto}.exad-pricing-list-item-content-title{display: flex;font-size: 20px;font-weight: bold}.exad-pricing-list-item-content-description{margin: 0}.exad-pricing-list-item-price span{display: block;font-size: 20px;line-height: 20px}.exad-pricing-list-item-content-action{display: inline-block;transition: all .3s ease}.exad-pricing-list-item-content-conntector{border-bottom: 1px dashed;height: 1px;flex-grow: 1;align-self: center;margin: 0 15px}.left{text-align: left}.left .exad-pricing-table-features li{justify-content: flex-start}.left .price-box{margin-right: auto}.center{text-align: center}.center.exad-pricing-table-features li{justify-content: center}.center .price-box{margin: 0 auto}.right{text-align: right}.right .exad-pricing-table-features li{justify-content: flex-end}.right .price-box{margin-left: auto}.exad-pricing-table-header{position: relative;z-index: -1}.exad-pricing-table-header .exad-pricing-table-header-curved svg{position: absolute;left: 0;bottom: 0;z-index: 1;width: 100%}.exad-pricing-table-title{margin: 0 0 16px 0;font-size: 20px;font-weight: 400}.exad-pricing-table-subtitle{margin: 0 0 10px 0}.price-box{position: relative}.exad-pricing-table-price{position: relative}.exad-pricing-table-price.exad-discount-price-yes{display: inline-flex;align-items: flex-end}.exad-pricing-table-price.exad-discount-price-yes .exad-pricing-table-regular-price{text-decoration: line-through;font-size: 20px;color: #e5e5e5;line-height: 2.1em}.exad-pricing-table-price svg{position: absolute}.exad-pricing-table-wrapper .exad-pricing-table-price p.exad-pricing-table-new-price{font-size: 48px;font-weight: 600;letter-spacing: -3.2px}.exad-pricing-table-wrapper .exad-pricing-table-price span.exad-price-period{font-size: 20px;font-weight: 600;letter-spacing: 0px}.exad-pricing-table-price p{margin: 0}.price-box p{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);margin: 0;width: 100%}.exad-pricing-table-features{margin: 0;padding: 0}.exad-pricing-table-features li{list-style: none;display: flex;align-items: center;justify-content: center;margin-left: 0px}.list-border-bottom li:not(:last-child){border-bottom: 1px solid #ff5985}.exad-pricing-table-features li .exad-pricing-li-icon{margin-right: 7px}.exad-pricing-table-action{text-decoration: none;-webkit-transition: all .3s ease;transition: all .3s ease;z-index: 1;display: inline-block}.exad-pricing-table-badge-wrapper{position: relative;overflow: hidden;z-index: 1;transition: all .3s ease}.exad-pricing-table-wrapper{transition: all .3s ease}.exad-pricing-table-wrapper.transition_top{transition: all .3s ease;transform: translateY(0);-webkit-transform: translateY(0)}.exad-pricing-table-wrapper.transition_top:hover{transform: translateY(-10px);-webkit-transform: translateY(-10px)}.exad-pricing-table-wrapper.transition_bottom{transition: all .3s ease;transform: translateY(0);-webkit-transform: translateY(0)}.exad-pricing-table-wrapper.transition_bottom:hover{transform: translateY(10px);-webkit-transform: translateY(10px)}.exad-pricing-table-wrapper.transition_zoom{transition: all .3s ease;transform: scale(1);-webkit-transform: scale(1)}.exad-pricing-table-wrapper.transition_zoom:hover{transform: scale(1.02);-webkit-transform: scale(1.02)}.exad-pricing-table-wrapper .text-badge{position: absolute;top: 0;right: 0;background: #13c83a;padding: 13px 50px;width: 160px;text-align: center;-webkit-transform: rotate(45deg) translate(40px, -22px);transform: rotate(45deg) translate(40px, -22px);color: #ffffff;font-size: 12px;font-weight: bold;z-index: 2}.exad-pricing-table-wrapper .icon-badge{position: absolute;padding: 15px 10px;border-radius: 0 0 40px 40px;background: #13c83a;right: 30px;top: 0;z-index: 2}.exad-pricing-table-promo-label{display: block}.exad-pricing-table-currency{position: relative}.exad-pricing-table-price-subtitle{display: block}.ldBar{position:relative}.ldBar.label-center > .ldBar-label{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-shadow:0 0 3px #ffffff}.exad-progress-bar .ldBar-label:after{content:"%";display:inline;position: absolute}.ldBar.no-percent .ldBar-label:after{content:""}[class*="exad-progress-bar-"].line{position: relative}[class*="exad-progress-bar-"].line .ldBar-label{position: absolute;top: -12px;right: 0}[class*="exad-progress-bar-"].line-bubble{position: relative}[class*="exad-progress-bar-"].line-bubble .ldBar-label{position: absolute;left: 0;top: 0%;width: 50px;height: 50px;-webkit-transform: translate(-50%, 25%);transform: translate(-50%, 25%);background-color: #ccc;line-height: 27px}[class*="exad-progress-bar-"].circle{position: relative}[class*="exad-progress-bar-"].circle .ldBar-label{position: absolute;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}[class*="exad-progress-bar-"].circle h3{position: absolute;bottom: -20px;left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%)}[class*="exad-progress-bar-"].fan{position: relative}[class*="exad-progress-bar-"].fan svg{margin-top: -40%}[class*="exad-progress-bar-"].fan h3{position: absolute;bottom: -20px;left: 50%;-webkit-transform: translateX(-50%);transform: translateX(-50%)}[class*="exad-progress-bar-"].fan .ldBar-label{position: absolute;left: 50%;-webkit-transform: translate(-50%, -20%);transform: translate(-50%, -20%);font-size: 30px;bottom: 7%}[class*="exad-progress-bar-"].fan .left-title{position: absolute;left: 0;bottom: -10px}[class*="exad-progress-bar-"].fan .right-title{position: absolute;bottom: -10px;right: 0}.exad-progress-bar svg:not(:root){overflow: hidden;height: inherit}.exad-progress-bar-title{font-size: 16px;font-weight: 600}.exad-sticky-section-yes{position: sticky !important}.exad-column-sticky .inner-wrapper-sticky{width: 100%}.exad-advance-tab-nav{margin: 0;padding: 0}.exad-advance-tab-nav li{list-style: none;transition: all .3s ease;position: relative;cursor: pointer}.exad-advance-tab-nav li span.exad-tab-title{font-size: 16px}.exad-tab-horizontal > .exad-advance-tab-nav{display: flex}.exad-tab-horizontal.exad-tab-align-left > .exad-advance-tab-nav{justify-content: flex-start}.exad-tab-horizontal.exad-tab-align-center > .exad-advance-tab-nav{justify-content: center}.exad-tab-horizontal.exad-tab-align-right > .exad-advance-tab-nav{justify-content: flex-end}.exad-tab-horizontal-full-width > .exad-advance-tab-nav{display: flex}.exad-tab-align-left > .exad-advance-tab-nav li{text-align: left}.exad-tab-align-center > .exad-advance-tab-nav li{text-align: center}.exad-tab-align-right > .exad-advance-tab-nav li{text-align: right}.exad-tab-align-left > .exad-advance-tab-nav{text-align: left}.exad-tab-align-center > .exad-advance-tab-nav{text-align: center}.exad-tab-align-right > .exad-advance-tab-nav{text-align: right}.exad-tab-horizontal-full-width > .exad-advance-tab-nav li{flex: 1}.exad-tab-vertical{display: flex}.exad-tab-vertical > .exad-advance-tab-nav li{display: flex;align-items: center}.exad-advance-tab > .exad-advance-tab-content.active{display: block}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left,.exad-advance-tab .exad-advance-tab-content.active.exad-tab-image-right{display: flex;width: 100%}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-element,.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-right .exad-advance-tab-content-element{width: 100%}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-element,.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-right .exad-advance-tab-content-element{width: 70%}.exad-advance-tab > .exad-advance-tab-content.exad-tab-image-has-no.exad-tab-image-left .exad-advance-tab-content-element,.exad-advance-tab > .exad-advance-tab-content.exad-tab-image-has-no.exad-tab-image-right .exad-advance-tab-content-element{width: 100%}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-thumb,.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-right .exad-advance-tab-content-thumb{width: 30%}.exad-advance-tab > .exad-advance-tab-content.active .exad-advance-tab-content-thumb{width: 30%}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-element{order: 2}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-thumb{order: 1}.exad-advance-tab > .exad-advance-tab-content{display: none}.exad-tab-btn{text-decoration: none;transition: all .3s ease;display: inline-block}.exad-advance-tab-content-title{margin: 0 0 20px 0}.exad-advance-tab-content-description{margin: 0 0 20px 0}.exad-tab-triangle-right.active{position: relative;z-index: 1}.exad-tab-triangle-bottom.active{position: relative;z-index: 1}.exad-tab-triangle-right.active::before{position: absolute;content: '';height: 20px;width: 15px;top: 50%;right: -4px;transform: translateY(-50%) rotate(45deg);z-index: -1}.exad-tab-triangle-bottom.active::before{position: absolute;content: '';height: 20px;width: 15px;left: 50%;bottom: -8px;transform: translateX(-50%) rotate(45deg);z-index: -1}@media ( max-width: 575px ){.exad-tab-vertical{flex-direction: column}.exad-tab-vertical > .exad-advance-tab-nav li{width: 100% !important;justify-content: center}.exad-tab-triangle-right.active:before{display: none}}@media ( max-width: 767px ){.exad-tab-horizontal-full-width > .exad-advance-tab-nav{overflow-x: scroll}.exad-tab-horizontal > .exad-advance-tab-nav{overflow-x: scroll}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left,.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-right{flex-direction: column}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-element,.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-right .exad-advance-tab-content-element{width: 100%}.exad-advance-tab > .exad-advance-tab-content.exad-tab-image-has-no.exad-tab-image-left .exad-advance-tab-content-element,.exad-advance-tab > .exad-advance-tab-content.exad-tab-image-has-no.exad-tab-image-right .exad-advance-tab-content-element{width: 100%}.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-left .exad-advance-tab-content-thumb,.exad-advance-tab > .exad-advance-tab-content.active.exad-tab-image-right .exad-advance-tab-content-thumb{width: 100%}.exad-advance-tab > .exad-advance-tab-content.active .exad-advance-tab-content-thumb{width: 100%}.exad-advance-tab-content-thumb{margin-top: 20px}}.exad-left{text-align: left}.exad-left .exad-team-member-thumb{margin-right: auto}.exad-center{text-align: center}.exad-center .exad-team-member-thumb{margin: 0 auto}.exad-team-member-thumb.style_1{-webkit-animation: clip-1 10s linear infinite alternate forwards;animation: clip-1 10s linear infinite alternate forwards;overflow: hidden}.exad-team-member-thumb.style_2{-webkit-animation: clip-2 10s linear infinite alternate forwards;animation: clip-2 10s linear infinite alternate forwards;overflow: hidden}.exad-team-member-thumb.style_3{-webkit-animation: clip-3 10s linear infinite alternate forwards;animation: clip-3 10s linear infinite alternate forwards;overflow: hidden}.exad-right{text-align: right}.exad-right .exad-team-member-thumb{margin-left: auto}.exad-top-background{clear: both}.exad-team-item .exad-team-member.exad-position-left,.exad-team-item .exad-team-member.exad-position-right{display: flex}.exad-position-left .exad-team-member-thumb{width: 40%}.exad-position-left .exad-team-member-content{width: 60%}.exad-position-right .exad-team-member-thumb{width: 40%;order: 2}.exad-position-right .exad-team-member-content{width: 60%;order: 1}.exad-team-item .exad-team-member.exad-position-left .exad-team-member-thumb img,.exad-team-item .exad-team-member.exad-position-right .exad-team-member-thumb img{height: 100%;object-fit: cover}.elementor .exad-team-member-thumb img{height: 100%;width: 100%}.exad-team-member-cta{text-decoration: none;display: inline-block;transition: all .3s ease}.exad-team-member-social{margin: 0;padding: 0}.exad-team-member-social li{list-style: none;display: inline-block}.exad-team-member-social li a{display: block;position: relative;transition: all .3s ease;text-decoration: none}.exad-team-member-social li a i{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%)}.exad-team-member-thumb img{display: block;object-fit: cover;-o-object-fit: cover}.exad-team-member-content{position: relative;z-index: 8}.exad-team-member-name{margin: 0 0 20px 0}.exad-team-member-designation{margin: 0 0 20px 0;display: block}.exad-team-member-about{margin: 0 0 20px 0;line-height: 1.5em}@media (max-width: 480px){.exad-team-item .exad-team-member.exad-position-left, .exad-team-item .exad-team-member.exad-position-right{flex-direction: column}.exad-team-item .exad-team-member.exad-position-left .exad-team-member-thumb img, .exad-team-item .exad-team-member.exad-position-right .exad-team-member-thumb img,.exad-position-left .exad-team-member-thumb,.exad-position-left .exad-team-member-content,.exad-position-right .exad-team-member-thumb,.exad-position-right .exad-team-member-content{width: 100%}}@keyframes clip-1{0%, 100%{border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%}14%{border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%}28%{border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%}42%{border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%}56%{border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%}70%{border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%}84%{border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%}}@keyframes clip-2{0%, 100%{border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%}25%{border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%}50%{border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%}75%{border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%}}@keyframes clip-3{0%, 100%{border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;}20%{border-radius: 45% 55% 62% 38% / 53% 51% 49% 47%}40%{border-radius: 45% 55% 49% 51% / 36% 51% 49% 64%}60%{border-radius: 60% 40% 57% 43% / 47% 62% 38% 53%}80%{border-radius: 60% 40% 32% 68% / 38% 36% 64% 62%}}.exad-testimonial-ratings{margin: 0;padding: 0}.exad-testimonial-ratings li{list-style: none;display: inline-block}.exad-testimonial-thumb img{height: 100% !important;width: 100%;display: block;object-fit: cover}.exad-testimonial-thumb{background: #ffffff}.exad-testimonial-wrapper.exad-testimonial-align-center{text-align: center}.exad-testimonial-wrapper.exad-testimonial-align-center .exad-testimonial-thumb{margin-left: auto;margin-right: auto}.exad-testimonial-wrapper.exad-testimonial-align-bottom{text-align: center}.exad-testimonial-wrapper.exad-testimonial-align-bottom .exad-testimonial-thumb{margin-left: auto;margin-right: auto}.exad-testimonial-wrapper.exad-testimonial-align-right{text-align: right}.exad-testimonial-wrapper.exad-testimonial-align-center .exad-testimonial-thumb{margin-left: auto}.exad-testimonial-wrapper.exad-testimonial-align-left .exad-testimonial-reviewer-wrapper,.exad-testimonial-wrapper.exad-testimonial-align-right .exad-testimonial-reviewer-wrapper{display: flex;align-items: center}.exad-testimonial-wrapper.exad-testimonial-align-right .exad-testimonial-reviewer-wrapper{justify-content: flex-end}.exad-testimonial-wrapper.exad-testimonial-align-right .exad-testimonial-reviewer-wrapper .exad-testimonial-thumb{order: 2}.exad-testimonial-wrapper.exad-testimonial-align-right .exad-testimonial-reviewer-wrapper .exad-testimonial-reviewer{order: 1}.exad-testimonial-description{margin: 0}.exad-testimonial-name{margin: 0;transition: all .3s ease}.exad-testimonial-designation{margin: 0;display: block;font-size: 14px;font-weight: 600}.exad-testimonial-content-wrapper-arrow::before{position: absolute;content: "\e92a";font-family: eicons;transform: translateX(-50%);font-size: 25px;line-height: 1}.exad-testimonial-wrapper-inner.layout-2 .exad-testimonial-content-wrapper-arrow::before{transform: translateX(-50%) rotate(180deg)}.exad-testimonial-wrapper{transition: all .3s ease}.exad-testimonial-content-wrapper-arrow{position: relative;z-index: 1}.exad-testimonial-wrapper.exad-testimonial-align-center .exad-testimonial-wrapper-inner.layout-1 .exad-testimonial-content-wrapper-arrow::before{left: 50%;bottom: -15px}.exad-testimonial-wrapper.exad-testimonial-align-bottom .exad-testimonial-wrapper-inner.layout-1 .exad-testimonial-content-wrapper-arrow::before{left: 50%;bottom: -15px}.exad-testimonial-wrapper.exad-testimonial-align-left .exad-testimonial-wrapper-inner.layout-1 .exad-testimonial-content-wrapper-arrow::before{left: 40px;bottom: -15px}.exad-testimonial-wrapper.exad-testimonial-align-right .exad-testimonial-wrapper-inner.layout-1 .exad-testimonial-content-wrapper-arrow::before{right: 25px;bottom: -15px}.exad-testimonial-wrapper.exad-testimonial-align-center .exad-testimonial-wrapper-inner.layout-2 .exad-testimonial-content-wrapper-arrow::before{left: 50%;top: -15px}.exad-testimonial-wrapper.exad-testimonial-align-bottom .exad-testimonial-wrapper-inner.layout-2 .exad-testimonial-content-wrapper-arrow::before{left: 50%;top: -15px}.exad-testimonial-wrapper.exad-testimonial-align-left .exad-testimonial-wrapper-inner.layout-2 .exad-testimonial-content-wrapper-arrow::before{left: 40px;top: -15px}.exad-testimonial-wrapper.exad-testimonial-align-right .exad-testimonial-wrapper-inner.layout-2 .exad-testimonial-content-wrapper-arrow::before{right: 25px;top: -15px}.exad-testimonial-wrapper.exad-testimonial-image-aside{display: flex;align-items: center}.exad-testimonial-wrapper.exad-testimonial-transition-top-yes:hover{transform: translateY(-10px)}.exad-testimonial-wrapper.exad-testimonial-transition-top-yes{transform: translateY(0px);-webkit-transition: all .3s ease;transition: all .3s ease}.exad-tooltip{transition: all .3s ease}.exad-tooltip .exad-tooltip-item{position: relative}.exad-tooltip .exad-tooltip-content-text{line-height: 0.5}.exad-tooltip-align-left{display: flex;width: 100%;justify-content: flex-start}.exad-tooltip-align-center{display: flex;width: 100%;justify-content: center}.exad-tooltip-align-right{display: flex;width: 100%;justify-content: flex-end}.exad-tooltip .exad-tooltip-item .exad-tooltip-content{cursor: pointer;line-height: 0.6;font-size: 16px;text-align: center;transition: all .3s ease}.exad-tooltip .exad-tooltip-item .exad-tooltip-content a img{margin: 0 auto}.exad-tooltip .exad-tooltip-item .exad-tooltip-text{position: absolute;min-width: 150px;padding: 10px;visibility: hidden;opacity: 0;transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);border-radius: 3px;font-weight: 300;font-size: 16px;box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);z-index: 4}.exad-tooltip .exad-tooltip-item .exad-tooltip-text:after{content: "";display: block;position: absolute;width: 0;height: 0;border-style: solid}.exad-tooltip .exad-tooltip-item .exad-tooltip-content:hover{box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.13)}.exad-tooltip .exad-tooltip-item.tooltip-left .exad-tooltip-content:hover ~ .exad-tooltip-text{-webkit-transform: translate3d(0, -50%, 0);transform: translate3d(0, -50%, 0);visibility: visible;opacity: 1}.exad-tooltip .exad-tooltip-item.tooltip-left .exad-tooltip-text{top: 50%;right: calc(100% 1em);-webkit-transform: translate3d(-15px, -50%, 0);transform: translate3d(-15px, -50%, 0)}.exad-tooltip .exad-tooltip-item.tooltip-left .exad-tooltip-text:after{top: 50%;right: -0.5em;-webkit-transform: translate3d(0, -50%, 0);transform: translate3d(0, -50%, 0);border-width: 0.5em 0 0.5em 0.5em;border-color: transparent transparent transparent #f9f9f9}.exad-tooltip .exad-tooltip-item.tooltip-bottom .exad-tooltip-content:hover ~ .exad-tooltip-text{-webkit-transform: translate3d(-50%, 0, 0);transform: translate3d(-50%, 0, 0);visibility: visible;opacity: 1}.exad-tooltip .exad-tooltip-item.tooltip-bottom .exad-tooltip-text{top: calc(100% 1em);left: 50%;-webkit-transform: translate3d(-50%, 15px, 0);transform: translate3d(-50%, 15px, 0);text-align: center}.exad-tooltip .exad-tooltip-item.tooltip-bottom .exad-tooltip-text:after{top: -0.5em;left: 50%;-webkit-transform: translate3d(-50%, 0, 0);transform: translate3d(-50%, 0, 0);border-width: 0 0.5em 0.5em 0.5em;border-color: transparent transparent #f9f9f9 transparent}.exad-tooltip .exad-tooltip-item.tooltip-top .exad-tooltip-content:hover ~ .exad-tooltip-text{-webkit-transform: translate3d(-50%, 0, 0);transform: translate3d(-50%, 0, 0);visibility: visible;opacity: 1}.exad-tooltip .exad-tooltip-item.tooltip-top .exad-tooltip-text{bottom: calc(100% 1em);left: 50%;-webkit-transform: translate3d(-50%, -15px, 0);transform: translate3d(-50%, -15px, 0);text-align: center}.exad-tooltip .exad-tooltip-item.tooltip-top .exad-tooltip-text:after{bottom: -0.5em;left: 50%;-webkit-transform: translate3d(-50%, 0, 0);transform: translate3d(-50%, 0, 0);border-width: 0.5em 0.5em 0 0.5em}.exad-tooltip .exad-tooltip-item.tooltip-right .exad-tooltip-content:hover ~ .exad-tooltip-text{-webkit-transform: translate3d(0, -50%, 0);transform: translate3d(0, -50%, 0);visibility: visible;opacity: 1}.exad-tooltip .exad-tooltip-item.tooltip-right .exad-tooltip-text{top: 50%;left: calc(100% 1em);-webkit-transform: translate3d(15px, -50%, 0);transform: translate3d(15px, -50%, 0);text-align: center}.exad-tooltip .exad-tooltip-item.tooltip-right .exad-tooltip-text:after{top: 50%;left: -0.5em;-webkit-transform: translate3d(0, -50%, 0);transform: translate3d(0, -50%, 0);border-width: 0.5em 0.5em 0.5em 0;border-color: transparent #fff transparent transparent}@media ( max-width: 767px ){.exad-tooltip .exad-tooltip-item.tooltip-right .exad-tooltip-content:hover ~ .exad-tooltip-text{-webkit-transform: translate3d(-405%, -50%, 0);transform: translate3d(-45%, -50%, 0)}.exad-tooltip .exad-tooltip-item.tooltip-left .exad-tooltip-content:hover ~ .exad-tooltip-text{-webkit-transform: translate3d(50%, -50%, 0);transform: translate3d(50%, -50%, 0);visibility: visible;opacity: 1}}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/dynamic-css-5b8876f04a.css */
@media all {
.lp-top-bar{

            background-color: #fff;

        }

        .lp-top-bar:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: #FFFFFF;
            opacity: 0.5;
        }

        .header-with-topbar .lp-header-overlay:first-child,

        .header-without-topbar .lp-header-overlay:first-child,

        .header-menu-dropdown .lp-header-overlay:first-child

        {

        
        }

        .lp-topbar-menu li a,

        .lp-top-bar-social ul li a{

        color: #797979;

        }

        .home .lp-topbar-menu li a,

        .home .lp-top-bar-social ul li a{

        color: #FFFFFF;

        }
        .lp-topbar .lp-topbar-menu li a,
        .lp-topbar .lp-top-bar-social ul li a{
            color: #FFFFFF;
        }


        .lp-header-middle,
        .lp-menu-bar.lp-header-full-width-st,
        .header-bg-color-class{
            background-color: #42A7DF        }

        .home .lp-header-middle,
        .home .header-bg-color-class{

        background-color: transparent
        }


        .lp-header-search-wrap{

        
        background-image: url(https://kothrud.com/wp-content/uploads/SS-Banner.jpg);

            }
        .lp-header-search-wrap-banner-height{
        
        height: 610px;

            }
        .lp-header-search-wrap-set-top{
        top: 0px;
        }

        .header-container-height{

        height: 610px;

        }
        .lp-category-abs2 .lp-category-abs2-inner span,

        .lp-header-search .lp-search-form-submit,

        .lp-listing .lp-listing-top .lp-listing-cat,

        .red-tooltip + .tooltip > .tooltip-inner,

        .header-style2 .lp-header-middle,

        .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat i,

        .lp-header-search .price-filter ul li:hover,

        .header-style3 .lp-header-middle .lp-header-nav-btn button span,

        .lp-listing-announcement .announcement-wrap a,

        .lp-listing-review-form .review-submit-btn,

        .lp-discount-btn,

        .lp-header-search .price-filter ul li.active,

        .lp-header-user-nav .lp-user-menu .lp-user-welcome,

        .imo-widget-title-container:before,

        .dis-code-copy-pop .copy-now,
        .event-grid-date span,
        .event-grid-ticket{

        background-color: #41A6DF
        }

        .lp-section-heading i, .lp-section-title-container i,

        .lp-section-heading i,

        .lp-listing .lp-listing-bottom h3 a:hover,

        .lp-listings .more-listings a,

        .lp-activity a:hover,

        .lp-activity .lp-activity-bottom .lp-activity-review-writer a,

        .footer-menu ul li a:hover,

        .footer-menu ul li a:focus,

        .lp-listings-widget .lp-listing .lp-listing-detail h3 a:hover,

        .lp-header-title .lp-header-title-left .lp-header-breadcrumbs a:hover,

        .header-style3 .lp-header-middle .lp-header-add-btn a,

        .lp-listing-announcement .announcement-wrap i,

        .lp-listing-faq .faq-title a span,

        .lp-widget-social-links a:hover,

        .flip-clock-wrapper ul li a div div.inn,

        .lp-widget .lp-listing-price-range p a,

        .lp-listing-additional-details li span,

        .listing-page-sidebar .lp-widget ul li.lp-widget-social-links a:hover,

        .online-owner-widget .lp-online-social a:hover,

        .lp-discount-widget .lp-dis-code-copy span,

        .lp-section-title-container .lp-sub-title a,

        .lp-listing-faq .faq-title a i,

        .lp-listing-faq .ui-accordion-header-icon,

        .lp-header-search-form #input-dropdown li:hover span,

        .lp-header-search-form #input-dropdown li:hover a,

        .lp-header-search-form #input-dropdown li:hover,

        .lp-header-search-form .chosen-container .chosen-results li:hover,

        .lp-header-search-form .chosen-container .chosen-results li.highlighted,

        .home .lp-top-bar-social ul li a:hover,

        .lp-activity-review-writer a,

        .lp-activity-description a,

        .arrow-left:hover,

        .arrow-right:hover,

        .lp-menu-item-title:hover,

        .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price span,

        .lp-listing-menu-items h6,

        .lp-listing-menu-top span,

        .widget-social-icons li a,

        .lp-dis-code-copy span,

        #sidebar aside.widget.widget_recent_entries li a:hover,

        .element-inner-button,

        .lp-header-title .lp-header-toggles a.active,

        .lp-author-nav ul li a i,
        .hours-select > li > button.add-hours span,
        .element-inner-button,
        .lp-listings .listing-slider .lp-listing-bottom-inner .lp-listing-cat,
        .event-hosted-grid label strong,
        .lp-listing-menu-items .lp-listing-menu-item .lp-menu-item-price a,
        .lp-event-detail-title-hosted h2 a,.lp-event-detail-side-section ul li > a,
        .lp-event-attende-view-all span
        {
        color: #41A6DF !important;
        }
        .widget-social-icons li a.phone-link{
        color: #797979 !important;
        }

        .lp-header-search .price-filter ul li:hover,

        .lp-header-search .price-filter ul li.active,

        .header-style3 .lp-header-middle .lp-header-nav-btn button,

        .grid-style3 .lp-blog-grid-link:hover,
        .lp-event-attende-view-all span{

        border-color: #41A6DF !important;

        }



        .lp-header-search-filters .header-filter-wrap:hover,

        .lp-header-search-filters .header-filter-wrap.active,

        .lp-listings .more-listings a:hover,

        .lp-section-title-container .lp-sub-title a:hover,

        .lp-listing-timings .toggle-all-days:hover,

        .lp-pagination ul li > span.current:hover, .lp-pagination ul li > span.current,

        .lp-listing-action-btns .smenu div:hover,

        .lp-listing-action-btns .smenu div:hover a,

        .lp-listing-action-btns .smenu div a:hover,

        .lp-blog-grid-author li.category-link a:hover,

        .grid-style3 .lp-blog-grid-link,

        .new-list-style .lp-blog-grid-link,

        .grid-style3 .lp-blog-grid-shares span i:hover,

        .new-list-style .lp-blog-grid-shares span i:hover,

        .tagcloud a:hover,

        .element-inner-button:hover,
        .lp-event-attende-view-all span:hover,
        .lp-detail-event-going-btn button{

        color: #fff !important;

        border-color: #41A6DF !important;

        background-color: #41A6DF !important;

        }

        .lp-header-search-filters .header-filter-wrap.active i,
        .lp-header-search-filters .header-filter-wrap:hover i,
        .lp-header-toggles a{
        color: #fff !important;
        }

        .lp-header-search .lp-header-search-tagline,
        .left-heading .lp-sub-title,
        .sidebar-banner-des,.lp-header-search-tagline-sidebar-banner span{
        font-family: Poppins,"Poppins Fallback";
        }

        .lp-join-now li a{

        
            font-family: Open Sans,"Open Sans Fallback"}


        lp-header-middle .lp-header-user-nav .header-login-btn:hover{

        color: #41A6DF !important;

        border-color: #fff;

        background-color: #fff;

        }

        .widget-social-icons li a:hover,
        .lp-header-middle .lp-header-user-nav:hover a,

        .close-right-icon{

        color: #41A6DF !important;

        }

        .lp-ann-btn, .lp-ann-btn:hover{

        color: #41A6DF;

        }

        .lp-listing-action-btns ul li#lp-book-now > a:hover,

        .lp-listing-leadform-inner .form-horizontal input[type="submit"],

        .page-container-second-style2 .blog-pagination a,

        .page-container-second-style2 .lp-review-btn,

        .contact-style2.contact-right .lp-review-btn,

        .lp-banner-bottom-right a:hover{

        background-color: #41A6DF !important;

        border-color: #41A6DF !important;

        color: #fff !important;

        }

        .lp-listing-action-btns ul li#lp-book-now > a:hover i{

        color: #fff !important;

        }

        .lp_auto_loc_container .lp-dyn-city{



        }

        .popup-header strong, .lp-listing-announcements .lp-listing-announcement .close-ann{

        background-color: #41A6DF
        }

        .lp-listing-additional-details .toggle-additional-details,

        .lp-author-nav ul li a:hover, .lp-author-nav ul li a:hover i,

        .lp-author-nav ul li a.active:before,
        .lp-events-btns-outer button:first-child{

        background-color: #41A6DF;

        color: #fff !important;

        border-color: #41A6DF
        }

        .app-view-reviews-all{

        color: #41A6DF;

        border-color: #41A6DF;

        }

        .icon-bar{

        background-color: #FFFFFF;

        }
		.app-view-header .icon-bar{
			background-color: #FFFFFF;
		}
		.app-view-header .lp-search-toggle .user-menu i,.open-filter, .close-filter, .home-filter-close, .home-filter-open{
			color: #FFFFFF;
		}
        .contact-right a span{
        color: #7f7f7f;
        }
        .contact-right a span:hover{
        color: #41A6DF;
        }
        .lp-grid-box-bottom-grid6 a:hover,.lp-filter-top-section li a,.sidebar-filters .currency-signs>ul>li>a{
        color: #41A6DF;
        }
        .lp-grid6-cate a:hover,.lp-listing-cats a:hover,.lp-grid-box-bottom-grid6 .pull-right:hover .fa,.lp-grid-box-bottom-grid6 .pull-right a:hover{
        color: #41A6DF !important;

        }
        .sidebar-filters .currency-signs>ul>li>a:hover{
        border-color: #41A6DF;

        }
        .search-filters > ul > li > a.active, div#lp-find-near-me ul li a.active{
        border-color: #41A6DF !important;

        }
        .search-filters > ul > li > a.active{
        background-color: #41A6DF !important;

        }
                .single .lp-listing-top-title-header .lp-header-overlay {
            background-color: #1D2327;
            opacity: 0.6;        }
        .archive .lp-header-overlay,
        .search .lp-header-overlay
        {
            background-color: #1D2327;
            opacity: 0.8;        }


                .banner-view-classic .lp-home-categoires li a,
        .home-categories-area .new-banner-category-view2 li a span p#cat-img-bg,
        .home-categories-area .new-banner-category-view1 li a,
        .banner-default-view-category-2 .lp-home-categoires li a span p#cat-img-bg,
        .banner-view-cat-tranparent-category .lp-upper-cat-view3 li a span p#cat-img-bg,
        .home-categories-area .lp-inside-search-view1 li a,
        .home-categories-area .lp-inside-search-view2 li a span p#cat-img-bg,
        .banner-view-cat-tranparent-category .lp-upper-cat-view4 li a,
        .home-categories-area .banner-default-view-category1 li a,
        .home-categories-area .banner-default-view-category2 li a span p#cat-img-bg,
        .banner-default-view-category4.lp-home-categoires li a,
        .banner-default-view-category4.lp-home-categoires li a span p#cat-img-bg,
        .banner-default-view-category3.lp-home-categoires li a,
        .banner-default-view-category3.lp-home-categoires li a span p#cat-img-bg,
        .new-banner-category-view.lp-home-categoires li a,
        .new-banner-category-view3.lp-home-categoires li a,
        .lp-upper-cat-view1.lp-home-categoires li a,
        .lp-upper-cat-view2.lp-home-categoires li a,
        .lp-inside-search-view.lp-home-categoires li a,
        .lp-inside-search-view3.lp-home-categoires li a,
        .home-categories-area .lp-home-categoires.new-banner-category-view4 li a,
        .lp-home-categoires li a
        {
        background: #41A6DF !important;
        }
        #cat-img-bg i {
            line-height: 80px;
        }
        .lp-home-categoires li a:hover {
        background: #363F48 !important;
        }
        .home-categories-area .new-banner-category-view2 li a:hover span p#cat-img-bg, .home-categories-area .new-banner-category-view1 li a:hover, .banner-default-view-category-2 .lp-home-categoires li a:hover span p#cat-img-bg, .banner-view-cat-tranparent-category .lp-upper-cat-view3 li a:hover span p#cat-img-bg, .home-categories-area .lp-inside-search-view1 li a:hover, .home-categories-area .lp-inside-search-view2 li a:hover span p#cat-img-bg, .banner-view-cat-tranparent-category .lp-upper-cat-view4 li a:hover,.home-categories-area .banner-default-view-category1 li a:hover, .home-categories-area .banner-default-view-category2 li a:hover span p#cat-img-bg,
        .banner-default-view-category4.lp-home-categoires li a:hover,
        .banner-default-view-category3.lp-home-categoires li a:hover,.new-banner-category-view.lp-home-categoires li a:hover,.new-banner-category-view3.lp-home-categoires li a:hover,
        .lp-upper-cat-view1.lp-home-categoires li a:hover,.lp-upper-cat-view2.lp-home-categoires li a:hover,.lp-inside-search-view.lp-home-categoires li a:hover,.lp-inside-search-view3.lp-home-categoires li a:hover, .home-categories-area .lp-home-categoires.new-banner-category-view4 li a:hover{
        background: #363F48 !important;
        }
        .home-categories-area .lp-home-categoires.category-view-bg-transparent li a{
        background: rgba(65,166,223,0.4) !important;
        }
        .home-categories-area .lp-home-categoires.category-view-bg-transparent li a:hover{
        background: rgba(54,63,72,0.4) !important;
        }
        .lp-home-banner-contianer-inner-new-search .lp-search-description p, .home-categories-area .new-banner-category-view2 li a span, .banner-default-view-category-2 .lp-home-categoires li a span, .home-categories-area .lp-inside-search-view2 li a span,.home-categories-area .banner-default-view-category2 li a span, .home-categories-area ul.lp-home-categoires li a span{
        color: #FFFFFF;
        }
        .header-container.lp-header-bg .lp-color-header-style .lp-menu-container .lp-menu > div > ul > li > a,
        .header-container.lp-header-bg .lp-color-header-style .lp-menu-container .lp-menu ul li.page_item_has_children::after,
        .header-container.lp-header-bg .lp-color-header-style .lp-menu-container .lp-menu ul li.menu-item-has-children::after, .lp-menu-outer::after, #click-search-view,
        #click-search-view i, .lp-menu-container .lp-menu > div > ul > li > a,
        .lp-join-now a,
        .lp-header-full-width .lp-add-listing-btn li a,
        .lp-header-middle .header-main-menu ul li a,
        .lp-add-listing-btn ul li a,
        .lp-header-bg-black .navbar-toggle,
        .lp-header-full-width .lp-add-listing-btn li a, .lp-header-middle .lp-header-add-btn a{
        color: #FFFFFF;
        }
        .lp-header-full-width .lp-add-listing-btn li a,
        .lp-header-bg-black .navbar-toggle, .lp-header-middle .lp-header-add-btn a,
        .header-container.lp-header-bg .lp-menu-container .lp-menu>div>ul>li>a{
        border-color: #FFFFFF;
        }
        .lp-header-full-width .lp-add-listing-btn ul li a.header-list-icon, .lp-header-full-width .lp-add-listing-btn ul li a.header-list-icon-st6{
        border: 1px solid #FFFFFF;
        }
        .lp-header-with-bigmenu .lp-join-now a,.lp-header-with-bigmenu .lp-add-listing-btn ul li a{
        color: #FFFFFF ;
        }
        .lp-header-with-bigmenu .lp-join-now a:hover,.lp-header-with-bigmenu .lp-add-listing-btn ul li a,.lp-header-with-bigmenu .nav .open > a,.lp-header-with-bigmenu .nav .open > a:hover,.lp-header-with-bigmenu .nav .open > a:focus,.lp-header-with-bigmenu .nav > li > a:hover,.lp-header-with-bigmenu .nav > li > a:focus,.lp-mega-menu-outer #menu-main li a:hover,.about-box-icon-style2 i,.lp-total-meta ul li a:hover,
        .lp-total-meta ul li a:hover span,.lp-total-meta ul .active a,.lp-total-meta ul .active a span,.theme-color,
        .lp-qoute-butn a,.lp-mega-menu-outer .lp-menu ul li:hover a,.theme-color span,
        .stickynavbar #nav_bar ul li a:hover{
        color: #41A6DF ;
        }
        .theme-color,.listing-category-slider4 .slick-prev:hover:before,.listing-category-slider4 .slick-next:hover:before{
        color: #41A6DF !important;
        }
        .lp-category-icon-outer,.lp-right-content-box .lp-social-box ul li a i:hover,.lp-detail-services-box ul li a:hover,.lp-detail-offers-content a,.lp-offer-count,.lp-quote-submit-btn,.lp-left-filter .search-filters .sortbyrated-outer ul li a:hover,.lp-qoute-butn a:first-child,.lp-new-social-widget li i,.lp_payment_step_next.active{
        background-color:#41A6DF ;
        }
        .listing-second-view .widget-box.business-contact.lp-lead-form-st input.lp-review-btn,
        .listing-style-3 a.open-map-view:hover,.listing-app-view .listing-app-view2 .lp-listing-announcement .announcement-wrap.last .announcement-btn{
        color: #41A6DF;
        border: 1px solid #41A6DF;
        }
        .widget-box.business-contact.lp-lead-form-st .contact-form.quickform form.form-horizontal .form-group.pos-relative i.lp-search-icon,
        .listing-app-view .listing-app-view2 .single_listing .review-form .form-submit .lp-review-btn, .lp-dashboard-event-tick-btn .fa{
        color: #41A6DF;
        }
        .widget-box.business-contact.lp-lead-form-st .contact-form.quickform form.form-horizontal .form-group.pos-relative:hover input.lp-review-btn,#see_filter:hover {
        background: #41A6DF;
        }
        .lp-search-bar-header .lp-header-search-button .lp-search-bar-right .fa-magnifying-glass.lp-search-icon:hover,
        .listing-app-view2 .toggle-all-days:hover,.lp-menu-app-view-outer .lp-menu-type-heading,
        .listing-app-view .listing-app-view2 .lp-listing-announcement .announcement-wrap.last .announcement-btn:hover,
        .listing-app-view .listing-app-view2 .single_listing .review-form .form-submit .lp-review-btn:hover,#claimform.lp-form-planclaim-st .claim-details .form-group .lp-review-btn,#lp_report_listing button#lp-report-this-listing{
        background: #41A6DF;
        color: #fff;
        }
        .lp-qoute-butn a,.listing-app-view2 .toggle-all-days:hover,
        .listing-app-view .listing-app-view2 .single_listing .review-form .form-submit .lp-review-btn:hover,.listing-app-view .listing-app-view2 .single_listing .review-form .form-submit .lp-review-btn{
        border-color:#41A6DF ;
        }
        .lp-detail-services-box ul li a:hover,.lp-left-filter .search-filters > ul > li > a:hover,.list_view .lp-grid3-category-outer span.cat-icon{
        background-color:#41A6DF !important;
        }
        .lp-header-with-bigmenu .lp-join-now a,.lp-header-with-bigmenu .lp-add-listing-btn ul li a{
        color: #FFFFFF ;
        }
        .lp-header-with-bigmenu .lp-join-now a:hover,.lp-header-with-bigmenu .lp-add-listing-btn ul li a,.lp-header-with-bigmenu .nav .open > a,.lp-header-with-bigmenu .nav .open > a:hover,.lp-header-with-bigmenu .nav .open > a:focus,.lp-header-with-bigmenu .nav > li > a:hover,.lp-header-with-bigmenu .nav > li > a:focus,.lp-mega-menu-outer #menu-main li a:hover,.about-box-icon-style2 i,.lp-total-meta ul li a:hover,
        .lp-total-meta ul li a:hover span,.lp-total-meta ul .active a,.lp-total-meta ul .active a span,.theme-color,
        .lp-qoute-butn a,.lp-mega-menu-outer .lp-menu ul li:hover a,.theme-color span,
        .stickynavbar #nav_bar ul li a:hover{
        color: #41A6DF ;
        }
        .theme-color,.listing-category-slider4 .slick-prev:hover:before,.listing-category-slider4 .slick-next:hover:before,
        .listing-app-view .listing-app-view2 .lp-listing-announcement .announcement-wrap.last .announcement-btn
        ,.lp-popular-menu-outer h6,.lp-popular-menu-outer h6 .fa
        {
        color: #41A6DF !important;
        }
        .lp-category-icon-outer,.lp-right-content-box .lp-social-box ul li a i:hover,.lp-detail-services-box ul li a:hover,.lp-detail-offers-content a,.lp-offer-count,.lp-quote-submit-btn,.lp-left-filter .search-filters .sortbyrated-outer ul li a:hover,.lp-qoute-butn a:first-child,.lp-new-social-widget li i{
        background-color:#41A6DF ;
        }
        .lp-qoute-butn a{
        border-color:#41A6DF ;
        }
        .lp-detail-services-box ul li a:hover,.lp-left-filter .search-filters > ul > li > a:hover,.list_view .lp-grid3-category-outer span.cat-icon
        ,.lp-listing-menuu-slider .slick-arrow:hover
        {
        background-color:#41A6DF !important;
        }
        .footer-style1 .footer-upper-bar,
        .footer-style2,
        .footer-style4,
        .footer-style5,
        .footer-style7,
        .footer-style8,
        .footer-style10,
        .footer-style11{
        background-color: #363F48;
        }
        .footer-style1 .footer-bottom-bar,
        .footer-style3,
        .footer4-bottom-area,
        .footer5-bottom-area,
        .footer-style6,
        .footer7-bottom-area,
        .footer8-bottom-area,
        .footer-style8-bg-logo,
        .footer-style9,
        .footer10-bottom-area{
        background-color: #45505B;
        }
        .footer-style1 .footer-upper-bar,
        .footer-style1 .footer-upper-bar a,
        .padding-top-60 .widget h2,
        .padding-top-60 .widget a,
        .padding-top-60 .widget span,
        .padding-top-60 .widget p{
                    color: #FFFFFF !important;
            border-color: #FFFFFF                    }
        .footer-about-company li:before{
                    background-color: #45505B !important;
                    }
        footer.style3 .container,
        footer.style3 .copyrights,
        footer.style3 .footer-menu ul li a,
        .footer-bottom-bar .footer-about-company li,
        .footer-bottom-bar .credit-links,
        .footer-bottom-bar .credit-links a,
        footer .widget-title,
        footer .widget-title h2,
        footer .widget a,
        footer .widget span,
        footer .widget p,
        footer .tagcloud a,
        footer.footer-style9 .footer-menu li a,
        .footer4-bottom-area .footer-menu li a,
        .footer4-bottom-area .copyrights,
        .footer5-bottom-area .copyrights{
                    color: #45505B !important;
            border-color: #45505B;
                    }
                    .header-front-page-wrap .lp-header-full-width .lp-menu-bar{
            background-color: transparent;
            }
            .header-right-panel .lp-menu > ul li a,
            .lp-menu > ul li a,
            .lp-menu ul li.page_item_has_children::after,
            .lp-menu ul li.menu-item-has-children::after{
            color: #FFFFFF !important;
            }
            .header-inner-page-wrap .lp-menu-bar-color{
            background-color: #42A7DF            }
            .header-inner-page-wrap .header-filter .input-group.width-49-percent.margin-right-15.hide-where,
            .header-inner-page-wrap .header-filter .input-group.width-49-percent,
            .header-inner-page-wrap .header-filter .input-group.width-49-percent.margin-right-15 {
            border:1px solid #FFFFFF;
            }
            .header-inner-page-wrap .lp-header-bg-black .navbar-toggle,
            .header-inner-page-wrap .lp-header-bg-black.header-fixed .navbar-toggle{
            color: #FFFFFF;
            border-color: #FFFFFF;
            }
                        .lp-topbar {
            background-color: #363F48 !important;
            }
                                        .header-container.lp-header-bg{
                background-image:url(https://kothrud.com/wp-content/uploads/SS-Banner.jpg);
                background-repeat:no-repeat;
                background-position:center top;
                }
            		.pin{
			background: #41A6DF;
		}
		.features li .tick-icon{
			color: #41A6DF;
		}
        .call-to-action2 h1{
        background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/new/hb.png);
        background-repeat:no-repeat;
        background-position:center center;
        }
        .listing-app-view .admin-top-section .user-details .user-portfolio,.listing-app-view .user-detail-wrap{
        background-image:url(https://kothrud.com/wp-content/themes/listingpro/assets/images/admin/adminbg.jpg);
        background-repeat:no-repeat;
        background-position:center center;
        }
        .lp-blog-style2-inner .lp-blog-grid-author li .fa,.lp-blog-grid-author2 li .fa,
        .listing-app-view .footer-app-menu ul li a:hover,.listing-app-view .small-scrren-app-view .sign-login-wrap a,
        .listing-app-view .small-scrren-app-view .add-listing-btn,
        .googledroppin,.googledroppin:hover{
        color: #41A6DF;
        }
        .city-girds2 .city-thumb2  .category-style3-title-outer,.single-tabber2 ul .active a:after,.waycheckoutModal .btn-default:hover,
        .list_view .lp-grid-box-bottom .lp-nearest-distance,.grid_view2 .lp-grid-box-bottom .lp-nearest-distance{
        background: #41A6DF;
        }
        .single-tabber2 ul li a:hover,.single-tabber2 ul .active a,#sidebar aside ul li a:hover,#sidebar .jw-recent-posts-widget ul li .jw-recent-content a:hover,
        .blog-read-more-style2 a,.blog-read-more a{
        color: #41A6DF;
        }
        .waycheckoutModal .btn-default:hover{
        border-color:#41A6DF !important;
        }
        .blog-detail-link,.listing-app-view .footer-app-menu ul li:hover{
        color: #41A6DF !important;
        border-color:#41A6DF !important;
        }
        .blog-detail-link:hover,.video-bottom-search-content,.listing-app-view.login-form-pop-tabs{
        background-color: #41A6DF !important;
        }
        #sidebar aside h2.widget-title:after{
        background: #41A6DF;
        }
        .app-view-header .lp-menu-bar,.slider-handle,.tooltip-inner{
        background: #41A6DF;
        }
        .review-secondary-btn,.blog-read-more a:hover,
        .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li .active{
        background: #41A6DF !important;
        border-color: #41A6DF !important;
        }
        .location-filters-wrapper #distance_range_div input[type=range]::-webkit-slider-thumb,#distance_range_div_btn a:hover,.location-filters-wrapper #distance_range_div input[type=range]::-moz-range-thumb,.location-filters-wrapper #distance_range_div input[type=range]::-ms-thumb{
        background:#41A6DF !important;
        }
        .tooltip.top .tooltip-arrow{
        border-top-color: #41A6DF;
        }
        input:checked + .slider{
        background-color: #41A6DF;
        }
        .listing-app-view .app-view-filters .close{
        border-color: #41A6DF !important;
        color: #41A6DF;
        }
        .listing-app-view .app-view-filters .close:hover{
        background: #41A6DF;
        }
        .listing-app-view .small-scrren-app-view .mm-listview a:hover,.listing-app-view .small-scrren-app-view .mm-listview a:focus,body .list_view a.lp-add-to-fav.remove-fav:hover span{
        color: #41A6DF !important;
        }
                    .lp-header-overlay,.page-header-overlay, .lp-home-banner-contianer-inner-video-outer{
            background-color: rgba(0, 0, 0, 0.6);
            }
                            .lp-home-banner-contianer {
            height: 610px;
            }
                    .lp-home-banner-contianer-1 {
            height: 370px;
            }
                .lp-list-view-edit li a:hover, .review-post p i, .lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn li a:hover,
        .lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn li a, .lp-header-bg-grey .navbar-toggle, .lp-search-bar-all-demo .add-more,
        .lp-bg-grey .lp-search-bar-left .border-dropdown .chosen-container-single span::after, .lp-right-grid .add-more,
        .lp-search-bar-all-demo .add-more, .lp-right-grid .add-more, .video-option > h2 > span:first-of-type i, .count-text.all-listing,
        .lp-bg-grey .lp-search-bar-left .border-dropdown .chosen-container-single span::after, a.watch-video.popup-youtube,
        .dashboard-content .tab-content.dashboard-contnt h4 a, .campaign-options ul li i.fa-bar-chart, .email-address,
        body .grid_view2 a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover > i, .wpb_wrapper > ul > li::before,
        body .grid_view2 a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover > span, .lp-h4 a:hover,
        .promote-listing-box .texual-area > ul li i, .row.invoices-company-details a:hover, .checkout-bottom-area ul.clearfix > li > a:hover,
        .lp-all-listing span.count > p, .lp-all-listing span.count, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
        .lp-h1 a:hover, .lp-h2 a:hover, .lp-h3 a:hover, .lp-h5 a:hover, .lp-h6 a:hover, .lp-blog-grid-category a:hover,
        .lp-blog-grid-title h4 a:hover, .footer-menu li a:hover, .post-rice, .tags-container li a label, .tags-container li a:hover span,
        .ui-accordion .ui-accordion-header span, .post-stat .fa-star, .listing-page-result-row p a:hover, p a.achor-color,
        .blog-tags ul li a:hover, .post-meta-left-box .breadcrumbs li a:hover, .post-meta-right-box .post-stat li a:hover,
        .parimary-link:hover, .secodary-link, blockquote::after, .lp-blockquote::after, .colored, .lp-add-listing-btn ul li a:hover,
        .listing-second-view .post-meta-right-box .post-stat a.add-to-fav:hover, .lp-list-view-paypal-inner h4:hover,
        .listing-second-view .post-meta-right-box .post-stat a.add-to-fav:hover span, .overlay-video-thumb:hover i,
        body .lp-grid-box-contianer a.add-to-fav.lp-add-to-fav.simptip-position-top.simptip-movable:hover i,
        .bottom-links a,.lp-list-view-content-upper h4:hover, .lp-blog-grid-author li a:hover, .lp-blog-grid-author li:hover,
        .dashboard-content .lp-pay-options .lp-promotebtn:hover, .dashboard-content .lp-pay-options .lp-promotebtn,
        .tags-container li a span.tag-icon, .lp-grid-box-price li > a:hover, .lp-grid-box-bottom .pull-left a:hover,
        .tags-container li a:hover span, .menu ul.sub-menu li:hover > a, .menu ul.children li:hover > a,
        .post-stat li a:hover, .lp-tabs .lp-list-view .lp-list-view-content-upper h4:hover, .lp-tabs .lp-list-view .lp-list-view-paypal-inner h4:hover,
        .post-reviews .fa-star, .listing-second-view .map-area .listing-detail-infos ul li a:hover > span,
        .widget-contact-info .list-st-img li a:hover, .get-directions > a:hover, body .grid_view2 a.add-to-fav.lp-add-to-fav:hover span,
        ul.post-stat li > a:hover > span i, .lp-grid-box-left.pull-left > ul > li > a:hover,
        .grid_view2 .lp-post-quick-links > li a:hover, .list_view .lp-post-quick-links > li a:hover,
        .lp-grid-box-description h4.lp-h4 > a:hover, body .list_view a.add-to-fav.lp-add-to-fav:hover span,
        body .list_view a.add-to-fav.lp-add-to-fav:hover, .grid_view2 .lp-post-quick-links > li a:hover > i,
        .list_view .lp-post-quick-links > li a:hover > i, .list_view .lp-post-quick-links > li a > i:hover,
        .listing-second-view .features.list-style-none > li a:hover > i, .listing-second-view .features li > a:hover span i,.lp-classic-reset-filters ,
		.listingpro-classic-promotional-section .classic-box .classic-text .classic-promotional-box-url,
		.lp-price-free, 
.lp-join-now ul.lp-user-menu > li:hover > a, .listing-second-view .claim-area a.phone-number.md-trigger.claimformtrigger2:hover,.post-meta-right-box .post-stat li a:hover i,
		.lp-activities-classicx-style .lp-section-content-container li.slick-active button:before,
		.lp-section-content-container-boxed .slick-dots li.slick-active button:before,
		.classic-reivew-grid-outer-boxed .classic-reivew-grid-content .lp-activity-review-writer-description .lp-classic-boxed-reviews-content a:hover,
		.lp-blog-grid-box-container-classic-style .lp-blog-grid-box-description-bottom .lp-blog-grid-author a:hover,
		.lp-blog-grid-box-container-classic-style .lp-blog-grid-title a:hover,
		.classic-reivew-grid-outer-boxed .classic-reivew-grid-content .lp-activity-review-writer-description .lp-activity-review-writer a:hover,
		.lp-blog-grid-box-container-classic-style:hover .lp-blog-grid-category a:hover,
		.classic-reivew-grid-outer-boxed .classic-reivew-grid-content .classic-reivew-grid-listing-title-boxed h3 a:hover,
				.listing-view-layout > ul li a.active, .listing-view-layout > ul li a:hover, .listing-style4 #lp-find-near-me .near-me-btn.active,.widget-	box.business-contact.classic-business-lead-form.lp-lead-form-st .user_texts .status a:hover{
        color: #41A6DF !important;
        }
		.post-meta-info-classic  .post-meta-right-box .post-stat li a:hover,
        .dashboard-tabs ul li ul li.active a, .post-meta-info-classic .post-meta-right-box .post-stat li a:hover i{
        	 color: #41A6DF !important;
        }
        .ui-tooltip, .md-closer, .post-submit .ui-tabs .ui-tabs-nav li a, #success span p, .lp-list-view-paypal,
        .lp-listing-form input[type=radio]:checked + label::before, .lp-listing-form input[type=submit], .lp-invoice-table tr td a,
        .lp-modal-list .lp-print-list, .lp-tabs .lp-pay-publsh, .lp-dropdown-menu ul li a:hover,
        .listing-second-view .online-booking-form > a.onlineform.active, .listing-second-view .online-booking-form > a.onlineform:hover,
        .listing-second-view .listing-post article figure figcaption .bottom-area .listing-cats, .top-heading-area,
        .lp-dropdown-menu ul li a:hover,
        .listing-second-view .online-booking-form .booking-form input[type="submit"], .lp-price-main .lp-title,
        .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all, .calendar-month-header,
        .lp-search-bar-all-demo .lp-search-btn:hover, .lp-bg-grey .input-group-addon, .lp-search-bar-all-demo .lp-search-btn:hover,
        .lp-bg-grey .input-group-addon, .hours-select > li > button.add-hours, .typeahead__container .typeahead__button > button,
        .form-group .lp-search-bar-right, a.watch-video.popup-youtube:hover, .active-packages-area .table-responsive .top-area,
        .lp-grid-box-contianer .md-close i:hover, .listing-second-view a.secondary-btn.make-reservation,
        .list-st-img.list-style-none li a.edit-list:hover, .mm-menu .mm-navbars_top .mm-navbar, .lp-user-menu li a:hover,
        .fc-widget-content .fc-content-skeleton .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end:hover,
        .lp-primary-btn:hover, .lp-search-btn, .lp-home-categoires li a:hover, .lp-post-quick-links li a.icon-quick-eye,
        .md-close i, .menu ul.sub-menu li a:hover, .menu ul.children li a:hover, .user-portfolio-stat ul li i,
        .lp-submit-btn:hover, .secondary-btn, .list-st-img li a:hover, .price-plan-box, .btn-first-hover, .btn-second-hover:hover,
        .ui-autocomplete li:hover, .tes-icon i, .menu ul.sub-menu li:hover > a, .menu ul.children li:hover > a,	.mm-listview .mm-next,
        .mm-navbar-size-1 a, .mm-listview a:hover, .active-tag:hover, .dashboard-content .lp-pay-options .lp-promotebtn:hover,
        .double-bounce1, .double-bounce2, [data-tooltip].simptip-position-top::after,
        [data-tooltip].simptip-position-top::after, [data-tooltip].simptip-position-bottom::after,
        [data-tooltip].simptip-position-left::after, [data-tooltip].simptip-position-right::after,
        .menu ul.children li > a::before, .menu ul.sub-menu li > a::before, .lp-user-menu li > a::before,
        .currency-signs > ul > li > a.active, .search-filters > ul > li > a.active,div#lp-find-near-me ul li a.active,
        .select2-container--default .select2-results__option--highlighted[aria-selected], .bookingjs-form .bookingjs-form-button:hover, a.googleAddressbtn:hover, a.googleAddressbtn.active, .lp-recurring-button-wrap input[type=checkbox]:checked + label::before {
        background-color: #41A6DF;
        }
        a.lp-change-plan-btn:hover {
        background-color: #41A6DF !important;
        border-color: #41A6DF !important;
        }
		.lp-header-style-classic #input-dropdown li:hover span,
		.lp-header-style-classic #searchlocation_chosen.chosen-container .chosen-results li.highlighted,
		.lp-header-style-classic #searchlocation_chosen.chosen-container .chosen-results li.result-selected.highlighted,
		.lp-header-style-classic #input-dropdown>ul li:hover,
			.classic-search .active-result.highlighted,
		.classic-search .active-result.result-selected.highlighted,
		.lp-search-bar.classic-search #input-dropdown li:hover,
        .lp-tabs .panel-heading li.active a, .ui-state-default.ui-state-highlight {
        background-color: #41A6DF !important;
        }
        .lp-grid-box-price .category-cion a, .ui-state-default.ui-state-highlight, .lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn li a:hover,
        .lp-header-full-width.lp-header-bg-grey .lp-add-listing-btn li a, .lp-header-bg-grey .navbar-toggle, .lp-bg-grey .lp-interest-bar input[type="text"],
        .lp-bg-grey .chosen-container .chosen-single, .lp-bg-grey .lp-interest-bar input[type="text"], .lp-bg-grey .chosen-container .chosen-single,
        a.watch-video.popup-youtube, .listing-second-view a.secondary-btn.make-reservation,
        .fc-widget-content .fc-content-skeleton .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end,
        .lpmap-icon-contianer, .dashboard-content .lp-pay-options .lp-promotebtn,.currency-signs > ul > li > a.active,
        .listing-view-layout > ul li a.active, .listing-view-layout > ul li a:hover, .search-filters > ul > li > a.active, div#lp-find-near-me ul li a.active {
        border-color: #41A6DF;
        }
        .ui-autocomplete li:hover {
        border-color: #41A6DF !important;
        }
        a.googleAddressbtn.active::after,
        .ui-tooltip::after {
        border-top-color: #41A6DF;
        }
        .dashboard-content .lp-main-tabs .nav-tabs > li.active > a, [data-tooltip].simptip-position-left::before,
        .dashboard-content .lp-main-tabs .nav-tabs > li a:hover, .dashboard-tabs.lp-main-tabs.text-center  ul  li  a.active-dash-menu {
        border-left-color: #41A6DF;
        }
        .lpmap-icon-shape.cardHighlight::after, [data-tooltip].simptip-position-top::before {
        border-top-color: #41A6DF !important;
        }
        .dashboard-tabs.lp-main-tabs.text-center > ul > li.opened:hover > a,
        .dashboard-tabs.lp-main-tabs.text-center > ul > li:hover > a,
        .dashboard-tabs.lp-main-tabs.text-center ul li a.active-dash-menu {
        border-left-color: #41A6DF !important;
        }
        [data-tooltip].simptip-position-right::before, [data-tooltip].simptip-position-top.half-arrow::before,
        [data-tooltip].simptip-position-bottom.half-arrow::before {
        border-right-color: #41A6DF !important;
        }
        [data-tooltip].simptip-position-top::before {
        border-top-color: #41A6DF !important;
        }
        [data-tooltip].simptip-position-bottom::before {
        border-bottom-color: #41A6DF !important;
        }
        .lp-primary-btn, .dashboard-tabs, .nav-tabs > li > a:hover,
        .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus, .lp-submit-btn, .secondary-btn:hover,
        .list-st-img li a, .btn-first-hover:hover, .btn-second-hover, .about-box-icon, .upload-btn:hover, .chosen-container .chosen-results li.highlighted,
        .secondary-btn:active, .lp_confirmation .list-st-img li a.edit-list, .secondary-btn:focus, .resurva-booking .hidden-items input.lp-review-btn,
        input.lp-review-btn:hover, .dashboard-content .lp-list-page-list .lp-list-view .lp-rigt-icons .remove-fav i:hover,
        .lp-topbar, .lp-home-categoires li a, .lp-grid-box-bottom,  .form-group .lp-search-bar-right:hover,
        .post-submit .ui-tabs .ui-tabs-nav li.ui-state-active a, .lp-list-pay-btn a:hover, .lp-modal-list .lp-print-list:hover,
        .listing-second-view .online-booking-form > a.onlineform, .listing-second-view .contact-form ul li input[type="submit"],
        .listing-second-view .online-booking-form .booking-form, .listing-second-view .ask-question-area > a.ask_question_popup,
        .widget-box.business-contact .contact-form.quickform form.form-horizontal .form-group.pos-relative:hover input.lp-review-btn,
        .listing-second-view a.secondary-btn:hover, .submit-images:hover > a.browse-imgs, .lp-price-main .lp-upgrade-color,
        .lp-price-main .lp-upgrade-color:hover, .featured-plan .lp-price-free.lp-without-prc.btn,
        .hours-select > li > button.add-hours:hover, .dashboard-content .postbox table.widefat a.see_more_btn:hover,
        #input-dropdown li:hover span, #input-dropdown li:hover a, #input-dropdown li:hover, .thankyou-panel ul li a:hover,
        .dashboard-content .promotional-section a.lp-submit-btn:hover, .widget-box.reservation-form a.make-reservation,
        .dashboard-content .lp-pay-options .promote-btn.pull-right:hover, .lp-dashboard-right-panel-listing ul li a.reply:hover,
        .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a:hover,
        .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a:hover > span, .form-group.mr-bottom-0 > a.md-close:hover,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li input.lp-review-btn:hover, .lp-contact-support .secondary-btn:hover,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list:hover,
        .dashboard-content .user-recent-listings-inner .lp-list-page-list .remove-fav.md-close:hover,
        .resurva-booking .lp-list-view-inner-contianer ul li form:hover > span, .listing-second-view a.secondary-btn.make-reservation:hover,
        .dashboard-content .lp-pay-options .promotebtn:hover,
        #select2-searchlocation-results .select2-results__option.select2-results__option--highlighted, .bookingjs-form .bookingjs-form-button, a.googleAddressbtn {
        background-color: #363F48;
        }
        .lp-tabs .lp-pay-publsh:hover,.lp_payment_step_next.active:hover {
        background-color: #363F48 !important;
        }
        input, .form-group label, .post-stat  li,
        .post-stat  li a, .listing-page-result-row p a, p a.achor-color:hover,
        .form-group label, .blog-tags ul li a, .post-meta-left-box .breadcrumbs li a, .post-meta-left-box .breadcrumbs li span,
        .tags-container li a span, .price-plan-content ul li span, .paragraph-form, .form-review-stars li i, .form-review-stars li a ,
        .post-meta-right-box .post-stat li a, .parimary-link, .secodary-link:hover, blockquote, .upload-btn, input.lp-review-btn,
        .lp-blockquote, .listing-second-view a.secondary-btn i, .bottom-links a:hover, .resurva-booking .hidden-items input.lp-review-btn:hover,
        .lp-menu .has-menu > a::after, .listing-second-view .post-meta-right-box .post-stat a.secondary-btn i, a.browse-imgs,
        .listing-second-view a.secondary-btn, .listing-second-view .contact-form ul li input[type="submit"]:hover,
        .listing-second-view .features li span i, .listing-second-view .post-meta-right-box .post-stat > li > a span.email-icon,
        .dashboard-content .tab-content.dashboard-contnt .ui-sortable-handle, .thankyou-panel ul li a,
        .dashboard-content .postbox table.widefat a.see_more_btn, .dashboard-content .promotiona-text > h3,
        .dashboard-content .lp-face.lp-front.lp-pay-options > h3, .dashboard-content .lp-face.lp-dash-sec > h4,
        .dashboard-content .lp-pay-options .lp-promotebtn, .dashboard-content .promote-btn.pull-right::before,
        .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a, .lp-dashboard-right-panel-listing ul li a.reply,
        .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a > span,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li input.lp-review-btn,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li input.lp-review-btn::before,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list::before, .form-group.mr-bottom-0 > a.md-close,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list > span, .lp-contact-support .secondary-btn i,
        .widget-box.business-contact .contact-form.quickform form.form-horizontal .form-group.pos-relative i.lp-search-icon,
        .dashboard-content .user-recent-listings-inner .lp-list-page-list .remove-fav.md-close > span,
        .dashboard-content .lp-list-page-list .lp-list-view .remove-fav i,
        .resurva-booking ul li.clearfix > form#booking > span, .dashboard-content .lp-pay-options .promotebtn {
        color: #363F48;
        }
        .nav-tabs > li > a::after{
        border-bottom-color: #363F48;
        }
        .upload-btn, .listing-second-view a.secondary-btn, .listing-second-view .contact-form ul li input[type="submit"],
        input.lp-review-btn, a.browse-imgs,  .dashboard-content .postbox table.widefat a.see_more_btn,
        .dashboard-content .lp-pay-options .promote-btn.pull-right, .widget-box.reservation-form a.make-reservation,
        .thankyou-panel ul li a, .dashboard-content .lp-list-view-content-bottom ul.lp-list-view-edit > li > a,
        .lp-dashboard-right-panel-listing ul li a.reply, .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li input.lp-review-btn,
        .lp-rigt-icons.lp-list-view-content-bottom .list-st-img li a.edit-list,
        .dashboard-content .user-recent-listings-inner .lp-list-page-list .remove-fav.md-close, .form-group.mr-bottom-0 > a.md-close,
        .lp-contact-support .secondary-btn:hover, .resurva-booking .lp-list-view-inner-contianer ul li form > span,
        .listing-second-view a.secondary-btn.make-reservation:hover, .dashboard-content .lp-pay-options .promotebtn {
        border-color: #363F48;
        }
        .menu ul.children li:hover > a, .menu ul.sub-menu li:hover > a, .lp-user-menu li:hover > a,
        .grid_view2 .lp-post-quick-links > li a, .list_view .lp-post-quick-links > li a {
        background-color: transparent !important;
        }
        .lp-coupns-btns:hover,
        .lp-menu-step-two-btn button:hover,
        .lp-menu-save-btns button:hover,
        .lp-form-feild-btn:hover {
        background-color: #41A6DF;
        }
        .lp-menu-step-two-btn button:hover,
        .lp-menu-save-btns button:hover,
        .lp-form-feild-btn:hover {
        background-color: #41A6DF;
        }
		            .lp_all_page_overflow h3,
            .lp_all_page_overflow .lp_extrafields_select-border2 .filter_checkbox_container,
             .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow .lp_all_page_overflow h2{
                                    font-family: Poppins,"Poppins Fallback";
                        }
                .lp-tool-tip-content p:hover,
        .lp-tooltip-div ul li:hover a,
        .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li:hover a {
            background: #41A6DF;
            color:#fff !important;
         }
        .lp-menu-step-two-btn button span,
        .lp-menu-step-two-btn button,
        .lp-step-icon i,
        .lp-choose-menu .lp-listing-selecter-drop a,
        .lp-menu-container-outer .ui-tabs .ui-tabs-nav .ui-tabs-active a,.lp-header-togglesa .listing-view-layout-v2 ul li .active .fa{
        color: #41A6DF;
        }
		.lp-price-free,
        .lp-menu-step-two-btn button,.lp-header-togglesa .listing-view-layout-v2 ul li .active .fa,.lp-header-togglesa .listing-view-layout-v2 ul li .fa:hover,.listing-page-sidebar .lp-listing-price-range .claim-area a.phone-number{
        border: 1px solid #41A6DF;
        }
        .lp-form-feild-btn,
        .lp-location-picker-outer .active,.lp-listing-price-range #lp-report-listing a,#lp-find-near-me .near-me-btn:hover,.listing-simple .post-with-map-container-right #lp-find-near-me a.active:hover,.listing-with-map .post-with-map-container-right #lp-find-near-me a.active:hover{
        border-color: #41A6DF;
        }
        .lp-left-content-container a:hover,
        .lp-form-feild-btn,.lp-header-togglesa .listing-view-layout-v2 ul li .fa:hover,.lp-listing-review .lp-review-left .lp-review-name{
        color: #41A6DF;
        }
 	.lp-price-main .lp-without-prc:hover,
        .lp-review-reply-btn,.lp-dashboard-new .sidebar-nav>.sidebar-brand,.lp-public-reply-btn a:hover,
        .lp-public-reply-btn a:focus{
        background-color: #41A6DF;
        }
	.lp-price-main .lp-without-prc:hover{
			color:#fff !important;
		}
	.lp-classic-call-to-action-started-button,
        .lp-add-new-btn,
        .lp-let-start-btn,
        .lp-location-picker-outer .active,.arrow-left,.arrow-right,.lp-listing-menu-items h6:after{
        background: #41A6DF;
        }
        .lp-listings.list-style .lp-listing .lp-listing-bottom .lp-listing-cat,
        .lp-listings.grid-style .lp-listing-location a:hover,.lp-listings.grid-style .lp-listing-location:hover .fa,.listing-page-sidebar .lp-listing-price-range .claim-area a.phone-number,.grid-style .lp-listing-cat,
        .listing-slider .lp-listing .lp-listing-bottom-inner .lp-listing-cats a:hover{
        color: #41A6DF !important;
        }
        .lp-sorting-filter-outer .active,.lp-sorting-filter-outer .active:hover,.lp-sorting-filter-outer li a:hover,.lp-listing-price-range #lp-report-listing a{
        border-bottom:1px solid #41A6DF!important;
        color: #41A6DF !important;
        }
        .lp-sorting-filter-outer .active .fa,.lp-header-search-filters .more-filters,.lp-sorting-filter-outer li:hover a,.lp-sorting-filter-outer li:hover a .fa,#lp-find-near-me .near-me-btn:hover{
        color: #41A6DF !important;
        }
        .lp-listing-price-range .claim-area a.phone-number:hover,
        .lp-listing-price-range #lp-report-listing a:hover{
        border-color: #41A6DF;
        background-color: #41A6DF;
        }
        .hidding-form-feilds .form-group input[type="text"]:focus,
        .hidding-form-feilds .form-group input[type="email"]:focus,
        .hidding-form-feilds .form-group textarea:focus,
        .hidding-form-feilds .form-group select:focus {
        border-left: 3px solid #41A6DF;
        }
        .review-submit-btn:hover,.lp-listing-leadform-inner .form-horizontal input[type="submit"]:hover,.lp-header-search .price-filter ul li:hover,.lp-header-search .form-group .lp-search-bar-right:hover .lp-search-form-submit{
        background-color:rgba(65,166,223,0.9);
        }
                .lp-header-full-width .lp-add-listing-btn ul li a:hover,
        .lp-header-middle .lp-header-add-btn a:hover{
        background-color: #fff;
        color: #333;
        border-color: #fff;
        }
        .lp-header-search .price-filter ul li .active,.lp-header-search .price-filter ul li a:hover,.lp-header-search .price-filter ul li:last-child .active,.lp-header-search .price-filter ul li:last-child a:hover,.lp-header-search-filters .open-now-filter .active,.lp-header-search-filters .open-now-filter a:hover{
        border-color: #41A6DF !important;
        background-color: #41A6DF;
        }
        .lp-booking-section-time-pill-1,.lp-booking-section-time-pill-2{
        border-color: #363F48;
        }
        .lp-booking-section-time-pill-hover:hover,.lp-booking-form-input-confirm{
        background-color: #363F48;
        }
        .lp-booking-section-footer-view-switch:hover , .lp-booking-send-request-success{
        color: #363F48;
        }
        .lp-booking-form-input:focus {
        border-left-color: #363F48;
        }
        .lp-booking-section .ui-datepicker a.ui-state-active,.ui-state-default.ui-state-highlight{
        border-color: #363F48;
        background-color: #363F48 !important;
        color:#fff;
        border-collapse: collapse;
        }
                    .lp-menu-container .lp-menu > div > ul > li > a{
                            font-family: Poppins,"Poppins Fallback";
                                                            }
                            body{
                            font-family: Open Sans,"Open Sans Fallback";
                                                    font-weight:400;
                                        color:#7f7f7f;
                                    }
                            h1, h1 a, .lp-h1, .lp-h1 a {
                            font-family: Poppins,"Poppins Fallback";
                                                                color:#333;
                                    }
                            h2, h2 a, .lp-h2, .lp-h2 a {
                            font-family: Poppins,"Poppins Fallback";
                                                                color:#333;
                                    }
                            h3, h3 a, .lp-h3, .lp-h3 a {
                            font-family: Poppins,"Poppins Fallback";
                                                                color:#333;
                                    }
                            h4, .lp-h4, h4 a, .lp-h4 a {
                            font-family: Poppins,"Poppins Fallback";
                                                                color:#333;
                                    }
                            h5, .lp-h5, h5 a, .lp-h5 a {
                            font-family: Poppins,"Poppins Fallback";
                                                                color:#333;
                                    }
                            h6, .lp-h6, h6 a, .lp-h6 a {
                            font-family: Poppins,"Poppins Fallback";
                                        font-size:16px;
                                                    color:#333;
                                        line-height:27px;
                        }
                            p,span,input,.post-detail-content,li a,.show a,.lp-grid-box-description ul,.chosen-container,.accordion-title,.lp-grid-box-bottom a,time,label,#input-dropdown li a,#input-dropdown span, .lpdoubltimes em {
                            font-family: Poppins,"Poppins Fallback";
                                                                color:#7f7f7f;
                                    }
                .home-categories-area .banner-default-view-category2 li a {
            background: transparent !important;
        }
        .home-categories-area .banner-default-view-category2 li a:hover p#cat-img-bg {
            background: #363F48 !important;
        }
        .lp-upper-cat-view3.lp-home-categoires li a {
            background: transparent !important;
        }
        .new-banner-category-view2.lp-home-categoires li a {
            background: transparent !important;
        }
				            .lp_all_page_overflow h3,
            .lp_all_page_overflow .lp_extrafields_select-border2 .filter_checkbox_container,
             .page-container:not(.lp-sidebar-filters-style) .outer_all_page_overflow .lp_all_page_overflow h2{
                                    font-family: Poppins,"Poppins Fallback";
                 
                        }
                .widget-box.business-contact.classic-business-lead-form.lp-lead-form-st .lp-review-btn{
            background: #41A6DF !important;
        }


        .visit-profile-status:hover,
        .sidebar-post-classic .widget-classic-box .listing-detail-infos li.contacts .get-direction a{
            border: 1px solid #41A6DF;
            color: #41A6DF;
        }
        .sidebar-post-classic .widget-classic-box .listing-detail-infos li.contacts .get-direction a:hover {
            color: #fff !important;
            background: #41A6DF !important;
        }
        #lp-report-listing a:hover,
        .listing-second-view .claim-area a.phone-number.md-trigger.claimformtrigger2:hover,
        .classic-content-widget .list-style-none i:hover,
        .sidebar-post-classic .widget-classic-box .listing-detail-infos li.contacts a:hover {
            color:#41A6DF !important;
        }
        
        .classic-review-form input:focus,
    .classic-review-form textarea:focus,
        .video-option.classic .play-icons,
        .widget-box.business-contact.classic-business-lead-form.lp-lead-form-st .hidding-form-feilds input:focus,
        .widget-box.business-contact.classic-business-lead-form.lp-lead-form-st .hidding-form-feilds textarea:focus ,
        .visit-profile-status
        .video-option.classic .play-icons{
            border: 1px solid #41A6DF;
        }
        .classic-review-form input#submit,
        .post-meta-info-classic .secondary-btn{
            background:#41A6DF !important;
            border: 1px solid #41A6DF !important;  color:#fff !important;
        }
       
        .lp-tool-tip-content p:hover,
        .lp-tooltip-div ul li:hover a,
        .lp-tooltip-outer .lp-tool-tip-content .sortbyrated-outer ul li:hover a {
            background: #41A6DF;
            color:#fff !important;
         }


        .lp-header-style-classic .header-list-icon-st6 {
        background: #41A6DF;
        border: 1px solid #41A6DF !important;
        }


        .classic-testimonial.lp-section-content-container .overlay-video-thumb:hover i{
        color: #41A6DF;
        background-color:#fff;
        }
        .testimonial.lp-section-content-container i::after {
        background: #41A6DF;
        }
        .listing-second-view .features.list-style-none>li a i,
        .video-option.classic .watch-video.popup-youtube{
            color:#41A6DF;  
        }
        .search-row-classic .listing-view-layout>ul li a.active,
        .search-row-classic .listing-view-layout>ul li a:hover{
        background: #41A6DF;
        color:#fff !important;
        }
		body .home-categories-area .lp-home-categoires li a:hover {
        background: #363F48 !important;
        }

        .search-row-classic .lp_add_more_filter a:hover,
        .search-row-classic .input-group.border-dropdown:hover span,
        .search-row-classic .input-group.border-dropdown:hover span:after,
        .search-row-classic .input-group.border-dropdown:hover .input-group-addon.lp-border i,
        .search-row-classic .input-group.border-dropdown:hover,
        .open-clasic-page-container .active-result.highlighted,
        .open-clasic-page-container .active-result.result-selected {
        background: #41A6DF !important;
        color: #fff !important;
        }
        .classic-filters-new-style #lp-find-near-me>ul>li>a:hover,
        .listing-classic-filters.listing-style-6 .search-filters > ul > li > .lp-tooltip-div.active ul li a:hover,
        .listing-classic-filters.listing-style-6 .search-filters>ul>li>a:hover,
        .listing-classic-filters.listing-style-6 .currency-signs>ul>li>a:hover{
        background: #41A6DF;
        color:#fff !important;
        }
		.footer-social-icons.font-awesome-icons li i {
            color:;
        }

        .lp-header-style-classic .lp-add-listing-btn a.header-list-icon-st6:hover {
            background: #363F48;
            border-color: #363F48 !important;
            color: #fff !important;
        }

        .lp-search-bar.classic-search .form-group .lp-search-bar-right:hover {
            background-color: #363F48 !important;
        }

        .footer-social-icons.font-awesome-icons li i:hover {
            color: #41A6DF;
        }
		<!-- classic new style end !-->
                #header{
margin: 0 auto;
}				

.listing-simple .search-row .form-inline .input-group .input-group-addon.lp-border {
    float: unset !important;
}				

.lp-add-listing-btn, .lp-joinus-icon-outer{
display: none;
}
.lp-header-add-btn{
display: none;
}
.lp-join-now {
visibility: hidden;
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/common-5379cce325.css */
@media all {
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:99999;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:99999;position:fixed;outline:0!important;backface-visibility:hidden;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container::before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container::before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close.ekit-popup-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close.ekit-popup-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close.ekit-popup-close{overflow:visible;cursor:pointer;background:0 0;border:0;-moz-appearance:none;appearance:none;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}button.mfp-arrow:focus-visible,button.mfp-close.ekit-popup-close:focus-visible{outline:-webkit-focus-ring-color auto 1px}button::-moz-focus-inner{padding:0;border:0}.mfp-close.ekit-popup-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close.ekit-popup-close:focus,.mfp-close.ekit-popup-close:hover{opacity:1}.mfp-close.ekit-popup-close:active{top:1px}.mfp-close-btn-in .mfp-closeekit-popup-close{color:#333}.mfp-iframe-holder .mfp-close.ekit-popup-close,.mfp-image-holder .mfp-close.ekit-popup-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow::after,.mfp-arrow::before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow::after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow::before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left::after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left::before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right::after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right::before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close.ekit-popup-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure::after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure::after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close.ekit-popup-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-fade.mfp-bg{opacity:0;-webkit-transition:all .15s ease-out;transition:all .15s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;-webkit-transition:all .15s ease-out;transition:all .15s ease-out}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-zoom-in .mfp-with-anim{opacity:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:scale(.8);transform:scale(.8)}.mfp-zoom-in.mfp-bg{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-zoom-in.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-in.mfp-removing .mfp-with-anim{-webkit-transform:scale(.8);transform:scale(.8);opacity:0}.mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}.twentytwenty-horizontal .twentytwenty-handle::after,.twentytwenty-horizontal .twentytwenty-handle::before,.twentytwenty-vertical .twentytwenty-handle::after,.twentytwenty-vertical .twentytwenty-handle::before{content:" ";display:block;background:#fff;position:absolute;z-index:30;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle::after,.twentytwenty-horizontal .twentytwenty-handle::before{width:3px;height:9999px;left:50%;margin-left:-1.5px}.twentytwenty-vertical .twentytwenty-handle::after,.twentytwenty-vertical .twentytwenty-handle::before{width:9999px;height:3px;top:50%;margin-top:-1.5px}.twentytwenty-after-label,.twentytwenty-before-label,.twentytwenty-overlay{position:absolute;top:0;width:100%;height:100%}.twentytwenty-after-label,.twentytwenty-before-label,.twentytwenty-overlay{-webkit-transition-duration:.5s;transition-duration:.5s}.twentytwenty-after-label,.twentytwenty-before-label{-webkit-transition-property:opacity;transition-property:opacity}.twentytwenty-after-label::before,.twentytwenty-before-label::before{color:#fff;font-size:13px;letter-spacing:.1em}.twentytwenty-after-label::before,.twentytwenty-before-label::before{position:absolute;background:rgba(255,255,255,.2);line-height:38px;padding:0 20px;border-radius:2px}.twentytwenty-horizontal .twentytwenty-after-label::before,.twentytwenty-horizontal .twentytwenty-before-label::before{top:50%;margin-top:-19px}.twentytwenty-vertical .twentytwenty-after-label::before,.twentytwenty-vertical .twentytwenty-before-label::before{left:50%;margin-left:-45px;text-align:center;width:auto;display:inline-block}.twentytwenty-down-arrow,.twentytwenty-left-arrow,.twentytwenty-right-arrow,.twentytwenty-up-arrow{width:0;height:0;border:6px inset transparent;position:absolute}.twentytwenty-handle .twentytwenty-left-arrow,.twentytwenty-handle .twentytwenty-right-arrow{top:50%;margin-top:-6px}.twentytwenty-handle .twentytwenty-down-arrow,.twentytwenty-handle .twentytwenty-up-arrow{left:50%;margin-left:-6px}.twentytwenty-container{-webkit-box-sizing:content-box;box-sizing:content-box;z-index:0;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none}.twentytwenty-container img{max-width:100%;position:absolute;top:0;display:block}.twentytwenty-container.active .twentytwenty-overlay,.twentytwenty-container.active :hover.twentytwenty-overlay{background:rgba(0,0,0,0)}.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label{opacity:0}.twentytwenty-container *{-webkit-box-sizing:content-box;box-sizing:content-box}.twentytwenty-before-label{opacity:0}.twentytwenty-before-label::before{content:attr(data-content)}.twentytwenty-after-label{opacity:0}.twentytwenty-after-label::before{content:attr(data-content)}.twentytwenty-horizontal .twentytwenty-before-label::before{left:10px}.twentytwenty-horizontal .twentytwenty-after-label::before{right:10px}.twentytwenty-vertical .twentytwenty-before-label::before{top:10px}.twentytwenty-vertical .twentytwenty-after-label::before{bottom:10px}.twentytwenty-overlay{-webkit-transition-property:background;transition-property:background;background:rgba(0,0,0,0);z-index:25}.twentytwenty-overlay:hover{background:rgba(0,0,0,.5)}.twentytwenty-overlay:hover .twentytwenty-after-label{opacity:1}.twentytwenty-overlay:hover .twentytwenty-before-label{opacity:1}.twentytwenty-before{z-index:20}.twentytwenty-after{z-index:10}div.twentytwenty-handle{height:38px;width:38px;position:absolute;left:50%;top:50%;margin-left:-22px;margin-top:-22px;border:3px solid #fff;border-radius:1000px;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5);z-index:40;cursor:pointer}.twentytwenty-handle:focus-visible{outline:-webkit-focus-ring-color auto 1px}.twentytwenty-horizontal .twentytwenty-handle::before{bottom:50%;margin-bottom:22px;-webkit-box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle::after{top:50%;margin-top:22px;-webkit-box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle::before{left:50%;margin-left:22px;-webkit-box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle::after{right:50%;margin-right:22px;-webkit-box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-handle>.twentytwenty-left-arrow{border-right:6px solid #fff;left:50%;margin-left:-17px}.twentytwenty-handle>.twentytwenty-right-arrow{border-left:6px solid #fff;right:50%;margin-right:-17px}.twentytwenty-handle>.twentytwenty-up-arrow{border-bottom:6px solid #fff;top:50%;margin-top:-17px}.twentytwenty-handle>.twentytwenty-down-arrow{border-top:6px solid #fff;bottom:50%;margin-bottom:-17px}table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable tfoot th,table.dataTable thead th{font-weight:700}table.dataTable thead td,table.dataTable thead th{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead td:active,table.dataTable thead th:active{outline:0}table.dataTable tfoot td,table.dataTable tfoot th{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .dt-ordering-asc,table.dataTable thead .dt-ordering-asc-disabled,table.dataTable thead .dt-ordering-desc,table.dataTable thead .dt-ordering-desc-disabled,table.dataTable thead th{cursor:pointer;background-repeat:no-repeat;background-position:center right}table.dataTable thead .dt-orderable-asc,table.dataTable thead .dt-orderable-desc{background-image:url(https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png)}table.dataTable thead .dt-ordering-asc{background-image:url(https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png)}table.dataTable thead .dt-ordering-desc{background-image:url(https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png)}table.dataTable thead .dt-ordering-asc-disabled{background-image:url(https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png)}table.dataTable tbody tr{background-color:#fff}table.dataTable tbody tr.selected{background-color:#b0bed9}table.dataTable tbody td,table.dataTable tbody th{padding:8px 10px}.ekit_table.display table.dataTable tbody td,.ekit_table.display table.dataTable tbody th,table.dataTable.row-border tbody td,table.dataTable.row-border tbody th{border-top:1px solid #ddd}.ekit_table.display table.dataTable tbody tr:first-child td,.ekit_table.display table.dataTable tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.row-border tbody tr:first-child th{border-top:none}table.dataTable.cell-border tbody td,table.dataTable.cell-border tbody th{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr td:first-child,table.dataTable.cell-border tbody tr th:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child td,table.dataTable.cell-border tbody tr:first-child th{border-top:none}.ekit_table.display table.dataTable tbody tr.odd,table.dataTable.stripe tbody tr.odd{background-color:#f9f9f9}.ekit_table.display table.dataTable tbody tr.odd.selected,table.dataTable.stripe tbody tr.odd.selected{background-color:#acbad4}.ekit_table.display table.dataTable tbody tr:hover,table.dataTable.hover tbody tr:hover{background-color:#f6f6f6}.ekit_table.display table.dataTable tbody tr:hover.selected,table.dataTable.hover tbody tr:hover.selected{background-color:#aab7d1}.ekit_table.display table.dataTable tbody tr>.sorting_1,.ekit_table.display table.dataTable tbody tr>.sorting_2,.ekit_table.display table.dataTable tbody tr>.sorting_3,table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3{background-color:#fafafa}.ekit_table.display table.dataTable tbody tr.selected>.sorting_1,.ekit_table.display table.dataTable tbody tr.selected>.sorting_2,.ekit_table.display table.dataTable tbody tr.selected>.sorting_3,table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3{background-color:#acbad5}.ekit_table.display table.dataTable tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}.ekit_table.display table.dataTable tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}.ekit_table.display table.dataTable tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:#f5f5f5}.ekit_table.display table.dataTable tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}.ekit_table.display table.dataTable tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}.ekit_table.display table.dataTable tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}.ekit_table.display table.dataTable tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}.ekit_table.display table.dataTable tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}.ekit_table.display table.dataTable tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}.ekit_table.display table.dataTable tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}.ekit_table.display table.dataTable tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}.ekit_table.display table.dataTable tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}.ekit_table.display table.dataTable tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}.ekit_table.display table.dataTable tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}.ekit_table.display table.dataTable tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}.ekit_table.display table.dataTable tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}.ekit_table.display table.dataTable tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}.ekit_table.display table.dataTable tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap td,table.dataTable.nowrap th{white-space:nowrap}table.dataTable.compact thead td,table.dataTable.compact thead th{padding:4px 17px 4px 4px}table.dataTable.compact tfoot td,table.dataTable.compact tfoot th{padding:4px}table.dataTable.compact tbody td,table.dataTable.compact tbody th{padding:4px}table.dataTable td.dt-left,table.dataTable th.dt-left{text-align:left}table.dataTable td.dataTables_empty,table.dataTable td.dt-center,table.dataTable th.dt-center{text-align:center}table.dataTable td.dt-right,table.dataTable th.dt-right{text-align:right}table.dataTable td.dt-justify,table.dataTable th.dt-justify{text-align:justify}table.dataTable td.dt-nowrap,table.dataTable th.dt-nowrap{white-space:nowrap}table.dataTable tfoot td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable thead th.dt-head-left{text-align:left}table.dataTable tfoot td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable thead th.dt-head-center{text-align:center}table.dataTable tfoot td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable thead th.dt-head-right{text-align:right}table.dataTable tfoot td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable thead th.dt-head-justify{text-align:justify}table.dataTable tfoot td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable thead th.dt-head-nowrap{white-space:nowrap}table.dataTable tbody td.dt-body-left,table.dataTable tbody th.dt-body-left{text-align:left}table.dataTable tbody td.dt-body-center,table.dataTable tbody th.dt-body-center{text-align:center}table.dataTable tbody td.dt-body-right,table.dataTable tbody th.dt-body-right{text-align:right}table.dataTable tbody td.dt-body-justify,table.dataTable tbody th.dt-body-justify{text-align:justify}table.dataTable tbody td.dt-body-nowrap,table.dataTable tbody th.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}.dt-container{position:relative;clear:both;zoom:1}.dt-container>.dt-buttons{position:relative;float:left;margin-bottom:20px}.dt-container>.dt-search{float:right;text-align:right;margin-bottom:20px}.dt-container>.dt-info{clear:both;float:left;margin-top:20px}.dt-container>.dt-paging{float:right;text-align:right;margin-top:20px}.dt-search input input{margin-left:.5em}.dt-container .dt-paging button{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;min-width:1.5em;padding:.5em 1em;margin-left:2px;text-align:center;text-decoration:none!important;cursor:pointer;color:#333;border:1px solid transparent;border-radius:2px}.dt-container .dt-paging button.current,.dt-container .dt-paging button.current:hover{color:#333;border:1px solid #979797;background-color:#fff;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#dcdcdc));background:linear-gradient(to bottom,#fff 0,#dcdcdc 100%)}.dt-container .dt-paging button.disabled,.dt-container .dt-paging button.disabled:active,.dt-container .dt-paging button.disabled:hover{cursor:default;color:#666;border:1px solid transparent;background:0 0;-webkit-box-shadow:none;box-shadow:none}.dt-container .dt-paging button:hover{color:#fff;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear,left top,left bottom,from(#585858),to(#111));background:linear-gradient(to bottom,#585858 0,#111 100%)}.dt-container .dt-paging button:active{outline:0;background-color:#2b2b2b;background:-webkit-gradient(linear,left top,left bottom,from(#2b2b2b),to(#0c0c0c));background:linear-gradient(to bottom,#2b2b2b 0,#0c0c0c 100%);-webkit-box-shadow:inset 0 0 3px #111;box-shadow:inset 0 0 3px #111}.dt-container .dt-paging .ellipsis{padding:0 1em}.dt-container .dt-paging .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:#fff;background:-webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),color-stop(25%,rgba(255,255,255,.9)),color-stop(75%,rgba(255,255,255,.9)),to(rgba(255,255,255,0)));background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.9) 25%,rgba(255,255,255,.9) 75%,rgba(255,255,255,0) 100%)}.dt-container .dataTables_processing,.dt-container .dt-info,.dt-container .dt-length,.dt-container .dt-paging,.dt-container .dt-search{color:#333}.dt-container .dataTables_scroll{clear:both}.dt-container .dataTables_scroll div.dataTables_scrollBody{-webkit-overflow-scrolling:touch}.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th{vertical-align:middle}.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing{height:0;overflow:hidden;margin:0!important;padding:0!important}.dt-container.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dt-container.no-footer div.dataTables_scrollBody>table,.dt-container.no-footer div.dataTables_scrollHead table.dataTable{border-bottom:none}.dt-container::after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width:767px){.dt-container .dt-info,.dt-container .dt-paging{float:none;text-align:center}.dt-container .dt-paging{margin-top:.5em}}@media screen and (max-width:640px){.ekit-wid-con .ekit_table .dt-container .dt-layout-row{text-align:center}.ekit-wid-con .ekit_table .dt-container .dt-layout-row:not(.dt-layout-table){-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset;gap:20px}.ekit-wid-con .ekit_table .dt-container .dt-layout-row:not(.dt-layout-table) .dt-search .dt-input{width:100%}.ekit-wid-con .ekit_table .dt-container>.dt-buttons,.ekit-wid-con .ekit_table .dt-container>.dt-info,.ekit-wid-con .ekit_table .dt-container>.dt-paging,.ekit-wid-con .ekit_table .dt-container>.dt-search{float:none;text-align:center}}@keyframes dtb-spinner{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dtb-spinner{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:#fff;border:2px solid #111;-webkit-box-shadow:3px 3px 8px rgba(0,0,0,.3);box-shadow:3px 3px 8px rgba(0,0,0,.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:.5em;margin:0;font-weight:400;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}div.dt-button-collection-title{text-align:center;padding:.3em 0 .5em;font-size:.9em}div.dt-button-collection-title:empty{display:none}a.dt-button,button.dt-button,div.dt-button{position:relative;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;margin-right:.333em;margin-bottom:.333em;padding:.5em 1em;border:1px solid #999;border-radius:2px;cursor:pointer;font-size:.88em;line-height:1.6em;color:#000;white-space:nowrap;overflow:hidden;background-color:#e9e9e9;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e9e9e9));background-image:linear-gradient(to bottom,#fff 0,#e9e9e9 100%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;outline:0}a.dt-button.disabled,button.dt-button.disabled,div.dt-button.disabled{color:#999;border:1px solid #d0d0d0;cursor:default;background-color:#f9f9f9;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f9f9f9));background-image:linear-gradient(to bottom,#fff 0,#f9f9f9 100%)}a.dt-button.active:not(.disabled),a.dt-button:active:not(.disabled),button.dt-button.active:not(.disabled),button.dt-button:active:not(.disabled),div.dt-button.active:not(.disabled),div.dt-button:active:not(.disabled){background-color:#e2e2e2;background-image:-webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#e2e2e2));background-image:linear-gradient(to bottom,#f3f3f3 0,#e2e2e2 100%);-webkit-box-shadow:inset 1px 1px 3px #999;box-shadow:inset 1px 1px 3px #999}a.dt-button.active:not(.disabled):hover:not(.disabled),a.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button.active:not(.disabled):hover:not(.disabled),button.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button.active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled){-webkit-box-shadow:inset 1px 1px 3px #999;box-shadow:inset 1px 1px 3px #999;background-color:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#eaeaea),to(#ccc));background-image:linear-gradient(to bottom,#eaeaea 0,#ccc 100%)}a.dt-button:hover,button.dt-button:hover,div.dt-button:hover{text-decoration:none}a.dt-button:hover:not(.disabled),button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled){border:1px solid #666;background-color:#e0e0e0;background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#e0e0e0));background-image:linear-gradient(to bottom,#f9f9f9 0,#e0e0e0 100%)}a.dt-button:focus:not(.disabled),button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled){border:1px solid #426c9e;text-shadow:0 1px 0 #c4def1;outline:0;background-color:#79ace9;background-image:-webkit-gradient(linear,left top,left bottom,from(#bddef4),to(#79ace9));background-image:linear-gradient(to bottom,#bddef4 0,#79ace9 100%)}.dt-button embed{outline:0}div.dt-buttons{position:relative;float:left}div.dt-buttons.buttons-right{float:right}div.dt-button-collection{position:absolute;top:0;left:0;width:150px;margin-top:3px;padding:8px 8px 4px 8px;border:1px solid #ccc;border:1px solid rgba(0,0,0,.4);background-color:#fff;overflow:hidden;z-index:2002;border-radius:5px;-webkit-box-shadow:3px 3px 5px rgba(0,0,0,.3);box-shadow:3px 3px 5px rgba(0,0,0,.3);-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}div.dt-button-collection a.dt-button,div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button{position:relative;left:0;right:0;width:100%;display:block;float:none;margin-bottom:4px;margin-right:0}div.dt-button-collection a.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled){background-color:#dadada;background-image:-webkit-gradient(linear,left top,left bottom,from(#f0f0f0),to(#dadada));background-image:linear-gradient(to bottom,#f0f0f0 0,#dadada 100%);-webkit-box-shadow:inset 1px 1px 3px #666;box-shadow:inset 1px 1px 3px #666}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-150px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>*{-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-collection .dt-button{border-radius:0}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);background:radial-gradient(ellipse farthest-corner at center,rgba(0,0,0,.3) 0,rgba(0,0,0,.7) 100%);z-index:2001}@media screen and (max-width:640px){div.dt-buttons{float:none!important;text-align:center}}a.dt-button.processing,button.dt-button.processing,div.dt-button.processing{color:rgba(0,0,0,.2)}a.dt-button.processing::after,button.dt-button.processing::after,div.dt-button.processing::after{position:absolute;top:50%;left:50%;width:16px;height:16px;margin:-8px 0 0 -8px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;content:" ";border:2px solid #282828;border-radius:50%;border-left-color:transparent;border-right-color:transparent;animation:dtb-spinner 1.5s infinite linear;-o-animation:dtb-spinner 1.5s infinite linear;-ms-animation:dtb-spinner 1.5s infinite linear;-webkit-animation:dtb-spinner 1.5s infinite linear;-moz-animation:dtb-spinner 1.5s infinite linear}table.DTFC_Cloned tfoot,table.DTFC_Cloned thead{background-color:#fff}div.DTFC_Blocker{background-color:#fff}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none}table.fixedHeader-floating{position:fixed!important;background-color:#fff}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute!important;background-color:#fff}@media print{table.fixedHeader-floating{display:none}}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child::before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty::before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child::before{display:none!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child::before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child::before{content:"-";background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child::before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child::before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control::before,table.dataTable.dtr-column>tbody>tr>th.control::before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control::before,table.dataTable.dtr-column>tbody>tr.parent th.control::before{content:"-";background-color:#d33333}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:0 0!important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700}div.dtr-modal{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;-webkit-box-shadow:0 12px 30px rgba(0,0,0,.6);box-shadow:0 12px 30px rgba(0,0,0,.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width:767px){div.dtr-modal div.dtr-modal-display{width:95%}}table.dataTable tr.dtrg-group td{background-color:#e0e0e0}table.dataTable tr.dtrg-group.dtrg-level-0 td{font-weight:700}table.dataTable tr.dtrg-group.dtrg-level-1 td,table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f0f0f0;padding-top:.25em;padding-bottom:.25em;padding-left:2em;font-size:.9em}table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f3f3f3}.ekit_table .dt-container{padding-top:20px;padding-bottom:20px}.ekit_table table.dataTable.no-footer{border-bottom:1px solid #e6e6e6}.ekit_table .dt-container select:not([multiple]){-webkit-appearance:none;-ms-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:0;border:solid 1px #bbb;padding:12px 48px 12px 18px}.ekit_table .dt-container select:not([multiple])::after{content:" - Remember this"}.ekit_table .dt-container .dt-search input{border:solid 1px #bbb;padding:12px 48px 12px 18px}.ekit_table table.dataTable thead th{font-size:14px;font-weight:500;letter-spacing:.3px;color:#fff}.ekit_table.display table.dataTable tbody tr td{border-style:solid;border-width:1px 1px 1px 1px;border-color:#f9f9f9}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child::before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty::before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child::before{display:none!important}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child::before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child::before{content:"-";background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child::before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child::before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control::before,table.dataTable.dtr-column>tbody>tr>th.control::before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control::before,table.dataTable.dtr-column>tbody>tr.parent th.control::before{content:"-";background-color:#d33333}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:0 0!important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700}div.dtr-modal{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;-webkit-box-shadow:0 12px 30px rgba(0,0,0,.6);box-shadow:0 12px 30px rgba(0,0,0,.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width:767px){div.dtr-modal div.dtr-modal-display{width:95%}}.elementskit-invisible{visibility:hidden}.ekit-wid-con .ekit-post-list-wrapper .elementor-icon-list-item a{background-color:transparent!important}.ekit-wid-con .ekit-post-list-wrapper.elementor-inline-items .elementor-icon-list-item{margin:0}.ekit-wid-con .elementor-inline-items{margin:0!important}.ekit-wid-con .elementor-inline-items .elementor-icon-list-item{display:inline-block}.ekit-wid-con .elementor-inline-items .elementor-icon-list-item::after{display:inline-block}.elementor-widget .ekit-wid-con .elementor-inline-items .elementor-icon-list-item::after{position:absolute}.ekit-wid-con .elementor-inline-items .elementor-icon-list-item:last-child::after{display:none}.elementor-widget-elementskit-page-list:not(.ekit-has-divider-yes) .ekit-wid-con .elementor-inline-items .elementor-icon-list-item::after{display:none}.ekit-wid-con .elementor-inline-items.row .elementor-icon-list-item{margin:0;padding:0;margin-right:0!important;margin-left:0!important;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-wid-con .elementor-inline-items.row .elementor-icon-list-item a{padding:5px 15px}.ekit-wid-con .elementor-icon-list-item>a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .4s ease;transition:all .4s ease;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ekit-wid-con .elementor-icon-list-item>a.ekit_badge_right{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}.ekit-wid-con .ekit_menu_label{border-radius:3px;padding:2px 5px;display:inline-block;font-size:10px;color:#fff;background-color:#c91765;margin-left:5px}.ekit-wid-con .ekit_menu_subtitle{font-size:11px;font-style:normal;color:#8d96ae;display:block;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-text{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;text-align:center;line-height:inherit}.ekit-wid-con .elementor-icon-list-icon svg{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-icon>i{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-enabled-bg-img .elementor-icon-list-item a{background-size:cover;background-repeat:no-repeat;position:relative;background-position:center center;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-enabled-bg-img .elementor-icon-list-item a::after{content:"";background-color:rgba(34,34,34,.7);position:absolute;left:0;top:0;width:100%;height:100%;display:block;-webkit-transition:all .4s;transition:all .4s}.ekit-enabled-bg-img .elementor-icon-list-item a:hover::after{background-color:rgba(34,34,34,.9)}.ekit-enabled-bg-img .elementor-icon-list-item a .ekit_post_list_content_wraper{z-index:1}.ekit-enabled-bg-img .elementor-icon-list-item a>img{z-index:1}.ekit-wid-con .nav{margin:0;padding:0;list-style:none}.ekit-wid-con .ekit-form form p{margin-bottom:0}.ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]){display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#495057;background-color:#fff;border:1px solid #e7e7e7;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;height:56px;border-radius:0;padding-left:30px;-webkit-box-shadow:none;box-shadow:none}.ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]):hover{border-color:#333}.ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus{border-color:#4d68ff}.ekit-wid-con .ekit-form form input[type=submit]{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:0;-webkit-transition:all .4s ease;transition:all .4s ease;padding:12px 72px;font-size:.9375rem;background-color:#313636;border:0 solid #000;color:#fff;cursor:pointer}.ekit-wid-con .ekit-form form input[type=submit]:hover{background-color:#4d68ff}.ekit-wid-con .ekit-form form select{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#495057;background-color:#fff;border:1px solid #e7e7e7;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;height:56px}.ekit-wid-con .ekit-form form select[multiple]{height:100px}.ekit-wid-con .ekit-form form label{margin-bottom:7px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#313636;font-weight:400}.ekit-wid-con .ekit-form form label span{color:#777;font-size:.8125rem;display:block}.ekit-wid-con .ekit-form form textarea{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#495057;background-color:#fff;border:1px solid #e7e7e7;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;border-radius:0;padding-left:30px;height:176px;resize:none;padding-top:15px;-webkit-box-shadow:none;box-shadow:none}.ekit-wid-con .ekit-form form textarea:hover{border-color:#333}.ekit-wid-con .ekit-form form textarea:focus{border-color:#4d68ff}.ekit-wid-con .ekit-form form .intl-tel-input{width:100%}.ekit-wid-con .ekit-form form .ekit-form-input{margin-bottom:50px}.elementor-widget-elementskit-pricing .elementor-widget-container,.elementor-widget-elementskit-pricing.elementor-element:not(:has(.elementor-widget-container)){overflow:hidden}.elementor-widget-elementskit-timeline .elementor-widget-container,.elementor-widget-elementskit-timeline.elementor-element:not(:has(.elementor-widget-container)){padding-top:35px;padding-left:45px;padding-right:45px;padding-bottom:60px}.elementor-widget-elementskit-business-hours{padding:20px 20px 20px 20px;background-color:#fff;-webkit-box-shadow:0 10px 10px 0 rgba(0,0,0,.1);box-shadow:0 10px 10px 0 rgba(0,0,0,.1)}.elementor-widget-elementskit-dual-button-center .ekit-element-align-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget-elementskit-dual-button-end .ekit-element-align-wrapper{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget-elementskit-dual-button-start .ekit-element-align-wrapper{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ekit_wpForms_container-form-button-full-width .wpforms-submit-container .wpforms-submit{width:100%}.ekit_ninjaForms_container-button-full-width .submit-container input[type=button]{width:100%}.elemenetskit-alert-info{position:relative;padding:.75rem 1.25rem;border:1px solid transparent;border-radius:.25rem;color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.elementor-widget-elementskit-team.animated{-webkit-animation-fill-mode:none;animation-fill-mode:none}@media (max-width:1024px){.ekit-tab-hide{display:none}}@media (max-width:767px){.ekit-mobile-hide{display:none}}.ekit-template-content-footer,.ekit-template-content-header{clear:both}.elementor-edit-area-active .elementor-widget:hover .widgetarea_warper_edit{display:block}.ekit-sticky{z-index:9999}div.elementor .ekit-sticky.elementor-element{-webkit-transition:background-color .3s ease-in;transition:background-color .3s ease-in}.ekit-sticky[data-ekit-sticky]{z-index:1}div.elementor .ekit-sticky--show_on_scroll_up.elementor-element{-webkit-transition:background-color .3s ease-in,opacity .3s,visibility .3s;transition:background-color .3s ease-in,opacity .3s,visibility .3s}.ekit-sticky--effects.ekit-sticky--down.ekit-sticky--show_on_scroll_up{opacity:0;visibility:hidden}.weforms_submit_btn{-webkit-transition:all .4s ease;transition:all .4s ease;cursor:pointer}.wpuf-label>label{margin-bottom:0}ul.wpuf-form li label.wpuf-form-sub-label{margin-bottom:0}.image-source-link{color:#98c3d1}.mfp-bg,.mfp-container{opacity:0;-webkit-backface-visibility:hidden;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-ready .mfp-container{opacity:1}.mfp-ready.mfp-bg{opacity:.8}.mfp-removing .mfp-container,.mfp-removing.mfp-bg{opacity:0}.mfp-move-horizontal .mfp-with-anim{opacity:0;-webkit-transition:all .3s;transition:all .3s;-webkit-transform:translateX(-50px);transform:translateX(-50px)}.mfp-move-horizontal.mfp-bg{opacity:0;-webkit-transition:all .3s;transition:all .3s}.mfp-move-horizontal.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}.mfp-move-horizontal.mfp-ready.mfp-bg{opacity:.8}.mfp-move-horizontal.mfp-removing .mfp-with-anim{-webkit-transform:translateX(50px);transform:translateX(50px);opacity:0}.mfp-move-horizontal.mfp-removing.mfp-bg{opacity:0}.mfp-zoom-out .mfp-with-anim{opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:scale(1.3);transform:scale(1.3)}.mfp-zoom-out.mfp-bg{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-zoom-out.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mfp-zoom-out.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-out.mfp-removing .mfp-with-anim{-webkit-transform:scale(1.3);transform:scale(1.3);opacity:0}.mfp-zoom-out.mfp-removing.mfp-bg{opacity:0}button.mfp-close.ekit-popup-close{border:1px solid #fff;margin:20px;border-radius:50%;-webkit-transition:all .4s ease;transition:all .4s ease}button.mfp-close.ekit-popup-close:hover{background-color:#000;color:#fff;border-color:#000;width:44px}.mfp-iframe-holder .mfp-close.ekit-popup-close{width:44px;text-align:center;padding-right:0;top:0;right:0}.mfp-container.mfp-iframe-holder{position:fixed}.mfp-container.mfp-iframe-holder .mfp-close.ekit-popup-close{position:fixed}.mfp-zoom-in .mfp-with-anim{opacity:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:scale(.8);transform:scale(.8)}.mfp-zoom-in.mfp-bg{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-zoom-in.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-in.mfp-removing .mfp-with-anim{-webkit-transform:scale(.8);transform:scale(.8);opacity:0}.mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}.white-popup-block{background:#ccc;padding:20px;max-width:300px;margin:0 auto;-webkit-animation:open 1s;animation:open 1s}.mfp-removing{-webkit-animation:close 1s;animation:close 1s}.mfp-open .modal-popup-group,.mfp-open .xs-modal-sidebar{-webkit-animation-name:galleryopen;animation-name:galleryopen;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;backface-visibility:hidden}.mfp-bg.ekit-promo-popup{background-color:rgba(0,0,0,.87);padding-bottom:100%;border-radius:100%;overflow:hidden;-webkit-animation:menu-animation .8s ease-out forwards;animation:menu-animation .8s ease-out forwards}.ekit-promo-popup .modal-content{background-color:transparent;padding:0;border:0}.ekit-promo-popup .mfp-close{color:#fff;opacity:0;-webkit-transition:all 1s ease .8s;transition:all 1s ease .8s;-webkit-transform:translateY(-500px);transform:translateY(-500px)}.ekit-promo-popup.mfp-ready .mfp-close{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);position:fixed}body.admin-bar .ekit-promo-popup.mfp-ready .mfp-close{margin-top:45px}.ekit-promo-popup.my-mfp-slide-bottom .zoom-anim-dialog{opacity:0;-webkit-transition:all 1s ease .8s;transition:all 1s ease .8s;-webkit-transform:translateY(-500px);transform:translateY(-500px)}.ekit-promo-popup.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}@-webkit-keyframes bounceAnim{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-16px);transform:translateY(-16px)}60%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}}@keyframes bounceAnim{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-16px);transform:translateY(-16px)}60%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}}@-webkit-keyframes menu-animation{0%{opacity:0;-webkit-transform:scale(.04) translateY(300%);transform:scale(.04) translateY(300%)}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0);-webkit-transition:ease-out;transition:ease-out}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}60%{opacity:1;-webkit-transform:scale(.02) translateY(0);transform:scale(.02) translateY(0)}61%{opacity:1;-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}99.9%{opacity:1;height:0;padding-bottom:100%;border-radius:100%}100%{opacity:1;-webkit-transform:scale(2) translateY(0);transform:scale(2) translateY(0);height:100%;padding-bottom:0;border-radius:0}}@keyframes menu-animation{0%{opacity:0;-webkit-transform:scale(.04) translateY(300%);transform:scale(.04) translateY(300%)}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0);-webkit-transition:ease-out;transition:ease-out}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}60%{opacity:1;-webkit-transform:scale(.02) translateY(0);transform:scale(.02) translateY(0)}61%{opacity:1;-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}99.9%{opacity:1;height:0;padding-bottom:100%;border-radius:100%}100%{opacity:1;-webkit-transform:scale(2) translateY(0);transform:scale(2) translateY(0);height:100%;padding-bottom:0;border-radius:0}}@-webkit-keyframes show-fadein{0%{opacity:0}100%{opacity:1}}@keyframes show-fadein{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes hide-fadeout{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes show-animation{0%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes show-animation{0%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes hide-animation{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes hide-animation{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-webkit-keyframes button-ripple{70%{-webkit-box-shadow:0 0 0 var(--glow-size,15px) currentColor;box-shadow:0 0 0 var(--glow-size,15px) currentColor;opacity:0}100%{-webkit-box-shadow:0 0 0 0 currentColor;box-shadow:0 0 0 0 currentColor;opacity:0}}@keyframes button-ripple{70%{-webkit-box-shadow:0 0 0 var(--glow-size,15px) currentColor;box-shadow:0 0 0 var(--glow-size,15px) currentColor;opacity:0}100%{-webkit-box-shadow:0 0 0 0 currentColor;box-shadow:0 0 0 0 currentColor;opacity:0}}@-webkit-keyframes radio-wave{0%{opacity:.8;border-width:2px}70%{opacity:.4}100%{-webkit-transform:scale(var(--ekit-radio-wave-scale));transform:scale(var(--ekit-radio-wave-scale));opacity:0;border-width:0}}@keyframes radio-wave{0%{opacity:.8;border-width:2px}70%{opacity:.4}100%{-webkit-transform:scale(var(--ekit-radio-wave-scale));transform:scale(var(--ekit-radio-wave-scale));opacity:0;border-width:0}}@-webkit-keyframes open{0%{opacity:0}100%{opacity:1}}@keyframes open{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes close{0%{opacity:1}100%{opacity:0}}@keyframes close{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes galleryopen{0%{opacity:0}100%{opacity:1}}@keyframes galleryopen{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes location-indicator{0%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,.2);box-shadow:0 0 0 0 rgba(12,90,219,.2)}70%{-webkit-box-shadow:0 0 0 30px rgba(12,90,219,0);box-shadow:0 0 0 30px rgba(12,90,219,0)}100%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,0);box-shadow:0 0 0 0 rgba(12,90,219,0)}}@keyframes location-indicator{0%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,.2);box-shadow:0 0 0 0 rgba(12,90,219,.2)}70%{-webkit-box-shadow:0 0 0 30px rgba(12,90,219,0);box-shadow:0 0 0 30px rgba(12,90,219,0)}100%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,0);box-shadow:0 0 0 0 rgba(12,90,219,0)}}@-webkit-keyframes iconTranslateY{49%{-webkit-transform:translateY(100%);transform:translateY(100%)}50%{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}51%{opacity:1}}@keyframes iconTranslateY{49%{-webkit-transform:translateY(100%);transform:translateY(100%)}50%{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}51%{opacity:1}}@-webkit-keyframes RainDrop{0%,100%,25%,55%,75%,87%,97%{-webkit-transform:scaleX(1);transform:scaleX(1)}26%,56%,76%{-webkit-transform:scaleX(1.3) scaleY(.8);transform:scaleX(1.3) scaleY(.8)}31%,61%,81%{-webkit-transform:scaleX(.8) scaleY(1.2);transform:scaleX(.8) scaleY(1.2)}76%,88%{-webkit-transform:scaleX(1.2);transform:scaleX(1.2)}98%{-webkit-transform:scaleX(1.1);transform:scaleX(1.1)}}@keyframes RainDrop{0%,100%,25%,55%,75%,87%,97%{-webkit-transform:scaleX(1);transform:scaleX(1)}26%,56%,76%{-webkit-transform:scaleX(1.3) scaleY(.8);transform:scaleX(1.3) scaleY(.8)}31%,61%,81%{-webkit-transform:scaleX(.8) scaleY(1.2);transform:scaleX(.8) scaleY(1.2)}76%,88%{-webkit-transform:scaleX(1.2);transform:scaleX(1.2)}98%{-webkit-transform:scaleX(1.1);transform:scaleX(1.1)}}@-webkit-keyframes WaterWave{50%{-webkit-transform:skewY(1deg) skewX(-1deg) scale(1.06);transform:skewY(1deg) skewX(-1deg) scale(1.06)}}@keyframes WaterWave{50%{-webkit-transform:skewY(1deg) skewX(-1deg) scale(1.06);transform:skewY(1deg) skewX(-1deg) scale(1.06)}}@-webkit-keyframes lightning{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes lightning{50%,from,to{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes JoltZoom{10%{font-size:140%}40%{font-size:80%}100%{font-size:100%}}@keyframes JoltZoom{10%{font-size:140%}40%{font-size:80%}100%{font-size:100%}}@-webkit-keyframes typing{from{width:0}}@keyframes typing{from{width:0}}@-webkit-keyframes cursor{50%{border-color:transparent}}@keyframes cursor{50%{border-color:transparent}}@-webkit-keyframes wipe{to{width:0}}@keyframes wipe{to{width:0}}@keyframes open{from{width:0}}@-webkit-keyframes Magnify{50%{-webkit-transform:scale(1.8);transform:scale(1.8);letter-spacing:26px}}@keyframes Magnify{50%{-webkit-transform:scale(1.8);transform:scale(1.8);letter-spacing:26px}}@-webkit-keyframes Beat{14%,42%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%,70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes Beat{14%,42%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%,70%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes FadeIn{from{opacity:0}to{opacity:1}}@keyframes FadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes FadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes FadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes FadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes FadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes FadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@keyframes FadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@-webkit-keyframes FadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@keyframes FadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@-webkit-keyframes FadeOut{from{opacity:1}to{opacity:0}}@keyframes FadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes FadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes FadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes FadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes FadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes FadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes FadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes FadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes FadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@-webkit-keyframes MovingBackFromRight{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes MovingBackFromRight{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes MovingBackFromLeft{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes MovingBackFromLeft{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes KickOutFront{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes KickOutFront{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes KickOutBehind{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes KickOutBehind{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes ScaleXIn{from{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}50%{opacity:1}}@keyframes ScaleXIn{from{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}50%{opacity:1}}@-webkit-keyframes ScaleXOut{to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}from{opacity:1}}@keyframes ScaleXOut{to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}from{opacity:1}}@-webkit-keyframes ScaleYIn{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}50%{opacity:1}}@keyframes ScaleYIn{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}50%{opacity:1}}@-webkit-keyframes ScaleYOut{to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}from{opacity:1}}@keyframes ScaleYOut{to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}from{opacity:1}}@-webkit-keyframes Jump{to{-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes Jump{to{-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@-webkit-keyframes AboundTop{50%{-webkit-transform:translateY(-100px);transform:translateY(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundTop{50%{-webkit-transform:translateY(-100px);transform:translateY(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes AboundBottom{50%{-webkit-transform:translateY(100px);transform:translateY(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundBottom{50%{-webkit-transform:translateY(100px);transform:translateY(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes AboundLeft{50%{-webkit-transform:translateX(-100px);transform:translateX(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundLeft{50%{-webkit-transform:translateX(-100px);transform:translateX(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes AboundRight{50%{-webkit-transform:translateX(100px);transform:translateX(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundRight{50%{-webkit-transform:translateX(100px);transform:translateX(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes FlyInTop{0%{-webkit-transform:translate(0,-80px);transform:translate(0,-80px);opacity:0}50%{-webkit-transform:translate(10px,50px);transform:translate(10px,50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@keyframes FlyInTop{0%{-webkit-transform:translate(0,-80px);transform:translate(0,-80px);opacity:0}50%{-webkit-transform:translate(10px,50px);transform:translate(10px,50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@-webkit-keyframes FlyInLeft{0%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0);opacity:0}50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}}@keyframes FlyInLeft{0%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0);opacity:0}50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}}@-webkit-keyframes FlyInRight{0%{-webkit-transform:translate(40px,0);transform:translate(40px,0);opacity:0}50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}}@keyframes FlyInRight{0%{-webkit-transform:translate(40px,0);transform:translate(40px,0);opacity:0}50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}}@-webkit-keyframes FlyInBottom{0%{-webkit-transform:translate(0,80px);transform:translate(0,80px);opacity:0}50%{-webkit-transform:translate(10px,-50px);transform:translate(10px,-50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@keyframes FlyInBottom{0%{-webkit-transform:translate(0,80px);transform:translate(0,80px);opacity:0}50%{-webkit-transform:translate(10px,-50px);transform:translate(10px,-50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@-webkit-keyframes FlyOutTop{50%{-webkit-transform:translate(0,50px);transform:translate(0,50px)}to{-webkit-transform:translate(0,-100px);transform:translate(0,-100px);opacity:0}}@keyframes FlyOutTop{50%{-webkit-transform:translate(0,50px);transform:translate(0,50px)}to{-webkit-transform:translate(0,-100px);transform:translate(0,-100px);opacity:0}}@-webkit-keyframes FlyOutLeft{50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}to{-webkit-transform:translate(-100px,0);transform:translate(-100px,0);opacity:0}}@keyframes FlyOutLeft{50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}to{-webkit-transform:translate(-100px,0);transform:translate(-100px,0);opacity:0}}@-webkit-keyframes FlyOutRight{50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}to{-webkit-transform:translate(100px,0);transform:translate(100px,0);opacity:0}}@keyframes FlyOutRight{50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}to{-webkit-transform:translate(100px,0);transform:translate(100px,0);opacity:0}}@-webkit-keyframes FlyOutBottom{50%{-webkit-transform:translate(0,-40px);transform:translate(0,-40px)}to{-webkit-transform:translate(0,100px);transform:translate(0,100px);opacity:0}}@keyframes FlyOutBottom{50%{-webkit-transform:translate(0,-40px);transform:translate(0,-40px)}to{-webkit-transform:translate(0,100px);transform:translate(0,100px);opacity:0}}@-webkit-keyframes DoorCloseLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}from{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}to{opacity:1}}@keyframes DoorCloseLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}from{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}to{opacity:1}}@-webkit-keyframes DoorOpenRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}}@keyframes DoorOpenRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}}@-webkit-keyframes DoorCloseRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}from{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}to{opacity:1}}@keyframes DoorCloseRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}from{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}to{opacity:1}}@-webkit-keyframes DoorOpenLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}}@keyframes DoorOpenLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}}@-webkit-keyframes HangAndDropLeft{from{-webkit-transform-origin:left;transform-origin:left}50%{-webkit-transform:rotate(100deg);transform:rotate(100deg);-webkit-transform-origin:left;transform-origin:left}60%{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:translateY(800px) rotate(70deg);transform:translateY(800px) rotate(70deg);-webkit-transform-origin:left;transform-origin:left}}@keyframes HangAndDropLeft{from{-webkit-transform-origin:left;transform-origin:left}50%{-webkit-transform:rotate(100deg);transform:rotate(100deg);-webkit-transform-origin:left;transform-origin:left}60%{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:translateY(800px) rotate(70deg);transform:translateY(800px) rotate(70deg);-webkit-transform-origin:left;transform-origin:left}}@-webkit-keyframes HangAndDropRight{from{-webkit-transform-origin:right;transform-origin:right}50%{-webkit-transform:rotate(-100deg);transform:rotate(-100deg);-webkit-transform-origin:right;transform-origin:right}60%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:translateY(800px) rotate(-70deg);transform:translateY(800px) rotate(-70deg);-webkit-transform-origin:right;transform-origin:right}}@keyframes HangAndDropRight{from{-webkit-transform-origin:right;transform-origin:right}50%{-webkit-transform:rotate(-100deg);transform:rotate(-100deg);-webkit-transform-origin:right;transform-origin:right}60%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:translateY(800px) rotate(-70deg);transform:translateY(800px) rotate(-70deg);-webkit-transform-origin:right;transform-origin:right}}@-webkit-keyframes PushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}50%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@keyframes PushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}50%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@-webkit-keyframes PushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@keyframes PushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@-webkit-keyframes PushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@keyframes PushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@-webkit-keyframes PushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@keyframes PushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@-webkit-keyframes PushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@keyframes PushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@-webkit-keyframes PushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@keyframes PushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@-webkit-keyframes PushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@keyframes PushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@-webkit-keyframes FlipInTop{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipInTop{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes FlipOutTop{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipOutTop{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes FlipInBottom{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipInBottom{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes FlipOutBottom{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipOutBottom{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes ElevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@keyframes ElevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@-webkit-keyframes ElevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@keyframes ElevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@-webkit-keyframes RollFromLeft{from{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@keyframes RollFromLeft{from{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@-webkit-keyframes RollFromRight{from{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@keyframes RollFromRight{from{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@-webkit-keyframes RollFromTop{from{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@keyframes RollFromTop{from{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@-webkit-keyframes RollFromBottom{from{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@keyframes RollFromBottom{from{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@-webkit-keyframes RollToLeft{to{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@keyframes RollToLeft{to{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@-webkit-keyframes RollToRight{to{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@keyframes RollToRight{to{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@-webkit-keyframes RollToTop{to{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@keyframes RollToTop{to{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@-webkit-keyframes RollToBottom{to{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@keyframes RollToBottom{to{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@-webkit-keyframes RotateSkateInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@keyframes RotateSkateInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@-webkit-keyframes RotateSkateInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@keyframes RotateSkateInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@-webkit-keyframes RotateSkateInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@keyframes RotateSkateInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@-webkit-keyframes RotateSkateInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@keyframes RotateSkateInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@-webkit-keyframes RotateSkateOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@keyframes RotateSkateOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@-webkit-keyframes RotateSkateOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@keyframes RotateSkateOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@-webkit-keyframes RotateSkateOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@keyframes RotateSkateOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@-webkit-keyframes RotateSkateOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@keyframes RotateSkateOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@-webkit-keyframes RotateXZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@keyframes RotateXZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@-webkit-keyframes RotateXZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@keyframes RotateXZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@-webkit-keyframes RotateYZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@keyframes RotateYZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@-webkit-keyframes RotateYZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@keyframes RotateYZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@-webkit-keyframes RotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes RotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes RotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes RotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@-webkit-keyframes RotateInLeft{from{-webkit-transform:rotate(-180deg) translateX(150px);transform:rotate(-180deg) translateX(150px);opacity:0}to{opacity:1}}@keyframes RotateInLeft{from{-webkit-transform:rotate(-180deg) translateX(150px);transform:rotate(-180deg) translateX(150px);opacity:0}to{opacity:1}}@-webkit-keyframes RotateOutLeft{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(150px);transform:rotate(180deg) translateX(150px);opacity:0}}@keyframes RotateOutLeft{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(150px);transform:rotate(180deg) translateX(150px);opacity:0}}@-webkit-keyframes RotateInRight{from{-webkit-transform:rotate(-180deg) translateX(-150px);transform:rotate(-180deg) translateX(-150px);opacity:0}to{opacity:1}}@keyframes RotateInRight{from{-webkit-transform:rotate(-180deg) translateX(-150px);transform:rotate(-180deg) translateX(-150px);opacity:0}to{opacity:1}}@-webkit-keyframes RotateOutRight{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(-150px);transform:rotate(180deg) translateX(-150px);opacity:0}}@keyframes RotateOutRight{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(-150px);transform:rotate(180deg) translateX(-150px);opacity:0}}@-webkit-keyframes SpinInLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes SpinInLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes SpinInRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes SpinInRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes SpinOutLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes SpinOutLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes SpinOutRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes SpinOutRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes BlurIn{from{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurIn{from{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOut{to{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOut{to{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes PopUp{50%{-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes PopUp{50%{-webkit-transform:scale(1.5);transform:scale(1.5)}}@-webkit-keyframes PopUpLeft{50%{-webkit-transform:translateX(-50px) scale(1.5);transform:translateX(-50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopUpLeft{50%{-webkit-transform:translateX(-50px) scale(1.5);transform:translateX(-50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes PopUpRight{50%{-webkit-transform:translateX(50px) scale(1.5);transform:translateX(50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopUpRight{50%{-webkit-transform:translateX(50px) scale(1.5);transform:translateX(50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes PopOut{50%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes PopOut{50%{-webkit-transform:scale(.5);transform:scale(.5)}}@-webkit-keyframes PopOutLeft{50%{-webkit-transform:translateX(-50px) scale(.5);transform:translateX(-50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopOutLeft{50%{-webkit-transform:translateX(-50px) scale(.5);transform:translateX(-50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes PopOutRight{50%{-webkit-transform:translateX(50px) scale(.5);transform:translateX(50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopOutRight{50%{-webkit-transform:translateX(50px) scale(.5);transform:translateX(50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes BounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.2,1);transform:translate3d(0,-80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes BounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.2,1);transform:translate3d(0,-80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@-webkit-keyframes BounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@keyframes BounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@-webkit-keyframes BounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@keyframes BounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@-webkit-keyframes BounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.7);transform:scale(1.7)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.9);transform:scale(1.9)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes BounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.7);transform:scale(1.7)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.9);transform:scale(1.9)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@-webkit-keyframes BounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.7);transform:scale(.7)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes BounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.7);transform:scale(.7)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@-webkit-keyframes PerspectiveOutTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@keyframes PerspectiveOutTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@-webkit-keyframes PerspectiveOutBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@keyframes PerspectiveOutBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@-webkit-keyframes ZoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes ZoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes ZoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes ZoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes ZoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes ZoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes LetterZoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes LetterZoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes ZoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes ZoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes ZoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes ZoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-webkit-keyframes ZoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes ZoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@-webkit-keyframes ZoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes ZoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@-webkit-keyframes ZoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes ZoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes ZoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes ZoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes oaoFadeInTop{from{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@keyframes oaoFadeInTop{from{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@-webkit-keyframes oaoFadeInBottom{from{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}}@keyframes oaoFadeInBottom{from{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}}@-webkit-keyframes oaoFadeOutop{to{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@keyframes oaoFadeOutop{to{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@-webkit-keyframes oaoFadeOutBottom{to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@keyframes oaoFadeOutBottom{to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@-webkit-keyframes oaoFlyInTop{0%{-webkit-transform:translateY(80px);transform:translateY(80px);opacity:0}50%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes oaoFlyInTop{0%{-webkit-transform:translateY(80px);transform:translateY(80px);opacity:0}50%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@-webkit-keyframes oaoFlyInBottom{0%{-webkit-transform:translateY(-80px);transform:translateY(-80px);opacity:0}50%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes oaoFlyInBottom{0%{-webkit-transform:translateY(-80px);transform:translateY(-80px);opacity:0}50%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@-webkit-keyframes oaoFlyOutTop{30%{-webkit-transform:translateY(80px);transform:translateY(80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@keyframes oaoFlyOutTop{30%{-webkit-transform:translateY(80px);transform:translateY(80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@-webkit-keyframes oaoFlyOutBottom{30%{-webkit-transform:translateY(-80px);transform:translateY(-80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@keyframes oaoFlyOutBottom{30%{-webkit-transform:translateY(-80px);transform:translateY(-80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@-webkit-keyframes oaoRotateInTop{from{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@keyframes oaoRotateInTop{from{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateInBottom{from{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@keyframes oaoRotateInBottom{from{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateOutTop{to{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@keyframes oaoRotateOutTop{to{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateOutBottom{to{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@keyframes oaoRotateOutBottom{to{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateXInTop{from{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXInTop{from{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateXInBottom{from{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXInBottom{from{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateXOutTop{to{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXOutTop{to{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateXOutBottom{to{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXOutBottom{to{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateYInTop{from{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYInTop{from{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@-webkit-keyframes oaoRotateYInBottom{from{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYInBottom{from{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@-webkit-keyframes oaoRotateYOutTop{to{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYOutTop{to{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@-webkit-keyframes oaoRotateYOutBottom{to{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYOutBottom{to{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes fadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@keyframes fadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@-webkit-keyframes fadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@keyframes fadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes fadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes fadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes fadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes fadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@-webkit-keyframes moveFromLeft{from{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@keyframes moveFromLeft{from{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@-webkit-keyframes moveFromRight{from{-webkit-transform:translateX(800px);transform:translateX(800px)}}@keyframes moveFromRight{from{-webkit-transform:translateX(800px);transform:translateX(800px)}}@-webkit-keyframes moveFromTop{from{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@keyframes moveFromTop{from{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@-webkit-keyframes moveFromBottom{from{-webkit-transform:translateY(800px);transform:translateY(800px)}}@keyframes moveFromBottom{from{-webkit-transform:translateY(800px);transform:translateY(800px)}}@-webkit-keyframes moveToLeft{to{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@keyframes moveToLeft{to{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@-webkit-keyframes moveToRight{to{-webkit-transform:translateX(800px);transform:translateX(800px)}}@keyframes moveToRight{to{-webkit-transform:translateX(800px);transform:translateX(800px)}}@-webkit-keyframes moveToTop{to{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@keyframes moveToTop{to{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@-webkit-keyframes moveToBottom{to{-webkit-transform:translateY(800px);transform:translateY(800px)}}@keyframes moveToBottom{to{-webkit-transform:translateY(800px);transform:translateY(800px)}}@-webkit-keyframes doorCloseFromLeft{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}}@keyframes doorCloseFromLeft{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}}@-webkit-keyframes doorOpenFromRight{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}}@keyframes doorOpenFromRight{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}}@-webkit-keyframes doorCloseFromRight{from{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}}@keyframes doorCloseFromRight{from{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}}@-webkit-keyframes doorOpenFromLeft{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}}@keyframes doorOpenFromLeft{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}}@-webkit-keyframes pushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@keyframes pushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@-webkit-keyframes pushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@keyframes pushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@-webkit-keyframes pushReleaseFromRight{from{-webkit-transform:translateX(100%);transform:translateX(100%)}30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}}@keyframes pushReleaseFromRight{from{-webkit-transform:translateX(100%);transform:translateX(100%)}30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}}@-webkit-keyframes pushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%)}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@keyframes pushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%)}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@-webkit-keyframes pushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%)}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@keyframes pushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%)}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@-webkit-keyframes pushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@keyframes pushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@-webkit-keyframes pushReleaseToLeft{30%{-webkit-transform:translateX(100px);transform:translateX(100px)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}@keyframes pushReleaseToLeft{30%{-webkit-transform:translateX(100px);transform:translateX(100px)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}@-webkit-keyframes pushReleaseToRight{30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}to{-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@keyframes pushReleaseToRight{30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}to{-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@-webkit-keyframes pushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@keyframes pushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@-webkit-keyframes pushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@keyframes pushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@-webkit-keyframes flipX{from{-webkit-transform:perspective(600px) rotateX(-180deg);transform:perspective(600px) rotateX(-180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateX(-360deg);transform:perspective(600px) rotateX(-360deg)}}@keyframes flipX{from{-webkit-transform:perspective(600px) rotateX(-180deg);transform:perspective(600px) rotateX(-180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateX(-360deg);transform:perspective(600px) rotateX(-360deg)}}@-webkit-keyframes flipXZoomIn{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(-180deg) scale(1.8);transform:perspective(600px) rotateX(-180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(-360deg) scale(.7);transform:perspective(600px) rotateX(-360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipXZoomIn{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(-180deg) scale(1.8);transform:perspective(600px) rotateX(-180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(-360deg) scale(.7);transform:perspective(600px) rotateX(-360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes flipXZoomOut{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(180deg) scale(1.8);transform:perspective(600px) rotateX(180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(360deg) scale(.7);transform:perspective(600px) rotateX(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipXZoomOut{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(180deg) scale(1.8);transform:perspective(600px) rotateX(180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(360deg) scale(.7);transform:perspective(600px) rotateX(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes flipY{from{-webkit-transform:perspective(600px) rotateY(180deg);transform:perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateY(360deg);transform:perspective(600px) rotateY(360deg)}}@keyframes flipY{from{-webkit-transform:perspective(600px) rotateY(180deg);transform:perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateY(360deg);transform:perspective(600px) rotateY(360deg)}}@-webkit-keyframes flipYZoomIn{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(1.6);transform:perspective(600px) rotateY(180deg) scale(1.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(.7);transform:perspective(600px) rotateY(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipYZoomIn{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(1.6);transform:perspective(600px) rotateY(180deg) scale(1.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(.7);transform:perspective(600px) rotateY(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes flipYZoomOut{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(.6);transform:perspective(600px) rotateY(180deg) scale(.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(1.8);transform:perspective(600px) rotateY(360deg) scale(1.8);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipYZoomOut{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(.6);transform:perspective(600px) rotateY(180deg) scale(.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(1.8);transform:perspective(600px) rotateY(360deg) scale(1.8);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes skewLeft{70%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}}@keyframes skewLeft{70%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}}@-webkit-keyframes skewRight{70%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}}@keyframes skewRight{70%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}}@-webkit-keyframes skewInLeft{from{opacity:0;-webkit-transform:translateX(-100%) skewX(-40deg);transform:translateX(-100%) skewX(-40deg)}70%{-webkit-transform:skewX(-30deg);transform:skewX(-30deg)}}@keyframes skewInLeft{from{opacity:0;-webkit-transform:translateX(-100%) skewX(-40deg);transform:translateX(-100%) skewX(-40deg)}70%{-webkit-transform:skewX(-30deg);transform:skewX(-30deg)}}@-webkit-keyframes skewInRight{from{opacity:0;-webkit-transform:translateX(100%) skewX(40deg);transform:translateX(100%) skewX(40deg)}70%{-webkit-transform:skewX(30deg);transform:skewX(30deg)}}@keyframes skewInRight{from{opacity:0;-webkit-transform:translateX(100%) skewX(40deg);transform:translateX(100%) skewX(40deg)}70%{-webkit-transform:skewX(30deg);transform:skewX(30deg)}}@-webkit-keyframes skewOutLeft{20%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}to{-webkit-transform:translateX(-100%) skewX(40deg);transform:translateX(-100%) skewX(40deg);opacity:0}}@keyframes skewOutLeft{20%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}to{-webkit-transform:translateX(-100%) skewX(40deg);transform:translateX(-100%) skewX(40deg);opacity:0}}@-webkit-keyframes skewOutRight{20%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}to{-webkit-transform:translateX(100%) skewX(-40deg);transform:translateX(100%) skewX(-40deg);opacity:0}}@keyframes skewOutRight{20%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}to{-webkit-transform:translateX(100%) skewX(-40deg);transform:translateX(100%) skewX(-40deg);opacity:0}}@-webkit-keyframes pullRelease{15%{-webkit-transform:scale(1.8);transform:scale(1.8)}}@keyframes pullRelease{15%{-webkit-transform:scale(1.8);transform:scale(1.8)}}@-webkit-keyframes pushRelease{15%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes pushRelease{15%{-webkit-transform:scale(.5);transform:scale(.5)}}@-webkit-keyframes swingInLeft{from{-webkit-transform:matrix(3,0,0,3,-800,0);transform:matrix(3,0,0,3,-800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,20,0);transform:matrix(1.3,0,0,1.3,20,0)}}@keyframes swingInLeft{from{-webkit-transform:matrix(3,0,0,3,-800,0);transform:matrix(3,0,0,3,-800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,20,0);transform:matrix(1.3,0,0,1.3,20,0)}}@-webkit-keyframes swingInRight{from{-webkit-transform:matrix(3,0,0,3,800,0);transform:matrix(3,0,0,3,800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,-20,0);transform:matrix(1.3,0,0,1.3,-20,0)}}@keyframes swingInRight{from{-webkit-transform:matrix(3,0,0,3,800,0);transform:matrix(3,0,0,3,800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,-20,0);transform:matrix(1.3,0,0,1.3,-20,0)}}@-webkit-keyframes swingInTop{from{-webkit-transform:matrix(3,0,0,3,0,-800);transform:matrix(3,0,0,3,0,-800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,20);transform:matrix(1.3,0,0,1.3,0,20)}}@keyframes swingInTop{from{-webkit-transform:matrix(3,0,0,3,0,-800);transform:matrix(3,0,0,3,0,-800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,20);transform:matrix(1.3,0,0,1.3,0,20)}}@-webkit-keyframes swingInBottom{from{-webkit-transform:matrix(3,0,0,3,0,800);transform:matrix(3,0,0,3,0,800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,-20);transform:matrix(1.3,0,0,1.3,0,-20)}}@keyframes swingInBottom{from{-webkit-transform:matrix(3,0,0,3,0,800);transform:matrix(3,0,0,3,0,800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,-20);transform:matrix(1.3,0,0,1.3,0,-20)}}@-webkit-keyframes elevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@keyframes elevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@-webkit-keyframes elevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@keyframes elevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@-webkit-keyframes rollFromLeft{from{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromLeft{from{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollFromRight{from{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromRight{from{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollFromTop{from{-webkit-transform:translateY(-100%) perspective(600px) rotateY(180deg);transform:translateY(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromTop{from{-webkit-transform:translateY(-100%) perspective(600px) rotateY(180deg);transform:translateY(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollFromBottom{from{-webkit-transform:translateY(100%) perspective(600px) rotateY(-180deg);transform:translateY(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromBottom{from{-webkit-transform:translateY(100%) perspective(600px) rotateY(-180deg);transform:translateY(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollToLeft{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}}@keyframes rollToLeft{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}}@-webkit-keyframes rollToRight{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}}@keyframes rollToRight{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}}@-webkit-keyframes rollToTop{from{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(-100%) perspective(600px) rotateX(180deg);transform:translateY(-100%) perspective(600px) rotateX(180deg);opacity:0}}@keyframes rollToTop{from{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(-100%) perspective(600px) rotateX(180deg);transform:translateY(-100%) perspective(600px) rotateX(180deg);opacity:0}}@-webkit-keyframes rollToBottom{to{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(100%) perspective(600px) rotateX(-180deg);transform:translateY(100%) perspective(600px) rotateX(-180deg);opacity:0}}@keyframes rollToBottom{to{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(100%) perspective(600px) rotateX(-180deg);transform:translateY(100%) perspective(600px) rotateX(-180deg);opacity:0}}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes rotateX{from{-webkit-transform:perspective(600px) rotateX(0);transform:perspective(600px) rotateX(0)}to{-webkit-transform:perspective(600px) rotateX(90deg);transform:perspective(600px) rotateX(90deg)}}@keyframes rotateX{from{-webkit-transform:perspective(600px) rotateX(0);transform:perspective(600px) rotateX(0)}to{-webkit-transform:perspective(600px) rotateX(90deg);transform:perspective(600px) rotateX(90deg)}}@-webkit-keyframes rotateXIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@keyframes rotateXIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@-webkit-keyframes rotateXOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@keyframes rotateXOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@-webkit-keyframes rotateY{from{-webkit-transform:perspective(600px) rotateY(0);transform:perspective(600px) rotateY(0)}to{-webkit-transform:perspective(600px) rotateY(90deg);transform:perspective(600px) rotateY(90deg)}}@keyframes rotateY{from{-webkit-transform:perspective(600px) rotateY(0);transform:perspective(600px) rotateY(0)}to{-webkit-transform:perspective(600px) rotateY(90deg);transform:perspective(600px) rotateY(90deg)}}@-webkit-keyframes rotateYIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@keyframes rotateYIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@-webkit-keyframes rotateYOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@keyframes rotateYOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@-webkit-keyframes rotateInLeft{from{opacity:0;-webkit-transform:translateX(-100%) rotate(0);transform:translateX(-100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@keyframes rotateInLeft{from{opacity:0;-webkit-transform:translateX(-100%) rotate(0);transform:translateX(-100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@-webkit-keyframes rotateInRight{from{opacity:0;-webkit-transform:translateX(100%) rotate(0);transform:translateX(100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}}@keyframes rotateInRight{from{opacity:0;-webkit-transform:translateX(100%) rotate(0);transform:translateX(100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}}@-webkit-keyframes rotateInTop{from{opacity:0;-webkit-transform:translateY(-400%) rotate(0);transform:translateY(-400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@keyframes rotateInTop{from{opacity:0;-webkit-transform:translateY(-400%) rotate(0);transform:translateY(-400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@-webkit-keyframes rotateInBottom{from{opacity:0;-webkit-transform:translateY(400%) rotate(0);transform:translateY(400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@keyframes rotateInBottom{from{opacity:0;-webkit-transform:translateY(400%) rotate(0);transform:translateY(400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@-webkit-keyframes rotateOutLeft{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateX(-800px) rotate(0);transform:translateX(-800px) rotate(0);opacity:0}}@keyframes rotateOutLeft{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateX(-800px) rotate(0);transform:translateX(-800px) rotate(0);opacity:0}}@-webkit-keyframes rotateOutRight{from{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}to{-webkit-transform:translateX(800px) rotate(0);transform:translateX(800px) rotate(0);opacity:0}}@keyframes rotateOutRight{from{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}to{-webkit-transform:translateX(800px) rotate(0);transform:translateX(800px) rotate(0);opacity:0}}@-webkit-keyframes rotateOutTop{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(-800px) rotate(0);transform:translateY(-800px) rotate(0);opacity:0}}@keyframes rotateOutTop{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(-800px) rotate(0);transform:translateY(-800px) rotate(0);opacity:0}}@-webkit-keyframes rotateOutBottom{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(800px) rotate(0);transform:translateY(800px) rotate(0);opacity:0}}@keyframes rotateOutBottom{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(800px) rotate(0);transform:translateY(800px) rotate(0);opacity:0}}@-webkit-keyframes spinToLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinToLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes spinToRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinToRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinToTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinToTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinToBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinToBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes spinFromLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinFromLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes spinFromRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinFromRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinFromTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinFromTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinFromBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinFromBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes blurIn{from{-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurIn{from{-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInLeft{from{-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInLeft{from{-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInRight{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInRight{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInTop{from{-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInTop{from{-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInBottom{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInBottom{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurOut{85%,to{-webkit-filter:blur(20px);filter:blur(20px)}to{opacity:0}}@keyframes blurOut{85%,to{-webkit-filter:blur(20px);filter:blur(20px)}to{opacity:0}}@-webkit-keyframes blurOutLeft{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:0}}@keyframes blurOutLeft{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:0}}@-webkit-keyframes blurOutRight{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:0}}@keyframes blurOutRight{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:0}}@-webkit-keyframes blurOutTop{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:0}}@keyframes blurOutTop{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:0}}@-webkit-keyframes blurOutBottom{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:0}}@keyframes blurOutBottom{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:0}}@-webkit-keyframes bounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.6,1);transform:translate3d(0,-80px,0) scale3d(1,1.6,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.6,1);transform:translate3d(0,-80px,0) scale3d(1,1.6,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@-webkit-keyframes bounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@keyframes bounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@-webkit-keyframes bounceX{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.8,1,1);transform:scale3d(1.8,1,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.5,1,1);transform:scale3d(1.5,1,1)}90%{-webkit-transform:scale3d(1.1,1,1);transform:scale3d(1.1,1,1)}}@keyframes bounceX{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.8,1,1);transform:scale3d(1.8,1,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.5,1,1);transform:scale3d(1.5,1,1)}90%{-webkit-transform:scale3d(1.1,1,1);transform:scale3d(1.1,1,1)}}@-webkit-keyframes bounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@keyframes bounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@-webkit-keyframes bounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.5);transform:scale(1.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.3);transform:scale(1.3)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes bounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.5);transform:scale(1.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.3);transform:scale(1.3)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@-webkit-keyframes bounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.3);transform:scale(.3)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes bounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.3);transform:scale(.3)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@-webkit-keyframes bounceInTop{0%{-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}58%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}73%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}88%{-webkit-transform:translate3d(0,7px,0);transform:translate3d(0,7px,0)}}@keyframes bounceInTop{0%{-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}58%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}73%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}88%{-webkit-transform:translate3d(0,7px,0);transform:translate3d(0,7px,0)}}@-webkit-keyframes bounceInBottom{0%{-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}58%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}73%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}88%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}}@keyframes bounceInBottom{0%{-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}58%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}73%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}88%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes bounceOutTop{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}33%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}48%{-webkit-transform:translate3d(0,8px,0);transform:translate3d(0,8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}}@keyframes bounceOutTop{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}33%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}48%{-webkit-transform:translate3d(0,8px,0);transform:translate3d(0,8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}}@-webkit-keyframes bounceOutBottom{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}33%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}48%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}}@keyframes bounceOutBottom{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}33%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}48%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@-webkit-keyframes perspectiveToTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@keyframes perspectiveToTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@-webkit-keyframes perspectiveToBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@keyframes perspectiveToBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes zoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes zoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes zoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes zoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@-webkit-keyframes zoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes zoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes zoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes zoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes ekitRevealInTop{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes ekitRevealInTop{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes ekitRevealInBottom{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes ekitRevealInBottom{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes ekitRevealInLeft{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes ekitRevealInLeft{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}@-webkit-keyframes ekitRevealInRight{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes ekitRevealInRight{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.ekit-wid-con .product-filter-area{margin-bottom:30px}.ekit-wid-con .product-filter-wraper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.ekit-wid-con .product-filter-wraper .woocommerce-ordering{margin-right:50px;margin-bottom:0}.ekit-wid-con .woocommerce-ordering{position:relative;z-index:10}.ekit-wid-con .woocommerce-ordering .shop-filter-title{color:#777;font-size:14px;position:relative;top:9px;padding-right:50px}.ekit-wid-con .tab-filter .nav-tabs .nav-item .nav-link{border:0;color:#777;font-size:18px;padding:10px}.ekit-wid-con .tab-filter .nav-tabs .nav-item .nav-link.active{color:#2575fc;background-color:transparent}.ekit-wid-con iframe{border:none}.ekit-wid-con a{text-decoration:none}.ekit-wid-con a,.ekit-wid-con b,.ekit-wid-con div,.ekit-wid-con li,.ekit-wid-con ul{-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;outline:0}.ekit-wid-con a:active,.ekit-wid-con a:focus,.ekit-wid-con input,.ekit-wid-con input:active,.ekit-wid-con input:focus,.ekit-wid-con input:hover,.ekit-wid-con textarea,.ekit-wid-con textarea:active,.ekit-wid-con textarea:focus,.ekit-wid-con textarea:hover{-moz-outline:none;outline:0}.ekit-wid-con a:active,.ekit-wid-con a:focus,.ekit-wid-con a:hover,.ekit-wid-con a:visited{outline:0;text-decoration:none}.ekit-wid-con embed,.ekit-wid-con img:not([draggable]),.ekit-wid-con object,.ekit-wid-con video{max-width:100%;height:auto}.ekit-wid-con [type=button]:focus:not(:focus-visible),.ekit-wid-con [type=submit]:focus:not(:focus-visible),.ekit-wid-con button:focus:not(:focus-visible){outline:0}.ekit-wid-con a:focus-visible,.ekit-wid-con button:focus-visible,.ekit-wid-con input:focus-visible,.ekit-wid-con textarea:focus-visible{outline:-webkit-focus-ring-color auto 1px}.ekit-wid-con img{border:none;max-width:100%}.ekit-wid-con li,.ekit-wid-con ul{margin:0;padding:0}.ekit-wid-con .elementor-text-editor ol,.ekit-wid-con .elementor-text-editor ul{padding-left:18px}.ekit-wid-con h4,.ekit-wid-con p{margin-bottom:10px}.ekit-wid-con svg{width:1em;height:1em}.ekit-wid-con .clear-both::after,.ekit-wid-con .clear-both::before{display:table;content:"";clear:both}.ekit-wid-con .text-left{text-align:left!important}.ekit-wid-con .text-right{text-align:right!important}.ekit-wid-con .text-center{text-align:center!important}.ekit-wid-con .ekit-flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ekit-wid-con .ekit-flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ekit-wid-con .ekit-flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.ekit-wid-con .ekit-flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.ekit-wid-con .tab-content>.tab-pane{font-family:inherit}.ekit-wid-con .elementskit-border-divider{left:13px}.ekit-wid-con .elementskit-border-divider.elementskit-style-long{left:inherit}.ekit-wid-con .elementskit-border-divider::before{left:-26px}.ekit-wid-con .elementskit-navbar-nav-default.elementskit-menu-container{z-index:1000}.ekit-wid-con .elementskit-navbar-nav-default .elementskit-navbar-nav>li>a:hover{background-color:transparent}.ekit-wid-con .elementor-icon-list-item a>img{width:100px;margin-right:15px}.ekit-wid-con .elementor-icon-list-item .meta-lists{line-height:1}.ekit-wid-con .elementor-icon-list-item .meta-lists svg{max-width:12px;height:auto;vertical-align:middle}.ekit-wid-con .elementor-icon-list-item .meta-lists>span{color:#7f8595;font-size:12px;display:inline-block;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-item .elementor-icon-list-text{display:block;margin-bottom:0}.ekit-wid-con .dialog-type-lightbox .dialog-widget-content{width:100%}.ekit-wid-con .nf-form-content .listselect-wrap .nf-field-element div,.ekit-wid-con .nf-form-content input.ninja-forms-field,.ekit-wid-con .nf-form-content select.ninja-forms-field:not([multiple]){height:100%}.ekit-wid-con .nf-form-content .list-select-wrap>div div::after{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:normal}.ekit-wid-con .nf-error.field-wrap .nf-field-element::after,.ekit-wid-con .nf-pass.field-wrap .nf-field-element::after{top:0;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:normal}.ekit-wid-con .nf-form-content button,.ekit-wid-con .nf-form-content input[type=button],.ekit-wid-con .nf-form-content input[type=submit]{cursor:pointer}.ekit-wid-con .nf-response-msg>p{line-height:normal}.ekit-wid-con textarea.ninja-forms-field{display:block}.ekit-wid-con .nf-form-content .list-select-wrap>div div{border:none}.ekit-wid-con .nf-form-content .list-select-wrap>div select{border:1px solid #c4c4c4}.ekit-wid-con .column-count-1{-webkit-column-count:1;-moz-column-count:1;column-count:1}.ekit-wid-con .column-count-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.ekit-wid-con .column-count-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.ekit-wid-con .column-count-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.ekit-wid-con .column-count-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.ekit-wid-con .column-count-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}.ekit-wid-con .ekit-img-overlay{position:relative;z-index:0}.ekit-wid-con .ekit-img-overlay::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.ekit-wid-con .ekit-wrapper-link{position:absolute;width:100%;height:100%;opacity:0;top:0;left:0;z-index:10}.ekit-wid-con .media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media (min-width:1025px){.ekit-wid-con .default_menu_position .elementor-column,.ekit-wid-con .default_menu_position .elementor-widget,.ekit-wid-con .default_menu_position .elementor-widget-wrap,.ekit-wid-con .default_menu_position .elementskit-navbar-nav-default.elementskit-menu-container{position:static}.ekit-wid-con .default_menu_position .elementskit-menu-po-right .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-custom_width .elementskit-megamenu-panel,.ekit-wid-con .default_menu_position .elementskit-menu-po-right .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-default_width .elementskit-megamenu-panel,.ekit-wid-con .elementskit-navbar-nav-default .elementskit-menu-po-right .relative_position.elementskit-megamenu-has .elementskit-megamenu-panel{right:0;left:auto}.ekit-wid-con .elementskit-navbar-nav-default .elementskit-megamenu-has .elementskit-megamenu-panel{-webkit-transition:transform .4s ease;-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.ekit-wid-con .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-custom_width .elementskit-megamenu-panel,.ekit-wid-con .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-default_width .elementskit-megamenu-panel{-webkit-transform:translateY(-10px) translateX(-50%);transform:translateY(-10px) translateX(-50%);left:50%}.ekit-wid-con .default_menu_position .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-custom_width:hover>.elementskit-megamenu-panel,.ekit-wid-con .default_menu_position .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-default_width:hover>.elementskit-megamenu-panel{-webkit-transform:translateY(0) translateX(-50%);transform:translateY(0) translateX(-50%);left:50%}.ekit-wid-con body.is-vertical-menu-active .ekit-wid-con .elementskit-navbar-nav-default.elementskit-menu-container{z-index:9}.ekit-wid-con body.is-vertical-menu-active .vertical-menu-active .xs-vertical-menu-backdrop{z-index:150}.ekit-wid-con body.is-vertical-menu-active .ekit-vertical-menu-tigger{z-index:160}}@media (max-width:1024px){.ekit-wid-con .ekit-vertical-navbar-nav .elementskit-submenu-indicator{padding:3px 10px;border:1px solid;border-radius:30px}}.ekit-wid-con .xs-overlay{position:absolute;top:0;left:0;height:100%;width:100%;opacity:.5;z-index:0}.ekit-wid-con .form-control:focus{-webkit-box-shadow:none;box-shadow:none}.ekit-wid-con .swiper-container{width:inherit;height:inherit}.ekit-wid-con .swiper-container.ekit-main-swiper,.ekit-wid-con .swiper.ekit-main-swiper{position:static}.ekit-wid-con .swiper .swiper-navigation-button,.ekit-wid-con .swiper-container .swiper-navigation-button{background:rgba(0,0,0,0);width:auto;height:auto}.ekit-wid-con .swiper .swiper-navigation-button::after,.ekit-wid-con .swiper-container .swiper-navigation-button::after{display:none}.ekit-wid-con .tab-pane.animated{-webkit-animation-duration:1.5s;animation-duration:1.5s}.ekit-wid-con .mfp-iframe-scaler iframe{-webkit-box-shadow:none;box-shadow:none;background:0 0}.ekit-wid-con img{-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;-ms-user-select:none;user-select:none}.ekit-wid-con .image-switcher .content-image{position:relative}.ekit-wid-con .image-switcher .content-image .hover-image{position:absolute;top:0;left:0;opacity:0;visibility:hidden;-webkit-transform:scale(1.2);transform:scale(1.2)}.ekit-wid-con .image-switcher:hover .content-image .main-image{opacity:0;visibility:hidden;-webkit-transform:scale(1.2);transform:scale(1.2)}.ekit-wid-con .image-switcher:hover .content-image .hover-image{-webkit-transform:scale(1);transform:scale(1);opacity:1;visibility:visible}.ekit-wid-con .fill-icon{display:inline-block;background-color:#2575fc;color:#fff;font-size:40px;text-align:center;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .fill-icon.round{border-radius:50%}.ekit-wid-con .fill-icon.style-light{background-color:#f5f5f5;color:#000}.ekit-wid-con button{cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .form-control{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con input{-webkit-box-sizing:border-box;box-sizing:border-box}.ekit-wid-con .widgetarea_warper_edit{display:none}.ekit-wid-con .swiper-pagination-bullet{opacity:inherit;background-color:inherit}.ekit-wid-con [data-ajax-post-id]:not(.is--loaded):before{content:"";display:block;width:30px;height:30px;margin:20px auto;border-style:solid;border-width:3px;border-color:#acacac #ddd #ddd;border-radius:50%;-webkit-animation:eicon-spin 1.5s infinite linear;animation:eicon-spin 1.5s infinite linear}.ekit-wid-con .select{cursor:pointer;display:block;position:relative;font-size:16px;color:#7b7b7b;width:220px;height:44px;float:right}.ekit-wid-con .ekit-row{margin-left:-15px;margin-right:-15px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.ekit-wid-con .ekit-col-1{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ekit-wid-con .ekit-col-2{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ekit-wid-con .ekit-col-3{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ekit-wid-con .ekit-col-4{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ekit-wid-con .ekit-col-5{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ekit-wid-con .ekit-col-6{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ekit-wid-con .ekit-col-7{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ekit-wid-con .ekit-col-8{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ekit-wid-con .ekit-col-9{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ekit-wid-con .ekit-col-10{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ekit-wid-con .ekit-col-11{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ekit-wid-con .ekit-col-12{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (max-width:1024px){.ekit-wid-con .ekit-col-1{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-2{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-3{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-4{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-5{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-6{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-7{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-8{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-9{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-10{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-11{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-12{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}@media (max-width:767px){.ekit-wid-con .ekit-col-1{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-2{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-3{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-4{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-5{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-6{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-7{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-8{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-9{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-10{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-11{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-12{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}@media (max-width:1024px){.ekit-wid-con .ekit-col-tablet-1{-webkit-column-count:12;-moz-column-count:12;column-count:12}.ekit-wid-con .ekit-col-tablet-2{-webkit-column-count:6;-moz-column-count:6;column-count:6}.ekit-wid-con .ekit-col-tablet-3{-webkit-column-count:4;-moz-column-count:4;column-count:4}.ekit-wid-con .ekit-col-tablet-4{-webkit-column-count:3;-moz-column-count:3;column-count:3}.ekit-wid-con .ekit-col-tablet-5{-webkit-column-count:2.4;-moz-column-count:2.4;column-count:2.4}.ekit-wid-con .ekit-col-tablet-6{-webkit-column-count:2;-moz-column-count:2;column-count:2}.ekit-wid-con .ekit-col-tablet-7{-webkit-column-count:1.7142857143;-moz-column-count:1.7142857143;column-count:1.7142857143}.ekit-wid-con .ekit-col-tablet-8{-webkit-column-count:1.5;-moz-column-count:1.5;column-count:1.5}.ekit-wid-con .ekit-col-tablet-9{-webkit-column-count:1.3333333333;-moz-column-count:1.3333333333;column-count:1.3333333333}.ekit-wid-con .ekit-col-tablet-10{-webkit-column-count:1.2;-moz-column-count:1.2;column-count:1.2}.ekit-wid-con .ekit-col-tablet-11{-webkit-column-count:1.0909090909;-moz-column-count:1.0909090909;column-count:1.0909090909}.ekit-wid-con .ekit-col-tablet-12{-webkit-column-count:1;-moz-column-count:1;column-count:1}}@media (max-width:767px){.ekit-wid-con .ekit-col-mobile-1{-webkit-column-count:12;-moz-column-count:12;column-count:12}.ekit-wid-con .ekit-col-mobile-2{-webkit-column-count:6;-moz-column-count:6;column-count:6}.ekit-wid-con .ekit-col-mobile-3{-webkit-column-count:4;-moz-column-count:4;column-count:4}.ekit-wid-con .ekit-col-mobile-4{-webkit-column-count:3;-moz-column-count:3;column-count:3}.ekit-wid-con .ekit-col-mobile-5{-webkit-column-count:2.4;-moz-column-count:2.4;column-count:2.4}.ekit-wid-con .ekit-col-mobile-6{-webkit-column-count:2;-moz-column-count:2;column-count:2}.ekit-wid-con .ekit-col-mobile-7{-webkit-column-count:1.7142857143;-moz-column-count:1.7142857143;column-count:1.7142857143}.ekit-wid-con .ekit-col-mobile-8{-webkit-column-count:1.5;-moz-column-count:1.5;column-count:1.5}.ekit-wid-con .ekit-col-mobile-9{-webkit-column-count:1.3333333333;-moz-column-count:1.3333333333;column-count:1.3333333333}.ekit-wid-con .ekit-col-mobile-10{-webkit-column-count:1.2;-moz-column-count:1.2;column-count:1.2}.ekit-wid-con .ekit-col-mobile-11{-webkit-column-count:1.0909090909;-moz-column-count:1.0909090909;column-count:1.0909090909}.ekit-wid-con .ekit-col-mobile-12{-webkit-column-count:1;-moz-column-count:1;column-count:1}}@media (max-width:1024px){.ekit-wid-con .ekit-col-tablet-1{max-width:8.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%}.ekit-wid-con .ekit-col-tablet-2{max-width:16.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%}.ekit-wid-con .ekit-col-tablet-3{max-width:25%;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}.ekit-wid-con .ekit-col-tablet-4{max-width:33.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%}.ekit-wid-con .ekit-col-tablet-5{max-width:41.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%}.ekit-wid-con .ekit-col-tablet-6{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-tablet-7{max-width:58.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%}.ekit-wid-con .ekit-col-tablet-8{max-width:66.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%}.ekit-wid-con .ekit-col-tablet-9{max-width:75%;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%}.ekit-wid-con .ekit-col-tablet-10{max-width:83.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%}.ekit-wid-con .ekit-col-tablet-11{max-width:91.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%}.ekit-wid-con .ekit-col-tablet-12{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}@media (max-width:767px){.ekit-wid-con .ekit-col-mobile-1{max-width:8.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%}.ekit-wid-con .ekit-col-mobile-2{max-width:16.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%}.ekit-wid-con .ekit-col-mobile-3{max-width:25%;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}.ekit-wid-con .ekit-col-mobile-4{max-width:33.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%}.ekit-wid-con .ekit-col-mobile-5{max-width:41.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%}.ekit-wid-con .ekit-col-mobile-6{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-mobile-7{max-width:58.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%}.ekit-wid-con .ekit-col-mobile-8{max-width:66.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%}.ekit-wid-con .ekit-col-mobile-9{max-width:75%;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%}.ekit-wid-con .ekit-col-mobile-10{max-width:83.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%}.ekit-wid-con .ekit-col-mobile-11{max-width:91.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%}.ekit-wid-con .ekit-col-mobile-12{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.ekit-wid-con .fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.ekit-wid-con .fade.in{opacity:1}.ekit-wid-con .collapse{display:none}.ekit-wid-con .collapse.in{display:block}.ekit-wid-con .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.ekit-wid-con .nav-tabs{border-bottom:1px solid #ddd}.ekit-wid-con .nav-tabs>li{float:left;margin-bottom:-1px}.ekit-wid-con .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.ekit-wid-con .nav-tabs>li.active>a,.ekit-wid-con .nav-tabs>li.active>a:focus,.ekit-wid-con .nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.ekit-wid-con .tab-content>.tab-pane{display:none}.ekit-wid-con .tab-content>.active{display:block}.ekit-wid-con .clearfix::after,.ekit-wid-con .clearfix::before,.ekit-wid-con .nav::after,.ekit-wid-con .nav::before,.ekit-wid-con .row::after,.ekit-wid-con .row::before{display:table;content:" "}.ekit-wid-con .clearfix::after,.ekit-wid-con .nav::after,.ekit-wid-con .row::after{clear:both}.ekit-wid-con .hide{display:none!important}.ekit-wid-con .show{display:block!important}#wp-admin-bar-elementor_edit_page-default:empty{display:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#eee;clip:auto!important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000}.ekit-template-content-header .elementor-section,.ekit-template-content-header .panel-row-style{-webkit-transform:none}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/css/nav-menu.css?ver=4.0.1 */
@media all {
.nav-alignment-dynamic,.nav-alignment-flex-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementskit-menu-container{z-index:10000}.elementskit-navbar-nav>li>a .ekit-menu-icon{padding-right:5px}.ekit-menu-badge{position:absolute;top:5px;left:50%;background-color:#bbb;color:#fff;font-size:16px;padding:4px 8px;border-radius:3px;font-size:8px;line-height:1;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap;z-index:10}.ekit-menu-badge>.ekit-menu-badge-arrow{position:absolute;top:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-left:solid transparent;border-right:solid transparent;border-top:solid #bbb;border-bottom:solid transparent;border-width:6px}.elementskit-dropdown li{position:relative}.elementskit-dropdown .ekit-menu-badge{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.elementskit-navbar-nav-default .elementskit-navbar-nav{padding-left:0;margin-bottom:0;list-style:none;margin-left:0}.elementskit-navbar-nav-default .elementskit-navbar-nav>li{position:relative}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration:none}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a:hover{text-decoration:none}.elementskit-navbar-nav-default .elementskit-navbar-nav>li.elementskit-megamenu-has{position:static}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{-webkit-transition:all .4s ease;transition:all .4s ease;text-transform:none;font-weight:500;letter-spacing:normal}.elementskit-navbar-nav-default .elementskit-dropdown{border-top:1px solid #dadada;border-left:1px solid #dadada;border-bottom:1px solid #dadada;border-right:1px solid #dadada;background-color:#f4f4f4;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0;padding-left:0;list-style:none;opacity:0;visibility:hidden;-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown{left:100%;top:0}.elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown.open-fromleft{left:auto;right:100%}.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-top:15px;padding-left:10px;padding-bottom:15px;padding-right:10px;color:#000;font-weight:400;font-size:14px;-webkit-transition:all .3s;transition:all .3s}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-dropdown li:hover>a,.elementskit-navbar-nav-default .elementskit-navbar-nav>.elementskit-dropdown li>a:hover{color:#1e73be;background-color:#fff}.elementskit-navbar-nav-default .elementskit-submenu-panel>li:hover>a,.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a:hover{color:#0d3a4f;background-color:rgba(255,255,255,.5)}.elementskit-navbar-nav-default .elementskit-megamenu-panel{width:100%}.elementskit-navbar-nav-default .elementskit-overlay{display:none}.elementskit-navbar-nav-default .elementskit-nav-identity-panel{display:none}.elementskit-navbar-nav-default button.elementskit-menu-close{border:1px solid rgba(0,0,0,.5);color:rgba(51,51,51,.5);float:right;margin-top:20px;margin-left:20px;margin-right:20px;margin-bottom:20px}.elementskit-navbar-nav-default .elementskit-dropdown-has>a{position:relative}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{font-weight:900;font-style:normal;margin-left:6px;display:block;float:right;cursor:pointer;position:relative;font-size:11px}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.icon-none{display:none}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.ekit-spinner{width:1em;height:1em;border:2px solid color-mix(in srgb,currentColor 25%,transparent);border-bottom-color:currentColor;border-radius:50%;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:ekit_ajax_spinner_rotation 1s linear infinite;animation:ekit_ajax_spinner_rotation 1s linear infinite}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.ekit-spinner::before{content:"";display:none}@media (max-width:1024px){.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.ekit-spinner{padding:4px 4px;margin-right:10px}}@media (max-width:1024px){.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{padding:4px 15px}}@media (max-width:1024px){.elementskit-navbar-nav-default .elementskit-dropdown-has>a svg.elementskit-submenu-indicator{width:auto;height:auto;max-width:42px;max-height:42px}}.elementskit-navbar-nav-default.elementskit-menu-container{background:rgba(255,255,255,0);background:-webkit-gradient(linear,left bottom,left top,from(rgba(255,255,255,0)),to(rgba(255,255,255,0)));background:linear-gradient(0deg,rgba(255,255,255,0) 0,rgba(255,255,255,0) 100%);border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0;position:relative;height:100px;z-index:90000}.elementskit-navbar-nav-default .elementskit-dropdown{min-width:250px;margin-left:0}.elementskit-navbar-nav-default .elementskit-navbar-nav{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{font-size:15px;color:#000;padding-left:15px;padding-right:15px}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-menu-po-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-menu-po-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-menu-po-justified{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (min-width:1025px){.elementskit-navbar-nav-default .elementskit-dropdown{-webkit-box-shadow:0 10px 30px 0 rgba(45,45,45,.2);box-shadow:0 10px 30px 0 rgba(45,45,45,.2);position:absolute;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;max-height:none;z-index:999}.elementskit-navbar-nav-default .elementskit-megamenu-panel{-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;opacity:0;visibility:hidden;-webkit-transition:all .4s ease;transition:all .4s ease;margin-left:0;position:absolute;left:0;top:100%;display:block;z-index:999}}@media (min-width:1025px){.elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-megamenu-has:hover>.elementskit-megamenu-panel{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}.elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-megamenu-has .elementskit-dropdown{display:none}.elementskit-navbar-nav-default.ekit-nav-dropdown-click .ekit-dropdown-open-onclick{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}@media (min-width:767px){.elementskit-navbar-nav-default.ekit-nav-dropdown-click .elementskit-megamenu-has .elementskit-submenu-panel{display:none}}@media (max-width:1024px){.ekit_menu_responsive_tablet>.elementskit-navbar-nav-default{background-color:#f7f7f7}.elementskit-navbar-nav-default.elementskit-menu-offcanvas-elements{width:100%;position:fixed;top:0;left:-100vw;height:100%;-webkit-box-shadow:0 10px 30px 0 rgba(255,165,0,0);box-shadow:0 10px 30px 0 rgba(255,165,0,0);overflow-y:auto;overflow-x:hidden;padding-top:0;padding-left:0;padding-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-transition:left .6s cubic-bezier(.6,.1,.68,.53);transition:left .6s cubic-bezier(.6,.1,.68,.53)}.elementskit-navbar-nav-default .no-scroller{overflow:hidden}.elementskit-navbar-nav-default .elementskit-nav-identity-panel{display:block;position:relative;z-index:5;width:100%}.elementskit-navbar-nav-default .elementskit-nav-identity-panel .elementskit-site-title{float:left}.elementskit-navbar-nav-default .elementskit-nav-identity-panel button.elementskit-menu-close{float:right}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{color:#000;font-size:12px;-webkit-transition:all .4s ease;transition:all .4s ease;padding-top:5px;padding-left:10px;padding-right:5px;padding-bottom:5px}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a:hover{color:#0d3a4f}.elementskit-navbar-nav-default .elementskit-navbar-nav>li:hover>a{color:#0d3a4f}.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a{color:#000;font-size:12px;padding-top:7px;padding-left:7px;padding-right:7px;padding-bottom:7px}.elementskit-navbar-nav-default .elementskit-dropdown{display:block;border:0;margin-left:0}.elementskit-navbar-nav-default .elementskit-megamenu-panel{display:none}.elementskit-navbar-nav-default .elementskit-navbar-nav>.elementskit-dropdown-has>.elementskit-dropdown li a{padding-left:15px}}@media (max-width:767px){.ekit_menu_responsive_mobile>.elementskit-navbar-nav-default{background-color:#f7f7f7}}@-webkit-keyframes ekit_ajax_spinner_rotation{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ekit_ajax_spinner_rotation{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@media (min-width:1025px){.ekit-nav-dropdown-hover .elementskit-dropdown-has .elementskit-dropdown{-webkit-box-shadow:0 10px 30px 0 rgba(45,45,45,.2);box-shadow:0 10px 30px 0 rgba(45,45,45,.2);position:absolute;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;max-height:none;z-index:999}.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-dropdown{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}@media only screen and (max-width:1023px) and (min-width:768px){.ekit_menu_responsive_mobile .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-dropdown,.ekit_menu_responsive_mobile .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-megamenu-panel,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-megamenu-panel{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}@media only screen and (max-width:1024px) and (min-width:766px){.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-dropdown{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown~.elementskit-megamenu-panel{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown.elementskit-dropdown-open{display:block;max-height:2500px;opacity:1;visibility:visible;-webkit-transition:max-height 5s ease-out;transition:max-height 5s ease-out}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-navbar-nav{overflow-y:auto}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown{left:0}}button.elementskit-menu-close,button.elementskit-menu-hamburger{display:none}button.elementskit-menu-hamburger{color:#000}@media (max-width:1024px){.elementskit-menu-overlay{display:block;position:fixed;z-index:14;top:0;left:-100%;height:100%;width:100%;background-color:rgba(51,51,51,.5);-webkit-transition:all .4s ease;transition:all .4s ease;opacity:1;visibility:visible;-webkit-transition:all .6s cubic-bezier(.6,.1,.68,.53) .4s;transition:all .6s cubic-bezier(.6,.1,.68,.53) .4s}.elementor-element-edit-mode .elementskit-menu-overlay{left:100%}button.elementskit-menu-hamburger{border:1px solid rgba(0,0,0,.2);float:right}button.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{background-color:rgba(0,0,0,.5)}button.elementskit-menu-close,button.elementskit-menu-hamburger{padding:8px;background-color:transparent;border-radius:.25rem;position:relative;z-index:10;cursor:pointer;width:45px;-webkit-transition:all .4s ease-in;transition:all .4s ease-in}button.elementskit-menu-close .elementskit-menu-hamburger-icon,button.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{height:1px;width:100%;display:block;margin-bottom:4px}button.elementskit-menu-close .elementskit-menu-hamburger-icon:last-child,button.elementskit-menu-hamburger .elementskit-menu-hamburger-icon:last-child{margin-bottom:0}.elementskit-navbar-nav .ekit-menu-badge{font-size:7px}}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>.elementskit-dropdown>li>a .ekit-menu-badge .ekit-menu-badge-arrow{display:none}.dropdown-item,.ekit-menu-nav-link{position:relative}.dropdown-item span.ekit-spinner,.dropdown-item>i,.dropdown-item>svg,.ekit-menu-nav-link span.ekit-spinner,.ekit-menu-nav-link>i,.ekit-menu-nav-link>svg{margin-right:6px}.dropdown-item .icon-none,.ekit-menu-nav-link .icon-none{display:none!important}@-webkit-keyframes xs-zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes xs-zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.xs-zoomIn{-webkit-animation-name:xs-zoomIn;animation-name:xs-zoomIn}.elementskit-nav-logo{display:inline-block}@media (max-width:1024px){.elementor-widget-ekit-nav-menu{-webkit-animation:none!important;animation:none!important}.ekit-wid-con:not(.ekit_menu_responsive_mobile) .elementskit-navbar-nav{display:block}}@media (max-width:1024px){button.elementskit-menu-close,button.elementskit-menu-hamburger{display:block}.elementskit-menu-container{max-width:350px}.elementskit-menu-overlay.active{left:0;-webkit-transition:all .6s cubic-bezier(.22,.61,.24,1) 0s;transition:all .6s cubic-bezier(.22,.61,.24,1) 0s}.elementskit-menu-offcanvas-elements{height:100%!important;padding-bottom:10px}.elementskit-menu-offcanvas-elements.active{left:0}.elementskit-dropdown{position:relative;max-height:0;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:max-height 2s cubic-bezier(0,1,0,1);transition:max-height 2s cubic-bezier(0,1,0,1)}.ekit_menu_responsive_tablet .ekit-menu-badge{position:static;margin-left:10px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-transform:none;transform:none}.ekit_menu_responsive_tablet .ekit-menu-badge>.ekit-menu-badge-arrow{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{margin-left:auto}.ekit_menu_responsive_tablet .elementskit-submenu-indicator{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;border:1px solid;border-radius:30px}}@media screen and (min-width:766px) and (max-width:1024px){.ekit_menu_responsive_mobile .elementskit-menu-offcanvas-elements{position:static}.ekit_menu_responsive_mobile .elementskit-nav-identity-panel{display:none}.ekit_menu_responsive_mobile button.elementskit-menu-hamburger{display:none}.ekit_menu_responsive_mobile .elementskit-menu-container{overflow-y:unset;overflow-x:unset}.ekit_menu_responsive_mobile .elementskit-dropdown{-webkit-box-shadow:0 10px 30px 0 rgba(45,45,45,.2);box-shadow:0 10px 30px 0 rgba(45,45,45,.2);position:absolute;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;max-height:none;z-index:999}.ekit_menu_responsive_mobile .elementskit-megamenu-panel{-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;opacity:0;visibility:hidden;-webkit-transition:all .4s ease;transition:all .4s ease;margin-left:0;position:absolute;left:0;top:100%;display:block;z-index:999}.ekit_menu_responsive_mobile .elementskit-dropdown-menu-full_width .elementskit-megamenu-panel{width:100vw}.ekit_menu_responsive_mobile .elementskit-navbar-nav>li.elementskit-megamenu-has.relative_position{position:relative}.ekit_menu_responsive_mobile .elementskit-megamenu-panel .elementor-section-wrap>.elementor-section>.elementor-container{max-width:none}}@media (max-width:767px){.ekit_menu_responsive_mobile .elementskit-navbar-nav{display:block}.ekit_menu_responsive_mobile .elementskit-dropdown{position:relative}.ekit_menu_responsive_mobile .ekit-menu-badge{position:static;margin-left:10px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-transform:none;transform:none}.ekit_menu_responsive_mobile .ekit-menu-badge>.ekit-menu-badge-arrow{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{margin-left:auto}.ekit_menu_responsive_mobile .elementskit-submenu-indicator{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;border:1px solid;border-radius:30px}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-dropdown{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-megamenu-panel.elementskit-dropdown-open,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-megamenu-panel.elementskit-dropdown-open,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown~.elementskit-megamenu-panel,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown~.elementskit-megamenu-panel{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown.elementskit-dropdown-open,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown.elementskit-dropdown-open{display:block;max-height:2500px;opacity:1;visibility:visible;-webkit-transition:max-height 5s ease-out;transition:max-height 5s ease-out}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-navbar-nav,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-navbar-nav{overflow-y:auto}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown{left:0}}.elementskit-navbar-nav .elementskit-submenu-panel>li:hover>a>i,.elementskit-navbar-nav .elementskit-submenu-panel>li>a:hover>i{color:inherit!important}@media (min-width:1025px){.elementor-widget-ekit-nav-menu .elementskit-dropdown-menu-full_width .elementskit-megamenu-panel{width:100vw}.elementor-widget-ekit-nav-menu .elementskit-navbar-nav>li.elementskit-megamenu-has.relative_position{position:relative}.elementskit-megamenu-panel .elementor-section-wrap>.elementor-section>.elementor-container{max-width:none}}.elementskit-dropdown-has>.sub-menu-toggle{display:none}.ekit-nav-menu--empty-fallback{font-size:0}@media (min-width:766px){.ekit_menu_responsive_mobile .ekit-nav-menu--empty-fallback,.ekit_menu_responsive_mobile .ekit-nav-menu--overlay{display:none}}@media (min-width:1025px){.ekit_menu_responsive_tablet .ekit-nav-menu--empty-fallback,.ekit_menu_responsive_tablet .ekit-nav-menu--overlay{display:none}}@media (max-width:767px){.ekit-sticky .elementskit-menu-container.elementskit-menu-offcanvas-elements{height:120vh!important}.ekit-sticky .elementskit-menu-overlay{display:none}.ekit-sticky .elementskit-menu-offcanvas-elements::before{position:fixed;content:"";top:0;left:-110%;height:100%;width:100%;background-color:rgba(51,51,51,.5);-webkit-transition:left .5s ease;transition:left .5s ease}.ekit-sticky .elementskit-menu-offcanvas-elements::after{position:absolute;content:"";top:0;left:0;height:100%;width:100%;background:inherit}.ekit-sticky .elementskit-menu-offcanvas-elements.active::before{left:0}.ekit-sticky .elementskit-navbar-nav-default .elementskit-navbar-nav{position:relative;z-index:5}}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/css/header-search.css?ver=4.0.1 */
@media all {
.ekit_modal-searchPanel .xs-serach{position:relative}.ekit_modal-searchPanel .xs-serach input:not([type=submit]){padding:0 20px;background-color:transparent;width:100%;height:44px;border-radius:5px;border:0;border:1px solid #e7e7e7;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::-moz-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::-webkit-input-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit]):-ms-input-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::-ms-input-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit]):focus{border-color:#2575fc}.ekit_modal-searchPanel .xs-serach .search-btn{width:62px;border:0;font-size:14px;color:#777;background-color:transparent;position:absolute;right:0;top:0;height:100%;cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit_modal-searchPanel .mfp-wrap.ekit-promo-popup::before{content:"";width:100%;height:100%;display:block;background-color:rgba(0,0,0,.87);padding-bottom:100%;border-radius:100%;overflow:hidden;-webkit-animation:menu-animation .8s ease-out forwards;animation:menu-animation .8s ease-out forwards}.ekit_modal-searchPanel .mfp-wrap.ekit-promo-popup{height:100vh;overflow:hidden}.ekit_modal-searchPanel .mfp-bg.my-mfp-slide-bottom{display:none}.ekit_modal-searchPanel .ekit-sidebar-widget{height:100vh}.ekit_modal-searchPanel .ekit-bg-black{height:100vh!important}.ekit_modal-searchPanel .ekit-search-group{position:relative}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit]){height:70px;background-color:transparent;border-radius:50px;border:2px solid #fff;color:#fff;padding:0 30px;width:100%}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit]):focus{outline:0}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::-moz-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::-webkit-input-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit]):-ms-input-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::-ms-input-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group .ekit_search-button{background-color:transparent;border:0;padding:0;color:#fff;fill:#fff;position:absolute;right:0;cursor:pointer;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);height:100%;width:70px;border-radius:0 50px 50px 0}.ekit_modal-searchPanel .ekit-search-group .ekit_search-button svg{width:1em;height:1em}.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-cancel-button,.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-decoration,.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-results-button,.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-results-decoration{display:none}.ekit_modal-searchPanel .ekit-search-panel{max-width:800px;margin:1.75rem auto}.ekit_navsearch-button{display:inline-block}.elementor-widget-elementskit-header-search .mfp-close{width:44px}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/header-offcanvas-eef5b51794.css */
@media all {
.ekit-wid-con .ekit-sidebar-group .ekit-overlay{left:100%;top:0;position:fixed;z-index:1002;height:100%;opacity:0;width:100%;visibility:hidden;-webkit-transition:all .4s ease-in var(--transition-duration);transition:all .4s ease-in var(--transition-duration);cursor:url(https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.svg),pointer;background-color:rgba(0,0,0,.9)}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-group .ekit-overlay{left:auto;right:100%}.ekit-wid-con .ekit-sidebar-group .ekit_widget-heading{padding:20px;float:right}.ekit-wid-con .ekit-sidebar-group.ekit-fade .ekit-overlay{left:0;right:0}.ekit-wid-con .ekit-sidebar-widget{position:fixed;right:-100%;top:0;bottom:0;width:100%;max-width:360px;z-index:999999;overflow:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:#fff;-webkit-transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) var(--transition-duration);transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) var(--transition-duration);visibility:hidden;opacity:0}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-widget{left:-100%;right:auto}.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-overlay{visibility:visible;-webkit-transition:all var(--transition-duration) ease-out 0s;transition:all var(--transition-duration) ease-out 0s;left:0;opacity:1}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-overlay{left:auto;right:0}.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-sidebar-widget{opacity:1;visibility:visible;right:0;-webkit-transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) .4s;transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) .4s}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-sidebar-widget{left:0;right:auto}.ekit-wid-con .ekit_sidebar-textwidget{padding:20px;padding-top:60px}.ekit-wid-con .ekit_close-side-widget{position:absolute;color:#1768dd;font-size:15px;display:block;font-weight:400;line-height:1;padding:4px 7px 5px 7px;border:1px solid #ccc;z-index:1;background-color:#fff;top:15px;right:15px;text-align:center;-webkit-transition:all .3s;transition:all .3s}.ekit-wid-con .ekit_close-side-widget svg{width:100%;max-width:20px;height:auto;vertical-align:middle}.ekit-wid-con .ekit_sidebar-widget-container{position:relative;top:150px;opacity:0;visibility:hidden;-webkit-transition:all .3s ease-in .3s;transition:all .3s ease-in .3s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit_sidebar-widget-container{top:0;opacity:1;visibility:visible;-webkit-transition:all 1s ease-out 1.2s;transition:all 1s ease-out 1.2s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ekit-wid-con .ekit_navSidebar-button{display:inline-block;line-height:1}.ekit-wid-con .ekit_offcanvas-sidebar{-webkit-transition:all .3s;transition:all .3s}.ekit-wid-con .ekit_offcanvas-sidebar svg{width:100%;max-width:20px;height:auto;vertical-align:middle}
}
/* SCRIPT : https://kothrud.com/wp-content/plugins/elementskit-lite/widgets/init/assets/css/header-info.css?ver=4.0.1 */
@media all {
.ekit-wid-con .ekit-header-info{list-style:none}.ekit-wid-con .ekit-header-info>li:not(:last-child){margin-right:15px}.ekit-wid-con .ekit-header-info,.ekit-wid-con .ekit-header-info a{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ekit-wid-con .ekit-header-info svg{max-width:15px;height:auto;vertical-align:middle}
}
/* SCRIPT : https://fonts.googleapis.com/css?family=Open%20Sans:300,400,500,600,700,800,300italic,400italic,500italic,600italic,700italic,800italic%7CPoppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1785831807 */
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiAyp8kv8JHgFVrJJLmE0tDMPKzSQ.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiAyp8kv8JHgFVrJJLmE0tMMPKzSQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiAyp8kv8JHgFVrJJLmE0tCMPI.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1pVFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1pVGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm21lVFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm21lVGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm21lVF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrJJLucXtAKPY.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrJJLufntAKPY.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrJJLucHtA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmg1hVFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmg1hVGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmg1hVF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmr19VFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmr19VGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmr19VF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmy15VFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmy15VGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmy15VF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm111VFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm111VGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm111VF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm81xVFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm81xVGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm81xVF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTucXtAKPY.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTufntAKPY.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTucHtA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face{font-display: optional;font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* SCRIPT : Inline Script */
.wpc-bgLazy,.wpc-bgLazy>*{background-image:none!important;}
/* SCRIPT : Inline Script */
.ui-widget select {
	color: #7a7a7a;
	padding: 10px 0;
}

.listing-simple .search-row .form-inline .input-group .input-group-addon.lp-border {
    float: unset !important;
}


.lp-add-listing-btn {
display: none;
}
.lp-header-add-btn {
display: none;
}

.lp-join-now {
visibility: hidden;
}

.lp-joinus-icon {
	display:none !important;
}

@media (min-width: 992px){
.header-right-panel>.col-md-6 {
    width: 80% !important;
}
}

@media (min-width: 1270px) and (max-width: 1415px){
.header-inner-page-wrap .lp-header-style-classic header .col-md-6.col-xs-6.lp-menu-container {
    max-width: 80% !important;
}
}




.lpl-button.md-trigger {
    display: none;
}

/* Search bar css ***/
.lp-search-bar.classic-search form {
   justify-content: center !important;
	width: 100%;
    
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-suggested-search {
width: 83% !important;
    
}

.single-tabber2 ul {
	background: #ffdf00 !important;
	padding: 0 10px;	
	border-radius: 5px;
}
/* SCRIPT : Inline Script */
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
/* SCRIPT : Inline Script */
/* START Styles Simple Side Tab v2.2.3 */
#rum_sst_tab {
    font-family: Georgia, serif;
    top: 350px;
    background-color: #f7f300;
    color: #000000;
    border-style: solid;
    border-width: 0px;
}

#rum_sst_tab:hover {
    background-color: #6db1ce;
}
.rum_sst_contents {
    position:fixed;
    margin:0;
    padding:6px 13px 8px 13px;
    text-decoration:none;
    text-align:center;
    font-size:15px;
    font-weight:bold;
    border-style:solid;
    display:block;
    z-index:100000;
}
.rum_sst_left {
    left:-2px;
    cursor: pointer;
    -webkit-transform-origin:0 0;
    -moz-transform-origin:0 0;
    -o-transform-origin:0 0;
    -ms-transform-origin:0 0;
    -webkit-transform:rotate(270deg);
    -moz-transform:rotate(270deg);
    -ms-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    transform:rotate(270deg);
    -moz-border-radius-bottomright:10px;
    border-bottom-right-radius:10px;
    -moz-border-radius-bottomleft:10px;
    border-bottom-left-radius:10px;
}
.rum_sst_right {
    right:-1px;
    cursor: pointer;
    -webkit-transform-origin:100% 100%;
    -moz-transform-origin:100% 100%;
    -o-transform-origin:100% 100%;
    -ms-transform-origin:100% 100%;
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    transform:rotate(-90deg);
    -moz-border-radius-topright:10px;
    border-top-right-radius:10px;
    -moz-border-radius-topleft:10px;
    border-top-left-radius:10px;
}
.rum_sst_right.less-ie-9 {
    right:-120px;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.rum_sst_left.less-ie-9 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
/* END Styles Simple Side Tab */
/* SCRIPT : Inline Script */

/* SCRIPT : Inline Script */
.menu-item a{font-family:Poppins;font-weight:normal;font-style:normal;}
/* SCRIPT : Inline Script */
.custom-form-control {
				width: 100%;
				padding: 10px;
				line-height: 24px;
				-webkit-appearance: textfield;
			}
/* SCRIPT : Inline Script */
.pos-relative header.fixed {
                position: fixed !important;
                width: 100% !important;
                z-index: 99999 !important;
                animation: slideDown 500ms;
                top: 0;
            }

            @keyframes slideDown {
                from {
                    top: -100%;
                }
                to {
                    top: 0;
                }
            }
/* SCRIPT : Inline Script */
.ss-network{
    margin-top:20px;
}

.ss-network h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.ss-network-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.ss-network-buttons a{
    background:#0d8ce9;
    color:#fff !important;
    text-decoration:none;
    padding:12px 20px;
    font-weight:600;
    border-radius:3px;
    display:inline-block;
    transition:0.3s;
}

.ss-network-buttons a:hover{
    opacity:0.9;
}

@media(max-width:768px){
    .ss-network-buttons{
        flex-direction:column;
    }

    .ss-network-buttons a{
        width:100%;
        text-align:center;
        box-sizing:border-box;
    }
}
/* SCRIPT : Inline Script */
.fo-cat {
            color: #c2c2c2;
            font-size: 12px;
            font-family: sans-serif;
            text-decoration: none;
        }

        .fo-cat:hover {
            color: rgb(152, 152, 247);
        }
	.container{
		width:100%;
	}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/classic-header-c8a9ac254d.css */
@media all {
/* header  */
.lp-customize-header-outer.lp-color-header-style.lp-header-style-classic .lp-search-bar.lp-search-bar-header .active-result {
    font-size: 14px;
	border:unset;
    border-radius: 5px;
    overflow: hidden;
}
.lp-customize-header-outer.lp-color-header-style.lp-header-style-classic .lp-search-bar.lp-search-bar-header  .chosen-drop {
    padding: 7px;
    border-radius: 7px;
    margin-top: 8px;
}
.header-inner-page-wrap .lp-header-style-classic .lp-join-now span {
    margin: 0px 5px;
    margin-top: 5px;
    height: 22px;
}
.header-inner-page-wrap .lp-header-style-classic .lp-join-now a.md-trigger {
    line-height: 31px;
}
.contentlogin-flex {
    display: flex;
}

.lp-header-style-classic .lp-nav-menu-after.lp-menu-outer::after {
    display: none !important;
}

.lp-header-style-classic .header-list-icon-st6 {
    font-size: 16px;
    transition: 0.3s;
    padding: 9px 21px !important;
}

.lp-header-style-classic .lp-menu.menu.lp-menu-outer.lp-nav-menu-after li a {
    font-weight: 600;
    font-size: 14px;
}
/* new classic setting css  */

.lp-header-style-classic .lp-menu.menu.lp-menu-outer.lp-nav-menu-after li {
    padding-right: 28px !important;
}

.lp-header-style-classic .lp-menu.menu.lp-menu-outer.lp-nav-menu-after {
    margin-right: 32px;
}

.lp-header-style-classic header {
    z-index: 99999 !important;
}

.lp-joinus-icon-outer {
    padding-left: 7px;
}

.lp-header-style-classic .lp-join-now span {
    margin: 0px 5px;
    margin-top: 8px;
}

.lp-header-style-classic .lp-join-now span i {
    color: #fff;
}
.lp-header-style-classic .lp-join-now {
  	position: relative;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    opacity: 1;
    padding: 1px 12px;
    line-height: 34px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
    margin-top: 4px;
}

.lp-header-style-classic .lp-join-now:hover {
    border: 2px solid #2458ff;
}

.lp-header-style-classic .form-group.lp-suggested-search .input-group-addon.lp-border {
    border: unset;
    box-shadow: 1px 1px 50px 1px #6c6c6c0d;
    padding: 0px 0 0 10px;
    margin: 0px;
    text-align: left;
    letter-spacing: 0px;
    color: #4F5685;
    opacity: 1;
    font-weight: 600 !important;
    font-size: 13px;
    font-family: 'Open Sans',"Open Sans Fallback";
}

.lp-header-style-classic .form-group.lp-location-search .input-group-addon.lp-border.lp-where {
    border: unset;
    box-shadow: 1px 1px 50px 1px #6c6c6c0d;
    padding: 1px 0 0 10px;
    margin: 0px;
    text-align: left;
    letter-spacing: 0px;
    color: #4F5685;
    opacity: 1;
    font-weight: 600 !important;
    font-size: 13px;
    font-family: 'Open Sans',"Open Sans Fallback";
}

.lp-header-style-classic .form-group.lp-location-search .ui-widget.border-dropdown i {
    font-size: 10px;
    left: 62px;
}

.header-inner-page-wrap .lp-header-style-classic a.header-list-icon-st6 {
    border: 2px solid #FFFFFF !important;
}

.lp-header-style-classic .lp-header-search-button .lp-search-bar-right .icons8-search.lp-search-icon:hover {
    background: transparent !important;
}

.lp-header-style-classic .lp-header-search-button .lp-search-bar-right:hover i,
.lp-header-style-classic .lp-header-search-button .lp-search-bar-right:hover .lp-search-btn {
    color: #000;
}

.header-inner-page-wrap .lp-header-style-classic .lp-menu-bar {
    padding: 12px 0;
}

.lp-header-style-classic .form-group.lp-location-search .ui-widget.border-dropdown input {
    border-radius: 4px !important;
    font-family: 'Open Sans',"Open Sans Fallback";
}

.lp-header-style-classic .form-group.lp-location-search {
    width: 34%;
    border-radius: 5px !important;
    margin-left: 4px;
    background: #fff;
}

.lp-header-style-classic .lp-search-header-style {
    width: 580px;
}

.lp-search-bar-header .lp-header-search-button .lp-search-bar-right .icons8-search.lp-search-icon:hover {
    background-color: transparent;
    color: #fff !important;
}

.lp-search-bar-header .lp-header-search-button .lp-search-bar-right i.icons8-search.lp-search-icon {
    line-height: 30px;
    border: unset;
    border-radius: 0;
    text-align: center;
    top: 8px;
    bottom: 0;
    left: 8px;
    color: #2458ff;
    font-weight: 900;
    transform: rotate(272deg);
}

.lp-search-bar-header .lp-header-search-button .lp-search-bar-right .lp-search-btn {
    background-color: #ffffff;
    border-radius: 7px;
    border: unset;
    box-shadow: 1px 1px 50px 1px #6c6c6c0d;
    padding: 9px 24px;
    text-align: left;
    letter-spacing: 0px;
    color: #4F5685;
    opacity: 1;
    font-weight: 500;
    font-size: 13px;
    font-family: 'Open Sans',"Open Sans Fallback";
    margin: -1px -4px 0 0;
}

.lp-header-style-classic .form-group.lp-suggested-search {
    background: #fff;
    border-radius: 5px;
    width: 56%;
}

.lp-header-style-classic .lp-join-now a::after {
    content: '';
    position: absolute;
    left: -44px;
    right: 0;
    bottom: 0;
    top: 0;
    width: calc(100% + 52px);
    height: 100%;
}
.lp-header-style-classic .lp-header-full-width .lp-join-user-info li:hover .lp-user-menu {
    top: calc(100% + 6px);
    right: 0;
    background: #fff !important;
    border-radius: 7px;
}
.lp-header-style-classic .lp-header-full-width .lp-join-user-info li .lp-user-menu a {
    font-weight: 600;
    font-family: "Open Sans","Open Sans Fallback";
    font-size: 14px;
}

.lp-header-style-classic .lp-join-now a.md-trigger {
    position: relative;
}

.logged-in .lp-header-style-classic .lp-join-now li {
    display: flex;
    align-items: center;
    background: transparent !important;
    line-height: 32px;
}

.logged-in .lp-header-style-classic .lp-join-now li span {
    height: 22px;
    width: 22px;
    margin-top: 0px;
}

.open-clasic-page-container .outer_all_page_overflow.hide-filters {
    z-index: 99999999 !important;
}

@media(min-width:1270px) and (max-width:1415px) {
        .header-inner-page-wrap .lp-header-style-classic header .col-md-6.col-xs-6.lp-menu-container {
            max-width: 38%;
    }
}

@media (min-width: 980px) and (max-width: 1380px) {
    .lp-search-bar-header .lp-header-search-button .lp-search-bar-right {
        right: -10px !Important;
    }
}
.header-inner-page-wrap .lp-header-style-classic .lp-join-now:hover {
    background: #fff0;
    border: 2px solid #ffffff;
    transition: 0.3s;
}
.lp-joinus-icon.user-login .lp-join-now.after-login.lp-join-user-info {
    border-color: transparent !important;
}
.lp-joinus-icon.user-login .lp-join-now.after-login.lp-join-user-info a {
    font-weight: 600;
    font-size: 14px;
}
.lp-joinus-icon.user-login .fa-chevron-down {
    position: absolute;
    right: 18px;
    top: 17px;
    color: #fff;
	transition:0.2s;
    font-size: 12px;
}
.lp-search-bar-header .lp-header-search-button .lp-search-bar-right:hover i {
    color: #fff !important;
}
.open-clasic-page-container .sidemap-container .leaflet-control-zoom.leaflet-bar.leaflet-control {
    border: unset;
    border-radius: 0;
}
/* .lp-header-style-classic .lp-menu ul li.menu-item-has-children::after {
    transition: 0.2s;
}
.lp-header-style-classic .lp-menu ul li.menu-item-has-children:hover::after,
.lp-joinus-icon.user-login:hover i {
    transform: rotate(180deg);
} */
.lp-header-style-classic .lp-logo {
    max-width: 200px;
}
}
/* SCRIPT : https://kothrud.com/wp-content/cache/wpc-hostfix/classic-banner-search-cats-958987ec73.css */
@media all {
.lp-search-bar.classic-search {
    background: #FFFFFF;
    border-radius: 5px;
    opacity: 1;
    padding: 10px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.lp-search-bar.classic-search #input-dropdown li {
    border: unset;
}

.lp-search-bar.classic-search #input-dropdown li:hover {
    border-radius: 7px;
}

.lp-search-bar.classic-search .cross-search-q {
    right: 28px;
    top: 14px;
}

.lp-search-bar.classic-search #input-dropdown {
    padding: 7px;
    border-radius: 7px;
    margin-top: 12px;
}

.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input {
    background: #F6F6F9 0% 0% no-repeat padding-box;
    border-radius: 5px;
    opacity: 1;
    height: 43px;
    border: unset !important;
}

.lp-search-bar.classic-search form #cities::placeholder,
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-suggested-search .lp-search-input.form-control.ui-autocomplete-input::placeholder {
    font-family: 'Open Sans',"Open Sans Fallback";
    text-align: left;
    font-size: 14px;
    letter-spacing: 0px;
    color: #4F5685;
    opacity: 0.4;
}

.lp-search-bar.classic-search form #cities {
    border: unset !important;
    background: #F6F6F9 0% 0% no-repeat padding-box;
    border-radius: 5px;
    height: 43px;
    opacity: 1;
}

.lp-search-bar.classic-search .form-group .lp-search-bar-right {
    transition: 0.3s;
}

.lp-search-bar.classic-search .lp-location-search .ui-widget>i {
    font-size: 11px;
}

.lp-search-bar.classic-search .lp-search-btn {
    height: 43px;
    min-width: 124px;
    padding: 0;
    font-family: 'Open Sans',"Open Sans Fallback";
    font-weight: 200;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 16px;
}

.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search {
    width: 36%;
    margin: 0;
}

.lp-search-bar.classic-search .lp-suggested-search .input-group-addon.lp-border,
.form-group.lp-location-search .lp-where {
    height: 42px !important;
    line-height: 40px !important;
    text-align: left;
    font: normal normal normal 16px/22px Open Sans;
    letter-spacing: 0px;
    color: #4F5685;
    opacity: 1;
    font-size: 16px;
    font-family: 'Open Sans',"Open Sans Fallback";
}

.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-suggested-search {
    height: auto;
    margin: 0;
    position: relative;
    width: 44%;
    float: left;
}

.lp-search-bar.classic-search form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lp_auto_loc_container .lp-dyn-city {
    font-family: Open Sans,"Open Sans Fallback";
    font-size: 49px !important;
    font-weight: 700;
    line-height: 66px;
}

.down-search-q {
    position: absolute;
    right: 8px;
    top: 13px;
    cursor: pointer;
    z-index: 999;
    color: #4F5685;
    font-size: 20px;
}

.banner-view-classic .lp-home-categoires.lp-inside-search-view4 {
    -webkit-transform: translateY(-342%);
    -moz-transform: translateY(-342%);
    -ms-transform: translateY(-342%);
    -o-transform: translateY(-342%);
    transform: translateY(-342%);
}

.banner-view-classic .lp-home-categoires.lp-inside-search-view4 i {
    font-size: 22px;
    margin: 2px 0 5px 0 !important;
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search #searchlocation_chosen {
    background: #f6f6f9;
    border-radius: 5px;
    opacity: 1;
	height: 42px;
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search i {
    margin-top: -2px;
    margin-left: 4px;
}
search-bar.classic-search .form-group.lp-location-search span {
    font-size: 14px;
    color: #b4b7cb;
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search .chosen-drop {
    padding: 7px;
    border-radius: 7px;
    margin-top: 8px;
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search .chosen-drop .chosen-results .active-result {
    font-size: 14px;
    border-radius: 5px;
    overflow: hidden;
}

.img-curtasy-classic p {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-family: 'Open Sans',"Open Sans Fallback";
    font-weight: 300;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: capitalize;
}

.img-curtasy-classic p a {
    font-size: 18px;
    font-family: 'Open Sans',"Open Sans Fallback";
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: capitalize;
}

.img-curtasy-classic {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-table;
    text-align: center;
    transform: translatey(-60px);
}

.lp-home-banner-contianer-inner.banner-view-top-classic h1 {
    margin-bottom: 12px;
}

.lp-home-banner-contianer-inner.banner-view-top-classic {
    top: 74%;
    -moz-transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transform: translateY(-150%);
}

body .banner-view-classic .lp-home-categoires.lp-inside-search-view4 a {
    background: #c3c3c34f !important;
    box-shadow: unset !important;
    border-radius: unset !important;
    min-height: 73px !important;
    height: auto;
}

.lp-home-categoires.lp-inside-search-view4 li {
    min-width: 130px;
    margin-right: 2px;
    width: auto !important;
}

.lp-home-categoires.lp-inside-search-view4:not(.lp-inside-search-view2) li a span {
    font-size: 14px;
    font-family: 'Open Sans',"Open Sans Fallback";
    line-height: 24px;
}

.lp-home-categoires.lp-inside-search-view4 li:last-child {
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}

.lp-home-categoires.lp-inside-search-view4 li:first-child {
    border-radius: 50px 0 0 50px;
    overflow: hidden;
}

.lp-home-categoires.lp-inside-search-view4 li a span img {
    height: auto !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    width: 24px !important;
}

.lp-search-bar.classic-search .form-group .lp-search-bar-right i {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.lp-search-bar.classic-search .lp-search-btn {
    padding-left: 15px;
}
.lp-search-bar.classic-search #input-dropdown li:hover img {
    visibility: hidden;
    opacity: 0;
    width: 0;
    transition: 0.3s;
}
.lp-search-bar.classic-search #input-dropdown li:hover {
    border-radius: 7px;
    transition: 0.3s;
}
.lp-search-bar.classic-search #input-dropdown li span.lp-s-cat {
    background: transparent !IMPORTANT;
}
.img-curtasy-classic p a i {
    margin: 0 0 0 8px;
    transition: 0.3s;
    transform: translate(0px , 2px);
}
.img-curtasy-classic p a:hover i {
    transform: translate(8px , 2px);
}
.lp_auto_loc_container .lp-dyn-city {
    font-family: 'Poppins',"Poppins Fallback"!important;
    font-weight: 600 !important;
}
.lp-home-banner-contianer-inner.banner-view-top-classic h1 {
    font-family: 'Poppins',"Poppins Fallback"!important;
    font-weight: 600 !important;
    margin-bottom: 1px;
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search i.fa-circle-o-notch.fa-spin:before {
    content: "\f1ce" !important;
    padding: 2px 1px;
    background: #f6f6f9;
    border-radius: 50%;
}
.lp-home-banner-contianer .lp-search-bar.classic-search .form-group.lp-location-search i.fa-circle-o-notch.fa-spin {
    margin-top: -6px;
}
.lp-search-bar.classic-search .active-result {
    transition: 0.2s;
	border-radius:7px !important;
}
}
