/* Body */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Content */
#content li {
  margin-top: 10px;
  line-height: 22px;
}

#content table tbody .hide {
  height: 50px;
}

#content > p {
  line-height: 22px;
}

/* To Top Button */
p#goto_start {
  height: 90px;
  border: none;
  margin-bottom: 0;
  margin-right: 30px;
}

p#goto_start a {
  all: unset;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: var(--brand-primary);
  font-size: 0;
  border-radius: 100%;
  cursor: pointer;
  transition: background-color .2s;
}

p#goto_start a:hover {
  background-color: var(--blue);
}

p#goto_start a::after {
  content: url("/assets/icon-pack/angle-up-4af9902e.svg");
  position: absolute;
  bottom: 4px;
  right: 11px;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
  color: var(--brand-primary);
}

body.logged-out h2.masthead {
  font-size: 20px;
  color: var(--brand-primary);
}

body.logged-out h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  color: var(--brand-primary);
}

body.logged-out p {
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
}

h2.masthead {
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--brand-primary);
  border: none;
}

h3.sectionheader {
  font-weight: normal;
  padding: 7px 0;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--brand-secondary);
  text-transform: uppercase;
}

/* Modal */
div#RB_window {
  background: none;
  border-radius: 10px;
  box-shadow: 0px 6px 9px -5px rgba(0, 0, 0, .25);
  background-color: var(--white);
  padding: 30px;
}

div#RB_window .redbox_content p {
  font-size: 14px;
}

div#RB_window .redbox_content .floatbox .title h2 {
  text-transform: uppercase;
  color: var(--brand-primary);
}

div#RB_window .redbox_content .floatbox .close a {
  font-size: 0;
}

div#RB_window .redbox_content .floatbox .close a::before {
  content: url("/assets/icon-pack/close-775ca2c6.svg");
  display: inline-block;
  width: 25px;
  height: 25px;
}

div#RB_window .redbox_content #form form fieldset {
  background: none;
  padding: 0;
  margin: 0;
}

div#RB_window .redbox_content #form form fieldset h3 {
  font-size: 18px;
  color: var(--brand-primary);
  padding: 15px 0;
}

div#RB_window .redbox_content #form form fieldset label {
  font-weight: normal;
}

div#RB_window .redbox_content #form form fieldset input,
div#RB_window .redbox_content #form form fieldset select,
div#RB_window .redbox_content #form form fieldset textarea {
  border: 2px solid var(--brand-primary);
  height: 35px;
  width: 565px;
  border-radius: 35px;
  padding: 0 15px;
  color: var(--black);
  cursor: pointer;
  transition: color .2s, background-color .2s;
  font-size: 14px;
  background: none;
  outline: none;
}
div#RB_window .redbox_content #form form fieldset textarea.autoresize {
  height: initial;
  min-height: 100px;
}

div#RB_window .redbox_content #form form fieldset select {
  width: 601px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%23003459' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3e%3c/svg%3e");
    background-repeat: no-repeat, repeat;
    background-position: right 15px top 50%, 0 0;
    background-size: .85em auto, 100%;
}

/* For IE */
div#RB_window .redbox_content #form form fieldset select::-ms-expand {
  display: none;
}

div#RB_window .redbox_content #form form fieldset textarea {
  height: 100px;
  border-radius: 15px;
}
div#RB_window .redbox_content #form form fieldset textarea.autoresize {
  height: initial;
  min-height: 100px;
}


div#RB_window .redbox_content #form form fieldset input:focus,
div#RB_window .redbox_content #form form fieldset select:focus,
div#RB_window .redbox_content #form form fieldset textarea:focus {
  border: 2px solid var(--blue);
}

div#RB_window .redbox_content #form form #div_around_submit {
  margin-top: 30px;
}

div#RB_window .redbox_content #form form #div_around_submit p {
  margin: 0;
}

div#RB_window .redbox_content #form form #div_around_submit button[type="submit"] {
  all: unset;
  border: 2px solid var(--brand-primary);
  height: 35px;
  border-radius: 35px;
  padding: 0 15px;
  margin-right: 20px;
  color: var(--brand-primary);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  transition: color .2s, background-color .2s;
  font-size: 14px;
}

div#RB_window .redbox_content #form form #div_around_submit button[type="submit"]:hover {
  background-color: var(--brand-primary);
  color: var(--white);
}

/* Modal Password Reset */

div#forgot_password_content form fieldset {
  padding: 0;
  background: none;
  margin-top: 20px;
}

div#forgot_password_content form fieldset p input {
  border: 2px solid var(--brand-primary);
  height: 35px;
  width: 565px;
  border-radius: 35px;
  padding: 0 15px;
  color: var(--black);
  cursor: pointer;
  transition: color .2s, background-color .2s;
  font-size: 14px;
  background: none;
  outline: none;
  margin-top: 10px;
}

div#forgot_password_content form fieldset p input:focus {
  border: 2px solid var(--blue);
}

div#forgot_password_content form fieldset p button[type="submit"] {
  all: unset;
  border: 2px solid var(--brand-primary);
  height: 35px;
  border-radius: 35px;
  padding: 0 15px;
  margin-right: 20px;
  color: var(--brand-primary);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  transition: color .2s, background-color .2s;
  font-size: 14px;
}

div#forgot_password_content form fieldset p button[type="submit"]:hover {
  background-color: var(--brand-primary);
  color: var(--white);
}

div#forgot_password_content form fieldset label {
  color: var(--brand-primary);
}

/* Contact Form */
form.contact-form fieldset {
  background: none;
  padding-left: 0;
  padding-right: 0;
}

form.contact-form fieldset label {
  font-weight: normal;
}

div#a5 form.contact-form fieldset > fieldset {
  width: 45%;
}

form.contact-form fieldset input:not(.checkbox),
form.contact-form fieldset textarea {
  border: 2px solid var(--brand-primary);
  height: 35px;
  width: 100%;
  border-radius: 35px;
  padding: 0 15px;
  color: var(--black);
  cursor: pointer;
  transition: color .2s, background-color .2s;
  font-size: 14px;
  background: none;
  outline: none;
  margin-top: 10px;
}
form.contact-form fieldset textarea.autoresize {
  height: initial;
  min-height: 100px;
}

form.contact-form fieldset input.checkbox {
  height: 19px;
}

form.contact-form fieldset textarea {
  height: auto;
  border-radius: 15px;
}

form.contact-form fieldset input:focus,
form.contact-form fieldset textarea:focus {
  border: 2px solid var(--blue);
}

form.contact-form fieldset p button[type="submit"] {
  all: unset;
  border: 2px solid var(--brand-primary);
  height: 35px;
  border-radius: 35px;
  padding: 0 15px;
  margin-right: 20px;
  margin-top: 18px;
  color: var(--brand-primary);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  transition: color .2s, background-color .2s;
  font-size: 14px;
}

form.contact-form fieldset p button[type="submit"]:hover {
  background-color: var(--brand-primary);
  color: var(--white);
}

