﻿#callRatingModal .column {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.rating-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    text-align: center;
}

.rating-numbers, .rating-stars {
    display: flex;
    justify-content: center;
    margin: 20px 0 5px;
}

.rating-box {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    .rating-box.selected {
        background: #007e80;
        color: white;
    }

    .rating-box:hover {
        background: #007e8078;
        color: white;
    }

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

    .rating-stars span:hover i,
    .rating-stars span:hover ~ span i {
        color: gold;
    }

.rating-star {
    font-size: 30px;
    margin: 0 5px;
    cursor: pointer;
}

    .rating-star i {
        color: #ccc;
    }

    .rating-star .selected {
        color: gold;
    }


.rating-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px 10px;
    font-size: 10px;
}

.rating-url {
    margin: 1rem;
}
