/** Percy CSS  **/

/** reduce width of single page posts  **/
.single-layout-1 {
    width: 715px;
    margin: 0 auto;
}

/* Use a media query to add a breakpoint at 920px: */
@media screen and (max-width: 920px) {
.single-layout-1 {
    width: unset;
    }
}

/** add vertical line to Events in navigation  **/
#ast-desktop-header .events-pipe {
    border-left: 1px solid #444;
    margin-top: 17px;
    height: 26px;
}
#ast-mobile-header .events-pipe {
    position: relative;
}
#ast-mobile-header .events-pipe:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    background: #444;
    opacity: .1;
}

/* Use a media query to add a breakpoint at 920px: */
@media screen and (max-width: 920px) {
  .events-pipe {
        border-left: 0px solid #000;
  }
}

@media print {
    /* Additional Print Styles Here */    
}