﻿@import url(https://fonts.googleapis.com/css?family=Roboto:500,100,300,700,400);

.cont {
    width: 100%;
  /*  max-width: 350px;*/
    text-align: center;
    margin: 20px auto;
    /*padding: 10px 0;*/
    color: #EEE;
    /*border-radius: 5px;*/
    /*overflow: hidden;*/
}

hr {
    margin: 20px;
    border: none;
    border-bottom: thin solid rgba(255,255,255,.1);
}

div.title {
    font-size: 2em;
}

h1 span {
    font-weight: 300;
    color: #Fd4;
}

div.stars {
    width: 100%;
    display: inline-block;
}

input.star {
    display: none;
}
/*label.star.star-5 {
    padding-right: 60px;
}*/
label.star {
    float: right;
    padding: 5px;
    font-size: 25px;
    color: #444;
    transition: all .2s;
}

input.star:checked ~ label.star:before {
    content: '\f005';
    color: #FD4;
    transition: all .25s;
}


input.star-5:checked ~ label.star:before {
    color: #FE7;
    text-shadow: 0 0 20px #952;
}

input.star-1:checked ~ label.star:before {
    color: #F62;
}

label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star:before {
    content: '\f006';
    font-family: FontAwesome;
}

.rev-box {
    overflow: hidden;
    height: 0;
    width: 100%;
    transition: all .25s;
}

textarea.review {
    background: #f3f3f3;
    border: none;
    width: 100%;
    max-width: 100%;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    color: #010101;
    margin: 0px 0px 5px 0px;
}

input.name {
    background: #f3f3f3;
    border: none;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: #010101;
    margin:0px 0px 10px 0px;
}

label.review {
    display: block;
    transition: opacity .25s;
}

input.star:checked ~ .rev-box {
    height: 230px;
    overflow: visible;
}
