/* Video Rules */
body {
  font-family: monospace, sans-serif;
  background-color: #fbfcfd;
}

.video-player-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.controllers-container {
  margin-top: 10px;
}

.seekbar {
  width: 100%;
}

@media (max-width: 768px) {
  .control-reserve-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .button-90 {
    margin: 5px;
  }
}
/* End Video Rules */
/* Calendly rules */

#iframeContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: calc(100% - 40px);
  width: auto;
}

#iframeContainer iframe {
  width: 83%;
  height: 40em;
  border: none;
  margin-bottom: 15px;
  overflow: hidden;
}

.rewatchContainer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.rewatchButton {
  width: auto;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border: none;
  background-color: #0274be;
  cursor: pointer;
  vertical-align: middle;
}
