﻿html {
  font-size: 14px;

}

@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;*/

}

header {
    height: 75px;
    width: 100%;

}

    header > p {
        color: #FFFFFF;
        font: bold 1.6em "segoe ui", arial, sans-serif;
        margin-left: 31px;
        /*padding-top: 20px;*/

    }

main {
    margin: 0;
    /*width: 100%;*/
    /*background-color: aqua;*/
    /*height: calc(100vh - 200px);*/
}

#text-container > div > p {
    font: 1.2em "segoe ui", arial, sans-serif;
}


:fullscreen {
    background-color: lightgray;

}
.row {
    width: 100%;
}


#overlay {
    /*  position:absolute;
    width:inherit;
    height:inherit;*/
    width: 100%;
    /*height: 80vh;*/
    /*border:1px solid gray;*/
    margin-top:10px;
}

    #overlay #spinner {
        position: absolute;
        top: calc(50% - 50px);
        left: calc(50% - 50px);
    }


footer > p {
    font: 1em "segoe ui", arial, sans-serif;
}


#report-container {
    width: 100%;
    margin-top: 10px;
    /*height: calc(0.5625 * 70vw);*/ /* 16:9 aspect ratio */
    background-color: #E6E6E6;
}

iframe {
    /*border: 1px solid;*/
    padding: 5px;
    min-height: calc(100vh - 200px);
}


@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {

 
     /*your css rules for ipad portrait*/ 
}

@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {


    #report-container {
        width: 100%;
        padding-top: 100px;
        /*height: calc(0.5625 * 70vw);*/ /* 16:9 aspect ratio */
        background-color: #E6E6E6;
    }

    /*iframe {*/
        /*border: 1px solid;*/
        /*padding: 5px;
        min-height: calc(100vh - 200px);
    }*/


     /*your css rules for ipad landscape*/ 
}


#logo{
    height:40px;
}



.col {
/*    background-color: yellow;
    padding: 10px;
    margin: 5px;*/
}

button{
    width:100%
}




.centerV {
    display: flex;
    justify-content: center;
    align-items: center;
 
}

.datecontrol {
    width: 150px;
}

.datefiltercol {
    /*background-color: yellow;*/

}

#modal-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: .50;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
    z-index: 1000;
}

#modal-content {
    background-color: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0 0 20px 0 #222;
    -webkit-box-shadow: 0 0 20px 0 #222;
    -moz-box-shadow: 0 0 20px 0 #222;
    display: none;
    height: 200px;
    left: 50%;
    margin: -120px 0 0 -160px;
    padding: 10px;
    position: fixed;
    top: 50%;
    width: 320px;
    z-index: 999999;
}

    #modal-background.active, #modal-content.active {
        display: block;
        z-index: 999999;
    }

​#PresetDateFilterSelect {
    width: 100%;
    /*    margin-left: auto;
    margin-right: 0;*/
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 999999;
}

#dateperiodinfolabel{
    font-style:italic

}


.pageButDiv {
    background-color:lightgrey;
}
.pageButDivButton {
    width: fit-content;
    border: 1px solid lightgrey;
    font-size: small;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
}


.pageButDivButtonActive {
    width: fit-content;
    border-bottom:4px solid darkgreen;
}

.fullScreenDiv {
/*    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;

    background-color:yellow;*/
}