[data-component="modal"] {
  cursor: pointer;
  background: transparent;
  border: 0;
}
[data-modal="container"] {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
[data-modal="container"] [data-modal="inner"] {
  margin: 0 auto;
  position: relative;
}
[data-modal="container"] [data-modal="inner"] video {
  width: 100%;
  height: 100%;
}
[data-modal="container"] [data-modal="close"] {
  position: absolute;
  top: 0;
  right: 3px;
  font-size: 30px;
  line-height: 70%;
  cursor: pointer;
  background: transparent;
  border: 0;
}
[data-component="form"] [data-form="radio"] {
  border-radius: 50%;
}
[data-component="form"] [data-form="checkbox"],
[data-component="form"] [data-form="radio"] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background: white;
  border: 1px solid;
  cursor: pointer;
}
[data-component="form"] [data-form="checkbox"] input[type="checkbox"],
[data-component="form"] [data-form="radio"] input[type="checkbox"],
[data-component="form"] [data-form="checkbox"] input[type="radio"],
[data-component="form"] [data-form="radio"] input[type="radio"] {
  opacity: 0;
  width: 1em;
  height: 1em;
  cursor: pointer;
}
[data-component="form"] [data-form="checkbox"] svg,
[data-component="form"] [data-form="radio"] svg {
  position: absolute;
  top: 0;
  right: 0;
  fill: #000;
  width: 1em;
  height: 1em;
  pointer-events: none;
  display: none;
}
[data-component="form"] [data-form="checkbox"].active svg,
[data-component="form"] [data-form="radio"].active svg {
  display: block;
}
[data-component="form"] input[type="text"],
[data-component="form"] input[type="password"],
[data-component="form"] input[type="email"],
[data-component="form"] textarea,
[data-component="form"] select {
  padding: 0.5em 1em;
  font-size: 1em;
  border: 1px solid;
  box-sizing: border-box;
}
[data-component="form"] [data-form="floating-label"] {
  display: block;
  z-index: 1;
  position: relative;
  -webkit-transform: translate(calc(1em + 1px), calc(1.75em + 1px));
  transform: translate(calc(1em + 1px), calc(1.75em + 1px));
  opacity: 0.5;
  pointer-events: none;
}
[data-component="form"] [data-form="floating-label"].is-focused {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
[data-component="form"] [data-form="floating-label"].transition {
  transition: 0.15s all;
}
[data-component="form"] span.wpcf7-form-control-wrap {
  position: relative;
  z-index: 0;
}
[data-component="form"] span.wpcf7-list-item-label {
  vertical-align: middle;
}
