@import "../../constants/index.scss";

.textMessage {
  @include textMessage;
  margin-bottom: 12px;
}

.textMessageText {
  @include textMessageInput;
}

.textMessageTextPlaceholder {
  opacity: 0.3;
}

.carouselHeaderDropdowns {
  display: flex;
  padding: 0 12px;
  > div {
    flex: 1.4;
    &:first-child {
      flex: 1;
      margin-right: 8px;
    }
  }
}

.centerAlign {
 text-align: center;
}

.carouselElements {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: $width * 2;
  overflow: hidden;
  // padding-left: 64px;
  &Error {
    border: 1px solid #ef8b93;
  }
}

.carouselElementsArrow {
  width: 46px !important;
  height: 46px !important;
  z-index: 3;
  left: auto !important;
  right: -5px !important;
  transition: 0.2s ease-out;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.1));
  svg > g {
    fill: #fff;
  }
  &:before {
    content: none !important;
  }
}

.carouselElementsArrowPrev {
  left: -5px !important;
  right: auto !important;
  transform: rotate(180deg) translateY(50%) !important;
}
