/*
 * Responsive font size mixins.
 */
/*
 * Text styling.
 * Also see heading.scss.
 */
.text-bold {
  font-weight: 700;
}

.text-label {
  font-weight: 700;
  margin-right: 5px;
}

.text-centered {
  text-align: center;
}

.text-small-3 {
  font-size: 0.5rem;
}

.text-small-2 {
  font-size: 0.8rem;
}

.text-small-1 {
  font-size: 0.9rem;
}

.text-normal {
  font-size: 1rem;
}

.text-large-1 {
  font-size: 1.1rem;
}

.text-large-2 {
  font-size: 1.3rem;
}

.text-large-3 {
  font-size: 1.5rem;
}

.text-large-4 {
  font-size: 2rem;
}

.text-large-5 {
  font-size: 3rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url("../fonts/assets/OpenSans-Bold-webfont.woff2") format("woff2"), url("../fonts/assets/OpenSans-Bold-webfont.woff") format("woff");
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url("../fonts/assets/OpenSans-Regular-webfont.woff2") format("woff2"), url("../fonts/assets/OpenSans-Regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "OpenSans";
  font-weight: 400;
  font-style: italic;
  font-display: fallback;
  src: url("../fonts/assets/OpenSans-Italic-webfont.woff2") format("woff2"), url("../fonts/assets/OpenSans-Italic-webfont.woff") format("woff");
}
/*
 * Moved from global.scss.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted #105610;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

/**
 * Form elements.
 */
form {
  margin: 0;
  padding: 0;
}

fieldset:not(.fieldgroup) {
  position: relative;
  min-width: 0;
  margin: 1em 0;
  padding: 30px 18px 18px;
  border-radius: 2px;
  background-color: #fcfcfa;
}

fieldset:not(.fieldgroup) > legend {
  position: absolute;
  top: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: bold;
}

.fieldgroup {
  min-width: 0;
}

.form-item {
  margin: 0.75em 0;
}
.form-item .description {
  margin: 0.2em 0 0;
  color: #595959;
  font-size: 0.95em;
}
.form-item .description .error {
  margin-top: 0;
  color: #a51b00;
}
.form-item label {
  display: table;
  margin: 0 0 0.1em;
  padding: 0;
  font-weight: bold;
}
.form-item label .error {
  color: #a51b00;
}
.form-item label.option {
  text-transform: none;
  display: inline;
  font-weight: 400;
}
.form-item label.option input {
  vertical-align: middle;
}
.form-item label[for] {
  cursor: pointer;
}
.form-item input.error {
  color: #a51b00;
  border-width: 1px;
  border-color: #e62600;
  background-color: hsl(15deg, 75%, 97%);
  box-shadow: inset 0 5px 5px -5px #b8b8b8;
}
.form-item textarea.error {
  color: #a51b00;
  border-width: 1px;
  border-color: #e62600;
  background-color: hsl(15deg, 75%, 97%);
  box-shadow: inset 0 5px 5px -5px #b8b8b8;
}
.form-item select.error {
  color: #a51b00;
  border-width: 1px;
  border-color: #e62600;
  background-color: hsl(15deg, 75%, 97%);
  box-shadow: inset 0 5px 5px -5px #b8b8b8;
}
.form-item select.error:focus {
  border-color: #e62600;
  outline: 0;
  background-color: #fcf4f2;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 8px 1px #e62600;
}

.form-item textarea.error + .cke {
  border-width: 1px;
  border-color: #e62600;
}

.form-item--error-message {
  margin-top: 0.15em;
  color: #e32700;
}

.fieldset-wrapper > .form-item--error-message {
  margin-top: 0;
}

.text-format-wrapper .form-item--error-message {
  margin: 0;
  padding: 0.25em 0.666em 0;
  border: solid #ccc;
  border-width: 0 1px;
}

/**
 * When a table row has a single form item, prevent it from adding unnecessary
 * extra spacing. If it has multiple form items, allow spacing between them,
 * overriding Classy.
 */
tr .odd .form-item,
tr .even .form-item {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

td > .form-item:only-child {
  margin-top: 0;
  margin-bottom: 0;
}

.form-type-checkbox {
  padding: 0;
}

.form-disabled label {
  color: #686868;
}
.form-disabled input .form-date,
.form-disabled input .form-text,
.form-disabled input .form-tel,
.form-disabled input .form-time,
.form-disabled input .form-email,
.form-disabled input .form-url,
.form-disabled input .form-search,
.form-disabled input .form-number,
.form-disabled input .form-color,
.form-disabled input .form-file {
  border-color: #d4d4d4;
  background-color: hsla(0deg, 0%, 0%, 0.08);
  box-shadow: none;
}
.form-disabled textarea .form-textarea {
  border-color: #d4d4d4;
  background-color: hsla(0deg, 0%, 0%, 0.08);
  box-shadow: none;
}
.form-disabled select .form-select {
  border-color: #d4d4d4;
  background-color: hsla(0deg, 0%, 0%, 0.08);
  box-shadow: none;
}

.form-required::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
  content: " ";
  color: #ff0000;
  vertical-align: super;
  background-image: url("../images/required.svg");
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

ul .tips {
  margin: 0.2em 0 0;
  color: #595959;
  font-size: 0.95em;
}
ul .tips li {
  margin: 0.25em 0 0.25em 1.5em; /* LTR */
}

div .description {
  margin: 0.2em 0 0;
  color: #595959;
  font-size: 0.95em;
}
div .form-wrapper {
  margin: 25px 0;
}

.description .form-type-radio, .description .form-type-checkbox {
  margin-left: 1.5em; /* LTR */
}

.form-text,
.form-textarea {
  border-radius: 2px;
  font-size: 1em;
  line-height: normal;
}

input.form-autocomplete, input.form-text, input.form-text-required, input.form-tel, input.form-email, input.form-url, input.form-search, input.form-number, input.form-color, input.form-file, input.form-date, input.form-time {
  box-sizing: border-box;
  max-width: 100%;
  padding: 0.3em 0.4em 0.3em 0.5em;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  color: #595959;
  border: 1px solid #b8b8b8;
  border-top-color: #999;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125);
  font-size: 1em;
}

textarea.form-textarea {
  box-sizing: border-box;
  max-width: 100%;
  padding: 0.3em 0.4em 0.3em 0.5em; /* LTR */
  transition: border linear 0.2s, box-shadow linear 0.2s;
  color: #595959;
  border: 1px solid #b8b8b8;
  border-top-color: #999;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125);
  font-size: 1em;
}

.form-text:focus,
.form-tel:focus,
.form-email:focus,
.form-url:focus,
.form-search:focus,
.form-number:focus,
.form-color:focus,
.form-file:focus,
.form-textarea:focus,
.form-date:focus,
.form-time:focus {
  border-color: #40b6ff;
  outline: 0;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 8px #40b6ff;
}

.form-item-options-group-info-identifier {
  clear: both;
}

/**
 * Limits extra long instances of select elements to the max width allowed
 * to avoid breaking layouts.
 */
select {
  max-width: 100%;
}

/**
 * Improve spacing of cancel link.
 */
#edit-cancel {
  margin-left: 10px;
}

.js .dropbutton-widget {
  border: 1px solid #ccc;
  background-color: #fff;
}

.js .dropbutton-widget:hover {
  border-color: #b8b8b8;
}

.dropbutton .dropbutton-action > * {
  padding: 0.1em 0.5em;
  white-space: nowrap;
}

.dropbutton .secondary-action {
  border-top: 1px solid #e8e8e8;
}

.dropbutton-multiple .dropbutton {
  border-right: 1px solid #e8e8e8; /* LTR */
}

.dropbutton-multiple .dropbutton .dropbutton-action > * {
  margin-right: 0.25em; /* LTR */
}

/*
 * CUSTOMIZATIONS
 */
/*
 * Form pages that should be centered with body text.
 */
.user-register-form,
.user-login-form,
.user-pass,
.user-form {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
  font-size: 1.2rem;
}
@media screen and (min-width: 1540px) {
  .user-register-form,
.user-login-form,
.user-pass,
.user-form {
    max-width: 1250px;
  }
}
.user-register-form li,
.user-login-form li,
.user-pass li,
.user-form li {
  margin: 0 1rem 0 3rem;
}

.field--type-link {
  border: 1px solid #333;
  padding: 5px;
}

.field--widget-image-image .message--status {
  margin-bottom: 5px;
  padding: 5px;
  background-color: #fdf8ed;
  border-color: #e09600;
  color: #734c00;
}

.field-group-details,
details {
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #4c4c4c;
}
.field-group-details summary,
details summary {
  margin-bottom: 5px;
  padding: 5px;
  background-color: #e5e5e5;
}

#edit-group-general-info > .details-description,
#edit-group-contact-info > .details-description,
#edit-group-mentor-profile > .details-description {
  margin-bottom: 5px;
  padding: 5px;
  background-color: #e5e5e5;
}

