/* **** EXTRA WIDE CONTAINER **** */
@import url("https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700");
/* line 2, ../scss/_layout.scss */
.container.wide {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  /* line 9, ../scss/_layout.scss */
  .container.wide {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 14, ../scss/_layout.scss */
  .container.wide {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 19, ../scss/_layout.scss */
  .container.wide {
    width: 100%;
    max-width: 66%;
  }
}
@media (min-width: 1599px) {
  /* line 25, ../scss/_layout.scss */
  .container.wide {
    width: 100%;
    max-width: 56%;
  }
}
/* NO GUTTERS */
/* line 33, ../scss/_layout.scss */
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 37, ../scss/_layout.scss */
.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* ------------------------------
Icons
--------------------------------*/
/* ------------------------------
Typography
--------------------------------*/
/* line 6, ../scss/_typography.scss */
html,
body {
  height: 100% !important;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  font-size: 12px;
}
@media (min-width: 768px) {
  /* line 6, ../scss/_typography.scss */
  html,
  body {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  /* line 6, ../scss/_typography.scss */
  html,
  body {
    font-size: 16px;
  }
}

/* line 23, ../scss/_typography.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #1A2531;
}

/* line 34, ../scss/_typography.scss */
ul,
ol,
p {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  color: #1A2531;
}
/* line 41, ../scss/_typography.scss */
ul strong,
ol strong,
p strong {
  font-weight: 600;
}

/* line 46, ../scss/_typography.scss */
h2 {
  font-weight: 500;
}

/* ------------------------------
Buttons
--------------------------------*/
/* line 5, ../scss/_buttons.scss */
.btn {
  border-radius: 0;
  border: none;
  padding: 15px 60px 15px 20px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  text-align: left;
}
/* line 14, ../scss/_buttons.scss */
.btn-search {
  background-image: url(../img/icons/search-white--padding-right.svg), linear-gradient(-135deg, #FF6F00 0%, #E91E63 100%) !important;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: right;
  background-size: 40px, auto;
}
/* line 22, ../scss/_buttons.scss */
.btn:after {
  content: '';
  background-image: url("../img/icons/arrow-sm-grey.svg");
  height: 10px;
  width: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  transition: all 0.2s;
}
/* line 37, ../scss/_buttons.scss */
.btn:hover, .btn :focus, .btn :active {
  outline: none;
  box-shadow: none;
}
/* line 43, ../scss/_buttons.scss */
.btn:hover:after {
  right: 20px;
  transition: all 0.2s;
}

/* line 51, ../scss/_buttons.scss */
.btn-primary {
  background-image: linear-gradient(-135deg, #FF6F00 0%, #E91E63 100%);
  background-color: transparent;
  color: #ffffff;
}
/* line 55, ../scss/_buttons.scss */
.btn-primary::after {
  background-image: url("/img/icons/arrow-sm-white.svg");
}
/* line 59, ../scss/_buttons.scss */
.btn-primary:active, .btn-primary :focus {
  border: none !important;
  background-image: linear-gradient(-135deg, #FF6F00 0%, #E91E63 100%) !important;
  background-color: #FF6F00 !important;
  box-shadow: none !important;
}
/* line 66, ../scss/_buttons.scss */
.btn-primary:hover {
  border: none;
  background-color: transparent;
}

/* line 72, ../scss/_buttons.scss */
.btn-secondary {
  background-color: #FF6F00;
  color: #ffffff;
}
/* line 75, ../scss/_buttons.scss */
.btn-secondary::after {
  background-image: url("/img/icons/arrow-sm-white.svg");
}
/* line 78, ../scss/_buttons.scss */
.btn-secondary:hover {
  background-color: #FF6F00;
}

/* line 83, ../scss/_buttons.scss */
.btn-tertiary {
  color: #273846;
  background-color: #ffffff;
}
/* line 86, ../scss/_buttons.scss */
.btn-tertiary::after {
  background-image: url("/img/icons/arrow-sm-black.svg");
}
/* line 89, ../scss/_buttons.scss */
.btn-tertiary:hover {
  color: #273846;
}

/* line 94, ../scss/_buttons.scss */
.btn-search {
  width: 100%;
}
/* line 96, ../scss/_buttons.scss */
.btn-search::after {
  height: 20px;
  width: 20px;
  background-image: url("/img/icons/search-white.svg");
}

/* line 103, ../scss/_buttons.scss */
.btn-ghost-primary {
  background: none;
  border: 1px solid #FF6F00;
  color: #FF6F00;
}
/* line 107, ../scss/_buttons.scss */
.btn-ghost-primary::after {
  background-image: url("/img/icons/arrow-sm.svg");
}
/* line 110, ../scss/_buttons.scss */
.btn-ghost-primary:hover {
  color: #FF6F00;
}

/* line 115, ../scss/_buttons.scss */
.btn-ghost-secondary {
  background: none;
  border: 1px solid #273846;
  color: #273846;
}
/* line 119, ../scss/_buttons.scss */
.btn-ghost-secondary::after {
  background-image: url("/img/icons/arrow-sm-black.svg");
  transition: all 0.2s;
}
/* line 122, ../scss/_buttons.scss */
.btn-ghost-secondary:hover {
  color: #FF6F00;
  border: 1px solid #FF6F00;
}

.btn-ghost-secondary:hover:after {
  background-image: url("/img/icons/arrow-sm.svg");
  transition: all 0.2s;
}

.container + .btn-ghost-secondary {
    margin-bottom: 2rem;
    margin-left: 15px;
}

/* line 127, ../scss/_buttons.scss */
.btn-ghost-white {
  background: none;
  border: 1px solid white;
  color: #ffffff;
}
/* line 131, ../scss/_buttons.scss */
.btn-ghost-white::after {
  background-image: url("/img/icons/arrow-sm-white.svg");
}
/* line 134, ../scss/_buttons.scss */
.btn-ghost-white:hover {
  color: #ffffff;
}

/* clear bootstrap crap */
/* line 141, ../scss/_buttons.scss */
.btn-primary.focus, .btn-primary:focus {
  box-shadow: none;
}

.btn-back {
  background: none;
  border: 1px solid #787b7e;
  color: #787b7e;
  padding: 15px 20px 15px 60px;
}

.btn-back:after {
  content: '';
  background-image: url("../img/icons/arrow-sm-grey.svg");
  height: 10px;
  width: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  left: 25px;
  transition: all 0.2s;
}

.btn-back:hover {
    color: #1a2530;
    border: 1px solid #1a2530;
    transition: all 0.2s;
}

.btn-back:hover:after {
    left: 20px;
    transition: all 0.2s;
}

section.profile .contact-options a.btn-back {
    background: none;
    border: 1px solid #787b7e;
    color: #787b7e;
    padding: 15px 20px 15px 60px;
    
}

section.profile .contact-options a.btn-back:hover {
    color: #1a2530;
    border: 1px solid #1a2530;
    transition: all 0.2s; 
}

label.btn input[type="submit"] {
    display: none;
}

/* ------------------------------
Forms
--------------------------------*/
/* ***** FORM VALIDATION MESSAGES ****** */
/* line 13, ../scss/_forms.scss */
.field-validation-error,
.field-validation-valid,
.validation-summary-errors {
  /* DEFAULT STYLES FOR VALIDATION MESSAGES - CLASS BASED ON DEV REQUIREMENTS */
}

/* line 19, ../scss/_forms.scss */
.form-group {
  margin-bottom: 0;
}
/* line 21, ../scss/_forms.scss */
.form-group .form-control {
  border-radius: 0px;
  border: 1px solid #273846;
  margin-right: 30px;
  background-color: #FFFFFF;
  min-height: 50px;
}
.form-group .form-control:hover {
    border: 1px solid #a74900;
    transition: all 0.15s;
}

/* line 27, ../scss/_forms.scss */
.form-group .form-control::placeholder {
  color: #273846;
}
/* line 30, ../scss/_forms.scss */
.form-group .form-control:active, .form-group .form-control:focus {
  border-color: #FF6F00;
  outline: none;
  box-shadow: none;
}

/* line 39, ../scss/_forms.scss */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 15px;
}
@media (min-width: 768px) {
  /* line 39, ../scss/_forms.scss */
  .contact-form-grid {
    grid-gap: 20px;
  }
}
/* line 47, ../scss/_forms.scss */
.contact-form-grid .form-control {
  height: 100%;
  min-height: 50px;
}
/* line 51, ../scss/_forms.scss */
.contact-form-grid .span-2 {
  grid-column: span 2;
}
/* line 54, ../scss/_forms.scss */
.contact-form-grid .btn {
  width: 155px;
  grid-column-start: 1;
}

/* ======= Custom checkboxes ============ */
/* line 62, ../scss/_forms.scss */
.form-check {
  padding: 0;
}

/* The container */
/* line 67, ../scss/_forms.scss */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
/* line 81, ../scss/_forms.scss */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* line 89, ../scss/_forms.scss */
.checkbox-container a {
  color: #FF6F00;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.15s;
}
/* line 93, ../scss/_forms.scss */
.checkbox-container a:hover {
  border-bottom: 1px solid #FF6F00;
  transition: border-bottom 0.15s;
}

/* Create a custom checkbox */
/* line 100, ../scss/_forms.scss */
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: transparent;
  border: 1px solid #787B7E;
  transition: all 0.15s;
}

/* On mouse-over, add a grey background color */
/* line 112, ../scss/_forms.scss */
.checkbox-container:hover input ~ .checkmark {
  background-color: #EFF0F1;
  transition: all 0.15s;
}

/* Create the checkmark/indicator (hidden when not checked) */
/* line 118, ../scss/_forms.scss */
.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.15s;
}

/* Show the checkmark when checked */
/* line 126, ../scss/_forms.scss */
.checkbox-container input:checked ~ .checkmark:after {
  opacity: 1;
  transition: all 0.15s;
}

/* Style the checkmark/indicator */
/* line 132, ../scss/_forms.scss */
.checkbox-container .checkmark:after {
  content: "";
  background-color: #FF6F00;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  transition: all 0.15s;
}

/* ======= Job Search ========= */
/* line 147, ../scss/_forms.scss */
form.job-search {
  height: 100%;
}
/* line 149, ../scss/_forms.scss */
form.job-search .form-group {
  height: 100%;
}
/* line 151, ../scss/_forms.scss */
form.job-search .form-group .form-control {
  background: #ffffff;
  height: 100%;
}
/* line 154, ../scss/_forms.scss */
form.job-search .form-group .form-control::placeholder {
  color: #273846;
}

/* ======= Custom FileUpload ========= */
/* line 164, ../scss/_forms.scss */
.bootstrap-filestyle .btn-upload {
  border: 1px solid #273846;
  padding: 15px 20px;
}
/* line 166, ../scss/_forms.scss */
.bootstrap-filestyle .btn-upload::after {
  content: none;
}
/* line 170, ../scss/_forms.scss */
.bootstrap-filestyle .btn-upload:hover {
  background-color: #273846;
  color: #ffffff;
}
/* line 175, ../scss/_forms.scss */
.bootstrap-filestyle .form-control {
  border: none;
  width: auto;
  height: auto;
  min-height: auto;
  margin: 0;
}

/* line 185, ../scss/_forms.scss */
.apply-form .row .col-12 {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 185, ../scss/_forms.scss */
  .apply-form .row .col-12 {
    margin-bottom: 30px;
  }
}

/* line 194, ../scss/_forms.scss */
.checkbox-wrap, .radio-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  float: left;
  min-height: 20px;
  margin-top: 0;
  padding-top: 0;
}

/* Base for label styling */
/* line 205, ../scss/_forms.scss */
.sidebar {
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
  /* checked mark aspect */
}
/* line 208, ../scss/_forms.scss */
.sidebar [type="checkbox"]:not(:checked),
.sidebar [type="checkbox"]:checked,
.sidebar [type="radio"]:not(:checked),
.sidebar [type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
/* line 215, ../scss/_forms.scss */
.sidebar [type="checkbox"]:not(:checked) + label,
.sidebar [type="checkbox"]:checked + label,
.sidebar [type="radio"]:not(:checked) + label,
.sidebar [type="radio"]:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  margin-bottom: .75rem;
}
/* line 225, ../scss/_forms.scss */
.sidebar [type="checkbox"]:not(:checked) + label:before,
.sidebar [type="checkbox"]:checked + label:before,
.sidebar [type="radio"]:not(:checked) + label:before,
.sidebar [type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 25px;
  height: 25px;
  border: 1px solid #787B7E;
  background: #fff;
}


/* line 239, ../scss/_forms.scss */
.sidebar [type="checkbox"]:not(:checked) + label:after,
.sidebar [type="checkbox"]:checked + label:after,
.sidebar [type="radio"]:not(:checked) + label:after,
.sidebar [type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
/* line 252, ../scss/_forms.scss */
.sidebar [type="checkbox"]:not(:checked) + label:after,
.sidebar [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: opacity(0);
  transition: all 0.15s;
}
/* line 257, ../scss/_forms.scss */
.sidebar [type="checkbox"]:checked + label:after,
.sidebar [type="radio"]:checked + label:after {
  opacity: 1;
  transform: opacity(1);
  transition: all 0.15s;
}
/* line 263, ../scss/_forms.scss */
.sidebar [type="checkbox"]:disabled:not(:checked) + label:before,
.sidebar [type="checkbox"]:disabled:checked + label:before,
.sidebar [type="radio"]:disabled:not(:checked) + label:before,
.sidebar [type="radio"]:disabled:checked + label:before {
  box-shadow: none;
}
/* line 269, ../scss/_forms.scss */
.sidebar [type="checkbox"]:disabled:checked + label:after,
.sidebar [type="radio"]:disabled:checked + label:after {
  color: #999;
}
/* line 273, ../scss/_forms.scss */
.sidebar [type="checkbox"]:disabled + label,
.sidebar [type="radio"]:disabled + label {
  color: #aaa;
}
/* line 278, ../scss/_forms.scss */
.sidebar [type="checkbox"]:not(:checked) + label:after,
.sidebar [type="checkbox"]:checked + label:after,
.sidebar [type="radio"]:not(:checked) + label:after,
.sidebar [type="radio"]:checked + label:after {
  background: #FF6F00;
  width: 15px;
  height: 15px;
  margin: 5px 0 0 5px;
}

/* ------------------------------
Theme
--------------------------------*/

/*# sourceMappingURL=theme.css.map */


button.btn input[type="submit"],input[type="button"] {
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
    cursor: pointer;
}

button.btn input[type="submit"]:focus,input[type="button"]:focus {
    outline:0;
    background: none !important;
}

button.btn-primary input[type="submit"] {
    color: #FFFFFF;
}

span.field-validation-error {
    color: red;
    display: block;
    margin-top: 3px;
}
}