.draggy {
  background: #FAFAFA;
}
.draggy-cell {
  width: 100%;
  height: auto;
  margin-right: 0px;
  border-radius: 5px;
  text-align: center;
  vertical-align: middle;
}
.draggy-cell:before {
  display: block;
  text-align: center;
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.draggy-enabled {
  position: relative;
}
.draggy-enabled:focus { outline: none; }
.draggy-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.draggy-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.draggy-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.draggy-enabled.is-draggable .draggy-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.draggy-enabled.is-draggable .draggy-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.draggy-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
    z-index: 2;
}
.draggy-button:hover {
  background: white;
  cursor: pointer;
}
.draggy-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}
.draggy-button:active {
  opacity: 0.6;
}
.draggy-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}
.draggy-button-icon {
  fill: currentColor;
}
.draggy-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
.draggy-prev-next-button.previous { left: 10px; }
.draggy-prev-next-button.next { right: 10px; }
.draggy-rtl .draggy-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.draggy-rtl .draggy-prev-next-button.next {
  right: auto;
  left: 10px;
}
.draggy-prev-next-button .draggy-button-icon {
  position: relative;
  left: 0%;
  margin-top: 20%;
  width: 60%;
  height: 60%;
    z-index: -1;
}
.draggy-page-dots {
  position: absolute;
  width: 100%;
  bottom: 15px;
  list-style: none;
  text-align: center;
  line-height: 1;
  margin-left: 0px !important;
  margin-right: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.draggy-rtl .draggy-page-dots { direction: rtl; }
.draggy-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.draggy-page-dots .dot.is-selected {
  opacity: 1;
}