/*!
 * Copyright (c) 2018 Fork Development Solutins s.r.l.
 */
.slido-gallery {
  width: 100%;
  max-width: 768px;
  position: relative;
  display: block;
}

.slido-gallery .sg-slides-wrapper {
  overflow: hidden !important;
}

.slido-gallery svg {
  display: inline-block;
  width: 35px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  overflow: hidden;
  vertical-align: middle;
}

.slido-gallery img {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.slido-gallery img.slazy {
  z-index: 0;
}

.slido-gallery img.slazy:before {
  content: " ";
  display: block;
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(loading.gif) 50% no-repeat #ffffff;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .slido-gallery::before {
    content: " ";
    background: white;
    position: absolute;
    left: 0;
    right: calc(100% - ((100% - 650px) /2));
    bottom: 0;
    top: 0;
    z-index: 1;
  }
  .slido-gallery::after {
    content: " ";
    background: white;
    position: absolute;
    left: calc(100% - ((100% - 650px) /2));
    right: 0;
    bottom: 0;
    top: 0;
  }
}

.sg-slides {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  overflow: visible;
  flex: 1 1 auto;
}

.sg-slides.shifting {
  transition: left .2s ease-out;
}

.sg-slides.isTouch {
  scroll-padding: 1%;
}

.sg-slides::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sg-slide {
  border: 0;
  padding: 0;
  min-width: 100%;
  width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  text-align: center;
  position: relative;
  display: flex;
  flex-basis: 100%;
}

.sg-slide img, .sg-slide picture {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.sg-navigation {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}

.sg-navigation .sg-previous, .sg-navigation .sg-next {
  display: none;
  width: 40px;
  height: 50px;
  position: absolute;
  text-align: center;
  top: 50%;
  right: 0;
  z-index: 3;
  transform: translateY(-100%);
  overflow: hidden;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.707 35.414'%3e%3cpath d='M0 1.414l16.292 16.293L0 34l1.561 1.414 17.146-17V17L1.561 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
}

.sg-navigation .sg-previous.end, .sg-navigation .sg-next.end {
  opacity: 0.3;
}

.sg-navigation .sg-previous {
  left: 0;
  transform: translateY(-100%) rotate(180deg);
  text-align: left;
}

.sg-navigation .sg-open-modal {
  position: absolute;
  bottom: 0;
}

.sg-indicators {
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  position: absolute;
  bottom: 35px;
  z-index: 1001;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .sg-indicators {
    position: relative;
    transform: none;
    left: 0;
    bottom: 0;
    overflow: hidden;
    margin-top: 10px;
    padding-bottom: 5px;
  }
}

.sg-indicator {
  border: 2px solid #cccccc;
  position: relative;
  font-size: 0;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  text-align: center;
  background: #cccccc;
  margin: 0 7px;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.sg-indicator:hover {
  cursor: pointer;
}

.sg-indicator.active {
  border: 2px solid #6495ed;
  background: #6495ed;
}

.sg-indicator:first-child {
  margin-left: 0;
}

.sg-indicator.show-more {
  display: flex;
  background: #ebebeb;
  -webkit-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.16);
  margin-right: 3px;
}

.sg-indicator.show-more .thumbs-count {
  color: #666666;
  display: table;
  margin: auto;
  font-size: 14px;
}

.sg-indicator.show-more .thumbs-count:before {
  content: '+';
}

@media (max-width: 767px) {
  .sg-indicator.show-more {
    display: none;
  }
}

@media (min-width: 768px) {
  .sg-indicator {
    width: 20%;
    height: unset;
    border: 1px solid transparent;
    background: transparent;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    border-radius: 3px;
  }
  .sg-indicator.active {
    border-radius: 3px;
    border: 1px solid #cccccc;
    background: transparent;
  }
  .sg-indicator:nth-child(n+5) {
    display: none;
  }
  .sg-indicator:hover {
    border-radius: 3px;
    border: 1px solid #cccccc;
    background: transparent;
  }
}

.sg-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  padding: 5% 0 0;
  overflow: hidden;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.sg-modal-content {
  position: relative;
  background-color: #fefefe;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  margin: 0 auto auto;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: sg-animate;
  animation-duration: 0.4s;
}

@media (max-height: 900px) {
  .sg-modal-content {
    overflow-y: scroll;
  }
}

@media (min-width: 1200px) {
  .sg-modal-content {
    width: 1170px;
  }
}

.sg-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.sg-modal-close:hover, .sg-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.sg-modal-body {
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
}

@keyframes sg-animate {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.sg-modal-gallery {
  max-width: 100%;
  flex-direction: column;
  overflow: auto;
}

.sg-modal-gallery .sg-open-modal {
  display: none;
}

.sg-modal-gallery .sg-slides-wrapper {
  max-width: 60%;
  float: right;
  margin-right: 5%;
  position: relative;
}

.sg-modal-gallery .sg-slides {
  position: relative;
}

.sg-modal-gallery .sg-navigation {
  display: block;
}

.sg-modal-gallery .sg-navigation .sg-previous, .sg-modal-gallery .sg-navigation .sg-next {
  display: inline-block;
}

.sg-modal-gallery .sg-navigation .sg-previous {
  left: 30%;
}

.sg-modal-gallery .sg-indicators {
  width: 30%;
  flex-wrap: wrap;
  padding: 0 10px;
  max-width: 220px;
}

.sg-modal-gallery .sg-indicator {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 92px;
  margin: 0 5px 0 0;
}

.sg-modal-gallery .sg-indicator:nth-child(n+5) {
  display: flex;
}

.sg-modal-gallery .sg-indicator.show-more {
  display: none;
}

.sg-modal-gallery .sg-indicator picture {
  margin: 0 auto;
}

/*# sourceMappingURL=slido-gallery.css.map */