/* Header */
#header {
    background-color: var(--gca-light-grey);
    background: url('/static/gca/img/header-bar-bg.webp'), linear-gradient(var(--gca-light-grey), var(--gca-light-grey));;
    background-repeat: repeat-y, no-repeat;
    background-position: left top, center center;
    background-size: auto, cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    justify-content: space-between;
    padding: 0 20px;
}

#header #logo {
    flex: 0 1 auto;
    align-items: center;
    width: 270px;
    max-height: 100%;
    overflow: hidden;
}

#header #logo img {
    max-height: 72px;
    margin: 4px 2px;
    width: auto;
}
#header #logo img#logo-gca {
    max-height: 65px;
    margin: 7px 2px;
}

/* #header .divider-colors p {
    margin: 0;
    padding: 0;
}
#header .divider-colors {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
}
#header .divider-colors .black {
    background-color: black;
    width: 4px;
    height: 100%;
}
#header .divider-colors .yellow {
    background-color: var(--gca-yellow);
    width: 3px;
    height: 100%;
} */

#header #title {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#header h1 {
    color: var(--gca-blue);
    padding-left: 20px;
    font-size: 27px;
}

#header #share-box {
    display: none;
    z-index: 1000;
    padding: 5px;
    background-color: var(--gca-light-grey);
    box-shadow: 0px 0px 5px var(--gca-grey);
    position: fixed;
    margin-top: 64px;
    right: 112px;
}

#header #share-box input {
    margin-right: 5px;
}
#header #copy-link:active:hover {
    opacity: 0.7;
}

#icons {
    display: flex;
    gap: 20px;
}

.icon img {
    height: 30px;
    width: auto;
    cursor: pointer;
}

#header form {
    display: inline;
}

#header #language-selector {
    height: 30px;
    width: auto;
    padding: 0.5rem;
    transform: translateY(-10px);

    /* font-size: large; */
    font-weight: bold;
    background-color: #ffffff00;
    color: var(--gca-blue);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

#header #language-selector:hover {
    background-color: var(--gca-blue);
    color: #ffffff;
}

.introjs-tooltip input[type=checkbox] {
    accent-color: var(--gca-blue);
}

#header .fa.fa-question,
#header .fa.fa-envelope,
#header .fa.fa-sign-out,
#header .fa.fa-cog,
#header .fa.fa-share-o,
#header .fa.fa-copy,
#header .fa.fa-book,
#header .fa.fa-login,
#header .fa.fa-print {
    font-size: 32px;
}

#header .fa.fa-question {
    transform: translateY(3px);
    mask: url("../img/svg/message-question-outline.svg");
    -webkit-mask-attachement: url("../img/svg/message-question-outline.svg");
}
#header .fa.fa-sign-out {
    mask: url("../img/svg/sign-out.svg");
    -webkit-mask-attachement: url("../img/svg/sign-out.svg");
}
#header .fa.fa-cog {
    mask: url("../img/svg/cog.svg");
    -webkit-mask-attachement: url("../img/svg/cog.svg");
}
#header .fa.fa-login {
    mask: url("../img/svg/login.svg");
    -webkit-mask-attachement: url("../img/svg/login.svg");
}

#header .fa.fa-share-o{
    mask: url("../img/svg/share-o.svg");
    -webkit-mask-attachement: url("../img/svg/share-o.svg");
}

#header .fa.fa-print {
    mask: url("../img/svg/print.svg");
    -webkit-mask-attachement: url("../img/svg/print.svg");
}

#header .fa.fa-envelope{
    mask: url("../img/svg/envelope.svg");
    -webkit-mask-attachement: url("../img/svg/envelope.svg");
}

#header .fa.fa-copy{
    mask: url("../img/svg/copy-content.svg");
    -webkit-mask-attachement: url("../img/svg/copy-content.svg");
}
#header .fa.fa-book {
    mask: url("../img/svg/book.svg");
    -webkit-mask-attachement: url("../img/svg/book.svg");
}
