/*styling star rating*/
*{
	padding: 0;
	margin: 0;
}
html,body{
	overflow-x: hidden;
}
.text-justify{
	text-align: justify !important;
}
/* .modal{
	overflow-y: hidden !important;
} */
.modal-open{
	overflow: hidden !important;
}
.rating{
	float: left;
    margin-left: 20px;
}

.rating > input{
	display: none;
}

.rating > label:before{
	content: '\f005';
	font-family: FontAwesome;
	margin: 5px;
	font-size: 1.5rem;
	display: inline-block;
	cursor: pointer;
}

.rating > .half:before{
	content: '\f089';
	position: absolute;
	cursor: pointer;
}


.rating > label{
	float: right;
	cursor: pointer;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover, 
.rating:not(:checked) > label:hover ~ label{
	color: #F4D03F;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label{
	color: #F4D03F;
}