/* PRIMARY ELEMENTS */
#main {
    background-color: #99cccc;
    position: relative;
    padding: 40px;
    max-width: 600px;
}
#cdc-heading {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
#logo {
    width: 380px;
    margin: 10px auto;
}

/* SLIDER */
.slidercontainer {
    text-align: center;
}

.slidercontainer input {
    float: none;
    margin: 20px auto;
}

.range-slider-value {
    background-color: #222;
    color: #fff;
    padding: 6px 10px;
    margin: 2px auto;
    display: block;
    width: 80px;
    border-radius: 2px;
}

/* CONTROLS */
#cs-controls {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    padding-top: 15px;
}
select, option {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
#credits-btn {
    font-family: Arial, Helvetica, sans-serif;
    color: #0066cc;
}
.cs-radio {
    margin-right: 15px;
}
#credits {
    position: absolute;
    background-color: #fff;
    color: #336699;
    font-size: 14px;
    text-align: center;
    top:40px;
    left:40px;
    right:40px;
    bottom:40px;
    /*border: 1px solid blue;*/
    padding: 15px;
    display: none;
    z-index: 999;
}

/* PARTICLE SYSTEM CONTAINER */
#particle-system-container {
    position: relative;
    background-color: #99ccff;
    background-image: url("../ui/clouds.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-width: 400px;
    min-height: 200px;
}

#floating-card {
    position: absolute;
    top: 50px;
    left: 80px;
}
#calculated-temp-text,
#calculated-temp {
    color: #990033;
    text-align: center;
}
#calculated-temp-text {
    font-weight: bold;
    font-size: 19px;
}
#calculated-temp {
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
}

/* Thermometer */
.thermometer{
    display: block;
   position: relative;
   height: 130px;
   right: -50px;
}
.bulb{
 display:inline-block;
 border:2px solid #222;
 width:20px;
 height:20px;
 border-radius:50%;
 position: absolute;
 left: 0px;
 bottom: 0px;
 /*border-top: 2px solid #fff;
 box-shadow: 0px 0px 0px 2px #fff inset;*/
 background:#cc0000;
}
.stem{
 display: inline-block;
   border: 2px solid #222;
   width: 12px;
   height: 120px;
   border-radius: 0px 0px 20px 20px;
   border-top: 2px solid transparent;
   position: absolute;
   bottom: 15px;
   left: 4px;
   box-shadow: 0px 0px 0px 2px rgba(255,255,255,0.5) inset;
   transform: rotate(180deg);
   z-index: 10;
     padding-bottom: 3px;
}
.stem-perct{
   height: 63.5%; /* ~14.6deg */
   width: 8px;
   background: #cc0000;
   display: block;
   margin: 0px auto;
   /*border-radius: 10px;*/
}
.bulb:after{
   content: '';
   height: 10px;
   width: 8px;
   background: inherit;
   position: absolute;
   left: 4px;
   bottom: 13px;
   z-index: 12;
}

/*fixed baseline*/
#fixedbaseline {
    background-color: #222;
    color: #fff;
    border-radius: 2px;
    font-family: sans-serif;
    padding: 2px 6px;
}