/* NS 430304 */
span.modalOpen {
    text-decoration: underline;
    color: cornflowerblue;
    cursor: pointer;
}
div#modalContent {
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
}
div#modalContent div.close {
	font-size:0;
  	opacity:1;
}
div#modalContent div.close:before {
    content: '\f057';
    font-family: fontAwesome;
    font-size: 22px;
    position: absolute;
    right: -25px;
    color: #fff;
    top: -25px;
    cursor: pointer;
}
div#modalContent > div {
    width: 600px;
    height: 500px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    left: 50%;
}
.modalContext {
    height: 100%;
    padding: 20px 20px;    
    overflow-y: scroll;
}
.modalContext h1 {
	font-size: 26px;
  	color: #000000;
}
.modalContext h2 {
	font-size: 20px;
  	color: #2D96CD;
}
/* END NS 430304 */

/* NS 430304 */
.center-block {
	max-width: 1200px;
  	width: 100%;
  	margin:20px auto !important;
  	padding: 0 20px;
}
.req-label {
	margin-bottom: 20px;
  	font-size: 13px;
}
.blueprint-form .form-control {
    border-radius: 0;
    height: 60px;
    padding: 0 20px;
  	font-size: 13px;
}
.blueprint-form textarea.form-control {
    height: 155px;
  	padding-top: 10px;
  	padding-bottom: 10px;
}
.blueprint-form .fieldset > .col > .row > .col > div:first-child {
    font-size: 13px;
    margin-bottom: 5px;
}
.blueprint-form .form-control::-webkit-input-placeholder {
   font-style: italic;
}
.blueprint-form .form-control:-moz-placeholder { /* Firefox 18- */
   font-style: italic;
}
.blueprint-form .form-control::-moz-placeholder {  /* Firefox 19+ */
   font-style: italic;
}
.blueprint-form .form-control:-ms-input-placeholder {  
   font-style: italic;
}
@media (min-width: 992px){
    .blueprint-form .fieldset > .col > .row > .col {
      	padding-right: 20px;
    }
}
/**/