@import url("../../global/CSS/global.css");
@import url("../../global/CSS/flexboxgrid.css");
/* ====================== Colors ====================== */
.purple1 {
  color: #a087bd;
}

.purple2 {
  color: #8a66ac;
}

/* ====================== Typography ====================== */
h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
}

h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1.9em;
  margin-bottom: 30px;
  color: #6b6b6b;
}

a {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: #72568E;
}
a:hover {
  color: #72568E;
  text-decoration: underline;
}

ol, ul {
  font-family: "Open Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1.9em;
  color: #6b6b6b;
}

/* ====================== Buttons ====================== */
.purple-btn {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #72568E;
  border: 2px solid transparent;
  border-radius: 50px;
  color: #fff;
  transition: 0.2s ease;
  font-size: 1.3rem;
}
.purple-btn:hover {
  background: #ffffff;
  border: 2px solid #72568E;
  color: #72568E;
  text-decoration: none;
  transition: 0.2s ease;
}

.blue-btn {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #DBF9FA;
  border: 2px solid #DBF9FA;
  border-radius: 50px;
  color: #72568E;
  transition: 0.2s ease;
  font-size: 1.3rem;
  width: fit-content;
}
.blue-btn:hover {
  background: #ffffff;
  border: 2px solid #72568E;
  text-decoration: none;
  transition: 0.2s ease;
}

.teal-btn {
  background: white;
  border-radius: 50px;
  border: 2px solid #3c8082;
  color: #3c8082;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 10px 30px;
  text-transform: uppercase;
  transition: 0.2s ease;
  width: fit-content;
}
.teal-btn:hover {
  background: #3c8082;
  border: 2px solid #3c8082;
  color: white;
  text-decoration: none;
  transition: 0.2s ease;
}

.teal-btn-full {
  background: #3c8082;
  border-radius: 50px;
  color: white;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 10px 30px;
  text-transform: uppercase;
  transition: 0.2s ease;
  width: fit-content;
}
.teal-btn-full:hover {
  background: white;
  color: #3c8082;
  text-decoration: none;
}

.white-btn {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #fff;
  border-radius: 50px;
  color: #72568E;
  transition: 0.2s ease;
  font-size: 1.3rem;
  width: fit-content;
}
.white-btn:hover {
  background: #72568E;
  text-decoration: none;
  transition: 0.2s ease;
  color: white;
}
.white-btn:hover a {
  color: white;
}

/* ====================== Base Styles ====================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body.locked {
  overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

/* Change color & bg color of selected live text */
*::selection {
  background-color: #cdb6ed;
  color: white;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* if using a sticky nav, use this to add space above anchor links to go below navbar */
*:target:before {
  display: block;
  content: "";
  height: 90px;
  margin: -90px 0 0;
}

*:target:before:focus {
  outline: none !important;
}

*:target:focus {
  outline: none;
}

a, a:visited, a:hover, a:focus, input, input:hover {
  -webkit-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
}

/* Flex Nav */
nav.flex-nav {
  display: block;
  background: #ffffff;
  color: #72568E;
}
@media (max-width: 768px) {
  nav.flex-nav {
    display: none;
  }
}
nav.flex-nav ul#mainnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.flex-nav ul#mainnav > li {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  nav.flex-nav ul#mainnav > li {
    margin-right: 0;
  }
}
nav.flex-nav ul#mainnav > li a {
  padding: 1.5em 0.5em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
nav.flex-nav ul#mainnav > li a:hover {
  background-color: #f5f3f7;
  color: #72568E;
}
nav.flex-nav ul#mainnav > li > a.current {
  background-color: #f5f3f7;
  color: #72568E;
}
nav.flex-nav ul#mainnav > li ul {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2000;
  /* 2nd level li */
}
nav.flex-nav ul#mainnav > li ul > li {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 999;
  /* 3rd level ul */
}
nav.flex-nav ul#mainnav > li ul > li a {
  background: white;
  display: block;
  padding: 10px 12px;
  width: 100%;
}
nav.flex-nav ul#mainnav > li ul > li ul {
  left: 100%;
  top: 0;
  /* 3rd level li */
}
nav.flex-nav ul#mainnav a {
  text-decoration: none;
}
nav.flex-nav ul#mainnav > li:hover > ul,
nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

/* ====================== Side Drawer Styling ====================== */
#siteWrapper {
  position: relative;
  background-color: #fff;
  min-height: 100vh;
}

.body-overlay {
  display: block;
  cursor: col-resize;
  /*background: linear-gradient(30deg, #2e3192, #1bffff);*/
  background: #888;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  visibility: hidden;
  -webkit-transition: opacity 0.55s ease;
  -o-transition: opacity 0.55s ease;
  -moz-transition: opacity 0.55s ease;
  -ms-transition: opacity 0.55s ease;
  transition: opacity 0.55s ease;
  -o-transition-delay: 0.44s !important;
  -moz-transition-delay: 0.44s !important;
  -webkit-transition-delay: 0.44s !important;
  transition-delay: 0.44s !important;
}
.body-overlay.active {
  opacity: 0.6;
  visibility: visible;
  height: 100%;
  width: 100%;
  z-index: 9;
  -webkit-transition: opacity 0.55s ease;
  -o-transition: opacity 0.55s ease;
  -moz-transition: opacity 0.55s ease;
  -ms-transition: opacity 0.55s ease;
  transition: opacity 0.55s ease;
  -o-transition-delay: 0.2s !important;
  -moz-transition-delay: 0.2s !important;
  -webkit-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

#siteWrapper {
  position: relative;
  background-color: #fff;
}

#sidecar {
  position: fixed;
  height: 100%;
  width: 260px;
  background-color: #72568E;
  top: 0;
  right: -260px;
  text-align: left;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -o-transition: right 0.44s ease;
  -moz-transition: right 0.44s ease;
  -webkit-transition: right 0.44s ease;
  transition: right 0.44s ease;
  z-index: 99999 !important;
}
#sidecar ul#mainnav {
  right: 0px;
}

/* Open & Close Button Placement and Speed */
button#drawer-toggle {
  display: none;
  border: none;
  position: fixed;
  z-index: 999;
  top: 30px;
  right: 15px;
  transition: 0.3s ease;
  background: #3c8082;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  padding: 0;
}
@media (max-width: 768px) {
  button#drawer-toggle {
    display: inline;
  }
}
button#drawer-toggle span {
  background: #fff;
  width: 25px;
  height: 2px;
  position: relative;
  display: block;
  transition: 0.3s ease;
  right: -10px;
}
button#drawer-toggle span:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  height: 2px;
  width: 25px;
  background: #fff;
  transition: 0.3s ease;
}
button#drawer-toggle span:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  height: 2px;
  width: 15px;
  background: #fff;
  transition: 0.3s ease;
}
button#drawer-toggle:hover span {
  background: white;
}
button#drawer-toggle:hover span:before {
  background: white;
}
button#drawer-toggle:hover span:after {
  background: white;
}
button:focus {
  outline: none !important;
}
button.close-drawer {
  right: -260px;
  position: absolute;
  -o-transition: right 0.44s ease;
  -moz-transition: right 0.44s ease;
  -webkit-transition: right 0.44s ease;
  transition: right 0.44s ease;
  background: url(/SiteFiles/2497/CSS/images/mobile-close.svg?new);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  padding-right: 30px;
  border: none;
  background-size: 40px;
  height: 40px;
  outline: none !important;
  top: 10px;
}
button.close-drawer span {
  color: transparent;
}

/* Drawer Placement & Speed */
.slide-right,
.push-right,
.over-right {
  right: 0;
  left: inherit;
}

.slide-right {
  -webkit-transition: -webkit-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -moz-transition: -moz-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -ms-transition: -ms-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -o-transition: -o-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  transition: transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
}

/* Slide Right */
#sidecar.slide-right {
  opacity: 1;
  -o-transition: right 0.44s ease;
  -moz-transition: right 0.44s ease;
  -webkit-transition: right 0.44s ease;
  transition: right 0.44s ease;
}
#sidecar.slide-right.active {
  opacity: 1;
  right: 0px;
  -o-transition: all 0.44s ease;
  -moz-transition: all 0.44s ease;
  -webkit-transition: all 0.44s ease;
  transition: all 0.44s ease;
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
  /*ul#mainnav{
      right:0px;
      -o-transition: right .44s ease;
    -moz-transition: right .44s ease;
    -webkit-transition: right .44s ease;
    transition: right .44s ease;
    -o-transition-delay: .2s !important;
    -moz-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay:.2s !important;
    }*/
}
#sidecar.slide-right.active button.close-drawer.pull-right {
  right: 5px;
  -o-transition: right 0.44s ease;
  -moz-transition: right 0.44s ease;
  -webkit-transition: right 0.44s ease;
  transition: right 0.44s ease;
  -o-transition-delay: 0.6s !important;
  -moz-transition-delay: 0.6s !important;
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}
#sidecar.slide-right.active ul#mainnav li a {
  margin-left: 0px;
  opacity: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 600;
}

