@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

body {
  background-color:rgb(241, 229, 203);
  margin: 0px;
}

#basic_map{
  border: none;
}

#mapcontainer {
  position: relative;
}

#hintscontainer {
  position: relative;
}

.unknownMarker {
  position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: rgba(255,125,0,255);
    border: 2px solid white;
    color: white;
    text-align: center;
    font-size:20px;
    font-family: 'Comic Sans', sans-serif;
    top: 2px;
    left: 91px;
    opacity: 1.0;
    -moz-opacity: 1.0;
    -webkit-opacity: 1.0;
}

.answeredMarker{
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: rgba(255,125,0,255);
    border: 2px solid white;
    color: white;
    text-align: center;
    font-size:20px;
    font-family: 'Comic Sans', sans-serif;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
.sidenav::-webkit-scrollbar {
    display: none;
}

/* The navigation menu links */
.sidenav a {
  position:relative;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 100px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  margin: 0px;
  transition: margin-left 0.5s;
  padding: 0px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/*Side nav pic*/
.ans_title{
	position:absolute;
 	top: 0px;
 	left: 5px;
	font-family: 'Noto Sans TC', sans-serif;
	margin: 5px auto;
 	color:white;
 	font-size:70px;
 	font-weight:100px;
}

.ans_container{
	position: relative;
	top: 50px;
	margin: 0px;
}

.ans_pic{
	margin: 5px auto;
 	width: 100%;
 	height: auto;
}

.ans_pic_deactive{
	z-index: 2; /* Stay on top */
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}

.ans_txt{
	position:absolute;
	top:18px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    padding: 8px;
	margin: 0px 10px;
    background: rgba(100,100,100,0.8);
    border: 2px solid white;
    color: white;
    text-align: center;

    font-size:70px;
    font-family: 'Comic Sans', sans-serif;
}

#hamburger_icon{
	z-index: 4;
	position: fixed;
 	top: 50px;
 	right: 50px;
 	background-color:rgba(100,100,100,0.5);
 	border-radius:10px;
 	padding: 20px;
}

.hamburger {
	width: 35px;
  	height: 5px;
  	background-color: white;
  	margin: 6px 0;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}