/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


.request-list .request-item{
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: .8em;
}

.request-list .request-item .request-title{
    font-size: .9em;
    font-family: var(--shahkar-bold-font-style);
    color: var(--product-name-color);
}

.request-list .request-item .status-label{
    font-size: .8em;
    font-family: var(--shahkar-extra-bold-font-style);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    text-align: center;
}

.request-list .request-item .status-label.pending {
    background: rgba(255, 192, 1, .1);
    color: var(--edit-btn);
}

.request-list .request-item .status-label.unknown {
    background-color: rgb(24 203 0 / 10%);
    color: #23b330;
}

.request-item .status-label.revision {
    background-color: rgb(215 105 15 / 10%);
    color: rgb(233 132 50);
}

.request-list .request-item .status-label.rejected {
    background-color: rgb(255 1 1 / 10%);
    color: rgb(239 84 84);
}

.request-list .request-item:hover {
    background-color: rgba(200, 200, 200, .1);
}



@media screen and (max-width: 768px) {
	.stats-box{
		width: 100% !important;
	}
}