@charset "UTF-8";
@import "../../shared_css/bootstrap.css";
h1 {
  font-size: 23px;
  font-weight: bold;
}

h2 {
  font-weight: bold;
  line-height: normal;
  font-size: 24px;
  color: #006ab2;
}

h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
}

h4 {
  font-size: 15px;
  font-weight: bold;
}

h5 {
  font-size: 13px;
  font-weight: bold;
}

p {
  font-size: 14px;
  line-height: 1.2;
}

.font--white {
  color: #ffffff;
}

.btn {
  padding: 6px 18px;
  transition: background-color 0.6s;
}
.btn:hover, .btn:active {
  background-color: #003c88;
  color: #ffffff;
}
.btn:focus {
  box-shadow: none;
  background-color: #003c88;
}
.btn.btn-blue, .btn.btn-primary {
  background-color: #006ab2;
  color: white;
  border: 0;
}
.btn.btn-blue:hover, .btn.btn-blue:active, .btn.btn-blue:not(:disabled):active, .btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:not(:disabled):active {
  background-color: #003c88;
  color: #ffffff;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #006ab2;
  border: 0;
}
.btn.btn-white:hover {
  background-color: #003c88;
  color: #ffffff;
}
.btn.btn-transparent {
  background-color: transparent;
  color: #006ab2;
  border: 0;
}
.btn.btn-transparent--light {
  color: white;
}
.btn.btn-transparent:hover {
  background-color: #003c88;
  color: #ffffff;
}

/* ---------- LOGIN------------- */
.login-container {
  width: 500px;
  margin: 50px auto;
  background-color: white;
  padding: 40px;
}

.login_form input[type=text],
.login_form input[type=password] {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  margin-bottom: 15px;
  border: #EFEFEF solid 1px;
}

.login-container .btn-blue {
  min-width: 50%;
  margin: 15px auto;
  display: block;
}

.error-message {
  color: red;
  margin-top: 10px;
}

.registration_indicator {
  padding: 20px;
  border-radius: 4px;
  background-color: #EFEFEF;
  margin: 20px 0;
  width: fit-content;
}

.navbar {
  background-color: #ffffff;
  padding: 1.5rem 1rem;
  color: #006ab2;
  flex-wrap: nowrap;
}
.navbar .logo {
  max-width: 200px;
}
.navbar .form-inline .form-control {
  border-radius: 30px;
  border: 1px solid #EFEFEF;
}
@media (max-width: 768px) {
  .navbar {
    font-size: 14px;
    padding: 1rem;
  }
  .navbar .logo {
    max-width: 100px;
  }
  .navbar .form-inline {
    display: none;
  }
}

.navbar-area-right {
  display: flex;
  align-items: center;
}
.navbar-area-right .btn {
  font-weight: bold;
  margin: 0 10px;
  color: #006ab2;
}
.navbar-area-right .btn:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .navbar-area-right .btn {
    padding: 6px 8px;
  }
}
.navbar-area-right .login-info {
  font-size: 18px;
  background-color: #EFEFEF;
  border-radius: 50%;
  width: 40px;
  line-height: 40px;
  text-align: center;
}

.nav-back {
  color: #006ab2;
  margin-left: 40px;
  font-size: 16px;
  position: relative;
}
.nav-back:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 36px;
  background: url(../img/arrow--back.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -40px;
}

.card--blue {
  border: 0px;
  height: 100%;
}
.card--blue .card-body {
  background-color: #006ab2;
  color: #ffffff;
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  cursor: default;
}
@media (max-width: 992px) {
  .card-title {
    font-size: 18px;
    font-weight: bold;
  }
}

.card-link:hover {
  text-decoration: none;
}
.card-link:hover .card--blue {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.card-img-top {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .card-img-top {
    height: 140px;
  }
}
@media (max-width: 576px) {
  .card-img-top {
    height: 170px;
  }
}

.card-footer {
  background-color: transparent;
  border-top: 0;
}

/*DETAIL*/
.card {
  height: 100%;
}

.session_detail-header {
  background-color: #006ab2;
  color: #ffffff;
}
@media (max-width: 768px) {
  .session_detail-header {
    flex-flow: column-reverse;
  }
}

.session_detail-header--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.session_detail-picture {
  display: flex;
  justify-content: flex-end;
}
.session_detail-picture img {
  width: 85%;
  object-fit: cover;
}
.session_detail-picture:before {
  content: "";
  background-color: #006ab2;
  position: absolute;
  left: 0;
  height: 100%;
  width: 25%;
  transform: skewX(-15deg);
}
@media (max-width: 768px) {
  .session_detail-picture img {
    width: 75%;
  }
  .session_detail-picture:before {
    left: 12%;
    height: 100%;
    width: 25%;
    transform: skewX(-15deg);
  }
}
@media (max-width: 576px) {
  .session_detail-picture:before {
    left: 0;
  }
  .session_detail-picture img {
    width: 85%;
  }
}

.icon_course-offline {
  padding: 4px;
  position: relative;
}
.icon_course-offline img {
  width: 25px;
}
.icon_course-offline:hover:before {
  content: "Auch offline verfügbar";
  position: absolute;
  left: 25px;
  background-color: #EFEFEF;
  color: #000000;
  font-size: 14px;
  padding: 3px;
  border-radius: 3px;
  max-width: 100px;
  margin: 0 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.session_description {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.course-details {
  display: none;
  width: calc(100% - 30px);
  margin-top: 16px;
  position: absolute;
  z-index: 3;
}
.course-details:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  left: calc(50% - 10px);
  transform: rotate(45deg);
  background-color: #EFEFEF;
}
.course-details .course-details-content {
  padding: 30px;
  background-color: #EFEFEF;
  border-radius: 0.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.visually-hidden {
  position: absolute;
  left: -100vw;
}

.course_toggle {
  height: 24px;
  margin-bottom: 0;
  background-image: url(../img/arrow--down.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.course_toggle:hover {
  background-color: #EFEFEF;
}
.course_toggle:active {
  background-color: #EFEFEF;
  transform: translateY(2px);
}

input[type=checkbox]:checked + .course-details {
  display: block;
}

body {
  font-family: "roboto condensed", "roboto", sans-serif;
  color: #1A1A1A;
  font-size: 14px;
  background-image: url(../img/background-image.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  background-color: #ffffff;
  margin: 60px auto;
}

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