.kyrhk-content label {
  font-weight: 400;
  color: #8C8A8F;
  font-size: 11px;
  line-height: 140%;
  position: relative;
  cursor: pointer;
  vertical-align: super
}

.kyrhk-content label > span {
  display: none;
  max-width: 320px;
  min-width: 200px;
  background-color: #FEFBFA;
  box-shadow: 3px 3px 19px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 8px;
  padding: 13px 15px;
  position: absolute;
  z-index: 9;
  opacity: 0;
  transition: opacity 1s;
  top: 2em;
  left: -1em;
  cursor: auto;
}

.kyrhk-content label > input {
  display:none;
}

.kyrhk-content label > input:checked+span {
  display: block;
  opacity: 1;
}

@media screen and (min-width: 961px){
  .kyrhk-content label:hover > input+span {
    display: block;
    opacity: 1;
  }
}