@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');




body {
  background-color: #fff;
  margin: 0px;
  padding: 0px;
  height: 100%;
}


::placeholder {
  color: #ccc;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #ccc;
}



.bodytext {
    position: relative;
    text-align:left;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    line-height: 20px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bodytext a:link,
.bodytext a:hover,
.bodytext a:visited,
.bodytext a:active
{
  color: #000;
  text-decoration: none;
}





.textfield_grey {
    border-radius: 0px;
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 6px 4px 6px 4px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    font-size: 15px;
    line-height: 15px;
    font-weight: normal;
    outline: none;
    background: rgba(50,50,50,0.05);
    box-sizing: border-box;
    margin-top: 2px;
}

.textfield_grey:active,
.textfield_grey:hover,
.textfield_grey:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}



.formfield_grey {
    border-radius: 0px;
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 3px 6px 3px 6px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    font-size: 13px;
    line-height: 13px;
    font-weight: normal;
    outline: none;
    background: rgba(50,50,50,0.05);
    box-sizing: border-box;
    margin-top: 2px;
}

.formfield_grey:active,
.formfield_grey:hover,
.formfield_grey:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}



.formfield_white {
    border-radius: 0px;
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 3px 6px 3px 6px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    font-size: 13px;
    line-height: 13px;
    font-weight: normal;
    outline: none;
    background: #fff;
    box-sizing: border-box;
    margin-top: 2px;
}

.formfield_white:active,
.formfield_white:hover,
.formfield_white:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}






/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding: 0px;
  padding-left: 21px;
  top: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 13px;
  color: #222;
  background-color: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #222;
  background-color: none;
  position: absolute;
  left: 0;
  top: 0px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 5px;
  top: -4px;
  left: 3px;
  border-radius: 0;
  opacity: 1;
  background-color: none;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}








.custom_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 8px 12px 8px 12px;
    border-radius: 2px;
    background: #00aebe;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; 
    line-height: 16px;
    font-weight: normal;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_button:hover {
    background: #666 !important;
    color: #fff;
}


.custom_button_disabled {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 8px 12px 8px 12px;
  border-radius: 2px;
  background: #ccc;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; 
  line-height: 16px;
  font-weight: normal;
  transition: 0.3s;
  margin: 0px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}




.mini_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 5px 8px 5px 8px;
    border-radius: 2px;
    background: #00aebe;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; 
    line-height: 14px;
    font-weight: normal;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mini_button:hover {
    background: #666 !important;
    color: #fff;
}




.micro_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 3px 5px 3px 5px;
    border-radius: 2px;
    background: #00aebe;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px; 
    line-height: 12px;
    font-weight: normal;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.micro_button:hover {
    background: #666 !important;
    color: #fff;
}





.artwork_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    width: 60px;
    padding: 5px;
    border-radius: 3px;
    background: #00aebe;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px; 
    line-height: 13px;
    font-weight: normal;
    transition: 0.3s;
    margin: 0px;
    margin-top: 1px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.artwork_button:hover {
    background: #666 !important;
    color: #fff;
}






#menu_container {
    display: none; 
    position: absolute; 
    top: calc(100% + 8px); 
    right: 0px; 
    background: #fff; 
    border: 1px solid #000; 
    padding: 0px; 
    box-sizing: border-box; 
    z-index: 999999;
}


.menu_item {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    border-bottom: 1px solid #aaa;
    padding: 5px 24px 3px 16px;
    box-sizing: border-box;
    text-align: left;
    transition: 0.3s;
    margin: 0px;
    color: #444;
    white-space: nowrap;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu_item:hover {
    color: #000;
    background: #efefef;
}




.new_text_link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  box-sizing: border-box;
  padding: 0px;
  margin-left: 30px;
  transition: 0.3s;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.new_text_link:hover {
  color: #aaa;
}


#nav_text_links_container {
  display: inline-flex; 
  position: relative; 
  height: 30px; 
  padding: 0px; 
  flex-grow: 1; 
  align-items: center; 
  align-content: center; 
  color: #fff; 
  justify-content: flex-end;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#nav_menu_icon {
    display: none; 
    position: absolute; 
    right: 0px; 
    top: 10px; 
    bottom: 10px; 
    width: 28px; 
    box-sizing: border-box; 
    padding: 0px; 
    cursor: pointer; 
    flex-flow: row wrap; 
    gap: 6px; 
    align-content: center; 
    align-items: center;
}

