﻿/* 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 {
    --blue-color: #076DF2;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
    font-family: PPMori
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
    font-family: PPMori
}

@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, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: PPMori;
}

@font-face {
    font-family: 'PPMori';
    src: local(''), url('../Fonts/PPMori-Regular.otf') format('opentype');
}

.center {
    object-fit: contain;
    max-height: 15em;
    min-height: 15em;
    padding: 1em, 0em, 1em, 0em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.centerPageText {
    margin-left: auto;
    margin-right: auto;
    width: 50em
}

#CenterTableContent, th, td {
    text-align: center;
    vertical-align: middle;
}

/* Font styles
-------------------------------------------------- */

h1 {
    font-size: 2rem;
}

.form-control,
#txtName {
    font-size: 14px;
}

/* Header styles
-------------------------------------------------- */


.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.7);
    border-color: rgb(255 255 255 / 74%);
}

.navbar-brand {
    width: 120px;
    height: 65px;
}

.navbar-dark .navbar-toggler {
    color: white !important;
    border-color: white !important;
}

.restricted-width {
    max-width: 800px;
    margin: auto;
}

/* Body styles
-------------------------------------------------- */

body {
    background: #e5e5e5;
}

@media only screen and (max-width: 580px) {
    body {
        background: white;
    }
}


.bg-white {
    background-color: transparent !important;
}

.centerPageText {
    width: 100% !important;
}

a {
    color: #317cc9;
}

table {
    font-size: 14px;
}

input[type=checkbox], input[type=radio] {
    height: calc(0.5em + 0.5rem + 2px);
}
/*
table [type=button], table [type=reset], table [type=submit], table button {
    background-color: #20d794;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #1cb99c;
    font-size: 14px;
    padding: 0.375rem 0.75rem;
    min-width: 100px !important;
}

input:focus, textarea:focus, select:focus {
    outline: none !important;
}

table [type=button]:hover, table [type=reset]:hover, table [type=submit]:hover, table button:hover {
    background-color: #1cb99c;
}*/

/* Footer styles
-------------------------------------------------- */
footer {
    background-color: #14133B;
    color: #ffffff !important;
    font-size: 12px;
    padding: 25px 5px 25px 5px;
    bottom: 0;
    width: 100%;
}

    footer .container {
        background-color: #14133B;
        padding: 0px;
        margin-bottom: 0px;
    }

.text-light a {
    color: white;
}

/*Modal Styles
    ----------------------------------------------
*/
.modal-wrapper {
    position: fixed;
    top: 100vh;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: .01;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    overflow: auto;
    -webkit-transition: opacity 300ms ease 200ms, -webkit-transform 300ms ease 200ms, -webkit-filter 300ms ease 200ms;
    transition: opacity 300ms ease 200ms, -webkit-transform 300ms ease 200ms, -webkit-filter 300ms ease 200ms;
    transition: transform 300ms ease 200ms, filter 300ms ease 200ms, opacity 300ms ease 200ms;
    transition: transform 300ms ease 200ms, filter 300ms ease 200ms, opacity 300ms ease 200ms, -webkit-transform 300ms ease 200ms, -webkit-filter 300ms ease 200ms;
}

    .modal-wrapper.modal--active {
        top: 300px;
        margin-top: -150px;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

th {
    text-align: left;
    background-color: #EBEBEB;
    color: #2B2B2B;
}

td {
    text-align: left;
}

.mt-100 {
    margin-top: 100px
}

/*body {
    background: #00B4DB;
    background: -webkit-linear-gradient(to right, #0083B0, #00B4DB);
    background: linear-gradient(to right, #0083B0, #00B4DB);
    color: #514B64;
    min-height: 100vh
}
*/
.cards-container {
    display: grid;
    grid-gap: 1rem;
    align-items: stretch;
    max-width: 54rem; /* 3 * 18rem for each card + gap */
    margin: 0 auto;
}

@media (min-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 18rem;
}

.cardRowOfThree {
    box-shadow: 0 0px 20px 0 rgba(0,0,0,0.2);
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cardRowOfThree-header,
.cardRowOfThree-body,
.cardRowOfThree-footer {
    flex: 1;
    padding: 1rem;
}

.single-chart {
    display: flex;
    justify-content: center;
}

.projectIndexCard {
    box-shadow: 0 0px 20px 0 rgba(0,0,0,0.2);
    height: 100%;
}

.projectIndexCardBody {
}

.card-header {
    width: 100%;
    height: 100%;
}

.card-footer {
    height: 100%;
}
/* .card-body {
    background-color: white;
} */

.cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
}

#cardtext {
    color: white;
    text-align: center;
}

