  ﻿.vm-container-wrapper {
  margin: 40px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.vm-indicators-container {
  -moz-column-gap: 8px;
  column-gap: 8px;
  display: flex;
}
ol, ul {
  list-style: none;
}
.vm-indicator-active, .vm-indicator:hover {
  /*--carousel-indicator-bgcolor: #1c1c1c !important;*/
  --carousel-indicator-bgcolor: #e60000 !important;
}
.vm-indicator {
  --carousel-indicator-bgcolor: #919191;
  /*font-size: 0;*/
  display: flex;
  margin-right: 15px;
}
.vm-indicator-active .vm-indicator-icon::after {
  /*top: 2px;*/
  transform: translateY(-15px);
}
.vm-indicator-icon::after {
  content: "";
  width: 100%;
  position: relative;
  height: 2px;
  background-color: var(--carousel-indicator-bgcolor);
}
.vm-indicator-icon {
  align-items: center;
  display: flex;
  height: 36px;
  position: relative;
  /*width: 36px;*/
  min-width: 90px;
}
.vm-action-icon {
  width: 36px;
  height: 36px;
  display: block;
}
.vm-action-hidden {
  visibility: hidden;
}
.vm-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.vm-indicator-label {
  font: 300 0.75em / 1.5 Frutiger, Arial, Helvetica, sans-serif;
  color: #1c1c1c;
  margin-top: .9375em;
  display: flex;
  justify-content: center;
}
@media (max-width : 767px) {
  .vm-indicators-container {
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .vm-indicator-icon {
    min-width: 60px;
  }
}