@media screen and (min-width: 626px) {
  #nav_text_links_container { 
    display: inline-flex;
  }
  #nav_menu_icon {
    display: none;
  }
}
@media screen and (max-width: 625px) {
  #nav_text_links_container { 
      display: none;
  }
  #nav_menu_icon {
      display: inline-flex;
  }
}





.terms_container {
  display: inline-block;
  position: relative;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  text-align: left;
  text-align: justify;
  column-count: 2; 
  column-gap: 20px;
  column-rule: 1px solid #222;
  box-sizing: border-box;
  padding: 0px;
}

@media screen and (min-width: 651px) {
  .terms_container { 
  column-count: 2;
  font-size: 14px;
  line-height: 16px;
  }
}
@media screen and (min-width: 401px) and (max-width: 650px) {
  .terms_container { 
  column-count: 1;
  font-size: 13px;
  line-height: 15px;
  }
}
@media screen and (max-width: 400px) {
  .terms_container { 
  column-count: 1;
  font-size: 11px;
  line-height: 13px;
  }
}




.form_column {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    text-align: left;
    width: calc(50% - 10px);
}

@media screen and (min-width: 451px) {
  .form_column { 
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 450px) {
  .form_column { 
    width: 100%;
  }
}












.loader {
    display: inline-block;
    color: #00aebe;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



#nav_block {
  display: block; 
  position: fixed; 
  text-align: center;
  left: 0vw; 
  right: 0vw; 
  top: 0px; 
  height: 96px;  
  padding: 0px; 
  box-sizing: border-box; 
  background: #222; 
  z-index: 999990;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#nav_block_top {
  display: block; 
  position: relative; 
  text-align: center; 
  left: 0vw; 
  right: 0vw; 
  height: 60px; 
  padding: 0px; 
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box; 
  background: #121212; 
  z-index: 999990;
  color: #fff;
}

#nav_block_bottom {
  display: block; 
  position: relative;
  text-align: center;  
  left: 0vw; 
  right: 0vw; 
  height: 36px; 
  padding: 0px; 
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  font-weight: 400;
  box-sizing: border-box; 
  background: #353535; 
  z-index: 999990;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#nav_block_mobile_menu_container {
  display: none;
  position: relative;
  text-align: center;  
  left: 0vw; 
  right: 0vw; 
  font-size: 15px;
  z-index: 99999;
}

.nav_block_mobile_menu {
  display: block;
  position: relative;
  width: 100%;
  padding: 0px;
  text-align: center;
  color: #fff;
  background: #353535;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #777;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav_block_mobile_sub_menu_container {
  display: none;
  position: relative;
  width: 100%;
  padding: 0px;
  text-align: center;
  font-size: 15px;
  background: #efefef;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav_block_mobile_sub_menu {
  display: block;
  position: relative;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
  font-size: 15px !important;
  font-weight: 300;
  color: #222;
  background: #efefef;
  border-bottom: 1px solid #777;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav_block_mobile_sub_menu:hover {
  font-weight: 500;
  background: #00aebe;
  color: #fff;
}


