@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
:root {
  --global-font-size: 16px;
  --global-line-height: 26px;
  --global-header-font-size: 16px;
  --global-header-line-height: 17px;
  --page-content-margin-horizontal: 45px;
  --page-content-margin-vertical: 45px;
}

@media screen and (max-width: 1119px) {
  :root {
    --global-header-font-size: 12px;
    --global-header-line-height: 13px;
    --page-content-margin-horizontal: 30px;
    --page-content-margin-vertical: 30px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --global-font-size: 15px;
    --global-line-height: 24px;
    --page-content-margin-horizontal: 20px;
    --page-content-margin-vertical: 20px;
  }
}
header {
  width: 100%;
}
header .inner {
  max-width: 1440px;
  margin: 0 var(--page-content-margin-horizontal);
  padding-top: 12px;
  border-bottom: 1px solid #dedede;
  position: relavite;
  display: flex;
  justify-content: space-between;
  /* Mobile menu */
  /* Desktop menu */
}
header .inner hr {
  width: 100%;
  border-top: 1px solid #dedede;
}
header .inner .nav-left {
  max-width: 66%;
}
header .inner .mobile-menu-nav {
  visibility: hidden;
  display: none;
  float: right;
  width: 0;
}
header .inner .mobile-menu-nav #mobile-menu-toggle {
  margin: 0;
  padding-right: 0;
  position: relative;
  border-width: 0px;
}
header .inner .mobile-menu-nav #mobile-menu-toggle .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: auto;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 0.1s, transform 0.3s;
}
header .inner .mobile-menu-nav #mobile-menu-toggle .open-icon {
  background-image: url(../img/hamburger-icon.svg);
}
header .inner .mobile-menu-nav #mobile-menu-toggle .close-icon {
  background-image: url(../img/close.svg);
  opacity: 0;
}
header .inner .mobile-menu-nav #mobile-menu-toggle.open .icon {
  transform: translate(-50%, -50%) rotate(90deg);
}
header .inner .mobile-menu-nav #mobile-menu-toggle.open .open-icon {
  opacity: 0;
}
header .inner .mobile-menu-nav #mobile-menu-toggle.open .close-icon {
  opacity: 1;
}
header .inner .mobile-menu-nav #mobile-menu {
  visibility: hidden;
  z-index: 99;
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 150px;
  right: -100vw;
  padding: 40px 25px 20px;
  background-color: #ffffff;
  transition: all 300ms ease-in-out;
}
header .inner .mobile-menu-nav #mobile-menu.open {
  visibility: visible;
  right: 0;
}
header .inner .mobile-menu-nav #mobile-menu hr {
  width: initial;
  margin-left: var(--page-content-margin-horizontal);
  margin-right: var(--page-content-margin-horizontal);
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container {
  width: calc(100% - 2 * var(--page-content-margin-horizontal));
  margin: 0 var(--page-content-margin-horizontal);
  padding: 0 25px 25px;
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container .mobile-menu-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style-type: none;
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container .mobile-menu-list .item {
  padding: 21px 30% 21px 0;
  margin: 21px auto;
  line-height: 1em;
  font-size: 14px;
  font-weight: 400;
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container .mobile-menu-list .item.active {
  padding: 21px 0;
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container .mobile-menu-list .item.active:hover {
  border-bottom: 2px solid transparent;
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container ul.language-selector {
  margin-top: 17px;
  margin-left: 0;
  padding-top: 17px;
  padding-left: 0;
}
header .inner .mobile-menu-nav #mobile-menu .mobile-menu-container ul.language-selector .language:first-child a {
  margin-left: 0;
}
@media screen and (max-width: 1119px) {
  header .inner .mobile-menu-nav {
    visibility: visible;
    display: block;
    width: auto;
  }
}
header .inner div.service-nav {
  float: right;
  display: flex;
}
@media screen and (max-width: 1119px) {
  header .inner div.service-nav {
    display: none;
  }
}
header .inner div.service-nav.login {
  font-size: 14px;
}
header .inner .language-selector {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  margin-left: calc(0.25vw + 8px);
  padding: 0;
  display: flex;
}
header .inner .language-selector:after {
  border-bottom: 2px solid #000;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
}
header .inner .language-selector :not(:last-child):after {
  content: "|";
  display: inline;
}
header .inner .language-selector :last-child .language-tag {
  margin-right: 0px;
}
header .inner .language-selector .language {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  display: flex;
  height: 20px;
  line-height: 1.3;
  letter-spacing: 0.025rem;
  text-decoration: none !important;
}
header .inner .language-selector .language .active {
  border-bottom: 2px solid rgb(234, 22, 31);
}
header .inner .language-selector .language-tag {
  text-transform: uppercase;
  margin: 0 7px;
}

footer.footer-container {
  width: 100%;
  margin-top: 30px;
  background-color: #fcf8f3;
}
footer.footer-container .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 25px;
}
footer.footer-container .footer-nav {
  float: right;
}
footer.footer-container .footer-nav a {
  margin-right: calc(2 * var(--global-font-size));
}
footer.footer-container .copyright {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02rem;
  word-spacing: 0.05rem;
  color: #000000;
  padding-left: var(--page-content-margin-horizontal);
  padding-right: var(--page-content-margin-horizontal);
  margin-bottom: 0;
  max-width: none;
  margin-top: 20px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  footer.footer-container .copyright {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
footer.footer-container p,
footer.footer-container span {
  color: #000000;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: -2px;
  max-width: 800px;
}

html,
body.login {
  font-family: "Roboto", sans-serif !important;
  font-size: var(--global-font-size);
  font-style: normal;
  line-height: var(--global-line-height);
}

/* Atoms
*  Web-Style-Guide: https://kantonbern.snowflake.ch/styleguides/1/Kanton-Bern/#atoms
*/
h1 {
  color: #000000;
  font-weight: 100;
  margin: 0 0 44px -3px;
  font-size: 54px;
  line-height: 62px;
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
}

@media screen and (max-width: 1119px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
    margin: -9px 0 28px -2px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 38px;
    margin: 45px 0 24px -1px;
    font-weight: 300;
  }
}
@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
  margin: 0 0 12px -2px;
  max-width: 800px;
  color: #000000;
  margin-left: -2px;
}

@media screen and (max-width: 1119px) {
  h2 {
    font-size: 24px;
    line-height: 29px;
    margin: -3px 0 8px -1px;
    margin-left: -1px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 21px !important;
    line-height: 25px !important;
    margin: -2px 0 12px 0px;
    margin-left: 0px;
  }
}
h3 {
  font-size: 26px;
  line-height: 32px;
  margin: 0 0 12px -1px;
  max-width: 800px;
  font-weight: 300;
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
  color: #000000;
  margin-left: -1px;
}

@media screen and (max-width: 1119px) {
  h3 {
    font-size: 24px;
    line-height: 29px;
    margin: -3px 0 8px -1px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 21px;
    line-height: 25px;
    margin: -2px 0 12px 0px;
    margin-left: 0px;
  }
}
h4 {
  margin: 0 0 12px -1px;
  max-width: 800px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
  color: #000000;
  font-size: 24px;
  line-height: 28px;
  margin-left: -1px;
}

@media screen and (max-width: 1119px) {
  h4 {
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 21px;
    line-height: 25px;
    margin-left: 0px;
  }
}
p {
  color: #000000;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: -2px;
  max-width: 800px;
}

button,
.button {
  line-height: 125%;
  background-color: #ffffff;
  color: rgb(112, 112, 112);
  display: inline-block;
  height: 49px;
  border-radius: 49px;
  padding: 0 40px;
  vertical-align: middle;
  margin: 40px 30px 40px -1px;
  transition: transform 250ms ease-in-out;
  text-align: center;
  cursor: pointer;
  border-width: 1px;
}

/* Custom button-like link */
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
  text-decoration: none;
}

button.primary,
.button.primary {
  background-color: #4e4e4e;
  color: #ffffff;
}

button.secondary,
.button.secondary {
  background-color: #ffffff;
  color: rgb(112, 112, 112);
  border: 1px solid #4e4e4e;
}

.block-button {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 0;
}

.form-error-text {
  color: #ea161f;
}

.logo {
  background-image: url(../img/kanton-bern-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 68.5px;
  width: 150px;
}

@media screen and (max-width: 1119px) {
  .logo {
    margin-top: 0px;
    width: 110px;
  }
}
.logo-caption {
  font-size: var(--global-header-line-height);
  line-height: var(--global-header-line-height);
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
  font-weight: 400;
  color: #000000;
  margin-top: 19px;
  max-width: 335px;
}

@media screen and (max-width: 1119px) {
  .logo-caption {
    margin-top: 12px;
    max-width: 210px;
  }
}
.sand {
  background-color: #f7e9d2;
}

/* Molecules
*  Web-Style-Guide: https://kantonbern.snowflake.ch/styleguides/1/Kanton-Bern/#moleculs
*/
a.service-menue {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
  color: #000000;
  display: inline-block;
  height: 20px;
  line-height: 1.3;
  margin: 0 calc(0.25vw + 15px) 0 calc(0.25vw + 15px);
}
a.service-menue.active {
  border-bottom: 2px solid rgb(234, 22, 31);
}

a.service-menue:after {
  display: block;
  content: "";
  border-bottom: 2px solid #000;
  transform: scaleX(0);
  transition: transform 100ms ease-in-out;
}

a.service-menue:hover::after,
a.service-menue:focus::after,
a.service-menue:active::after {
  transform: scaleX(1);
}

a.service-menue:after {
  display: block;
  content: "";
  border-bottom: 2px solid #000;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
}

a.service-menue {
  text-decoration: none !important;
}

a {
  color: #000000;
}

a:hover,
a:focus {
  color: #000000;
}

ul.box-beige {
  background-color: #faf1e3;
  float: left;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  width: 100%;
  max-width: 400px;
  padding: 0;
}
ul.box-beige:nth-child(odd) {
  margin-right: 0 !important;
}
ul.box-beige.open {
  margin-bottom: 30px;
}
ul.box-beige.open:nth-child(odd) {
  margin-right: 0 !important;
}
@media screen and (max-width: 1119px) {
  ul.box-beige.open {
    margin-right: 2%;
    width: 49%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  ul.box-beige.open {
    margin-right: 0;
    width: 100%;
  }
}
ul.box-beige li {
  list-style-type: none;
  /* Infobox Title */
}
ul.box-beige li .infobox-title {
  position: relative;
  display: block;
  text-decoration: none;
  border: none;
  letter-spacing: 0.01rem;
  word-spacing: 0.025rem;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 65px;
  max-width: 800px;
  background-color: #faf1e3;
  color: #000000;
  font-size: 24px;
  line-height: 28px;
}
ul.box-beige li .accordion-content {
  padding: 25px;
  /* Line (HR Accordion) */
}
ul.box-beige li .accordion-content hr.accordion {
  border: none;
  background-color: rgba(112, 112, 112, 0.68);
  margin-top: -25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  width: auto;
  height: 1px;
}
ul.box-beige a.infobox-title[aria-selected=true] {
  background-color: #faf1e3 !important;
}
ul.box-beige a.infobox-title[aria-selected=true]::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  transition: all 250ms ease-in-out;
}
ul.box-beige a.infobox-title[aria-selected=true] {
  background-color: rgb(250, 241, 227) !important;
}
ul.box-beige a.infobox-title[aria-selected=true]::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 1119px) {
  ul.box-beige {
    margin-right: 2%;
    width: 49%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  ul.box-beige {
    margin-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1119px) {
  div.arrow-link {
    margin-top: 1px;
  }
}
@media screen and (max-width: 767px) {
  div.arrow-link {
    margin-top: 0px;
    margin-bottom: 5px;
  }
}
span.link-arrow {
  background-image: url("../img/icon-link-arrow.svg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: auto;
  display: inline-block;
  margin-right: 4px;
  margin-left: -4px;
  width: 15px;
  height: 12px;
}

div.arrow-link > span.link-arrow {
  float: left;
  margin-top: 6px;
}

div.arrow-link > a.text-link-2 {
  margin-top: 0px;
}

a {
  color: #000000;
}

a:hover,
a:focus {
  color: #000000;
}

a.text-link-2 {
  text-decoration: none;
  color: #000000;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  border-bottom: 1px solid rgb(0, 0, 0);
  display: inline-block;
  cursor: pointer;
  line-height: 125%;
  vertical-align: top;
  margin-top: 10px;
}

a.text-link-2:hover,
a.text-link-2:focus {
  border-bottom: 1px solid #ea161f;
}

.feedback {
  margin-bottom: var(--page-content-margin-vertical);
}
.feedback .feedback-icon {
  padding-top: 6px;
  width: 85px;
  height: 85px;
  min-height: 85px;
  display: table-cell;
  vertical-align: top;
  background-color: #1775d3;
  background-image: url(../img/icon-info.svg);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center 16px;
  background-size: 60px;
}
.feedback .feedback-text {
  display: table-cell;
  vertical-align: middle;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 75px;
  max-width: 800px;
  font-weight: 300;
  color: #000000;
  background-color: rgba(23, 117, 211, 0.1);
}
@media screen and (max-width: 767px) {
  .feedback .feedback-icon {
    background-size: 30px !important;
    width: 40px !important;
  }
  .feedback .feedback-text {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 790px;
    font-size: 15px;
    line-height: 24px;
    padding-right: 60px;
  }
}

.feedback-success .feedback-icon {
  background-color: #3d8608;
  background-image: url(../img/icon-success.svg);
}
.feedback-success .feedback-text {
  background-color: rgba(61, 134, 8, 0.15);
  color: #000000;
}

.feedback-warning .feedback-icon {
  background-color: #dd6600;
  background-image: url(../img/icon-warning.svg);
}
.feedback-warning .feedback-text {
  background-color: rgba(221, 102, 0, 0.1);
  color: #000000;
}

.feedback-error .feedback-icon {
  background-color: #d01018;
  background-image: url(../img/icon-danger.svg);
}
.feedback-error .feedback-text {
  background-color: rgba(234, 22, 31, 0.1);
  color: #000000;
}

.feedback-info .feedback-icon {
  background-color: #1775d3;
  background-image: url(../img/icon-info.svg);
}
.feedback-info .feedback-text {
  background-color: rgba(23, 117, 211, 0.1);
  color: #000000;
}

/* Layout
*
* The layout of this theme is a mix of the "Detailpage" and "Login V1" layouts. It's
* using the main-column/context-column layout of the "Detailpage" and the button
* arrangement of the "Login V2" layout.
*
* * Detailpage: https://kantonbern.snowflake.ch/styleguides/1/Kanton-Bern/#Gm17
* * Login V2: https://kantonbern.snowflake.ch/styleguides/1/Kanton-Bern/#Gm148
*/
body.login .box-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
body.login .box-content header,
body.login .box-content main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
body.login .box-content main.content {
  flex-grow: 1;
  margin-top: calc(var(--page-content-margin-vertical) + 7vh);
  /* Aligns child divs including feedback-box */
}
body.login .box-content main.content > div {
  margin-left: var(--page-content-margin-horizontal);
  margin-right: var(--page-content-margin-horizontal);
}
body.login .box-content main.content div.main-column {
  position: relative;
  max-width: 800px;
  width: 58%;
  float: left;
  margin-bottom: 65px;
}
@media screen and (max-width: 1119px) {
  body.login .box-content main.content div.main-column {
    margin-right: var(--page-content-margin-horizontal);
    width: calc(100% - 2 * var(--page-content-margin-horizontal));
  }
}
body.login .box-content main.content div.context-column {
  width: 30%;
  position: relative;
  top: -100px;
  transition: top 0.3s ease-in-out;
  float: right;
  max-width: 400px;
  margin-left: 0px;
  margin-right: 45px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1119px) {
  body.login .box-content main.content div.context-column {
    max-width: none;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
    clear: both;
    top: 0;
    margin-bottom: 20px;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  body.login .box-content main.content div.context-column {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  body.login .box-content main.content {
    margin-top: var(--page-content-margin-vertical);
  }
}
body.login .box-content .js-contact-box {
  display: none;
}

/* form related */
.form-group {
  position: relative;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group .label-wrapper {
  position: absolute;
  top: -5px;
  left: 23px;
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  background-color: #fff;
  padding: 2px 5px;
  opacity: 1;
}
.form-group .label-wrapper label.floating-label {
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}
.form-group .input-wrapper .floating-input {
  height: 59px;
  width: 100%;
  max-width: 800px;
  padding: 3px 10px;
  padding-left: 28px;
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #fefefe;
  border: 1px solid #707070;
  border-radius: 3px;
  box-sizing: border-box;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #000 !important;
}
.form-group .input-wrapper .floating-input:focus {
  border: 1px solid #000;
  border-left: 6px solid #000;
}
.form-group .input-wrapper .floating-input:focus-visible {
  outline: none;
}
.form-group button,
.form-group .button {
  width: 60%;
}
@media screen and (max-width: 1119px) {
  .form-group button,
  .form-group .button {
    width: 100%;
  }
}
.form-group #kc-form-buttons .button {
  margin-top: 0;
}

#kc-social-providers-buttons {
  display: flex;
  flex-direction: column;
  max-width: 60%;
}
#kc-social-providers-buttons button {
  margin: 0 0 25px;
}

@media screen and (max-width: 1119px) {
  #kc-social-providers-buttons {
    max-width: 100%;
  }
}
#contact-content .box {
  display: grid;
  grid-template-rows: repeat(2, 26px);
  grid-template-columns: repeat(2, 200px);
  gap: 5px;
  width: 100%;
  height: 100%;
  margin-bottom: 78px;
}

/*# sourceMappingURL=style.css.map */
