@font-face {
  font-family: cal sans;
  src: url(../font/CalSans-Regular.ttf);;
}

.hidden{
    display: none;
}

#manual.slide-hidden{
    transform: translateY(15%);
    opacity: 0;
    visibility: hidden;
}

.cal{
    font-family: cal sans;
    letter-spacing: 0.5px;
    font-weight: 100 !important;
}

#manual {
    position: fixed;
    background: var(--black);
    box-shadow: 0 0 0.5rem var(--shadow), 0 0 1rem var(--shadow), 0 0 0.75rem var(--shadow);
    right: 1rem;
    bottom: 1rem;
    transition: 0.25s;
    border-radius: 0.5rem;
    max-height: calc(100% - 2rem);
    overflow-y: auto;
    width: 30%;
    /* max-width: 30%; */
    opacity: 1;
    visibility: visible;
}

#manual-header {
    padding: 0.5rem;
    position: sticky;
    top: 0;
    background: inherit;
}

#manual-content {
    padding: 1rem;
}

#manual .dq-details {
    background: none;
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid var(--shadow);
}

#manual .dq-details summary {
    background: none;
    color: var(--white);
    border-radius: 0;
}

#manual .dq-details[open] {
    background: var(--grad5);
}

#manual .dq-details:not([open]):hover {
    background: var(--shade);
}





#consentForm{
    width: 300px;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    transition: 0.25s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(25%);
}
#consentForm.open{
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
}

@media (max-width:720px) {
    #manual{
        left: 0;
        right: 0;
        width: 100%;
        bottom: 0;
        border-radius: 1rem 1rem 0 0;
        max-height: 100%;
    }

    #manual.slide-hidden{
        transform: translateX(0%) translateY(50%);
        opacity: 0;
        visibility: hidden;
    }
    
}