html, input, textarea, select {
  box-sizing: border-box
}

body {
  margin: 0;
  background-color: #eee;
  font-family: helvetica, verdana, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 20px
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
}

body, html {
  min-height: 100%
}

body {
  background-image: url(/img/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%
}

a {
  text-decoration: none;
  color: #561476;
}

a:hover {
  color: #d39bee;
}

.Page_container {
  max-width: 1170px;
  margin: 15px 15px 25px
}

@media (min-width: 1200px) {
  .Page_container {
    margin-left: auto;
    margin-right: auto
  }
}

.Page_header {
  display: flex;
  border-radius: 15px;
  box-shadow: 5px 10px 18px rgba(86, 20, 118, .5);
  background-color: #561476;
  padding: 15px 25px;
  justify-content: space-between
}

@media (max-width: 768px) {
  .Page_header {
    padding: 15px
  }
}

.Page_title {
  flex: 1 1;
  text-align: center;
  font-size: 52px;
  line-height: 52px;
  color: #fff
}

@media (max-width: 768px) {
  .Page_title {
    text-align: start;
    font-size: 42px;
    line-height: 42px
  }
}

.Page_hamburger {
  display: none
}

@media (max-width: 768px) {
  .Page_hamburger {
    flex-shrink: 0;
    margin-top: 5px;
    margin-left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #561476
  }
}

.Page_body {
  margin-top: 15px;
  border-radius: 15px;
  box-shadow: 5px 10px 18px rgba(86, 20, 118, .5);
  background-color: #fff;
  display: flex
}

.Page_menu {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #561476;
  color: #fff;
  padding: 15px 0 15px 20px
}

@media (max-width: 768px) {
  .Page_menu {
    display: none
  }
}

.Page_menuItem, .Page_menuItemSelected {
  width: 160px;
  height: 40px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  padding: 5px 10px
}

.Page_menuItem a, .Page_menuItemSelected a {
  text-decoration: none;
  color: #fff
}

.Page_menuItem a:hover, .Page_menuItemSelected a:hover {
  color: #d39bee
}

.Page_menuItemSelected {
  color: #561476;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #fff
}

.Page_content {
  padding: 15px 25px;
  width: 100%
}

@media (max-width: 768px) {
  .Page_content {
    padding: 15px
  }
}

.Page_footer {
  margin-top: 15px;
  display: flex;
  border-radius: 15px;
  box-shadow: 5px 10px 18px rgba(86, 20, 118, .5);
  background-color: #fff;
  padding: 15px 25px;
  justify-content: space-around;
  font-size: 14px
}

@media (max-width: 768px) {
  .Page_footer {
    padding: 15px;
    flex-direction: column
  }
}

.Page_footerItem {
  flex: 1 1;
  text-align: center
}

.HamburgerMenu_containerHidden, .HamburgerMenu_containerVisible {
  display: block;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  z-index: 1000;
  transition: -webkit-transform .3s cubic-bezier(0, .52, 0, 1);
  transition: transform .3s cubic-bezier(0, .52, 0, 1);
  transition: transform .3s cubic-bezier(0, .52, 0, 1), -webkit-transform .3s cubic-bezier(0, .52, 0, 1);
  background-color: #fff;
  color: #561476;
  font-size: 18px
}

.HamburgerMenu_containerVisible {
  -webkit-transform: translate(0);
  transform: translate(0);
  overflow: hidden
}

.HamburgerMenu_containerHidden {
  -webkit-transform: translate(-100%);
  transform: translate(-100%)
}

.HamburgerMenu_header {
  background-color: #561476;
  font-size: 18px;
  color: #fff
}

.HamburgerMenu_header, .HamburgerMenu_menuItem {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center
}

.HamburgerMenu_menuItem {
  background-color: #fff;
  color: #561476
}

.HamburgerMenu_menuItem a {
  text-decoration: none;
  color: #561476
}

.PageTitle_h1 {
  font-family: helvetica, verdana, arial, sans-serif;
  font-size: 16pt;
  font-weight: 700;
  color: #561476;
  margin-bottom: 15px
}

@media (min-width: 769px) {
  .Content_image {
    max-height: 150px;
    max-width: 500px
  }
}

@media (max-width: 768px) {
  .Content_image {
    max-width: 75%
  }
}

@media (min-width: 769px) {
  .Content_imageLarge {
    max-height: 250px;
    max-width: 500px
  }
}

@media (max-width: 768px) {
  .Content_imageLarge {
    max-width: 75%
  }
}

.Centered_centered {
  width: 100%;
  text-align: center
}

.Select_select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d39bee;
  padding: 8px 12px;
  background-color: #fff;
  color: #000;
  font-family: helvetica, verdana, arial, sans-serif;
  font-size: 16px
}

.Input_input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d39bee;
  padding: 8px 12px;
  background-color: #fff;
  color: #000;
  font-family: helvetica, verdana, arial, sans-serif;
  font-size: 16px
}

.Input_input:active, .Input_input:focus {
  border: 1px solid #561476;
  outline: none
}

.Input_input:disabled {
  background-color: #d39bee;
  color: #561476
}

