﻿/* 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. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    /*background-color: #1b6ec2;*/
    background-color: #80DEEA !important;
    border-color: #1861ac;
}
btn-disabled{
    background-color: gray !important;
    color: black !important;
}

.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;
    margin: 0;
    padding: 0;
}

@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%;
}

body {
    /* Margin bottom by footer height */
    /*    margin-bottom: 60px;
*/ margin: 0;
    padding: 0;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.button {
    width: 50px;
    height: 40px;
    color: black;
    cursor: pointer;
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 5px;
}

.selected {
    background-color: #7fdeea;
    color: black;
}

.unselected {
    background-color: #F0F0F0;
    color: black;
}

.disabled {
    background-color: #FAFAFA;
    color: lightgray;
}

.surveySelector {
    cursor: pointer;
}

.surveySelectorSelected {
    background-color: #a6bfcc;
}

.surveySection {
    /*display: none;*/
}

.surveyRow {
    border-spacing: 0 10px;
}

.surveyItem {
}

.row-top-buffer {
}

.surveyItemText {
}

.sectionHeading {
}

.link {
}

.completedIcon {
    width: 30px;
}

.saveButton {
    background-color: #7fdeea;
    color: black;
    width: 100px;
}

.sidebar {
    background-color: #778f9b;
    color: white;
}

#savePromptDialog {
    visibility: hidden;
    position: absolute;
    background-color: white;
    z-index: 1000;
}

.modal-save {
}

#saveNotification {
    visibility: hidden;
}

.indentLevel1 {
    padding-left: 30px !important;
}

.indentLevel2 {
    padding-left: 50px !important;
}

.oddRow {
    background-color: white;
    min-height: 45px;
}

.evenRow {
    background-color: aliceblue;
    min-height: 45px;
}

.disableResponse {
    display: none !important;
}

.questionRow {
    padding-top: 10px;
    padding-bottom: 10px;
}

.xp-sidebar {
    display: flex;
    flex-direction: column;
    height: inherit;
}

.xp-navigationbar {
    overflow: auto;
    padding-bottom: 20px;
}

.nav-pills .nav-link.active {
    background-color: #80DEEA !important;
}

.flexTabContent.active {
    display: flex;
    flex-flow: wrap;
}

.basetooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .basetooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        left: 50%;
        margin-left: -60px;
    }

        .basetooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    .basetooltip:hover .tooltiptext {
        visibility: visible;
    }

.showComment{
    color: lightgreen;
}
.hideComment{
    color: #cc5f5f;
}
.commentDisplay{
    z-index: 5;
    min-width: 400px;
    min-height: 50px;
    resize: both;
    overflow:auto;    
    display: flex;
}
.commentDisplay > textarea {
    height: 95%;
    width: 100%;
    resize: none;
    background: #ffffcc;
}
.commentDisplay.hide{
    display: none;
}
.commentDisplay.show{
    display: inline-flex;
}

.helpTextDisplay {
    background: #7fdeea !important;
    color: white !important;
}
.genericHide {
    display: none !important;
}
.genericShow {
    display: inherit;
}