/*----------------------------------------------------------------------------------------
                        GALLERY STYLES
----------------------------------------------------------------------------------------*/
.gallery-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-item .wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-item .item-title>*:first-child {
  margin-top: 0;
}

.gallery-item .item-title>*:last-child {
  margin-bottom: 0;
}

.gallery-item .item-img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  /*    -webkit-backface-visibility: hidden;*/
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  /*adds*/
  -webkit-transform: scale(1.00);
  transform: scale(1.00);
  border-radius: 20px;
  border: 5px solid #485872b0;
}

.gallery-item .item-icon,
.gallery-item .item-title {
  padding-top: 10px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.gallery-item .item-icon:empty,
.gallery-item .item-title:empty {
  display: none;
}

.gallery-item .item-icon img+img,
.gallery-item .item-icon svg+svg,
.gallery-item .item-icon a+a {
  margin-left: 15px;
}

a.image-popup:not(.btn) {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.gallery-item.padding:not(.masonry-item),
.gallery-item.padding-x2:not(.masonry-item),
.gallery-item.padding-x3:not(.masonry-item),
.gallery-item.padding-x4:not(.masonry-item),
.gallery-item.padding.masonry-item .wrapper,
.gallery-item.padding-x2.masonry-item .wrapper,
.gallery-item.padding-x3.masonry-item .wrapper,
.gallery-item.padding-x4.masonry-item .wrapper {
  padding: 0 !important;
}

.gallery-item.padding .item-icon,
.gallery-item.padding .item-title {
  padding: 15px;
}

.gallery-item.padding-x2 .item-icon,
.gallery-item.padding-x2 .item-title {
  padding: 30px;
}

.gallery-item.padding-x3 .item-icon,
.gallery-item.padding-x3 .item-title {
  padding: 60px;
}

.gallery-item.padding-x4 .item-icon,
.gallery-item.padding-x4 .item-title {
  padding: 90px;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  /*  position: relative;*/
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/*
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
*/
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*----------------------------------------------------------------------------------------
  										OWL CAROUSEL STYLES
  ----------------------------------------------------------------------------------------*/
.owl-theme .owl-dots {
  margin: 0 0 40px 0;
  line-height: 0;
}

.owl-theme .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dot span {
  width: 40px;
  height: 1px;
  margin: 10px 0;
  background-color: transparent;
  border: 0px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
}

.owl-theme .owl-nav {
  margin: 40px 0 0 0;
  line-height: 0;
}

.owl-theme .owl-nav [class *=owl-] {
  display: inline-block;
  position: relative;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.owl-theme .owl-nav [class *=owl-]::before {
  content: "";
  display: block;
  position: relative;
  height: 14px;
  width: 14px;
  margin: 25px;
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
  border-color: inherit;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.owl-theme .owl-nav [class *=owl-]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  left: 0;
  right: 0;
  border-top-width: 2px;
  border-top-style: solid;
  border-color: inherit;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.owl-theme .owl-nav .owl-next::before {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.owl-theme .owl-nav .owl-next::after {
  right: 25px;
}

.owl-theme .owl-nav .owl-prev::before {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.owl-theme .owl-nav .owl-prev::after {
  left: 25px;
}

.owl-carousel.owl-drag .owl-item [contenteditable=true] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.full-height .carousel-single,
.full-height .owl-stage-outer {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.carousel-stretch .owl-stage,
.carousel-stretch .owl-stage .owl-item {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
  -ms-flex-align: stretch !important;
  -webkit-box-align: stretch !important;
  align-items: stretch !important;
}

.carousel-nav-none .owl-nav,
.carousel-dots-none .owl-dots {
  display: none;
}

.carousel-nav-center-bottom .owl-nav,
.carousel-nav-left-bottom .owl-nav,
.carousel-nav-right-bottom .owl-nav {
  position: absolute;
  z-index: 2;
  margin: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.carousel-nav-center-bottom .owl-nav {
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.carousel-nav-left-bottom .owl-nav {
  left: 30px;
}

.carousel-nav-right-bottom .owl-nav {
  right: 30px;
}

.carousel-nav-aside-center .owl-nav .owl-prev,
.carousel-nav-aside-center .owl-nav .owl-next,
.carousel-nav-aside-bottom .owl-nav .owl-prev,
.carousel-nav-aside-bottom .owl-nav .owl-next {
  position: absolute;
  z-index: 1;
  margin: 0;
}

.carousel-nav-aside-center .owl-nav,
.carousel-nav-aside-bottom .owl-nav {
  margin: 0;
}

.carousel-nav-aside-center .owl-nav .owl-prev {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel-nav-aside-center .owl-nav .owl-next {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel-nav-aside-bottom .owl-nav .owl-prev {
  left: 0;
  bottom: 1px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.carousel-nav-aside-bottom .owl-nav .owl-next {
  right: 0;
  bottom: 1px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.carousel-dots-center-bottom .owl-dots,
.carousel-dots-left-bottom .owl-dots,
.carousel-dots-right-bottom .owl-dots {
  position: absolute;
  z-index: 1;
  margin: 0;
  bottom: 10px;
}

.carousel-dots-left-bottom .owl-dots {
  left: 30px;
}

.carousel-dots-right-bottom .owl-dots {
  right: 30px;
}

.carousel-dots-center-bottom .owl-dots {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.carousel-dots-aside-bottom .owl-dots,
.carousel-dots-aside-top .owl-dots {
  position: absolute;
  z-index: 1;
  margin: 0;
}

.carousel-dots-aside-bottom .owl-dots {
  bottom: 1px;
  left: 0;
  width: 100%;
  display: table;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.carousel-dots-aside-top .owl-dots {
  top: 1px;
  left: 0;
  width: 100%;
  display: table;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel-dots-aside-bottom .owl-dot,
.carousel-dots-aside-top .owl-dot {
  display: table-cell;
}

.carousel-dots-aside-bottom .owl-dot span,
.carousel-dots-aside-top .owl-dot span {
  width: 100%;
}

/*----------------------------------------------------------------------------------------
  										CHART STYLES
  ----------------------------------------------------------------------------------------*/
p.chart-line {
  background-color: #444;
  color: #fff;
  padding: 3px 5px;
  margin-bottom: 0;
}

.circular-chart {
  stroke: #AF9F8C;
}

.circle-bg {
  fill: none;
  stroke: inherit;
  stroke-width: 1;
  opacity: 0.1;
}

.circle {
  fill: none;
  stroke: inherit;
  stroke-width: 1;
}

.circular-play .circle {
  -webkit-animation: circular-progress 1s ease-out forwards;
  animation: circular-progress 1s ease-out forwards;
}

@-webkit-keyframes circular-progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

@keyframes circular-progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.overall {
  position: relative;
  z-index: 10;
}
