.overlay {
  display: none;
}
.overlay.active {
  display: block;
  height: 100%;
  width: 100%;
  background: #000;
  position: fixed;
  z-index: 1025;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

body.fixed {
  height: 100%;
  width: 100%;
  position: fixed;
}

.overlayWrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.overlayContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.overlayContent p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  display: block;
}

.pauseRec {
  min-width: 13%;
  color: body-bg;
  text-align: center;
  font-size: 36px;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  display: inline-block;
  margin: 10px;
  text-transform: uppercase;
}

.close {
  min-width: 13%;
  text-align: center;
  padding: 10px;
  background: #000;
  display: inline-block;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  margin: 10px;
  text-transform: uppercase;
}

.close.disabled {
  color: #ccc;
  background: #000;
  cursor: not-allowed;
}
