.banner-title-text {
  font-size: 14px;
}

.ratio-label {
  margin-top: -15px;
  margin-bottom: 10px;
  font-size: 12px;
}

.el-form-item.is-error {
  ~ .ratio-label {
    @media only screen and (max-width: 472px) {
      margin-top: 0px;
    }
  }
}

.banner-carousel {
  &.first {
    .el-carousel__arrow--left {
      background-color: #c8c9ca;

      // @media (min-width: 768px) {
      //   display: block !important;
      // }
    }
  }

  &.last {
    .el-carousel__arrow--right {
      background-color: #c8c9ca;

      // @media (min-width: 768px) {
      //   display: block !important;
      // }
    }
  }

  &.banner {
    .el-carousel__arrow {
      display: none;
    }
  }

  .el-carousel__arrow {
    z-index: 7 !important;
    color: black;
    background-color: transparent !important;
    // background-color: $primary;
    // border-radius: 5px;
    // height: 56px;
    // width: 56px;
    animation: 2s fadeIn;

    @media only screen and (max-width: 1023px) {
      height: 40px;
      width: 40px;
    }

    @media only screen and (max-width: 768px) {
      display: none !important;
    }

    i {
      font-size: 30px;
    }

    &.el-carousel__arrow--left {
      left: 25px;
    }

    &.el-carousel__arrow--right {
      right: 25px;
    }
  }

  .el-carousel__indicators {
    margin-top: 15px;

    @media only screen and (max-width: 768px) {
      margin-top: 10px;
    }

    .el-carousel__indicator {
      width: 15.2px;
      height: 15.2px;
      border-radius: 50%;
      margin: 0 10px;
      background-color: #c0bfbe;
      padding: 10px;

      @media only screen and (max-width: 768px) {
        padding: 5px;
      }

      &.is-active {
        background-color: $primary;
      }

      .el-carousel__button {
        display: none;
        background-color: transparent;
      }
    }
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
