
:root {
  --mdc-theme-primary: #F74646;
  --mdc-theme-secondary: #ffd151;
  --mdc-theme-text-hint-on-light: #F74646;
}

.main .mdc-text-field--focused:not(mdc-text-field--disabled) .mdc-floating-label,
#menu-links a.mdc-list-item {
  color: var(--mdc-theme-primary);
}

#menu-links a:hover {
  background-color: #ffe592;
  color: #111;
}

#menu-links a.mdc-list-item.active {
  color: white;
  background-color: #eab50a;
  border-color: var(--mdc-theme-primary);
}

.banner-logo {
  background-color: #eee8d1;
  height: 60px;
  position: relative;
}

.banner {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.banner-logo img {
  height: 45px;
  margin: 7px 0 0 30px;
}

#DemoWarn {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  font-size: 1.7rem;
  font-weight: bolder;
  color: var(--mdc-theme-primary);
}

.banner-title {
  /*background-color: var(--mdc-theme-primary);*/
  background-image: linear-gradient(to bottom right, var(--mdc-theme-primary), #f76640);
}

.banner-title h4 {
  margin: 0;
  padding: 8px 0 8px 30px;
  font-weight: 500;
  color: #111;
  font-size: 1.25rem;
}

.banner-title h4 span {
  font-weight: lighter;
  color: #eee;
  font-size: 1.2rem;
}

.banner-title h4 b {
  font-weight: normal;
}

.left-col {
  padding-top: 120px;
  position: fixed;
  height: 100%;
  width: 280px;
  background-color: #f2f2f2;
  overflow: auto;
}

.left-col .subtitle {
  font-weight: 500;
  margin-bottom: 0;
}

.left-control {
  position: absolute;
  bottom: 10px;
  left: 1.25rem;
}

.left-control button {
  margin: 10px 0;
}

.request {
  position: fixed;
  bottom: 25px;
  left: 32px;
  z-index: 5;
}

.request button.mdc-fab--mini {
  background-color: var(--mdc-theme-primary);
  height: 40px;
  font-size: .8rem;
}

.request button.mdc-fab--mini .mdc-fab__icon {
  width: 20px;
  font-size: 20px;
}

.course-info p {
  margin: 0;
  font-weight: bold;
}

a.mdc-list-item {
  font-weight: 300;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  margin-bottom: -1px;
}

.left-wrapper {
  margin: 0 1.25rem;
}

.main {
  padding: 100px 0 60px;
  margin-left: 280px;
}

#main-form {
  margin: 20px 0;
}

hr {
  border-color: #f4f4f4;
  border-width: 1px;
}

.buttons button {
  margin-right: 7px;
}

@media (max-width: 650px) {
  #DemoWarn {
    padding-right: 10px;
    text-align: right;
  }

  .banner-logo img {
    margin-left: 20px;
  }

  .banner-title h4 {
    padding-left: 20px;
  }

  .left-col {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 150px;
  }

  .main {
    padding-top: 10px;
    margin-left: 0;
  }

  .request {
    bottom: 15px;
    left: 15px;
  }
}

/* animation */

.off-screen {
  transform: translateY(80px);
}

.enter-screen {
  animation: fade-in .3s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes fade-in {
  from {
    transform: translateY(80px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
