* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: rgb(51, 51, 51);
	background-color: rgb(255, 255, 255);
}

#cxsFormHolder {
	position:relative;
	max-width: 600px;	
	margin:10px auto;
	text-align:center;
}

#cxsWrapper {
	position:relative;
	max-width: 600px;
	background: rgb(245, 245, 245);
	padding: 19px;
	border: 1px solid rgb(227, 227, 227);
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	margin:10px auto;
}

#cxsFormHolder #cxsWrapper {
	max-width:100%;
	margin:0px;
	text-align:initial;
}

.cxsErrorHeader {    			
	display: none;
	border: solid;
	clear: both;
	line-height: 25px;
	padding: 5px 10px;
	color: rgb(169, 68, 66);
	background-color: rgb(242, 222, 222);
	border: 1px solid rgb(235, 204, 209);
	border-radius: 4px;
	margin-bottom: 15px;
}
.cxsErrorHeader.cxsHasError {
	display:block;
}	

.cxsErrorHeader p {
    margin: 5px;
}	

.cxsErrorHeader .cxsErrorLabel {
	font-weight:bold;
}

.cxsFieldContainer {
	width: 100%;
	position:relative;
}

.cxsFieldContainer.cxsFieldType_file {
    min-height: 34px;
}

h1.cxsPageHeader {
	width: 100%;
	clear: both;
	margin-top: 5px;
}

.cxsField {
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: rgb(85, 85, 85);
	background-color: rgb(255, 255, 255);
	background-image: none;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	outline:none;
}

.cxsFieldType_percent .cxsField {
		width: calc(100% - 16px);
	}


.cxsField.cxscheckboxField {
	width: auto;
	height: auto;
	box-shadow: none;
}

.cxsField:focus {
	border-color: rgb(102, 175, 233);
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.cxsField.cxsCheckboxesField, .cxsField.cxsRadiosField {
	background-color:transparent;	
	padding-left: 0px;	
	border:none;
	box-shadow:none;	
	height: auto;
	width:100%;
	padding:2px 0;
}

.cxsField.cxsCheckboxesField span, .cxsField.cxsRadiosField span {
	cursor:default;
}

.cxsRadioLabel, .cxsCheckboxLabel {
	display:inline-block;
	width:90%;
	width:calc(100% - 36px);
}

.cxsField.cxsRadiosField {
    margin-left: 15px;
}

.cxsField.cxsRadiosField input {
	vertical-align: top;
}

.cxsCheckboxes {
	width: 100%;
}

.cxsFieldLabel {
	width:100%;
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	font-weight:bold;
}

.cxsFieldAfterLabel {
	display:none;
}

.cxsFieldType_checkbox .cxsFieldLabel {
	visibility:hidden;
	height: 25px;
}

.cxsFieldType_checkbox .cxsFieldAfterLabel {
	display:inline !important;
}

.cxstextareaField {
	height: auto;
	overflow: auto;
}

.cxsFieldType_multipicklist select[multiple] {
	height: auto;
}

.cxsFieldType_date .cxsdateField_d, .cxsFieldType_date .cxsdateField_m {
	width: 24%; 
}

.cxsFieldType_date .cxsdateField_y {
	width: 40%;
}

.cxsFieldType_date .cxsSeperator {
	text-align: center;
	width: 6%;
	display: inline-block;
}

.cxsButton ,.cxsFileUpload{
	cursor:pointer;
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	color: rgb(51, 51, 51);
	background-color: rgb(255, 255, 255);
	border: solid 1px rgb(204, 204, 204);
}

.cxsButton:hover ,.cxsFileUpload:hover {
	color: rgb(51, 51, 51);
	background-color: rgb(230, 230, 230);
	border-color: rgb(173, 173, 173);
}

.cxsButton {
	-webkit-appearance: none;
}

iFrame.cxsFileUploadFrame {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

span.cxsFileUpload {
	margin-right: 10px;
	height: 34px;
	display: inline-block;
	width: 100px;
	cursor: pointer;
	position: relative;
	padding: 0px;
	line-height: 34px;
}

.cxsApplyButton, .cxsFieldType_textkernel .cxsFileUpload {
	color: rgb(255, 255, 255);
	background-color: rgb(51, 122, 183);
	border-color: rgb(46, 109, 164);
}

.cxsApplyButton:hover, .cxsFieldType_textkernel .cxsFileUpload:hover {
	color: rgb(255, 255, 255);
	background-color: rgb(40, 96, 144);
	border-color: rgb(32, 77, 116);
}

input#cxsApplyButton {
	margin-top: 25px;
}
		
.cxsFileWait {
	width:20px;
	height:20px;
	background-size:cover;
	display: inline-block;
}

.cxsFileName {
	display:inline-block;
	vertical-align: top;
	line-height: 30px;
}

.cxsRequired .cxsFieldLabel:after, .cxsRequired .cxsFieldAfterLabel:after {
	content:'*';
	color:#a00;
}

.cxsError .cxsFieldError {
	color: rgb(169, 68, 66);
	padding: 0px 15px 10px 0px;
	margin-bottom: 0px;
	box-sizing: border-box;
	margin-top: 5px;
	margin-right: 8px;
	margin-left: 0px;
	width: 100%;
	float: none;
}

#cxsLanguages {
	float: right;
	margin-bottom: 8px;
}
.cxsLanguage {
	padding: 5px;
	margin: 0px 2px;
	background-color: rgb(240, 240, 240);
	border-radius: 3px;
	color: rgb(160, 160, 160);
	cursor:pointer;
}
.cxsActiveLanguage {
	color: rgb(0, 0, 0);
	cursor:default;
}
.cxsFieldContainer {
	margin-bottom: 5px;
}
.cxsCheckboxes {
	display: inline-block;
}

