﻿/* ALL START
-------------------------------------------------- */
.debugg-green {
    border: 3px solid green;
}
.debugg-blue {
    border: 3px solid blue;
}
.debugg-red {
    border: 3px solid red;
}
.debugg-purple {
    border: 3px solid purple;
}
.debugg-black {
    border: 3px solid black;
}
.debugg-yellow {
    border: 3px solid #b65502;
}
.text-green {
    color:darkcyan;
}
/* ALL END
-------------------------------------------------- */

/* Excercise Log START
-------------------------------------------------- */
input.calculated {
    background-color: lightgray;
}

.required {
    color: indianred;
}

.checkbox-small {
    font-size: 4px;
}

.round-border {
    border: solid 1px #302c2c;
    border-radius: 25px;
    margin: 5px;
    padding: 5px;
}

.round-top-border {
    border-radius: 25px 25px 0px 0px;
}

.text-small {
    font-size: x-small;
}
.text-smaller {
    font-size: small;
}

.text-large {
    font-size: x-large;
}

.text-bold {
    font-weight: 900;
}
/* Excercise Log END
-------------------------------------------------- */

/* Calendar Stuff START
-------------------------------------------------- */
.calendar .display-4 {
    font-size: 1.5rem;
}

@media (max-width:991px) {
    .calendar .day h5 {
        background-color: #f8f9fa;
        padding: 3px 5px 5px;
        margin: -8px -8px 8px -8px;
    }
    .calendar .date {
        padding-left: 4px;
    }
}

@media (min-width: 992px) {
    .calendar h5 {
        font-size: 0.9rem;
    }
    .calendar .day {
        height: 8vw;
    }
    .calendar .event {
        font-size: 0.67rem;
    }
}

@media (min-width: 1440px) {
    .calendar .day {
        height: 7vw;
    }
}

@media (min-width: 1920px) {
    .calendar .day {
        height: 5.5vw;
    }
}

.red {
    color: red
}

.orange {
    color: orange
}

.green {
    color: green
}

.bg-grey {
    color: whitesmoke;
    background-color: gray;
    text-align: right;
}
/* Calendar Stuff END
-------------------------------------------------- */

/* Navigation Menu START ---------------------------*/
.navbar-nav > li {
    float: left;
    position: relative;
}

.navbar-light .navbar-nav .active a::after {
    border-bottom: 5px solid #5805a1;
    bottom: -10px;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;
}

/* Not used START */
.click-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.click-shadow:hover {
        border: solid 1px gray;
}
/* Not used END */
/* Navigation Menu END ---------------------------*/

/* PATH Stuff START
-------------------------------------------------- */
.disp-table {
    display: table;
}
/* PATH Stuff END
-------------------------------------------------- */

/* Main Stuff START
-------------------------------------------------- */

div.main {
    margin-top: 100px;
}
/* Sticky Headers START */
.whiteBG {
    background-color: white;
}
.stickyH {
    position: sticky;
    top: 88px;
}
/*-----------------------------*/
th.stickyI {
    position: sticky;
    top: 88px;
    background-color: #cbd5d0;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
/*-----------------------------*/
th.stickyIC {
    position: sticky;
    top: 88px;
    background-color: #cbd5d9;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
    margin-top: 0;
    padding-top: 0;
}
/*-----------------------------*/
.stickyS {
    position: sticky;
    /*top: 294px;*/
    top: 88px;
    background-color: #cbd5d9;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
div.stickyG {
    /*
    position: sticky;
    top: 314px;
    */
    background-color: #cbd5d9;
    box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.4);
}
/*-----------------------------*/

@media screen and (max-width: 950px) {
    .stickyH {
        top: 88px;
    }
    th.stickyI {
        top: 88px;
        padding-top: 2px;
        padding-bottom: 2px;
    }
    th.stickyIC {
        top: 88px;
    }
    .stickyS {
        top: 88px;
    }
}

@media screen and (max-width: 768px) {
    div.main {
        padding-top: 100px;
    }

    .stickyH {
        top: 88px;
    }
    th.stickyI {
        top: 88px;
        padding-top: 2px;
        padding-bottom: 2px;
    }
    th.stickyIC {
        top: 88px;
    }
    .stickyS {
        top: 88px;
    }    
}

@media screen and (max-width: 575px) {
    div.main {
        margin-top: 60px;
    }

    .stickyH {
        top: 36px;
    }
    th.stickyI {
        top: 35px;
        padding-top: 2px;
        padding-bottom: 2px;
    }
    th.stickyIC {
        top: 35px;
    }
    .stickyS {
        top: 35px;
    }

    .display-1 {
        font-size: 2rem;
        font-weight: 200;
        line-height: 1;
    }
}
/* Sticky Headers END */


.index-text {
    font-size: 1.9vw;
}

.no-records {
    color: #0c5460;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 5px;
}