/* ====================== Side Drawer Styling END ====================== */
/* Expand Collapse Styling */
@media screen and (max-width: 768px) {
  #mn-covid-19-and-domestic-violence {
    margin-top: 30%;
  }
}

nav#sidecar ul#mainnav {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  margin: 90px 0 0 0;
  background: transparent;
  -webkit-padding-start: 0px;
}
nav#sidecar ul#mainnav li {
  margin-bottom: 20px !important;
  position: relative;
  margin: 0;
  padding: 0;
  float: none;
  display: inline-block;
  width: 100%;
  height: auto;
  background: transparent;
  text-align: left;
}
nav#sidecar ul#mainnav li:first-child a {
  -o-transition-delay: 0.1s !important;
  -moz-transition-delay: 0.1s !important;
  -webkit-transition-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}
nav#sidecar ul#mainnav li:nth-child(2) a {
  -o-transition-delay: 0.15s !important;
  -moz-transition-delay: 0.15s !important;
  -webkit-transition-delay: 0.15s !important;
  transition-delay: 0.15s !important;
}
nav#sidecar ul#mainnav li:nth-child(3) a {
  -o-transition-delay: 0.2s !important;
  -moz-transition-delay: 0.2s !important;
  -webkit-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}
nav#sidecar ul#mainnav li:nth-child(4) a {
  -o-transition-delay: 0.3s !important;
  -moz-transition-delay: 0.3s !important;
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
nav#sidecar ul#mainnav li:nth-child(5) a {
  -o-transition-delay: 0.35s !important;
  -moz-transition-delay: 0.35s !important;
  -webkit-transition-delay: 0.35s !important;
  transition-delay: 0.35s !important;
}
nav#sidecar ul#mainnav li:nth-child(6) a {
  -o-transition-delay: 0.4s !important;
  -moz-transition-delay: 0.4s !important;
  -webkit-transition-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}
nav#sidecar ul#mainnav li:nth-child(7) a {
  -o-transition-delay: 0.5s !important;
  -moz-transition-delay: 0.5s !important;
  -webkit-transition-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}
nav#sidecar ul#mainnav li:hover ul {
  display: block;
}
nav#sidecar ul#mainnav li ul {
  padding: 0 0 0 0px;
  margin: 0;
  display: block;
  position: relative;
  max-height: 0px;
  overflow: hidden;
  float: none;
  transition: max-height 0.25s ease-in;
  background-color: #b69bda;
}
nav#sidecar ul#mainnav li ul li {
  margin-bottom: 0 !important;
}
nav#sidecar ul#mainnav li ul li a {
  padding: 10px 0px 10px 25px;
  border: none;
  text-transform: capitalize !important;
  font-weight: 100 !important;
  letter-spacing: 1px !important;
  color: #fff !important;
}
nav#sidecar ul#mainnav li ul.active {
  display: block;
  max-height: 500px;
  float: none;
  transition: max-height 0.44s ease-in;
}
nav#sidecar ul#mainnav li a {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 8px 25px;
  position: relative;
  margin-left: 50px;
  opacity: 0;
  font-size: 18px;
  -webkit-transition: all 0.44s ease;
  -moz-transition: all 0.44s ease;
  -o-transition: all 0.44s ease;
  transition: all 0.44s ease;
}
nav#sidecar ul#mainnav li a.expand {
  display: block;
  height: 38px;
  width: 38px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("/SiteFiles/2497/CSS/images/arrow-down-white.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40%;
  padding: 16px;
  cursor: pointer;
  border: none;
}
nav#sidecar ul#mainnav li a.expand.active {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  border: none;
}

.blog .blog-entry {
  border-bottom: 1px solid #cdb6ed;
  padding-bottom: 25px;
  margin-bottom: 50px;
}
.blog .blog-entry .post-date {
  color: #707070;
  font-size: 18px;
  font-weight: 100;
}
.blog .blog-entry .post-title a {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
}
.blog .blog-entry .post-image {
  display: none;
}
.blog .blog-entry .post-body {
  font-weight: 100;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: #707070;
}
.blog .blog-entry .post-body a.post-summary-read-more {
  display: block;
  width: 175px;
  text-align: center;
  padding: 7px 30px;
  border-radius: 50px;
  background: white;
  border: 2px solid #3c8082;
  color: #3c8082;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.3rem;
  transition: 0.3s ease;
}
.blog .blog-entry .post-body a.post-summary-read-more:hover {
  background: #3c8082;
  border: 2px solid #3c8082;
  color: white;
}
.blog .blog-entry .post-profileinfo {
  display: none;
}
.blog .blog-entry .post-tags {
  display: none;
}

/* SEARCH PANEL
============================*/
.form-group {
  margin-bottom: 0px;
}

#search {
  position: fixed;
  -webkit-transform: translate3d(0px, -150px, 0px);
  transform: translate3d(0px, -150px, 0px);
  top: 0;
  left: 0px;
  width: 100%;
  height: 78px;
  background-color: #3c8082;
  z-index: 999999;
}
#search input:-webkit-autofill,
#search textarea:-webkit-autofill,
#search select:-webkit-autofill {
  background-color: transparent;
  background-image: none;
  color: black;
}
#search ::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}
#search :-moz-placeholder {
  /* Firefox 18- */
  color: #999;
  font-weight: 400;
}
#search ::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
  font-weight: 400;
}
#search :-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
#search .flexbox-margin {
  margin-top: 115px;
}
#search .flexbox-margin h1,
#search .flexbox-margin h2,
#search .flexbox-margin h3,
#search .flexbox-margin p {
  color: white;
}
#search .flexbox-margin h1 {
  font-size: 1em;
  padding: 10px 0;
  font-family: "Playfair Display", serif;
}
#search .flexbox-margin h2 {
  font-size: 0.85em;
  font-family: "Playfair Display", serif;
}
#search .flexbox-margin p {
  font-size: 0.75em;
  font-family: "Playfair Display", serif;
  line-height: 130%;
}
#search .flexbox-margin a {
  color: white;
}
#search .flexbox-margin .fa {
  font-size: 1.2em;
  display: block;
  color: #0080c5;
}

#search span {
  position: absolute;
  top: 20% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-style: italic;
  font-size: 1em;
  z-index: -2;
}
@media (max-width: 600px) {
  #search span {
    font-size: 0.85em;
  }
}

#search.open-search {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  z-index: 9999999;
  opacity: 1;
}

.searchPanel {
  padding-top: 13px;
}

input#searchButton {
  position: absolute;
  right: 20.5%;
  background: transparent;
  border: 0;
  margin-top: 47px;
  height: 40px;
  width: 80px;
  display: none;
}

.searchPanel input#searchField {
  position: absolute;
  top: -20px;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 65px;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: normal;
  text-align: center;
  margin: 1.4rem 0 0.7rem 0;
  font-weight: 400;
  text-align: center;
  padding: 0;
  padding: 10px 0px;
  border: 0;
  color: white;
  font-size: 2.5rem;
  border-bottom: 1px solid transparent;
}

.searchPanel input#searchField:focus {
  background: transparent;
  color: white;
  outline: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.searchPanel input:hover {
  background: transparent;
  color: white;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

#search .btn-default {
  color: white;
  background: #0080c5 url(images/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5%;
  text-indent: 9999px;
  border-color: #ccc;
  cursor: pointer;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

#search .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  height: 40px;
  width: 10%;
  float: right;
  text-align: center;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#search .btn:hover,
#search .btn:focus {
  border: 0px solid #952818;
  color: white;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}

#search .close-search {
  position: absolute;
  z-index: 9999;
  right: 58px;
  height: 30px;
  width: 30px;
  top: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0) url(images/close-white.svg) no-repeat center center;
  background-size: 60%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  cursor: pointer;
}

#search .close-search:hover {
  background-color: #7565a0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

#search .close-search {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#search .searchPanel {
  position: relative;
  top: 35%;
  width: 100%;
  display: table;
  margin: auto;
  max-width: 1160px;
  margin-top: 10px;
}

#search .container {
  position: relative;
}

#search .form-control {
  display: inline-block;
  text-align: left;
  width: 90%;
  height: 40px;
  padding: 6px 12px;
  font-size: 1em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.428571429;
  color: #999;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: none;
  border: 1px solid white;
  border-radius: 0px;
  float: left;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

