.glider-contain {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.glider {
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  transform: translateZ(0);
}
.glider-track {
  transform: translateZ(0);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 1;
}
.glider.draggable {
  user-select: none;
}
.glider.draggable .glider-slide img {
  user-select: none;
  pointer-events: none;
}
.glider.drag {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.glider-slide {
  user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
}
.glider-slide img {
  max-width: 100%;
}
.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
}
.glider-prev,.glider-next {
  user-select: none;
  position: absolute;
  outline: none;
  background: none;
  padding: 0;
  z-index: 2;
  font-size: 40px;
  text-decoration: none;
  left: -10px;
  border: 0;
  top: 30%;
  cursor: pointer;
  color: #00b1cc;
  opacity: .5;
  line-height: 1;
  transition: opacity .5s cubic-bezier(.17,.67,.83,.67),
              color .5s cubic-bezier(.17,.67,.83,.67);
}
.glider-prev:hover,
.glider-next:hover,
.glider-prev:focus,
.glider-next:focus {
  color: #00b1cc;
  opacity: 1;
}
.glider-next {
  right: -10px;
  left: auto;
}
.glider-next.disabled,
.glider-prev.disabled {
  opacity: .25;
  color: #666;
  cursor: default;
}
.glider-slide {
  /* min-width: 150px; */
}
.glider-hide {
  opacity: 0;
}
.glider-dots {
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
.glider-dot:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  display: block;
  background: #ff3b3f;
  opacity: 0;
  border-radius: 20px ;
  -webkit-border-radius: 20px ;
  -moz-border-radius: 20px ;
  -ms-border-radius: 20px ;
  -o-border-radius: 20px ;
}
.glider-dot {
  background: transparent;
  border: 1px solid gray;
  padding: 0;
  user-select: none;
  outline: none;
  display: block;
  cursor: pointer;
  border-radius: 999px;
  background: transparent;
  width: 22px;
  height: 22px;
  margin: 7px;
  position: relative;
}
.glider-dot:hover {
  background: rgba(0, 177, 204, 0.3);
}

.glider-dot.active:before {
  opacity: 1;
}

.glider .glider-slide p {
  width: 0;
  height: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  position: absolute;
  bottom: -100px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  text-align: justify;
  line-height: 18px;
  font-size: 0;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
}

.glider .glider-slide:hover p {
  font-size: 1em;
  width: calc(100% - 40px);
  height: 100%;
  bottom: 0;
}

.glider .glider-slide {
  position: relative;
}

.glider-contain {
  overflow: visible;
}

.glider-contain .glider {
  overflow-x: hidden;
}