/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* end reset */

:root {
  --main-color: #3b9cf0;
}

/* static stuff */

h1 {
  font-size: 1.3em;
  font-weight: bold;
}

h2 {
  font-size: 1.2em;
  font-weight: bold;
}

h3 {
  font-size: 1.1em;
  font-weight: bold;
}

b {
  font-weight: bold;
}

.static h1 {
  margin: 1em 0;
  font-size: 2em;
}
.static h2 {
  margin: 1em 0;
  font-size: 1.7em;
}
.static h3 {
  margin: 1em 0;
  font-size: 1.5em;
}
.static h4 {
  margin: 1.5em 0;
  font-size: 1.083em;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  font-weight: bold;
}
.static h5 {
  margin: 1em 0;
  font-weight: bold;
}
.static a {
  text-decoration: underline;
}
.static p,
.static blockquote {
  line-height: 1.5;
  margin: 1.35em 0;
}
.static ul,
.static ol {
  margin: 1.5em 2em;
}
.static ol li {
  list-style-type: decimal;
}
.static li {
  margin: 0.75em 0;
  line-height: 1.25;
  list-style-type: circle;
}
.static ol ol,
.static ul ul {
  margin: 0.75em 2em;
}
.static li ol li {
  list-style-type: lower-alpha;
}
.static li ul li {
  list-style-type: disc;
}
.static blockquote {
  margin: 1.35em 2em;
  font-style: italic;
}
.static table {
  width: 100%;
  margin: 1.5em;
}
.static th,
.static td {
  padding: 7px;
}
.static th {
  font-weight: bold;
}
.static .alt td {
  background: #f2f9fc;
}

.static code {
  font-family: "andale mono", "monotype.com", "lucida console", monospace;
  white-space: pre;
  margin: 1.5em 2em;
  display: block;
  line-height: 1.5;
}
.static img.alignleft {
  margin: 1em 1em 1em 0;
  float: left;
}
.static img.alignright {
  margin: 1em 0 1em 1em;
  float: right;
}

/* static stuff */

/* alert boxes */

/* Notification Boxes - error, etc */
.info,
.success,
.warning,
.error {
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
}

.info {
  color: var(--main-color, #3b9cf0);
  background-color: #bde5f8;
  background-image: url(../images/knobs/knob_info.png);
}

.bold {
  font-weight: bold;
}

.warning {
  color: #9f6000;
  background-color: #feefb3;
  background-image: url(../images/knobs/knob_attention.png);
}

.success {
  color: #4f8a10;
  background-color: #dff2bf;
  background-image: url(../images/knobs/knob_valid_green.png);
}

.error {
  color: #d8000c;
  background-color: #ffebe8;
  background-image: url(../images/knobs/knob_cancel.png);
}

/* end alert boxes */

/* header section */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

#content_container,
.header_content,
.mobile_subheader {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.mobile_subheader {
  display: none;
}

.header {
  background-color: var(--main-color, #3b9cf0);
  overflow: hidden;
  padding: 3px 0px;
  margin-bottom: 10px;
}

.loggedout_header {
  background-color: var(--main-color, #3b9cf0);
  overflow: hidden;
  padding: 3px 0px;
}

.header a,
.loggedout_header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 5px;
  border-radius: 4px;
}

.textblock {
  line-height: 1.2;
}

.header a.logo {
  font-size: 20px;
  padding: 12px 0px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  padding: 12px;
  color: black;
}

.header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
  padding-top: 12px;
}

/* end header section */

/* footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
}

#footer_copyright {
  margin-top: 20px;
}

.footerlink {
  margin-right: 25px;
}
/* footer end */

#named_header_title {
  float: left;
  display: none;
  color: white;
  font-size: 20px;
  padding: 15px 0px;
  font-weight: bold;
}

#main_logo_image {
  width: 122px;
  height: 30px;
}

#left_col {
  float: left;
  max-width: 660px;
}

#right_col {
  float: right;
  max-width: 300px;
}

#top_content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

#middle_content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

#main_container {
  position: relative;
  min-height: 100vh;
}

#main_content {
  margin-bottom: 5px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
  padding-bottom: 150px;
}

.options_header_content {
  padding: 20px;
}

.greenzone_bg {
  background-color: green;
  color: white;
}

.greenzone {
  color: green;
}

.redzone_bg {
  background-color: red;
  color: white;
}

.redzone {
  color: red;
}

.yellowzone_bg {
  background-color: #fde541;
  color: white;
}

.yellowzone {
  color: #fde541;
}

.orangezone {
  color: orange;
}

.orangezone_bg {
  background-color: orange;
  color: white;
}

.purplezone {
  color: #8b008b;
}

