/**
 * Change the first icon in the list of stars from a star to a circle with an "X" in it.
 * Overrides CSS in ~/libraries/jquery-barrating/themes/fontawesome-stars.css
 */
.br-theme-fontawesome-stars .br-widget a:first-child:after {
    content: '\f05c';
}

/**
 * Ratings Grid/Matrix Input & Output
 */
.tcr-rating-grid {
    margin-top: 0;
    width: 100%;
}

.tcr-rating-grid-row {
    width: 100%;
    clear: both;
}

.tcr-rating-grid-row:hover {
}

.tcr-rating-grid-label {
}

.tcr-rating-grid-label {
    margin-bottom: 6px;
    white-space: nowrap;
}

.tcr-rating-grid-row:hover .tcr-rating-grid-label {
}

.tcr-rating-grid-value {
    white-space: nowrap;
}

.tcr-rating-grid-value .tcr-rating-na {
    font-style: italic;
}

.tcr-rating-grid-value i.fa {
    color: #EDB867;
    margin-right: 2px;
}

.tcr-rating-grid-label {
    width: 50%;
    float: left;
}

.tcr-rating-grid-input .tcr-rating-grid-value {
    text-align: left;
}

.tcr-rating-grid-output .tcr-rating-grid-value {
    text-align: right;
}

/**
 * Styling for text that appears when you hover over a star.
 */
.tcr-select-tooltip {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #777;
    font-style: italic;
}

/**
 * Styling for the star option selected.
 */
.tcr-selected {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #67AC5C;
    font-weight: bold;
    margin-left: 6px;
}

.tcr-selected:before {
    content: "\f00c";
    font: normal normal normal 20px/1 FontAwesome;
}

.fa-layers svg.svg-inline--fa {
    margin: 0;
}

span.fa-layers.fa-fw {
    width: 1.125em;
}

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 640px)
{
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px)
{
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.gap-4
{
    grid-gap: 1rem;
    gap: 1rem;
}


