.comment__form-item {
    display: flex;
    padding: 16px;
    gap: 16px;
    border-radius: 16px;
    background: #131420;
    color: #fff;
    margin-bottom: 8px;
	position: relative;
	transition: all .3s ease-in-out;
}
.comment__form-img-wrapper {
    display: flex;
    width: 68px;
    height: 68px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: #25252D;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}
.comment__form-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 370px;
    height: fit-content;
}
.comment__form-author-name {
    color: #B59DFE;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
}
.comment__form-author-date {
    display: flex;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.comment__form-author-date span {
    color: #88888D;
}
.comment__form-separator {
    border-left: 1px solid #32323A;
}
.comment__form-item-review {
    color: #D4D4D5;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
	width: calc(100% - 80px);
}
.comment__form-todays-date {
    color: #D4D4D5;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
textarea#comment {
    min-height: 120px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    background: #32323A;
    color: #fff;
    margin: 16px 0;
    border: none;
}
textarea#comment::placeholder {
    color: #88888D;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.comment__form-item-text {
    width: 100%;
	display: flex;
    flex-direction: column;
	position: relative;
}
.btn-submit-comment {
    display: flex;
    width: 160px;
    height: 40px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    background: #794DFD;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    border: none;
}
input[type="radio"] {
    display: none;
}
label img {
    width: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}
label img:hover {
    transform: scale(1.1);
}
input[type="radio"]:checked + label img {
    filter: brightness(1.2);
}
.comment_toast {
    min-width: 250px;
    max-width: 300px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    right: -350px;
    bottom: 30px;
    font-size: 17px;
    transition: right 0.3s ease;
}
.main__info-summary-navigator-item-stars input {
    display: none;
}
.post__rating-block {
    display: flex;
    align-items: center;
    gap: 8px;
}
.post__rating-num {
    color: #D4D4D5;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}
.post__rating-stars {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.rating__star-average-img {
    width: 24px;
    height: 24px;
}
.rating__star-review-img {
    width: 16px;
    height: 16px;
}
.rating__star-img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.comment__encourage-block {
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 16px;
    background: #131420;
    margin-bottom: 8px;
}
.comment__encourage-block img {
    width: 48px;
    height: 48px;
}
.comment__encourage-title {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}
.comment__encourage-subtitle {
    color: #D4D4D5;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}
.main__info-summary-navigator-item-stars img {
	height: 16px;
	width: 16px;
}
#custom-comment-form .main__info-summary-navigator-item-stars img {
	height: 32px;
	width: 32px;
}
.delete-comment-btn {
	border: none;
    color: red;
    background-color: #131420;
    display: inline-block;
    width: fit-content;
	position: absolute;
    right: 0px;
    bottom: 0px;
}
.comment__form-item.disabled__comment-form {
	filter: blur(2px);
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media(max-width: 992px) {
    .comment__form-item-info {
        min-width: 270px;
    }
}
@media(max-width: 768px) {
    .comment__form-item {
        flex-direction: column;
    }
    .comment__form-separator {
        border-top: 1px solid #32323A;
        border-left: none;
    }
    .comment__form-img-wrapper {
        border-radius: 10px;
        background: #3C267E;
    }
	.delete-comment-btn {
		display: block!important;
	}
}
