[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}
.hidden {
    display:none;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='number'],
input[type='url'],
input[type='file'],
textarea,
select:not(.no-style) {
    width:100%;
    padding:8px;
    height:40px;
    min-height:40px;
    border:1px solid #b7b7b7;
    border-radius:0;
    font-size:14px;
    margin-bottom:10px;
    background:transparent;
    /*-webkit-appearance: none;
    -webkit-border-radius: 0;*/
    box-sizing:border-box;
    font-family: GravityBook, Helvetica, Arial, sans-serif;
}
/*invalid form inputs*/
input[type='text'].ng-invalid.ng-touched,
input[type='email'].ng-invalid.ng-touched,
input[type='email'].ng-invalid-match,
input[type='password'].ng-invalid.ng-touched,
input[type='tel'].ng-invalid.ng-touched,
input[type='number'].ng-invalid.ng-touched,
input[type='url'].ng-invalid.ng-touched,
textarea.ng-invalid.ng-touched,
select.ng-invalid.ng-touched {
    border-color: #e00303;
    background-color:rgba(255,1,1,0.1);
}
.button:disabled,
button:disabled {
    -webkit-filter: grayscale(100%);
    /* filter: grayscale(100%); */
    filter: unset;
    cursor: not-allowed;
}
input.no-margin,
textarea.no-margin,
select.no-margin {
    margin: 0;
}

/***************
* dynamic placeholders *
****************/
.input-wrapper {
    position:relative;
    width:100%;
}
input[nh-placeholder] + label.placeholder,
textarea[nh-placeholder] + label.placeholder,
select[nh-placeholder] + label.placeholder,
.nh-placeholder-label.placeholder,
textarea[nh-placeholder] + grammarly-btn + label.placeholder {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    color: #666666;
    /*background-color:#FFFFFF;*/
    background-color:transparent;
    padding:0px;
    font-size:12px;
    font-weight: 400;
    letter-spacing: 0px;
    opacity:1;
    -webkit-transition: all 0.2s linear;
    transition:all 0.2s linear;
}
input[nh-placeholder] + label,
textarea[nh-placeholder] + label,
select[nh-placeholder] + label,
.nh-placeholder-label,
textarea[nh-placeholder] + grammarly-btn + label {
    position: absolute;
    top: 14px;
    left: 9px;
    -webkit-transform: translate(-2px, -22px);
            transform: translate(-2px, -22px);
    color: #202A58;
    background-color:#F7F7F7;
    padding:3px;
    cursor:text;
    font-size:10px;
    /*font-weight: 300;*/
    pointer-events: none;
    letter-spacing: 1px;
    -webkit-transition: all 0.2s linear;
    transition:all 0.2s linear;
    border:none;
    line-height: 1;
}
.white-section input[nh-placeholder] + label.placeholder,
.white-section textarea[nh-placeholder] + label.placeholder,
.white-section select[nh-placeholder] + label.placeholder,
.item-edit .details input[nh-placeholder] + label.placeholder,
.item-edit .details textarea[nh-placeholder] + label.placeholder,
.item-edit .details select[nh-placeholder] + label.placeholder {
    background: transparent;
}
.white-section input[nh-placeholder] + label,
.white-section textarea[nh-placeholder] + label,
.white-section select[nh-placeholder] + label,
.item-edit .details input[nh-placeholder] + label,
.item-edit .details textarea[nh-placeholder] + label,
.item-edit .details select[nh-placeholder] + label  {
    background: #FFFFFF;
}
.accordion-content input[nh-placeholder] + label,
.accordion-content textarea[nh-placeholder] + label,
.accordion-content select[nh-placeholder] + label {
    background: #FFFFFF;
}
select[nh-placeholder] + label.placeholder {
    pointer-events:none;
}

