.agentCardImg {
    height: 250px;
    object-fit: cover;
    width: 100%;
    max-width: 175px;
}

.main-container {
    display: none;
}

.gridSectionContainer {
    margin: 0 auto;
    padding: 100px 0 50px;
}

#agent-grid-loading {
    display: block;
}

#agent-grid-filter-field {
    font-family: Roboto;
    font-weight:300;
    font-size:13px;
    color:#262626;
    width:300px;
    padding:10px 25px;
}

.sectionTitle {
    color: #222;
    font-size: 2.5rem;
    font-weight: 700;
}

.loadingIcon {
    width:30px;
    display: inline-block;
}

.agentCards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    justify-items: center;
    margin: auto;
    padding-top: 3rem;
    width: 95%;
}

.agentCard {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    width: 250px !important;
}

.card-img-top {
    height: 228px;
}

.agentImg {
    height: 100%;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.agentName {
    color: #485769;
    font-weight: 900;
}

.agentDesignations {
    font-size: 12px;
}

.agentEmail {
    color: #222;
    font-size: 12px;
}

.agentEmail:hover {
    color: #4e4e4e !important;
}

.agentFooter {
    background-color: #485769 !important;
}

.agentLink {
    color: #FFF !important;
    text-decoration: none !important;
}

.paginate {
    font-size: 12px;
    font-weight: 400;
    margin: 25px auto;
    text-align: center;
}

.paginateSpacer {
    display:inline-block;
    padding:5px;
    margin-right:8px;
    text-align: center;
}


.paginateBtn {
    border:1px solid #485769;
    border-radius: 2px;
    color: #485769;
    cursor:pointer;
    display:inline-block;
    margin-right:8px;
    margin-bottom: 15px;
    padding:5px;
    text-align: center;
    transition: all .1s ease-in;
    min-width:25px;
}

.paginateBtn:hover {
    background-color: #485769;
    color: #FFF;
}

.paginateBtnCurrent {
    display:inline-block;
    border:1px solid #485769;
    background-color: #485769;
    padding:5px;
    color:white;
    margin-right:8px;
    border-radius: 2px;
    min-width:25px;
    text-align: center;
    cursor: default;
}