﻿/* General  modal styles */
.modal-window { width: 100%; height: 100%; position: fixed; background-color: rgba(0, 0, 0, 0.5); top: 0; right: 0; bottom: 0; left: 0; z-index: 999; opacity: 0;
    pointer-events: none; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; }
.modal-window:target { opacity: 1; pointer-events: auto; }
.modal-window>div {
  position: absolute;
  left: 0;
  right: 0;
  top:50%;
  margin-top: -296px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  background: #fff;
  color: #444;
  }
.modal-window header { font-weight: bold; }
.modal-window.small>div { width: 365px; }
.modal-close { color: #aaa; line-height: 50px; font-size: 80%; position: absolute; right: 0; text-align: center; top: 15px; width: 70px; text-decoration: none; }
.modal-close:hover { color: #000; }
.modal-window h1 { font-size: 150%; margin: -15px 0 10px; }
/* Callback modal Specific */
.modal-window.small iframe { width: 300px; height: 485px; }