.radio {
    padding: 0.3125rem 1.25rem 0.3125rem 0;
    white-space: nowrap;
}
.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio input[type="radio"] + .radio-label {
    cursor: pointer;
    line-height: 1.7;
    display: flex;
    align-items: center;
}
.radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b7b7b7;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    margin-right: 0.3125rem;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.radio input[type="radio"]:checked + .radio-label:before {
    background-color: #fb8d00;
    -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

/*checkboxes*/
.checkbox {
    padding: 5px 30px 5px 0;
    display:inline-flex;
    max-width: 100%;
}
.checkbox input[type='checkbox'] {
  position:absolute;
  opacity:0;
}
.checkbox input[type='checkbox'] + label {
    /*font-size:12px;*/
    position:relative;
    cursor:pointer;
    overflow:hidden;
    /*white-space: wrap;*/
    white-space: nowrap;
    line-height:1.2;
    display: flex;
    align-items: center;
    padding-left:0;
    /*align-items: end;*/
}
.checkbox input[type='checkbox'] + label::before {
    content:"";
    border:1px solid #b7b7b7;
    font-size:18px;
    cursor:pointer;
    position:relative;
    width:1em;
    min-width:1em;
    height:1em;
    /*top:0.3em;*/
    /*left:-1.5em;*/
    display: inline-block;
    margin-right: 0.5em;
    -webkit-transition: all 0.2s linear;
    transition:all 0.2s linear;
}
.checkbox input[type='checkbox'] + label > span {
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.checkbox.no-label {
    padding-right:10px;
}
.checkbox.no-label input[type='checkbox'] + label::before {
    margin-right:0;
}
.checkbox.no-label.no-padding {
    /*padding-right: 0;*/
    padding: 0;
}
.checkbox input[type='checkbox'] + label::after {
    content:"\02713";
    color:#1f2a58;
    opacity:0;
    position:absolute;
    width:1em;
    height:1em;
    top: 0.3em;
    left: 0.4em;
    /*left: 0.3em;*/
    font-size:13px;
    line-height:1em;
    -webkit-transition: all 0.2s linear;
    transition:all 0.2s linear;
}
.checkbox.avatar input[type='checkbox'] + label::after {
    top: 0.7em;
}
.checkbox input[type='checkbox']:not(:disabled):checked:hover + label::before {
    border:1px solid #b7b7b7;
}
.checkbox input[type='checkbox']:not(:disabled):hover + label::after {
    opacity:0.2;
    -webkit-transition: all 0.2s linear;
    transition:all 0.2s linear;
}
.checkbox input[type='checkbox']:not(:disabled):checked:hover + label::after {
    opacity:1;
}
.checkbox input[type='checkbox']:checked + label::after {
    opacity:1;
    -webkit-transition: all 0.2s linear;
    transition:all 0.2s linear;
}
.checkbox input[type='checkbox']:disabled + label {
    color:#b7b7b7;
    cursor: not-allowed;
}
.disabled-text-color .checkbox input[type='checkbox']:disabled + label {
    color:#000000;
}
.checkbox input[type='checkbox']:disabled + label::before {
    pointer-events:none;
    cursor:not-allowed;
    border-color:#d9d9d9;
}

.checkbox input[type='checkbox'].ng-invalid.ng-touched + label::before,
.radio input[type="radio"].ng-invalid.ng-touched + .radio-label:before {
    border-color: #e00303;
    background-color: rgba(255,1,1,0.1);
}

.button-group {
    display: flex;
}

/*apply page*/
.cp-apply-form {
    margin: 10px 0 0 0;
}
.apply-process-attachments {
    display: flex;
    flex-wrap: nowrap;
    flex-direction:column;
}
.apply-process {
    width:100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom:10px;
}
.apply-process .input-wrapper input {
    margin:0;
}
.apply-attachments {
    width: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px 0 0 0;
}
.cp-apply-terms {
    margin-top:10px;
}

/*.cp-prod input[nh-placeholder] + label,
.cp-prod textarea[nh-placeholder] + label,
.cp-prod select[nh-placeholder] + label {
    background:transparent;
}
.cp-prod input[nh-placeholder] + label,
.cp-prod textarea[nh-placeholder] + label,
.cp-prod select[nh-placeholder] + label {
    background-color: rgba(255,1,1,0.3);
}*/
.cp-back-to-jobs, .cp-home-logout {
    position:absolute;
    top:10px;
    right:20px;
}

.cp-eeoc-gender-container,
.cp-eeoc-race-container {
    margin-top:20px;
}
.cp-ofccp-disability-container a {
    color:green;
}
.cp-ofccp-disability-container a:hover {
    border-color:green;
}
.eeoc-gender-select-container,
.eeoc-gender-race-title-container {
    display:flex;
    align-items:center;
    margin:10px 0;
    max-width:420px;
}
.eeoc-gender-select {
    max-width:300px;
    margin:0 10px 0 0;
}
.eeoc-required {
    padding:5px;
    background: #e1e1e1;
    font-size:14px;
    color:#000000;
    font-family: 'GravityBook', sans-serif;
    letter-spacing:0;
    margin:0 0 0 auto;
    position:relative;
    height:24px;
}
.eeoc-required .arrow {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #e1e1e1;
    position: absolute;
    left: -12px;
    top: 0px;
}
.cp-ofccp-disability-container {
    border: 1px solid #000000;
    padding: 10px;
    background-color: #FFFFFF;
}
.cp-ofccp-container,
.cp-ofccp-disability-container,
.cp-offcp-veteran-container h3,
.cp-ofccp-veteran-options {
    margin-top: 20px;
}
.ofccp-form-details {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.cp-ofccp-disability-container,
.cp-ofccp-disability-container h1 {
    color: #000000;
}
h1.box-title {
    border: 1px solid #000000;
    padding: 5px;
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin-top: 20px;
}
.disability-bullets ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap:0px 30px;
    margin: 10px 0 20px 16px;
}
.disability-bullets ul li {
    list-style-type: disc;
}
.ofccp-name-date-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    grid-gap: 20px;
}
label.ofccp-label {
    width: 100%;
    text-align: center;
    display: block;
    border-top: 1px solid #000000;
    padding: 5px;
    background:transparent !important;
}
input#ofccp-date {
    background: #FFFFFF;
}

