html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  outline: none;
}
body {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
/* bitters buttons */
input[type="submit"], .btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ed232e;
  border: 0;
  border-radius: 0.3rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  padding: 6.5px 15px;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  -webkit-transition: background-color 150ms ease;
  transition: background-color 150ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
input[type="submit"]:hover,
  input[type="submit"]:focus,
  .btn:hover,
  .btn:focus {
    /* background-color: shade(var(--action-color), 20%); */
    background-color: rgb(213, 32, 41);
    color: #fff;
  }
input[type="submit"]:disabled, .btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }
input[type="submit"]:disabled:hover, .btn:disabled:hover {
      background-color: #ed232e;
    }
/* end bitters buttons */
.btn {
  margin-bottom: 0.5em;
}
/* bitters forms */
fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}
legend {
  font-weight: 600;
  margin-bottom: 6.5px;
  margin-bottom: 0.65rem;
  padding: 0;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6.5px;
  margin-bottom: 0.65rem;
}
input,
select {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
}
input[type="text"], input[type="password"], select {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 6.5px;
  margin-bottom: 0.65rem;
  padding: 5px;
  padding: 0.5rem;
  -webkit-transition: border-color 150ms ease;
  transition: border-color 150ms ease;
  width: 100%;
}
input[type="text"]:hover, input[type="password"]:hover, select:hover {
    border-color: shade(#ddd, 20%);
  }
input[type="text"]:focus, input[type="password"]:focus, select:focus {
    border-color: #ed232e;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06),
  0 0 5px rgba(226, 18, 29, 0.7);
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06),
  0 0 5px rgba(226, 18, 29, 0.7);
    outline: none;
  }