li#mn-search .icon-search {
  border: 2px solid #0080c5;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  vertical-align: middle;
  margin-top: -10px;
  text-decoration: none;
  text-decoration: none;
  text-decoration: none;
}

li#mn-search .icon-search:hover {
  background: #7565a0;
  text-decoration: none;
}

li#mn-search a {
  text-decoration: none;
  border: 0 !important;
  box-shadow: none !important;
}

li#mn-search a:hover {
  border: 0 !important;
  text-decoration: none;
  box-shadow: none !important;
}

input#searchField::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}

input#searchField::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}

input#searchField:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}

input#searchField:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}

.pageSearch {
  margin-top: -200px;
}
.pageSearch h1 {
  text-align: center;
  margin-bottom: 100px;
}

.sw-site-search-label {
  color: white;
}

.event-module .public-submit-button-wrapper input {
  -webkit-appearance: none;
  background: #3c8082;
  border: none;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 30px;
  color: white;
  border-radius: 50px;
  transition: 0.3s ease;
}
.event-module .public-submit-button-wrapper input:hover {
  background: #346f71;
  color: white;
}
.event-module .cal-display-switch {
  position: absolute;
  top: 9px;
  right: 0;
}
.event-module .cal-display-switch a {
  border: 2px solid #72568E;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  color: #72568E;
  background: #fff;
  transition: 0.3s ease;
}
.event-module .cal-display-switch a:first-child {
  border-radius: 50px 0 0 50px;
  margin-right: -8px;
}
.event-module .cal-display-switch a:last-child {
  border-radius: 0 50px 50px 0;
}
.event-module .cal-display-switch a.active {
  background: #72568E;
  color: #fff;
}
.event-module .cal-display-switch a:hover {
  background: #72568E;
  color: #fff;
}
@media (max-width: 768px) {
  .event-module .cal-display-switch {
    position: relative;
    padding-bottom: 30px;
    top: 0;
  }
}
@media (max-width: 400px) {
  .event-module .cal-display-switch a {
    padding: 10px 15px;
  }
}
.event-module .calendar-controls input {
  -webkit-appearance: none !important;
  font-family: "Open Sans", sans-serif;
  border: 0;
  background: none;
  font-weight: 600;
  color: #707070;
}
.event-module .calendar-controls input#ctl00_cphPageBody_public_partctrl_cphPageBody_1_btnIndexForward {
  left: 100px;
  position: absolute;
  margin-top: -2px;
}
.event-module .calendar-controls input#ctl00_cphPageBody_public_partctrl_cphPageBody_1_btnIndexBack {
  margin-top: -2px;
}
.event-module .calendar-controls input#ctl00_cphPageBody_public_partctrl_cphPageBody_1_btnToToday {
  position: absolute;
  left: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  margin-top: 1px;
}
.event-module .calendar-controls .current-month {
  position: absolute;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: #707070;
  left: 135px;
  font-size: 15px;
}
.event-module .calendar-controls .monthyear-jumper {
  position: absolute;
  right: 9px;
}
.event-module .calendar-controls .monthyear-jumper select {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  background: #eee;
  border: none;
}
.event-module .calendar-controls .monthyear-jumper input {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .event-module .calendar-controls .monthyear-jumper {
    top: 160px;
    left: 15px;
    right: 0;
  }
}
@media (max-width: 400px) {
  .event-module .calendar-controls .monthyear-jumper {
    display: none;
  }
}
@media (max-width: 768px) {
  .event-module .calendar-panel {
    margin-top: 55px;
  }
}
@media (max-width: 400px) {
  .event-module .calendar-panel {
    margin-top: 0;
  }
}
.event-module tbody {
  box-shadow: 0px 21px 173px -35px #ccc;
}
.event-module tbody tr:first-child th {
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #72568E;
  color: #fff;
}
.event-module tbody tr td {
  background: white;
  border: solid 1px #f7f7f7;
  padding-top: 7px;
  padding-right: 7px;
  color: #707070;
}
.event-module tbody tr td.weekend {
  background: #f7f7f7;
}
.event-module tbody tr td.today {
  color: #fff;
  background: #72568E;
}
.event-module tbody tr td.today .all-day-event {
  background: #72568E;
  transition: 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 10px 0;
  margin: 10px 0 0 0;
  width: 100%;
}
.event-module tbody tr td.today .all-day-event a {
  color: #fff;
}
.event-module tbody tr td.today .all-day-event:hover {
  background: #71568d;
}
.event-module tbody tr td.today .partial-day-event:hover a {
  color: #fff;
}
.event-module tbody tr td.today .partial-day-event:hover span {
  color: #fff;
}
.event-module tbody tr td .partial-day-event {
  margin-left: 8px;
}
.event-module tbody tr td .partial-day-event a {
  color: #72568E;
  font-size: 14px;
  transition: 0.3s ease;
}
.event-module tbody tr td .partial-day-event img {
  max-width: 100%;
}
.event-module tbody tr td .partial-day-event span {
  color: #72568E;
  transition: 0.3s ease;
}
.event-module tbody tr td .partial-day-event:hover {
  text-decoration: none;
}
.event-module tbody tr td .partial-day-event:hover a {
  color: #72568E;
  font-size: 14px;
}
.event-module tbody tr td .partial-day-event:hover span {
  color: #72568E;
}
.event-module tbody tr td .all-day-event {
  margin-right: -7px;
  background: #72568E;
  transition: 0.3s ease;
}
.event-module tbody tr td .all-day-event a {
  margin-left: 7px;
}
.event-module tbody tr td .all-day-event:hover {
  background: #72568E;
  color: white;
}
.event-module .list-panel .sw-events-detail-timeframes li a {
  background-color: white;
  border: 2px solid #72568E;
  color: #72568E;
  padding: 10px 30px;
  margin-bottom: 10px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
}
.event-module .list-panel .sw-events-detail-categories li a {
  display: none;
}
.event-module .list-panel .sw-events-detail-list li {
  width: 48%;
  float: left;
  text-align: center;
  border: 2px solid #cdb6ed;
  margin-bottom: 30px;
  margin-right: 2%;
  padding: 45px;
}
.event-module .list-panel .sw-events-detail-list li h2 {
  margin-bottom: 10px;
  margin-top: 0;
}
.event-module .list-panel .sw-events-detail-list li h2 a {
  font-family: "Playfair Display", serif;
  color: #72568E;
}
.event-module .list-panel .sw-events-detail-list li .sw-events-detail-list-event-details {
  color: #707070;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
.event-module .list-panel .sw-events-detail-list li .sw-events-detail-list-event-description {
  display: none;
}
.event-module .list-panel .sw-events-detail-list li .sw-events-detail-more-link {
  padding: 10px 30px;
  border-radius: 50px;
  background: #72568E;
  border: 2px solid white;
  color: #fff;
  transition: 0.3s ease;
}
.event-module .list-panel .sw-events-detail-list li .sw-events-detail-more-link:hover {
  background: white;
  border: 2px solid #72568E;
  color: #72568E;
}
@media (max-width: 768px) {
  .event-module .list-panel .sw-events-detail-list li {
    width: 100%;
  }
}

/*Public Event Form*/
#public-submit-modal-285972 {
  border: none;
  border-radius: 0;
  padding-left: 3% !important;
  padding-right: 3% !important;
}
#public-submit-modal-285972 h3 {
  font-family: "Playfair Display", serif;
  color: #72568E;
  font-size: 4rem;
}
#public-submit-modal-285972 h4 {
  color: #cdb6ed;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#public-submit-modal-285972 ul.sw-form-elements li label {
  font-weight: 100 !important;
  font-family: "Open Sans", sans-serif;
  content: #707070;
}
#public-submit-modal-285972 ul.sw-form-elements li ul.sw-form-options li {
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 1.3rem;
  color: #707070;
}
#public-submit-modal-285972 ul.sw-form-elements li ul.sw-form-options li input[type=checkbox] {
  margin-right: 5px;
}
#public-submit-modal-285972 ul.sw-form-elements strong {
  font-weight: 100;
  color: #707070;
  font-family: "Open Sans", sans-serif;
}
#public-submit-modal-285972 ul.sw-form-elements .cke_chrome {
  margin-top: 10px;
}
#public-submit-modal-285972 ul.sw-form-elements li.sw-form-lin-two-column {
  margin-top: 15px;
}
#public-submit-modal-285972 ul.sw-form-elements li.public-bot-stopper {
  font-family: "Open Sans", sans-serif;
  content: #707070;
}
#public-submit-modal-285972 input[type=button] {
  -webkit-appearance: none;
  border: none;
  padding: 10px 30px;
  margin-bottom: 3%;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  font-family: "Open Sans", sans-serif;
  border-radius: 50px;
  background: #3c8082;
  transition: 0.3s ease;
}
#public-submit-modal-285972 input[type=button]:hover {
  background: #72568E;
}

