﻿/*A lot from W3Schools*/
.hdr {
    background-color: antiquewhite;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius:7px;
}
.fLbl {
    font-weight: 550;
    font-family: Calibri;

    margin-left:7px;
}
.toast2 {
    width: 330px;
    height: 7.5em;
    /*position:absolute;*/
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: 32%;
    top: 27%;
    margin-left: -100px;
    bottom: 10px;
    background-color: yellow;
    color: darkblue;
    font-family: Calibri;
    font-size: 16px;
    padding: 6px;
    text-align: center;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
    -moz-box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
    box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
    z-index: 1;
}
/*w3schools*/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.top-container {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: center;
}

.header {
    padding: 10px 16px;
    background: #555;
    color: #f1f1f1;
}

.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 102px;
}
/*end w3schools*/
.inp {
    background-color: #dae0e5;
}
.form-control:focus {
    color: #495057;
    background-color: whitesmoke;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

@media only screen and (max-device-width: 480px) {
    .imgClass {
        width: 80%;
    }

    .hdrClass {
        width: 20%;
        font-size: .4em;
    }
}

@media only screen and (max-device-width: 1024px) {
    .imgClass {
        width: 30%;
    }

    .hdrClass {
        width: 70%;
    }
}

.HalfLine{
    height:.7em;
}
.FullLine{
    height:1.4em;
}
.OneAndHalfLine{
    height:2.1em;
}

.modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

a:hover {
    color: yellow;
}

a:link {
    color: lightgoldenrodyellow;
}

a:visited {
    color: lightgreen;
}

.modal-content {
    height: auto;
    min-height: 100%;
    border-radius: 10px;
}

.lbl {
    font-size: small;
    margin-left: 5px;
    margin-right: 2px;
    align-self: flex-end;
    vertical-align: top;
    border-color: blue;
    background-color: lightblue;
    border-radius: 3px;
    padding: 3px;
}


.title-block {
    border-radius: 7px;
    border: solid thin;
    border-color: darkred;
    margin: 2px;
    padding: 8px;
}

.script {
    display: block;
    position: relative;

    padding-left: 35px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 12px;
}
/* Hide the default checkbox */
input[type=checkbox] {
    visibility: hidden;
}

/* creating a custom checkbox based on demand */
.w3docs {
    position: absolute;
    top: 0;
    left: 4px;
    height: 25px;
    width: 25px;
    background-color: darkred;
    margin-top: -10px;
}
/* specify the background color to be shown when hovering over checkbox */
.script:hover input ~ .w3docs {
    background-color: orange;
}
/* specify the background color to be shown when checkbox is active */
.script input:active ~ .w3docs {

    background-color: red;
}
/* specify the background color to be shown when checkbox is checked */
.script input:checked ~ .w3docs {
    margin-top: -10px;
    background-color: green;
}
/* checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.w3docs:after {
    content: "";
    position: absolute;
    display: none;
}
/* display checkmark when checked */
.script input:checked ~ .w3docs:after {

    display: block;
}
/* styling the checkmark using webkit */
/* creating a square to be the sign of checkmark */
.script .w3docs:after {
    left:5px;
    bottom: 5px;
    width: 6px;
    height: 6px;
    border-radius:8px;
    border: 4px solid white;
    background-color:white;
}
.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 80%; /* Full width (cover the whole page) */
    height: 80%; /* Full height (cover the whole page) */
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding:30px ;
    background-color:  #fcf8e3 ;/* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    overflow-x: hidden;
    overflow-y: auto;

}
