﻿/* 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. */

:root {
    --largeFont: 25px;
    --medFont: 20px;
    --smFont: 18px;
    --xlFont: 30px;
    --h1Font: 40px;
    --xsFont: 15px;
    --mainFont: 'Muli', sans-serif;
    --font-Dbacks: 'Teko', 'sans-serif';
    --lightColor: rgb(239 239 239);
    --lightAccent: #db435c;
    --color-SedonaRed: #a71930;
    --color-SonoranSand: #e3d4ad;
    --color-LightGray: #A3A9AD;
    --color-DarkGray: #555759;
    --color-MediumGray: #78777A;
    --color-Teal: #3FC2CD;
    --color-Purple: #393A96;
    --color-Copper: #A2763D;
    --color-Turquoise: #006B6E;
    --color-OffWhite: #FFFAEC;
    --color-Partner: #a71930;
    --color-Renewal: #fbfe01;
    --color-Prospect: #3fc2cd;
    --color-Hot: #e42929;
    --color-Target: #ffb339;
    --color-Lead: #8d1aa9;
}

.body {
    background-image: url(/Img/Backgrounds/black-paper.png);
    background-color: #78777A;
}

/*--- BACKGROUND COLORS -------*/
.SenoranBG {
    background: var(--color-SenoranSand);
}

.MediumGrayBG {
    background: var(--color-MediumGray);
}

.LightGrayBG {
    background: var( --color-LightGray);
}

.pageTitleBar {
    display: flex;
    width: calc(100% - 20px);
    margin: 10px;
    background: var(--color-SedonaRed);
    font-weight: bold;
    font-size: 20px;
    color: white;
    border-radius: 15px;
    box-shadow: 2px 2px 2px var(--color-LightGray);
    padding: 5px;
    min-height: 30px;
    justify-content: center;
    align-items: center;
}

.pageTitleBar-gray {
    display: flex;
    width: calc(100% - 7px);
    margin: 2px 3px 3px 3px;
    background: var(--color-DarkGray);
    font-weight: bold;
    font-size: 32px;
    color: white;
    box-shadow: 2px 2px 2px var(--color-LightGray);
    padding: 5px;
    min-height: 30px;
    justify-content: center;
    align-items: center;
}

/*.theme-light {
    --color-primary: rgb(255, 255, 255);
    --color-secondary: rgb(52, 58, 64);
    --color-accent: rgb(48, 206, 216);
    --font-color: rgb(0, 0, 0);
    --shadow-color: var(--color-secondary);
}*/
/*.theme-dark {
    --color-primary: rgb(52, 58, 64);
    --color-secondary: rgb(255, 255, 255);
    --color-accent: rgb(48, 206, 216);
    --font-color: rgb(255, 255, 255);
    --shadow-color: rgb(151, 151, 151);
}*/
.theme-light {
    --color-primary: rgb(239 239 239);
    --color-secondary: rgb(52, 58, 64);
    --color-accent: #a71930;
    --color-accent-shadow: rgb(127 20 37);
    --font-color: rgb(0, 0, 0);
    --shadow-color: var(--color-secondary);
}

.theme-dark {
    --color-primary: rgb(52, 58, 64);
    --color-secondary: rgb(239 239 239);
    --color-accent: #a71930;
    --color-accent-shadow: rgb(127 20 37);
    --font-color: rgb(255, 255, 255);
    --shadow-color: rgb(95 89 89);
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.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);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/* Floating bottom menu styles
-------------------------------------------------- */

.bnav {
    position: fixed;
    bottom: 10px;
    left: 10%;
    width: 80%;
    font-family: sans-serif;
    font-size: 13px;
    color: #333333;
    display: flex;
    justify-content: space-evenly;
    background: var(--color-secondary);
    box-shadow: 0px 0px 15px var(--shadow-color);
    border-radius: 20px;
}

.bnav__item {
    position: relative;
    padding: 10px;
    float: left;
    outline: none;
    display: flex;
    align-items: center;
}

    .bnav__item:hover {
        background: #a71930;
    }

.active {
    background-color: #1e1e1e;
    border-top: 6px solid #a71930
}

.bnav__item--right {
    float: right;
}

.bnav__link {
    color: #4f6577;
}

.bnav__link--full-width {
    display: block;
    text-decoration: none;
}

.bnav__submenu {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 10px;
    margin: 0;
    padding: 5px 0;
    min-width: 150px;
    background: #eeeeee;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
    display: none;
}

    .bnav__submenu:hover {
        display: block;
    }

.bnav__submenuitem {
    list-style-type: none;
    padding: 5px 8px;
}

    .bnav__submenuitem:hover {
        background: #dcdcdc;
    }

.bnav__item--clickable {
    cursor: pointer;
}

    .bnav__item--clickable:focus {
        background: #cccccc;
    }

.bnav__item:focus > .bnav__submenu {
    display: block;
}

.bnav .menu-item-text, .bnav .fas {
    font-size: var(--largeFont);
    color: var(--color-primary);
    text-shadow: 0px 0px 8px var(--shadow-color);
}

.menu-item-text {
    color: #1e1e1e;
    font-weight: bold;
    font-size: 14px;
}
.fullPageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.19);
    display: flex;
    justify-content: center;
    /*padding-top: 40vh;*/
    z-index: 2000;
}
