.glide__arrow {
  background-color: #666666;
  color: white;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
}

.glide__arrow:hover {
  background-color: #222222;
}

.glide__slide {
  margin: auto;
}

.glide__bullets {
  background-color: #666666;
  padding: 5px;
  border-radius: 15px;
}

.glide__arrow {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.glide__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #0b2038;
  border-right: 2px solid #0b2038;
  transition: border-color 0.2s ease;
}

.glide__arrow--right::before {
  transform: rotate(45deg);
  margin-left: -3px;
}

.glide__arrow--left::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.glide__arrow:hover::before {
  border-color: white;
}

#accomm-bullets {
  background-color: #e1e1e1;
  bottom: -2em;
}