/* Nested Explorer Browse */
.nested-browse-enter {
	margin-top: -100%;
 
}

.nested-browse-enter.nested-browse-enter-active {
	margin-top: 0px;

  transition: margin-top 500ms ease-out;
}

.nested-browse-leave {
  margin-top:0px;
}

.nested-browse-leave.nested-browse-leave-active {
  margin-top: -100%;
  transition: margin-top 300ms ease-in;
}

.nested-browse-appear {
  opacity: 0.01;
}

.nested-browse-appear.nested-browse-appear-active {
  opacity: 1;
  transition: opacity .5s ease-in;
}

/* Loader */
@keyframes rotate { from { transform: rotate(0deg) } to { transform: rotate(360deg) }  }

.loader {
    animation-name: rotate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    display: inline-block;
}

.loaderContainer{
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    text-align: center;
    top: 1px;
    padding-top: 10px;
    left: 1px;
    background: hsla(0,0%,100%,.71);
    margin: 0!important;
}

.school-tab{
    display:inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    background: #B5B1A8;
    width:50%;
    position:relative;
    margin-bottom:20px;
    cursor: pointer;
    z-index: 1;
}

.school-tab-active {
    background: #56544D
}

.school-tab-triangle {
	background: #56544D;
    border-left: 8px solid #FFFFFF;
    border-right: 8px solid #FFFFFF;
    border-top: 10px solid #56544D;
    content: " ";
    height: 0;
    position: absolute;
    left: 50%;
    top: 65px;
    width: 0;
}

.subject-wrapper a {
    display: block;
    margin-left: 0px;
}
.subject-browse-title {
    font-size: 18px;
    display: inline-block;
    margin-left: 11px;
    vertical-align: middle;
}
.subject-container h1 {
    font-weight: normal;
}
.subject-link {
    padding: 0px 20px;
}
.subject-link:hover {
    background-color: #d0f1e8;
}
.subject-icon {
    display: inline-block;
    vertical-align: middle;
}
.subject-container h1 {
    padding-left: 15px;
}