.woocommerce .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.button.review {
    margin-left: 1rem;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 50rem;
}

button#closePopup {
    position: absolute;
    top: 0;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    opacity: .6;
    cursor: pointer;
}

button#closePopup:hover {
    opacity: 1;
}

textarea#content_reivew {
    width: 100%;
    margin: 1rem 0;
    padding: 1.25rem;
}

.section-review-box {
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
}

.order_item a.woocommerce-button.button.review {
    font-size: .75rem;
    margin-left: 1rem;
    float: right;
}

.woocommerce .button:hover:after,
.woocommerce-page .button:hover:after {
    display: none;
}

body .woocommerce-button.button:hover {
    padding: 0.3em 1em;
    background: #cc392b;
    color: #fff;
}

p.btn-submit-add-review {
    text-align: center;
}

p.loading_submi_reivew {
    text-align: center;
    display: none;
}

ul.products.custom-reivews-list li.product {
    width: 50%;
}

ul.products.custom-reivews-list li.product .box {
    border: 1px solid #CC392B;
    border-radius: 10px;
    background: #fff;
    padding: 1.25rem;
}

ul.products.custom-reivews-list li.product .box p.bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    margin-top: 1rem;
}

ul.products.custom-reivews-list li.product .box p.bottom span:first-child {
    font-weight: 600;
}

.content-review {
    font-size: 1rem;
    margin-top: 1rem;
}

ul.products.custom-reivews-list {
    display: flex;
    gap: 1.25rem;
    flex-direction: row;
    flex-wrap: wrap;
}

ul.products.custom-reivews-list li.product {
    width: calc(50% - .625rem);
}

ul.products.custom-reivews-list li.product .box img {
    margin-right: .5rem;
}
.section-review-box p.stars img {
    max-width: 2rem;
}
.rating-face input {
    display: none;
}

.rating-face label img {
    width: 40px;
    cursor: pointer;
    transition: 0.2s;
    margin-right: .2rem;
}
.rating-face label img:nth-child(2) {
    display: none;
}
.rating-face input:checked + label img {
    display: none;
}
.rating-face input:checked + label img:nth-child(2) {
    display: inline-flex;
}