@import url("https://fonts.googleapis.com/css?family=Montserrat:500,700|Rubik");

/*
Style::Dashboard
*/
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}
.dropzone {
  min-height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 3em 0;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
  fill: white;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: 15%;
  right: 15%;
  border: 3px solid rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: white;
  display: block;
  position: relative;
  height: 100%;
  width: 0;
  transition: width 300ms ease-in-out;
  border-radius: 17px;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: rgb(177, 6, 6);
  padding: 0.5em 1em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgb(177, 6, 6);
}
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cropper-container img {
  backface-visibility: hidden;
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}
.cropper-wrap-box, .cropper-canvas, .cropper-drag-box, .cropper-crop-box, .cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cropper-wrap-box, .cropper-canvas {
  overflow: hidden;
}
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.3333333333%;
  left: 0;
  top: 33.3333333333%;
  width: 100%;
}
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.3333333333%;
  top: 0;
  width: 33.3333333333%;
}
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.cropper-center::before, .cropper-center::after {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}
.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}
.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}
.cropper-face, .cropper-line, .cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url("../images/bg.png");
}
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
  cursor: not-allowed;
}
html {
  overflow-x: hidden;
}
/*
body {
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    // font-family: 'Rubik', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #999999;
    line-height: 25px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
}
*/
h1,
h2,
h3,
h4 {
  font-size: 36px;
  color: #333333;
  font-weight: 700;
}
a {
  transition: all 0.2s linear;
}
a:hover {
  text-decoration: none;
}
a a:focus {
  outline: none;
}
p {
  font-weight: 400;
  margin: 0px;
  font-size: 14px;
}
ul,
ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}
.hero-heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  line-height: 70px;
  letter-spacing: 0.1rem;
}
.hero-sub-heading {
  font-size: 20px;
  font-weight: 400;
  color: #e6e6e6;
  line-height: 45px;
}
.section-titile-bg {
  display: inline;
  font-size: 115px;
  font-weight: 700;
  height: 100%;
  left: -173px;
  opacity: 0.1;
  position: absolute;
  top: -14px;
  width: 100%;
  text-align: center;
}
.section-title-header p {
  text: center;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 36px;
}
.heading {
  margin-bottom: 40px;
}
.section-title {
  font-size: 30px;
  color: #333;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.section-title:before {
  position: absolute;
  content: "";
  height: 3px;
  width: 70px;
  margin-left: -90px;
  bottom: 16px;
  background-color: #03A9F4;
}
.section-title:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 70px;
  margin-left: 20px;
  bottom: 16px;
  background-color: #03A9F4;
}
.sub-title {
  font-size: 20px;
  color: #707070;
  font-weight: 500;
}
.section-subcontent {
  font-size: 15px;
  text: center;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 36px;
}
.section-sub {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 52px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}
.section-sub:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 45px;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background-color: #03A9F4;
}
.subtitle {
  font-size: 15px;
  margin-top: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.inner-title {
  font-size: 24px;
  font-weight: 700;
  text-tranform: capitalize;
}
.page-tagline {
  font-size: 24px;
  font-weight: 400;
  color: #ddd;
}
.page-title {
  font-size: 62px;
  font-weight: 700;
  color: #fff;
}
.btn-border {
  color: #484848;
  background-color: transparent;
  border: 2px solid #484848;
  border-radius: 30px;
  padding: 7px 20px;
}
.btn-border:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}
.btn-rm {
  padding: 8px 0px;
  text-transform: capitalize;
}
.btn-rm i {
  vertical-align: middle;
}
button:focus {
  outline: none !important;
}
.icon-close,
.icon-check {
  color: #03A9F4;
}
.bg-light {
  background: #F8F8F8;
}
.bg-white {
  background: #fff;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.section-padding {
  padding: 60px 0;
}
#color-style-switcher .bottom a.settings {
  color: #03A9F4;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sticky.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.fixed-top {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  min-width: 190px;
  border: none;
  background-color: #fff;
  white-space: nowrap;
  border-radius: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
}
.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  text-align: left;
  top: 100%;
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
  background: #ffffff;
}
.dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 8px 15px;
  border-radius: 0px;
  font-size: 14px;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  display: inline-block;
  float: left;
  letter-spacing: 0.5px;
  clear: both;
  position: relative;
  outline: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
  background: #03A9F4;
  color: #fff !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background: transparent;
}
.fadeInUpMenu {
  animation-name: fadeInUpMenu;
}
@media (max-width: 991px) {
  .header-top-right {
    float: none;
    text-align: right;
    width: 100%;
  }
  .header-top-right .seperator {
    display: none;
  }
  .header-top-right .header-top-button {
    color: #fff;
    padding: 7px 0;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 35px;
  }
  .dropdown-menu {
    position: relative;
    background: transparent;
  }
  .dropdown:hover .dropdown-menu {
    position: relative;
    background: transparent;
  }
  .dropdown .dropdown-menu .dropdown-item {
    border-radius: 0px;
  }
  .dropdown-menu:before {
    display: none;
  }
  .top-nav-collapse .navbar-nav .nav-link {
    color: #444 !important;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 7px 0;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .navbar-expand-lg .navbar-nav .nav-link i {
    display: none;
  }
  .navbar.scrolling-navbar {
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.2);
  }
  .page-content > .col-md-12:last-child {
    margin-top: 20px;
  }
}
.product-filter {
  margin-bottom: 10px;
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  line-height: 20px;
  border-radius: 4px;
  background-color: #fff;
}
.product-filter .nav-tabs {
  float: right;
  margin-right: 10px;
  border: none;
}
.product-filter .nav-tabs .nav-link {
  font-size: 22px;
  border: none;
  padding: 2px 10px;
  border-radius: 30px;
  color: #999;
  background: transparent;
}
.product-filter .nav-tabs .nav-item.show .nav-link,
.product-filter .nav-tabs .nav-link.active {
  border: none;
  color: #fff;
  color: #03A9F4;
}
.product-filter .short-name {
  display: inline-block;
  color: #999;
  line-height: 22px;
}
.product-filter .short-name span {
  float: left;
  margin-right: 5px;
}
.product-filter .short-name .name-ordering {
  float: left;
}
.product-filter .Show-item {
  float: right;
  line-height: 26px;
}
.product-filter .Show-item a {
  color: #44bd32;
}
.product-filter .Show-item span {
  color: #999;
  display: inline-block;
  margin-right: 5px;
}
.product-filter .Show-item .woocommerce-ordering {
  float: right;
}
.product-filter .Show-item .woocommerce-ordering label {
  margin: 0;
}
.product-filter .button,
.product-filter select {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.page-sidebar .widget {
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
  margin-bottom: 30px;
  background-color: #fff;
}
.page-sidebar .widget .widget-title {
  padding: 17px 25px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
}
.page-sidebar .widget.categories .widget-title span {
  cursor: pointer;
  display: none;
  color: #44bd32;
}
.page-sidebar .categories-list {
  padding: 20px;
}
.page-sidebar .categories-list li {
  padding: 7px 0;
  border-bottom: 1px solid #ececec;
}
.page-sidebar .categories-list li a {
  text-decoration: none;
  color: #888;
  width: 100%;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.page-sidebar .categories-list li a:hover {
  color: #03A9F4;
}
.page-sidebar .categories-list li a i {
  margin-right: 5px;
}
.page-sidebar .categories-list li .category-counter {
  font-size: 12px;
}
.page-sidebar .add-box {
  padding: 20px;
}
.widget_search {
  margin-bottom: 30px;
}
.ads-details-wrapper {
  margin-bottom: 50px;
}
.ads-details-wrapper .product-img {
  position: relative;
}
.ads-details-wrapper .price {
  position: absolute;
  top: 30px;
  left: 5px;
  background: #03A9F4;
  padding: 10px 25px;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.ads-details-wrapper .owl-dots,
#my_ads_slider .owl-dots {
  text-align: center;
  margin-top: 10px;
}
.ads-details-wrapper .owl-dots .owl-dot,
#my_ads_slider .owl-dots .owl-dot {
  display: inline-block;
}
.ads-details-wrapper .owl-dots span,
#my_ads_slider .owl-dots span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px 4px;
  filter: alpha(opacity=50);
  opacity: 1;
  border-radius: 30px;
  background: #ddd;
  border: 2px solid #fff;
  box-shadow: 0px 0px 3px rgba(66, 68, 67, 0.55);
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.ads-details-wrapper .owl-dots span:hover,
#my_ads_slider .owl-dots span:hover {
  background: #03A9F4;
}
.ads-details-wrapper .owl-dots .active span,
#my_ads_slider .owl-dots .active span {
  background: #03A9F4 !important;
}
.details-sidebar {
  margin-bottom: 60px;
  background-color: #fff;
}
.details-sidebar .agent-inner {
  background-color: #fff;
  color: #999;
  border-radius: 30px;
  padding: 20px 32px;
  transition: 0.25s;
}
.details-sidebar .agent-inner .agent-title {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  width: 100%;
}
.details-sidebar .agent-inner .agent-title .agent-photo {
  float: left;
  display: block;
}
.details-sidebar .agent-inner .agent-title .agent-photo img {
  border-radius: 50%;
  border: 2px solid #03A9F4;
  max-width: 72px;
}
.details-sidebar .agent-inner .agent-title .agent-details {
  margin-left: 92px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.details-sidebar .agent-inner .agent-title .agent-details h3 {
  font-size: 16px;
}
.details-sidebar .agent-inner .agent-title .agent-details h3 a {
  color: #333;
  margin: 0px 0 6px 0;
}
.details-sidebar .agent-inner .agent-title .agent-details span {
  color: #888;
}
.details-sidebar .agent-inner .agent-title .agent-details span i {
  margin-right: 5px;
}
.details-sidebar .agent-inner .form-control {
  margin-bottom: 20px;
}
.details-sidebar .widget {
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
  margin-bottom: 40px;
  background-color: #fff;
}
.details-sidebar .widget .widget-title {
  padding: 17px 25px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
}
.details-sidebar .posts-list {
  padding: 20px;
}
.details-sidebar .posts-list li {
  padding: 12px 0;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
}
.details-sidebar .posts-list .widget-thumb {
  float: left;
}
.details-sidebar .posts-list .widget-thumb a {
  display: block;
}
.details-sidebar .posts-list .widget-thumb a img {
  opacity: 1;
  max-width: 90px;
  margin: 0px 15px 0 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.details-sidebar .posts-list .widget-thumb:hover img {
  opacity: 0.7;
}
.details-sidebar .posts-list .widget-content {
  margin-left: 55px;
}
.details-sidebar .posts-list .widget-content h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
.details-sidebar .posts-list .widget-content h4.price {
  font-weight: bold;
  margin: 5px 0;
}
.details-sidebar .posts-list .widget-content a {
  color: #333;
}
.details-sidebar .posts-list .widget-content a:hover {
  color: #03A9F4;
}
.details-sidebar .posts-list .widget-content span {
  color: #999;
  font-size: 13px;
  display: block;
  margin: 2px 0;
}
.details-sidebar .posts-list .widget-content span i {
  padding-right: 5px;
}
.details-sidebar .posts-list .meta-tag {
  display: inline-block;
}
.details-sidebar .posts-list .meta-tag span {
  float: left;
  margin-right: 5px;
  color: #999;
}
.details-sidebar .posts-list .meta-tag span a {
  color: #999;
  font-size: 12px;
}
.details-sidebar .posts-list .meta-tag span a:hover {
  color: #03A9F4;
}
.details-sidebar .posts-list .price {
  font-size: 16px;
  color: #03A9F4;
}
.sidebar-box {
  width: 100%;
  display: inline-block;
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
  margin-bottom: 30px;
}
.sidebar-box .user {
  text-align: center;
  width: 100%;
  padding: 15px 20px;
  position: relative;
  margin-bottom: 5px;
  background: #18462F;
}
.sidebar-box .user figure {
  margin: 0;
  position: relative;
}
.sidebar-box .user figure img {
  border-radius: 50%;
  border: 2px solid #fff;
}
.sidebar-box .user .usercontent h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 8px;
}
.sidebar-box .user .usercontent h4 {
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  margin: 0;
}
.sidebar-box .navdashboard ul {
  width: 100%;
}
.sidebar-box .navdashboard ul li {
  margin: 0;
  width: 100%;
  float: left;
  position: relative;
  line-height: 48px;
  border-bottom: 1px solid #f1f1f1;
}
.sidebar-box .navdashboard ul li a {
  color: #333;
  width: 100%;
  float: left;
  line-height: inherit;
}
.sidebar-box .navdashboard ul li a span {
  text-align: left;
}
.sidebar-box .navdashboard ul li a i {
  width: 58px;
  display: inline-block;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
}
.sidebar-box .navdashboard ul li a:focus,
.sidebar-box .navdashboard ul li a:hover,
.sidebar-box .navdashboard ul li a.active {
  background: #18462F;
  color: #fff;
}
.sidebar-box .navdashboard ul li a:focus i,
.sidebar-box .navdashboard ul li a:hover i,
.sidebar-box .navdashboard ul li a.active i {
  color: #fff;
}
/*==============================================
Dashboard Global Elements     
==============================================*/
.dashboard-sections {
  padding: 20px 0;
}
.dashboard-sections .dashboardbox {
  width: 100%;
  float: left;
  overflow: hidden;
  background: #fff;
  position: relative;
  border-radius: 30px;
  padding: 10px;
  transition: all 0.4s ease-in-out;
}
.dashboard-sections .icon {
  float: left;
}
.dashboard-sections .icon i {
  font-size: 22px;
  text-align: center;
  line-height: 42px;
  width: 42px;
  border-radius: 50%;
  color: #fff;
  height: 42px;
  display: inline-block;
  background: #18462F;
}
.dashboard-sections .contentbox {
  float: left;
  margin-left: 10px;
}
.dashboard-sections .contentbox h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.dashboard-sections .contentbox h2 a {
  color: #333;
  bottom: 10px;
  padding: 0 14px 0 0;
}
.dashboard-sections .contentbox h2 a:hover {
  color: #03A9F4;
}
.dashboard-sections .contentbox h3 {
  font-size: 15px;
  color: #999;
  font-weight: 400;
  margin: 0;
}
.dashboardbox:hover {
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
}
.inner-box {
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
}
.dashboard-box {
  width: 100%;
  display: inline-block;
  padding: 10px;
  border-bottom: 1px solid #eaedef;
  background-color: #fff;
}
.dashboard-box .dashbord-title {
  margin: 0;
  float: left;
  color: #363b4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 0 8px 10px;
}
.dashboard-wrapper {
  padding: 10px 15px;
}
.dashboard-wrapper .select select {
  border: 0;
  width: 100%;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
  outline: none;
  line-height: 30px;
  padding: 15px 15px 15px 0;
}
#editor {
  position: relative;
}
#editor .panel-default .panel-heading {
  padding: 0;
  border-radius: 4px;
  background: transparent;
  border: none;
}
#editor .note-editor.note-frame {
  border: 1px solid #ddd;
}
#editor .popover {
  display: none;
}
.note-Top {
  display: none;
}
.tg-fileuploadlabel {
  width: 100%;
  padding: 30px;
  color: #363b4d;
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 10px;
  cursor: pointer;
  border-radius: 30px;
  border: 3px dashed #eaedef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.tg-fileuploadlabel span {
  display: block;
  margin-bottom: 15px;
}
.tg-fileuploadlabel span:first-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.tg-fileuploadlabel span:first-child(2) {
  padding: 15px 0;
}
.tg-fileuploadlabel span:first-child(4) {
  color: #363b4d;
  font-size: 13px;
  line-height: 16px;
  margin: 30px 0 0;
}
.tg-fileuploadlabel input[type=file].fileinput {
  display: none;
}
.tg-fileuploadlabel .btn {
  color: #fff;
  padding: 10px 50px;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 30px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
}
#tg-photogallery {
  display: none;
}
.checkbox {
  font-size: 12px;
}
.checkbox a {
  font-size: 12px;
  color: #999;
}
.checkbox a:hover {
  color: #03A9F4;
}
.custom-checkbox .custom-control-input ~ .custom-control-label::before,
.custom-checkbox .custom-control-input ~ .custom-control-label::after {
  top: 0.1rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #18462F;
  border-color: #18462F;
}
label {
  display: inline;
}
.tg-checkbox {
  margin-bottom: 10px;
}
.tg-checkbox a {
  font-size: 13px;
  color: #333;
}
/*==============================================
Dashboard My Ads          
==============================================*/
.nav-table {
  width: 100%;
  margin: 0px;
}
.nav-table ul li {
  display: inline-block;
  margin-bottom: 10px;
}
.nav-table ul li a, .nav-table ul li span {
  color: #18462F;
  padding: 7px 14px;
  border: 1px solid #eaedef;
  border-radius: 30px;
}
.nav-table ul li a:hover,
.nav-table ul li.active a,
.nav-table ul li.active span {
  background: #18462F;
  color: #fff !important;
}
.nav-table ul li.disabled a,
.nav-table ul li.disabled a:hover {
  background: #eaedef;
  color: #18462F !important;
}
.nav-table ul li.next_arrow {
  padding: 7px 0px;
}
#new_exchange_content .nav-table ul li a {
  font-size: 0.7rem;
}
#new_exchange_content .page-content .dashboard-box, #preview_exchange_content .page-content .dashboard-box {
  position: sticky;
  top: 0;
  z-index: 1040;
}
#new_exchange_content .page-content .dashboard-box-footer, #preview_exchange_content .page-content .dashboard-box-footer {
  position: sticky;
  bottom: 0;
  z-index: 1040;
  padding: 10px;
  border-top: 1px solid #eaedef;
  background-color: #fff;
}
.dashboardtable tbody tr {
  transition: all 0.4s ease-in-out;
}
.dashboardtable td,
.dashboardtable th {
  border-top: none;
}
.dashboardtable tr {
  border-top: 1px solid #dee2e6;
}
.dashboardtable thead tr th {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  padding: 15px 10px;
  background: transparent;
  vertical-align: middle;
  border-bottom: none;
}
.dashboardtable thead tr th .checkbox,
.dashboardtable tbody tr td .checkbox {
  width: 20px;
  height: 20px;
}
.dashboardtable tbody tr td,
.dashboardtable tbody tr td h3 {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  margin: 0;
}
.dashboardtable tbody tr td h3 + span,
.dashboardtable .detail-row td span {
  color: #666;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.dashboardtable tbody tr td .with {
  color: #c0c0c0;
  display: block;
  font-size: 14px;
  font-weight: 100;
  line-height: 16px;
}
.dashboardtable .detail-row {
  border-top: none;
}
.photo {
  width: 110px;
  display: block;
}
.adcategories {
  min-width: 110px;
  display: block;
}
.adstatus {
  width: 90px;
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 400;
  border-radius: 30px;
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
}
.adstatuspending {
  background: #FFC312;
}
.adstatuspublish {
  background: #229C46;
}
.adstatussold {
  background: #1d4bf3;
}
.adstatusinreview {
  background: #F79F1F;
}
.adstatusreject {
  color: #363b4d;
  background: #f7f7f7;
}
.adstatusexpire {
  background: #363b4d;
}
.adstatusaccept {
  background: #229C46;
}
.adstatusdecline {
  color: #f7f7f7;
  background: #e74c3c;
}
.btns-actions {
  min-width: 150px;
  width: 100%;
  float: left;
  margin: -5px 0;
}
.btns-actions .btn-action {
  margin: 3px;
  width: 40px;
  height: 40px;
  color: #363b4d;
  line-height: 40px;
  border-radius: 30px;
  background: #f7f7f7;
  text-align: center;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.btns-actions .btn-action i {
  display: block;
  line-height: 40px;
}
.dashboardtable tbody tr:hover .btn-delete {
  background: #ea0606;
  color: #fff;
}
.dashboardtable tbody tr:hover .btn-edit {
  background: #363b4d;
  color: #fff;
}
.dashboardtable tbody tr:hover .btn-renew {
  background: green;
  color: #fff;
}
.dashboardtable tbody tr:hover .btn-view {
  background: #07a9e8;
  color: #fff;
}
.dashboardtable tbody tr:hover {
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
}
.form-dashboard {
  padding: 0px 5px 15px;
}
.form-dashboard .privacy-box .dashboardholder {
  border: 1px solid #ddd;
  padding: 15px;
}
.form-dashboard .privacy-box .dashboardholder ul {
  margin-bottom: 20px;
}
.form-dashboard .privacy-box .dashboardholder ul li {
  margin-bottom: 15px;
}
.form-dashboard .privacy-box .dashboardholder ul li .checkbox span {
  font-size: 14px;
  margin-left: 8px;
}
.dashboardboxtitle h2 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}
.offers-messages {
  border: 1px solid #ddd;
  padding: 0px 0 15px;
}
.offers-messages .offers-box {
  padding: 15px 0;
  display: inline-block;
  border-right: 1px solid #ddd;
}
.offers-user-online .offerer {
  width: 100%;
  float: left;
  cursor: pointer;
  position: relative;
  margin: 0px;
  padding: 10px;
}
.offers-user-online .offerer figure {
  float: left;
  margin: 0px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 0px 2px 12px 0px rgba(198, 198, 198, 0.3);
  border: 2px solid #fff;
  position: relative;
}
.offers-user-online .offerer figure img {
  height: auto;
  max-width: 100%;
}
.offers-user-online .offerer .bolticon {
  width: 8px;
  height: 8px;
  background: #03A9F4;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  left: 15px;
}
.offers-user-online .offerer .user-name {
  padding: 10px 0;
}
.offers-user-online .offerer .user-name h3 {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  overflow: hidden;
}
.offers-user-online .offerer .user-name h4 {
  font-size: 14px;
}
.offers-user-online .offerer .user-name h4 a {
  color: #03A9F4;
}
blockquote {
  border-left: none;
  padding: 15px;
  line-height: 36px;
}
.reply-link {
  color: #03A9F4;
  font-size: 14px;
  margin-left: 5px;
  transition: all 0.4s ease;
}
.reply-link:hover {
  color: #03A9F4;
}
.right-sidebar {
  padding-left: 20px;
}
.widget-search #search-form {
  position: relative;
}
.search-btn {
  position: absolute;
  top: 0;
  right: 20px;
  height: 42px;
  background-color: transparent;
  border: none;
}
.search-btn i {
  color: #999;
}
.form-group {
  margin-bottom: 30px;
}
.form-control {
  display: block;
  width: 100%;
  box-shadow: none;
  color: #333;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-weight: 400;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.form-control::-moz-placeholder {
  color: #babdc0;
}
.form-control::placeholder {
  color: #babdc0;
}
textarea {
  border-radius: 4px !important;
}
.form-control:focus {
  border-color: #037082;
  outline: 0;
  box-shadow: none;
}
.custom-control {
  display: inline-block;
}
.close-account {
  padding: 15px;
  text-align: center;
}
.close-account p {
  margin-bottom: 10px;
}
.close-account .radio-inline {
  margin: 0px 5px 15px;
}
#about .about-wrapper {
  padding: 40px 0;
}
#about .intro-title {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 30px;
}
#about .intro-desc {
  margin-bottom: 30px;
}
.special-product {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.special-product:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.special-product .product-text {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  /* background: #555; */
  /* -webkit-transition: all .3s ease-in-out; */
  /* transition: all .3s ease-in-out; */
  /* -webkit-transform: translate3d(0, 100%, 0); */
  /* transform: translate3d(0, 100%, 0); */
  padding: 30px;
  z-index: 2;
}
.special-product .product-text h3 {
  font-size: 30px;
  color: #fff;
}
.special-product .product-text .offer-details {
  margin-top: 30px;
  color: #fff;
}
.special-product .product-text .offer-details h4 {
  font-size: 18px;
}
.special-product .product-text .offer-details p {
  font-size: 16px;
}
.special-product .product-text .price {
  font-weight: 700;
  color: #fff;
  font-size: 26px;
  color: #03cd67;
  margin-bottom: 15px;
}
.special-product .product-text .icon-footer {
  position: absolute;
  right: 30px;
  bottom: 20px;
}
.special-product .product-text .icon-footer a {
  font-size: 30px;
  color: #fff;
}
.special-product .product-text .icon-footer a:hover {
  color: #03A9F4;
}
.special-product .product-text .text {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.img-box {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 90;
  margin: 10px 0;
  border-radius: 30px;
}
.img-box .img-box-content {
  position: absolute;
  z-index: 101;
  bottom: 0;
  padding: 15px;
  width: 100%;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
}
.img-box .img-box-content h4 {
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  margin: 0;
}
.img-box .img-box-content span {
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
}
.img-box .img-box-background {
  background-size: cover;
  transition: all 0.55s;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
}
.img-box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #222;
  opacity: 0.3;
  z-index: 99;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
}
.img-box:hover:before {
  background-color: #03A9F4;
  opacity: 0.7;
}
.img-box:hover .img-box-background {
  transform: scale(1.06);
}
.single-cta {
  padding: 30px;
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
}
.single-cta .cta-icon {
  float: left;
  padding-bottom: 15px;
}
.single-cta .cta-icon i {
  font-size: 40px;
  color: #03A9F4;
}
.single-cta .content {
  margin-left: 60px;
}
.single-cta h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.mb-30 {
  margin-bottom: 30px;
}
.head-faq {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 24px;
}
.panel-default {
  border-radius: 0px;
  border: none;
}
.panel-default .panel-heading {
  padding: 0px 20px;
  outline: none;
  border-radius: 4px;
  background: #03A9F4;
  border: 1px solid transparent;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
}
.panel-default .panel-heading .panel-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 14px;
  color: inherit;
}
.panel-default .panel-heading a {
  font-size: 14px;
  font-weight: 400;
  padding: 15px 35px 15px 30px;
  display: inline-block;
  width: 100%;
  color: #fff;
  position: relative;
}
.panel-default .panel-heading a:after {
  font-family: "LineIcons";
  content: "\e9d6";
  position: absolute;
  left: 0px;
  color: #fff;
  top: 50%;
  line-height: 1;
  padding: 0px 5px;
  margin-top: -7px;
}
.panel-default .panel-heading .collapsed:after {
  content: "\e9bc";
}
.panel-default .panel-collapse .panel-body {
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
}
.counter-section {
  background: url(../img/background/counter-back1.jpg);
  overflow: hidden;
  position: relative;
}
.counter-section:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.counter-section .counter {
  padding: 30px 0;
}
.counter-section .counter .icon {
  margin-bottom: 30px;
  margin-right: 30px;
  float: left;
}
.counter-section .counter .icon i {
  font-size: 48px;
  color: #03A9F4;
}
.counter-section .counter .counterUp {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.counter-section .counter p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.error {
  color: #cf1e1e;
}
.error-content {
  width: 100%;
  padding: 50px 0px;
}
.error-content .error-message {
  padding: 0px 0px 45px;
  text-align: center;
}
.error-content .error-message h2 {
  color: #03A9F4;
  font-size: 200px;
  position: relative;
  margin: 0px;
  padding: 0px 10px 8px;
}
.error-content .error-message h3 {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.error-content .form-error-search {
  width: 100%;
  float: left;
  margin: 0px 0px 30px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(175, 175, 175, 0.23);
  position: relative;
}
.error-content .form-error-search .form-control {
  width: 100%;
  float: left;
  height: 60px;
  font-size: 16px;
  line-height: 30px;
  border-width: 0px;
}
.error-content .form-error-search .btn-search {
  top: 0px;
  right: 0px;
  z-index: 2;
  width: 190px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: absolute;
  padding: 0px;
  border-radius: 0px 30px 30px 0px;
}
.error-content .description {
  text-align: center;
  color: #999;
}
.error-content .description a {
  color: #55acee;
}
.error-content .description a:hover {
  color: #03A9F4;
}
/* Custom CSS */
.md-propic {
  width: 100px;
}
.exchange-request span {
  color: red;
  font-weight: bold;
  padding: 8px 0;
  font-size: 18px;
}
.ad-status-list li {
  margin-top: 5px;
  text-align: center;
}
.find-exchange {
  margin: 10px;
}
.owl-nav .disabled {
  opacity: 0;
}
.owl-nav > .owl-prev i,
.owl-nav > .owl-next i {
  font-size: 34px !important;
  opacity: 0.4;
  transition: opacity 0.4s linear;
  -moz-transition: opacity 0.4s linear;
  -webkit-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
}
.owl-nav > .owl-prev:hover i,
.owl-nav > .owl-next:hover i {
  opacity: 1;
}
.no-match-error {
  font-size: 20px;
  padding: 10px 0px;
}
/* Select 2 Template */
.select2-results__option {
  padding: 0 10px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #babdc0;
  font-weight: normal;
}
.select2-container--default .select2-results__option--highlighted {
  background: #44bd32 !important;
  color: #fff;
  box-shadow: 0px 0px 5px rgba(104, 103, 103, 0.53);
}
.select2-container .select2-selection--single {
  height: 2.7rem;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.6rem;
  right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.6rem;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 12px;
}
.select2-result-repository {
  padding-top: 4px;
  padding-bottom: 3px;
}
.select2-result-repository__title {
  color: black;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 15px;
}
.select2-results__option--highlighted .select2-result-repository__title {
  color: white;
}
.select2-result-repository__description {
  font-size: 13px;
  color: #7e5b07;
  margin-top: 4px;
}
.select2-results__option--highlighted .select2-result-repository__description {
  color: #ddd4be;
}
.select2-result-repository__items {
  display: inline-block;
  text-transform: capitalize;
  margin-right: 10px;
  font-size: 12px;
}
.select2-result-repository__items::before {
  font-family: "LineIcons" !important;
  content: "\ea46";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-size: 10px;
  color: #b79503;
  font-weight: 900;
}
.select2-container--default .select2-selection--multiple {
  border-radius: 5px;
  padding: 2px 10px 5px 10px;
}
.select2-container .select2-selection--multiple {
  min-height: 2.7rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #18462F !important;
  color: #fff;
  border: 1px solid #18462F !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999 !important;
  background-color: transparent;
  border: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  color: #fff !important;
  background: transparent;
  transition: 1s;
}
#nav-bar-width {
  display: block;
}
.pending-offer {
  background-color: #e67e22 !important;
}
#voice_search:hover {
  cursor: pointer;
}
.list-group-bullet > li {
  list-style-type: disc;
}
#image-crop-model #image-container {
  max-height: 500px;
}
.custom-breadcrumb li:after {
  content: "/";
  padding: 0 4px;
}
.custom-breadcrumb li:last-child:after {
  content: "";
}
.lbl-question {
  vertical-align: middle;
  cursor: pointer;
}
.lbl-question i {
  font-weight: bold;
  color: #18462F;
}