@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

body {
    font-family: "Lato", Arial, sans-serif;
    font-size: 18px;
    background: #edf0f5;
    color: #202125;
}

/* ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
} */

.rating-wrapper {
    max-width: 500px;
    margin: 150px auto;
    background: #fff;
    padding: 1em;
    border-radius: 3px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.rating-wrapper .rating-label {
    text-align: center;
    font-weight: 700;
    display: block;
}

.rating-wrapper .ratingItemList {
    max-width: 400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 1em 0;
}

.rating-wrapper input.rating {
    display: none;
}

.rating-wrapper label.rating {
    padding: 5px 3px;
    font-size: 32px;
    opacity: 0.7;
    filter: grayscale(1);
    cursor: pointer;
}

.rating-wrapper label.rating:hover {
    filter: grayscale(0.84);
    transform: scale(1.1);
    transition: 100ms ease;
}

.rating-wrapper input.rating:checked+label.rating {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.feedback {
    width: 100%;
    display: none;
}

.feedback textarea,
.feedback input {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 0.5em auto;
    padding: 0.5em;
    font-family: "Lato", sans-serif;
    border: 1px solid #d2d3d8;
    border-radius: 3px;
}

.feedback textarea:focus,
.feedback textarea:active,
.feedback input:focus,
.feedback input:active {
    border-color: #3870c4;
    box-shadow: 0px 0px 1px 1px #3870c4;
    transition: 100ms;
}

.feedback textarea {
    height: 100px;
}

.feedback button {
    margin: 1em auto;
    display: table;
    text-align: center;
}

.logo {
    width: 360px;
    position: absolute;
    top: 1em;
    left: 40%;
    margin-left: -70px;
}

button {
    color: #edeef0;
    background-color: #9b9ea9;
    border-radius: 3px;
    font-family: "Lato", Arial sans-serif;
    border: 0;
    padding: 9px 15px;
    font-size: 15px;
}

button.not-disabled {
    color: white;
    background-color: #3870c4;
    text-shadow: 0px 1px 1px #214375;
    cursor: pointer;
}

button.not-disabled:hover {
    background-color: #2d599c;
    transition: 100ms;
}

/* improve button */

.container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

ul li {
    color: #AAAAAA;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #333;
}

ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

ul li label {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1em;
    padding: 25px 25px 25px 80px;
    margin: 10px auto;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}

ul li:hover label {
    color: #000;
}

ul li .check {
    display: block;
    position: absolute;
    border: 5px solid #AAAAAA;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    top: 30px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

ul li:hover .check {
    border: 5px solid #000;
}

ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 5px;
    left: 5px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

input[type=radio]:checked~.check {
    border: 5px solid #3870c4;
}

input[type=radio]:checked~.check::before {
    background: #3870c4;
}

input[type=radio]:checked~label {
    color: #3870c4;
}