/** General Modal  **/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  max-height: 100%;
  padding-top: 5%;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 99999;
  /* Close Button */
  /* End of Close Button */
  /** WRAPPER **/ }
  .modal.big .modal-wrapper {
    max-width: 900px; }
  .modal-close {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    float: none;
    margin-bottom: 15px;
    border-radius: 100%;
    line-height: 1.35em;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 200;
    cursor: pointer; }
    .modal-close span {
      display: block;
      position: absolute;
      right: -38px;
      top: -32px;
      margin: 10px;
      padding: 7px;
      background: #FFF;
      background: transparent url(/css/img/close-modal-bg.png) center center no-repeat\9;
      border-radius: 100%;
      font-size: 12px;
      -webkit-transition: transform 0.3s;
      -moz-transition: transform 0.3s;
      -o-transition: transform 0.3s;
      transition: transform 0.3s; }
    .modal-close:hover span, .modal-close:focus span, .modal-close:active span {
      -webkit-transform: rotate(-90deg);
      -moz-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
      transform: rotate(-90deg); }
  .modal.opening {
    display: block; }
    .modal.opening.open {
      opacity: 1; }
  .modal > *:first-child {
    border-top: none; }
  .modal > section {
    max-width: 100%;
    margin: 0;
    padding: 0; }
  .modal header p {
    margin: 0; }

/** Modal Overlay with Opacity **/
#modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  background: transparent url(/css/img/modal-backdrop.png) center center repeat\9;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 99; }
  #modal-backdrop.opening {
    display: block; }
    #modal-backdrop.opening.open {
      opacity: 1; }

/** Body State when Modal is open **/
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%; }

/** Specific Modals **/

/*# sourceMappingURL=modal.css.map */
