/* BASE */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11
| Visit us: @ p11.com
|--------------------------------------------------------------------------
/* GLOBAL*/
/* FONTS*/
/* COLORS */
/* BREAKPOINTS */
/* Extra small mobile */
/* Mobile */
/* Tablet */
/* Middle Sized Devices */
/* Small Laptop */
/* Large Laptop / Desktop */
/* Large Desktop */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/* BLOCKS */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  CAROUSEL GALLERY
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.carousel-gallery {
  width: 100%;
  position: relative;
}
.carousel-gallery .carousel-gallery-content {
  max-width: calc(100% - 12rem);
  position: relative;
}
@media (max-width: 1024px) {
  .carousel-gallery .carousel-gallery-content {
    max-width: calc(100% - 6rem);
  }
}
.carousel-gallery .carousel-gallery-content::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 100;
  width: 150px;
  height: 100px;
  background: #ffffff;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .carousel-gallery .carousel-gallery-content::after {
    width: 21vw;
    height: 17vw;
  }
}
@media (max-width: 640px) {
  .carousel-gallery .carousel-gallery-content::after {
    display: none;
  }
}
.carousel-gallery .carousel-gallery-slideshow {
  overflow: hidden;
}
.carousel-gallery .carousel-gallery-slideshow {
  width: 100%;
  overflow: hidden;
  margin: 0 !important;
  padding: 0;
  list-style-type: none;
}
.carousel-gallery .carousel-gallery-slideshow .slick-slide {
  height: auto !important;
}
.carousel-gallery .carousel-gallery-slideshow .n-slide {
  text-align: center;
  position: relative !important;
  text-align: center;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.carousel-gallery .carousel-gallery-slideshow .n-slide .overlay {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .carousel-gallery .carousel-gallery-slideshow .n-slide {
    height: 50vw !important;
  }
}
.carousel-gallery .carousel-gallery-slideshow .slide-caption {
  position: relative;
  padding: 0.5rem 0;
  opacity: 1;
}
.carousel-gallery .carousel-gallery-slideshow .slide-caption .slide-caption-description {
  text-transform: none;
}
.carousel-gallery .carousel-gallery-slideshow .slide-caption-content {
  color: #d6c794;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: left;
  text-transform: uppercase;
}
.carousel-gallery .carousel-gallery-slideshow .slick-center .slide-caption-overlay {
  opacity: 1;
  transform: translateY(0);
}
.carousel-gallery .carousel-gallery-slideshow .slick-center .n-slide .overlay {
  opacity: 0;
}
.carousel-gallery .carousel-gallery-slideshow.offset .slick-slide {
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.carousel-gallery .carousel-gallery-slideshow.offset .slick-center {
  z-index: 2;
}
.carousel-gallery .carousel-gallery-slideshow.offset .n-slide {
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.carousel-gallery .carousel-gallery-slideshow.css-ticker-initialized {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.carousel-gallery .carousel-gallery-slideshow.css-ticker-initialized .ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.carousel-gallery .carousel-gallery-slideshow.css-ticker-initialized .ticker-track .n-slide-holder {
  flex-shrink: 0;
  display: inline-block;
}
.carousel-gallery .slickprev,
.carousel-gallery .slicknext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 300;
  cursor: pointer;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 70px;
  height: 70px;
  color: #d6c794;
  overflow: hidden;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.carousel-gallery .slickprev i,
.carousel-gallery .slicknext i {
  font-size: 3rem;
  -webkit-transition: margin 0.25s ease;
  -moz-transition: margin 0.25s ease;
  -ms-transition: margin 0.25s ease;
  -o-transition: margin 0.25s ease;
  transition: margin 0.25s ease;
}
@media (max-width: 640px) {
  .carousel-gallery .slickprev i,
  .carousel-gallery .slicknext i {
    font-size: 2rem;
  }
}
.carousel-gallery .slickprev:hover,
.carousel-gallery .slicknext:hover {
  color: rgb(206.9358108108, 189.3513513514, 129.5641891892);
}
.carousel-gallery .slickprev {
  left: -4rem;
}
.carousel-gallery .slickprev:hover i {
  margin-left: -0.5rem;
}
.carousel-gallery .slicknext {
  right: -4rem;
}
.carousel-gallery .slicknext:hover i {
  margin-left: 0.5rem;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: blue;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: red;
}

/*******************************************************
 IOS
********************************************************/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  .grid-gallery ul.gallery-list li .overlay {
    display: none !important;
  }
  .grid-gallery ul.gallery-list li .caption {
    padding: 0.5em;
    font-size: 1.25em;
    opacity: 1 !important;
    background-color: rgba(var(--secondary-color-rgb), 0.85);
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
  }
  .grid-gallery ul.gallery-list li .bgimg {
    transform: scale(1) !important;
  }
  .grid-gallery ul.gallery-list li a.is-image {
    pointer-events: none !important;
  }
}

/*# sourceMappingURL=content-gallery-carousel.css.map */
