@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Montserrat&subset=latin,latin-ext');

:root {
  --modern-blue-1: #286090;
  --modern-blue-2: rgba(0, 154, 228, .5);
  --modern-green-1: #2dd87d;
  --modern-text-color-1: #424242;
  --modern-text-color-2: #000;
  --modern-grey1: #f9f9f7;
  --modern-grey2: #505656;
  --modern-danger-background: #f1c2c2;
  --modern-danger-text: #821e1e;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

form {
  margin-bottom: 0;
}

body {
  color: var(--modern-text-color-1);
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

p {
  font-size: 1em;
  color: var(--modern-text-color-1);
  line-height: 1.9em;
  margin: 0 0 0.7em;
}

li {
  margin-bottom: 0.5em;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.8em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #303336;
  font-style: normal;
  line-height: 1.17em;
  margin: 0 0 15px;
}

a, a:visited {
  color: #2db4d8;
  font-weight: 400;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 28px;
  letter-spacing: -0.05em;
}

h2 {
  font-size: 20px;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 16px;
  letter-spacing: -0.05em;
}

h4 {
  font-size: 13px;
  letter-spacing: -0.05em;
}

h5 {
  font-weight: 400;
  font-size: 11px;
}

h6 {
  font-weight: 300;
  font-size: 11px;
}

blockquote {
  border-left: 4px solid #f5f5f5;
  padding: 15px;
  margin: 15px;
}

@media (min-width: 768px) {
  p {
    font-size: 1em;
  }
  p.small {
    font-size: 14px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 17px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 12px;
  }
  h6 {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  p {
    font-size: 1em;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 15px;
  }
  h5 {
    font-size: 13px;
  }
  h6 {
    font-size: 13px;
  }
}

.light {
  p, label, ul, li {
    color: #7a7a7a;
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--modern-grey2);
  }
}

/*buttons*/
a.button {
  display: inline-block;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  color: #fff;
}

a.button.button1 {
  border: 1px solid rgba(80, 86, 86, .5);
  background: transparent;
  color: var(--modern-grey2);
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button.button1:hover {
  border: 1px solid var(--modern-grey2);
  background: var(--modern-grey2);
  color: #f2f2f1;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button.button2 {
  border: 1px solid var(--modern-blue-2);
  background: transparent;
  color: #2db4d8;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button.button2:hover {
  border: 1px solid #2db4d8;
  background: #2db4d8;
  color: #fff;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button.button3 {
  border: 1px solid rgba(45, 216, 125, .5);
  background: transparent;
  color: var(--modern-green-1);
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button.button3:hover {
  border: 1px solid var(--modern-green-1);
  background: var(--modern-green-1);
  color: #fff;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

a.button.button4 {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
}

a.button.button4:hover {
  background: rgba(255, 255, 255, .1);
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

.block-job-description h3 {
  font-size: 24px;
}

.block-jobs h3 {
  font-size: 24px;
  small {
    font-size: 100%;
  }
}

.btn {
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  line-height: 1.5;
}

.btn-primary {
  border: 1px solid rgba(80, 86, 86, .5);
  background: transparent;
  color: var(--modern-grey2);
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
  border: 1px solid rgba(80, 86, 86, .5);
  background: white;
  color: var(--modern-grey2);
}

.btn-info, a.btn-info, a.btn-info:visited,
.btn-warning, a.btn-warning, a.btn-warning:visited,
.btn-danger, a.btn-danger, a.btn-danger:visited {
  color: white;
}

.form-control {
  color: var(--modern-text-color-2);
  border-radius: 0;
}

.label {
  border-radius: 0;
}

.label-primary {
  background-color: var(--modern-blue-1);
}

.label-success {
  background-color: var(--modern-green-1);
}

.label-info {
  background-color: var(--modern-blue-2);
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: var(--modern-blue-1);
  border-color: var(--modern-blue-1);
}

.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span {
  border-radius: 0;
}

.input-group-addon {
  border-radius: 0;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-radius: 0;
}

.badge {
  background-color: var(--modern-blue-1);
  border-radius: 0;
  color: white;
}

.error-explanation {
  background-color: var(--modern-danger-background);
  li, h6 {
    color: var(--modern-danger-text);
  }
}

.easy-autocomplete-container ul {
  .eac-category {
    background-color: var(--modern-grey1);
  }
  .eac-item {
    a, a:visited {
      color: var(--modern-blue-2);
    }
  }
}

.job-search-filter-groups {
  background-color: var(--modern-grey1);
}


.job-search-results {
  .clear-filters {
    font-size: 75%;
  }

  .job-search-tags-wrapper {
    background-color: var(--modern-grey1);
    padding: 1em;
    margin-bottom: 20px;
    .job-search-tags {
      margin-top: 5px;
    }
  }

  input.form-control {
    border-radius: 0;
  }
}

.modal-header {
  border-bottom: 0;
}

.modal-content {
  border-radius: 0;
}

.modal-footer {
  border-top: 0;
}

.candidate-settings-panel {
  background-color: var(--modern-grey1);
  padding: 20px;
}

/* autocomplete */

.selectize-input {
  border-radius: inherit;
  > input {
    font-size: 14px;
  }
}

.selectize-input.dropdown-active {
  border-radius: inherit;
}

.selectize-dropdown {
  border-radius: inherit;
  .active {
    color: #ffffff;
    background-color: var(--modern-blue-1);
  }
}

.selectize-dropdown.form-control {
  border-radius: inherit;
}

.selectize-control.multi .selectize-input > div {
  background-color: var(--modern-blue-1);
  color: #fff;
  font-size: 80%;
  padding: 1px 5px;
  border-radius: inherit;
}

.alert {
  border-radius: 0;
}

@media (min-width: 768px) {
  a.button {
    padding: 12px 35px;
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  a.button {
    padding: 15px 45px;
    font-size: 13px;
  }
}

.input-group input, .input-group-btn button {
  height: 35px;
  padding: 8px 12px;
}

@media (min-width: 576px) {
  .side-panel {
    .posts-cards-cols {
      column-count: 1;
    }
  }
}

.block-blog-search-results {
  .card-footer {
    background-color: inherit;
  }

  .post-author-image {
    .post-avatar {
      background: var(--modern-grey1);
    }
  }
}

/* nudge */