/*Tenant Agencies Styles*/
.tenantTable {
    margin: 0 auto;
    border-spacing: 10px;
    border-collapse: separate;
    border: none;
}
.tenantTable a {
    color:#393939;
}
.tenantTable a:hover,
.tenantTable a:visited{
    color:grey !important;
}
.tenantTable tr:nth-child(odd) td{
    background: #f9e3d0;
}
.tenantTable tr:nth-child(even) td{
    background: #f5d6bb;
}
.tenantTable td {
    width: 25%;
    background-clip: padding-box;
    border-radius: 7px;
    padding: 20px;
}
.tenantTable .fa {
    background-color: #a2bdeb;
    border-radius: 100px;
    padding: 13px 10px 10px 10px;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
@media screen and (max-width:1000px) {
    .tenantTable {
        width: 100% !important;
    }
    .tenantTable td {
        width: 50%;
    }
}