.embedcontent {
  display: block;
  border: 10px solid #ddd;
  padding: 10px;
  min-height: 200px;
}

.embed-dialogue-headline {
  display: block;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}

.embed-dialogue-text {
  display: block;
  font-size: 16px;
  margin-bottom: 20px;
}

.embed-allow-switch {
  position: relative;
  display: block;
  margin-bottom: 20px;
  width: 60px;
  height: 28px;
  cursor: pointer;
}

.embed-allow-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.embed-allow-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 20px;
}

.embed-allow-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 50%;
}

.embed-allow-switch input:checked + .embed-allow-slider {
  background-color: #2196F3;
}

.embed-allow-switch input:focus + .embed-allow-slider {
  box-shadow: 0 0 1px #2196F3;
}

.embed-allow-switch input:checked + .embed-allow-slider:before {
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(32px);
}

.embed-privacy-note {
  font-size: 12px;
  display: block;
}

.embedcontent.embedcontent-show {
  border-color: transparent;
}

@media screen and (min-width: 700px) {
  .embedcontent.embedcontent-show {
    padding: 10px 70px;
  }
}

@media screen and (max-width: 599px) {
  .embedcontent.embedcontent-show {
    border: none; padding: 0;
  }
  .embedcontent.embedcontent-show iframe {
    max-width: 100%;
  }
}
