

/* General Settings */
body {
	margin: 0px auto;
	max-width: 600px;
	padding: 0px 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-color: #F2F2F2;
}

a {
	text-decoration: none;
	color: #FF6600;
}

a:hover {
	text-decoration: underline;
}

a:active {
	background-color: #FFBA75;
}

a[href^="http:"],
a[href^="https:"],
a[href^="www."] {
background: transparent url('system/ext_link.gif') 100% 50% no-repeat;
padding-right: 15px;
}

a[href^="https://www.worldmun-hd.de/"],
a[href^="http:"].noext,
a[href^="https:"].noext {
background: transparent;
padding-right: 0px;
}


 /* Style the navigation menu */
.topnav {
	overflow: hidden;
	background-color: #F2F2F2;
	position: relative;
}

  /* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
  margin-top: 44px;
}

  /* Style navigation menu links */
.topnav a {
	color: White;
	padding: 10px 10px;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	display: block;
	background: Silver;
}

  /* Style the hamburger menu */
.topnav a.icon {
	background: #F2F2F2;
	padding: 5px 10px;
	color: #696969;
	font-size: 1.8em;
	display: inline-block;
	float: left;
/*	position: absolute; */
	right: 0;
	top: 0;
}

  /* Style top line menu - only items clickable */
.topnav a.topline {
  background: #F2F2F2;
  padding: 7px 10px;
  text-decoration: none;
  font-size: 1em;
  float: right;
}

.clearfix {
    overflow: auto;
}

  /* Add a grey background color on mouse-over */
.topnav a:hover {
	background-color: Gray;
	color: White;
}

.topnav a.icon:hover {
	background-color: Gray;
	color: White;
}

  /* Style the active link (or home/logo) */
.active {
	background-color: #F2F2F2;
	color: Gray;
} 


/* Avatar Image */
img.avatar {
	border-radius: 50%;
	border: 1px solid gray;
}

.avatar {
	font-size: 1.2em;
	font-weight: bold;
	display: block;
	margin: auto;
	text-align: center;
}


/* Main Advert Card */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background: White;
  max-width: 95%;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.card h1 {
	font-size: 1.2em;
}

.card p {
	font-size: 1em;
}

.price {
  color: grey;
  font-size: 1em;
}

.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 1.2em;
}

.card button:hover {
  opacity: 0.7;
}

.card button a {
	color: White;
}


/* Pop-up Form */
  /* Bordered form */
form {
  border: 3px solid Silver;
  border-radius: 5px;
  background-color: White;
  padding: 20px;
}

 /* Container */
.container {
	text-align: center;
}

  /* Inputs */
input[type=text], input[type=password], input[type=email], textarea {
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 90%;
  border-radius: 4px;
  resize: vertical;
}

  /* Style the submit button with a specific background color etc */
input[type=submit] {
	background-color: Black;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
}

 /* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  opacity: 0.7;
}

 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
  cursor: pointer;
}

  /* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5px auto; /* 15% from the top and centered */
  padding: 20px 10px;
  border: 1px solid #888;
  max-width: 600px; /* Could be more or less, depending on screen size */
}

  /* The Close Button */
.close {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 25px;
  top: 25px;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

  /* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

  /* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* Collapsible Content Item */
 /* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

 /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  opacity: 0.7;
}

button.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.collapsible.active:after {
    content: "\2212";
}

 /* Style the collapsible content. Note: hidden by default */
.content-collapsible {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  text-align: left;
}

.content-collapsible a {
	color: #FF6600;
}


/* Bottom Navi Social */
div#bottomnav-social {
	font-size: 1em;
}