/*
* ==========================================
/* Original simple CSS...
* ==========================================
*/
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*
* ==========================================
/* K-Plus specific branding...
* ==========================================
*/
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Navbar Override Colors, etc. */
.bg-company-red {
    background-color: darkred !important;
}

.bg-Calendar-small-divisor {
    background-color: whitesmoke !important;
    border-bottom:solid;
    border-bottom-color: silver;
}

.bg-Calendar-small-divisor-weekend {
    background-color:gainsboro;
    border-bottom: solid;
    border-bottom-color: darkgray;
}

.text-Calendar-small-divisor {
    color: dimgrey !important;
    font-weight:bold;
    font-style:italic;
}

.text-Calendar-small-divisor-weekend {
    color: silver !important;
    font-weight: bold;
    font-style: italic;
}


.border-company-red {
    border-color: darkred !important;
}

.icon-company-red {
    color: darkred !important;
}

.border-4 {
    border-style: solid;
    border-width: 4px !important;
}

/* Main Body image background DEFAULT */
.body-default-background {
    background-image: url("../img/milk_pour_small.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Main Body image background LOGIN AND HOME PAGE*/
.body-login-background {
    background-image: url("../img/product_whole.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn-circle.btn-xl {
    width: 80px;
    height: 80px;
    padding: 10px 16px;
    border-radius: 45px;
    font-size: 12px;
    text-align: center;
}


/*
* ==========================================
/* Sticky footer styles
* ==========================================
*/
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.footer_sm {
    position:absolute;
    margin-left: 10px;
    bottom: 0;
    width: 100%;
    line-height: 30px; /* Vertically center the text there */
}



/*
* ==========================================
* CALENDAR CUSTOM UTIL CLASSES
* ==========================================
*/
.clearfix::after,
.calendar ol::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/*
* ==========================================
* Calendar Styling 
* ==========================================
*/
@media (max-width:575px) {
    .display-4 {
        font-size: 1.5rem;
    }

    .day h5 {
        background-color: #f8f9fa;
        padding: 3px 5px 5px;
        margin: -8px -8px 8px -8px;
    }
}

@media (min-width: 576px) {
    .day {
        height: 14.2857vw;
    }
}

