/* Abstract */
/* Base */
.u-margin-right-medium {
  margin-right: 10px;
}

.u-flex {
  display: flex;
}

.u-flex-center-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-limited-width-medium {
  width: 260px !important;
}

/* Toegang */
h1 {
  font-size: 20px;
  margin: 5px 0;
}

.mainButton {
  background-color: #008080;
  border: none;
  color: white;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.smallButton {
  background-color: #008080;
  border: none;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.secondaryButton {
  background-color: #404040;
  border: none;
  color: white;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.u-hidden-opacity {
  opacity: 0;
  transition: all 200ms ease;
  cursor: default;
}

button:not(.u-hidden-opacity:hover):hover {
  opacity: 0.8;
}

button:active {
  opacity: 0.6;
}

.mainInputField, .mainInputFieldError, .mainErrorInputField {
  width: 100%;
  padding: 10px;
  margin: 8px 2px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #c5e4f2;
}

.mainErrorInputField {
  border: 1px solid red;
}

input:disabled {
  color: #b0b0b0;
  background: #efefef;
  border: 1px solid #bfbfbf;
}

input:read-only {
  color: #b0b0b0;
  background: #efefef;
  border: 1px solid #bfbfbf;
}

input:-moz-read-only {
  color: #b0b0b0;
  background: #efefef;
  border: 1px solid #bfbfbf;
}

.mainInputFieldError {
  padding: 9px;
  border: 2px solid #a51212;
  animation: shake 0.5s linear;
}

.errorText {
  color: crimson;
}

.grade__select {
  width: 100%;
}

@keyframes shake {
  8%, 41% {
    transform: translateX(-10px);
  }
  25%, 58% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-5px);
  }
  92% {
    transform: translateX(5px);
  }
  0%, 100% {
    transform: translateX(0);
  }
}
a:hover {
  cursor: pointer;
}

.notificationText {
  margin-left: 3px;
  vertical-align: top;
  font-size: 12px;
}

.textContainer {
  text-align: center;
}

.baseBottomRow {
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.errorMessage {
  text-align: center;
  color: #dc143c;
}

.noMargin {
  margin: 0;
  padding: 0;
}

.supportcontainer {
  text-align: center;
}

.debuginfo {
  text-align: center;
  padding-top: 3em;
  font-size: small;
  font-family: monospace;
}

.eacontainer {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-auto-columns: min-content;
  padding-top: 20px;
}

.eaInfoContainer {
  margin-left: 1em;
}

.eaImageContainer {
  width: 130px;
  height: 130px;
  overflow: hidden;
}

.eaImage {
  max-width: 100%;
  max-height: 100%;
}

.invisible {
  display: none;
}

.validatieInfo {
  text-align: center;
}

.codeHeader {
  display: inline-block;
  width: 50%;
}

.toegangsURLContainer {
  text-align: center;
  vertical-align: middle;
  padding: 30px 0 0px 0;
}

.toegangURL {
  font-weight: bolder;
  display: inline-block;
}

.toegangCodeInput {
  display: inline-block;
}
.toegangCodeInput input {
  width: auto;
}

.labelImageContainer {
  text-align: center;
}

.qrContainer {
  text-align: right;
  float: right;
}
.qrContainer svg {
  width: 12px;
  height: 12px;
  transform: translate(0px, 2px);
}

.qrReaderContainer {
  width: 50%;
  margin: auto;
  box-shadow: 2px 2px 5px grey;
}

.notValidatedMessageContainer {
  font-weight: bolder;
}

.countdownContainer {
  color: #008080;
  font-weight: bolder;
  font-size: 20px;
}

.topRow {
  padding: 25px 25px 10px 25px;
  height: 30px;
}

.headerImage {
  height: 20px;
  width: 130px;
}

.headerImageContainer {
  float: left;
}

.closeButtonContainer {
  float: right;
}
.closeButtonContainer button {
  border: none;
  padding: 0;
  cursor: pointer;
}
.closeButtonContainer a {
  color: #404040;
}

.logoContainer {
  width: 260px;
  height: 40px;
  padding: 15px 0 15px 0;
  background-image: url("../../assets/toegang-logo.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;
}

.closeButton {
  width: 20px;
  height: 20px;
}

.environmentContainer {
  display: none;
}

.nonproductionHeader .headerImageContainer {
  background-color: #a51212;
}
.nonproductionHeader .environmentContainer {
  float: left;
  margin-left: 10px;
  display: block;
  text-transform: uppercase;
}

.supportTextContainer {
  width: 100%;
  text-align: center;
}
.supportTextContainer p {
  margin: 8px 0;
}

/* Footer styling */
.supportBottomRow {
  padding: 2px 25px 10px 25px;
}

.meldcode {
  font-size: small;
  font-family: "Courier New", Courier, monospace;
}

.sectorText {
  width: 35px;
  float: left;
}

.toegangInputContainer {
  position: relative; /*  make label relate to div  */
  padding-top: 20px; /*  make space for label      */
  flex-grow: 1;
}
.toegangInputContainer input:focus ~ .floatingLabel {
  top: 10px;
  left: 0;
  color: inherit;
  font-size: 14px;
}
.toegangInputContainer input:not(:focus):not(:-ms-input-placeholder) ~ .floatingLabel {
  top: 10px;
  left: 0;
  color: inherit;
  font-size: 14px;
}
.toegangInputContainer input:not(:focus):not(::-ms-input-placeholder) ~ .floatingLabel {
  top: 10px;
  left: 0;
  color: inherit;
  font-size: 14px;
}
.toegangInputContainer input:not(:focus):not(:placeholder-shown) ~ .floatingLabel {
  top: 10px;
  left: 0;
  color: inherit;
  font-size: 14px;
}

.floatingLabel {
  position: absolute;
  pointer-events: none;
  left: 8px;
  top: 40px;
  transition: 0.2s ease all;
  font-size: 12px;
  color: #8e8e8e;
}

.tussen {
  min-width: 90px;
  max-width: 90px;
}

.footerBottomRow {
  width: calc(100% - 50px);
  padding: 10px 25px 10px 25px;
}

.footerLeftTextContainer {
  font-size: 14px;
  width: 200px;
  float: left;
}
.footerLeftTextContainer p {
  margin: 4px;
}

.buttonContainer {
  float: right;
  display: flex;
  flex-direction: row-reverse;
}

.buttonContainer > button {
  margin-left: 10px;
}

.questionmark {
  cursor: pointer;
  width: 16px;
  height: 16px;
  color: #b2b2b2;
  transform: translate(0px, 3px);
}

.questionmarkContainer {
  padding-left: 8px;
  display: inline-block;
  position: relative;
}

.ldsRoller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.ldsRoller div {
  animation: ldsRoller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}

.ldsRoller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0cece;
  margin: -3px 0 0 -3px;
}

.ldsRoller div:nth-child(1) {
  animation-delay: -0.036s;
}

.ldsRoller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}

.ldsRoller div:nth-child(2) {
  animation-delay: -0.072s;
}

.ldsRoller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}

