@charset "UTF-8";
:root {
  --epitopColorBlue: #2e9afe;
  --epitopBlueDark: #134e86;
  --epitopDarkest: #282c37;
  --textcolorDark: #575757;
  --white: #ffffff;
  --epitopBoxColor: #f4f7fa;
  --epitopCloseWhite: #fafafa;
  --epitopGray: #a8a8af;
  --gray: #cccccc;
  --grayBright: #f2f2f2;
  --grayBrighter: #f9f9f9;
  --grayDark: #e4e4e4;
  --epitopCloseBlack: #252525;
  --epitopColor2: #3f3f47;
  --complementaryEpitopColor: #c78e87;
  --complementaryEpitopColorHover: #ff7867;
  --warningRed: #ff6b58;
  --topbarColor: #37607f;
  --sidebarLeftBackgroundColor: #282c37;
  --sidebarWidthLeftSlim: 5rem;
  --sidebarHeightTop: 12rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  /* Box-sizing does not inherit, so we "set" it on every element */
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Ubuntu", "Lato", "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  height: 100%;
}

main {
  position: relative;
  /* height: 100vh;
  overflow: scroll; */
}

ul {
  list-style-type: none;
}

.empty-sidebar {
  display: none;
}

.empty-top-nav {
  display: none;
}

.login-container {
  box-sizing: border-box;
  width: 100%;
  margin: 1rem auto 10rem auto;
  padding: 5rem 5rem 8rem 5rem;
  border-radius: 0;
  border: 0.5rem black;
  position: relative;
  box-shadow: 0 0 1rem white;
  background-color: var(--grayBright);
  color: var(--epitopCloseBlack);
}
.login-container__call-to-action {
  font-size: 1.5rem;
  color: var(--epitopColorBlue);
  margin-top: 2rem;
}
.login-container__call-to-action-button {
  font-size: 1.5rem;
  color: var(--epitopColorBlue);
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.login-container__call-to-action-button:hover {
  color: var(--epitopBlueDark);
}
.login-container__dashboard__app-links-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.login-container__dashboard__app-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.login-container__dashboard__app-card {
  width: 15rem;
  height: 15rem;
  background-color: var(--epitopBoxColor);
  border: 1px solid var(--epitopGray);
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.login-container__dashboard__app-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.login-container__dashboard__app-icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
  background-color: var(--epitopBlueDark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}
.login-container__dashboard__app-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--epitopBlueDark);
  text-align: center;
}

.main-content {
  position: absolute;
  width: 95%;
  left: 2.5%;
}

