/* assets/less/style.less */
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-Italic-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 0 none;
}
html,
body {
  background: transparent;
  color: #291923;
  font:
    400 16px/1 Inter,
    "Segoe UI",
    Roboto,
    Arial,
    "Helvetica Neue",
    sans-serif !important;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #291923;
  text-decoration: none;
}
a:hover {
  color: #00a0d1;
}
b,
strong {
  font-weight: 600;
}
h1 {
  font-size: 34px;
  font-weight: 500;
}
label {
  font-size: 14px;
  cursor: pointer;
  line-height: 20px;
}
.checkbox-wrap {
  font-size: 18px;
  font-weight: 700;
  display: block;
  position: relative;
  padding-left: 30px;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.checkbox-wrap .invalid-message {
  margin: 5px 0 16px 0;
  font-weight: 400;
}
.checkbox-wrap input {
  border: none;
  border-bottom: 2px solid #313d6b;
  font-size: 1.1rem;
  position: absolute;
  margin-top: 0.2rem;
  margin-left: -1.25rem;
  padding: 0;
}
.checkbox-wrap:hover input ~ .checkmark {
  border-color: #92898E;
}
.checkbox-wrap input:checked ~ .checkmark {
  background: #00a0d1;
  border-color: #00a0d1;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-wrap input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-wrap .checkmark:after {
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
hr {
  margin: 0 0 50px;
}
label {
  font-weight: 600;
  font-style: 12px;
  display: block;
  margin-bottom: 5px;
}
.select-holder {
  border: none;
  border-bottom: solid 2px #313D6B;
  overflow: hidden;
  margin-bottom: 25px;
  transition: 0.2s linear;
  position: relative;
}
.select-holder:before {
  background: url(/assets/i/icon-arrow-down.svg) center center no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 17px;
  height: 45px;
  z-index: -1;
  margin-right: 6px;
}
.select-holder:focus {
  color: #291923;
}
.select-holder select {
  width: 100%;
  margin: -1px 28px -1px 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-holder select::-ms-expand {
  display: none;
}
select,
label.file,
input[type=tel],
input[type=text],
input[type=email],
input[type=file],
input[type=search] {
  font-family:
    Inter,
    "Segoe UI",
    Roboto,
    Arial,
    "Helvetica Neue",
    sans-serif !important;
  font-size: 20px;
  border: none;
  border-bottom: solid 2px #313D6B;
  border-radius: 0;
  color: #291923;
  display: block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 25px;
  padding: 0 8px;
  width: 100%;
  transition: 0.2s linear;
  background-color: transparent;
}
select:focus,
label.file:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=search]:focus {
  color: #291923;
}
::-webkit-input-placeholder {
  color: #92898E;
}
::-moz-placeholder {
  color: #92898E;
}
:-ms-input-placeholder {
  color: #92898E;
}
:-moz-placeholder {
  color: #92898E;
}
label.file {
  color: #92898E;
}
input[type=file] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  z-index: -1;
}
.invalid-message {
  color: #f2616e;
  font-size: 18px;
  margin: -15px 0 16px 8px;
  display: block;
}
button,
.button {
  font-family:
    Inter,
    "Segoe UI",
    Roboto,
    Arial,
    "Helvetica Neue",
    sans-serif !important;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  background: #00a0d1;
  color: #ffffff !important;
  cursor: pointer;
  height: 3.75rem;
  line-height: 3.75rem;
  transition: 0.2s linear;
}
button:hover,
.button:hover {
  background: #409fff;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
:focus {
  outline: none;
}
::-webkit-selection {
  background: #291923;
  color: #ffffff;
}
::-moz-selection {
  background: #291923;
  color: #ffffff;
}
::selection {
  background: #291923;
  color: #ffffff;
}
svg {
  overflow: hidden;
}
.form-disabled input,
.form-disabled select,
.form-disabled label.file,
.form-disabled label.file,
.form-disabled .select-holder {
  background-color: #e3e4e5;
}
body {
  display: flex;
}
app-main,
app-root,
app-error {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
app-root {
  margin-top: 95px;
  overflow: auto;
}
.wrap {
  width: 80%;
  max-width: 1160px;
  margin: 0 auto;
}
.headline {
  position: relative;
  background-color: #080806;
  background-image: url(/assets/i/header-image-2@2x.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.headline .headline-wrap {
  width: 100%;
  max-width: 680px;
}
.headline .headline-wrap h1 {
  font-size: 50px;
  font-weight: 700;
  text-shadow: 0 0 5px #000000;
}
.headline .headline-wrap p {
  color: #92898E;
  line-height: 130%;
  margin-bottom: 30px;
  width: 50%;
}
.headline .headline-wrap .search-holder {
  position: relative;
  margin: 40px 0 0 0;
  border-bottom: 3px;
  border-style: solid;
  border-color: #fff;
}
.headline .headline-wrap .search-holder:after {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  content: " ";
  background: url(/assets/i/icon-search.svg) no-repeat center center;
  width: 18px;
  height: 18px;
}
.headline .headline-wrap .search-input {
  background: transparent;
  color: #ffffff;
  padding: 0 40px 0 10px;
  border: 0;
  margin: 0;
  height: 40px;
  width: 100%;
  transition: 0.3s linear;
  font-size: 24px;
}
.headline .headline-wrap .search-input::-webkit-input-placeholder {
  color: #ffffff;
}
.headline .headline-wrap .search-input::-moz-placeholder {
  color: #ffffff;
}
.headline .headline-wrap .search-input:-ms-input-placeholder {
  color: #ffffff;
}
.headline .headline-wrap .search-input:-moz-placeholder {
  color: #ffffff;
}
.headline .copyright {
  display: none;
  position: absolute;
  left: 25px;
  bottom: 15px;
  opacity: 0.5;
}
.headline .copyright:hover {
  opacity: 1;
}
.headline .copyright:hover div {
  display: block;
}
.headline .copyright div {
  display: none;
  position: absolute;
  left: 0;
  bottom: 130%;
  border-radius: 3px;
  background: #291923;
  color: #92898E !important;
  font-size: 12px;
  line-height: 120%;
  padding: 15px;
  min-width: 200px;
}
.headline .copyright span {
  display: block;
}
.headline .copyright span:first-of-type {
  color: #ffffff;
}
.empty-state {
  border-top: 1px solid #dee2e6;
  padding: 100px 50px;
  line-height: 120%;
  overflow: hidden;
}
.empty-state--holder {
  margin: 0 auto;
  width: 280px;
}
.empty-state img {
  display: block;
  margin: 0 auto;
}
.empty-state h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 10px;
}
.empty-state p {
  color: #92898E;
}
.map-holder {
  display: flex;
}
.map-holder img {
  width: 100%;
}
.has-dropdown {
  position: relative;
}
.has-dropdown--w-icon {
  background: url(/assets/i/icon-arrow-down.svg) right center no-repeat;
  background-size: 13px 7px;
  padding: 8px 38px 8px 20px;
}
.dropdown {
  position: absolute;
  background: #ffffff;
  border: 2px solid #313D6B;
  color: #291923;
  font-size: 14px;
  padding: 15px;
  max-width: 320px;
  min-width: 180px;
  z-index: 99999;
}
.dropdown.r-t {
  top: 100%;
  right: -11px;
}
.dropdown.l-t {
  top: 100%;
  left: 0;
}
.dropdown.l-b {
  bottom: 100%;
  left: 0;
}
.dropdown h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}
.dropdown h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dropdown ul {
  list-style-type: none;
  width: 100%;
}
.dropdown li {
  padding-bottom: 5px;
}
.dropdown li:last-of-type {
  padding-bottom: 0;
}
.dropdown li a {
  display: block;
  cursor: pointer;
}
.dropdown span {
  color: #92898E;
}
.faces {
  position: relative;
  clear: both;
  padding-bottom: 30px;
}
.faces a {
  display: block;
  float: left;
  margin-right: -10px;
}
.faces img {
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-sizing: unset;
}
label.file {
  position: relative;
  font-weight: 400;
}
label.file:before {
  position: absolute;
  top: 0;
  right: 10px;
  content: "Browse";
  background: url(/assets/i/icon-attach.png) center right no-repeat;
  color: #92898E;
  font-size: 20px;
  padding-right: 30px;
}
.p-error {
  position: relative;
  background: #080806 url(/assets/i/404.png) top right no-repeat;
  background-size: 70%;
  min-height: 100%;
}
.p-error .c-header {
  margin-bottom: 0;
}
.p-error .wrap {
  position: absolute;
  bottom: 10%;
  left: 10%;
  max-width: 280px;
}
.p-error .wrap h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}
.p-error .wrap p {
  color: #92898E;
  font-size: 16px;
  line-height: 135%;
  margin-bottom: 5px;
}
.p-error .wrap a {
  color: #00a0d1;
  font-size: 14px;
  font-weight: 500;
}
.would_graphisoft_need_to_apply_for_a_work_permit_or_visa_on_your_behalf {
  margin: 65px 0 25px 0;
  font-size: 18px;
  font-weight: 700;
}
app-form-group-file {
  display: block;
  position: relative;
}
.mobile-show {
  display: none;
}
html[data-useragent*="rv:11.0"] body {
  display: block;
}
.p-position .headline {
  text-align: left;
  align-items: flex-end;
  margin-bottom: 60px;
}
.p-position .headline .wrap {
  margin: 0 0 70px 0;
}
.p-position .headline h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 0 5px #000000;
}
.p-position .headline h1 + span {
  display: block;
  color: #ffffff;
  text-shadow: 0 0 5px #000000;
  font-size: 20px;
  line-height: 32px;
}
.p-position .headline h1 + span img {
  float: left;
  margin-right: 10px;
  border-radius: 0 !important;
  width: 32px;
  height: 32px;
}
.p-position .headline .flag {
  border-radius: 50%;
}
.p-position .wrap {
  max-width: 768px;
}
.p-position .content h2,
.p-position .content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.p-position .content h6 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 15px 0;
}
.p-position .content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 135%;
}
.p-position .content p:last-of-type {
  margin-bottom: 25px;
}
.p-position .content p a {
  color: #00a0d1;
  font-weight: 500;
}
.p-position .content ul {
  margin-bottom: 50px;
  margin-left: 20px;
}
.p-position .content ul:last-of-type {
  margin-bottom: 30px;
}
.p-position .content ul ul {
  margin-top: 15px;
}
.p-position .content ul li {
  line-height: 135%;
  padding-bottom: 7px;
  font-size: 18px;
}
.p-position .position-footer {
  display: flex;
  margin: 50px 0;
}
.p-position .position-footer div {
  flex: 1;
  width: 50%;
}
.p-position .position-footer .button {
  width: 100%;
  background-color: #ffb333;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-position .position-footer .back-btn-wrapper a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 3.75rem;
  color: #313D6B;
}
.p-position--apply .headline + .wrap {
  max-width: 572px;
}
.p-position--apply .content p {
  color: #92898E;
  font-size: 12px;
  line-height: 130%;
  margin-bottom: 15px;
}
.p-position--apply .button-holder {
  position: relative;
  margin: 30px 0 60px 0;
}
.p-position--apply .button-holder img {
  position: absolute;
  top: 15px;
  left: 20px;
}
.p-position--apply .button-holder button {
  background-color: #ffb333;
  font-weight: 700;
}
.p-position--apply .checkbox-wrap {
  margin-top: 30px;
  font-weight: 500;
  color: #313D6B;
}
.p-position--apply button {
  width: 100%;
}
.p-position--apply .message {
  font-size: 24px !important;
  font-weight: 700;
  padding-top: 45px;
  text-align: center;
}
.p-position--apply .message--valid {
  margin-bottom: 0;
  background: url(/assets/i/icon-valid.svg) center top no-repeat;
  color: #5eaeb6 !important;
}
.p-position--apply .message--invalid {
  background: url(/assets/i/icon-invalid.svg) left center no-repeat;
  color: #f2616e !important;
  text-align: left;
  padding: 9px 0 10px 50px;
}
.p-position--apply .how_did_you_hear_about_this_job {
  font-size: 18px;
  font-weight: 700;
  margin: 65px 0 25px 0;
}
@media only screen and (max-width: 1024px) {
  .wrap {
    width: 90%;
  }
}
@media only screen and (max-width: 960px) {
  label.file {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  label.file:before {
    content: "";
  }
  .headline h1 {
    font-size: 30px;
  }
  .headline p {
    width: 100%;
  }
  .headline .copyright {
    bottom: 25px;
  }
  .p-position .headline {
    padding-bottom: 30px;
  }
  .p-position .position-footer {
    display: block;
  }
  .p-position .position-footer div {
    width: 100%;
  }
  .p-position .position-footer .button {
    margin-bottom: 15px;
    min-width: 100%;
  }
  .p-position .position-footer .align-right {
    text-align: center;
  }
  .p-position .content h6 {
    text-align: center;
  }
  .faces {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }
  .p-error {
    position: static;
    background-size: 80%;
    min-height: auto;
  }
  .p-error .wrap {
    position: static;
    padding: 250px 0 50px;
    max-width: 90%;
  }
  .empty-state {
    padding: 50px 50px 15px;
    text-align: center;
  }
  .empty-state--holder {
    width: 100%;
  }
  .c-footer {
    display: block;
    padding: 30px 0;
    margin: 0 auto;
  }
  .c-footer .dropdown {
    left: 0;
    min-width: 100%;
  }
  .c-footer .has-dropdown:after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: url(/assets/i/icon-arrow-down.svg) center center no-repeat;
    content: "";
    height: 100%;
    width: 45px;
  }
  .c-footer div {
    width: 100%;
  }
  .c-footer .align-left span {
    display: block;
    border: 1px solid #dee2e6;
    background: transparent;
    padding: 15px;
    margin: 0 0 20px;
  }
  .c-footer .align-left a {
    display: block;
    margin: 0 0 10px;
  }
  .c-footer .align-right {
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  app-main,
  app-root,
  body {
    display: block;
  }
  .mobile-show {
    display: inline-block;
  }
  .mobile-hide {
    display: none;
  }
  .c-header {
    height: 80px !important;
  }
  .c-header app-language-selector {
    display: block;
    position: relative !important;
    top: auto !important;
    flex: 0 0 auto;
  }
  app-root {
    margin-top: 80px;
  }
  .headline {
    padding: 0 10px;
  }
  .positions .position {
    display: block;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 0 !important;
    margin-bottom: 0.9375rem !important;
  }
  .positions .position:nth-child(3n) {
    padding-right: 0 !important;
  }
  .o-filter {
    position: relative;
    flex-direction: column;
  }
  .o-filter div {
    flex-direction: column;
  }
  .o-filter div app-department-filter {
    margin-right: 0 !important;
  }
  .c-footer {
    flex-direction: column;
    padding: 0.8125rem !important;
    font-size: 0.75rem !important;
  }
  .c-footer div {
    width: 100% !important;
    margin: 0.3125rem 0;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
