/*
Section dedicated to hiding bits and pieces from the site
*/

/*
node/5774
bureau-zone/social-security-benefits
Social Security Benefits
*/

.page-node-5774 #block-views-call-to-action-block h3 a {
    display: none;
}

.page-node-5774 #block-views-call-to-action-block p {
    display: none;
}

.page-node-5774 #block-views-call-to-action-block .field-name-field-image {
    float: left;
}

/*
Effect full view of nodes from the content type Bureau
Hide linked telpehone number on desktops
Hide plain text telephone number on mobile devices
*/
@media screen and (max-width: 480px) {
    #node-bureau-full-group-cab-contact .field-name-field-telephone {
        display: none;
    }
}

@media screen and (min-width: 481px) {
    #node-bureau-full-group-cab-contact .field-name-field-bureau-telephone {
        display: none;
    }
}

/*Hide the "Managed by" label for Staff Member content type since we are using are own label in template */
#node-staff-member-full-group-managed-by h3 span{
    display: none;
}