@import url('https://fonts.googleapis.com/css?family=Roboto:700|Anton|Mina');
main {
	margin-left: auto;
	margin-right: auto; 
}

.header {
  background-color: #4b2e83;
  box-shadow:          0 0 0 10px rgba(0,0,0,0.15);
  -moz-box-shadow:     0 0 0 10px rgba(0,0,0,0.15);
  -webkit-box-shadow:  0 0 0 10px rgba(0,0,0,0.15);
  color: #fff;
  height: 75px;
  position: fixed;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

.row {
  max-width: 100%;
}

main.row {
  padding-top: 15vh;
}

#side-nav {
  position: fixed;
}

/*
a {
  color: #fff;
}

a:hover {
  color: #3e3e3e;
}*/

#course-name {
  border-left: 4px solid #fff;
  padding-left: 20px;
  font-weight: bolder;
  font-size: 28px;
  font-family: Verdana, sans-serif;
  line-height: 28px;
}

#course-name > span {
  font-size: 18px;
}

#uw-logo {
  display: flex;
  justify-content: space-around;
}
#uw-logo > img {
  height: 50px;
  width: 70px;
}

.vertical {
  background-color: #4b2e83;
  /*
  -moz-box-shadow:     2px 5px 5px #000;
  -webkit-box-shadow:  2px 5px 5px #000;
  box-shadow:          2px 5px 5px #000;
  */
}

.vertical > li {
  margin: 1vh;
  padding: 1vh;
  -webkit-transition: background-color 0.5s,  z-index 0.5s, box-shadow 0.5s; /* Safari */
  transition: background-color 0.5s,  z-index 0.5s, box-shadow 0.5s;
}

.vertical > li > a {
  display: inline;
  color: #fff;
  font-weight: bold;
}

i {
  color: #fff;
}

.vertical > li:hover {
  background-color: #8770B3; /*#744eb9;*/
  z-index: 0; /*9999;*/
  box-shadow: 0 4px 2px -2px black;
}

#menu-toggle-button {
  position: fixed;
  top: 17vh;
  left: 1vw;
  height: 30px;
  width: 30px;
  background-color: #5a5555;
}

#close-button {
  text-align: right;
  padding-right: 4vw;
}

.hidden {
  display: none;
}

.visible {
  display: block;

}

.no-content {
  padding-top: 10vh;
  text-align: center;
  font-weight: bold;
}

.home-buttons {
  text-align: center;
  -moz-box-shadow:     0 0 2px #eee;
  -webkit-box-shadow:  0 0 2px #eee;
  box-shadow:          0 0 2px #eee;
  padding: 3%;
  display: block;
  width: 200px;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  font-weight: bolder;
  /*
  background-image: #43C6AC;
  background-image: -webkit-linear-gradient(to right, #77cbe8 0%, #bcf9ff 51%, #77cbe8 100%);
  background-image: linear-gradient(to right, #77cbe8 0%, #bcf9ff 51%, #77cbe8 100%);
  */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /*transition: 0.5s;*/
  background-size: 200% auto;
  color: #4b2c88;
  border: 3px solid #4b2c88;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}

.home-buttons:hover {
  /*background-position: right center;*/
  opacity: 1;
  color: #fff !important;
  background-color: #4b2c88 !important;
}

.officehours {
  list-style-type: none;
}

.wplhours {
  font-size: 14px;
}

.wplhours th {
  text-align: left;
}

.inner-header {
  margin-top: 5%;
  margin-bottom: 2.5%;
  max-height: 50px;
  /* height: 10vh; this was causing overflow issues */
  background-color: #4b2e83;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  line-height: 50px;
  border-radius: 4px;
}

.inner-header:first-child {
  margin-top: 0;
}

.staff-tile {
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 280px;
  position: relative;
  margin-bottom: 60px;
  margin-top: 2vh;
}

.staff-tile::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.staff-image {
  z-index: 0;
  height: 80%;
  width: 80%;
  border-radius: 50%;
  margin: auto auto;
}

.staff-info {
  border: 4px solid rgb(75, 46, 131);
  width: 100%;
  border-radius: 4px;
  margin-top: -50px;
  display: flex;
  align-self: center;
  justify-content: space-between;
  font-weight: bold;
  padding: 8px;
  z-index: 1;
  color: #4b2e83;
  background-color: #fff;
}

.staff-text, .staff-mail {
  margin: 0;
}

.staff-mail {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-right: 5%;
}

.staff-mail > a > i {
  color: #4b2e83;
}

.staff-name {
  font-size: 1.1em;
}

.page-hr {
  max-width: 100%;
}
.announcement-content {
  padding-left: 20px;
}

#creative-project-container, #homework-container {
  display: flex;
  justify-content: space-around;
}
.announcement-date {
  border-right: 1px solid #dddddd;
  line-height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.announcement-header, .announcement-date {
  font-weight: bold;
  color: #727272;
}

.due-container {
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  font-size: 14px;
}

.tile-hw {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 40%;
  -moz-box-shadow:     0 0 2px #eee;
  -webkit-box-shadow:  0 0 2px #eee;
  box-shadow:          0 0 2px #eee;
  transition: 0.5s;
  background-size: 200% auto;
  margin-top: 5%;
  min-width: 250px;
  padding: 3%;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  font-weight: bolder;
  background-color: #adee8a;
  color: #3e3e3e;
}

.tile-hw .button-container a {
  color: #3e3e3e;
}

.tile-hw .button-container {
  display: flex;
  justify-content: space-between;
}

.tile-hw .button-container a {
  width: 45%;
}

.file-tile {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.file-tile  i{
  color: #607d8b;
}

#side-nav li {
  margin: 8px;
}

#side-nav li:hover {
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #course-name {
    font-size: 16px;
    line-height: 16px;
  }
  #course-name > span {
    font-size: 12px;
  }
  #uw-logo > img {
    height: 30px;
    width: 50px;
  }
  #side-nav  {
    display: none;
    width: 100vw;
    height: 100vh;
  }
  #menu-toggle-button {
    display: block;
  }
}

@media only screen and (max-width: 500px) {
  #uw-logo {
    padding: 5px;
  }
  .content-area {
    margin-left: auto;
    margin-right: auto;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
}

@media only screen and (min-width: 767px) {
  #side-nav {
    margin: 3vh;
    max-width: 250px;
    height: 74vh;
    display: block;
  }
  #menu-toggle-button, #close-button {
    display: none;
  }
  .content-area {
    margin-left: 260px;
    margin-top: 3vh;
    margin-bottom: 3vh;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Inverting colors for Instructor staff tile */
#instructor-tile .staff-info {
  background-color: #4b2e83 !important;
  color: #fff;
}

#instructor-tile .staff-mail i {
  color: #fff;
}

#home-messageboard p:last-child {
  text-align: center;
}

.reveal {
  z-index: 9999;
}
.reveal h4 {
  color: #3e3e3e;
  font-size: 1.5em;
}

.reveal h5 {
  color: #5e5e5e;
  font-size: 1em;
  font-weight: bold;
  margin: 5px auto;
}

.reveal hr {
  margin: 0 0 5px 0;
}

.lecture hr, .section hr {
  margin: 0; 
}

.extra-links {
  display: block; 
}

