.radiocont, .checkboxcont {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    line-height: 130%;
}
  
.checkboxcont input,
.radiocont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkboxcont .checkmark,
.radiocont .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
}


.checkboxcont input:disabled + .checkmark,
.radiocont input:disabled + .checkmark {
    background-color: #e7e1df;
}

.checkboxcont .checkmark {
    border-radius: 4px;
}   

.checkboxcont:hover input ~ .checkmark ,
.radiocont:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.radiocont .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;    
    border-radius: 50%;
    background: #fff;
}

.checkboxcont .checkmark:after {
    font-family: 'dashicons';
    content: "\f147";
    position: absolute;
    display: none;
    top: 2px;
    left: -4px;
    font-size: 25px;
}

.radiocont input:checked ~ .checkmark:after {
    display: block;
    background-color: #743720;
}

.checkboxcont input:checked ~ .checkmark:after {
    display: block;
    color: #743720;
}

.nw-form ::placeholder {
    font-style: italic;
    color: #a8a8a8;
}

.nw-form * {
    box-sizing: border-box;
}

.nw-form {   
    border: 1px solid #999999;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    color: #555;	
}

.nw-form .form-header {
    background-color: #008B97;
    border-bottom: 1px solid #eee;
    position: relative;
}

.nw-form .form-header .ttl {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    padding: 20px 35px;
    margin: 0;
    text-transform: uppercase;
}

.nw-form .form-header .btn-close {
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -9px;
	cursor: pointer;
}

.nw-form .form-top {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 120%;
    background-color: #fff;
}

.nw-form .form-body {
	position: relative
}

.nw-form .page-content {
	background-color: #f1edeb;
	padding: 25px 35px;
}

.nw-form input[type="text"], .nw-form textarea, .nw-form select {
    border: none;
    padding: 8px 22px;
    border-radius: 4px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
}


.nw-form input[type="text"].lck, .nw-form textarea.lck, .nw-form select.lck {
    color: #444;
    background: #ebe5e2;
}

.nw-form .fld-row {
    clear: both;
}

.nw-form .fld-col {
    float: left;
}

.nw-form .fld-col-4 {
    width: 33.3333%;
}

.nw-form .fld-col-6 {
    width: 50%;
}

.nw-form .fieldp {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding-right: 10px;
    position: relative;
}

.nw-form .personal-info .lbl {
    display: inline-block;
    width: 105px;
    padding-right: 10px;
    text-align: right;
    line-height: 1.2;
    margin-right: 5px;
    color: #666;
}

.nw-form .fieldp input[type="text"], 
.nw-form .fieldp textarea, 
.nw-form .fieldp select {
    flex-grow: 2;
}

.nw-form .opt-in-cont .radiocont:not(:last-child) {
    margin-right: 35px;
}

.nw-form .sec-heading {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
}

.nw-form .education .goal-sec {
  margin-bottom: 25px;
}

.nw-form .education textarea {
    width: 100%;
    resize: none;
    height: 100px;
}

.nw-form .interests {
    clear: both;
}

.nw-form .interests .col {
    float: left;
    width: 50%;
}

.nw-form .choice-group:not(:last-child) {
    margin-bottom: 20px;
}

.nw-form .choice-group .group-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #666;
}

.nw-form .choice-group .choice-set {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nw-form .education .choice-group textarea {
    height: 60px;
}

.nw-form .education .radiocont, .nw-form .education .checkboxcont {
    font-weight: 500;
}

.nw-form .education .degree-interest .checkboxcont {
    width: 135px;
}

.nw-form .form-page {
    display: none;
}

.nw-form .form-footer {
    padding: 25px 30px;
    border-top: 1px solid #eee;
    background: #fff;;
}

.nw-form .form-footer .footer-elts {
    display: flex;
    gap: 10px;
}

.nw-form .form-footer .pg-area {
    flex-grow: 2;
}


.nw-form .form-footer a.btn {
    font-size: 16px;
    border-radius: 4px;
}

.nw-form .pg-text {
	color: #5d3720;	
	font-weight: 600;
	font-size: 13px;
    line-height: 100%;
    margin-bottom: 5px;
}

.nw-form .pg-outer {
    width: 265px;
	max-width: 100%;
	border: 1px solid #5d3720;
	height: 15px;
	border-radius: 3px; 
}

.nw-form .pg-bar {
	width: 50%;
	height: 100%;
	background-color: #5d3720; 	
}

.nw-form .error-cont {
    position: relative;
}

.nw-form .error-flag {
    position: absolute;
    right: 10px;
    bottom: 0px;
    font-size: 12px;
    font-style: italic;
    color: red; 
    display: none;
}

.nw-form .error-flag.left-align {
    right: auto;
    left: 0;
}

.nw-form .fieldp.error, .nw-form .error-cont.error {
    padding-bottom: 25px;
}

.nw-form .error .error-flag {
    display: block;
}

.nw-form .error input[type="text"],
.nw-form .error textarea,
.nw-form .error select {
    border: 1px solid red;
}
