.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  overflow: auto;
}
.modal-body {
  background-color: #FFF;
  margin: 50px auto;
  width: 800px;
  box-shadow: 0 1px 4px rgba(0,0,0,.22);
  border-radius: 5px;
}
.modal-top{
  height: 100px;
  width: 100%;
  background-color: #1d976c;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.modal-top-img{
  height: 150px;
  width: 150px;
  background-color: #1d976c;
  margin-left: 50px;
  border: 8px solid #1d976c;
  border-radius: 50%;
}
.modal-top-text{
  float: right;
  color: #FFF;
  margin-right: 50px;
  font-size: 50px;
  font-weight: bold;
  margin-top: 15px;
}
.modal-close-button{
  float: right;
  color: #fff;
  font-size: 50px;
  margin-right: 15px;
  margin-top: -5px;
  cursor: pointer;
}
.modal-nav{
  height: 68px;
  background-color: #DDD;
}
.modal-nav-buttons{
  float: right;
  margin-top: 15px;
  margin-right: 15px;
  color: #006C41;
  font-size: 20px;
}
.deselected{
  background-color: rgb(119,119,119);
}
.modal-content{
  padding: 0 75px 25px 75px;
  text-align: left;
}
.modal-heading{
  color: #767676;
  font-size: 40px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
}
.modal-subheading{
  color: #767676;
  font-size: 30px;
  font-weight: bold;
  margin: 15px 0;
}
label{
	color: #000;
}
.modal-error-bar{
  background-color: #e50000;
  width: 100%;
  text-align: center;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
}
.modal-error-bar > a{
	color: #fff;
}
.modal-error-bar > a:visited{
	color: #fff;
}
hr{
	border: 1px solid #000;
}
.modal-agency-img{
	max-height: 150px;
	max-width: 75%;
}
.modal-p{
	font-size: 20px;
	margin: 5px 0 25px 0;
}
.reg-note{
	padding: 0 125px;
	text-align: left;
	margin: 5px 0;
}
fieldset{
	border: 2px solid #767676;
	border-radius: 10px;
	padding: 25px 25px 10px 25px;
	margin-bottom: 25px;
}
legend{
	font-size: 20px;
	font-style: italic;
}
#custom-modal-banner-logo{
	max-width: 400px;
	max-height: 150px;
}
#custom-modal-banner-link-container{
	float: right;
	width: 300px;
	margin-right: 20px;
	margin-top: 5px;
}
#custom-modal-banner-link-container > a{
	font-size: 24px;
}
@media (max-width: 750px) {
  .modal-body{
    width: 100%;
  }
  .modal-top{
    text-align: center;
  }
  .modal-top-img{
    display: none;
  }
  .modal-top-text{
    float: unset;
    margin: 0;
    padding-top: 15px;
  }
  .modal-nav-buttons{
    float: unset;
  }
  .modal-nav{
    height: unset;
    text-align: center;
    padding-top: 6px;
  }
  .modal-nav-buttons{
    margin: 0;
  }
  .modal-content{
  	padding: 0 5px 50px 5px;
  }
  #custom-modal-banner-logo{
  	max-width: 75%;
  	max-height: 150px;
  }
  #custom-modal-banner-link-container{
  	float: unset;
  	width: 100%;
  	margin-top: 10px;
  	padding-bottom: 20px;
  }
  #custom-modal-banner-link-container > a{
  	font-size: 22px;
  }
}