﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* General
-------------------------------------------------- */
@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url(fonts/Montserrat-Light.ttf);
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url(fonts/Montserrat-Regular.ttf);
}

html {
    font-size: 12px;
    min-width: 470px;
    min-height: 600px;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) and (min-height: 768px ) {
    html {
        font-size: 16px;
    }
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border: 0;
}

h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #01416d;
    font-family: 'Montserrat-Light', sans-serif;
}

p {
    color: #393938;
    font-size: .9rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

hr {
    border-top: 1px solid rgba(0,0,0,.5);
}

.mt-25 { margin-top: 25px; }
.mt-40 { margin-top: 40px; }

.text-important {
    font-family: 'Montserrat';
}

.align-vertical {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.card {
    border-radius: .80rem;
    border-color: #149bd7;
    padding: 36px;
}

/* Layout
-------------------------------------------------- */
header {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    min-width: 470px;
    z-index: 1000;
}

nav.navbar {
    min-height: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #01416d;
}

main {
    margin-top: 100px;
    flex: 1 0 auto;
}

@media (min-height: 768px ) {
    header {
        min-height: 120px;
    }

    nav.navbar {
        min-height: 120px;
    }

    main {
        margin-top: 120px;
    }
}

.vertical-line {
    margin-left: 10px;
    border-left: 2px solid #149bd7;
    height: 30px;
}

.footer-logo {
    height: 32px;
}

.header-logo {
    height: 40px;
}

.middle-box {
    width: 100%;
    min-height: 200px;
    height: 30vh;
}

.middle-box-center-text {
    position: relative;
    top: 50%;
    color: #01416d;
}

/* Sticky footer styles
-------------------------------------------------- */

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

/* Sticky footer styles
-------------------------------------------------- */
.footer {
    flex-shrink: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #575756;
    white-space: nowrap;
    line-height: 60px;
    background-color: #F6F9FC;
}

.footer-section {
    height: 20vh;
}

/* Buttons
-------------------------------------------------- */
.btn {
    border-radius: .75rem;
    padding: 10px 14px 10px 14px;
}

.btn-primary {
    border: 1px solid #149bd7;
    color: #149bd7;
    fill: #149bd7;
    background-color: #fff;
    font-weight: 500;
    -webkit-transition: color .3s ease-in-out,fill .3s ease-in-out, background .3s ease-in-out;
    transition: color .3s ease-in-out, fill .3s ease-in-out, background .3s ease-in-out;
}

    .btn-primary:hover {
        color: #fff;
        fill: #fff;
        background: #149bd7;
        border: 1px solid #149bd7;
    }

.btn:focus, .btn:hover {
    text-decoration: none;
}

svg.button-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    margin-bottom: 2px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #149bd7;
    border-color: #149bd7;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

/* Expired Link Page
-------------------------------------------------- */
.clock-image { margin-bottom: 25px; }
.clock-image img { height: 200px; }