﻿/*
    Variable Declarations
*/

:root {
    --theme-btn-primary: #2e5a78;
    --theme-btn-primary-hover: #4a89c8;
    --theme-btn-primary-border: #4a89c8;
    --theme-color-primary: #092639;
    --theme-color-primary-hover: #1861ac;
    --theme-color-primary-border: #1861ac;
    --theme-color-secondary: #14558f;
    --theme-color-tertiary: #8b2929;
    --theme-color-tertiary-hover: #b83737;
    --theme-color-tertiary-border: #963e3e;
    --theme-color-bg: #e2e7ed;
    --theme-color-header-bg: #dbefdd;
    --theme-color-white: #ffffff;
}

/* 
    Global
*/

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--theme-color-bg);
    color: var(--theme-color-primary);
}

.card-header-metadata {
    background-color: var(--theme-btn-primary) !important;
}

h1, h2, h3, h4, h5 {
   
}
.icon-left-align {
   
}

    .icon-left-align .k-button-text {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .icon-left-align .k-icon {
        flex-shrink: 0;
        margin-right: 0.5rem;
        position: absolute;
        left: 16px;
    }
h1 {
    font-size: calc(1rem + 1vw) !important;
}

h2 {
    font-size: calc(1rem + .25vw) !important;
}

.k-tabstrip-item.k-active {
    background-color: #6197990f !important;
}



.k-tabstrip-content {
    background-color: #6197990f !important;
    min-height: 300px;
}

.modal-info .k-tabstrip-content {
    min-height: 150px;
}

/*
    Header
*/

.top-row {
    background-color: var(--theme-color-header-bg);
}

.top-row .header-left-image {
    position: absolute;
    left: 3rem;
    width: 150px;
    height: 55px;
    background-image: url(unityplus/imgs/header-left-img.png);
    background-size: cover;
    background-position: center;
}


    .top-row .header-right-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 90px;
        height: 105px;
        background-image: url('unityplus/imgs/header-right-img.png');
        background-size: cover;
        background-position: center;
    }

.top-row .header-floating-text {
    position: absolute;
    right: 5rem;
    top: 40%;
    transform: translateY(-50%);
}

/*
    Bootstrap Themes
*/

.k-grid-header {
    background-color: var(--theme-color-primary);
}

.card-header {
    background-color: var(--theme-color-primary);
    color: var(--theme-color-white);
}


.k-table-thead {
    background-color: var(--theme-color-primary);
    color: var(--theme-color-white);
}

.btn-primary {
    background-color: var(--theme-btn-primary);
    color: var(--theme-color-white);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.active {
        background-color: var(--theme-btn-primary-hover);
        border-color: var(--theme-btn-primary-border);
        color: var(--theme-color-white);
    }

.btn-secondary {
    background-color: var(--theme-color-tertiary);
    border-color: var(--theme-color-tertiary-border);
    color: var(--theme-color-white);
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary.active {
        background-color: var(--theme-color-tertiary-hover);
        border-color: var(--theme-color-tertiary-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
*/