/**
 * All custom CSS modifications should be kept in this file. When updating move this file
 * from the old installation to the updated one. This will preserve all your CSS customisations.
 *
 * This file gets included last, so any CSS rule written below will override a previously declared one.
 *
 * Add your CSS modifications below:
 */


/* Removing line to right of logo on all pages. 
*/
.logo-container {
    border-right: 0px solid;
}

/* Removing line of sidebar.
*/
.sidebar {
    border-right: 0px solid;
}

/* Changing nav menu highlight color from yellow to red. Needs full tag to work.
*/
.site-navigation .active > a, .site-navigation .current-menu-item > a, .site-navigation .current-menu-ancestor > a, .site-navigation .active .current-fluxus-project-type-ancestor > a, .site-navigation .current-menu-parent > a {
    background: #e60000;
}

/* Disabling the share widget at bottom of page. 
*/
.share-widget--footer .share {
    display: none;
}

/* Adding padding to full-width page template styling to give breathing room.
*/
.page .entry-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Adding padding for blog post summaries vertically.
*/
.entry-summary {
    padding-top: 12px;
}

/* Changing font weight and transform for blog titles.
*/
.single .entry-title {
font: 700 24px "Lato", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, arial, sans-serif;
  line-height: normal;
line-height: 1;
text-transform: uppercase;
letter-spacing: 0.04em;
word-wrap: break-word;
}

/* Changing lightbox button colors to match rest of theme.
*/
.fluxus-lightbox__btn {
    background: #e60000;
}

/* Remove text in portfolio overlay. Frustation is theme forces portfolio-category in url. Possible fix is custom html page template to remove the project labels (cannot hide now as it will hide all titles).
*/
.project-title__heading {
    display: none;
}

/* Remove project types widget in portfolio sidebar. Seems to work without affecting blog. */
.widget:last-child {
    display: none;
}
