html,
body {
    overflow: auto;
}

body {
    font-size: .85em;
    font-weight: 475;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-image: url(../backgrounds/AppBackground.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body a {
    text-decoration: none;
    color: white;
}

form {
    color: white;
    font-size: 1.5em;
}

#app-container {
    position: relative;
    height: 100vh;
}

#arrow{
    height: 1.75em;
    padding: .75em;
}

#arrow-text{
    font-size: 1.75em;
    margin-left: 1.5em;
}

#back-container{
    display:flex;
    align-items: center;
    height: 3.5em;
}

#shortcuts_button {
    display: none;
    justify-content: space-around;
    width: auto;
    text-align: center;
    flex-wrap: wrap;
    padding: 0 1em 0 1em;
}

#shortcuts_button .multiBlock {
    padding-bottom: 0;
}

#splash {
    display: flex;
    align-items: center;
    justify-content: center;
}

#landing-container {
    padding-top: 4em;
    display: none;
}

@keyframes logo-appear {
    from {
        transform: scale(2);
    }

    to {
        transform: scale(1);
    }

}

.svg-container {
    width: 15em;
    transition: width 1.5s ease-in-out, margin-top 1.5s ease-in-out;
    animation: logo-appear 1.5s forwards ease-out;
}

.svg-container-trans {
    width: 10em;
}

#logo-epcc,
#logo-epcc-50 {
    fill: transparent;
    fill: #fff;
    animation: fill-anim 2s forwards ease-in-out;
    /*animation-delay: .5s;*/
}

#logo-epcc-50 {
    fill-opacity: .6;
    animation: fill-anim-2 3s forwards ease-in-out;
}

#logo-epcc-50 #purple_line,
#logo-epcc-50 #purple_line-2 {
    stroke-width: 2px;
    stroke-opacity: 0.95;
}

#logo-epcc-50 #El_paso_Community,
#logo-epcc-50 #college,
#logo-epcc-50 #five,
#logo-epcc-50 #zero_left,
#logo-epcc-50 #zero_right {
    fill-opacity: 0.95;
}

#logo-epcc .cls-1,
#logo-epcc .cls-2,
#logo-epcc .cls-4 {
    fill-rule: evenodd;
}

#logo-epcc .cls-1,
#logo-epcc .cls-2 {
    fill-opacity: 0.6;
    stroke: #fff;
    stroke-miterlimit: 2.61;
    stroke-width: 0.76px;
}

#logo-epcc .cls-2 {
    stroke-linecap: square;
}

#logo-epcc .cls-3 {
    fill: none;
}

#logo-epcc path,
#logo-epcc-50 path {
    stroke: #fff;
    stroke-dasharray: 1950;
    stroke-dashoffset: 1950;
}

#logo-epcc #EPCC_Logo_Text,
#logo-epcc-50 #El_paso_Community,
#logo-epcc-50 #college {
    stroke-width: 0;
    transform-origin: center;
    animation: svg-logo-text 3s forwards ease-out;
}

#logo-epcc #EPCC_Logo_Mountains_Left,
#logo-epcc #EPCC_Logo_Mountains_Right,
#logo-epcc #EPCC_Logo_Circle,
#logo-epcc-50 #_50 path {
    animation: stroke-anim-fade 5s forwards ease-in-out;
}

#logo-epcc #EPCC_Logo_Mountains_Top_Shape,
#logo-epcc-50 #_50 #yellow_stroke {
    stroke-opacity: 0.4;
    transform-origin: center;
    animation: stroke-anim 5s forwards ease-in-out;
    stroke-dashoffset: 0;
}

@keyframes svg-logo-text {
    0% {
        opacity: 0;
        /* transform: scale(0.75); */
    }

    100% {
        opacity: 1;
        /* transform: scale(1.0); */
    }
}

@keyframes stroke-anim {
    0% {
        stroke-width: 1;
        stroke-opacity: 1.0;
        stroke-dashoffset: 1950;
    }

    100% {
        stroke-width: 0.75;
        stroke-opacity: 0;
        stroke-dashoffset: 0;
    }
}

@keyframes stroke-anim-fade {
    0% {
        stroke-width: 1;
        stroke-opacity: 1.0;
        stroke-dashoffset: 1950;
    }

    100% {
        stroke-width: 0;
        stroke-opacity: 0.6;
        stroke-dashoffset: 0;
    }
}

@keyframes stroke-anim {
    0% {
        stroke-opacity: 1.0;
        stroke-dashoffset: 1950;
    }

    100% {
        stroke-opacity: 0.6;
        stroke-dashoffset: 0;
    }
}

@keyframes fill-anim {
    0% {
        fill: transparent;
        opacity: 0;
    }

    100% {
        fill: #fff;
        opacity: 1;
    }
}

@keyframes fill-anim-2 {
    0% {
        fill: transparent;
        fill-opacity: 0;
    }

    100% {
        fill: #fff;
        fill-opacity: 0.6;
    }
}

