
@font-face {
    
    url("fonts/GeomGraphicW03Bold.ttf") format('truetype');
}


@font-face {
    font-family: 'Geom-Graphic-Bold';
    src: url('/fonts/GeomGraphicW03Bold.eot');
    src: url('/fonts/GeomGraphicW03Bold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/GeomGraphicW03Bold.woff2') format('woff2'),
    url('/fonts/GeomGraphicW03Bold.woff') format('woff'),
    url('/fonts/GeomGraphicW03Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Geom-Graphic-Light';
    src: url('/fonts/GeomGraphicW03Light.eot');
    src: url('/fonts/GeomGraphicW03Light.eot?#iefix') format('embedded-opentype'),
    url('/fonts/GeomGraphicW03Light.woff2') format('woff2'),
    url('/fonts/GeomGraphicW03Light.woff') format('woff'),
    url('/fonts/GeomGraphicW03Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Geom-Graphic-Regular';
    src: url('/fonts/GeomGraphicW03Regular.eot');
    src: url('/fonts/GeomGraphicW03Regular.eot?#iefix') format('embedded-opentype'),
    url('/fonts/GeomGraphicW03Regular.woff2') format('woff2'),
    url('/fonts/GeomGraphicW03Regular.woff') format('woff'),
    url('/fonts/GeomGraphicW03Regular.ttf') format('truetype');
}


:root{
    /* - Primary Colour -*/
    /* https://htmlcolorcodes.com/colors/shades-of-orange/ */
    --primaryColour: #FF460A;
    --primaryColourHover: #FF5F15; /* Safety Orange */
    
    /* - Configured Colours - */
    
}

h1, h2, h3{
    font-family: 'Geom-Graphic-Regular', serif;
    font-weight: normal;
    color: #373E4E;
    margin-bottom: 16px;
}

body{
    font-family: "Poppins", sans-serif;
    color: #666;
    margin-top: 100px;
}


.btn.btn-primary{
    border-radius: 10px;
    border: 1px solid #FC6F15;
    background: #FC6F15;
    box-shadow: none;
    font-weight: 500;
    color: #FBFDFD;
}

.btn.btn-primary:hover:not(:active) {
    border: 1px solid #F26003;
    background: #F26003;
    color: #FBFDFD;
}

.large-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(0.85 * 100vh);
}

.large-wrapper.dark{
    background-color: var(--grey3);
}

.large-wrapper.white{
    background-color: #ffffff;
}


.splash-screen{
    position: fixed;
    top: 0;
    left: 0;
    width:100vw;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


.progress{
    width:100%;
    height: 20px;
    background-color: white;
}

.progress-bar{
    background-color:  var(--primaryColour);
    height: 20px;
    width: var(--blazor-load-percentage, 0%)
}