@keyframes spinAround {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }
.ks-gallery {
  position: relative; }

.ks-gallery-spacer {
  position: relative;
  padding-bottom: 65%; }

.ks-gallery-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row; }

.ks-gallery-previous, .ks-gallery-next {
  width: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  user-select: none; }

.ks-gallery-previous::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-left: solid 2px #4a4a4a;
  border-bottom: solid 2px #4a4a4a;
  transform: rotate(45deg); }

.ks-gallery-next::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 2px #4a4a4a;
  border-right: solid 2px #4a4a4a;
  transform: rotate(45deg); }

.ks-gallery-img {
  flex: 1 1 auto;
  user-select: none;
  outline: none;
  object-fit: contain; }
