/**
 * Style stuff
 */

.color-my-data {
    margin: 0 auto;
    position: relative;
    display: block;
    float: left;
    width: 100%;
}

.color-my-data-container {
    height: 500px;
    position: relative;
}

.screens {
    float: left;
    padding: 0 25px;
    width: 80%;
}

.meter {
    float: right;
    height: 100%;
    position: relative;
    width: 10%;
    border: solid 1px #ccc;
}

.meter .meter-bar {
    background-color: red;
    bottom: 0;
    border: 1px solid #000;
    display: none;
    height: 100%;
    right: 0;
    position: absolute;
    width: 100%;
}

.meter-bar.meter--purple {
    background-color: purple;
    height: 100%;
}

.meter-bar.meter--red {
    background-color: red;
    height: 75%;
}

.meter-bar.meter--yellow {
    background-color: yellow;
    height: 50%;
}

.meter-bar.meter--green {
    background-color: green;
    height: 25%;
}

.screen {
    display: none;
}

.screen--active {
    display: block;
}

.select__form label {
    display: block;
    line-height: 24px;
    margin-bottom: 8px;
}

.data-color {
    font-weight: bold;
    text-transform: uppercase;
}

.response__data__requirements {
    list-style: none outside none;
}

    .response__data__requirements li {
        margin-bottom: 12px;
    }