.review-container {
    width: 500px;
    position: relative;
}

.br-widget {
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}
.br-widget a {
    width: 40px;
    height: 40px;
    float: left;
    border: 1px solid var(--bg-green);
    color: var(--bg-green);
    border-radius: 2px;
    background-color: white;
    margin: 2px;
    text-decoration: none;
    font-size: var(--fontfize-md);
    line-height: 2;
    text-align: center;
    font-weight: 600;
}
.br-widget a.br-active,
.br-widget a.br-selected,
.br-widget a:hover {
    background-color: var(--bg-green);
    color: #fff;
}
.br-widget .br-current-rating {
    clear: both;
    width: 330px;
    text-align: center;
    font-weight: 600;
    display: block;
    padding: .5em 0;
    color: #646464;
}

.question {
    font-size: var(--fontsize-md);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.explanation {
    font-size: var(--fontsize-sm);
    display: block;
    margin-bottom: 10px;
}

.question-rating {
    margin-bottom: 60px;
}

.small-info-left {
    position:absolute;
    left:0;
    margin-top: 30px;
    font-size: var(--fontsize-sm);
}

.small-info-right {
    position:absolute;
    right:0;
    margin-top: 30px;
    font-size: var(--fontsize-sm);
}

/*textarea {*/
/*    border: 1px solid var(--bg-green);*/
/*}*/

textarea .review {
    height: 150px;
}

textarea.review-plus, textarea.review-min {
    height: 90px;
}

.cta-menu-restaurant {
    display: block;
    font-size: var(--fontsize);
    font-weight: 500;
    color: var(--text-green);
    text-align: left;
    margin-bottom: 10px;
}

.last-update-menu {
    font-size: var(--fontsize-sm);
    font-weight: 500;
    color: var(--text-grey);
}

.label-write-review {
    display: initial;
}

.label-write-review span {
    margin-left: 5px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

/*textarea.review-plus::placeholder, textarea.review-min::placeholder {*/
/*    font-size: var(--fontsize-sm);*/
/*}*/

.restaurant-review-switch {
    text-align: right;
    margin-top: 10px;
}

a.restaurant-switch-link {
    color: var(--grey);
    font-size: var(--fontsize-sm);
}

a.restaurant-switch-link:hover {
    color: var(--bg-green);
}


/* Select2 styling */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.select2-container--default .select2-selection--single {
    height: 50px;
    padding-top: 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bg-green);
}

ul.menu-questions {
    list-style: none;
    padding-left: 0;
}

@media print {
    .br-widget a {
        border: 2px solid var(--bg-green);
        color: var(--bg-green);
    }
    .br-widget a.br-active,
    .br-widget a.br-selected {
        border: 2px solid black;
        color: black;
    }
}

@media all and (max-width: 600px) {
    .review-container {
        width: 100%;
    }

    .br-widget a {
        width: 30px;
        font-size: var(--fontsize-sm);
    }
}

