/*--------------------------------------------------- VARIABLES ---------------------------------------------------*/

@font-face {
    font-family: 'GuildCircularWeb';
    src: url('{{app_asset(' fonts/GuildCircularWeb-Book.woff2')}}') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GuildCircularWebMedium';
    src: url('{{app_asset(' fonts/GuildCircularWeb-Medium.woff')}}') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-family-primary: 'GuildCircularWeb', Helvetica, Arial, sans-serif;
    --font-family-secondary: 'GuildCircularWebMedium', Helvetica, Arial, sans-serif;
    --font-color-primary: #323133;
    --font-color-link: #0000EE;
    --font-color-muted: #4a494a;
    --font-size-small: 12px;
    --font-size-base: 14px;
    --font-size-medium: 16px;
    --font-size-large: 20px;
    --font-size-xlarge: 24px;
    --font-size-xxlarge: 34px;
    --primary-blue: #262a82;
    --primary-purple: #953192;
    --button-disabled: #6B6B6B;
    --bg-grey: #f8f9f9;
}

body {
    min-height: 100vh;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family-primary);
    font-size: var(var(--font-size-base));
    color: var(--font-color-primary);
}

/*---------------------------------------------------header---------------------------------------------------*/
.header,
h1 {
    font-size: var(--font-size-xlarge);
    color: var(--primary-blue);
    font-weight: bold;
    line-height: 34px;
    text-transform: none;
    letter-spacing: 0.25px;
    padding: 0px 10px;
}

h1 {
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: underline;
    font-size: var(--font-size-small);
    color: var(--font-color-link);
    line-height: 1.4em;
    cursor: pointer;
}

.guild_help {
    color: var(--font-color-link);
    line-height: 1.4em;
    text-transform: none;
}

#anonymous #welcome {
    padding-top: 40px;
}

#mobile_welcome {
    display: none;
}

#anonymous {
    padding: 40px;
}

#welcome {
    font-size: var(--font-size-xxlarge);
    color: var(--primary-blue);
    font-weight: normal;
    line-height: 1.4em;
    text-transform: none;
}

#welcome_sub {
    font-size: var(--font-size-xlarge);
    color: var(--primary-blue);
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.4em;
    text-transform: none;
    margin-top: 30px;
    width: 60%;
    padding-bottom: 32px;
}

.help_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 16px
}

#help_container {
    margin-top: 16px;
}

.help_image {
    margin-right: 15px;
    width: 32px;
    height: 32px;
    fill: var(--primary-blue);
}


#template_known_officer,
#template_known_branch {
    padding: 24px;
    background: var(--bg-grey);
}

#officer_image,
#branch_image {
    margin-right: 16px;
    border: 2px solid #ebebec;
    border-radius: 50%;
    width: 160px;
    height: 160px;
}

#branch_image {
    padding: 16px;
}

#known_officer_sub {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

#known_branch_sub {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

#officer_customer_greeting,
#branch_customer_greeting {
    font-size: var(--font-size-xlarge);
    color: var(--primary-blue);
    font-weight: bold;
    text-transform: none;
}

#officer_name {
    font-size: var(--font-size-large);
    color: var(--primary-blue);
    font-weight: bold;
    text-transform: none;
}

#branch_name {
    font-size: var(--font-size-large);
    color: var(--primary-blue);
    font-weight: bold;
    line-height: 1.4em;
    text-transform: none;
}

.officer_details,
.branch_details {
    font-size: var(--font-size-small);
    color: var(--primary-blue);
    text-transform: none;
    padding-top: 8px;
    margin-bottom: 15px;
    margin-top: 5px
}

#officer_email,
#branch_email {
    color: var(--font-color-link);
    cursor: pointer;
}

#tel-contacts {
    font-size: var(--font-size-base);
    color: var(--primary-blue);
    font-weight: bold;
    text-transform: none;
    padding-top: 16px
}

.g-recaptcha {
    margin-bottom: 25px;
}

@media (max-width: 950px) {

    #template_known_officer,
    #template_known_branch {
        border-bottom: none;
    }

    .banner {
        margin-top: 24px;
    }

    #anonymous {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    #welcome_sub {
        width: 95%;
        text-align: center;
    }

}


