/*-------------------------------- RESET CSS ---------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0
}

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

body {
  line-height: 1
}

ol, ul {
  list-style: none
}

blockquote, q {
  quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

/*============================ END RESET CSS =======================================*/

/*------------------------------------------- GATHR HOME CUSTOM CSS --------------------------------------------------*/

@font-face {
  font-family: Objectivity;
  font-weight: bold;
  src: url("../fonts/Objectivity-Bold.otf") format("opentype");
}

@font-face {
  font-family: Objectivity;
  font-weight: normal;
  src: url("../fonts/Objectivity-Light.otf") format("opentype");
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 19px;
  background: #000;
  font-family: Objectivity, Helvetica, sans-serif;
}

.userSelectNone {
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

::placeholder {
  color: #fff;
  font-weight: initial;
  letter-spacing: initial;
}

:-ms-input-placeholder {
  color: #fff;
  font-weight: initial;
  letter-spacing: initial;
}

::-ms-input-placeholder {
  color: #fff;
  font-weight: initial;
  letter-spacing: initial;
}

input, select, textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 15px;
  width: 100%;
  margin: 0;
  padding: 15px 20px;
  background: transparent;
}

select option {
  color: initial;
}

a, a:hover {
  text-decoration: none;
  color: inherit;
}

.section {
  display: flex;
  width: 100%;
  margin: auto;
  position: relative;
}

.sectionInner {
  display: table;
  width: 95%;
  margin: 0 auto;
  position: relative;
}

.sectionInner_box {
  max-width: 1080px;
}

.sectionInner_iframesbox {
  max-width: 1500px;
}

.section_container {
  max-width: 700px;
}

.section_shop {
  position: relative;
}

.section_shop .section_h1 {
  color: #fff;
  text-shadow: 1px 2px #000;
}

.section_shop_background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /*filter: blur(8px);*/
  /*-webkit-filter: blur(8px);*/
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
}

.button {
  display: table;
  margin: auto;
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 0 7px 0;
  width: 100%;
  max-width: 95%;
  text-align: center;
}

.button:hover {
  cursor: pointer;
}

.button_white {
  border: 1px solid #fff;
  color: #fff;
  width: 240px;
}

.button_white:hover {
  background: #fff;
  color: #2A2451;
}

.button_purple {
  border: 1px solid #6E6EEF;
  background: #6E6EEF;
  color: #fff;
  width: 250px;
}

.button_purple:hover {
  background: #6E6EEF;
  color: #fff;
}

.button_center {
  display: table;
  margin: auto;
}

/* ----------------- LOADER PURE CSS ------------------ */

#loaderBIGOuter {
  position: fixed;
  z-index: 1000;
  height: 100%;
  width: 100%;
  text-align: center;
  top: 0px;
  background: #2A2451;
}

#loaderBIGInner {
  position: relative;
  margin: 0px auto;
  display: block;
  top: 35%;
}

#loaderBIGInner img {
  display: block;
  margin: 0 auto 20px auto;
  width: auto;
  height: 50px;
}

.loaderQuotesText {
  margin-top: 15px;
  color: #fff;
  display: table;
  width: 95%;
  margin: 15px auto;
  font-size: 15px;
  line-height: 20px;
}

.loaderCSS {
  margin: 0px auto;
  font-size: 5px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.7em solid rgba(255, 255, 255, 0.1);
  border-right: 0.7em solid rgba(255, 255, 255, 0.1);
  border-bottom: 0.7em solid rgba(255, 255, 255, 0.1);
  border-left: 0.7em solid #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.50s infinite linear;
  animation: load8 0.50s infinite linear;
}

.loaderCSS, .loaderCSS:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*---------------------------- TOP MENU ---------------------------------*/

.sectionTopMenu {
  position: absolute;
  z-index: 500;
  height: 70px;
}

.sectionTopMenu .sectionInner {
  margin-top: 10px;
}

.mobileMenu_icon_container {
  position: absolute;
  top: 5px;
  right: 0;
  width: 30px;
  height: 45px;
  z-index: 1000;
}

