/* ========= SASS style definitions ========= */
/* ======================================================= */
/* ------ VARIABLES ------ */
/* ----------------------------------- */
/* --- colors --- */
:root {
  --color-base: #212529;
  --color-primary: black;
  --color-primary-rgb: 0, 0, 0;
  --color-primary-light: var(--color-oer-yellow);
  --color-primary-light-rgb: 243, 146, 0;
  --color-secondary: darkgrey;
  --color-secondary-rgb: 169, 169, 169;
  --color-secondary-light: var(--color-oer-form-bg);
  --color-secondary-light-rgb: 241, 245, 249;
  --color-dark: #2d2d2d;
  --color-medium: #818184;
  --color-light: #bababa;
  --color-bright: #dfe8f7;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-oer-magenta: #E5006D;
  --color-oer-cyan: #3192D0;
  --color-oer-yellow: #F39200;
  --color-oer-form-bg: #F1F5F9;
}

/* --- font --- */
/* --- div styles --- */
.headline > * {
  font-weight: 600;
}
.headline .title {
  font-size: clamp(35px, 12vw, 40px);
  padding-bottom: 5px;
}
.headline .title::before {
  content: ":";
  display: inline-block;
}
.headline .subtitle {
  font-size: clamp(20px, 8vw, 25px);
  padding-bottom: 90px;
}
.headline .subtitle.institution {
  color: var(--color-oer-magenta);
}
.headline .subtitle.practitioner {
  color: var(--color-oer-cyan);
}

.oer_profilecreate {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 50px 1fr;
  grid-template-columns: 5fr 1fr;
  gap: 50px;
}
.oer_profilecreate .swslangdynamic_forms_inline em {
  color: red;
  font-weight: bold;
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form {
  margin: 30px 0px;
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form fieldset {
  padding: 0px 30px 30px 30px;
  background-color: var(--color-oer-form-bg);
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form fieldset + fieldset {
  margin-top: 80px;
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form .header {
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: 700;
  padding-bottom: 30px;
  -webkit-transform: translate(-30px, -30px);
          transform: translate(-30px, -30px);
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form .address_wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 2fr;
  grid-template-columns: 1fr 2fr;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form .consent_wrapper label::before {
  background-color: white;
}
.oer_profilecreate .content .oer_profilecreate_wrapper .oer_profilecreate_form .disclaimer {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 600;
}
.oer_profilecreate .sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  width: 300px;
  gap: 15px;
  text-align: center;
  font-weight: bold;
  margin-left: auto;
}
.oer_profilecreate .sidebar h2 {
  font-weight: bold;
  margin-bottom: 30px;
}
.oer_profilecreate .sidebar .text {
  margin-bottom: 30px;
}
.oer_profilecreate .sidebar .image {
  height: 100px;
  width: 100%;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  position: relative;
}
.oer_profilecreate .sidebar .image.practitioner {
  -webkit-mask-image: url(../../images/oer/icon_oer_practitioner.svg);
          mask-image: url(../../images/oer/icon_oer_practitioner.svg);
  background-color: var(--color-oer-cyan);
}
.oer_profilecreate .sidebar .image.institution {
  -webkit-mask-image: url(../../images/oer/icon_oer_certificate.svg);
          mask-image: url(../../images/oer/icon_oer_certificate.svg);
  background-color: var(--color-oer-magenta);
}
.oer_profilecreate .sidebar .image.concept {
  -webkit-mask-image: url(../../images/oer/icon_oer_credit.svg);
          mask-image: url(../../images/oer/icon_oer_credit.svg);
  background-color: var(--color-oer-yellow);
}
/*# sourceMappingURL=oer_profilecreate.css.map */