﻿@font-face {
    font-family: 'roboto-light';
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: 'roboto-regular';
    src: url(../fonts/Roboto-Regular.ttf);
}

.btn-group,
.btn-group-vertical {
    vertical-align: inherit;
}

.container-fluid {
    padding: 0 60px;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
}

.header-column h1 {
    text-align: left;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'roboto-regular', sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.primary-header {
    font-size: 24px;
    font-family: "roboto-light";
}

@media (min-width: 992px) {
    .primary-header {
        font-size: 32px;
    }
}

/*Unavailable Page*/


.session-unavailable-page {
    flex-grow: 1;
}


    .session-unavailable-page .page-content {
        height: 80%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        display: flex;
    }


    .session-unavailable-page h2 {
        font-size: 20px;
        font-family: 'roboto-light', sans-serif;
        max-width: initial;
        text-align: center;
        margin-bottom: 24px;
    }

    .session-unavailable-page .page-content .btn-ca {
        font-weight: 400;
        border-radius: 0;
        width: inherit;
        font-size: 16px;
        background-color: #0763b5;
        border-color: #0763b5;
        width: 100%;
        margin-top: 1vh;
    }


@media screen and (min-width: 992px) {
    .session-unavailable-page h2 {
        font-size: 24px;
    }

    .container-fluid {
        height: calc(100vh - 88px);
    }

    .session-unavailable-page .page-content {
        padding: 0 50px 0 50px;
    }


        .session-unavailable-page .page-content .btn-ca {
            width: 250px;
        }
}
