/**
 * angular-fancy-modal - the definitive modal/popup/dialog solution for AngularJS.
 * @author Alessandro Arnodo
 * @url http://alessandro.arnodo.net
 * @version v0.1.4
 * @link https://github.com/vesparny/angular-fancy-modal
 * @license MIT
 */
.fancymodal.fancymodal-theme-lg2 .fancymodal-content {
  max-width: 1400px;
  max-height:850px;
  position:relative;
  overflow-y:auto;
  /*background-color: #000;
  color: #fff;*/

}

.fancymodal.fancymodal-theme-lg2 .fancymodal-content-opening {
    -webkit-animation: fancymodal-in 1s;
    animation: fancymodal-in 1s;
    margin-top: -30px;
    padding-top:20px;
    padding-bottom:20px;
}

.fancymodal.fancymodal-theme-lg2 .fancymodal-content-closing {
    -webkit-animation: fancymodal-out 1s;
    animation: fancymodal-out 1s;
}

.fancymodal.fancymodal-theme-lg2 .fancymodal-overlay-opening {
    -webkit-animation: fancymodal-fadeIn 1s;
    animation: fancymodal-fadeIn 1s;
}

.fancymodal.fancymodal-theme-lg2 .fancymodal-overlay-closing {
    -webkit-animation: fancymodal-fadeOut 1s;
    animation: fancymodal-fadeOut 1s;
}
