.rndsand8_create_review {

    display: flex;
    background: #fff;
    padding: 11px;
    border-radius: 11px;
    height:fit-content;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: center;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
    overflow-y: scroll;
    animation: bounce .5s linear both;
    transition: 0.5s;
}

.rndsand8_create_review_header {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: fit-content;
    margin-bottom: 15px;
}

.rndsand8_create_review_title {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: fit-content;
    text-align: center;
    font-weight: 600;
    font-size: 17px;
}

.rndsand8_create_review_form {

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.rndsand8_create_review_title img {

    width: 151px;
    margin-top: 51px;
}

.rndsand8_create_review_form_text {

    color: #ccc;
    font-size: 16px;
    margin-bottom: 22px;
}

.rndsand8_create_review_form_submit {

    display: none;
    height: 50px;
    width: 222px;
    align-self: flex-start;
    text-align: center;
    font-size: 19px;
    padding: 12px;
    background-color: #3fb5ff;
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: capitalize;
    &:hover {
        background-color: #078fe4;
    }
}

.input_field_error {

    border: 2px solid red !important;
}

.rndsand8_create_review_stars {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.rating-area {
    
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
}

.rating-area:not(:checked) > input {

	display: none;
}

.rating-area:not(:checked) > label {

	float: right;
	width: 42px;
	padding: 0;
	cursor: pointer;
	font-size: 32px;
	line-height: 32px;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
}

.rating-area:not(:checked) > label:before {

	content: '★';
}

.rating-area > input:checked ~ label {

	color: gold;
	text-shadow: 1px 1px #c60;
}

.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {

	color: gold;
}

.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {

	color: gold;
	text-shadow: 1px 1px goldenrod;
}

.rate-area > label:active {

	position: relative;
}

.rndsand8_create_review_message {

    display: none;
    width: 100%;
    margin-bottom: 15px;
}

.rndsand8_create_review_message_value {

    font-size: 17px;
    min-height: 85px;
}

.rndsand8_create_review_message_value::placeholder {

    color: darkgrey ;
}

.rndsand8_create_review_error {

    color: darkred;
    font-size: 13px;
    margin-bottom: 15px;
}

#rndsand8_create_review_success {

    font-size: 19px;
    font-weight: bold;
    position: relative;
    bottom: 15px;
    align-self: flex-start;
}