/*********** material ***********/
body.nuModal_fullscreen, html.nuModal_fullscreen {
  overflow: hidden; }

body.has_nuModal, html.has_nuModal {
  overflow: hidden; }

.nuModal_modal {
  display: block;
  position: fixed;
  z-index: 11000;
  background: #FFFFFF;
  border-radius: 2px;
  padding: 15px;
  min-width: 200px;
  -webkit-box-shadow: 0px 0px 34px -2px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 34px -2px rgba(0, 0, 0, 0.25); }
  .nuModal_modal.nuModal_fullscreen {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    border-radius: 0px; }
  .nuModal_modal .nuModal_title {
    margin-bottom: 10px; }
  .nuModal_modal .nuModal_footer {
    border-top: 1px solid #F6F4F5;
    padding-top: 10px;
    margin-top: 10px; }
  .nuModal_modal .nuModal_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .nuModal_modal .nuModal_buttons .btn {
      margin-right: 10px;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      text-align: center; }
      .nuModal_modal .nuModal_buttons .btn:last-child {
        margin-right: 0px; }
  .nuModal_modal.compact {
    padding: 5px;
    line-height: 15px; }
    .nuModal_modal.compact .nuModal_footer {
      padding-top: 0px;
      margin-top: 0px; }
    .nuModal_modal.compact .nuModal_buttons .btn {
      padding: 5px; }

.nuModal_container {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto; }
  .nuModal_container .nuModal_modal {
    display: block;
    position: absolute; }
  .nuModal_container.nuModal_overlay {
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); }
