@charset "utf-8";
/* CSS Document */
/** Veil modal loader **/

[role="alert"] {
  box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 170px;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    padding: 1.5em;
    border: 1px solid #CCC;
    background: white;
    z-index: 1000;
    -webkit-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
	display: none;
	text-align:center;
	border-radius:5px;
}


[role="alert"] * + * {
  margin-top: 0.5em;
}

#title {
  font-weight: bold;
  font-size: 1em;
}


#dialog-content:focus {
outline:none;
}

[role="alert"][data-open] {
  display: block;
}

#cover {
  position: fixed; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 999;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;  
  display: none;
}

.has-alert{overflow:hidden;}