.sw-events-detail-list-event-subject img {
  margin: 0 0 20px;
  max-width: 100%;
}

.event-time {
  font-size: 14px;
}

.events .CalendarListPager__item.CalendarListPager__arrow {
  color: #333333;
}
.events .CalendarListEvent__title {
  color: #333333;
  font-size: 2.3rem;
  font-weight: 600;
}
.events .CalendarListEvent__header {
  align-items: flex-start;
  background: transparent;
}
.events .CalendarListEvent__location {
  font-weight: 800;
}
.events .CalendarListEvent__date_time {
  font-size: 15px;
  font-weight: 800;
}
.events .CalendarListEvent__date_time,
.events .CalendarListEvent__location,
.events .CalendarListEvent__description {
  font-family: "Open Sans", sans-serif;
}
.events .CalendarMenuCenter {
  border: 2px solid #72568E;
  border-radius: 50px;
}
.events .CalendarMenuCenter a {
  border-radius: 50px;
  color: #72568E;
  padding: 10px;
}
.events .CalendarMenuCenter a:hover {
  color: #72568E;
}
.events .CalendarMenuCenter a:first-of-type {
  border-radius: 50px 0 0 50px;
}
.events .CalendarMenuCenter a:last-of-type {
  border-radius: 0 50px 50px 0;
}
.events .CalendarGridDay__header {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
.events .CalendarGridDay a:hover, .events .CalendarGridDay span:hover {
  color: #333333;
}
.events .CalendarMenu {
  justify-content: center;
  margin-bottom: 70px;
}
.events .CalendarMenu .CalendarMenuCenter {
  display: none;
}
.events .CalendarMenu .CalendarMenu__btn {
  background-color: #72568E !important;
  color: #FFF;
  border-color: #72568E !important;
}
.events .CalendarMenu a.CalendarMenu__currentItem {
  background: #72568E;
  border: 1px solid #72568E;
  border-bottom: none;
  color: white;
}
.events .CalendarMonthNavigation__action {
  color: #72568E;
}
.events .CalendarMonth__header_label {
  background: #72568E;
  padding: 20px;
}
.events .CalendarGridDay__header {
  background: #fbfbfb;
  color: #e4e4e4;
}
.events .CalendarGridDay--current-month > .CalendarGridDay__header {
  background: #fbfbfb;
  color: #333333;
}
.events .CalendarGridDay--current-day > .CalendarGridDay__header {
  background: #72568E;
}
.events .CalendarMonth .btn-link, .events .CalendarMonth .btn-link.active, .events .CalendarMonth .btn-link:active,
.events .CalendarMonth .btn-link[disabled], .events .CalendarMonth fieldset[disabled] .btn-link {
  color: #333333;
  box-shadow: none;
  background-color: transparent;
  font-size: 11px;
  text-transform: capitalize;
}
.events .CalendarMonth .btn-link:hover, .events .CalendarMonth .btn-link.active:hover, .events .CalendarMonth .btn-link:active:hover,
.events .CalendarMonth .btn-link[disabled]:hover, .events .CalendarMonth fieldset[disabled] .btn-link:hover {
  color: #333333;
}
.events .CalendarListPager__item {
  color: #333333;
}
.events .CalendarGridDayEvent__title, .events .CalendarGridDayEvent__time {
  color: #333333;
}
.events .CalendarGridDayEvent__title:hover, .events .CalendarGridDayEvent__time:hover {
  color: #333333;
}
.events .CalendarListPager__item.CalendarListPager__current {
  background: #333333;
  border-radius: 50px;
  height: 23px;
}
.events .CalendarListEvent {
  border-bottom: 2px solid #ececec;
  margin: 0 0 40px;
  padding: 0 0 40px;
}
.events .CalendarListEvent:nth-last-child(2) {
  border-bottom: 0;
}
.events .CalendarListEvent__header_date {
  background-color: #3c8082;
}
.events .CalendarListEvent__description {
  color: #333333;
}
.events .CalendarListEvent__description a {
  border-radius: 50px;
  border: 2px solid #3c8082;
  color: #3c8082;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  margin: 10px 0 0 0;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
  width: fit-content;
}
.events .CalendarListEvent__description a:hover {
  background: #3c8082;
  color: white;
  text-decoration: none;
}
.events .CalendarMonthFilter > select, .events .CalendarMonthFilter > button,
.events .CalendarMonthFilter > .btn, .events .CalendarMonthFilter > .btn:hover {
  background-color: #3c8082;
  border: 1px solid #3c8082;
}
.events .CalendarMonthFilter > input.CalendarMonthFilter__search,
.events .CalendarMonthFilter > .CalendarMonthFilter__button {
  border-radius: 50px;
  border: 1px solid #3c8082;
}

.swCalEvents {
  margin: 50px 0 0 0;
}

.formmodule .formmodule-form tr td label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem !important;
  margin-left: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600 !important;
  color: #3c8082;
}
.formmodule .formmodule-form tr td .formmodule-required {
  color: #3c8082;
}
.formmodule .formmodule-form tr td input {
  border-radius: 0 !important;
}
.formmodule .form-bot-stopper-info {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem !important;
}
.formmodule .form-bot-stopper-question {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem !important;
}
.formmodule .form-bot-stopper-question input {
  border-radius: 0 !important;
}
.formmodule .formmodule-submit input {
  -webkit-appearance: none;
  border: none;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  color: #fff;
  border-radius: 50px;
  background: #72568E;
  transform: 0.3s ease;
}
.formmodule .formmodule-submit input:hover {
  background: #cdb6ed;
}

div.ctct-form-embed div.ctct-form-defaults h2.ctct-form-header, div.ctct-form-embed div.ctct-form-defaults p, div.ctct-form-embed div.ctct-form-defaults label {
  color: #72568E !important;
}
div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field {
  margin-bottom: 24px;
}
div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field label {
  display: block;
  margin-bottom: 12px;
  line-height: 1;
  font: 16px Helvetica Neue, Arial, sans-serif;
}
div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field input, div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #b0b6bb;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family: Helvetica Neue, Arial, sans-serif;
  color: #394856;
  font-size: 16px;
  line-height: 1.5;
}
div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field select {
  width: 100%;
  height: 46px;
  border: 1px solid #b0b6bb;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field input[type=text]:focus,
div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field input[type=email]:focus {
  outline: 1px solid #5dacd6;
}
div.ctct-form-embed div.ctct-form-defaults fieldset.ctct-form-lists {
  margin-bottom: 20px;
}
div.ctct-form-embed div.ctct-form-defaults fieldset.ctct-form-lists legend {
  color: #72568E;
  margin-bottom: 12px;
  line-height: 1;
  font: 16px Helvetica Neue, Arial, sans-serif;
  border-bottom: none;
}
div.ctct-form-embed div.ctct-form-defaults fieldset.ctct-form-lists .ctct-form-listitem label {
  font: 16px Helvetica Neue, Arial, sans-serif;
}
div.ctct-form-embed div.ctct-form-defaults button.ctct-form-button {
  border: none;
  color: #fff;
  background-color: #0078c1;
  width: 100%;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  font-size: 16px;
  padding: 14px 20px;
  line-height: 1;
  background-image: none;
  border: none;
  box-shadow: none;
  border-radius: 2px;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  margin-bottom: 20px;
}
div.ctct-form-embed div.ctct-form-defaults button.ctct-form-button:hover {
  color: #fff;
  background-color: #3e9fda;
}

iframe#etapIframe #pageContent .pageRegion .nonFunctionalContent img {
  display: none !important;
}
iframe#etapIframe #pageContent #gift_information_region .ecRegionHeader h1 {
  color: #72568E !important;
  font-family: "Playfair Display", serif !important;
}
iframe#etapIframe #pageContent #gift_information_region #label {
  color: #707070 !important;
  font-family: "Open Sans", sans-serif !important;
  font-weight: normal !important;
  letter-spacing: 0.5px;
}
iframe#etapIframe #pageContent #gift_information_region #rgsFrequencyField {
  color: #707070 !important;
}
iframe#etapIframe #pageContent #eah7K2VzF {
  color: #707070;
  font-family: "Open Sans", sans-serif !important;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

#breadcrumb {
  position: relative;
  list-style: none;
  padding: 0;
  top: 0;
  left: 0;
}
#breadcrumb li {
  display: inline-block;
}
#breadcrumb li:not(:last-child):after {
  color: #333333;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 1.6rem;
  margin-right: 1rem;
}
#breadcrumb li a {
  color: #333333;
  font-size: 1.6rem;
  margin-right: 1rem;
}
#breadcrumb li a:hover {
  color: #333333;
  text-decoration: underline;
}