.purplezone_bg {
  background-color: #8b008b;
  color: white;
}
.smalllink {
  font-size: 0.8em;
  color: var(--main-color, #3b9cf0);
  cursor: pointer;
}

.smalltext {
  font-size: 0.8em;
}

strong {
  font-weight: bold;
}

.medium_title_link {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--main-color, #3b9cf0);
  cursor: pointer;
}

.medium_title_link:hover {
  text-decoration: underline;
}

.medium_title {
  font-weight: bold;
  font-size: 1.2em;
}

.subtitle {
  font-size: 1.3em;
  font-weight: bold;
}

a {
  color: var(--main-color, #3b9cf0);
  text-decoration: none;
}

.regularlink {
  color: var(--main-color, #3b9cf0);
  cursor: pointer;
}

.user_card_photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.generic_table {
  border-collapse: collapse;
  width: 70%;
}

.generic_table td,
.generic_table th {
  border: 1px solid #ddd;
  padding: 8px;
}

#header_hmb_menu {
  display: none;
}

.generic_table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.generic_table tr:hover {
  background-color: #ddd;
}

.generic_table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: black;
  color: white;
}

.big_green_button {
  background-color: green;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 8px;
  cursor: pointer;
}

.xl_mt {
  margin-top: 20px;
}

.l_mt {
  margin-top: 10px;
}

.m_r {
  margin-right: 10px;
}

.beenlist div {
  margin-bottom: 10px;
}

.stamp_link {
  text-decoration: none;
}

.stamp_image_small {
  width: 30px;
  height: 30px;
}

.stamp_image_medium {
  width: 100px;
  height: 100px;
}

.achievement_stamp_image {
  width: 150px;
  height: 150px;
}

.stamp_image_mediumplus {
  width: 200px;
  height: 200px;
}

.round_photo {
  border-radius: 50%;
}

.large_photo {
  height: 200px;
  width: 200px;
}

.medium_photo {
  height: 100px;
  width: 100px;
}

.small_photo {
  height: 50px;
  width: 50px;
}

input[type="submit"] {
  padding: 8px 18px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 8px;
  cursor: pointer;
}

#edit_form div {
  margin-bottom: 10px;
}

#edit_form input {
  width: 350px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 6px;
}

#edit_form select {
  width: 350px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 6px;
}

.styled_form_box {
  padding: 12px 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 6px;
  text-align: center;
}

.styled_input_box {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 6px;
}

.medium_input_box {
  min-width: 260px;
}

#edit_form textarea {
  vertical-align: top;
}

#edit_form label {
  width: 200px;
  display: inline-block;
  font-weight: bold;
}

.input_label {
  width: 130px;
  display: inline-block;
  font-weight: bold;
}

.lfloat {
  float: left;
}

.rfloat {
  float: right;
}

.clearboth {
  clear: both;
}

.simple_user_row {
  margin-bottom: 15px;
}

.subtitle_section {
  width: 540px;
  margin-top: 15px;
  margin-bottom: 5px;
  min-height: 25px;
}

.mrs {
  margin-right: 5px;
}

.mrm {
  margin-right: 10px;
}

.mrl {
  margin-right: 15px;
}

.mls {
  margin-left: 5px;
}

.mlm {
  margin-left: 10px;
}

.mll {
  margin-left: 15px;
}

.mbs {
  margin-bottom: 5px;
}

.mbm {
  margin-bottom: 10px;
}

.mbl {
  margin-bottom: 15px;
}

.mts {
  margin-top: 5px;
}

.mtm {
  margin-top: 10px;
}

.mtxxl {
  margin-top: 25px;
}

.mtl {
  margin-top: 15px;
}

.prs {
  padding-right: 5px;
}

.prm {
  padding-right: 10px;
}

.prl {
  padding-right: 15px;
}

.pls {
  padding-left: 5px;
}

.plm {
  padding-left: 10px;
}

.pll {
  padding-left: 15px;
}

.pbs {
  padding-bottom: 5px;
}

.pbm {
  padding-bottom: 10px;
}

.pbl {
  padding-bottom: 15px;
}

.pts {
  padding-top: 5px;
}

.ptm {
  padding-top: 10px;
}

.ptl {
  padding-top: 15px;
}

.regular_card {
  margin-bottom: 10px;
  width: 550px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
}

.placephoto {
  width: 100px;
  height: 100px;
}

progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
  background-image: -webkit-linear-gradient(
      -45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.1) 33%,
      rgba(0, 0, 0, 0.1) 66%,
      transparent 66%
    ),
    -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25)),
    -webkit-linear-gradient(left, #09c, #f44);

  border-radius: 2px;
  background-size: 35px 20px, 100% 100%, 100% 100%;
}

.didit_user_thumb_medium {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.didit_user_thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.quest .description,
.quest_card .description {
  margin-top: 5px;
  width: 250px;
}

.users_didit {
  margin-top: 10px;
}

.placedetails {
  margin-left: 10px;
}

/* buttons */

.primary_button,
.secondary_button,
.green_button {
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.primary_button {
  background-color: var(--main-color, #3b9cf0);
}

.small_button {
  padding: 6px 10px;
}

.full_width_button {
  width: 100%;
}

.secondary_button {
  border: 1px solid var(--main-color, #3b9cf0);
  background-color: transparent;
  color: var(--main-color, #3b9cf0);
}

.green_button {
  background-color: #4caf50;
}

.medium_button {
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.med_green_button {
  background-color: #4caf50;
  color: white;
  padding: 10px 12px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.hide_me {
  display: none;
}

.page_section {
  margin-top: 20px;
}

.page_section_content {
  margin-top: 10px;
}

#search-filters {
  background: #f2f9fc;
  border-radius: 5%;
  padding: 12px;
  width: 300px;
}

#search-filters .selected {
  font-weight: bold;
}

#num_results_selector {
  width: 100px;
}

.pagination {
  padding: 5px;
}

#place_type_filter_selector,
#quest_type_filter_selector {
  width: 150px;
}

.selected_challenges_tab_link {
  font-weight: bold;
}

.bubble_tab {
  background: #eee;
  padding: 8px;
  border-radius: 10px;
}

.selected_tab {
  font-weight: bold;
}

.empty_quest_tasks {
  padding-top: 10px;
}

.encouragement_tip {
  color: green;
  font-size: 0.9em;
}

#quest_header {
}

#quest_header_title {
  text-align: center;
}

.text_center {
  text-align: center;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.terms_of_service_text {
  font-size: 0.9em;
  color: gray;
}

#register_form,
#login_form {
  margin: 5 auto;
}

#login_form {
  margin: 5 auto;
}

#index_footer {
  width: 1060px;
  height: 463px;
  margin-left: auto;
  margin-right: auto;
}
