/* Main CSS file (split configuration mode)  */

#fieldContent {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--blue-color);
}

/*
* Dummy class used for updating the content of Ajax result.
*/
.field-container {

}

.action-bar {
    width: 485px;
    padding: 20px;
    background-color: var(--light-gray-semi-transparent-color) !important;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

.star-rating {
    direction: rtl;
    display: inline;
    cursor: pointer;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 24px;
    padding: 0 2px;
    cursor: pointer;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.star-rating input:checked ~ label {
    color: #ddd;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffc107;
}

.readonly label {
    pointer-events: none;
}