input[type="text"]:disabled, input[type="password"]:disabled, select:disabled {
    background-color: shade(#fff, 5%);
    cursor: not-allowed;
  }
input[type="text"]:disabled:hover, input[type="password"]:disabled:hover, select:disabled:hover {
      border: 1px solid #ddd;
    }
/* end bitters forms */
form {
  margin-bottom: 1em;
}
textarea {
  resize: vertical;
}
input[type="text"]:focus, input[type="password"]:focus, select:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
input[type="text"], input[type="password"] {
  padding: 6px;
  padding: 0.6rem;
  padding-left: 9px;
  padding-left: 0.9rem;
  padding-right: 9px;
  padding-right: 0.9rem;
}
[type="search"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 3.25px;
  margin-right: 0.325rem;
}
[type="file"] {
  margin-bottom: 6.5px;
  margin-bottom: 0.65rem;
  width: 100%;
}
select {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  max-width: 100%;
  width: auto;
}
select {
  /*
  margin-bottom: 0.75em;
  */
}
input[type="text"], input[type="password"], select {
  float: right;
  margin-bottom: 0;
  width: 60%;
  font-family: Arial, Helvetica, sans-serif;
}
input[type="text"].fullwidth, input[type="password"].fullwidth, select.fullwidth {
    width: 100%;
  }
label {
  line-height: 2.5em;
  float: left;
  margin: 0;
}
label.label-radio {
    font-weight: 400;
    margin-right: 0.5em;
    float: right;
  }
label.hidden {
    display: none;
  }
label.no-float {
    float: none;
  }
label.header {
    background-color: #d0d0d0;
    border-radius: 0.3rem;
    padding-left: 1em;
  }
label.error {
    color: red;
    position: absolute;
    left: 0;
    top: 15px;
  }
input[type="checkbox"] {
  width: 2em;
  float: none;
}
input[type="radio"], input[type="checkbox"] {
  margin-top: -1px;
  vertical-align: middle;
}
.txt {
  display: inline-block;
  padding: 0.584em 0 1em 0;
  margin-bottom: 0;
}
.form-group {
  position: relative;
  clear: both;
  width: 100%;
  display: inline-block;
  min-height: 2.667em;
}
.form-group.align-right {
    text-align: right;
  }
.form-group h3 {
    float: left;
    line-height: 2.5em;
    margin: 0;
  }
.dropdown {
  margin: 0;
}
.dropdown dd, .dropdown dt {
    margin: 0;
    padding: 0;
  }
.dropdown dd {
    position: relative;
  }
.dropdown dd ul {
      z-index:1;
      background-color: white;
      border: 1px solid #ed232e;
      display: none;
      left: 0;
      padding: 0.5em;
      position: absolute;
      top: 2px;
      width: 100%;
      list-style: none;
      height: 150px;
      overflow: auto;
    }
.dropdown dd ul label {
        float: none;
        font-weight: 400;
        display: inline;
      }
.dropdown dt {
    background-color: #ed232e;
    border-radius: 3px;
    display: block;
    padding: 0 0.5em;
    overflow: hidden;
    border: 0;
    width: 100%;
    cursor: pointer;
  }
.dropdown dt span {
      color: white;
    }
.dropdown ul {
    margin: -1px 0 0 0;
  }
table {
  border-collapse: collapse;
  margin: 6.5px 0;
  margin: 0.65rem 0;
  table-layout: fixed;
  width: 100%;
}
th {
  border-bottom: 1px solid shade(#ddd, 25%);
  font-weight: 600;
  padding: 6.5px 0;
  padding: 0.65rem 0;
  text-align: left;
}
td {
  border-bottom: 1px solid #ddd;
  padding: 6.5px 0;
  padding: 0.65rem 0;
}
tr,
td,
th {
  vertical-align: middle;
}
.tabs {
  width: 100%;
}
.tab-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #5d5d5d;
}
.tab-links li {
    margin: 0 5px 0 0;
    margin: 0 0.5rem 0 0;
  }
.tab-links li a {
      color: rgb(232, 232, 232);
      padding: 0.75em 1em;
      background-color: rgb(142, 142, 142);
      border-top-left-radius: 4px;
      border-top-left-radius: .4rem;
      border-top-right-radius: 4px;
      border-top-right-radius: .4rem;
      display: block;
    }
.tab-links li a:hover {
        text-decoration: none;
        background-color: rgb(123, 123, 123);
      }
.tab-links li.active a {
      color: white;
      font-weight: 600;
      background-color: #5d5d5d;
    }
.tab-content {
  margin-top: 2em;
}
.tab-content .tab {
    display: none;
  }
.tab-content .tab.active {
      display: block;
    }
html {
  font-size: 62.5%;
}
body {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}
h1 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 1em;
}
h2 {
  font-size: 18px;
  font-size: 1.8rem;
}
h3 {
  font-size: 12px;
  font-size: 1.2rem
}
h4 {
  font-size: 12px;
  font-size: 1.2rem;
}
a {
  color: #ed232e;
}
a:hover, a:active, a:focus {
    color: #5d5d5d;
  }
a:hover {
    text-decoration: underline;
  }
a:focus {
    outline: 0;
  }
.admindetails .detaillink {
    cursor: pointer;
    margin: 0.5em 0;
  }
.admindetails .collapsed {
    display: none;
    padding: 1em;
    background-color: #d0d0d0;
  }
.applicant .pict {
        max-width: 30%;
    }
.applicant .info {
    position: absolute;
    top: 0;
    right: 0;
  }
.applicant .links {
    text-align: right;
  }
.applicant .cvlinked {
    margin: 2em 0;
  }
.applicant .link {
    width: 60%;
    float: right;
    line-height: 2.5em;
  }
table.applicants .col-select {
    width: 5%;
  }
table.applicants .col-name {
    width: 23%;
  }
table.applicants .col-email {
    width: 17%;
  }
table.applicants .col-available {
    width: 8%;
  }
table.applicants .col-date {
    width: 8%;
  }
table.applicants .col-applnr {
    width: 8%;
  }
table.applicants .col-type {
    width: 15%;
  }
table.applicants .col-cv {
    width: 6%;
  }
table.applicants .col-history {
    width: 10%;
  }
table.applicants a:visited {
		color: #005599;
	}
table.languages tbody td {
      border: none;
    }
section.cv, section.doc {
  width: 50%;
}
section.cv {
  float: left;
}
section.doc {
  float: right;
}
table.tasklist td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
table.tasklist .col-datedue {
    width: 10%;
  }
table.tasklist .col-body {
    width: 80%;
  }
table.tasklist .col-status {
    width: 5%;
  }