.mobileMenu_icon_container:hover {
  cursor: pointer;
}

.mobileMenu_icon_active .mobileMenu_icon {
  background-color: #7F63F4;
}

.mobileMenu_icon {
  position: absolute;
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.mobileMenu_icon_white {
  background-color: #fff;
}

.mobileMenu_icon_black {
  background-color: #000;
}

.mobileMenu_icon:before, .mobileMenu_icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  background-color: inherit;
  border-radius: inherit;
}

.mobileMenu_icon:before {
  top: 14px;
}

.mobileMenu_icon:after {
  top: 28px;
}

.mobileMenu {
  height: 100vh;
  width: 270px;
  background-color: #2A2451;
  color: #fff;
  position: fixed;
  right: -270px;
  top: 0;
  padding: 50px 0 0 0;
  overflow-y: auto;
  border: none;
  z-index: 300;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.mobileMenuOpen {
  right: 0;
}

.mobileMenuInner {
  margin-bottom: 100px;
}

.mobileMenuTab {
  display: table;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 0;
  text-align: left;
  text-indent: 30px;
}

.mobileMenuTab:hover, .mobileMenuTab:active, .mobileMenuTab:focus {
  color: #7F63F4;
}

.mobileMenuSocial {
  display: table;
  margin: 30px 0 0 5px;
}

.mobileMenuSocialLink {
  display: inline-block;
  margin: auto 10px;
}

.mobileMenuSocialIcon {
  width: 25px;
  height: 25px;
}

.mobileMenuLast {
  position: relative;
  width: 100%;
  text-align: center;
}

.mobileMenuOverlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 300;
  display: none;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/*---------------------------- HEADER VIDEO ---------------------------------*/

.sectionHeader {
  width: 100%;
  height: 56.25vw;
  max-height: 80vh;
  position: relative;
}

.sectionHeader_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56.25vw;
  max-height: 80vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sectionHeader_inner iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  /* min-height: 100vh; */
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sectionHeader_overlay {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.sectionHeader_social {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 101;
}

.sectionHeader_social a {
  display: table;
  margin: 5px 0;
}

.sectionHeader_social a img {
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.sectionHeader_title {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 101;
  display: table;
  width: 90%;
  max-width: 1000px;
  color: #fff;
  font-size: 45px;
  line-height: 50px;
  font-weight: bold;
}

.sectionHeader_text {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 101;
  display: table;
  width: 90%;
  max-width: 1000px;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
}

.sectionHeader_button_container {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 101;
  display: table;
  width: 90%;
  max-width: 1000px;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
}

.sectionHeader_button {
  width: 250px;
  margin: 0;
  border-radius: 5px;
  font-weight: bold;
  padding: 15px 0px 12px 0;
}

.header_contribute {
  display: table;
  width: 100%;
  /*max-width: 700px;*/
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #7F63F4;
  margin: 1% auto;
  position: relative;
}

.header_contribute_header {
  display: table;
  width: 100%;
  padding: 20px 0 20px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #fff;
}

.header_contribute_title {
  display: table;
  float: left;
  font-size: 20px;
  line-height: 25px;
  ;
  font-weight: bold;
  color: #fff;
  padding-top: 7px;
}

.header_contribute_title img {
  width: auto;
  height: 20px;
  margin-right: 10px;
}

.header_contribute_donate {
  display: table;
  float: right;
  text-align: right;
}

.header_contribute_amount {
  display: inline-block;
  padding: 10px 0 7px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  width: 55px;
  text-align: center;
}

.input_amount_other {
  display: inline-block;
  padding: 10px 0 7px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  width: 70px;
  text-align: center;
}

.input_amount_other_active, .input_amount_other:hover, .input_amount_other:focus {
  background: #fff;
  color: #7F63F4;
}

.header_contribute_button {
  display: inline-block;
  padding: 11px 15px 8px 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  background: #2A2451;
  border-radius: 4px;
  margin-left: 10px;
  text-align: center;
  box-shadow: 0px 0px 5px 0px #2a2451;
  border: 0;
}

.header_contribute_amount:hover {
  cursor: pointer;
  background: #fff;
  color: #7F63F4;
}

.header_contribute_button:hover {
  cursor: pointer;
  opacity: 0.9;
}

.header_contribute_amount_active {
  background: #fff;
  color: #7F63F4;
}

.header_contribute_footer {
  display: table;
  width: 100%;
  padding: 15px 0 20px 0;
}

.header_contribute_progress_text {
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
}

.header_vote_button {
  position: absolute;
  display: table;
  right: 20px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  padding: 5px;
  background: #fff;
  border-radius: 100%;
  text-align: center;
}

.header_vote_button img {
  display: table;
  margin: auto;
  width: auto;
  height: 35px;
  padding-top: 10px;
}

.header_vote_button:hover {
  cursor: pointer;
}

.progress_bar {
  display: table;
  width: 70%;
  max-width: 350px;
  height: 12px;
  background: #E2E7EE;
  border-radius: 5px;
  margin-top: 10px;
}

.progress_bar_inner {
  display: table;
  height: 12px;
  background: #2A2451;
  border-radius: 5px;
}

.header_contribute_stripe_gathr {
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #2A2451;
  margin: auto;
  position: relative;
}

.header_contribute_stripe_red {
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #BF0D3E;
  margin: auto;
  position: relative;
}

.header_contribute_stripe_blue {
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgb(0, 120, 171);
  margin: auto;
  position: relative;
}

.header_contribute_stripe_header {
  display: table;
  width: 95%;
  max-width: 1000px;
  padding: 20px 0 20px 0;
  margin: auto;
}

.header_contribute_stripe_title {
  display: table;
  float: left;
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  color: #fff;
  padding-top: 7px;
  position: relative;
}

.header_contribute_stripe_title img {
  width: auto;
  height: 20px;
  margin-right: 10px;
}

.header_contribute_stripe_title:hover .header_contribute_stripe_tooltip {
  display: block;
}
.header_contribute_stripe_tooltip {
  display: none;
  position: absolute;
  z-index: 10;
  top: 45px;
  right: 0;
  width: 250px;
  height: auto;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 17px;
  padding: 15px;
  border-radius: 10px;
}
.header_contribute_stripe_tooltip:before {
  position: absolute;
  top: -7px;
  right: 40px;
  display: inline-block;
  border-bottom: 7px solid #111;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: '';
}

.header_contribute_stripe_donate {
  display: table;
  float: right;
  text-align: right;
}

.header_contribute_stripe_amount {
  display: inline-block;
  padding: 10px 0 7px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  width: 55px;
  text-align: center;
}

.input_amount_other {
  display: inline-block;
  padding: 10px 0 7px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  width: 70px;
  text-align: center;
}

.input_amount_other_active, .input_amount_other:hover, .input_amount_other:focus {
  background: #fff;
  color: #7F63F4;
}

.input_amount_other {
  display: inline-block;
  padding: 10px 0 7px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  width: 70px;
  text-align: center;
}

.header_contribute_stripe_button {
  display: inline-block;
  padding: 11px 15px 8px 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
  background: #0D2F5D;
  border-radius: 4px;
  margin-left: 10px;
  text-align: center;
  box-shadow: 0px 0px 5px 0px #0D2F5D;
  border: 0;
}

.header_contribute_stripe_amount:hover {
  cursor: pointer;
  background: #fff;
  color: #0D2F5D;
}

.header_contribute_stripe_button:hover {
  cursor: pointer;
  opacity: 0.9;
}

.header_contribute_stripe_amount_active {
  background: #fff;
  color: #0D2F5D;
}

/*---------------------------- HEADER ---------------------------------*/

.topMenu {
  display: table;
  width: 100%;
  position: relative;
}

.topMenu_left {
  display: table;
  float: left;
  padding-top: 15px;
}

.topMenu_left ul li {
  display: inline-block;
  padding: 0 10px;
}

.topMenu_left ul li a {
  color: #fff;
  font-size: 15px;
}

.topMenu_center {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.logo {
  width: auto;
  height: 50px;
}

.topMenu_right {
  display: table;
  float: right;
  padding: 5px 0;
}

.sectionHeader_container {
  display: table;
  width: 95%;
  min-height: 80vh;
  margin: 0 auto 0 auto;
  text-align: center;
  color: #fff;
}

.sectionHeader_container_inner {
  display: table;
  margin: auto;
  padding-top: 50px;
  position: absolute;
  bottom: 10%;
  right: 10%;
  z-index: 200;
  text-align: right;
  color: #fff;
}

.header_h1 {
  display: table;
  width: 100%;
  font-size: 40px;
  line-height: 45px;
  font-weight: bold;
  margin: 10px 0;
}

.header_h2 {
  display: table;
  width: 100%;
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  margin: 10px auto;
}

.header_text {
  display: table;
  width: 100%;
  font-size: 20px;
  line-height: 25px;
  margin: 10px auto;
}

.header_text_small {
  font-size: 15px;
  line-height: 20px;
}

.countdown {
  display: table;
  width: 100%;
  margin: 25px 0 0 0;
}

.countdown_days, .countdown_hours, .countdown_mins, .countdown_sec {
  font-size: 40px;
  font-weight: bold;
  width: 70px;
  display: inline-block;
  text-align: right;
}

.countdown_small_text {
  font-size: 13px;
  text-transform: uppercase;
}

.socialHero {
  position: absolute;
  left: 2.5%;
  z-index: 100;
}

.socialHero img {
  width: 20px;
  height: 20px;
}

.socialHero_share {
  top: 130px;
}

.socialHero_facebook {
  bottom: 130px;
}

.socialHero_instagram {
  bottom: 90px;
}

.socialHero_youtube {
  bottom: 50px;
}

.sectionHeader_scroll {
  display: table;
  width: 50px;
  height: 50px;
  margin: 30px auto 0 auto;
  border: 2px solid #fff;
  border-radius: 100%;
  text-align: center;
}

.sectionHeader_scroll_arrow {
  width: 20px;
  height: auto;
  margin-top: 20px;
}

/*========================= END HEADER ================================*/

.section_white {
  background: #fff;
}

.section_gray {
  background: #F9F9F9;
}

.section_padding {
  /* padding: 50px 0; */
}

.section_h1 {
  display: table;
  width: 100%;
  font-size: 35px;
  line-height: 40px;
  font-weight: bold;
  margin: 10px auto;
  text-align: center;
}

.section_h2 {
  display: table;
  width: 100%;
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  margin: 10px auto;
}

.section_text {
  display: table;
  width: 100%;
  font-size: 20px;
  line-height: 25px;
  margin: 5px auto;
  text-align: center;
}

.section_iframes {
  padding-top: 64px;
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.shop_embed {
  padding-top: 20px;
}

/*---------------------------- MAP ---------------------------------*/

.sectionInner_map {
  max-width: 1000px;
  text-align: center;
}

#map {
  height: 550px;
}

/*========================= END MAP ================================*/

/*---------------------------- VIMEO IFRAMES ---------------------------------*/

.iframe_full {
  width: 100%;
  /* padding: 100px 0; */
}

.iframe23 {
  display: table;
  float: left;
  width: 70%;
}

.iframe13 {
  display: table;
  float: right;
  width: 29%;
}

/*========================= END VIMEO IFRAMES ================================*/

/*---------------------------- FOOTER ---------------------------------*/

.sectionFooter {
  background: #2A2451;
  padding: 50px 0;
}

.sectionFooter_left {
  display: table;
  float: left;
}

.sectionFooter_center {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0%)
}

.sectionFooter_right {
  display: table;
  float: right;
  padding-top: 15px;
}

.sectionFooter_copyright {
  font-size: 13px;
  color: #fff;
  text-align: center;
}

.sectionFooter_social {
  display: inline-block;
  margin: 0 10px;
}

.sectionFooter_social img {
  width: 20px;
  height: 20px;
}

/*========================= END FOOTER ================================*/

/*---------------------- AUDIENCE POLL ------------------------*/

.audience_poll_container {
  position: absolute;
  top: 10px;
  right: 5px;
}

.audience_poll_button {
  display: table;
  float: right;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background: #6E6EEF;
  border-radius: 30px;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  border: 0;
  position: relative;
}

.audience_poll_button:hover {
  cursor: pointer;
}

.audience_poll_text {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  padding-top: 2px;
}

.audience_poll_button img {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.audience_poll_tooltip {
  display: none;
  position: absolute;
  top: 65px;
  right: 0;
  width: 160px;
  border-radius: 5px;
  background: #555;
  color: #fff;
  font-size: 13px;
  padding: 10px;
  font-weight: normal;
  z-index: 50;
}

.audience_poll_tooltip:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #555;
  right: 30px;
  top: -8px;
}

.audience_poll_button:hover .audience_poll_tooltip {
  display: block;
}

.poll_container {
  position: fixed;
  z-index: 100;
  bottom: 10px;
  right: 135px;
}

.poll_button {
  display: table;
  padding: 6px 10px;
  border-radius: 100%;
  background: #6E6EEF;
}

.poll_button img {
  width: auto;
  height: 30px;
}

.poll_button:hover {
  cursor: pointer;
}

.poll_embed {
  display: none;
  position: absolute;
  bottom: 70px;
  right: -120px;
  width: 400px;
  height: 500px;
  max-height: 500px;
  border-radius: 5px;
  background: #ddd;
}

.poll_embed:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid #ddd;
  right: 135px;
  bottom: -8px;
}

.poll_embed_close {
  display: table;
  float: right;
  padding: 10px 10px 5px 10px;
}

.poll_embed_close:hover {
  cursor: pointer;
}

.poll_closed {
  margin-top: 200px;
  padding: 25px;
  text-align: center;
}

.smcx-embed, .smcx-iframe-container {
  height: 500px !important;
}

/*--- MODAL ---*/

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}

.modal_overlay {
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal_container {
  position: absolute;
  top: 5%;
  margin-bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 20;
  width: 90%;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.modal_container .pageContainer_title {
  max-width: calc(100% - 50px);
}

.modal_container_300 {
  max-width: 300px;
}

.modal_container_500 {
  max-width: 500px;
}

.modal_container_600 {
  max-width: 600px;
}

.modal_container_700 {
  max-width: 700px;
}

.modal_container_1000 {
  max-width: 1000px;
}

.modal_container_black {
  background: rgba(0, 0, 0, 0.5);
}

.modal_container_inner {
  display: table;
  width: 90%;
  margin: auto;
  padding: 30px 0;
}

.modal_header {
  display: table;
  width: 100%;
  background: #f9f9f9;
  border-bottom: 2px solid #DDE2EF;
  text-align: left;
  border-radius: 10px;
  position: relative;
}

.modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
  font-size: 20px;
  z-index: 10;
}

.modal_close:hover {
  cursor: pointer;
  opacity: 0.9;
}

.modal_inner {
  display: table;
  width: 90%;
  margin: auto;
  padding: 30px 0;
}

.spacer_5 {
  display: table;
  width: 100%;
  height: 5px;
}

.spacer_10 {
  display: table;
  width: 100%;
  height: 10px;
}

.spacer_25 {
  display: table;
  width: 100%;
  height: 25px;
}

.spacer_50 {
  display: table;
  width: 100%;
  height: 50px;
}

.spacer_100 {
  display: table;
  width: 100%;
  height: 100px;
}

.spacer_h_5 {
  display: inline-block;
  width: 5px;
}

.spacer_h_10 {
  display: inline-block;
  width: 10px;
}

.spacer_h_20 {
  display: inline-block;
  width: 20px;
}

.modal .spacer_5, .modal .spacer_10, .modal .spacer_25, .modal .spacer_50 {
  display: block;
}

/*---------------------------- AUTHORIZE.NET PAYMENT POPUP ---------------------------------*/

#divAuthorizeNetPopupScreen {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #808080;
  opacity: 0.5;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
  filter: alpha(opacity=50);
}

#divAuthorizeNetPopupScreen2 {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #808080;
  opacity: 0.5;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
  filter: alpha(opacity=50);
  z-index: 100201 !important;
}