.ldsRoller div:nth-child(3) {
  animation-delay: -0.108s;
}

.ldsRoller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}

.ldsRoller div:nth-child(4) {
  animation-delay: -0.144s;
}

.ldsRoller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}

.ldsRoller div:nth-child(5) {
  animation-delay: -0.18s;
}

.ldsRoller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}

.ldsRoller div:nth-child(6) {
  animation-delay: -0.216s;
}

.ldsRoller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}

.ldsRoller div:nth-child(7) {
  animation-delay: -0.252s;
}

.ldsRoller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}

.ldsRoller div:nth-child(8) {
  animation-delay: -0.288s;
}

.ldsRoller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

@keyframes ldsRoller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.verify {
  text-align: center;
}
.verify .noMargin {
  margin: 0;
  padding: 0;
}
.verify .supportcontainer {
  text-align: center;
}
.verify .debuginfo {
  text-align: center;
  padding-top: 3em;
  font-size: small;
  font-family: monospace;
}
.verify .eacontainer {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-auto-columns: min-content;
  padding-top: 20px;
}
.verify .eaInfoContainer {
  margin-left: 1em;
}
.verify .eaImageContainer {
  width: 130px;
  height: 130px;
  overflow: hidden;
}
.verify .eaImage {
  max-width: 100%;
  max-height: 100%;
}
.verify .invisible {
  display: none;
}
.verify .link {
  font-size: 85%;
}
.verify .codeInputField {
  width: 40%;
  padding: 10px;
  margin: 10px 10px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #c5e4f2;
}
.verify .codeButton {
  background-color: #008080;
  border: none;
  color: white;
  padding: 9px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border: 1px solid #008080;
}

