﻿body {
    font-family: Arial, sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
}

.hidden, .hide {
    display: none !important;
}
.navbar {
    line-height: normal;
}

.icon-left::before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 6 Pro";
}

.icon-right::after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 6 Pro";
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.item-stretch {
    max-width: 100% !important;
}

/* Text alignment library overrides */
.text-left-override {
    text-align: left !important;
}

.text-center-override {
    text-align: center !important;
}

.text-right-override {
    text-align: right !important;
}

.text-justify-override {
    text-align: justify !important;
}

/* Element Horizontal Alignments, overrides on form-group elements */
.form-horizontal .form-group.text-center {
    margin-left: auto;
    margin-right: auto;
}

.center-block {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.form-horizontal .form-group.text-left {
    margin-left: 0;
    margin-right: auto;
}

.left-block {
    margin-left: 0;
    margin-right: auto;
    display: block;
}

.form-horizontal .form-group.text-right {
    margin-left: auto;
    margin-right: 0;
}

.right-block {
    margin-left: auto;
    margin-right: 0;
    display: block;
}

/* Responsive Image in column by itself */
.img-responsive {
    width: auto;
    height: inherit;
}

.img-stretch-horizontal {
    width: 100%;
}

/* Large images in textblocks should resize if page is narrower than said images */
.textblock > div > img {
    max-width: 100%;
    height: auto;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Map */
.lenosGoogleMap {
    display: block;
    width: 100%;
}

/* Button Defaults and Overrides */
button,
input[type='button'],
input[type='submit']
.btn,
.btn-default {
    white-space: normal;
    border: 0px solid transparent;
    padding: 0;
}

/* buttons and links extension to use brackets: [ click me ] */
.btn-bracketed::before {
    display: inline-block;
    content: "[";
    padding-right: 0.5em;
}

.btn-bracketed::after {
    display: inline-block;
    content: "]";
    padding-left: 0.5em;
}

/* Make .svg files in the carousel display properly in older browsers */
/*.carousel-inner .item img[src$=".svg"]
{
    width: 100%;
}*/

/* Set default min-heights to inherit parent(s) min-height value. 
   Override via media queries if necessary. */
nav > .container-fluid,
nav > .container-fluid > .navbar-header,
div.row > div[class^='col-md-'],
footer > div.container,
footer > div.container > div[class*='col-md-'] {
    min-height: inherit;
}

/* TODO: Add border property to webpage elements to set border widths and colours */
nav {
    border: 0 !important;
}

    /* Header container should not inherit Max Content Width */
    /* TODO: Add separate width constraints to header/row/footer */
    nav .container-fluid {
        max-width: none;
    }

.navbar-brand {
    padding: 0;
}

.navbar-default {
    background-color: transparent;
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

.textblock, .navbar-nav {
    font-family: Arial;
    font-size: 14px;
    color: #494949;
}

.calendar-button {
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 1px center;
    padding-left: 20px;
}

/* Tables.less overrides */
.table {
    margin-bottom: 0 !important;
}

    .table .table {
        background-color: initial;
    }

sub {
    bottom: unset;
    vertical-align: middle;
    font-size: inherit;
}

sup {
    top: unset;
    font-size: inherit;
    vertical-align: text-top;
}

/* Non-Mobile property defaults */
/*@media screen and (min-width: 768px) {

}*/

/* Desktop View Only properties */
/*@media screen and (min-width: 990px) {*/
    /* Make columns in a row the same height */
    /*.row {
        display: box;*/ /* old */
        /*display: flexbox;*/ /* IE10 */
        /*display: flex;
        align-items: stretch;
    }
}*/

/* In responsive view when columns become rows, do not set a mininum height requirement
    for columns (now individual rows) that do not have content. */
@media screen and (max-width: 990px) {
    div.row, div.row > div[class^='col-md-'],
    footer > div.container,
    footer > div.container > div[class*='col-md-'] {
        min-height: 0 !important;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    body {
        background-size: cover !important;
        background-repeat: initial !important;
        background-position: center top !important;
    }

    /* Hide captions */
    .carousel-caption {
        display: none;
    }

    .lenosGoogleMap {
        min-height: inherit;
    }

    .nav-row-layout .nav-left-content {
        -ms-flex: 1;
        flex: 1;
        margin-top: 1px;
    }

    .nav-row-layout .nav-center-content {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        margin-top: 1px;
    }

    .nav-row-layout .nav-right-content {
        -ms-flex: 1;
        flex: 1;
        margin-top: 1px;
    }

    /* Prevent nav textblock from disappearing off the side of the screen in mobile */
    .navbar-brand .textblock {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-brand .img-responsive {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-nav {
        margin: 0;
    }
}

/* Lightbox */
.ui-dialog {
    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

.ui-dialog-titlebar.ui-widget-header {
    background: linear-gradient(#3181D0, #027ade);
    color: #FFF;
    font-family: sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-size: 14px;
}

.ui-corner-all {
    border-radius: 0px !important;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.ui-button {
    outline: none !important;
}

.ui-dialog .ui-resizable-se {
    width: 25px;
    height: 25px;
    right: -10px;
    bottom: -10px;
    background-position: 16px 16px;
    background-color: rgba(0,0,0,0.5);
    border-top-left-radius: 40px;
}

.ui-dialog-content.ui-widget-content {
    min-width: 100% !important;
    padding: 0 !important;
}

.buzzbuzz {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

textarea {
    resize: none;
}

/* Responsive Fonts*/

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .responsive-font-36 {
        font-size: 28px !important;
    }

    .responsive-font-48 {
        font-size: 36px !important;
    }

    .responsive-font-72 {
        font-size: 48px !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .responsive-font-72 {
        font-size: 52px !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .responsive-font-72 {
        font-size: 62px !important;
    }
}

.responsive-font-36 {
    font-size: 36px;
}

.responsive-font-48 {
    font-size: 48px;
}

.responsive-font-72 {
    font-size: 72px;
}

.responsive-font-36, .responsive-font-48, .responsive-font-72 {
    transition: font-size .2s;
}
/* End Responsive Fonts*/