.returnicon {
    width: 100px;
    height: 100px;
    background-color: white;
}

.card-img {
    width: 200px;
    height: 200px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    background: white;
}

.card-img-project {
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    background: white;
    object-fit: contain;
    display: block;
}

.card-project {
    box-shadow: 0 0px 20px 0 rgba(0,0,0,0.2);
    background-color: white;
    height: 300px;
    width: auto;
}

.modal .modal-title { /* Vertical scrollbar if necessary */
    max-height: 50%;
    overflow-y: auto;
}

.modal .modal-body { /* Vertical scrollbar if necessary */
    max-height: 50%;
    overflow-y: auto;
}

body .modal-dialog { /* Width */
    max-width: 60%;
    margin: 0 auto;
    margin-top: 5%;
}
@media (max-width: 768px) {
    body .modal-dialog { /* Width */
        max-width: 90%;
        margin: 0 auto;
        margin-top: 5%;
    }
}

/* The dropdown container
.dropdown {
    //float: left;
    //overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: #076DF2;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-menu button {
    float: none;
    color: black;
    text-decoration: none;
    text-align: left;
    margin: 1px;
    width: 100%;
    border: none;
    background-color: inherit;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
}

/* Add a grey background color to dropdown links on hover */
.dropdown dropdownMenuButton:hover {
    background-color: #ddd;
}

.command:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.table-responsive {
    margin: auto;
    margin-top: 50px;
    border-top: 2px solid white;
    display: block;
    text-align: center;
}

.centerIcon {
    object-fit: contain;
    max-height: 15em;
    min-height: 15em;
    padding: 1em, 0em, 1em, 0em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 200px;
    padding: 5px;
    width: 50%;
    background: white;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #076DF2;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover)
    .active, .collapsible:hover {
        background-color: #1b6ec2;
    }*/

/* Style the collapsible content. Note: hidden by default */
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    transition: max-height 0.2s ease-out;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}
/*
.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-)
}*/

.row justify-content-center::after {
    content: "";
    flex: auto;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #076DF2;
}

input:focus + .slider {
    box-shadow: 0 0 1px #076DF2;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
}

    .slider.round:before {
    }

.switch {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 34px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #076DF2;
}

input:focus + .slider {
    box-shadow: 0 0 1px #076DF2;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
}

    .slider.round:before {
    }

.slider-label {
    display: table-cell;
    vertical-align: middle;
    padding-right: 5px;
}

#projectPageRow {
    display: table-cell;
    vertical-align: middle;
}

@import 'https://stephanwagner.me/css/jBox/demo-html.css';
@import 'https://code.jboxcdn.com/themes/TooltipDark.css';

#demo-container {
    padding: 50px 0;
    text-align: center;
}

    #demo-container .hover {
        margin: 5px;
    }

    #demo-container #demo-tooltip-mouse {
        padding: 30px 15px;
        max-width: 550px;
        width: calc(100% - 40px);
    }

div.hide { /* this will hide all divs on the page */
    display: none;
}

.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.single-chart {
    width: 100%;
    display: inline-block;
    justify-content: space-around;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-chart.orange .circle {
    stroke: #ff9f00;
}

.circular-chart.green .circle {
    stroke: #4CC790;
}

.circular-chart.blue .circle {
    stroke: #076DF2;
}

.percentage {
    fill: #666;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}

/* Override default styles for react-paginate */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

    .pagination a {
        color: #076DF2; /* Change the color of page numbers */
        background-color: transparent;
        padding: 8px;
        text-decoration: none;
    }

        .pagination a:hover {
            text-decoration: underline;
            cursor: pointer;
        }

    .pagination .active a {
        background-color: black; /* Change the background color of active page */
        color: white; /* Change the text color of active page */
    }

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #076DF2;
    border-color: #076DF2;
    cursor: pointer;
}

.toast {
    opacity: 1 !important;
}