.user-register-form {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .user-register-form {
    max-width: 1250px;
  }
} /* stylelint-disable property-no-vendor-prefix */
* {
  box-sizing: inherit;
}
*::before, *::after {
  box-sizing: inherit;
}

html {
  font-family: "OpenSans", "Verdana", "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace;
  font-size: 1rem;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace;
  font-size: 1rem;
}

small {
  font-size: 0.9rem;
}

sub,
sup {
  font-size: 0.6rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

template {
  display: none;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

a {
  color: #105610;
}
a:hover {
  color: #58b764;
}

/**
 * LAYOUT.
 */
.layout--standard {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .layout--standard {
    max-width: 1250px;
  }
}

.layout--extra-wide {
  margin: 0 auto;
  max-width: 1920px;
  width: 97%;
}

.layout--max-width {
  margin: 0 auto;
  max-width: 1925px;
  width: 100%;
}

/*
  Make things centered and narrower on wide screens.
 */
.layout--twocol-section--67-33 {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .layout--twocol-section--67-33 {
    max-width: 1250px;
  }
}

.contact-form,
.profile-form,
.juicebox-container,
.media-form,
.webform-submission-payment-notification-form {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .contact-form,
.profile-form,
.juicebox-container,
.media-form,
.webform-submission-payment-notification-form {
    max-width: 1250px;
  }
}

.book-page,
.page--leadership,
.view--layout-content {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
  font-size: 1.2rem;
}
@media screen and (min-width: 1540px) {
  .book-page,
.page--leadership,
.view--layout-content {
    max-width: 1250px;
  }
}
.book-page li,
.page--leadership li,
.view--layout-content li {
  margin: 0 1rem 0 3rem;
}

.view--layout-extra-wide {
  margin: 0 auto;
  max-width: 1920px;
  width: 97%;
}

section {
  margin-top: 10px;
  margin-bottom: 10px;
}
section.header-nav-container {
  margin-top: 0;
}

.node-form {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .node-form {
    max-width: 1250px;
  }
}
.node-form h4 {
  font-size: 1rem;
}

.node-flexible-page-edit-form {
  margin: 0 auto;
  max-width: 1920px;
  width: 97%;
}

/*
 * Tables.
 */
table {
  border: 2px solid #4c4c4c;
  border-collapse: collapse;
}

thead {
  background-color: #ccc;
  border-bottom: 1px solid #4c4c4c;
  line-height: 1.3;
}

th {
  padding: 10px;
  border-right: 1px solid #4c4c4c;
}

td {
  border-collapse: collapse;
  border-right: 1px solid #4c4c4c;
  border-bottom: 1px solid #4c4c4c;
  padding: 10px;
}

/* @todo Work this into the theme properly. */
.view--members table {
  font-size: 0.9rem;
}

/*
 * Books.
 */
.book-page__wrapper {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1540px) {
  .book-page__wrapper {
    max-width: 1250px;
  }
}
@media screen and (min-width: 768px) {
  .book-page__wrapper {
    flex-direction: row;
  }
}

.book-page {
  font-size: 1.2rem;
  flex: 4;
}
.book-page li {
  margin: 0.5rem 1rem 0 3rem;
}

.book-export {
  font-size: 0.9rem;
}
.book-export h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
.book-export h2 {
  font-size: 1.3rem;
  font-weight: bold;
}
.book-export h3 {
  font-size: 1.1rem;
  font-weight: bold;
}
.book-export hr {
  margin-top: 50px;
  margin-bottom: 50px;
}

.book-page--print {
  margin: 100px 10px;
}

.section-heading {
  font-weight: bold;
  margin-bottom: 2px;
}

/*
 * Embedded / iFrame.
 */
.responsive-iframe-container-4x3 {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%;
}
.responsive-iframe-container-4x3 .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/**
 * Off canvas dialog fixes.
 */
.ui-dialog.ui-dialog-off-canvas .ui-dialog-title {
  max-width: 800px;
  padding-left: 0;
}
.ui-dialog.ui-dialog-off-canvas .ui-dialog-title::before {
  background: none;
}

/*
 * Misc.
 */
.gallery-wrapper {
  margin: 50px 0 10px;
}

.background-darkgreen {
  background-color: #105610;
}

.color-white {
  color: #fff;
}

.layout--twocol-section {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .layout--twocol-section {
    max-width: 1250px;
  }
}

.paragraph--type--media,
.paragraph--type--webform {
  padding: 25px;
}