/** SKIP LINK STYLE FIXES **/

.skip-link {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 50;
  background: #fff;
  font-size: 1rem;
  line-height: 2;
  padding: 1px 1rem 2px;
  border-radius: 0 0 0.5rem 0.5rem;
  border-bottom-width: 0;
  outline: 0; 
  color: #000;
}

a.visually-hidden-focusable.skip-link:focus {
		position: absolute !important;
    left: 15px;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    margin-top: 1rem;
    font-size: 1rem;
    background: white !important;
    color: black !important;
    outline: 2px solid blue;
    box-shadow: 0 0 0 2px yellow;
    border-radius: 2px;
}

/** fix for menu heading titles insufficient default contrast **/
h2.visually-hidden, .visually-hidden {
  color: black;
  background: white;
}

/* header branding alignment on wider screens */

@media screen and (min-width:1400px){
	/* College of Forestry linkback margin is doubled so does not align with logo when stacked */
	/* so removing margin on link itself */
	header#header div.cof-linkback a, header#header div.cof-linkback a:visited {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  header#header .osu-brand {
    justify-content: center !important;
  }
  /* add vertical line between branding and site title */
  .osu-cof-branding {
   border-right: 1px solid #efefef;
   margin-right: 1rem;
	}
}

/* make all elements of sidebar stack */
#collapsingsidebarsecond {
  flex-direction: column !important;
}
/* make all blocks in sidebar full width */
.sidebar .block {
  width: 100%;
}