@font-face {
    font-family: PublicSans;
    src: url(../fonts/PublicSans-Regular.otf);
    font-weight: normal;
}

@font-face {
    font-family: PublicSans;
    src: url(../fonts/PublicSans-Light.otf);
    font-weight: lighter;
}

@font-face {
    font-family: PublicSans;
    src: url(../fonts/PublicSans-LightItalic.otf);
    font-style: italic;
}

@font-face {
    font-family: PublicSans;
    src: url(../fonts/PublicSans-Bold.otf);
    font-weight: bold;
}

* {
    font-family: PublicSans;
    font-weight: lighter;
}

html {
    height: 100vh;
}

body {
    margin: 0;
    height: 100vh;
}

.row {
    display: flex;
    height: calc(100vh - 47px);
    top: 0px;
    z-index: -2;
}

.lcol {
    flex: 25%;
    background-color: lightblue;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lcol > * {
    justify-content: center;
}

.rcol {
    flex: 75%;
    overflow: auto;
    margin-left: 1.5vw;
}

.rcol > * {
    max-width: 95%;
}

.card {
    display: block;
    border-radius: 40%;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 600px) {
    .row {
        flex-flow: row wrap;
        flex-direction: column;
        height: 100vh;
    }
    .lcol {
        order: 1;
        width: 100%;
        font-size: 10px;
    }
    .rcol {
        order: 2;
        width: 100%;
    }
    .card {
        display: none;
    }
    nav ul {
        flex-direction: column;
    }
}

@media only screen and (min-width: 601px) {
    nav li:first-child {
        margin-right: auto;
    }
}

nav {
    margin-top: 0 !important;
    border: 0 !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 20;
    position: relative;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

    display: flex;
    background-color: slategray;
    justify-content: flex-end;
}

nav li {
    color: white;
}

nav li:hover {
    background-color: black;
}

nav li a {
    display: block;
    text-decoration: none;
    color: white;
    cursor: pointer;
    padding: 14px 16px;
}

.fa {
    text-decoration: none;
    color: black;
    padding: 10px;
}

.collapsible {
    cursor: pointer;
}

.ccontent {
    display: none;
    overflow: hidden;
    padding: 0 10px;
}

.aligned {
    position: fixed;
    left: 50%;
    transform: translate(-50%, 25%);
}

/* .mysearch {
    :first-child {
        width: 600px !important;
    }
} */


div.gsc-control {
    width: 100% !important;
}

/* table.gsc-search-box {
    width: 600px !important;
} */

/* td.gsc-input {
    min-height: 100px !important;
} */

.card2 {
    border-radius: 15% 15% 0% 0%;
    border: 2px solid black;
    width: 500px;
    height: 200px;
}

.fader {
    animation: fadeOut 1s linear forwards;
}

.unfader {
    animation: fadeIn 1s linear forwards;
}

@keyframes fadeOut {
    0% { opacity:1; }
    100% {opacity:0; }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% {opacity: 1;}
}

.question {
    position: fixed;
    top: 15%;
    margin-left: 10px;
    margin-right: 10px;
}

.submit {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}