.top-liner {
  --scaleTopLiner: 1.1;
  box-sizing: border-box;
  margin-top: 1.2em;
  background-color: var(--topbarColor);
  border-radius: 3px;
  color: var(--epitopCloseWhite);
  height: calc(2.65em * var(--scaleTopLiner));
  line-height: calc(2.65em * var(--scaleTopLiner));
  font-size: calc(1.1em * var(--scaleTopLiner));
  padding-left: calc(0.9em * var(--scaleTopLiner));
  margin-bottom: calc(1.2em * var(--scaleTopLiner));
  font-weight: bold;
  position: relative;
  box-shadow: 0 0 1rem white;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.login-container__title {
  font-size: 2.5rem;
  align-content: center;
}

.login-container__title-sub {
  font-size: 1.7rem;
  align-content: center;
}

.login-container__logout-redirect {
  font-size: 1.2rem;
  align-content: center;
}

.login-container__epitop-logo {
  display: none;
  width: 20rem;
  height: 7.9rem;
  background-image: url("https://epitop.com/wp-content/uploads/2022/08/epitop_LOGO_web-1024x226.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.text-danger {
  color: red;
  font-size: 1.8rem;
}

.d-none {
  display: none;
}

.control-label {
  font-size: 1.5rem;
}

.form-control {
  width: 100%;
  box-sizing: border-box;
  border: none;
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 1.4rem;
  line-height: 1.42857143;
  color: #2e9afe;
  background-color: #f9fcff;
  background-image: none;
  border: 1px solid #2e9afe;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-radius: 0px;
  outline: 2px solid #2e9afe;
}

.form-control[type=checkbox] {
  width: auto;
}

.btn {
  box-sizing: border-box;
  padding: 1.6rem 3.2rem;
  text-decoration: none;
  margin: 0.4rem 0.2rem;
  cursor: pointer;
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 1.4rem;
  line-height: 1.42857143;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #ffffff;
  background-color: #2e9afe;
  margin: 0;
}

.btn-hover {
  color: #ffffff;
  background-color: #0181f8;
  border-color: #016fd4;
}

.btn-success {
  background-color: #2e9afe;
  border: none;
  color: white;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-success:hover,
.btn-success:focus {
  color: #ffffff;
  background-color: #0181f8;
  border-color: #016fd4;
}

.btn-link {
  background-color: unset;
  box-sizing: border-box;
  font-size: 1.4rem;
  padding: 0 0 0 1.9rem;
  color: #2e9afe;
  margin-left: -2rem;
}

.btn-link:active {
  color: #2e9afe;
}

.language-selection {
  height: 2rem;
}

.bold {
  font-weight: bold;
}

.small-text {
  font-size: 1.1rem;
}

/*punkte deco oben links*/
.epitop-border-deco {
  position: absolute;
  top: -10px;
  left: -25px;
  width: 100px;
  height: 100px;
  background-image: url(https://duo.epitop.com/images/images2018/epitop-dots-border.png);
  background-repeat: no-repeat;
  background-position: 4px -12px;
  pointer-events: none;
  opacity: 0.001;
}

/*epitop box horizontal dotted line*/
.epitop-box hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 6px dotted white;
  margin: 1em 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
}

.logo-top-left {
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebarWidthLeftSlim);
  height: var(--sidebarHeightTop);
  background-image: url("https://epitop.com/wp-content/uploads/2022/08/epitop_LOGO_web-1024x226.png");
  background-position: -5% 50%;
  background-size: 400% 37%;
  background-repeat: no-repeat;
  display: none;
}

.sidebar-toggle {
  position: absolute;
  left: 251px;
  width: 20px;
  height: 100%;
  background: #282c37;
  opacity: 0.9;
  display: none;
}

.w-100 {
  width: 100%;
}

.label-side {
  display: none;
}

.vertical-dottet-line {
  display: none;
}

.login-broad .padding-top-1 {
  padding-top: 1rem;
}

.login-broad .padding-top-5 {
  padding-top: 5rem;
}

.bold-blue-label-text {
  color: var(--epitopColorBlue);
  font-weight: bold;
  vertical-align: bottom;
}

.login-broad .form-control[type=checkbox] {
  width: auto;
  display: inline-block;
  vertical-align: unset;
  height: auto;
}

@media (min-width: 768px) {
  .empty-top-nav {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--sidebarHeightTop);
    background-color: var(--topbarColor);
    display: block;
  }
  .logo-top-left {
    display: initial;
  }
  .empty-sidebar {
    z-index: 5;
    position: fixed;
    width: var(--sidebarWidthLeftSlim);
    top: 0;
    height: 100%;
    background-color: var(--sidebarLeftBackgroundColor);
    display: block;
  }
  .login-container {
    margin-top: 3rem;
    width: 60rem;
    color: var(--textcolorDark);
  }
  .top-liner {
    width: 40rem;
    margin-top: 2.9rem;
  }
  .main-content {
    position: absolute;
    left: var(--sidebarWidthLeftSlim);
    top: var(--sidebarHeightTop);
    width: calc(100% - var(--sidebarWidthLeftSlim));
  }
  .login-broad .top-liner {
    width: 70rem;
  }
  .login-broad .login-container {
    margin-top: 3rem;
    width: 70rem;
  }
  .login-broad .label-side {
    text-align: right;
    display: inline-block;
    width: 38%;
    font-size: 1.2rem;
    padding-right: 3rem;
    box-sizing: border-box;
  }
  .login-broad .form-group {
    margin-top: 1.2rem;
    display: inline-block;
    width: 60%;
  }
  .login-broad .form-group.w-100 {
    width: 100%;
  }
  .split-login-right {
    display: inline-block;
    width: 60%;
  }
  .login-broad .text-center-group {
    text-align: center;
  }
  .login-broad .d-none-over-600 {
    display: none;
  }
  .login-broad .login-container__title {
    font-size: 1.6rem;
    padding-top: 1.9rem;
  }
  .login-broad .vertical-dottet-line {
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 1%;
    border-left: 7px dotted white;
    left: 37.2%;
    transform: translateY(-5rem);
  }
  .login-broad .fill-remaining {
    display: inline-block;
    width: 99%;
  }
  .login-broad .text-danger {
    font-size: 1rem;
    color: #de9299;
  }
  .login-broad .login-container {
    padding-bottom: 6rem;
  }
  .top-nav-container {
    display: flex;
    justify-content: flex-end;
  }
  .top-nav-container__button {
    display: inline-block;
    text-decoration: none; /* Remove underline */
    font-size: 1.4rem;
    color: var(--epitopCloseWhite);
    margin-left: 0.5rem;
    font-weight: 500; /* Make font slightly bolder */
    padding: 0.8rem 0.8rem; /* Padding inside buttons */
    border-radius: 4px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth transition effect */
  }
  .top-nav-container__button:hover {
    text-decoration: none; /* Prevent underline on hover */
    background-color: #e8f1ff; /* Light blue background on hover */
    color: #003975; /* Darker blue text on hover */
    border-color: #cce4ff; /* Light border on hover */
  }
  .top-nav-container__user-display {
    padding: 0.8rem 0.8rem;
    margin-left: 0.8rem;
    margin-right: 1rem;
    font-size: 1.4rem;
    color: var(--epitopCloseWhite);
    cursor: default; /* Prevent pointer cursor */
    background: none; /* No hover or background for username */
  }
}
.page-device-denied__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.page-device-denied__description {
  font-size: 1.5rem;
}

.page-device-success__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.page-device-success__description {
  font-size: 1.5rem;
}

.page-device-confirmation__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.page-device-confirmation__confirm-code {
  font-size: 1.5rem;
}

.user-code-confirmation__details {
  margin: 2rem 0;
  cursor: pointer;
}
.user-code-confirmation__details__summary {
  cursor: default;
  list-style: none;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #007BFF;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 2rem;
}
.user-code-confirmation__details__summary::before {
  content: "▶ ";
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 1s ease;
}
.user-code-confirmation__details[open] .summary::before {
  content: "▼ ";
  transform: rotate(0deg);
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

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