body, html {
    padding: 0;
    font-family: sans-serif;
    background: #fff;
    width: 100%;
    height: 100%
}

h1 {
    margin-bottom: 50px;
    font-family: 'Carter One', sans-serif;
    color: #485C82
}

h2 {
    line-height: 120%;
    /*font-family: 'Satisfy', cursive*/
}

#thermometer-wrap {
    /*width: 276px;
    border-radius: 10px;
    background: #E5C2F5;
    padding: 20px 20px 20px 62px*/
}

#thermometer .current, #thermometer .current:before, #thermometer .goal {
    color: #2C0A50
}

#explain {
    background: #406886 no-repeat scroll 98% bottom / 150px auto;
    border-radius: 10px;
    color: #fff;
    padding: 20px 60px 105px 20px;
    min-height: 160px;
    margin: 30px 0
}

    #explain > p {
        line-height: 150%
    }

        #explain > p.extra-padding {
            padding-right: 160px
        }

    #explain h2 {
        margin: 0 0 10px
    }

    #explain a {
        color: #ffffff;
        -webkit-transition: 0.3s all;
        -o-transition: 0.3s all;
        transition: 0.3s all;
        border-bottom: solid 1px #ffffff;
        text-decoration: none
    }

        #explain a:hover {
            border-color: transparent;
            text-decoration: none
        }

.therm-text ul {
    margin-left: 0;
    padding-left: 0
}

    .therm-text ul li {
        margin-left: 1em
    }

    /*Checkbox styling*/
input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
}

input[type=checkbox] {
    display: none;
}

    input[type=checkbox] + label:before {
        content: "\2714";
        border: 0.1em solid #000;
        border-radius: 0.2em;
        display: inline-block;
        width: 1em;
        height: 1em;
        padding-left: 0.2em;
        padding-bottom: 0.3em;
        margin-right: 0.2em;
        vertical-align: bottom;
        color: transparent;
        transition: .2s;
    }

    input[type=checkbox] + label:active:before {
        transform: scale(0);
    }

    input[type=checkbox]:checked + label:before {
        /*background-color: #d49ee6;
        border-color: #d49ee6;*/
         color: #fff;
    }

    input[type=checkbox]:disabled + label:before {
        transform: scale(1);
        border-color: #aaa;
    }

    input[type=checkbox]:checked:disabled + label:before {
        transform: scale(1);
        background-color: #bfb;
        border-color: #bfb;
    }
label::after, [type="checkbox"]:checked + label::after {
    position: absolute;
    top: 3px;
    left: 4px;
    font-size: 18px;
    line-height: 0.8;
    color: #320c56;
    transition: all .2s;
}