.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1; }
  
.glide__arrow:focus {
  outline: none; }

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

.glide__arrow--left {
  left: -40px; }
  
.glide__arrow--right {
  right: -40px; }
  
.glide__arrow--disabled {
  opacity: 0.25; }
  
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%); }

.glide__bullet {
  background-color: var(--color__white);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--color__white);
  transition: all 200ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.25em; }

.glide__bullet:focus {
  outline: none; }

.glide__bullet:hover,
.glide__bullet:focus {  }
  
.glide__bullet--active {
  background-color: transparent; }

.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab; }
  
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing; }

/* Added defaults */
.glide img {
  width: 100%; }
  
.glide__arrows {
  width: 100%; } 
  
.glide__arrow {
  height: 40px;
  width: 21px;
  background-size: contain;
  background-repeat: no-repeat; }

/* Arrows */
.glide__arrow {
  overflow: hidden;
  text-indent: -999em; }
  
.glide__arrow--left {
  background-image: url('../../../images/icons/arrow__prev.svg'); }
  
.glide__arrow--right {
  background-image: url('../../../images/icons/arrow__next.svg');}


.quotes .glide__arrow--left {
    background-image: url('../../../images/icons/arrow__prev__blue.svg'); }
    
.quotes  .glide__arrow--right {
    background-image: url('../../../images/icons/arrow__next__blue.svg');}
    
    
/* Bullets */
/* .glide__bullets {
  position: relative;
  z-index: 2;
  margin-top: var(--spacing__x);
  bottom: auto;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%); } */


@media all and (max-width: 900px) {
  
  .glide__arrows {
    display: none; }
    
} 
  


/* Module colors */

.m__quotes .glide__bullet {
      background-color: var(--color__blue);
      border-color: var(--color__blue); }

.m__quotes .glide__bullet--active {
      background-color: transparent; }
  