.d_reviews_form {
	width: 100%;
}

.d_reviews_form h2 {
	color: black;
	text-transform: uppercase;
	margin: 50px 0 15px 0;
	letter-spacing: 1px;
	font-size: 26px;
	font-weight: 600;
	text-align: center;
}

.d_reviews_formTextLabel {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	padding-bottom: 20px;
	font-weight: 500;
}

.d_reviews_formTextLabel textarea {
	padding: 8px 6px;
	border-radius: 3px;
	border: 1px solid #dddd;
	margin-top: 10px;
	font-size: 16px;
}
.d_reviews_formTextLabel textarea::placeholder {
	color: #c4c4c4;
	font-size: 14px;
}
.d_reviews_formMain input[type="text"] {
	padding: 15px 20px;
	border-radius: 3px;
	border: 1px solid #dddd;
	font-size: 16px;
	margin-top: 10px;
}
.d_reviews_formMain input[type="text"]:focus{
	font-size: 16px;
}


.d_reviews_formMain input[type="text"]::placeholder{
	color: #c4c4c4;
	font-size: 14px;
}
	/* Customize the label (the container) */
.d_reviews_formCheckMarkBody {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.d_reviews_formCheckMarkBody input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.d_reviews_formCheckMark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 20px;
	border: 1px solid #e87005;
	width: 20px;
	background-color: #fff;
	border-radius: 5px;
}


/* Create the indicator (the dot/circle - hidden when not checked) */
.d_reviews_formCheckMark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.d_reviews_formCheckMarkBody input:checked ~ .d_reviews_formCheckMark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.d_reviews_formCheckMarkBody .d_reviews_formCheckMark:after {
	left: 6px;
	top: 2px;
	width: 3px;
	height: 8px;
	border: solid #e87005;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.d_reviews_formCheckMarkBox {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.d_reviews_formCheckMarkBox label {
	margin-right: 20px;
}

.d_reviews_saveComment {
	max-width: 100%;
	width: 100%;
}

.d_reviews_formRatingSelector {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.d_reviews_formStars {
	display: flex;
	align-items: center;
	justify-content: center;

}

.d_reviews_formOneStar {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.d_reviews_formRatingSelector section{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.d_reviews_errorString {
	display: block;
	text-align: left;
	font-size: 12px;
	padding: 10px 0;
	color: red;
}
.d_reviews_answerError {
	display: block;
	text-align: center;
	font-size: 12px;
	color: red;
}
.d_reviews_errorBox {
	border-color: red!important;
}
.d_reviews_activeString {
	padding: 10px 0;
}
.d_reviews_formEmptyStar {
	background-image: url("/wp-content/themes/draw/shared/reviews/rating/star-empty.svg");
}

.d_reviews_formActiveStar {
	background-image: url("/wp-content/themes/draw/shared/reviews/rating/star-full.svg");
}
.d_reviews_formErrorStar {
	background-image: url("/wp-content/themes/draw/shared/reviews/rating/star-error.svg");
}
@media (min-width: 768px) {

	.d_reviews_formCheckMarkBox {
		flex-direction: row;
	}
}