dscarousel {
  display: block;
  width: 100%;
  padding-top: calc(376.43 / 1573 * 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#C7C7C7), to(transparent));
  background-image: linear-gradient(to right, transparent, #C7C7C7, transparent);
  -webkit-animation: skeleton-background 20s ease-in infinite;
          animation: skeleton-background 20s ease-in infinite;
}

@-webkit-keyframes skeleton-background {
  from {
    background-position: 0px;
  }
  to {
    background-position: 1576px;
  }
}

@keyframes skeleton-background {
  from {
    background-position: 0px;
  }
  to {
    background-position: 1576px;
  }
}

.dscarousel {
  position: relative;
}

@media all and (max-width: 600px) {
  .dscarousel {
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 6px #00000020;
            box-shadow: 0 3px 6px #00000020;
    background-color: #FFF;
  }
}

.dscarousel-slide:hover > .dscarousel-slide-description {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dscarousel-slide-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 50px;
  padding: 15px;
  background-color: #FFF7;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform .227s ease-in-out;
  transition: -webkit-transform .227s ease-in-out;
  transition: transform .227s ease-in-out;
  transition: transform .227s ease-in-out, -webkit-transform .227s ease-in-out;
}

@media all and (max-width: 600px) {
  .dscarousel-slide-description {
    position: initial;
    -webkit-transform: initial;
            transform: initial;
    background-color: initial;
  }
}

.dscarousel-slide-anchor-image {
  width: 100%;
}

.dscarousel .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  color: transparent;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: background-color .227s ease-in-out;
  transition: background-color .227s ease-in-out;
}

.dscarousel .slick-arrow:hover {
  background-color: #0002;
}

.dscarousel .slick-arrow::before {
  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;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-size: 2.5em;
  color: #000;
}

.dscarousel .slick-prev {
  left: 0;
}

.dscarousel .slick-prev::before {
  content: '\f104';
}

.dscarousel .slick-next {
  right: 0;
}

.dscarousel .slick-next::before {
  content: '\f105';
}
/*# sourceMappingURL=carousel.css.map */