.cxsSectionHeader {
	border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 10px;
    margin-top: 20px;
}

.cxsSectionIntro {
	margin-bottom: 10px;
	color: rgb(144, 144, 144);
}

#cxsOverlay{
	background-color:rgba(255,255,255,0.4);
}
.cxsCorrect .cxsField:not(.cxsCheckboxesField) {
	border-color:rgb(60, 118, 61);
}
/*
.cxsCorrect .cxsField:not(.cxsCheckboxesField):focus {
	border-color: rgb(43, 84, 44);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgb(103, 177, 104);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgb(103, 177, 104);
}
*/

.cxsError .cxsField:not(.cxsCheckboxesField) {
	border-color: rgb(169, 68, 66);
}
/*
.cxsError .cxsField:not(.cxsCheckboxesField):focus {
	border-color: rgb(132, 53, 52);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgb(206, 132, 131);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgb(206, 132, 131);
}
*/

/*
.cxsFieldName_privacyStatement .cxsFieldLabel {
	display: inline;
	margin-right: 10px;
	padding-left: 0px;
}
*/

.cxsJobRequirements label, .cxsQuestion label  {
	width: 100%;
	max-width: 100%;
	text-align: left;
	margin-bottom: 5px;
}

.cxsTextkernelSection .cxsNoTK {
	color: rgb(131, 131, 131);		
}

.cxsReadOnlyField {
	padding: 6px 0px;
	display: inline-block;
}

.cxsProgress {
	height: 14px;			
	width:70%;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: rgb(225, 225, 225);
	border-radius: 5px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	box-sizing: border-box;
	position: absolute;
	top: 10px;
    right: 0px;
}

.cxsProgress-bar {
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: rgb(255, 255, 255);
	text-align: center;
	background-color: rgb(51, 122, 183);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
	-webkit-background-size: 40px 40px;
	background-size: 40px 40px;
	box-sizing: border-box;
}

#cxsOverlay .cxsProgress {
	position:fixed;
	top:50%;
	left:50%;
	width: calc(100% -40px);
	max-width:560px;
	height:25px;
	transform: translate(-50%,-50%);
}

.cxsFileRemove {
	display:inline;
    margin-left: 10px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 0px 3px;
    border-radius: 3px;
    background-color: rgb(51, 122, 183);
    border: solid 1px rgb(46, 109, 164);
    text-Decoration:none;
}

.cxsFileRemove:hover {
    background-color: rgb(40, 96, 144);
    border-color: rgb(32, 77, 116);
}

.cxsFieldHelp {    
	color: rgb(115, 115, 115);
}

.cxsQuestion .cxsFieldHelp {    
    margin-left: 15px;
}

.cxsSpinner {	
	width:20px;
	height:20px;
	background-size:20px 20px;
	background-repeat: no-repeat;
	display:inline-block;
	margin-top:3px;
}

#cxsSpinner_submit.cxsSpinner {
	width:34px;
	height:34px;
	background-size:34px 34px;
	margin-top: 25px;
}

