/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  border: 3px solid #888;
  color: #464749;
  width: 80%;
  min-height: 25vw;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  margin:2px 12px 2px 12px;
  vertical-align: text-top;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #a2daf3;
  text-decoration: none;
  cursor: pointer;
}

.infoButton{
  margin-top: 5%;
  color: #464749;
  font-weight: bold;
  border: none;
  background: #ffffff;
}

.infoButton:hover,
.infoButton:focus {
  background: #a2daf3;
  cursor: pointer;
}

.curriculum{
  padding: 5%;
  display: none;
} 

.curriculumSlide{
  float: right;
  padding-left: 10%;
  padding-bottom: 5%;
  width: 25%;
  height:auto;
} 

td {
    border: none;
    padding: 0.5%
} 

.standardTable {
    width: 70%;
}

.standardTable td {
    border: none;
    padding: 0%;
}


@media (max-width: 800px) {
  .curriculumSlide{
    display: none;
  }

  td {
    border-bottom: 1px solid #b4b5b6;
  }

  .standardTable td {
    border-bottom: none;
  }

  .standardTable {
    width: 100%;
}


}      

