
.review-item {
    /* padding: 45px 45px; */
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 5px 10px;
    /* border-radius: 8px; */
    margin-bottom: 20px;
    /* background: var(--chalk); */
    /* border: 1px solid var(--border); */
}

.review-item:last-child {
    margin-bottom: 0px
}

.review-media {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.review-avatar {
    margin-right: 15px;
    /* border-radius: 50%;
    border: 2px solid var(--primary) */
}

.review-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.review-meta {
    display: flex;
    flex-direction: column;
    text-transform: capitalize;
    text-align: justify;
}

.review-meta a {
    color: var(--heading);
    font-size: 16px;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.review-meta a:hover {
    color: var(--primary)
}

.review-meta span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--text)
}

.review-meta span b {
    font-weight: 500;
    color: var(--primary)
}

.rating-right {
    display: flex;
    flex-direction: column;
}

.review-rating {
    margin-bottom: 2px
}

.review-rating li {
    font-size: 14px;
    margin-right: 0px;
    color: orange;
    display: inline-block
}

.review-desc {
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
}

.review-reply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0px 0 10px 0;
}

.review-reply input {
    width: 100%;
    padding: 7px 18px;
    border-radius: 6px;
    margin-right: 20px;
    background: var(--white);
    border: 1px solid #eee;
}
.review-reply textarea{
    border-radius: 0px !important;
}
.review-reply button {
    font-size: 15px;
    padding: 6px 15px;
    border-radius: 0px;
    color: var(--white);
    background: var(--primary);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.review-reply button:hover {
    background: var(--heading)
}

.review-reply button i {
    margin-right: 5px
}

.review-reply-list {
    margin-left: 80px;
    margin-top: 35px;
    border-top: 1px solid var(--border)
}

.review-reply-item {
    padding: 30px 0px;
    border-bottom: 1px solid var(--border)
}

.review-reply-item:last-child {
    padding-bottom: 0px;
    border-bottom: none
}

.review-form .btn {
    width: 100%;
    padding: 12px 30px
}
.review-item button:focus {
    border: none;
    outline: none;
}
.review-item .dropdown-menu.show{
    min-width: 10px !important;
    left: -12px !important;
}
.review-item .dropdown-menu.show li a{
    padding: 0 10px 0 13px;
}
