/*
 * DO NOT EDIT THIS FILE.
 * Edit .pcss.css file instead and recompile.
*/

/**

 * @file
 * General navigation styles
 */

/*
  Custom CSS properties and mixins.
  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
  CSS variables (those that start with --) are included in the generated CSS. Sass style variables (those that start with $) are for internal processing.
*/

/* Internal variables */

/*1px */

/*16px */

/*4px */

/*5.33333333px */

/*8px */

/*12px */

/*20px */

/*24px, */

/*32px */

/*44px (named after omicron variant BS.2.75.2) */

/*48px */

/*desktop + 32px; */

/*max-width + 64px; */

/* RGB colors, useful for when you need to include a color in an RGBA set. */

/* Mixins */

/* */

/* Hide elements visually, but keep them available for screen-readers. */

/* */

/* Used for information required for screen-reader users to understand and use */

/* the site where visual display is undesirable. Information provided in this */

/* manner should be kept concise, to avoid unnecessary burden on the user. */

/* "!important" is used to prevent unintentional overrides. */

/* */

/**
 * @file
 * Visual styles for buttons.
 */

button, .button, .image-button {
  min-height: 3rem; /*48px */
  /*@media (width > $desktop) { */
  /*  min-height: 2.75rem; //44px */
  /*} */
  background-color: var(--c-link);
  font-family: var(--sans-serif);
  font-weight: 600;
  /*font-size: inherit; */
  /*line-height: 1; */
  color: white;
  padding-left: var(--space);
  padding-right: var(--space);
  border-radius: var(--base-border-radius);
  border: solid 2px var(--c-link);
}

@media (max-width: 700px) {

button:not([value="Search"]), .button:not([value="Search"]), .image-button:not([value="Search"]) {
      width: 100%
  }
    }

.link-button {
  min-height: 3rem; /*48px */
  /*@media (width > $desktop) { */
  /*  min-height: 2.75rem; //44px */
  /*} */
  background-color: var(--c-link);
  font-family: var(--sans-serif);
  font-weight: 600;
  /*font-size: inherit; */
  /*line-height: 1; */
  color: white;
  padding-left: var(--space);
  padding-right: var(--space);
  border-radius: var(--base-border-radius);
  border: solid 2px var(--c-link);
}

@media (max-width: 700px) {

  .link-button:not([value="Search"]) {
      width: 100%;
}
    }

.link-button {
  display: inline-block;
  line-height: 1.15;
  display: flex;
  width: max-content;
  align-items: center;
}

.link-button:hover, .link-button:active, .link-button:focus {
    color: white;
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--c-focus);
  }

nav {
  font-family: var(--sans-serif);
}

.block-local-tasks-block {
  margin-top: var(--space);
}

.field--name-field-call-to-actions a {
  min-height: 3rem; /*48px */
  /*@media (width > $desktop) { */
  /*  min-height: 2.75rem; //44px */
  /*} */
  background-color: var(--c-link);
  font-family: var(--sans-serif);
  font-weight: 600;
  /*font-size: inherit; */
  /*line-height: 1; */
  color: white;
  padding-left: var(--space);
  padding-right: var(--space);
  border-radius: var(--base-border-radius);
  border: solid 2px var(--c-link);
}

@media (max-width: 700px) {

  .field--name-field-call-to-actions a:not([value="Search"]) {
      width: 100%;
}
    }

.field--name-field-call-to-actions a {
  display: inline-block;
  line-height: 1.15;
  display: flex;
  width: max-content;
  align-items: center;
}

.field--name-field-call-to-actions a:hover, .field--name-field-call-to-actions a:active, .field--name-field-call-to-actions a:focus {
    color: white;
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--c-focus);
}
