@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);
/* Mixins */
/* Variables */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  /* The html and body elements cannot have any padding or margin. */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 600;
}
.clear {
  clear: both;
}
#navigation {
  position: fixed;
  height: 100%;
  width: 266px;
  right: -276px;
  background-color: #fff;
  z-index: 999;
  transition: right 0.2s ease-in-out;
  font-size: 14px;
  padding: 54px 10px 10px 10px;
  overflow-y: auto;
  -webkit-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
#navigation.active {
  right: 0;
}
#navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#navigation ul li.border {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
#navigation ul li i {
  float: left;
  font-size: 12px;
  margin-top: 7px;
  color: #ddd;
  margin-right: 4px;
}
#navigation ul li a {
  font-size: 14px;
  padding: 4px 0;
  display: block;
}
#navigation .form-inline .form-control {
  width: 100%;
  margin-bottom: 10px;
}
.page-title {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.page-title .glyphicon {
  font-size: 18px;
  margin-left: 4px;
  width: 18px;
}
#navigation-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1001;
  text-align: right;
  cursor: pointer;
}
.menu-hamburger {
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: #fff;
  margin-left: 6px;
  position: relative;
  bottom: 7px;
  transition: background-color 0.1s ease-in-out;
}
.menu-hamburger::before,
.menu-hamburger::after {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #fff;
  width: 18px;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.menu-hamburger::before {
  bottom: 7px;
}
.menu-hamburger::after {
  top: 7px;
}
.navigation-open .menu-hamburger::before {
  transform: rotate(45deg);
  bottom: 0;
}
.navigation-open .menu-hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}
.navigation-open .menu-hamburger {
  background-color: transparent;
}
.navigation-open .menu-hamburger:after,
.navigation-open .menu-hamburger:before {
  background-color: #337ab7;
}
.navigation-open .page-title {
  color: #337ab7;
}
#page-container {
  width: 100%;
  height: 100%;
  position: relative;
}
#page-container #page-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: none;
  pointer-events: none;
}
#page-container #page-overlay.show {
  display: block;
}
@media (min-width: 768px) {
  #page-container #page-overlay {
    z-index: 100;
  }
}
#page-container #content-container {
  position: absolute;
  top: 65%;
  width: 100%;
  background-color: #ddd;
  z-index: 99;
  -webkit-box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.25);
}
@media (orientation: landscape) {
  #page-container #content-container {
    top: 85%;
  }
}
@media (min-width: 768px) {
  #page-container #content-container {
    -webkit-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
    box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.35);
    display: none;
    width: 320px;
    top: 0;
    right: 0;
    bottom: 0;
    padding-top: 50px;
    transition: right 0.2s ease-in-out;
  }
  #page-container #content-container #content {
    position: absolute;
    top: 50px;
    bottom: 0;
    width: inherit;
  }
  #page-container #content-container #content .content {
    position: absolute;
    top: 65px;
    bottom: 0;
    overflow-y: auto;
  }
}
#page-container #content-container #content-close {
  z-index: 999;
  position: absolute;
  right: 10px;
  margin-top: 25px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: none;
}
@media (min-width: 768px) {
  #page-container #content-container #content-close {
    display: block;
  }
}
#page-container #content-container #content-close:hover {
  color: #999;
}
#page-container #content-container.active {
  display: block;
}
#page-container #map {
  width: 100%;
  height: 65%;
  position: relative;
}
@media (orientation: landscape) {
  #page-container #map {
    height: 85%;
  }
}
@media (min-width: 768px) {
  #page-container #map {
    height: 100%;
  }
}
#map-reset {
  position: absolute;
  left: 30px;
  bottom: 10px;
  border-radius: 3px;
  background: #fbfbfb;
  padding: 3px;
  color: #292929;
  cursor: pointer;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  box-sizing: content-box;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  width: 10px;
  height: 10px;
  z-index: 10;
}
.to-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
}
.to-top i {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  padding-left: 3px;
}
#content {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  /*
  .assoc_profile_big:hover {
    width: 250px;
  }
	*/
}
@media (min-width: 768px) {
  #content .content {
    width: 320px;
  }
}
#content .headline {
  /* background-color: #7bbcfb; */
  /* background-color: #5f99c2; */
  background-color: #edbf14;
  margin: 0;
  padding: 21px 35px 0 15px;
  height: 65px;
}
#content .headline.subheadline {
  padding-top: 8px;
}
#content .headline h3,
#content .headline h4 {
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  font-size: 20px;
}
#content .headline h4 {
  font-size: 14px;
}
#content .user_list tr:hover,
#content .association_list tr:hover,
#content .country_list tr:hover,
#content .stammtische_list tr:hover {
  background-color: rgba(160, 160, 160, 0.1);
}
#content .user_list td.profile_image {
  vertical-align: middle;
  text-align: center;
  padding: 0 3px;
}
#content .user_list td.profile_list_info {
  width: auto;
  vertical-align: middle;
  text-align: left;
  padding-left: 5px;
}
#content .user_list td.profile_country {
  width: 60px;
  height: 58px;
  vertical-align: middle;
  text-align: right;
  padding-right: 3px;
}
#content .user_list td.country_name {
  width: auto;
  height: 40px;
  padding-top: 5px;
  vertical-align: middle;
  text-align: left;
}
#content .association_list td.assoc_image {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  text-align: left;
  padding-left: 3px;
}
#content .association_list td.assoc_list_info {
  width: auto;
  height: 70px;
  vertical-align: middle;
  text-align: left;
  padding-left: 5px;
}
#content .association_list td.assoc_country {
  width: 60px;
  height: 70px;
  vertical-align: middle;
  text-align: right;
  padding-right: 3px;
}
#content .country_list td.country_flag {
  width: 28px;
  height: 24px;
  vertical-align: middle;
  text-align: left;
}
#content .stammtische_list tr.country_header {
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: rgba(200, 200, 200, 0.1);
}
#content .stammtische_list td,
#content .stammtische_list th {
  padding: 5px;
}
#content .profile_tab_country_flag {
  width: 24px;
  height: auto;
}
#content .hairline_separator {
  width: 100%;
  height: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  margin: 8px -10px 5px 0;
}
#content .big_profile_picture_wrap {
  text-align: center;
  background-color: #fff;
}
#content .big_profile_picture {
  height: auto;
  /*width:100%;*/
  margin: 0 auto 0 auto;
  width: auto;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  max-height: 280px;
  max-width: 100%;
}
#content .small_profile_picture {
  height: 40px;
  margin: 3px 0;
  width: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#content .circle_profile,
