/* Stylesheet of S78Backend */
/* Color definitions */
/* Definition of header */
#top-navigation {
  background-color: royalblue;
  width: 100%;
}

#top-navigation #logo {
  color: ivory;
}

#top-navigation a {
  color: ivory;
}

#top-navigation span {
  color: ivory;
}

#top-navigation a:hover {
  color: gold;
}

#top-navigation #logo {
  color: ivory;
}

/* Definition of body */
body, html {
  height: 100%;
  background-color: #f8f8f8;
}

/* Definition of Main */
main {
  margin-bottom: 1rem;
}

/* Defininition of Footer */
.footer {
  font-size: 0.77rem;
  background-color: #fefefe;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

#ImpressumButton {
  text-decoration: none;
  font-size: 0.77rem;
  color: royalblue;
  cursor: pointer;
}

#FooterText {
  font-size: 0.77rem;
}

/* Style of nice titles */
.nice-title {
  color: royalblue;
  font-size: 1.5rem;
  font-weight: normal;
}

.nice-title-m {
  color: royalblue;
  font-size: 1.25rem;
  font-weight: normal;
}

.nice-title-sm {
  color: royalblue;
  font-size: 1.125rem;
  font-weight: normal;
}

/* White border box for content full width */
.white-box {
  border: 1px solid #ececec;
  min-width: 100%;
  background-color: #fefefe;
}

.white-box-2-cols-right, .white-box-2-cols-left {
  border: 1px solid #ececec;
  background-color: #fefefe;
}

/* White boder box for content two cols */
@media (min-width: 991px) {
  .white-box-2-cols-left {
    border-right: 0px solid #ececec;
  }
}

@media (min-width: 991px) {
  .white-box-2-cols-right {
    border-left: 0px solid #ececec;
  }
}

/* Rule to transform tables on small screens */
@media (max-width: 533px) {
  .responsive-view-big {
    display: none;
  }
}
@media (min-width: 534px) {
  .responsive-view-big {
    display: block;
  }
}

@media (max-width: 533px) {
  .responsive-view-small {
    display: block;
  }
}
@media (min-width: 534px) {
  .responsive-view-small {
    display: none;
  }
}

/* Line below table head */
.thead-bottom-line {
  border-bottom: 1px solid gainsboro;
}

/* Rule to not display element on touch only devices (phones, tablets) */
@media only screen and (max-width: 991px) {
  .desktop-only {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .desktop-only {
    display: block;
  }
}

/* Rule to not display element on desktop devices */
@media only screen and (max-width: 991px) {
  .mobile-only {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}

/* Teacher image */
.teacher-image {
  max-height: 25vh;
}

/* Comment on student detail page */
#comment-div {
  background-color: #e9ecef;
  border-radius: 5px;
  padding: 0.5rem;
}

/* Margin rules */
/* Margin at the top of the element */
.margin-top {
  margin-top: 1rem;
}

/* Small margin at the top of the element */
.margin-top-sm {
  margin-top: 0.5rem;
}

/* Margin at the right of the element */
.margin-right {
  margin-right: 1rem;
}

/* Margin at the bottom of the element */
.margin-bottom {
  margin-bottom: 1rem;
}

/* Padding bottom */
.padding-bottom {
  padding-bottom: 1rem;
}

/* Color for pdf icon */
.material-icons.red {
  color: crimson;
}

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