.popup .thumb {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.popup .thumb__label {
  position: relative;
}

.popup .thumb__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.popup .thumb__img {
  display: block;
  width: 100px;
  height: 100px;
  opacity: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.popup .thumb__input:checked ~ .thumb__img {
  opacity: 1;
}

.popup-management-button {
  padding: 5px 10px;
  position: absolute;
  top: calc(50% - 120px);
  left: 0;
  background: #209cee;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 10px 10px 0 0;
  transform: rotate(90deg);
  transform-origin: 0 100%;
}

@media ( min-width: 768px ) {
  .popup-management-button {
    padding: 10px;
    font-size: 13px;
  }
}