
/* jQuery LM Reviews Styles */

#rating, #rating-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 170px;
}

#rating-footer {
    height: 80px;
}

#rating i, #rating-footer i {
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
    font-size: 36px;
}

#rating .far, #rating-footer .far {
    color: #000;
}

#rating .fas, #rating-footer .fas {
    cursor: pointer;
    color: #d39e00;
}

#rating-comment .fa-star, #rating-comment-footer .fa-star {
    color: #d39e00;
}

#rating-comment label, #rating-comment-footer label {
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
    line-height: 1;
    font-size: 15px;
    color: #000;
}

#rating-comment textarea, #rating-comment-footer textarea {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #d9dde1;
    box-sizing: border-box;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 15px !important;
    transition: all .3s ease;
    color: #000;
    height: 80px;
}

#rating-comment ul, #rating-comment-footer ul {
    list-style: none;
}

/* DARK THEME */

.theme-dark #rating i, .theme-dark #rating-footer i {
    color: #fff;
}

.theme-dark #rating-comment-footer label {
    color: #fff;
}

.theme-dark #rating-comment-footer textarea {
    color: #fff;
    background: #222;
    border-color: rgba(255, 255, 255, 0.05) !important;
}