﻿/* 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. */

body {
    height: 100%;
    /* The html and body elements cannot have any padding or margin. */
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Wrapper for page content to push down footer */
#wrap {
    min-height: 100%;
    height: auto;
    /* Negative indent footer by its height */
    margin: 0 auto -60px;
    /* Pad bottom by footer height */
    padding: 0 0 60px;
}

/* Set the fixed height of the footer here */
#footer {
    height: 60px;
    background-color: #f5f5f5;
}



/* Media Helper Ausblenden */
/*https://www.starconfig.com.au/bootstrap-3-and-4-utilities-display-properties-how-to-hide-elements/*/
.hidden-xs,
.hidden-sm,
.hidden-md,
.hidden-lg
.hidden-xl {
    display: block !important;
}

@media (max-width: 576px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .hidden-lg {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-xl {
        display: none !important;
    }
}
/* Media Helper Einblenden */

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg
.visible-xl {
    display: none !important;
}

@media (max-width: 576px) {
    .visible-xs {
        display: block !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .visible-sm {
        display: block !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .visible-md {
        display: block !important;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .visible-lg {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-xl {
        display: block !important;
    }
}


/*
    Liquid Gauge
*/
.liquidFillGaugeText {
    font-family: Helvetica;
    font-weight: bold;
}



/*
    5-column layout with Bootstrap 4
    https://www.cattlegrid.info/2018/06/21/5-column-layout-with-bootstrap-4.html
*/


.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

@media (min-width: 540px) {
    .col-sm-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        float: left;
    }
}

@media (min-width: 720px) {
    .col-md-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        float: left;
    }
}

@media (min-width: 960px) {
    .col-lg-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        float: left;
    }
}

@media (min-width: 1140px) {
    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        float: left;
    }
}