table.tasklist .col-edit {
    width: 5%;
  }
table.tasksapplicants td, table.taskscontacts td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
table.tasksapplicants .col-name, table.taskscontacts .col-name {
    width: 15%;
  }
table.tasksapplicants .col-datedue, table.taskscontacts .col-datedue {
    width: 10%;
  }
table.tasksapplicants .col-body, table.taskscontacts .col-body {
    width: 65%;
  }
table.tasksapplicants .col-status, table.taskscontacts .col-status {
    width: 5%;
  }
table.tasksapplicants .col-edit, table.taskscontacts .col-edit {
    width: 5%;
  }
table.clients td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
table.clients .col-name {
    width: 25%;
  }
table.clients .col-postalcode {
    width: 10%;
  }
table.clients .col-town {
    width: 30%;
  }
table.clients .col-website {
    width: 30%;
  }
table.contacts td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.ictknowledge {
  overflow: auto;
  height: 10em;
  font-size: rem(10);
  font-size: rem(10);
}
#dev, #sys, #erp {
  float: left; width: 25%;
}
.l-content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}
.actionlinks {
  text-align: right;
  margin-top: 0.5em;
}
.l-main {
  /*
  @include outer-container;
  */
  /*

  */
  /*
  .col-left, .col-right {
    @include span-columns(6);
  }
  */
}
.l-nav {
  background-color: #ed232e;
  min-height: 2.5em;
  text-transform: uppercase;
}
.container a {
    color: white;
    font-weight: 700;
  }
ul.menu li {
    float: left;
    margin: 0.5em 1em 0.5em 0;
  }
ul.adminmenu {
  float: left;
}
ul.adminmenu li {
    margin: 0.5em 1em 0.5em 0;
  }
ul.logout {
  float:right;
}
ul.logout li {
    margin: 0.5em 0;
  }
.notice, .warning {
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 3px;
}
.notice {
  color: rgb(86, 101, 26);
  background-color: rgb(230, 239, 194);
}
.warning {
  color: rgb(151, 22, 27);
  background-color: rgb(247, 161, 165);
}
section.missions ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
section.missions ul li {
      margin-right: 1em;
    }
table.missions .col-ref {
    width: 5%;
  }
table.missions .col-position {
    width: 40%;
  }
table.missions.col-client {
    width: 37%;
  }
table.missions .col-status {
    width: 10%;
  }
table.missions .col-date {
    width: 8%;
  }
table.missions tr.online {
		font-weight: bold;
	}
table.missions td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
table.newapplicants td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
table.newapplicants .col-name {
    width: 15%;
  }
table.newapplicants .col-ref {
    width: 10%;
  }
table.newapplicants .col-position {
    width: 25%;
  }
table.newapplicants .col-mobile {
    width: 15%;
  }
table.newapplicants .col-email {
    width: 25%;
  }
table.newapplicants .col-applicantnr {
    width: 8%;
  }
table.newapplicants .col-delete {
    width: 2%;
  }
.search #cvs_sent label, .search #cv_linked label, .search #cv_linked_history label {
      display: none;
    }
.search #cvs_sent select, .search #cv_linked select, .search #cv_linked_history select {
      float: left;
      width: 79%;
    }
.search #cvs_sent input, .search #cv_linked input, .search #cv_linked_history input {
      width: 20%;
    }
.search input[type='radio'] {
    /*
    height: 100%;
    */
    line-height: 2.5em;
  }
.search .extra {
    display: none;
  }
.search #more {
    float: right;
  }
.search #more:after {
  content: '';
  display: block;
  clear: both;
  }
section {
  position: relative;
  margin-bottom: 3em;
}
section:after {
  content: '';
  display: block;
  clear: both;
}
.col-left, .col-right {
  width: 48%;
}
.col-left {
  float: left;
}
.col-right {
  float: right;
}
.sendemail:after {
    content: url("../img/send.svg");
    display: inline-block;
    width: 12px;
    width: 1.2rem;
  }
.clients .ckeditor {
    margin-top: 2em;
  }
.clients .ckeditor label {
      float: inherit;
    }

/*# sourceMappingURL=maps/styles.css.map */
