html, body {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    color: #333;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: rgb(0, 80, 160);
}

label {
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

input[type="range"] {
    height: 0;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}


.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}

.chart-container {
    border: 1px solid gray;
    background-color: #52575b;
}


.minHT50 {
    min-height: 50px !important;
}

.maxWt200 {
    max-width: 200px !important;
}

.menuButtonsContainer {
    display: inline-block;
    min-width: 100%;
    padding-top: 5px;
    padding-left: 5px;
    text-align: left !important;
}

.menuButton {
    display: inline;
    margin-left: 10px;
}

.largeFont {
    font-size: 20px !important;
    font-weight: bold !important;
}

.approveToggle > div {
    min-width: 130px !important;
    min-height: 40px !important;
}


.form-switch {
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.form-switch i {
    position: relative;
    display: inline-block;
    margin-right: .5rem;
    width: 46px;
    height: 26px;
    background-color: #e6e6e6;
    border-radius: 23px;
    vertical-align: text-bottom;
    transition: all 0.3s linear;
}

.form-switch i::before {
    content: "";
    position: absolute;
    left: 0;
    width: 42px;
    height: 22px;
    background-color: #ff2825;
    border-radius: 11px;
    transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
    transition: all 0.25s linear;
}

.form-switch i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
    transform: translate3d(2px, 2px, 0);
    transition: all 0.2s ease-in-out;
}

.form-switch:active i::after {
    width: 28px;
    transform: translate3d(2px, 2px, 0);
}

.form-switch:active input:checked + i::after {
    transform: translate3d(16px, 2px, 0);
}

.form-switch input {
    display: none;
}

.form-switch input:checked + i {
    background-color: #4BD763;
}

.form-switch input:checked + i::before {
    transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
}

.form-switch input:checked + i::after {
    transform: translate3d(22px, 2px, 0);
}


@media (min-width: 1200px) {
    .largeModalDialog {
        min-width: 1000px !important;
    }
}

.pointer {
    cursor: pointer;
}

.selectedRow {
    background-color: red !important;
    color: white !important;
}

.noMarginBottom {
    margin-bottom: 0px !important;
}

.largeFontDiv {
    padding: 5px;
    margin: 5px;
    font-size: 20px;
    font-weight: 700;
}

textarea {
    resize: none;
}

.hidden {
    display: none;
}

.supergreen {
    background-color: limegreen !important;
    color: black !important;
}

.superred {
    background-color: red;
    color: white;
}

.superredcolor {
    color: red;
}

.yellowcolor {
    color: yellow;
}

@media screen and (max-width: 600px) {
    .smallFontOnMobile {
        font-size: 12px;
    }
}


.clickableElement {
    cursor: pointer;
}

.clickableElement:hover div {
    border: 1px solid red;
    background-color: gray;
}

.maxwt200px {
    max-width: 200px;
}

.calendartd {
    border-left: 1px solid white !important;
    padding: 0px !important;
    /*border-right: 1px solid white !important;*/
}

#header th {
    text-align: center;
}

.calendartd div {
    position: absolute;
    height: 100%;
    background-color: #41baf5;
    height: 50px;
    border: 1px solid black;
}

.daysRow {
    text-align: center;
    border: 1px solid white !important;
}

.monthsRow {
    text-align: center;
    border-left: 1px solid white !important;
    border-right: 1px solid white !important;
    border-bottom: 1px solid white !important;
}

#searchInputTable tr td {
    padding-left: 10px;
    padding-right: 10px;
}

#searchInputTable tr td select {
    color: black;
}

#searchInputTable tr td input {
    color: black;
}

.calendartd div {
    opacity: 0.7;
}

.calendartd div:hover {
    border-color: red;
    border-width: 3px;
    z-index: 9999;
}