.job-search-options {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px auto 40px;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .job-search-options {
    flex-direction: row;
    margin: 0 auto;
    max-width: 400px;
  }
}
.job-search-options select {
  background: #f9f9f9;
  border-radius: 0px;
  border: none;
  box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  height: 40px;
  padding: 10px;
  width: 100%;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .job-search-options select {
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    width: 170px;
  }
}
.job-search-options input[type=text] {
  background-color: #f9f9f9;
  background-image: none;
  border-radius: 0 !important;
  border: none;
  box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  color: #333333;
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 1.42857143;
  margin: 15px 0 5px;
  padding: 8px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .job-search-options input[type=text] {
    margin: 0 12px 0 5px;
    width: auto;
  }
}
.job-search-options label {
  display: none;
}
.job-search-options input[type=button] {
  border: none;
  border: 2px solid white;
  background: #72568E;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 5px 0 0 0;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .job-search-options input[type=button] {
    margin: 0 4px;
    width: auto;
  }
}
.job-search-options input[type=button]:hover {
  background: white;
  border: 2px solid #72568E;
  color: #72568E;
}

table.jobs-list thead tr th {
  background: #72568E;
  padding: 20px;
  border: 1px solid #fff;
}
table.jobs-list thead tr th:first-child {
  border-left: none;
}
table.jobs-list thead tr th:nth-child(3) {
  border-right: none;
}
table.jobs-list thead tr th:last-child {
  display: none;
}
table.jobs-list thead tr th a {
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 4px;
}
table.jobs-list tbody tr:nth-child(odd) {
  background: #fbfbfb;
}
table.jobs-list tbody tr td {
  padding: 20px;
  border: 1px solid #ccc;
}
table.jobs-list tbody tr td a.job-posting-title {
  color: #72568E;
}
table.jobs-list tbody tr td span.job-posting-company {
  display: block;
  font-size: 11px;
  color: #333333;
}
table.jobs-list tbody tr td span.job-posting-location, table.jobs-list tbody tr td span.job-posting-date {
  color: #333333;
  font-size: 11px;
}

.job-posting-info h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}
.job-posting-info p {
  margin-bottom: 20px;
}

/******************************
******* PopUp Container *******
******************************/
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftOver {
  0% {
    transform: translateX(-1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
body .popup-message {
  display: none;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: auto;
  box-shadow: border-box;
  border-radius: 0px 40px 40px 0px;
  bottom: 10px;
  box-shadow: -1px 6px 44px -7px rgba(0, 0, 0, 0.3);
  left: -25%;
  z-index: 20000;
  background-color: #f6ffff;
}
@media (min-width: 850px) {
  body .popup-message {
    animation-name: fadeInLeftOver;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.76, -0.95, 0.2, 1.73);
  }
}
@media (max-width: 850px) {
  body .popup-message {
    opacity: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}
body .popup-message .templatecontent {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 20px 10px 20px 20px;
}
@media (min-width: 850px) {
  body .popup-message .templatecontent {
    width: 75%;
    margin-left: 25%;
  }
}
@media (max-width: 850px) {
  body .popup-message .templatecontent {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}
body .popup-message .templatecontent p {
  color: #7665a0;
  font-size: 1.1em;
  margin-top: 14px;
  flex-basis: 75%;
  font-weight: bold;
  line-height: inherit;
  margin: 0;
}
body .popup-message .templatecontent .purple-btn {
  height: 50px;
  align-self: center;
  flex-basis: 15%;
  margin-left: 8%;
  margin-right: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 0.9em;
}
@media (max-width: 850px) {
  body .popup-message .templatecontent .purple-btn {
    margin: 25px;
  }
}
body .popup-message .templatecontent .purple-btn:hover {
  background-color: #FFF;
  color: #7665a0;
  cursor: pointer;
  animation: hvr-wobble-vertical;
  animation-delay: 0s;
  animation-duration: 0.88s;
  animation-timing-function: ease;
}

body section.popup-message.active {
  display: block;
}

/* ===============================================
Fixed Alert Styling 
================================================= */
.page-alert-message {
  text-align: center;
  border: none;
  background-color: white;
  color: #72568E;
  font-weight: 800;
  font-size: 2rem;
}
.page-alert-message a {
  text-decoration: underline;
  color: #7665a0;
}
.page-alert-message input {
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  border: none;
  color: #FFF;
  background-color: #7665a0;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
}
.page-alert-message .icon:before {
  content: "\f12a";
  display: block;
  color: #000;
  font-family: "fontawesome";
  font-size: 2.6rem;
}
.page-alert-message .icon:after {
  content: "";
  display: block;
  width: 40%;
  margin: 1rem auto;
  background-color: #7665a0;
  height: 2px;
}

/* ====================== Header ====================== */
header {
  position: relative;
  z-index: 999;
}
header .logo {
  background-color: #72568E;
  margin: 0;
  padding: 24.1px 24px 24px 30px;
  position: absolute;
  width: 125px;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  header .logo {
    background-color: transparent;
    margin: 15px;
  }
}
header .utility {
  background-color: #72568E;
  display: flex;
  height: 78px;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 7%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  header .utility {
    background-color: transparent;
    display: block;
    height: auto;
  }
}
header .utility ul {
  display: flex;
  flex-direction: row;
  line-height: inherit;
  list-style: none;
  position: relative;
  right: 0;
  top: 14px;
}
header .utility ul li {
  display: table;
  padding: 9px 60px 10px 10px;
  margin-right: 5px;
  width: 150px;
  text-align: center;
}
header .utility ul #cpn-donate,
header .utility ul #cpn-explore-our-conference {
  background: #DBF9FA;
  border-radius: 50px;
  border: 2px solid #DBF9FA;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
header .utility ul #cpn-donate a,
header .utility ul #cpn-explore-our-conference a {
  color: #fff;
}
header .utility ul #cpn-donate a .fa-heart,
header .utility ul #cpn-explore-our-conference a .fa-heart {
  display: block;
  margin-right: 5px;
}
header .utility ul #cpn-donate:hover,
header .utility ul #cpn-explore-our-conference:hover {
  transition: 0.3s ease;
  border-color: white;
  background: transparent;
}
@media (max-width: 768px) {
  header .utility ul #cpn-donate,
header .utility ul #cpn-explore-our-conference {
    display: none;
  }
}
header .utility ul #cpn-search {
  width: 80px;
}
header .utility ul #cpn-search a {
  color: #fff;
}
@media (max-width: 768px) {
  header .utility ul #cpn-search {
    display: none;
  }
}
header .utility ul #cpn-become-a-member {
  -webkit-transition: 0.3s ease;
  background: #DBF9FA;
  border-radius: 50px;
  border: 2px solid #DBF9FA;
  font-size: 11px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  top: 14px;
  transition: 0.3s ease;
}
header .utility ul #cpn-become-a-member a {
  color: #fff;
}
header .utility ul #cpn-become-a-member:hover {
  transition: 0.3s ease;
  border-color: white;
  background: transparent;
}
@media (max-width: 768px) {
  header .utility ul #cpn-become-a-member {
    display: none;
  }
}

.exit-btn {
  position: fixed;
  z-index: 9999999;
  bottom: 25px;
  right: 15px;
  background: #D53F15;
  border-radius: 50px;
  color: #fff;
  padding: 10px 30px;
  font-size: 18.66px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 0px;
  box-shadow: -1px 6px 44px -7px #bb715d;
  transition: 0.3s ease;
}
.exit-btn:hover {
  color: #fff;
  background: #d43f15;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .exit-btn {
    bottom: 85px;
  }
}

.top-utility {
  background-color: #72568E;
  height: 60px;
}
@media (max-width: 768px) {
  .top-utility {
    display: none;
  }
}
.top-utility ul {
  list-style: none;
  line-height: inherit;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.top-utility ul li {
  text-align: center;
}
.top-utility ul li:not(:last-child) {
  margin-right: 8.3%;
}
.top-utility ul #cpn-donate,
.top-utility ul #cpn-explore-our-conference {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: 0.3s ease;
}
.top-utility ul #cpn-donate a,
.top-utility ul #cpn-explore-our-conference a {
  color: #fff;
}
.top-utility ul #cpn-donate a .fa-heart,
.top-utility ul #cpn-explore-our-conference a .fa-heart {
  margin-right: 5px;
  display: block;
}
.top-utility ul #cpn-donate:hover,
.top-utility ul #cpn-explore-our-conference:hover {
  transition: 0.3s ease;
  border-color: white;
  background: transparent;
}
@media (max-width: 768px) {
  .top-utility ul #cpn-donate,
.top-utility ul #cpn-explore-our-conference {
    display: none;
  }
}
.top-utility ul #cpn-search {
  width: 50px;
}
.top-utility ul #cpn-search a {
  color: #fff;
}
.top-utility ul #cpn-search a:hover {
  color: #3c8082;
}
.top-utility ul #cpn-become-a-member {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
}
.top-utility ul #cpn-become-a-member a {
  color: #fff;
}
.top-utility ul #cpn-become-a-member:hover {
  transition: 0.3s ease;
  border-color: white;
}
@media (max-width: 768px) {
  .top-utility ul #cpn-become-a-member {
    display: none;
  }
}

