/* categories colors */
.glide__bullets {
  display: none;
  width: 280px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
.glide__bullets button {
  margin-left: 4px;
  margin-right: 4px;
  padding: 0;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #7A8A9B;
  border: none;
}
.glide__bullets button.glide__bullet--active {
  background-color: var(--primary-color, #2598ff);
}
@media only screen and (max-width:650px) {
  .glide__bullets {
    display: flex;
  }
}

.glide-control {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.glide-control button {
  background-color: transparent;
  border: none;
  padding: 0;
}
.glide-control button:hover svg, .glide-control button:focus svg {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary-color-hovered, #1782E1);
  opacity: 1;
}
.glide-control button svg {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-width: 28px;
  color: var(--primary-color, #2598ff);
  opacity: 1;
  margin: 0;
}

.glide__bullets {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -42px;
}
.glide__bullets button.bullet-responsive {
  display: none;
}
@media only screen and (max-width:650px) {
  .glide__bullets button.bullet-responsive {
    display: inline-block;
  }
}
