.modal_wrapper {
  display: flex;
  justify-content: center; }

.modal {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  max-width: 100%;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 3;
  height: 95%; }

.modal-close-btn {
  position: absolute;
  right: 4px;
  top: 8px;
  width: 25px;
  opacity: .5;
  cursor: pointer; }

.modal-close-btn:hover {
  opacity: 1; }

.modal-close-btn:before, .modal-close-btn:after {
  position: absolute;
  left: 12px;
  content: ' ';
  height: 19px;
  width: 2px;
  background-color: #333; }

.modal-close-btn:before {
  transform: rotate(45deg); }

.modal-close-btn:after {
  transform: rotate(-45deg); }

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2; }

.youtube_video {
  position: relative;
  top: 0;
  left: 0;
  width: 80vw;
  height: 100%; }

@media (max-width: 800px) {
  .modal {
    height: 50%; } }

/*# sourceMappingURL=front_modal.css.map */