#hero-btn {
  -webkit-transition: 0.3s ease;
  background: #3c8082;
  border-radius: 50px;
  border: 2px solid transparent;
  font-size: 1.5rem;
  font-weight: 700;
  height: 70px;
  letter-spacing: 3px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  text-transform: uppercase;
  transition: 0.3s ease;
  width: 220px;
}
#hero-btn a {
  color: #fff;
}
#hero-btn a:hover {
  text-decoration: none;
}
#hero-btn:hover {
  background: white;
  border-color: white;
  transition: 0.3s ease;
}
#hero-btn:hover a {
  color: #3c8082;
}

#mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9;
}
@media (min-width: 768px) {
  #mobile-cta {
    display: none;
  }
}
#mobile-cta ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
}
#mobile-cta ul li {
  list-style: none;
  background: rgba(118, 101, 160, 0.95);
  flex-basis: 30%;
  margin: 5px;
  display: table;
  text-align: center;
  height: 60px;
}
#mobile-cta ul li a {
  font-size: 10px;
  color: white;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  padding: 5px 15%;
  line-height: 15px;
  letter-spacing: 1px;
}
#mobile-cta ul li a i.fa-heart {
  display: block;
}
#mobile-cta ul li#cpn-search {
  display: none;
}

/* ====================== Footer ====================== */
footer {
  background: #fff;
  position: relative;
}
footer .top-footer {
  padding-top: 5%;
  padding-bottom: 5%;
}
footer .top-footer h4 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 2rem;
  color: #3c8082;
}
footer .top-footer ul {
  list-style: none;
  padding: 0;
}
footer .top-footer ul li {
  line-height: 2;
}
footer .top-footer ul li a {
  letter-spacing: 1px;
  color: #6b6b6b;
}
footer .top-footer ul li a:hover {
  color: #999;
}
footer .top-footer .socials {
  display: inline-flex;
  margin-top: -10px;
}
footer .top-footer .socials li {
  margin-right: 10px;
}
@media (max-width: 768px) {
  footer .top-footer {
    text-align: center;
  }
  footer .top-footer .flex-row div {
    margin-bottom: 20px;
  }
  footer .top-footer .flex-row div:last-child {
    margin-bottom: 0;
  }
}
footer .bottom-footer {
  padding: 15px;
  background-color: #72568E;
}
footer .bottom-footer .container {
  text-align: center;
}
footer .bottom-footer .container a {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.5s ease;
}
footer .bottom-footer .container a:after {
  background: white;
  bottom: -2px;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}