#content .circle_profile_big {
  display: inline-block;
  width: 50px;
  height: 50px;
  /*margin: auto 10px 5px auto;*/
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 99em;
  -moz-border-radius: 99em;
  border-radius: 99em;
  border: 2px solid #eee;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#content .circle_profile_big {
  width: 100px;
  height: 100px;
  /*margin: auto 10px 5px auto;*/
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 99em;
  -moz-border-radius: 99em;
  border-radius: 99em;
  border: 2px solid #eee;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
}
#content .circle_profile_big:hover {
  width: 150px;
  height: 150px;
}
#content .assoc_profile,
#content .assoc_profile_big {
  display: inline-block;
  width: 60px;
  border: 1px solid #eee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  /*box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);*/
}
#content .assoc_profile_big {
  position: absolute;
  top: -25px;
  right: 15px;
  width: 100px;
  border: 1px solid #ddd;
  /*box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);*/
  transition: all ease 0.3s;
  cursor: pointer;
}
/* My profile area */
.panel {
  border: 0;
  margin-bottom: 0;
  border-radius: 0;
}
.panel .panel-heading {
  border-radius: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  line-height: 140%;
  font-weight: bold;
}
.panel .panel-heading.collapse-title a {
  cursor: pointer;
}
.panel .panel-heading.collapse-title a:after {
  font-family: 'Glyphicons Halflings';
  content: "\e114";
  float: right;
  color: grey;
}
.panel .panel-heading.collapse-title a.collapsed:after {
  content: "\e080";
}
.panel .panel-body {
  line-height: 140%;
}
.panel h4 {
  margin: 0 0 2px 0;
  font-size: 12px;
}
.well h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}
.page-header h1 {
  margin-top: 0;
}
.bootstrap-duallistbox-container {
  margin-bottom: 15px;
}
.tab-pane {
  padding-top: 15px;
}
.input-notice {
  margin: 10px 0 10px 0;
  display: block;
}
.section-intro {
  margin-bottom: 20px;
}
a.select-country {
  cursor: pointer;
}
a.select-country.active {
  text-decoration: underline;
}
label span {
  display: block;
  font-weight: normal;
}
.info-block {
  margin-bottom: 10px;
}
.info-block span {
  display: block;
}
.info-block .phone-description {
  display: inline-block;
  margin-right: 10px;
}
.info-block .www-description {
  display: block;
  margin-top: 10px;
}
.info-block .www-description:first-of-type {
  margin-top: 0;
}
.stammtisch {
  margin-top: 10px;
}
.no-map #page-container {
  background-color: #4182a8;
}
.no-map #page-container #content-container {
  display: block;
  width: 100%;
  top: 50px;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  background-color: #fff;
}
.no-map #page-container #content-container #content-close {
  display: none;
}
.no-map #page-container #content-container #content {
  top: 0;
}
.no-map #page-container #content-container #content h4 {
  font-size: 22px;
}
.no-map #page-container #content-container #content .content {
  width: 100%;
}
.no-map #page-container #content-container #content .page img {
  max-width: 100%;
  height: auto;
}
.no-map #map {
  display: none;
}
@media (min-width: 768px) {
  .navigation-open:not(.no-map) #page-container #content-container {
    right: 266px;
    z-index: 101;
  }
}
/* honeypot hidden */
.ohno {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
