/*
 * Selectable CSS3 Rating Stars by Martin Ivanov (@wemakesitesnet)
 * @version 1.0
 * @author Martin Ivanov
 * @url portfolio http://wemakesites.net/
 * @url twitter https://twitter.com/wemakesitesnet
 * @url blog http://acidmartin.wordpress.com/
 **/


/*
 * Do you like this solution? Please, donate:
 * https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QFUHPWJB2JDBS
 *
 * If you are looking for a feature-complete rating system http://acidjs.wemakesites.net/rating.html
 *
 **/

.acidjs-rating-stars, .acidjs-rating-stars label::before {
    display: inline-block;
}

.acidjs-rating-stars label:hover, .acidjs-rating-stars label:hover~label {
    color: #189800;
}

.acidjs-rating-stars * {
    margin: 0;
    padding: 0;
}

.acidjs-rating-stars input {
    display: none;
}

.acidjs-rating-stars {
    unicode-bidi: bidi-override;
    direction: rtl;
}

.acidjs-rating-stars label {
    color: #ccc;
}

.acidjs-rating-stars label::before {
    content: "\2605";
    width: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.acidjs-rating-stars input:checked~label {
    color: #f5b301;
}

.acidjs-rating-disabled {
    opacity: .50;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
}

table.pending_rating {
    width: 500px;
}

.button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .08);
}

#form_row {
    margin: 8px auto;
}

#error_message {
    color: red;
}

#container {
    position: relative;
}

#input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0;
    margin: 0;
}

#select {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
}


/* MOBILE */

@media (min-width: 960px) and (max-width: 1320px) {
    #container {
        position: relative;
        width: 1170px;
    }
}