.Input_input::-webkit-input-placeholder {
  color: #561476
}

.Input_input::placeholder {
  color: #561476
}

.ErrorMessage_error {
  padding: 0 8px;
  color: red
}

.ErrorMessage_error__hidden {
  display: none;
}

.TextArea_textArea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d39bee;
  padding: 8px 12px;
  background-color: #fff;
  color: #000;
  font-family: helvetica, verdana, arial, sans-serif;
  font-size: 16px
}

.TextArea_textArea:active, .TextArea_textArea:focus {
  border: 1px solid #561476;
  outline: none
}

.TextArea_textArea:disabled {
  background-color: #d39bee;
  color: #561476
}

.TextArea_textArea::-webkit-input-placeholder {
  color: #561476
}

.TextArea_textArea::placeholder {
  color: #561476
}

.Form_form {
  width: 100%
}

.Form_message {
  width: 100%;
  padding: 0 0 10px;
  text-align: center;
  color: #561476;
  font-size: 18px
}

.Form_message__hidden {
  display: none;
}

.Form_input {
  padding: 10px 0
}

.Form_input > * {
  margin-top: 10px
}

.Form_input > :first-child {
  margin-top: 0
}

.Form_controls {
  padding: 0 0 10px
}

.Button_button {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #561476;
  padding: 12px;
  background-color: #561476;
  color: #fff;
  font-family: helvetica, verdana, arial, sans-serif;
  font-size: 16px;
  font-weight: 700
}

.Button_button:active, .Button_button:focus {
  border: 1px solid #d39bee;
  outline: none
}

.Button_button:active {
  background-color: #d39bee
}

.Button_button:disabled {
  border-color: #e6e6e6;
  background-color: #eee;
  color: #aaa
}

.css-2b097c-container {
  position: relative;
  box-sizing: border-box;
}

.css-7pg0cj-a11yText {
  z-index: 9999;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}

.css-1n9vwvr-control {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  box-shadow: none;
  cursor: default;
  display: flex;
  flex-wrap: wrap;
  -moz-box-pack: justify;
  justify-content: space-between;
  min-height: 38px;
  outline: 0 !important;
  position: relative;
  transition: all 100ms ease 0s;
  box-sizing: border-box;
  border: 1px solid rgb(211, 155, 238);
  padding-left: 2px;
}

.css-thupob-control {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  box-shadow: none;
  cursor: default;
  display: flex;
  flex-wrap: wrap;
  -moz-box-pack: justify;
  justify-content: space-between;
  min-height: 38px;
  position: relative;
  transition: all 100ms ease 0s;
  box-sizing: border-box;
  border: 1px solid rgb(86, 20, 118);
  padding-left: 2px;
  outline: 0 !important;
}

.css-thupob-control:hover {
  border: 1px solid  rgb(86, 20, 118);
}

.css-1wy0on6 {
  -moz-box-align: center;
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}

.css-2i4cx6-indicatorContainer {
  color: rgb(211, 155, 238);
  display: flex;
  padding: 8px;
  transition: color 150ms ease 0s;
  box-sizing: border-box;
}

.css-gd9w64-indicatorContainer {
  color: rgb(86, 20, 118);
  display: flex;
  padding: 8px;
  transition: color 150ms ease 0s;
  box-sizing: border-box;
}

.css-gd9w64-indicatorContainer:hover {
  color: rgb(86, 20, 118);
}

.css-8mmkcg {
  display: inline-block;
  fill: currentcolor;
  line-height: 1;
  stroke: currentcolor;
  stroke-width: 0;
}

.css-1hwfws3 {
  -moz-box-align: center;
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-wrap: wrap;
  padding: 2px 8px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.css-pl6nfp-placeholder {
  color: rgb(86, 20, 118);
  margin-left: 2px;
  margin-right: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.css-1btfzz6-singleValue {
  color: rgb(0, 0, 0);
  margin-left: 2px;
  margin-right: 2px;
  max-width: calc(100% - 8px);
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
}

.css-62g3xt-dummyInput {
  background: 0 center;
  border: 0;
  font-size: inherit;
  outline: 0;
  padding: 0;
  width: 1px;
  color: transparent;
  left: -100px;
  opacity: 0;
  position: relative;
  transform: scale(0);
}

.css-26l3qy-menu {
  top: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.1) 0 4px 11px;
  margin-bottom: 8px;
  margin-top: 8px;
  position: absolute;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  display: none;
}

.css-11unzgr {
  max-height: 300px;
  overflow-y: auto;
  padding-bottom: 4px;
  padding-top: 4px;
  position: relative;
  box-sizing: border-box;
}

.css-1wrq4mm-option {
  background-color: rgb(255, 255, 255);
  color: inherit;
  cursor: default;
  display: block;
  font-size: inherit;
  padding: 8px 12px;
  width: 100%;
  user-select: none;
  box-sizing: border-box;
}

.css-1wrq4mm-option:hover {
  background-color: rgb(211, 155, 238);
}

ul.articles {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

ul.articles > li {
  margin-top: 10px;
}

.article {
  margin: 25px 0;
}

.article-title {
  font-weight: bold;
  text-align: center;
}

.article-separator {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
