@font-face {
	font-family:"Lucid-Sans-Display-Regular"; /*Sans Serif*/
	src: url("../fonts/Lucid-Sans-Display-Regular.woff") format('woff');
}

iframe { 
    border: 0; 
    margin: 0; 
    height: 100%; 
    background: hsla(0, 0%, 6%, 1);
}

body { 
    font-family:"Lucid-Sans-Display-Regular"; /* Sans-Serif;*/
    height:100%; 
    width: 100%;
    padding:0; 
    margin: 0;
    background: #101010;
}

html {
    height: 100%;
    width: 100%;
}
 
.lucid-manual-menu {
    width: 30vw; 
    height: 100%;
    scroll-behavior: smooth;
    overflow: auto;
    border-right: 0.5px solid #282828;
}

.lucid-manual-content {
    min-width: 70vw; 
    height: 100%;
    background-color: white;
}

#brightnessfilter {
    display: none;
    position: absolute; 
    min-width: 70vw; 
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    right: 0;
    z-index: 9999;
} 

.topnav {
    display: none;
    flex-direction: row;
    background-color: black;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

a{
   height: 100%;
}

.logo {
    max-width: 40%;
    height: auto;
    padding: 10px 0;
}

.icon {
    height: 4vh;
    margin: 10px;
}

/* Mobile only styles */
@media only screen and (max-device-width: 700px) {

    .lucid-manual-content {
       display: block; 
       min-width: 100vw;
       height: 92vh;
    }

    #contentLoader {
        display: none; 
        min-width: 100vw; 
        margin-top: 8vh;
        height: 92vh; 
        background-color: white;
        z-index: 9999;
    }

    .lucid-manual-menu {
        display: none;
        width: 100vw;
        height: 92vh;
        border-right: 0px solid #9f9f9f;
    }

    .topnav {
        display: flex;
        justify-content: space-between;
        width: 100vw;    
        height: 8vh;
    }

    #menuIcon {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
        animation: pulsing 2s 5; 
    }

    @keyframes pulsing {
        0% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);}
        50% {box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);}
        100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
    }
}  