.applicationInfoPanel {
  width: 100%;
  margin: 8px 0;
  background-color: #f3f3f3;
  display: flex;
  justify-content: left;
}

.applicationLogoContainer {
  width: 120px;
  height: 120px;
}
.applicationLogoContainer img {
  width: 120px;
  height: 120px;
}

.applicationTextContainer {
  color: #5c6677;
  height: 120px;
  overflow: hidden;
}

.applicationText {
  padding: 16px;
}
.applicationText h2 {
  font-size: 18px;
}

.educationLevel {
  margin-top: 0;
}

.isbn {
  color: #aaafb7;
  position: fixed;
  top: 180px;
}

.duration {
  font-size: 12px;
  margin: 6px 0;
  color: #636363;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .isbn {
    position: inherit !important;
  }
}
.radio-button-container {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50px;
}
.radio-button-container .radio-button {
  display: flex;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-button-container .radio-button--custom {
  width: 23px;
  height: 20px;
  position: relative;
}
.radio-button-container .radio-button--custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  top: -4px;
  left: -6px;
  width: 23px;
  height: 20px;
}
.radio-button-container .radio-button--custom input:checked ~ .radio-button__circle {
  background-color: #1b75e2;
  border-color: #000;
}
.radio-button-container .radio-button--custom:hover input:not(:checked) + .radio-button__circle {
  background-color: #f3f3f3;
}
.radio-button-container .radio-button--approved input {
  width: 74px;
  left: -7px;
}
.radio-button-container .radio-button--denied input {
  width: 90px;
  left: -7px;
}
.radio-button-container .radio-button__circle {
  position: absolute;
  transition: background-color 250ms;
  top: -2px;
  left: 0;
  height: 19px;
  width: 19px;
  border: solid #b7b7b7 1px;
  border-radius: 50%;
  z-index: 1;
  background-color: #fff;
}
.radio-button-container .radio-button__text {
  margin-left: 30px;
  cursor: pointer;
}

.warning-container {
  margin-top: 1.25rem;
  font-size: 12px;
  position: relative;
}
.warning-container .warning-text {
  transition: all 100ms ease;
  opacity: 0;
  position: absolute;
}
.warning-container .warning-text p {
  margin: 0;
}

.logout .spinner-loader {
  text-align: center;
  padding-top: 100px;
}

.valideer_knop {
  font-size: 14px;
}

body {
  font-family: "Dosis", sans-serif;
  background-color: #008080;
}

h2,
h3 {
  margin: 0;
}

.app {
  width: 50%;
  max-width: 500px;
  min-width: 375px;
  min-height: 500px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.infoBox {
  position: absolute;
  top: 10%;
  right: 0px;
  width: 250px;
  border-radius: 5px 0px 0px 5px;
  padding: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid white;
  border-right: 0px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: bold;
}

.gradeContainer {
  display: grid;
  margin-top: 15px;
  grid-template-columns: 1fr 1fr;
}

.contentContainer {
  padding: 10px 25px 76px 25px;
  font-size: 14px;
}

a {
  color: #ff7f7f;
  text-decoration: none;
}

.contentDivider {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 5px;
}

.textArea {
  max-width: 100%;
  border-color: #c5e4f2;
  resize: none;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 5px;
}

.textAreaError {
  max-width: 100%;
  border-color: #ed4337;
  resize: none;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 5px;
}

.errorMelding {
  color: red;
}

.errorInfo {
  margin: 0;
  padding: 0;
  text-align: center;
}

.errorInfoAddition {
  font-size: 12px;
  text-align: center;
}

.inputRow {
  display: flex;
  justify-content: space-between;
}

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