/** 
 * Site Promise Styles
 */
.tmw-site-promise {
    max-width: 500px;
}.tmw-site-promise h3 {
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 10px;
}
/*
.tmw-site-promise .tmw-container {
    display: flex;
    align-items: center;
    gap: 5px;
}.tmw-site-promise .tmw-promise-item {
    width: 25%;
    display: grid;
    gap: 10px;
    place-self: stretch;
}
*/
.tmw-site-promise .tmw-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}.tmw-site-promise .tmw-promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tmw-site-promise .tmw-promise-item .tmw-img {
    height: 70px;
    aspect-ratio: 1;
    justify-self: center;
    background: #e8007120;
    border-radius: 100%;
    padding: 15px;
    margin: 5px;
}.tmw-site-promise .tmw-promise-item .tmw-img svg {
    width: fit-content;
    aspect-ratio: 1;
}.tmw-site-promise .tmw-promise-item span {
    margin: 0;
    font-size: 75%;
    font-weight: 500;
    text-align: center;
}.tmw-site-promise-content .content-item {
    margin-bottom: 0;
}

/**
 * Sold-by/Seller Info Styles
 */
.tmw-sold-by {
    max-width: 500px;
    margin: 10px 0;
}.tmw-sold-by h3 {
    margin-bottom: 10px;
}.tmw-sold-by h3 {
    font-size: 125%;
}.tmw-sold-by .tmw-container {
    display: flex;
    flex-direction: column;
    border: 1px solid lightgray;
    border-radius: 5px;
}.tmw-sold-by .tmw-seller-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid lightgray;
}.tmw-sold-by .tmw-seller-profile svg {
    width: 60px;
    height: 60px;
    color: white;
    background-color: #242424;
    padding: 10px;
    border-radius: 50%;
}.tmw-sold-by .tmw-seller-info {
    width: calc(100% - 60px);
    padding-left: 15px;
    line-height: 2;
}.tmw-sold-by .tmw-seller-info h5 {
    margin: 0;
    font-size: 115%;
    font-weight: 700;
    color: #242424;
}.tmw-sold-by .tmw-seller-info .tmw-seller-ratings {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 85%;
    font-weight: 500;
    gap: 5px;
}.tmw-sold-by .tmw-seller-info .tmw-seller-ratings .star-rating {
    font-size: 100%;
}.tmw-sold-by .tmw-seller-info .tmw-seller-since {
    font-size: 80%;
    color: gray;
}/*** Seller Performance Container ***/
.tmw-sold-by .tmw-seller-performance {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
    gap: 10px;
}.tmw-sold-by .tmw-seller-performance .tmw-perf {
    display: flex;
    flex-direction: column;
    font-size: 85%;
    font-weight: 500;
    color: gray;
}.tmw-sold-by .tmw-seller-performance .tmw-perf strong {
    font-size: 110%;
    font-weight: 700;
    color: #242424;
}

