﻿/*
    Variable Declarations
*/

:root {
    --theme-color-primary: #174a7c;
    --theme-color-primary-hover: #1861ac;
    --theme-color-primary-border: #1861ac;
    --theme-color-secondary: #a2958a;
    --theme-color-tertiary: #8b2929;
    --theme-color-tertiary-hover: #b83737;
    --theme-color-tertiary-border: #963e3e;
    --theme-color-bg: #ffffff;
    --theme-color-header-bg: #f3f7ec;
    --theme-color-white: #ffffff;
    --theme-color-success: #378b28ff;
    --theme-color-success-border: #3e7796ff;
    --theme-color-success-hover: #37b841ff;
    --theme-color-sort-arrow: #ffffff;
    --theme-color-dark-text: #212121;
/*    --kendo-color-base: var(--theme-color-primary);*/
    --kendo-color-base-hover: var(--theme-color-primary-hover);
}

/* 
    Global
*/

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--theme-color-bg);
    color: var(--theme-color-primary);
}

h1, h2, h3, h4, h5 {
}

h1 {
    font-size: calc(1rem + 1vw) !important;
}

h2 {
    font-size: calc(1rem + .25vw) !important;
}

/*
    Header
*/

.top-row {
    background-color: var(--theme-color-header-bg);
}

    .top-row .header-left-image {
        position: absolute;
        top: 10px;
        left: 3rem;
        width: 180px;
        height: 68px;
        background-image: url('vt/images/header-left-img.png');
        background-size: cover;
        background-position: center;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    }

    .top-row .header-right-image {
        position: absolute;
        bottom: 0;
        right: 10px;
        width: 90px;
        height: 105px;
    }

    .top-row .header-floating-text {
        position: absolute;
        right: 7rem;
        top: 3rem;
        font-family: 'Merriweather', serif;
        font-size: 11px !important;
        color: #000000c7;
        transform: translateY(-50%);
        text-align: right;
    }

.top-row {
    background-repeat: repeat-x;
    background-position: bottom;
    box-shadow: inset 0 -20px 10px -10px rgba(0,0,0,0.25);
}

/*
    Bootstrap Themes
*/

.btn-primary {
    background-color: var(--theme-color-primary);
    color: var(--theme-color-white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    background-color: var(--theme-color-primary-hover);
    border-color: var(--theme-color-primary-border);
    color: var(--theme-color-white);
}

a.btn-primary {
    background-color: var(--theme-color-primary);
    color: var(--theme-color-white);
}

a.btn-primary:visited {
    background-color: var(--theme-color-primary);
    color: var(--theme-color-white);
}

    a.btn-primary:hover,
    a.btn-primary:focus,
    a.btn-primary.active {
        background-color: var(--theme-color-primary-hover);
        border-color: var(--theme-color-primary-border);
        color: var(--theme-color-white);
    }

.btn-secondary {
    background-color: var(--theme-color-secondary);
    border-color: var(--theme-color-secondary-border);
    color: var(--theme-color-dark-text);
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary.active {
        background-color: var(--theme-color-secondary-hover);
        border-color: var(--theme-color-secondary-border);
        color: var(--theme-color-dark-text);
    }

.btn-tertiary {
    background-color: var(--theme-color-tertiary);
    border-color: var(--theme-color-tertiary-border);
    color: var(--theme-color-white);
}

.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-tertiary.active {
    background-color: var(--theme-color-tertiary-hover);
    border-color: var(--theme-color-tertiary-border);
    color: var(--theme-color-white);
}

.btn-success {
    background-color: var(--theme-color-success);
    border-color: var(--theme-color-success-border);
    color: var(--theme-color-white);
}

a.btn-success{
    background-color: var(--theme-color-success);
    border-color: var(--theme-color-success-border);
    color: var(--theme-color-white);
}
    a.btn-success:visited {
        background-color: var(--theme-color-success);
        border-color: var(--theme-color-success-border);
        color: var(--theme-color-white);
    }
a.btn-success:hover,
a.btn-success:focus,
a.btn-success.active {
    background-color: var(--theme-color-success-hover);
    border-color: var(--theme-color-success-border);
    color: var(--theme-color-white);
}

.btn-success:hover,
.btn-success:focus,
.btn-success.active {
    background-color: var(--theme-color-success-hover);
    border-color: var(--theme-color-success-border);
    color: var(--theme-color-white);
}

.navbar-theme {
    background-color: var(--theme-color-primary);
}

.navbar-theme .navbar-brand,
.navbar-theme .nav-link,
.navbar-theme .navbar-toggler-icon {
    color: var(--theme-color-white);
}

.navbar-theme .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-theme .navbar-toggler:focus,
.navbar-theme .navbar-toggler:active {
    outline: none;
}


.navbar-theme .dropdown-menu {
    background-color: var(--theme-color-secondary);
}

.navbar-theme .dropdown-item {
    color: var(--theme-color-white);
}

.navbar-theme .dropdown-item:hover,
.navbar-theme .dropdown-item:focus {
    background-color: #556677;
}


.bg-theme {
    background-color: var(--theme-color-primary);
}

@media (max-width: 640.98px) {

    h1 {
        font-size: calc(1rem + .6vw) !important;
    }
}

/*
    Custom
*/
