.itcss {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.itcss__wrapper {
  position: relative;
  overflow: hidden;
}
.itcss__items {
  display: flex;
  transition: transform 0.5s ease;
}
.transition-none {
  transition: none;
}
.itcss__item {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}
.itcss__control {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgb(255, 255, 255);
  user-select: none;
  border-radius: 50%;
  outline: none !important;
}
.itcss__control_show {
  outline: none;
  display: flex;
}
.itcss__control:focus,
.itcss__control:hover {
  text-decoration: none;
  opacity: 0.7;
}
.itcss__control_prev {
  left: 0;
}
.itcss__control_next {
  right: 0;
}
.itcss__control::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.itcss__control_prev::before {
  background-image: url("../images/arrow.svg");
  transform: rotate(180deg);
}
.itcss__control_next::before {
  background-image: url("../images/arrow.svg");
}
.itcss__indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin: 0 15%;
  list-style: none;
  user-select: none;
}
.itcss__indicator {
  flex: 0 1 auto;
  width: 30px;
  height: 4px;
  margin-right: 3px;
  margin-left: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  cursor: pointer;
}
.itcss__indicator_active {
  background-color: #fff;
}
