
.modern-logic-content-carousel {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-items: stretch;
}

.modern-logic-content-carousel-carousel {
  position: relative;
  width: 100%;
}

.modern-logic-content-carousel-item-wrapper {
  display: flex;

}
.modern-logic-content-carousel-item-wrapper-left {
  flex-direction: row;

}
.modern-logic-content-carousel-item-wrapper-right {

  flex-direction: row-reverse;
}
.modern-logic-content-carousel-child-content {
  flex: 1;
  align-self: center;
  margin-top: 20px;
  margin-left: 36px;
  margin-right: 25px;
}
.modern-logic-content-carousel-inner-content-wrapper {
  overflow: scroll;
  max-height: 400px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.modern-logic-content-carousel-child-image {
  aspect-ratio: 542 / 393;
  flex: 1;
  margin-right: 36px;
  margin-left: 25px;
}
.modern-logic-content-carousel-child-image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 1s;
}

.modern-logic-content-carousel-child-image > img:hover {
  transform: scale3d(1.1,1.1,1.1);
}

.modern-logic-content-carousel-child-image-right {
  border-bottom-right-radius: 89px;
  overflow: hidden;
}
.modern-logic-content-carousel-child-image-left {
  border-bottom-left-radius: 89px;
  overflow: hidden;
}

/* Buttons */
.modern-logic-content-carousel-image-button-bar {
  margin-top: 16px;
  margin-bottom: 24px;
}

/* Buttons */
.modern-logic-content-carousel-button-bar {
  top: 10px;
  display: flex;
  flex-direction: row;
}

/* Buttons */
.modern-logic-content-carousel-button-bar {
  top: 10px;
  display: flex;
  flex-direction: row;
}

.modern-logic-content-carousel-button-outer {
  border-radius: 5px;
  background-color: var(--button_gradient_top_color);
  width: 30px;
  height: 30px;
  margin-right: 5px;
  border: none;
}

.modern-logic-content-carousel-button-outer:active {
  opacity: 0.9;
}

.swiper-slide:last-child .modern-logic-content-carousel-button-outer-right {
  opacity: 0.5;
}

.swiper-slide:first-child .modern-logic-content-carousel-button-outer-left {
  opacity: 0.5;
}

.modern-logic-content-carousel-wrapper-nav-button {
  width: 30px;
  padding-top: 7px;
  height: 30px;
  transition: transform .6s;
  padding-right: 5px;
}

.modern-logic-content-carousel-wrapper-nav-button-right:hover {
  transform: translateX(5px);
}

.swiper-slide:last-child .modern-logic-content-carousel-wrapper-nav-button-right:hover {
  transform: none;
}
.modern-logic-content-carousel-wrapper-nav-button-left:hover {
  transform: translateX(-5px);
}

.swiper-slide:first-child .modern-logic-content-carousel-wrapper-nav-button-left:hover {
  transform: none;
}

@media only screen and (max-width: 600px) {
  .modern-logic-content-carousel-item-wrapper {
    flex-direction: column;
  }  
  .modern-logic-content-carousel-child-content {
    margin: 0;
  }
  .modern-logic-content-carousel-child-image {
    margin: 0 0 10px 0;
  }
}

