.odmc-carousel {
  position: relative;
  display: none;
  width: 100%;
  margin-top: 30px;
  --odmc-arrow-color: #FF8300;
}

.odmc-carousel__viewport {
  overflow: hidden;
  width: 100%;
  transition: height 240ms ease;
  touch-action: pan-y;
}

.odmc-carousel__track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.odmc-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.odmc-carousel__slide > .et_pb_column {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.odmc-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--odmc-arrow-color);
  border-radius: 999px;
  background: #fff;
  color: var(--odmc-arrow-color);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.odmc-arrow:hover,
.odmc-arrow:focus-visible {
  background: var(--odmc-arrow-color);
  color: #fff;
  outline: none;
}

.odmc-arrow[disabled] {
  opacity: 0.4;
  cursor: default;
}

.odmc-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.odmc-arrow--prev {
  left: 0;
}

.odmc-arrow--next {
  right: 0;
}

@media (max-width: 980px) {
  .odmc-carousel {
    display: block;
    padding-inline: 54px;
  }

  .odmc-source-row {
    display: none !important;
  }

  .odmc-carousel .et_pb_module:last-child {
    margin-bottom: 0 !important;
  }

  .odmc-carousel img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .odmc-carousel {
    padding-inline: 16px;
  }

  .odmc-arrow {
    width: 36px;
    height: 36px;
  }

  .odmc-arrow svg {
    width: 18px;
    height: 18px;
  }
}


body.et-fb .odmc-carousel,
html.et-fb .odmc-carousel,
body.et-fb-root-ancestor .odmc-carousel,
html.et-fb-root-ancestor .odmc-carousel {
  display: none !important;
}

body.et-fb .odmc-source-row,
html.et-fb .odmc-source-row,
body.et-fb-root-ancestor .odmc-source-row,
html.et-fb-root-ancestor .odmc-source-row {
  display: block !important;
}
