/* MODAL OVERLAY*/
/* line 3, src/scss/modules/_modal.scss */
.modal-container {
  position: absolute;
  z-index: 90000;
  top: 0;
  left: 0px;
  display: none;
}
/* line 11, src/scss/modules/_modal.scss */
.modal-container .modal-body {
    background-color: #ecf2f5;
    height: 690px;
    padding: 0px;
    width: 1000px;
    left: 0;
    position: fixed;
    top: 20px;
    z-index: 90000;
    font-family: Arial, Verdana, Helvetica, Sans-Serif;
    -moz-box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-radius: 10px;
    border-bottom-right-radius: 10px;
    margin: auto;
}
/* line 37, src/scss/modules/_modal.scss */
.modal-container .modal-mask-overlay {
  background-color: black;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9;
  opacity: .5;
  position: fixed;
  /* IE opaciry fix */
  		/* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
      	filter: alpha(opacity=50);   */
  /* pointer-events: none;*/
}
/* line 52, src/scss/modules/_modal.scss */
.modal-container .modal-close {
  background-image: url("../images/close-x-black.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  cursor: hand;
  padding: 2px 15px 15px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 8996;
}