.main_menu_link {
  display: inline-flex; 
  position: relative;
  height: calc(100% + 12px);
  align-content: center; 
  align-items: center; 
  font-size: 14px; 
  line-height: 14px; 
  margin-left: 10px; 
  margin-right: 10px; 
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main_menu_link:hover {
  color: #00aebe;
}

.main_menu_link_alt {
  display: inline-flex; 
  position: relative;
  height: calc(100% + 12px);
  align-content: center; 
  align-items: center; 
  font-size: 14px; 
  line-height: 14px; 
  margin-left: 10px; 
  margin-right: 10px; 
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main_menu_link_alt:hover {
  color: #00aebe;
}

.main_menu_link_separator {
  display: inline-block; 
  position: relative; 
  height: 22px; 
  width: 2px; 
  border-left: 2px solid #999;
}


.main_menu_sub_links_container {
  display: block;
  position: fixed;
  visibility: hidden;
  left: -20000px;
  background: #efefef;
  box-sizing: border-box;
  padding: 6px;
  padding-top: 6px;
  padding-right: 14px;
  z-index: 9999 !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main_sub_menu {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #000;
  line-height: 12px;
  transition: 0.3s;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main_sub_menu:hover {
  color: #000000;
  font-weight: 500;
}




.nav_spacer {
  display: block;
  position: relative;
  width: 100%; 
  padding: 0px;
  box-sizing: border-box;
  height: 86;
}

#login_name {
  display: block; 
  position: relative; 
  width: 100%; 
  padding: 0px; 
  color: #fff; 
  font-size: 11px; 
  line-height: 11px; 
  font-weight: normal; 
  text-align: center; 
  white-space: nowrap; 
  text-overflow: ellipsis; 
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}




@media screen and (min-width: 701px) {
  #nav_block { 
    height: 96px;
  }
  #nav_block_top {
    height: 60px;
  }
  #nav_block_bottom {
    display: block;
  }
  .nav_spacer {
    height: 96px;
  }
  #login_name {
    display: block;
  }
  #nav_block_mobile_menu_container {
    display: none;
  }
}
@media screen and (max-width: 701px) {
  #nav_block { 
    height: 50px;
  }
  #nav_block_top {
    height: 50px;
  }
  #nav_block_bottom {
    display: none;
  }
  .nav_spacer {
    height: 50px;
  }
  #login_name {
    display: none;
  }
  #nav_block_mobile_menu_container {
    display: block;
  }
}







.alt_nav_link {
  display: inline-block;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  margin-left: 18px;
  margin-right: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.alt_nav_link:hover {
  color: #00aebe;
}

#alt_menu_links {
  display: inline-block; 
  position: relative; 
  padding: 0px;
}

#alt_menu_icon {
  display: none;
  position: relative;
  padding: 0px;
  height: 22px;
  top: -4px; 
  margin-left: 20px;
}

#alt_menu_container {
  display: none;
  position: absolute;
  right: 0px; 
  top: calc(100% + 6px);
  background: #fff;
  text-align: right;
  padding: 0px;
  box-sizing: border-box;
}

.alt_menu_sub_menu {
  display: block;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  font-size: 15px;
  color: #222;
  padding: 6px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
  background: #fff;
  cursor: pointer;
}

.alt_menu_sub_menu:hover {
  background: #eee;
}

#alt_menu_links_outer {
  display: inline-flex; 
  position: relative;
  top: 0px; 
  padding: 0px; 
  box-sizing: border-box; 
  flex-grow: 1; 
  height: 70%; 
  text-align: right; 
  justify-content: flex-end; 
  align-content: center; 
  align-items: center;
}

@media screen and (min-width: 701px) {
  #alt_menu_links { 
    display: inline-block;
  }
  #alt_menu_icon { 
    display: none;
  }
  #alt_menu_links_outer { 
    top: 0px;
  }
}
@media screen and (max-width: 701px) {
  #alt_menu_links { 
    display: none;
  }
  #alt_menu_icon { 
    display: inline-block;
  }
  #alt_menu_links_outer { 
    top: 4px;
  }
}





#map_container {
  display: inline-block;
  width: 700px;
  height: 400px;
  border: 1px solid #ccc;
}


@media screen and (min-width: 401px) {
  #map_container { 
    height: 400px;
  }
}
@media screen and (max-width: 400px) {
  #map_container { 
    height: 250px;
  }
}










.signup_box {
  display: inline-block;
  position: relative;
  width: 290px;
  text-align: center;
  padding: 0px;
  margin: 0px;
  margin-right: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 200;
  color: #fff;
  line-height: 20px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.footer_columns_box {
  display: inline-block;
  position: relative;
  width: calc(100% - 340px);
  text-align: left;
  padding: 0px;
  margin: 0px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: #fff;
  line-height: 17px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.footer_column {
  display: inline-block;
  position: relative;
  width: 30%;
  max-width: 240px;
  min-width: 180px;
  text-align: left;
  padding: 0px;
  margin: 0px;
  margin-top: 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: #fff;
  line-height: 24px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



@media screen and (min-width: 881px) {
  .signup_box { 
    margin-right: 50px;
  }
  .footer_columns_box {
    width: calc(100% - 340px);
  }
}
@media screen and (max-width: 880px) {
  .signup_box { 
    margin-right: 0px;
  }
  .footer_columns_box {
    width: 100%;
  }
}
