html,body{
	margin: 0;
}
@font-face{
    font-family:CeraPro-Bold;
    font-weight:400;
    font-style:normal;
    src:url(/local/lib/fonts/CeraPro-Bold/CeraPro-Bold.eot);
    src:url(/local/lib/fonts/CeraPro-Bold/CeraPro-Bold.eot?#iefix) format("embedded-opentype"),url(/local/lib/fonts/CeraPro-Bold/CeraPro-Bold.woff) format("woff"),url(/local/lib/fonts/CeraPro-Bold/CeraPro-Bold.ttf) format("truetype");
    font-display:swap
}
@font-face{
    font-family:CeraPro-Medium;
    font-weight:400;
    font-style:normal;
    src:url(/local/lib/fonts/CeraPro-Medium/CeraPro-Medium.eot);
    src:url(/local/lib/fonts/CeraPro-Medium/CeraPro-Medium.eot?#iefix) format("embedded-opentype"),url(/local/lib/fonts/CeraPro-Medium/CeraPro-Medium.woff) format("woff"),url(/local/lib/fonts/CeraPro-Medium/CeraPro-Medium.ttf) format("truetype");
    font-display:swap
}
@font-face{
    font-family:CeraPro-MediumItalic;
    font-weight:400;
    font-style:normal;
    src:url(/local/lib/fonts/CeraPro-MediumItalic/CeraPro-MediumItalic.eot);
    src:url(/local/lib/fonts/CeraPro-MediumItalic/CeraPro-MediumItalic.eot?#iefix) format("embedded-opentype"),url(/local/lib/fonts/CeraPro-MediumItalic/CeraPro-MediumItalic.woff) format("woff"),url(/local/lib/fonts/CeraPro-MediumItalic/CeraPro-MediumItalic.ttf) format("truetype");
    font-display:swap
}
@font-face{
    font-family:CeraPro-Regular;
    font-weight:400;
    font-style:normal;
    src:url(/local/lib/fonts/CeraPro-Regular/CeraPro-Regular.eot);
    src:url(/local/lib/fonts/CeraPro-Regular/CeraPro-Regular.eot?#iefix) format("embedded-opentype"),url(/local/lib/fonts/CeraPro-Regular/CeraPro-Regular.woff) format("woff"),url(../fonts/CeraPro-Regular/CeraPro-Regular.ttf) format("truetype");
    font-display:swap
}
@font-face{
    font-family:CeraPro-Black;
    font-weight:400;
    font-style:normal;
    src:url(/local/lib/fonts/CeraPro-Black/CeraPro-Black.eot);
    src:url(/local/lib/fonts/CeraPro-Black/CeraPro-Black.eot?#iefix) format("embedded-opentype"),url(local/lib/fonts/CeraPro-Black/CeraPro-Black.woff) format("woff"),url(/local/lib/fonts/CeraPro-Black/CeraPro-Black.ttf) format("truetype");
    font-display:swap
}
@font-face{
    font-family:CeraPro-Light;
    font-weight:400;
    font-style:normal;
    src:url(/local/lib/fonts/CeraPro-Light/CeraPro-Light.eot);
    src:url(/local/lib/fonts/CeraPro-Light/CeraPro-Light.eot?#iefix) format("embedded-opentype"),url(/local/lib/fonts/CeraPro-Light/CeraPro-Light.woff) format("woff"),url(../fonts/CeraPro-Light/CeraPro-Light.ttf) format("truetype");
    font-display:swap
}
*{
	box-sizing: border-box;
	font-family: CeraPro-Regular,sans-serif;
}
.container{
	max-width: 700px;
	margin: 0 auto;
}
img{
	max-width: 100%;
}
.rating-header{
	background: rgba(0, 23, 75, 1);
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.35);
}
.rating-body{
	padding: 45px 0;
	background: #F0F0F0;
	box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.25);
}
.rating-stars{
	background: white;
	width: 100%;
	padding: 30px 20px;
	text-align: center;
	border-radius: 15px;
	margin-bottom: 30px;
}
.rating-stars__title{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 25px;
	color: rgba(0, 23, 75, 1);
	font-family: CeraPro-Medium,sans-serif;
}
.rating-stars__wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 23px;
    flex-direction: row-reverse;
}
.rating-stars__wrapper svg{
	cursor: pointer;
	height: auto;
}
.rating-stars__wrapper svg *{
	transition: .4s;
	fill: white;
}
.rating-stars__wrapper[data-active="1"],
.rating-stars__wrapper[data-active="2"],
.rating-stars__wrapper[data-active="3"],
.rating-stars__wrapper[data-active="4"],
.rating-stars__wrapper[data-active="5"],
{
   
}
.rating-stars__wrapper[data-active="1"] svg:nth-child(4) ~ svg *,
.rating-stars__wrapper[data-active="2"] svg:nth-child(3) ~ svg *,
.rating-stars__wrapper[data-active="3"] svg:nth-child(2) ~ svg *,
.rating-stars__wrapper[data-active="4"] svg:nth-child(1) ~ svg *,
.rating-stars__wrapper[data-active="5"] svg *
{
    fill: rgba(255, 136, 189, 1);
    stroke: rgba(255, 136, 189, 1);
}

.rating-stars__wrapper:hover svg *{
    fill: transparent !important;
    stroke: rgba(0, 0, 0, 1) !important;
}

.rating-stars__wrapper svg:hover *,  .rating-stars__wrapper svg:hover ~ svg *{
    fill: rgba(255, 136, 189, 1) !important;
    stroke: rgba(255, 136, 189, 1) !important;
}
.rating-comment{
	margin-bottom: 30px;
}
.rating-error{
	display: none;
	color: red;
}
.rating-error-general, .rating-error-already{
	text-align: center;
}
.rating-comment textarea{
	outline: none;
	resize: vertical;
	background: white;
	border: 0;
	border-radius: 15px;
	padding: 35px 25px;
	width: 100%;
	height: 86px;
	border-radius: 1px solid transparent;
	transition: .4s;
}
.rating-comment textarea.error{
	border-radius: 1px solid red;
}
.rating-agree{
	margin-bottom: 45px;
}
.rating-agree__wrapper{
	display: flex;
	gap: 10px;
}
.rating-agree input[type="checkbox"]{
	display: none;
}
.rating-agree label{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.36);
    background-position: 3px 4px;
    background-size: 85%;
    border-radius: 3px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: .4s;
    margin-top: 4px;
}
.rating-agree input[type="checkbox"]:checked + label{
    background-color: rgba(0, 23, 75, 1);
    background-image: url('data:image/svg+xml,<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.996094 5.5L4.41478 9.33893" stroke="white" stroke-linecap="round"/><path d="M12.3672 1.07263L4.5 9.19443" stroke="white" stroke-linecap="round"/></svg>');
}
.rating-agree__data{
	flex: 1 0;
	color: rgba(0, 0, 0, 0.36);
}
.rating-submit button{
	background: rgba(0, 23, 75, 1);
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	width: 172px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .4s;
	border-radius: 25px;
	border: 0;
	cursor: pointer;
	margin: 0 auto;
}
.rating-submit button:hover{
	background: rgba(255, 136, 189, 1);
}
.rating-success{
	width: 100%;
	padding: 30px 20px;
	text-align: center;
	background: white;
	border-radius: 25px;
	display: none;
}
.rating-success p{
	margin-top: 25px;
	margin-bottom: 0;
	color: rgba(0, 23, 75, 1);
	font-style: 16px;
	font-family: CeraPro-Medium,sans-serif;
}
@media(max-width: 768px){
	.container{
		max-width: 100%;
		margin: 0 20px;
	}
	.rating-header img{
		max-width: 80%;
	}
	.rating-agree__data{
		font-size: 14px;
	}
	.rating-comment textarea{
		height: auto;
	}
}