.bg1 {
    background: url("../images/bg01.jpg");
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.mainheader {
    align-self: center;
    text-align: center;
    color: #cb2c39;
    /*background-color:grey;*/
    /*z-index: 1;*/
    font-size: 32px;
}

.headflexbox {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding-top: 20px;		
}

.headflexbox div{
    width: 160px;
    text-align: center;
}

.headflexbox div a{
    color: white;
    font-size: 20px;
    padding: 6px;
}

.heading2 {
    padding: 2px;
    font-size: 24px;
    color: black;
    
}
    
.heading3 {
    color: #165781;
    font-size: 24px;
    padding: 10px;
    border:solid 1px #00719b;
    /*border-style:inset; */
    border-radius:15px;
    box-shadow: 0px 0px 8px #00719b;
    background-image: linear-gradient(to bottom, white, white);
    margin: 5px;
    text-align: center;
}
.flexbox {
    display: flex;
    flex-flow: row;
    /*border:solid 4px #cb2c39; */
    /*border-style:inset; */
    /*border-radius:10px;*/
    padding:10px;
    margin: 15px;
    overflow: auto;
    font-size: 20px;
    background-color: white;
    color: #00719b; /*#80b8dc;*/
}

.textbox {
    /*border:solid 4px #cb2c39; */
    /*border-style:inset; */
    /*border-radius:10px;*/
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    margin: 10px;
    padding: 10px;
    height: 100%;
    /*background-color: lightblue;*/
}

.textbutton {
    float: left;
    margin: 15px;
    padding: 5px;
    background-image: linear-gradient(to bottom, white, white );
    border:solid 1px white; 
    border-style:inset;
    border-radius:1px;
    box-shadow: 0px 0px 8px white;
    font-size:14px;
    color: white;
}

.scanbutton {
    float: left;
    margin: 5px;
    padding: 5px;
    /*background-image: linear-gradient(to bottom, #00719b, #80b8dc );*/
    border:solid 1px black; 
    /*border-style:inset;*/
    border-radius:6px;
    box-shadow: 0px 0px 8px grey;
    font-size:32px;
    color: black;
    width: 150px;
    height: 100px;
}

.plusbutton {
    background-image: linear-gradient(to bottom, #cb2c39, #d8949a );
    border:solid 1px #cb2c39; 
    border-style:inset;
    border-radius:3px;
    box-shadow: 0px 0px 8px white;
    font-size:20px;
    color: white;
    width: 30px;
    height: 30px;
}

.footer {
    font-size:8px;
    color: black;
}

@media screen and (max-width:450px) {
    .headflexbox div a{font-size: 18px; padding:12px;}
    .heading2 {font-size: 20px;}
    .heading3 {font-size: 19px;}
    .flexbox {flex-flow: row;}
    .picbox {flex: 90%;	align-items: centre;}
    .textbox p{font-size: 12px; padding: 10px;}
}

.slidercontainer {
    /*width: 100%;  Width of the outside container */
    display: inline-block;
    width: 75px; /*100%;  Full-width */
    height: 450px; /* Specified height */
    /*background: #e3d3d8; Grey background ff2a00 001eff*/
    _align-content: center;
    align-items: center;
    
}

.slidercontainer input {
    /*width: 100%;  Width of the outside container */
    width: 480px; /*100%;  Full-width */
    height: 75px; /* Specified height */
    transform-origin: 225px 225px;
    transform: rotate(-90deg);
    float: bottom;
    background-image: linear-gradient(to left, red, blue );
}

/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    /*background: #e3d3d8; Grey background ff2a00 001eff*/
    background-image: linear-gradient(to left, white, white );
    border:solid 1px black;
    border-radius: 5px;
    box-shadow: 0px 0px 16px black;
    outline: none; /* Remove outline */
    opacity: 0.99; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;

}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance:  none; /* Override default look */
    appearance: none;
    width: 30px; /* Set a specific slider handle width */
    height: 73px; /* Slider handle height */
    background-image: linear-gradient(to left, grey, white);
    background-color: white;
    border:solid 1px black;
    border-radius:7%;
    box-shadow: 0px 0px 3px grey;
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 75px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #d3d3d3; /* Grey background */
    cursor: pointer; /* Cursor on hover */

}