.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.wrapper_inner {
  width: 650px;
  height: 500px;
}

video {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.video_wrapper {
  position: relative;
}

.options_wrapper {
  display: flex;
  flex-wrap: wrap;
}

.option {
  width: calc(50% - 20px);
  margin: 10px;
  text-align: center;
  border: 1px solid #2C3E50;
  box-sizing: border-box;
  padding: 15px;
  cursor: pointer;
  color: #2C3E50;
  font-size: 25px;
  transition: all .3s ease-in-out;
  position: relative;
  top: -200px;
  z-index: 1;
}

.options_wrapper.active .option{
  top: 0;
}

.option.selected[data-id="0"] {
  background: #E74C3C;
  color: #ECF0F1;
}

.option.selected[data-id="1"] {
  background: #2ECC71;
  color: #ECF0F1;
}

span.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  z-index: 1000;
  overflow: hidden;
  transition: all .4s ease-in-out;
}

span.overlay.active {
  height: 100%;
}

span.overlay.overlay_right {
  background: #2ECC71;
  color: #ECF0F1;
}

span.overlay.overlay_wrong {
  background: #E74C3C;
  color: #ECF0F1;
}

span.overlay>span>span {
  display: block;
}

span.button_next {
  font-size: 20px;
  text-align: center;
  margin-top: 35px;
  border: 1px solid;
  padding: 10px;
  cursor: pointer;
}