/*description*/
.cp-description-container,
.cp-apply-container,
.cp-password {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    box-sizing: border-box;
}
.cp-benefits,
.cp-shifts {
    display: flex;
    flex-wrap: wrap;
    margin:10px 0;
    /* padding-bottom:10px;
    border-bottom:1px solid #e3e3e3; */
}
.cp-benefit,
.cp-shift {
	display: flex;
    align-items: center;
    margin-right: 15px;
}
.cp-benefit::last-of-type,
.cp-shift::last-of-type {
    margin-right: 0;
}
.checkmark {
    font-size:22px;
    color:#fb8d00;
    margin-right:5px;
}
.cp-job-description-location {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 10px;
}
.cp-job-description-separator {
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 10px;
}
.cp-job-description li {
    line-height:1.3;
}
.cp-job-description div {
    line-height: 1.3;
}
/*share*/
.cp-share-buttons a {
    display: inline-flex;
}
.cp-share-buttons a:hover {
    border-color:transparent;
}
.cp-share-container {
    /*border:1px solid #e3e3e3;*/
    /*margin-top:10px;*/
    display:inline-flex;
    flex-direction:column;
    transition:all 0.2s linear;
}
.cp-share-container.active {
    border-bottom:none;
}
.cp-share-widget-title {
    background:#e3e3e3;
    padding:10px;
    margin-bottom:0;
}
/*.cp-share-buttons {
    padding:10px;
}*/
.cp-email-share {
    margin: 0 0 10px 0; 
    width: 100%;
    max-width:500px;
    border: 1px solid #e3e3e3;
    padding: 10px;
    box-sizing: border-box;
}
textarea#cp-es-comments {
    resize: none;
    height: 66px;
}
/*apply page*/
.cp-apply-form {
	margin:10px 0 0 0;
}
.cp-apply-buttons {
	margin-bottom:10px;
    display: flex;
    align-items: flex-start;
    flex-wrap:wrap;
}
.cp-apply-buttons .cp-apply-icon,
.cp-share-buttons .cp-share-icon {
	cursor:pointer;
    margin-right: 5px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition:all 0.2s linear;
}
.cp-apply-buttons .cp-apply-icon {
    margin: 0 10px 0 0;
    height: auto;
    display: block;
    width: 63px;
}
.cp-apply-buttons .cp-apply-icon:first-of-type {
    margin-bottom:10px;
}
.cp-apply-buttons .cp-apply-icon:hover,
.cp-share-buttons .cp-share-icon:hover,
.cp-share-buttons .cp-share-icon.active {
    -webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
    filter: grayscale(0);
}
.cp-apply-buttons .cp-apply-icon:last-child,
.cp-share-buttons .cp-share-icon:last-of-type {
    margin-right: 0;
}
/*apply questions*/
.cp-apply-questions-container {
    margin-top: 10px;
}
.cp-apply-question {
    margin-bottom: 10px;
}
.cp-question-title {
    margin-bottom:5px;
    font-size:0.875rem;
}
.cp-question-options.yes-no {
    display: flex;
}
.cp-question-options.select-all-that-apply {
    display: flex;
    flex-direction: column;
}
.cp-apply-question textarea {
    resize: none;
    height: 66px;
}
.cp-attachment-label {
    width: 100%;
    height: 40px;
    border: 1px solid #b7b7b7;
    background:#FFFFFF;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    padding: 0 0 0 10px;
    box-sizing:border-box;
    color:#666666;
}
.cp-attachment-label .remove-icon {
    margin-left:auto;
}
.cp-attachment-file-icon {
    margin-right:10px;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
fieldset.cp-ea-fieldset {
    display: flex;
    flex-direction: column;
}
.cp-employment-status-container {
    margin-top:10px;
}
.cp-employment-status-select {
    margin-bottom:0;
}

/***************
* ajax search results *
****************/
.ajax-search-results {
    position:absolute;
    top: 40px;
    left:0;
    width:100%;
    background:#FFFFFF;
    -webkit-box-shadow: 1px 1px 1px #b7b7b7;
            box-shadow: 1px 1px 1px #b7b7b7;
    z-index: 100;
    margin:0;
    padding:0;
}
.ajax-search-result {
    padding:5px;
    border:1px solid #b7b7b7;
    border-bottom:none;
    display:flex;
    align-items:center;
    margin:0;
    line-height: 1.5;
    white-space: normal;
    color: #000;
}
.ajax-search-result:last-of-type {
    border-bottom:1px solid #b7b7b7;
}
.ajax-search-result:hover {
    cursor:pointer;
    background:#F1F1F1;
}
.ajax-search-result.no-result {
    color: red;
    justify-content: center;
}
.ajax-search-result.no-result:hover {
    background: #FFFFFF;
    cursor:not-allowed;
}

/*talent pool*/
.cp-talent-pool-box {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    width:100%;
    flex:1;
    line-height:1.25;
    padding:20px;
    border:none;
    box-sizing:border-box;
    background-color:#25569C;
    color:#FFFFFF;
}
.cp-talent-pool-box:hover {
    border:none;
}
.cp-talent-pool-box span {
    width: 100%;
    text-align: center;
}
.cp-tp,
.cp-resume {
    font-family: GravityBold, Helvetica, Arial, sans-serif;
    font-size:24px;
}
.cp-tp {
    border-bottom:1px solid #FFFFFF;
    padding-bottom:10px;
    margin-bottom:10px;
}
.cp-small {
    font-size:12px;
}
.cp-custom-tp-text {
    font-size:15px;
    text-transform:uppercase;
    font-weight:600;
    margin-top:10px;
}

/*layout for custom default layout*/
.cp-custom-default-container {
    display:flex;
    padding:10px;
}
.cp-custom-default-main {
    margin-right:10px;
    flex:1;
}
.cp-custom-default-sidebar {
    width:330px;
    display:flex;
    flex-direction:column;
}

/*search*/
.cp-jobs-search {
    display: flex;
    flex-wrap: nowrap;
}
.cp-search-location {
    margin: 0 10px 0 10px;
}

/*jobs*/
.cp-job-row {
    border: 1px solid #e3e3e3;
    margin-bottom: 5px;
    background: #FFFFFF;
}
a.cp-jobs-link:hover {
    border: none;
    background: #e3e3e3;
}
.cp-jobs-link .job-location {
    margin-left: auto;
    text-align: right;
}
.cp-share-buttons {
    margin-bottom: 10px;
}
.cp-apply-buttons .cp-apply-icon,
.cp-share-buttons .cp-share-icon {
    cursor: pointer;
    margin-right: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.2s linear;
}
.cp-share-buttons a {
    display: inline-flex;
}

/* Google Picker API */
#googleapi_frame, #onedriveapi_frame {
	width: 0px;
	height: 0px;
	display: none;
	visibility: hidden;
}
#googleapi_button_frame, #onedriveapi_button_frame {
	width: 63px;
	height: 63px;
	margin: 0px 5px 0px 0px;
	max-height: 63px;
}
#onedriveapi_button_frame {
	margin: 0px;
}

