/**
 * @file
 * This file is used to style the sidebar region.
 *
 */
.layout-sidebar {
    padding: 2em;
    color: #76A5AF;
    background: #FFE4E1;
    font-family: "Open Sans", Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
  }

  .region-sidebar {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  [dir="rtl"] .layout-sidebar {
    /* This is required to win over specificity of [dir="rtl"] ol */
    border-right: 2px solid #76A5AF;
  }
  [dir="ltr"] .layout-sidebar {
    /* This is required to win over specificity of [dir="rtl"] ol */
    border-left: 2px solid #76A5AF;
  }
  
  
  @media screen and (max-width: 496px ) {
    [dir="rtl"] .layout-sidebar {
    /* This is required to win over specificity of [dir="rtl"] ol */
    border-right: 2px #76A5AF;
  }
  [dir="ltr"] .layout-sidebar {
    /* This is required to win over specificity of [dir="rtl"] ol */
    border-left: 2px #76A5AF;
  }
}