.gallery {
  position: relative;
}
.gallery.gallery--parts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gallery.gallery--parts .gallery__item {
  position: relative;
  width: 22%;
  border: 2px solid #e6ecef;
  padding: 0;
  border-radius: 4px;
  margin: 0 1.5% 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0;
}
.gallery.gallery--parts .gallery__item:hover:after {
  content: 'На главную';
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  height: 25px;
  line-height: 25px;
  color: #fff;
  font-size: .7rem;
  text-align: center;
}
.gallery.gallery--parts .gallery__item.gallery__item--active:hover:after {
  content: 'Главная';
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(1, 169, 244, 0.8);
  height: 25px;
  line-height: 25px;
  color: #fff;
  font-size: .7rem;
  text-align: center;
}
.gallery.gallery--parts .gallery__item-btn {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.gallery.gallery--parts .gallery__item-delete {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  text-align: center;
  border: none;
  color: #fff;
  font-size: 1rem;
  background: #f44336;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  z-index: 10;
}
.gallery.gallery--parts .gallery__item-delete .icon {
  width: 20px;
  height: 20px;
  vertical-align: top;
}
.gallery.gallery--parts .gallery__item-delete .icon:before {
  position: relative;
  left: -1px;
  top: 1px;
  margin: 0;
}
.gallery.gallery--parts .gallery__item-rotate {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  background: #e6ecef;
  border: none;
  color: #808080;
  text-align: center;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  z-index: 10;
}
.gallery.gallery--parts .gallery__item-rotate .icon {
  width: 20px;
  height: 20px;
  vertical-align: top;
}
.gallery.gallery--parts .gallery__item-rotate .icon:before {
  position: relative;
  left: -1px;
  top: 1px;
  margin: 0;
}
.gallery.gallery--parts .gallery__item-img {
  max-height: 120px;
  cursor: pointer;
}
@media (min-width: 1024px) and (max-width: 1219px) {
  .gallery.gallery--parts {
    flex-wrap: wrap;
  }
  .gallery.gallery--parts .gallery__item {
    width: 31%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery.gallery--parts {
    flex-wrap: wrap;
  }
  .gallery.gallery--parts .gallery__item {
    width: 31%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .gallery.gallery--parts {
    flex-wrap: wrap;
  }
  .gallery.gallery--parts .gallery__item {
    width: 48%;
  }
}
