﻿/* 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. */
body {
    padding-top: 65px;
    padding-bottom: 20px;
    font-size: 0.9rem;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

.white-link {
    color: white;
}
.white-link:hover {
    color: white;
}

.nav-link {
    color: white;
}
.nav-link:hover {
    color: rgb(200,200,200)
}


/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* Colors */
.primary-colour {
    background-color: rgb(43, 50, 140);
    color: white;
}
button:focus.primary-colour, a:focus.primary-colour, button:hover.primary-colour, a:hover.primary-colour {
    color: rgb(90, 184, 141);
}

.secondary-colour {
    background-color: rgb(90, 184, 141);
}

.tertiary-colour {
    background-color: rgb(193, 212, 47)
}

.error-textbox {
    background: #F00000;
    color: white;
}
/* Auditing red: #B00020*/
.error-text {
    color: #F00000;
}
.toast-header { 
    background-color: rgb(193, 212, 47);
}
.toast-header-error {
    background-color: red;
}
.toast {
    background-color: white; /*Get rid of opacity*/
}

/* Justin was probably Joking but here we are */
.buttered-toast {
    position: fixed;
    top: 75px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 9999;
    min-width: 250px;
}

.navbar-toggler {
    height: 40px;
}
/* Nav hamburger line */
.navbar-toggler .line {
    width: 30px;
    margin: 0 auto 7px auto;
    height: 2px;
    background-color: white;
    border-radius: 15px;
}

.half-pint {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.full-pint {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

[v-cloak] {
    display: none;
}

@media print {
    .hide-on-print {
        display: none;
    }

    .show-on-print {
        display: block !important;
    }

    input {
        border: none;
        background-color: white;
        color: black;
    }

    textarea {
        border: none;
    }

    input:disabled {
        color: black;
    }
    .half-pint {
        max-width: initial;
        width: initial;
        margin: initial;
        padding: initial;
    }

    body {
        padding: initial;
        font-size: 1rem;
    }
}

@page {
    size: auto;
}