
/*  rate ai chat threats */

/* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
.rating-group {
	display: inline-flex;
}

/* make hover effect work properly in IE */
.rating__icon {
	pointer-events: none;
}

/* hide radio inputs */
.rating__input {
	position: absolute !important;
	left: -9999px !important;
}

/* hide 'none' input from screenreaders */
.rating__input--none {
	display: none
}

/* set icon padding and size */
.rating__label {
	cursor: pointer;
	padding: 0 0.1em;
	font-size: 2rem;
}

/* set default star color */
.rating__icon--star {
	color: orange;
}

/* if any input is checked, make its following siblings grey */
.rating__input:checked ~ .rating__label .rating__icon--star {
	color: #ddd;
}

/* make all stars orange on rating group hover */
.rating-group:hover .rating__label .rating__icon--star {
	color: orange;
}

/* make hovered input's following siblings grey on hover */
.rating__input:hover ~ .rating__label .rating__icon--star {
	color: #ddd;
}
  
#addReview .modal-content{
    background-color : #392679 !important
}

#addReview .btn-close{
    background-color: gray !important;
}

.review-textarea{
    background-color: #05003A !important;
    color: #fff !important;
}
/*  rate ai chat threats end */

.gradient-btn{
	background: linear-gradient(90deg, rgba(19, 158, 188, 1) 45%, rgba(170, 30, 205, 1) 95%) !important;
}