#divAuthorizeNetPopup {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -200px;
  z-index: 2;
  overflow: visible;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupOuter {
  background-color: #dddddd;
  border-width: 1px;
  border-style: solid;
  border-color: #a0a0a0 #909090 #909090 #a0a0a0;
  padding: 4px;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupTop {
  height: 23px;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupClose {
  position: absolute;
  right: 7px;
  top: 7px;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupClose a {
  background-image: url('content/closeButton1.png');
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-block;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupClose a:hover {
  background-image: url('content/closeButton1h.png');
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupClose a:active {
  background-image: url('content/closeButton1a.png');
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupInner {
  background-color: #ffffff;
  border-width: 2px;
  border-style: solid;
  border-color: #cfcfcf #ebebeb #ebebeb #cfcfcf;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupBottom {
  height: 30px;
}

.AuthorizeNetPopupGrayFrameTheme .AuthorizeNetPopupLogo {
  position: absolute;
  right: 9px;
  bottom: 4px;
  width: 200px;
  height: 25px;
  background-image: url('content/powered_simple.png');
}

.AuthorizeNetPopupSimpleTheme .AuthorizeNetPopupOuter {
  border: 1px solid #585858;
  background-color: #ffffff;
}

/*---------------------------- MEDIA QUERIES ---------------------------------*/

@media only screen and (max-width: 600px) {
  .topMenu_left {
    display: none;
  }
  .sectionHeader_container {
    min-height: 60vh;
  }
  .countdown {
    margin: 0 auto;
  }
  .countdown_days, .countdown_hours, .countdown_mins, .countdown_sec {
    font-size: 25px;
    width: 40px;
  }
  .header_text {
    font-size: 15px;
    line-height: 20px;
  }
  .iframe_full, .iframe23, .iframe13 {
    width: 100%;
    display: table;
    margin: 10px 0;
  }
  .section_h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .section_h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .audience_poll_container {
    position: relative;
    display: table;
    float: right;
    margin: 0 5px 10px 0
  }
  .iframe_kickstarter_left, .iframe_kickstarter_right {
    width: 100%;
    margin: 5px auto;
  }
}

@media only screen and (max-width: 700px) {
  .header_contribute_stripe_title {
    float: none;
    margin: 0 auto 5px auto;
  }
  .header_contribute_stripe_amount {
    margin: 5px;
  }
  .header_contribute_stripe_button {
    margin: 5px;
  }
  .header_contribute_stripe_donate {
    float: none;
    margin: auto;
    text-align: center;
  }
  .slider_left_arrow, .slider_right_arrow {
    display: none;
  }
  /*------------------- FOOTER ---------------------*/
  .sectionFooter {
    padding: 30px 0 70px 0;
  }
  .sectionFooter_left, .sectionFooter_right {
    display: table;
    width: 100%;
    float: none;
    text-align: center;
  }
  .sectionFooter_center {
    display: table;
    width: 100%;
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    text-align: center;
    margin: 20px auto 0 auto;
  }
  .header_contribute_donate {
    text-align: center;
  }
  .header_contribute_title, .header_contribute_donate {
    float: none;
    width: 100%;
    text-align: center;
  }
  .header_contribute_title {
    margin-bottom: 10px;
  }
  .header_contribute_amount {
    margin-left: 5px;
  }
  .header_contribute_button {
    display: table;
    margin: 10px auto 0 auto;
  }
}

@media only screen and (max-width: 500px) {
  .logo {
    height: 40px;
  }
  .header_h1 {
    font-size: 25px;
    line-height: 30px;
    margin: 0;
  }
}