@media (min-width: 768px) {
	.cxsField, .cxsCheckboxes {
		width: 70%;
	}

	.cxsFieldLabel  {
		padding-top: 7px;
		margin-bottom: 0;
		text-align: right;
		padding-right: 15px;
		margin-right: 20px;
		width: 25%;
		max-width:200px;
	}

	.cxsFieldError {
		margin-left:220px;
	}

	.cxsFieldType_date .cxsdateField_d, .cxsFieldType_date .cxsdateField_m {
		width: 15%; 
	}

	.cxsFieldType_date .cxsdateField_y {
		width: 30%;
	}

	.cxsFieldType_date .cxsSeperator {
		text-align: center;
		width: 5%;
		display: inline-block;
	}

	.cxsError .cxsFieldError, .cxsFieldHelp {
		width: 70%;
		margin-left: 30%;
    	margin-left: calc(30% - 9px);
	}

	.cxsFieldType_radio.cxsError .cxsFieldError {
		margin-left: 0px;
	}

	.cxsRadios {
		/* margin-left: calc(30% - 10px); */
		margin-top:2px;
	}
	.cxsQuestion .cxsField {
		margin-left: 15px;
	}

	.cxsQuestion .cxsFieldError {
		margin-left: 15px;
	}

	.cxsQuestion.cxsError .cxsFieldError {
		width: 100%;		
		float: none;
	}
	
	.cxsFieldType_percent .cxsField {
		width: calc(70% - 16px);
	}

	.cxsFieldType_checkbox .cxsFieldLabel{
		padding-top: 0px;
	}
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaContainer {
    text-align:left;
    border: 0;
    margin-top: 10px;
    position:relative;
}

.cxsAutoCompleteCriteria .cxsCriteriaResults {
    position: absolute;
    max-height: 200px;
    overflow: auto;
    width: 374.5px;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    padding: 5px 5px;
    z-index: 10;
    margin-left: 0px;
    border-radius: 0 0 5px 5px;
    margin-top: -3px;
    border: 1px solid rgb(204, 204, 204);
    border-top: 0;
    border-color: rgb(102, 175, 233);
    outline: 0;
    box-shadow: 0px 1px 1px rgba(0,0,0,.075), 0 1px 1px rgba(102, 175, 233, .6);
}

.cxsAutoCompleteCriteria .cxsCriteriaResultType {
    color: rgb(144, 144, 144);
    cursor:default;
}

.cxsAutoCompleteCriteria .cxsCriteriaResultValue {
    padding-left: 10px;
    cursor:pointer;
}

.cxsAutoCompleteCriteria .cxsCriteriaResultValue:hover {
    background-color: rgb(126, 189, 251);
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaSelect option.cxsAutoCompleteCriteriaSelected {
    display:none;
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaFirstLast .cxsAutoCompleteCriteriaLevelRadioLabel {
    color:#000;
}

/*  START STYLING levels without FLEXBOX */

.cxsAutoCompleteCriteria .cxsLevelLine {
    display:none;
}

.cxsAutoCompleteCriteria  .cxsAutoCompleteCriteriaLevelRadioContainer {
    width: 100%;
    display: inline-block;
}

.cxsAutoCompleteCriteria input.cxsAutoCompleteCriteriaLevelRadio {
    display: inline-block;
    float: left;
}

.cxsAutoCompleteCriteria  .cxsAutoCompleteCriteriaLevelRadioLabel {
    display: inline-block;
}

/*  END STYLING levels without FLEXBOX */

@supports (display: flex) {
/*  START STYLING levels using FLEXBOX  */

    .cxsAutoCompleteCriteria .cxsLevelLine {
        position: absolute;
        width: calc(100% - 20px);
        height: 1px;
        background-color: rgb(224, 229, 238);
        top: 9px;
        left: 10px;
        z-index: 0;
        display:block;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevelRadioContainer {
        position: relative;
        z-index: 1;
        width: auto;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevelRadioLabel {
        position: absolute;
        white-space: nowrap;
        display:none;
        width: 100px;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        transform: translate(-40px,0);
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevel {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding-bottom: 20px;
        width: 93%;
        margin-top: 5px;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaType:hover .cxsAutoCompleteCriteriaFirstLast .cxsAutoCompleteCriteriaLevelRadioLabel {
        color: rgb(187, 187, 187);
        display: block;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaFirst .cxsAutoCompleteCriteriaLevelRadioLabel {
        text-align: left;
        transform: translate(-5px, 0px);
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLast .cxsAutoCompleteCriteriaLevelRadioLabel {
        text-align: center;
        transform: translate(-40px, 0px);
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevelRadioContainer:hover .cxsAutoCompleteCriteriaLevelRadioLabel {
        display: block;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevelRadioSelected .cxsAutoCompleteCriteriaLevelRadioLabel {
        display: block;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevel.cxsAutoCompleteCriteriaLevel_single .cxsLevelLine {
        top: 18px;
        left: 16px;
        width: calc(100% - 50px);
    }

    .cxsAutoCompleteCriteria input.cxsAutoCompleteCriteriaLevelRadio {
        float: none;
    }

/*  END STYLING levels using FLEXBOX  */
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevel_single {
    margin-top: 10px;
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaType .cxsAutoCompleteCriteriaLevel .cxsAutoCompleteCriteriaLevelRadioSelected .cxsAutoCompleteCriteriaLevelRadioLabel {
    color: rgb(0,0,0);
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaPill {
    background-color: rgb(255, 255, 255);
    margin-top: 10px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid rgb(224, 229, 238);
    position:relative;
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaPill.cxsAutoCompleteCriteriaPillwithoutLevels {
    display: inline-block;
    padding-right: 30px;
    margin-right: 5px;
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaType {
    padding: 10px;
    border-radius: 3px;
    border: 1px solid rgb(224, 229, 238);
    margin-top: 10px;
    position: relative;
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaLevel.cxsAutoCompleteCriteriaLevel_single {
    background-color: rgb(255, 255, 255);
    border: solid 1px rgb(224, 229, 238);
    padding: 10px 30px 30px 10px;
    width: 100%;
}

.cxsAutoCompleteCriteria .cxsPillRemove {
    /* close button style
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 0px 3px;
    border-radius: 3px;
    background-color: rgb(51, 122, 183);
    border: solid 1px rgb(46, 109, 164);
    line-height: 16px;
    */

    position: absolute;
    top: 5px;
    right: 5px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    line-height: 16px;
    font-weight: bold;
    opacity: 0.5;
    font-size: 12px;
    font-family: cursive;
    transition: .5s all;
}

.cxsAutoCompleteCriteria  .cxsPillRemove:hover {
    /* close button style
    background-color: rgb(40, 96, 144);
    border-color: rgb(32, 77, 116);
    */
    opacity: 1;
}

.cxsAutoCompleteCriteria  .cxsAutoCompleteCriteriaContainer legend {
    font-weight: bold;
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaArrow {
    position: absolute;
    top: 44px;
    left: calc(100% - 30px);
}

.cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaArrow:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 3.5px 0 3.5px;
    border-color: rgb(100, 100, 100) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    cursor:pointer;
}

.cxsAutoCompleteCriteria .cxsSearchCriteriaField:focus {
    border-radius: 4px 4px 0px 0px;
}

.cxsAutoCompleteCriteria .cxsCriteriaResultWithCursor {
    background-color:rgb(30,144,255);
    color:#fff;
}

@media (min-width: 768px) {
    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaSelect {
        margin: 0 30% 0 0;
    }

    .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaArrow {
        left: calc(70% - 25px);
    }
}

@-moz-document url-prefix() {
     .cxsAutoCompleteCriteria .cxsAutoCompleteCriteriaArrow {
         top: 24px;
     }
}

.cxsSubSection {
    border: 1px solid rgb(229, 229, 229);
    margin-bottom: 15px;
    padding: 10px;
    padding-bottom: 15px;
    border-radius: 3px;
}

.cxsSubSectionHeader {
    height: 25px;
}

.cxsSubSection .cxsSubSectionLabel {
    display:none;
}

.cxsSubSectionRemove {
    padding: 0px 5px;
    float: right;
    text-decoration: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    line-height: 16px;
    font-weight: bold;
    opacity: 0.5;
    font-size: 12px;
    font-family: cursive;
    transition: .5s all;
}

.cxsSubSectionRemove:hover {
    opacity: 1;
}

.cxsSubSectionAdd {
    display: inline;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 3px;
    background-color: rgb(51, 122, 183);
    border: solid 1px rgb(46, 109, 164);
    text-Decoration: none;
    padding: 6px 12px;
    transition: all 0.3s ease-in-out;
}

.cxsSubSectionAdd:hover {
    background-color: rgb(40, 96, 144);
    border-color: rgb(32, 77, 116);
}

.cxsAddSubSectionContainer {
    margin-bottom: 35px;
}

.cxsNewPill{
    animation: backBlinker 1s;
}

@keyframes backBlinker {
    0% { background-color: rgb(102, 175, 233);}
    100% {background-color: rgb(255, 255, 255);}
}