@charset "utf-8"; 
/* CSS Document */
html {
    font-family: 'Raleway', sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}
  
a:hover{
    text-decoration:underline;
}  

.parallax-container {
  height: 680px;
}

.verticalLine {
    border-left: thin solid #dd3d00;
    height: 300px;
    
}
.verticalLinedash {
    border-left: thin dashed teal;
    height: 300px;
    
}


#thermometer {
    border-radius: 12px;
    height: 209px;
    position: relative;
}
#thermometer .goal {
    position: absolute;
    right: 27px;
    top: 0;
    color: black;
    font-size:20px;

}

#thermometer .amount {
    border-top: 2px solid black;
    color: black;
    display: inline-block;
    font-family: Trebuchet MS;
    font-weight: bold;
    padding: 0 30px 0 0;
   
    
}
#thermometer .progress1 .amount {
    border-top: 2px solid grey;
    color: black;
    left: 27px;
    padding: 0 0 0 30px;
    position: absolute;
    font-size:18px;
    
    
    
}

#thermometer .track {
    background: none repeat scroll 0 0;
    border: solid 1px grey;
    border-radius: 23px;
    height: 160px;
    left: 0;
    margin: 0 auto;
    position: relative;
    top: 0;
    width: 30px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(140,140,140)), color-stop(1%,rgb(255,255,255)));
    background: -webkit-linear-gradient(top, rgb(140,140,140) 0%,rgb(255,255,255) 10%);
    background:      -o-linear-gradient(top, rgb(140,140,140) 0%,rgb(255,255,255) 10%);
    background:     -ms-linear-gradient(top, rgb(140,140,140) 0%,rgb(255,255,255) 10%);
    background:    -moz-linear-gradient(top, rgb(140,140,140) 0%,rgb(255,255,255) 10%);
    background:   linear-gradient(to bottom, rgb(140,140,140) 0%,rgb(255,255,255) 10%);
    background-position: 0 -1px;
    background-size: 100% 5%;

    
}
#thermometer .progress1 {
    background: red none repeat scroll 0 0;
    border-radius: 23px 23px 0 0;
    border-color: red;
    bottom: 0;
    height: 0;
    left: 2px;
    margin-bottom: 0 !important;
    position: absolute;
    width: 24px;

}


.bulb {
    background: red none repeat scroll 0 0;
    border-radius: 50%;
    border-color: red;
    bottom: -34px;
    display: block;
    height: 50px;
    left: -11px;
    padding: 10px;
    position: absolute;
    width: 50px;

}
.table-of-contents a.active {
    border-left: 2px solid green;
}
.table-of-contents a:hover {
    border-left: 1px solid orange;
}

nav {
    background-color:rgba(255, 255, 255, 0.87);
}
.switch label input[type="checkbox"]:checked + .lever {
    background-color: gray;
}
.switch label input[type="checkbox"]:checked + .lever::after {
    background-color: orange;
}

#alerthide {
    cursor: pointer;
}
#serioustd {
    background-color: #cdf0d9;
}
#amateurtd {
    background-color: #fffced;
}
.bmavatar a:hover{
    background-color: transparent;
}