#menu-container {
    background-color: black;
    color: white;
    position: fixed;
    z-index: 1;
    right: 0;
    top: 0;
    display: none;
    box-shadow: 16px -15px 7px 21px rgba(0, 0, 0, 0.54);
}

#menu-heading {
    font-size: 2em;
    margin: .25em 1em .25em 1em;
}

#menu-student,
#menu-faculty,
#menu-visitor {
    height: 2em;
    padding-top: .5em;
}

#menu-backdrop {
    display: none;
    height: 100vh;
    width: 100%;
}

#nav-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    width: 3.5em;
    height: 3.5em;
    z-index: 1;
    background-image: url(../icons/icon_account.png);
    background-size: cover;
}

#selection-bar {
    position: fixed;
    width: 100%;
    height: auto;
    background-color: #258184;
    display: flex;
    justify-content: center;
    bottom: 0;
}

#search-wrapper {
    display: flex;
    width: 90%;
    margin: 2em 1em 2em 1em;
}

#search-input {
    display: block;
    margin: 0;
    flex-grow: 1;
    width: auto;
    min-width: 0;
    padding: .5em .5em;
    font-size: .9em;
    background: #fff;
    border: 1px solid black;
    box-sizing: border-box;
}

#toggle-list {
    text-align: left;
    width: 80%;
}

.user-selection-container {
    height:0;
    opacity: 0;
   
}

.user-selection-container-show{
    height: 34em;
    opacity: 1;
    transition: height 1.5s, opacity 1.5s;
}

.active {
    background-color: #258183;
}

.back-button {
    color: white;
    margin-left: .15em;
    display: none;
}

.classification {
    align-content: center;
    color: #fff;
    font-weight: 500;
    width: 34%;
    text-align: center;
    height: 3em;
    line-height: 3em;
}

.img-select {
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.input-lines {
    margin-top: .75em;
    justify-content: space-between;
    display: flex;
}



.logoHeader {
    background-color: #258184;
    position: fixed;
    width: 100%;
    height: 3.5em;
    display: none;
    z-index: 1;
}

.logoimg {
    height: 3.5em;
    display: block;
    padding-left: 1em;
}

.flexbox-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
}

.multiBlock_Container {
    display: inline-flex;
    justify-content: space-around;
    width: auto;
    text-align: center;
    flex-wrap: wrap;
    padding: 0 1em 0 1em;
}

.multiBlock {
    padding: 0.5em 0.5em 0 .5em;
    width: 20%;
}

.multiBlock div {
    width: 3.5em;
    background-repeat: no-repeat;
    background-size: contain;
    height: 3.5em;
    background-position: center;
    margin: 0 auto;
}

.no-load{
    display:none;
}

.start-screen{
    width: 100vw;
    height: 100vh;
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color:rgba(37, 129, 132, 0.54);
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 1em;
    margin-top: .25em;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1em;
    width: 1em;
    left: 0;
    bottom: 0;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #12bd86;
}

input:focus+.slider {
    box-shadow: 0 0 1px #12bd86;
}

input:checked+.slider:before {
    -webkit-transform: translateX(1em);
    -ms-transform: translateX(1em);
    transform: translateX(1em);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.user-roles {
    list-style-type: none;
    text-align: center;
    font-size: 1.25em;
}

.user-role-decoration {
    border-bottom: 1px solid white;
}

.user-selection-text {
    text-align: center;
    font-size: 3em;
    color: white;
    font-weight: 500;
    padding-top: 1em;
}

.user-selection-text div {
    margin: 0.5em;
    border: 3px solid white;
    background: #00000042;
    padding: 0.25em 1.5em;
}

.user-selection-decoration {
    border-bottom: 3px solid white;
}

@media screen and (min-width: 750px) {
    body {
        font-size: 1.5em;
    }

    .svg-container {
        width: 15em;
        transition: width 1.5s ease-in-out, margin-top 1.5s ease-in-out;
        animation: logo-appear 1.5s forwards ease-out;
    }

    .svg-container-trans {
        width: 10em;
    }

    .user-selection-text {
        text-align: center;
        font-size: 3em;
        color: white;
        font-weight: 500;
        padding-top: .35em;
    }

    .user-selection-text div {
        margin: 0.5em;
        border: 4px solid white;
        background: #00000042;
    }

    .user-role-decoration {
        border-bottom: 2px solid white;
    }



}

@media screen and (max-width: 320px) {
    body {
        font-size: .75em;
    }
}

/* @media only screen and (orientation:landscape) {
    #landing-container {
        padding-top: 2.5em;
    }

    #nav-hamburger {
        width: 2em;
        height: 2em;
    }

    .multiBlock div {
        width: 2em;
        height: 2em;
    }

    .multiBlock p {
        font-size: .75em;
    }

    .logoimg {
        height: 2em;
    }
} */