.cr-ct-carousel {
  position: relative;
  width: 100%;
  padding: 0 25px;

  &--mobile {
    padding: 0 0 60px 0;
  }

  &__arrow {
    position: absolute;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    font-size: 20px;
    color: @theme-secondary-base-color;
    border: 1px solid @theme-secondary-base-color;

    &:hover {
      background-color: #f5f5f5;
    }

    &--mobile {
      background-color: transparent;
      top: calc(100% - 25px);
      bottom: 0;
    }

    &--left {
      left: 0;
      &.cr-ct-carousel__arrow--mobile {
        left: calc(50% - 60px);
      }
    }

    &--right {
      right: 0;
      &.cr-ct-carousel__arrow--mobile {
        right: calc(50% - 60px);
      }
    }

    &--disabled {
      background-color: #f5f5f5;
      border: 1px solid #e0e0e0;
      color: #ccc;
      cursor: not-allowed;
    }

    &--theme-1 {
      &.cr-ct-carousel__arrow--primary {
        background-color: @theme-1-color-99;
        color: @theme-1-base-color;
        border: 1px solid @theme-1-color-10;
      }
    }

    &--theme-2 {
      &.cr-ct-carousel__arrow--primary {
        background-color: @theme-2-color-99;
        color: @theme-2-base-color;
        border: 1px solid @theme-2-color-10;
      }
    }

    &--theme-3 {
      &.cr-ct-carousel__arrow--primary {
        background-color: @theme-3-color-99;
        color: @theme-3-base-color;
        border: 1px solid @theme-3-color-10;
      }
    }

    &--theme-4 {
      &.cr-ct-carousel__arrow--primary {
        background-color: @theme-4-color-99;
        color: @theme-4-base-color;
        border: 1px solid @theme-4-color-10;
      }
    }

    &--theme-5 {
      &.cr-ct-carousel__arrow--primary {
        background-color: @theme-5-color-99;
        color: @theme-5-base-color;
        border: 1px solid @theme-5-color-10;
      }
    }

    &--theme-6 {
      &.cr-ct-carousel__arrow--primary {
        background-color: @theme-6-color-99;
        color: @theme-6-base-color;
        border: 1px solid @theme-6-color-10;
      }
    }
  }
}
