.advertising-disclosure {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.advertising-disclosure label {
  margin: 24px 60px 0 0;
  color: #424242;
  cursor: pointer;
  float: right;
  width: auto;
}
#advertising-disclosure {
  display: none;
}
.expandable {
  display: none;
  padding: 10px;
}
.disclosure-content {
  cursor: default;
  z-index: 1000;
  right: 0;
  top: 45px;
  position: absolute;
  background: #fff;
  border-radius: 3px;
  width: 80%;
  -moz-box-shadow: 0 0 3px #ccc;
  -webkit-box-shadow: 0 0 3px #ccc;
  box-shadow: 0 0 5px #ccc;
}
.disclosure-content:hover .expandable {
  display: block;
}
@media only screen and (max-width: 768px) {
  .disclosure-content {
    width: 80vw;
    top: 50px;
  }
  #advertising-disclosure:checked ~ * .expandable {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  label:hover + .disclosure-content .expandable{
    display: block;
  }
}
@media only screen and (max-width: 375px) {
  .advertising-disclosure {
    position: relative;
    padding: 0;
    margin-bottom: 0;
  }
  .advertising-disclosure label {
    float: left;
    margin: 0;
  }
  .disclosure-content {
    top: 25px;
    right: 40px;
  }
}