.picker-dialog-frame{width:100%;height:100%;border:0;overflow:hidden}.picker-dialog-bg{position:absolute;top:0;left:0;background-color:#fff;z-index:1000}.picker-dialog{position:absolute;top:0;left:0;background-color:#fff;border:1px solid #acacac;width:auto;padding:0;z-index:1001;overflow:auto;-moz-box-shadow:rgba(0,0,0,.2) 0 4px 16px;-webkit-box-shadow:rgba(0,0,0,.2) 0 4px 16px;box-shadow:rgba(0,0,0,.2) 0 4px 16px}.picker-dialog-content{font-size:0;padding:0}.picker-dialog-title,.picker-dialog-buttons{display:none}

/* Indeed */
.indeed_wrapper {
	display: inline-block;
	position: relative;
	margin-right: 10px;
}
.indeed_wrapper:hover .cp-apply-icon {
	filter: grayscale(0);
}
.indeed-apply-widget {
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	opacity: 0;
	position: absolute !important;
	cursor: pointer;
	overflow: hidden;
}
.indeed-apply-widget * {
	opacity: 0;
}

/* Monster */
#monster_button_wrapper {
	display: none;
}

.cp-eeoc-container .radio input[type='radio'] + label > span,
.cp-ofccp-container .radio input[type='radio'] + label > span {
    white-space: normal;
}

