html {
    font-size: 14px;
}

.dbWhite {
    color: #FCF7FF;
}

.dbGrey {
    color: #878C8F;
}

.dbBlue {
    color: #083D77;
}

.dbYellow {
    color: #F4D35E;
}

.dbGreen {
    color: #091E05;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    color: #083D77;
}

h1, h2, h3, th, b, p, tr, td, a, span {
    color: #083D77;
}

hr {
    color: #083D77;
    border: 0 none;
    height: 2px !important;
}

li a {
    color : white;
}

li a span {
    color: white;
}

span {
    white-space: nowrap;
    margin-right: 15px;
}

.actionBtn {
    background-color: #083D77;
    color: white;
    min-height: 35px;
    border-radius: 8px;
    margin-top: 12px;
    padding: 7px;
    font-size: large;
}

.actionBtn:hover {
    background-color: #0056b3;
    color: white;
}

.actionBtnGrey {
    background-color: #878C8F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.actionBtnGrey:hover {
    background-color: #6c757d;
}

th tr {
    text-align: center;
    font-weight: bold;
}

tr td:last-child {
    padding: 10px 10px 10px 10px;
    white-space: nowrap;
}

.zebra tr:nth-child(even) {
    background-color: #dee2e6;
}

@media all and (max-width:768px) {
    .calculator tr {
        display: table;
        width: 100%;
    }

    .calculator td {
        display: table-row;
    }
}

@media only screen and (max-width: 480px) {
    /* horizontal scrollbar for tables if mobile screen */
    .tablemobile {
        overflow-x: auto;
        display: block;
    }
}

.table85{
      min-width: 85%;
      max-width: 85%;
}

.table85 td {
    white-space:nowrap;
    padding-left:15px;
}

.tdFloatRight{
      float: right;
}

.ui-tabs .ui-tabs-panel {
    width:100% important!;
}

.courseHeader {
    background-color: #083D77;
    color: white;
    font-size: 30px;
    padding:10px 10px 10px 30px;
    border-radius: 12px;
    margin-top: 15px;
    min-height:55px;
}

.courseHeader span {
    font-size: 17px;
    color:white;
}

.courseHeaderAnchor {
    text-decoration: none;
    color: #083D77;
}

.noAnchorLine {
    text-decoration: none;
    color: #083D77;
}

.messageBubble {
    border-radius: 12px;
    padding: 10px;
    border : 1px solid #083D77;
}

.wireDivWithRounded {
    border-radius: 12px;
    padding: 10px;
    border : 1px solid #083D77;
}

.wireDivWithRoundedHome {
    border-radius: 12px;
    padding: 30px;
    border: 3px solid #083D77;
}

.canvasDiv {
    padding:10px;
}

.goodThings {
    color: #091E05;
}


.loader {
    display: none;
    border: 4px solid #F4D35E;
    border-top: 4px solid #878C8F;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading {
    background-color: #ccc;
    pointer-events: none;
}

.marginBottom20 {
    margin-bottom: 20px;
}

.width50 {
    width: 50px;
}

.course-selection-container {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.model-state {
    width: 100%;
    margin-bottom: 20px;
}

.model-state td {
    padding: 5px;
}