@charset "utf-8";
/* CSS Document */
body {
    background-color: #fff;
    color: #333333;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 90%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
/* The Modal (background) */
.modalh {
    /*display: none;  Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999999999; /* Sit on top */
    left: 0;
    top: 0;
    overflow: auto; /* Enable scroll if needed */
    text-align: center;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    height:100vh;
    width:100%;
    
}

.modalhcentered {
  display: -webkit-box;
  display:-webkit-flex;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items: center;
    min-height: 100vh;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
  justify-content: center; 
  padding: 0;
  border: #a0a0a0 solid 1px;
  /*background: #ffffff;*/
 }

::after, ::before {box-sizing:border-box;}
 
/* Modal Content */
.modalh-content {
    background-color: #fefefe;
    padding: 15px;
    border: 1px solid #888;
    /*max-width: 50%;*/
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width:580px;
	margin-top: -10px;
	text-align: left;
    box-shadow: 0 1px 2px 2px rgba(0,0,0,0.2);
}
.modalh-title{
	font-family: 'Barlow', sans-serif;
    font-weight: bold;
    font-size: 20px;
	color: #D53D5E;
}
.modalh-title:after{
	display: block;
    height: 2px;
    background-color: #50a9e6;
    content: " ";
    width: 100px;
    /*margin: 0 auto;*/
    margin-top: 10px;
    margin-bottom: 0px;
}
.modalh-header{
	padding:10px 0;
}
.modalh-body {
	
}
.modalh-footer{
	text-align: center;
	padding: 10px;
}

/* The Close Button */
.close {
    color: #555555;
    font-size: 38px;
    font-weight: bold;
    text-align: right;
}

.close:hover,
.close:focus {
    color: #002d66;
    text-decoration: none;
    cursor: pointer;
}