/* applications */
.application-section {
  padding: 10px;
  background-color: #FFFFFF;
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
}
.application-section .application-element {
  border:none;
  padding:0;
  margin:0 0 10px 0;
  cursor:default;
}
.application-section .application-element:disabled {
  cursor:not-allowed;
}
.application-pages {
  font-size:11px;
  text-align:right;
  color:#666666;
}
.application-element input:disabled,
.application-element textarea:disabled,
.application-element select:disabled {
  pointer-events: unset;
}
.application-element-label{ 
  font-size: 0.90625rem;
  line-height: 1.3;
}
.application-section .cp-eeoc-gender-container {
  margin-top: 0;
}

/*login page*/
.employee-login-logo {
  display:flex;
  flex:1;
}
.employee-login-logo img {
  margin: 0 auto 10px auto;
}

/*language select*/
.language-select-container {
    display:  flex;
    justify-content: center;
}
#defaultLanguageOverride {
    min-width: 120px;
    max-width: 160px;
    margin-bottom:  0;
}

/*new pagination*/
.cp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
a.cp-pagination-button {
    padding: 5px;
    border: 1px solid #e3e3e3;
    color: #000000;
    width: 30px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    border-right: none;
    transition: all 0.3s linear;
}
a.cp-pagination-button:hover {
    background-color: #e3e3e3;
}
a.cp-pagination-button.previous {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
a.cp-pagination-button.next {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 1px solid #e3e3e3;
}
a.cp-pagination-button.cp-current-page {
    background-color: #e3e3e3;
    font-weight: 800;
}
.cp-pagination .results {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.cp-pagination .showing {
    margin-left: 10px;
    display: flex;
    align-items: center;
}
.pagination-result-options {
    margin-right: 5px;
    border: 1px solid #e3e3e3 !important;
}
.pagination-page-options {
    margin: 0 5px;
    border: 1px solid #e3e3e3 !important;
}


@media screen and (max-width: 500px){
  .cp-apply-buttons {
    align-items: center;
  }
  .cp-apply-buttons .cp-apply-icon {
    width: 50px;
  }
  .disability-bullets ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #googleapi_button_frame {
    width: 50px;
    height: 50px;
    max-height: 50px;
  }
  .cp-search-location {
    margin: 0;
  }
  .preview-7,
  .cp-layout-7 {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: max-content max-content;
    grid-template-areas:
      "widget-one"
      "widget-two"
      "widget-three";
  }
}
@media screen and (max-width: 414px){
  .apply-process,
  .apply-attachments {
    grid-template-columns: 1fr;
  }
  .cp-apply-buttons {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 10px;
  }
  .cp-apply-buttons .cp-apply-icon {
    margin: 0;
    width: 100%;
  }
  .apply-attachments {
    width: 100%;
    display: grid;
    grid-gap: 0;
  }
  #googleapi_button_frame {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .cp-pagination .results,
  .cp-pagination .showing {
    display: none;
  }
}