/* ====================== Transitions ====================== */
/*

=== Use Extend Property (Example below) ===

.header {
  @extend .transition-cubic;
  background: white;
}

*/
.transition-cubic, #search, #search.open-search, #search .close-search {
  -webkit-transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.transition-fast {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.transition, li#mn-search .icon-search, li#mn-search .icon-search:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.transition-slow {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.easeInOutBack {
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ====================== Alignment ====================== */
.center {
  text-align: center;
}

/* Parent element needs position:relative; */
.vert-centered {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Parent element needs position:relative; */
.absolute-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translatex(-50%) translatey(-50%);
  -moz-transform: translatex(-50%) translatey(-50%);
  -ms-transform: translatex(-50%) translatey(-50%);
  -o-transform: translatex(-50%) translatey(-50%);
  transform: translatex(-50%) translatey(-50%);
}

/* ====================== Paddding Adjustments ====================== */
/* Remove excess margin / padding */
.no-border {
  border: 0;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.cushion-sm {
  padding: 2%;
}

.cushion-md {
  padding: 5%;
}

.cushion-lg {
  padding: 10%;
}

.cushion-vert-sm {
  padding: 2% 0;
}

.cushion-vert-md {
  padding: 5% 0;
}

.cushion-vert-lg {
  padding: 10% 0;
}

.cushion-horiz-sm {
  padding: 0 2%;
}

.cushion-horiz-md {
  padding: 0 5%;
}

.cushion-horiz-lg {
  padding: 0 10%;
}

.white {
  color: white !important;
}

/* ====================== Alignment ====================== */
.centered {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

/* Parent element needs position:relative; */
.vert-centered {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Parent element needs position:relative; */
.absolute-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translatex(-50%) translatey(-50%);
  -moz-transform: translatex(-50%) translatey(-50%);
  -ms-transform: translatex(-50%) translatey(-50%);
  -o-transform: translatex(-50%) translatey(-50%);
  transform: translatex(-50%) translatey(-50%);
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-margin {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* BG Images
====================== */
.bg-image-js {
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover !important;
}

/* ====================== REM font size with pixel fallback ====================== */
/* === Usage === */
/*p {
  @include font-size(14px)
}*/
/* === Output === */
/*p {
  font-size: 14px; //Will be overridden if browser supports rem
  font-size: 0.8rem;
}*/
/* ====================== Breakpoints ====================== */
/* ==== Usage ==== */
/*.class {
  width: 60%;
  float: left;
  margin: 0 2% 0 0;
  @include bp-small {
    width: 100%;
    float: none;
    margin: 0;
  }
}*/
/* ==== End ==== */
.home .home-hero {
  height: 100vh;
  margin-top: -22px;
  position: relative;
  z-index: 9;
}
.home .home-hero .bg-image {
  height: 100vh;
  position: absolute;
  right: 0;
  width: 100%;
}
.home .home-hero .bg-image:before {
  background: rgba(205, 182, 237, 0.4);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.home .hero-message {
  color: #fff;
}
.home .hero-message h6 {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 1.6rem;
}
.home .hero-message h6:first-child {
  margin-bottom: -20px;
  animation: right 8s ease;
}
.home .hero-message h6:last-child {
  float: right;
  animation: left 8s ease;
}
.home .hero-message h1 {
  font-size: 15rem;
  text-align: center;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  animation: center 8s ease;
}
@keyframes right {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  30% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes left {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  30% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes center {
  from {
    opacity: 0;
    letter-spacing: 8px;
  }
  40% {
    opacity: 1;
  }
  70% {
    letter-spacing: 0;
  }
}
@media (max-width: 675px) {
  .home .hero-message {
    transform: translatex(-50%) translatey(-50%) scale(0.75);
  }
}
@media (max-width: 550px) {
  .home .hero-message {
    transform: translatex(-50%) translatey(-50%) scale(0.65);
  }
}
@media (max-width: 450px) {
  .home .hero-message {
    transform: translatex(-50%) translatey(-50%) scale(0.55);
  }
}
@media (max-width: 375px) {
  .home .hero-message {
    transform: translatex(-50%) translatey(-50%) scale(0.48);
  }
}
.home .arrow {
  transition: 0.3s ease;
  position: absolute;
  z-index: 99;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.home .arrow svg {
  transform: rotate(90deg);
  margin: 20px;
  top: 3px;
  transition: 0.2s;
  position: relative;
}
.home .arrow svg path {
  fill: #fff;
}
.home .arrow:hover svg {
  top: 6px;
}
.home .home-main {
  padding-top: 5%;
  padding-bottom: 5%;
  background: #fff;
  z-index: 9;
  position: relative;
}
.home .home-main .about-block h1 {
  margin-left: -150px;
  font-size: 7rem;
  color: #72568E;
  margin-top: 0;
}
@media (max-width: 900px) {
  .home .home-main .about-block h1 {
    margin-left: -75px;
  }
}
@media (max-width: 768px) {
  .home .home-main {
    padding: 5% 5% 8%;
  }
  .home .home-main .about-block h1 {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .home .home-main {
    padding: 10% 6% 13%;
  }
  .home .home-main .about-block h1 {
    font-size: 5rem;
  }
  .home .home-main .about-block p {
    font-size: 16px;
  }
}
.home .home-stats {
  height: 300px;
  position: relative;
  z-index: 9;
}
.home .home-stats .background {
  width: 100%;
  height: 100%;
}
.home .home-stats .background:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.home .home-stats .stats-block {
  position: absolute;
  display: block;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home .home-stats .stats-block div {
  float: left;
}
.home .home-stats .stats-block p {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.home .home-stats .stats-block p span.stat {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  text-transform: capitalize;
}
.home .home-stats:hover .background:before {
  background: rgba(114, 86, 142, 0.5);
}
@media (max-width: 768px) {
  .home .home-stats {
    height: 400px;
  }
  .home .home-stats .stats-block {
    padding-right: 5%;
    padding-left: 5%;
  }
  .home .home-stats .stats-block div {
    margin-bottom: 50px;
  }
  .home .home-stats .stats-block div:nth-child(3) {
    margin-bottom: 0;
  }
  .home .home-stats .stats-block div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .home .home-stats {
    height: 550px;
  }
  .home .home-stats .stats-block {
    padding-right: 10%;
    padding-left: 10%;
  }
  .home .home-stats .stats-block div {
    max-width: 100%;
    flex: 100%;
  }
  .home .home-stats .stats-block div:nth-child(3) {
    margin-bottom: 50px;
  }
}
.home .home-events {
  position: relative;
  background: #fff;
  z-index: 9;
}
.home .home-events .left-half {
  position: relative;
}
.home .home-events .left-half .background {
  width: 100%;
  height: 550px;
  top: -20px;
  background-position: 50% 20% !important;
}
.home .home-events .left-half .content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.home .home-events .left-half .content h1 {
  margin-top: 0;
}
.home .home-events .white-btn {
  margin: 0 auto;
}
.home .home-events .right-half {
  padding-top: 5%;
  padding-bottom: 5%;
  margin-left: 5%;
  width: 40%;
  flex-basis: 40%;
  position: relative;
}
.home .home-events .right-half .upcoming-events-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
}
.home .home-events .right-half .upcoming-events-wrapper ul {
  list-style: none;
  padding: 0;
}
.home .home-events .right-half .upcoming-events-wrapper ul li {
  padding-bottom: 20px;
}
.home .home-events .right-half .upcoming-events-wrapper ul li:last-child {
  padding-bottom: 0;
}
.home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-date:after {
  content: "";
  position: absolute;
  background-color: white;
  border: 2px solid #3c8082;
  height: 60px;
  width: 60px;
  left: -115px;
  z-index: 0;
  margin-top: -6px;
}
.home .home-events .right-half .upcoming-events-wrapper ul li span.upcoming-events-month {
  left: -100px;
  position: absolute;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3c8082;
  z-index: 9;
  font-weight: 600;
}
.home .home-events .right-half .upcoming-events-wrapper ul li span.upcoming-events-date {
  position: absolute;
  left: -100px;
  margin-top: 22px;
  font-size: 24px;
  color: #3c8082;
  z-index: 9;
}
.home .home-events .right-half .upcoming-events-wrapper ul li span.upcoming-events-date:last-child {
  display: none;
}
.home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-name {
  margin-top: -5px;
  line-height: 1.5;
}
.home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-name a {
  color: #6b6b6b;
}
.home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-name a:hover {
  color: #3c8082;
}
@media (max-width: 768px) {
  .home .home-events .left-half .background {
    height: 250px;
  }
  .home .home-events .right-half {
    height: 550px;
    width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 420px) {
  .home .home-events .right-half {
    height: 650px;
  }
  .home .home-events .right-half .upcoming-events-wrapper {
    margin-left: 25px;
  }
  .home .home-events .right-half .upcoming-events-wrapper p.upcoming-events-name {
    font-family: 16px;
    line-height: 1.3;
  }
}
.home .home-portals {
  text-align: center;
  position: relative;
  z-index: 9;
}
.home .home-portals .flex-row div {
  flex-grow: 1;
  transition: 0.3s ease;
}
.home .home-portals .flex-row div:hover {
  flex-grow: 1.1;
}
@media (max-width: 650px) {
  .home .home-portals .flex-row div {
    width: 100%;
  }
}
.home .home-portals .portal-one {
  background-color: #72568E;
  position: relative;
}
.home .home-portals .portal-two {
  background-color: #64497e;
  position: relative;
}
.home .home-portals .portal-three {
  background-color: #58426f;
  position: relative;
}
.home .home-portals .portal {
  padding-top: 20px;
  padding-bottom: 20px;
}
.home .home-portals .portal:hover a {
  text-decoration: none;
}
.home .home-portals .portal p {
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 0;
}
.home .home-portals .portal h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #fff;
}
.home .home-blog {
  padding-top: 5%;
  padding-bottom: 300px;
  position: relative;
  background: #fff;
  z-index: 9;
}
.home .home-blog .blog-intro {
  text-align: center;
}
.home .home-blog .recent-blog-posts-wrapper {
  margin-top: 50px;
  text-align: center;
}
.home .home-blog .recent-blog-posts-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  line-height: inherit;
}
.home .home-blog .recent-blog-posts-wrapper ul li {
  width: 250px;
  margin-right: 2%;
  margin-left: 2%;
  display: inline-block;
  text-align: center;
  position: relative;
}
.home .home-blog .recent-blog-posts-wrapper ul li a:first-child {
  display: block;
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 250px;
}
.home .home-blog .recent-blog-posts-wrapper ul li a:first-child:before {
  background: transparent;
  border: 2px solid #fff;
  content: "";
  height: 230px;
  margin: 10px;
  opacity: 0;
  position: absolute;
  transition: 0.3s ease;
  width: 230px;
  z-index: 9;
}
.home .home-blog .recent-blog-posts-wrapper ul li a:first-child img {
  transition: 0.5s ease;
}
.home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-title {
  color: #72568E;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
  padding: 0 5%;
  position: relative;
  width: 100%;
  z-index: 9;
}
.home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper {
  color: #6b6b6b;
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 15px;
  position: relative;
  text-transform: uppercase;
  z-index: 9;
}
.home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper span:nth-child(2) {
  display: none;
}
.home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper .recent-blog-posts-weekday {
  display: none;
}
@media (max-width: 865px) {
  .home .home-blog .recent-blog-posts-wrapper ul li {
    margin-bottom: 175px;
  }
  .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-view-link {
    margin-top: 0;
  }
}
.home .home-blog .recent-blog-posts-wrapper ul li:hover a:first-child:before {
  opacity: 1;
}
.home .home-blog .recent-blog-posts-wrapper ul li:hover a:first-child img {
  transform: scale(1.1);
}
.home .home-blog .recent-blog-posts-wrapper ul li:hover .recent-blog-posts-title {
  text-decoration: underline;
}
.home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link {
  background: white;
  border: 2px solid #3c8082;
  border-radius: 50px;
  font-size: 1.3rem;
  left: 50%;
  letter-spacing: 3px;
  margin-top: 170px;
  padding: 8px 30px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: 0.3s ease;
  width: 170px;
}
.home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link a {
  color: #3c8082;
}
.home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link a:hover {
  text-decoration: none;
}
.home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link:hover {
  background: #3c8082;
  transition: 0.2s ease;
}
.home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link:hover a {
  color: white;
}
@media (max-width: 865px) {
  .home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link {
    margin-top: 0;
  }
}
@media (max-width: 865px) {
  .home .home-blog {
    padding-bottom: 130px;
  }
}
@media (max-width: 768px) {
  .home .home-blog .hideme {
    opacity: 1;
  }
}
.home .home-newsletter-cta {
  background: #72568E;
  color: #fff;
  padding: 70px 40px;
  position: relative;
  text-align: center;
  z-index: 99;
}
.home .home-newsletter-cta h6 {
  font-size: 11px;
  letter-spacing: 5px;
  margin: 0;
  text-transform: uppercase;
}
.home .home-newsletter-cta h1 {
  margin-top: 0;
}
.home .home-newsletter-cta .white-btn {
  border: 2px solid white;
}
.home .home-newsletter-cta .white-btn:hover {
  background: #72568E;
  color: white;
}
.home .home-membership-cta {
  height: 350px;
  position: relative;
}
.home .home-membership-cta .background {
  bottom: 0;
  height: 120%;
  left: 0;
  position: fixed;
  right: 0;
  top: -50%;
  width: 120%;
  z-index: 0;
}
.home .home-membership-cta .background:before {
  background: rgba(0, 0, 0, 0.15);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  .home .home-membership-cta .background {
    top: -58%;
  }
}
@media (max-width: 550px) {
  .home .home-membership-cta .background {
    top: -62%;
  }
}
.home .home-membership-cta .content {
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.home .home-membership-cta .content h6 {
  font-size: 11px;
  letter-spacing: 5px;
  margin: 0;
  text-transform: uppercase;
}
.home .home-membership-cta .content h1 {
  font-size: 7rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .home .home-membership-cta .content h1 {
    font-size: 6rem;
  }
}
.home .hideme {
  opacity: 0;
}

.default .inner-banner {
  height: 400px;
  position: relative;
  margin-top: -22px;
}
.default .inner-banner .mobile-title {
  text-align: center;
  width: inherit;
  padding: 5% 8%;
  border: 2px solid #fff;
  color: #fff;
}
@media (min-width: 768px) {
  .default .inner-banner .mobile-title {
    display: none;
  }
}
@media (max-width: 768px) {
  .default .inner-banner:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
  }
}
.default .page-title-block {
  position: relative;
  padding: 100px;
  background: #fff;
  margin-top: -175px;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}
.default .page-title-block .page-title {
  text-align: center;
  color: #72568E;
}
.default .page-title-block .page-title h1 {
  font-size: 7rem;
}
@media (max-width: 768px) {
  .default .page-title-block {
    display: none;
  }
}
.default .default-main {
  padding-top: 2%;
  padding-bottom: 5%;
}
@media (max-width: 768px) {
  .default .default-main {
    padding-top: 5%;
  }
}
.default .newsletter-cta .templatecontent {
  position: relative;
  z-index: 99;
  background: #cdb6ed;
  text-align: center;
  padding: 40px;
  color: #fff;
}
.default .newsletter-cta .templatecontent h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
}
.default .newsletter-cta .templatecontent h1 {
  margin-top: 0;
}
.default .default-cta {
  position: relative;
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.default .default-cta:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.default .default-cta .content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 90%;
}
.default .default-cta .content h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
}
.default .default-cta .content h1 {
  font-size: 7rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .default .default-cta .content h1 {
    font-size: 6rem;
  }
}
.default .hideme {
  opacity: 0;
}
.default #ctl00_cphPageBody_pnlNoAccessSimplePassword input#ctl00_cphPageBody_btnSimplePassword {
  border: none;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #cdb6ed;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s ease;
  font-size: 1.3rem;
}
.default #ctl00_cphPageBody_pnlNoAccessSimplePassword input#ctl00_cphPageBody_btnSimplePassword:hover {
  background: #72568E;
}

body.conference .scrollable {
  margin-top: 30px;
}
body.conference .scrollable .items .item {
  text-align: center;
}
body.conference .scrollable .items .item .caption {
  display: none;
}
body.conference .scrollable .items .item .title {
  display: none;
}
body.conference .scrollable .items .item img {
  max-width: 100%;
  max-height: 240px;
  margn: 0 auto;
  text-align: center;
}

.tabbedcontent-header {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.tabbedcontent-content {
  padding: 1rem;
}

/* ====================== FORM STYLING ====================== */
.formmodule {
  display: block;
  position: relative;
  /* ====== Keyframes ====== */
  /* Tada */
  /* Shake */
  /* .formmodule-form */
  /* .form-bot-stopper */
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
  }
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
  position: relative;
  font-size: 1rem;
  color: #fff !important;
  background: #4EB75E;
  border: 1px solid #419c4f;
  border-radius: 2px;
  padding: 8px;
  margin: 0 0 30px 0;
  overflow: hidden;
  padding-left: 45px !important;
  -webkit-animation: tada 1s ease-out 0.3s normal 1;
  animation: tada 1s ease-out 0.3s normal 1;
}
@media (min-width: 768px) {
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
    padding: 12px;
  }
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:before, .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:after,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:before,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 24px;
  border-radius: 1px;
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:before,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:before {
  width: 4px;
  height: 20px;
  margin: -10px 0 0 0px;
  -webkit-transform: rotate(42deg);
  -ms-transform: rotate(42deg);
  transform: rotate(42deg);
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:after,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:after {
  width: 4px;
  height: 10px;
  margin: -1px 0 0 -8px;
  -webkit-transform: rotate(-47deg);
  -ms-transform: rotate(-47deg);
  transform: rotate(-47deg);
}
.formmodule h3:first-of-type {
  display: none;
}
.formmodule .formmodule-form {
  /* table */
}
.formmodule .formmodule-form table, .formmodule .formmodule-form tbody, .formmodule .formmodule-form tr, .formmodule .formmodule-form td {
  display: inline-block;
  width: 100%;
}
.formmodule .formmodule-form table {
  /* tbody */
}
.formmodule .formmodule-form table tbody {
  /* tr */
}
.formmodule .formmodule-form table tbody tr {
  /* td */
  /* td.formmodule-column2 */
}
.formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
    margin: 0 0 15px 0;
  }
}
.formmodule .formmodule-form table tbody tr td {
  padding: 0;
  /* CheckBox & RadioButton */
}
.formmodule .formmodule-form table tbody tr td span, .formmodule .formmodule-form table tbody tr td label {
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
}
.formmodule .formmodule-form table tbody tr td input[type=text],
.formmodule .formmodule-form table tbody tr td input[type=file],
.formmodule .formmodule-form table tbody tr td textarea {
  font-size: 16px;
  background: #fff;
  color: #222;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  padding: 4px 8px;
  width: 100%;
}
.formmodule .formmodule-form table tbody tr td input[type=text]:-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]::-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]:-ms-input-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]::-webkit-input-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]:-moz-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]::-moz-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]:-ms-input-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]::-webkit-input-placeholder,
.formmodule .formmodule-form table tbody tr td textarea:-moz-placeholder,
.formmodule .formmodule-form table tbody tr td textarea::-moz-placeholder,
.formmodule .formmodule-form table tbody tr td textarea:-ms-input-placeholder,
.formmodule .formmodule-form table tbody tr td textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
@media (min-width: 768px) {
  .formmodule .formmodule-form table tbody tr td input[type=text],
.formmodule .formmodule-form table tbody tr td input[type=file],
.formmodule .formmodule-form table tbody tr td textarea {
    padding: 8px 12px;
  }
}
.formmodule .formmodule-form table tbody tr td input.formmodule-phone {
  width: 32%;
  margin: 0 2% 0 0;
  text-align: center;
}
.formmodule .formmodule-form table tbody tr td input.formmodule-phone:nth-of-type(3) {
  margin-right: 0;
}
.formmodule .formmodule-form table tbody tr td select,
.formmodule .formmodule-form table tbody tr td input[type=file] {
  display: block;
  clear: both;
}
.formmodule .formmodule-form table tbody tr td input[type=file] {
  background: #f7f7f7;
}
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type=checkbox],
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type=radio],
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type=checkbox],
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type=radio] {
  margin: 2px 0;
}
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td label,
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td label {
  font-size: 0.85rem;
  margin: 0 0 0 6px;
  padding: 4px 0;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column1 {
  margin: 0;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 {
  /* error message */
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"] {
  padding: 5px 8px;
  position: relative;
  font-size: 13px;
  color: #fff !important;
  background: #E63A3A;
  border: 1px solid #ce2233;
  border-radius: 2px;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"]:before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: 8px;
  height: 10px;
  width: 10px;
  background: #E63A3A;
  border-top: 1px solid #ce2233;
  border-left: 1px solid #ce2233;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-left-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formmodule .form-bot-stopper {
  margin: 0 0 15px 0;
}
.formmodule .form-bot-stopper .form-bot-stopper-info {
  font-size: 0.85rem;
}
.formmodule .form-bot-stopper .form-bot-stopper-question {
  font-size: 0.85rem;
}
.formmodule .form-bot-stopper .form-bot-stopper-question input.form-bot-stopper-value {
  height: 32px;
  width: 40px !important;
  text-align: center;
  font-size: 16px;
  background: #fff;
  color: #222;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  padding: 4px;
}
.formmodule .formmodule-errors {
  margin: 15px 0 0 0;
}
.formmodule .formmodule-errors div {
  position: relative;
  font-size: 0.85rem;
  color: #fff !important;
  background: #e63a3a;
  border: 1px solid #ce2233;
  border-radius: 2px;
  padding: 8px;
  padding-left: 38px !important;
  -webkit-animation: shake 1s ease-out 0.3s normal 1;
  animation: shake 1s ease-out 0.3s normal 1;
}
@media (min-width: 768px) {
  .formmodule .formmodule-errors div {
    padding: 12px;
  }
}
.formmodule .formmodule-errors div:before, .formmodule .formmodule-errors div:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 18px;
  height: 18px;
  width: 4px;
  margin: -9px 0 0 -2px;
  background: #fff;
  border-radius: 1px;
}
.formmodule .formmodule-errors div:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.formmodule .formmodule-errors div:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* .formmodule */
/* ====================== FORM STYLING END ====================== */
/* login */

.swform__password-toggle-button {
  height: 2.3em !important
}
.swform__password-toggle-button  svg {
  height: 2em !important;
}

#swProfile-Container .password-toggle {
  height: 2em !important;
  padding-top: 0.1em;
}

#swProfile-Container .password-toggle   svg {
  height: 1em !important;
}