.km-star-rating {
	display: block;
	text-align: center;
	margin-bottom: 40px;
	margin-top: 120px;
}

.km-star-rating-title {
	display: block;
}

.star-rating__container {
    display: inline-block;
}

.star-rating__wrapper {
    position: relative;
    display: flex;
}

.star-rating {
    display: inline-block;
    position: relative;
    user-select: none;
}

.star-rating__bg {
    color: #e0e0e0;
    display: flex;
}

.star-rating__live {
    display: flex;
    color: #ffb74d;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
}

.star-rating_active:hover .star-rating__live {
    overflow: auto;
    width: 100% !important;
    color: #e0e0e0;
}

.star-rating__item_active {
    color: #fb8c00;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
}

.star-rating__item {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
}

.rating-in-post {
	color: #ffb74d;
	width: 22px;
	height: 22px;
}

@media screen and (max-width:1200px){
	.star-rating__item {
    	width: 48px;
    	height: 48px;
    	flex: 0 0 48px;
	}
	.rating-in-post {
		width: 20px;
		height: 20px;
	}
}

@media screen and (max-width:640px){
	.star-rating__item {
    	width: 40px;
    	height: 40px;
    	flex: 0 0 40px;
	}
	.rating-in-post {
		width: 16px;
		height: 16px;
	}
}

.star-rating__avg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    width: 2em;
}

.d-none {
    display: none;
}
