.gallery {
  width: 91%;
  justify-content: center;
  margin: 30px auto 0;
}

.gallery__product {
  width: 100%;
  position: relative;
  margin: 0 auto 28px;
}

.gallery__product_type_all {
  width: 90%;
}

.gallery__product_type_stickers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 150px;
  gap: 8px;
}

.gallery__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  margin: 0;
}

.gallery__photo_disabled-left {
  grid-column: 1/2;
  grid-row: 1/2;
}

.gallery__photo_disabled-right {
  grid-column: 2/3;
  grid-row: 1/2;
}

.gallery__z-index {
  z-index: -1;
}

.gallery__photo_disabled {
  display: none;
  opacity: 0;
}

.gallery__buttons {
  width: calc(100% - 10px);
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: calc(50% - 10px);
  left: 5px;
  display: flex;
  margin: auto;
  pointer-events: none;
}

.gallery__button {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 0;
  border-radius: 99em;
  margin: 0;
  padding: 0;
  pointer-events: all;
  position: relative;
  cursor: pointer;
}

.gallery__button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

.gallery__button:first-child {
  padding: 0 2px 0 0;
}

.gallery__button:last-child {
  padding: 0 0 0 2px;
}

.gallery__button-img {
  width: 50%;
  height: 50%;
  display: block;
  margin: 0;
}

.gallery__menu {
  width: 80%;
  height: 26px;
  box-sizing: border-box;
  flex-grow: 1;
  background: transparent;
  appearance: none;
  background: url("../images/icon-arrow-down-bird.svg") no-repeat;
  background-position: calc(100% - 7px);
  background-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #8B8B8B;
  border-radius: 99em;
  margin: 15px 10% 0;
}

.gallery__menu:focus, .gallery-menu:active {
  border: 1px solid #4DD6FF;
  outline: none;
}

.gallery__menu-text {
  line-height: 26px;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
