/*
 * Traderweb 3 E-Commerce Website - Layout Styles For Every Page
 * Copyright (c) 2022 Roberto Cordomi
 * Dual licensed under the MIT and GPL licenses
 * 
 * Last Update: 13/09/2022
 */

/* RMA Page Start */
#rma-list table tr td {
    vertical-align: middle;
    text-transform: none;
}
#rma-list table tr td:first-child {
    padding-left: 20px;
    width: 80%;
}
#rma-list table tr td .fa {
   font-size: 19px;
}
#rma-list .table-responsive {
    margin-bottom: 50px;
}
/* RMA Page End */

/* About Us Page Start */
.staff-member {
    font-family: var(--main-font);
    position: relative;
}

.staff-member.with-picture {
    border: 1px solid #6A7870;
    cursor: pointer;
}

.staff-member.without-picture {
    color: var(--theme-color-2-light);
    text-align: left;
}

.staff-member.without-picture i {
    background-color: var(--theme-color-3-highlighted) !important;
    color: var(--theme-color-1) !important;
    font-size: 1.2rem !important;
    margin-right: 0.3rem;
}

.staff-member .three-columns {
    font-size: 0.9rem !important;
}

.staff-member .four-columns {
    font-size: 0.8rem !important;
}

.staff-member .six-columns {
    font-size: 0.6rem !important;
}

.staff-member img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.staff-member-data {
    bottom: 0px;
    left: 0px;
    width: 100%;
    color: var(--theme-color-3-highlighted) !important;
    background-color: var(--theme-color-1) !important;
    font-family: Calibri,Arial,Tahoma,Verdana;
    font-size: 0.7em;
    text-align: center;
    padding: 0.25rem;
    position: absolute;
    z-index: 9000;
    opacity: 0%;
}

.staff-member-email {
    color: var(--theme-color-3-highlighted) !important;
    background-color: var(--theme-color-1) !important;
}

.staff-member-email:hover {
    background-color: var(--theme-color-1-light) !important;
}

.staff-member:hover .staff-member-data {
    transition: opacity 0.5s;
    opacity: 100%;
}
/* About Us Page End */