/**********************************************************************************
Wohnungsspiegel
**********************************************************************************/

:root {
	/* Projektfarben */
	--go2-color-bg: #cecbc3;
	--go2-color-link: #5e5147;
	--go2-color-row-hover: #e0dcd2;
	--go2-color-row-active: #e9e4d9;
	--go2-color-text: #3f3f3f;

	
	--go2-color-border: #a3a19b;
	--go2-color-field: #ededed;
	--go2-color-select: #e5ded6;
	--go2-color-dark: #3a3b3b;
	--go2-color-tooltip: #383838;
	
	/* Neutrale Farben */
	--go2-color-white: #fff;
	--go2-color-black: #000;

	/* Scrollbar */
	--go2-color-scrollbar: #b8a136;
	--go2-color-scrollbar-shadow: #756310;

	/* Meldungen */
	--go2-color-error: #990000;
	--go2-color-error-dark: #900;
	--go2-color-error-border: #c00;

	/* Übergänge */
	--go2-transition-fast: 0.3s ease-in-out;
	--go2-transition-row: 0.35s ease;

	/* Sticky-Geometrie */
	--go2-grid-height: 370px; /* Höhe Gitternetz */
	--go2-grid-padding-top: 30px; /* Oberer Innenabstand des Sticky Gitternetzbereichs */
	--go2-table-sticky-gap: 0px; /* Zusätzlicher Abstand zwischen Gitternetz und Tabellenkopf */
	--go2-table-sticky-top: calc( 
		var(--go2-grid-height)
		+ var(--go2-grid-padding-top)
		+ var(--go2-table-sticky-gap)
	);
	--go2-sticky-area-height: 740px; /* Höhe übergeordneter Sticky Bereich auf Desktop. Wert bei langen Tabellen erhöhen */
}

/* Grundlayout und Sticky-Bereich
---------------------------------------- */
#go2wohnungsspiegel {
	height: var(--go2-sticky-area-height) !important; /* bestimmt, wie lange der Sticky-Bereich stehen bleibt */
	padding-top: 0;
	position: relative;
}

#main a {
	font-size: 22px;
	font-style: normal;
	line-height: 26px;
	font-weight: 700;
	font-variant: normal;
	text-transform: none;
	color: var(--go2-color-link);
	text-decoration: none;
	opacity: 1;
	transition: opacity var(--go2-transition-fast);
}

#main #go2wohnungsspiegel a:hover {
	opacity: 0.7;
	transition: opacity var(--go2-transition-fast);
}

#gitternetzleft {
	float: left;
	width: 33%;
	margin-right: 2%;
	height: 800px;
	margin-top: 50px;
	position: sticky;
	position: -webkit-sticky;
	top: 10px;
}

#gitternetztop {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 30;
	padding-top: var(--go2-grid-padding-top);
}

#gitternetztop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--go2-color-bg);
  z-index: -1;
  pointer-events: none;
}

#gitternetztop > * {
  max-width: 780px;
}

#gitternetzright {
	float: left;
	width: 100%;
	margin-bottom: 60px;
}
#wohnungsspiegelbox > table:first-of-type {
	position: sticky;
	position: -webkit-sticky;
	top: var(--go2-table-sticky-top);
	z-index: 20;
	background: transparent;
}

#wohnungsspiegelbox > table:first-of-type::before {
  content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% + 6%);
	height: 100%;
	background: var(--go2-color-bg);
	z-index: -1;
	pointer-events: none;
}

#wohnungsspiegelbox > table:first-of-type::after {
  content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: calc(100% + 5.3%);
	height: 1px;
	background: var(--go2-color-border);
	display: block;
	pointer-events: none;
}
#gitternetzbox {
	width: auto;
	height: var(--go2-grid-height);
	background-size: auto 100% !important;
	margin-left: 40px;
}
#gitternetzbox .inside, #gitternetzbox2 .inside{
	clear: both;
	margin-right: auto;
	margin-left: auto;	
}
.hinweissortierung {
	padding-left: 10px;
	font-size: 13px;	
}
/* Tabellenkopf und Tabellenkörper
---------------------------------------- */
#wohnungsnavigation {
	width: 95%;
	padding-bottom: 0;
}
#wohnungsnavigation td {
	line-height: 14px;
}
#wohnungsnavigation td, #wohnungsnavigation a, #wohnungsnavigation span, #wohnungsnavigation a span.kopfgross {
	font-size: 15px;
	line-height: 19px;
	font-weight: 900;
}
#wohnungsnavigation td {
	line-height: 1.8rem !important;
}

#wohnungsnavigation td sup {
	line-height: 0;
}
#wohnungsnavigation td:nth-child(1){
	padding-left: 40px;
}

#wohnungsnavigation td:nth-child(2), #wohnungsnavigation td:nth-child(3), #wohnungsnavigation td:nth-child(4), #wohnungsnavigation td:nth-child(6), #wohnungsnavigation td:nth-child(10), #wohnungsnavigation td:nth-child(11){
	padding-right: 2px;
}

#wohnungsspiegelbox{
	width:100%;
}
#wohnungsspiegelbox::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 11px;
	height: 11px;
}

#wohnungsspiegelbox::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 2px solid var(--go2-color-white); /* Angleichen mit Hintergrundfarbe-nicht transparent! */
	/* background-color: rgba(184, 161, 54, 1); */
	background-color: var(--go2-color-white);
}

#wohnungsspiegelbox::-moz-scrollbar {
	width: 12px;
}
#wohnungsspiegelbox::-moz-scrollbar-track {
	-moz-box-shadow: inset 0 0 6px var(--go2-color-white);
	background: var(--go2-color-black);
}
#wohnungsspiegelbox::-moz-scrollbar-thumb {
	border-radius: 10px;
	-moz-box-shadow: inset 0 0 6px var(--go2-color-white);
	background:var(--go2-color-scrollbar);
}

#wohnungsspiegelbox {
	scrollbar-base-color: var(--go2-color-scrollbar);
	scrollbar-arrow-color: var(--go2-color-white);
	scrollbar-DarkShadow-Color: var(--go2-color-scrollbar-shadow);
	scrollbar-Highlight-Color: var(--go2-color-scrollbar-shadow);
}
#wohnungsspiegelbox .inside{
	clear: both;
	max-width: 1260px;
	margin-right: auto;
	margin-left: auto;	
	padding-left: 40px;
}

#wohnungsspiegelbox tr.zeileeinheit td, #wohnungsspiegelbox tr.zeileverkauft td{
	border-bottom: none;
}
#wohnungsspiegelbox tr.zeileeinheit:hover, #wohnungsspiegelbox tr.zeileverkauft{
	/* background-color: var(--go2-color-field); */	
}
#wohnungsspiegelbox tr.zeileeinheit td, #wohnungsspiegelbox tr.zeileverkauft td{
	padding: 0;
}
#wohnungsspiegelbox tr.zeileeinheit td:nth-child(1), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(1){
	padding-left: 40px;
}

#wohnungsspiegelbox tr.zeileeinheit td:nth-child(8), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(8), #wohnungsnavigation td:nth-child(8) {
	text-align: left;
}

#wohnungsspiegelbox tr.zeileeinheit.extras td:nth-child(8) {
	text-align: left;
}

#wohnungsspiegelbox tr.zeileeinheit td[colspan]:nth-child(8) {
	text-align: left;
}

#wohnungsspiegelbox tr.zeileeinheit td:nth-child(9), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(9){
	padding-right: 10px;
}

#wohnungsspiegelbox td {
	vertical-align: top;
}

#wohnungsspiegelbox b {
	text-transform: uppercase;
	font-size: 14px;
	padding-left: 40px;
	padding-bottom: 5px !important;
	display: inline-block;
}

#wohnungsfinder{
	max-width:1240px;
	margin-right: auto;
	margin-left: auto;
}

#wohnungsnavigation .kopfklein{
	display:none;
}
.keinezeilenhoehe{
	line-height: 50%;	
}

.fortinyscreens {
	display: none;
}

tr.extras td:nth-child(6) {
	text-align: center;
}

tr td[colspan], tr.extras td[colspan] {
	text-align: left !important;
}

.empty:nth-child(1) {
	display: none;
}

p.small {
	margin-top: 30px;
	font-size: 0.8rem;
	line-height: 166%;
}

.ce_accordion .toggler {
	font-size: 15px;
	font-weight: 400;
	transition: background-color var(--go2-transition-row), color var(--go2-transition-row);
}

#wohnungsspiegelbox h3 {
	text-transform: none;
	font-size: 31px;
	font-weight: 300;
	line-height: 41px;
	letter-spacing: 0.5px;
	margin-top: 5px;
	margin-bottom: 20px;
}

#wohnungsspiegelbox p {
	font-size: 15px;
}

h3 span {
	text-transform: none;
}

#main #wohnungsspiegelbox a.btn {
	text-transform: uppercase;
	display: inline-block;
	width: 230px;
	height: auto;
	padding: 15px;
	font-weight: 400;
	font-size: 15px;
	color: var(--go2-color-text) !important;
	letter-spacing: 0.1rem;
	border: 1px solid var(--accentColor);
	border-radius: 32px;
}

#main #wohnungsspiegelbox a.btn:hover::after {
	display: none;
}

img.tooltip {
	width: 15px;
	height: 15px;
	position: relative;
	top: 1px;
	left: 4px;
}

.PP .toggler:before {
	display: none;
}

.ce_accordion.PP .accordion {
	display: none !important;
}

#main .ce_accordion .toggler:before {
	right: 6px;
	top: 0;
	font: 1rem/20px FontAwesome;
	opacity: 1; 
}

.himmelsrichtung{
	display:block;
	margin-top:2px;
	font-size:.86em;
	font-weight:600;
	letter-spacing:.02em;
	color:var(--gv-taupe);
}

.ce_accordion .toggler.ui-accordion-header, .ce_accordion .toggler {
	font-weight: 400;
	padding: 8px 4px;
	border-bottom-color: var(--go2-color-border);
}

@media screen and (min-width: 768px) and (max-width: 854px) {
	
	.select-wrapper {
		width: 100px !important;
	}
	
	#thsform select, #thsform input, #thsform textarea {
		font-size: 0.5rem !important;
	}
	
}

@media screen and (min-width: 1101px) and (max-width: 1350px) {
	
	#main a.btn {
		width: 250px;
	}
	
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
	
	#main a.btn {
		width: 150px;
	}
	
}

@media screen and (min-width: 769px) and (max-width: 1250px) {
	
	#wohnungsspiegelbox h3 {
		font-size: 20px;
		line-height: 26px;
	}
	
	#main #wohnungsspiegelbox a.btn {
		width: 170px;
		padding: 10px;
	}
	
}

@media screen and (min-width: 769px) and (max-width: 1250px) {

	#wohnungsspiegelbox td {
		font-size:11px !important;
	}
	
	#wohnungsnavigation td, #wohnungsnavigation a, #wohnungsnavigation span, #wohnungsnavigation a span.kopfgross {
		font-size:10px !important;
		line-height: 14px !important;
	}
	
	#wohnungsspiegelbox td:nth-child(8) span.kopfgross {
		display: none;
	}

	#wohnungsspiegelbox td:nth-child(8) span.kopfklein {
		display: block;
	}
	
	#main a.btn {
		text-transform: uppercase;
		display: inline-block;
		height: auto;
		padding: 10px;
		font-size: 11px;
	}
	
	h3 {
		font-size: 11px;
		line-height: 1.3rem;
	}
	
	img.tooltip {
		width: 11px;
		height: 11px;
	}
}

@media screen and (min-width: 1069px) and (max-width: 1250px) {

	:root {
		--go2-grid-height: 165px;
		--go2-grid-padding-top: 10px;
		--go2-table-sticky-gap: 10px;
	}

  #gitternetztop {
	padding-top: 10px;
	padding-bottom: 10px;
  }

  #gitternetzbox {
	height: 165px;
	margin-left: 20px;
  }

  #wohnungsspiegelbox > table:first-of-type {
	top: 185px;
	z-index: 35;
  }

  #wohnungsnavigation td {
	padding-top: 8px;
	padding-bottom: 8px;
	vertical-align: middle;
  }
}

@media screen and (min-width: 769px) and (max-width: 960px) {
	#wohnungsspiegelbox tr.zeileeinheit td:nth-child(9), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(9) {
		padding-right: 3px;
	}
	#wohnungsspiegelbox tr a img {
		height: 12px !important;
	}
}

@media screen and (max-width: 854px) {
	
	#wohnungsspiegelbox td {
		font-size:8px !important;
		line-height: 11px !important;
	}
	#wohnungsnavigation td, #wohnungsnavigation a, #wohnungsnavigation span, #wohnungsnavigation span.kopfgross, #wohnungsnavigation span.kopfklein {
		font-size: 8px !important;
		line-height: 11px !important;
		font-weight: bold !important;
	}

}

@media screen and (max-width: 768px) {

	:root {
		--go2-grid-height: 115px;
		--go2-grid-padding-top: 10px;
		--go2-table-sticky-gap: 8px;
	}
	#main a {
		font-size: 18px;
	}
	
	#go2wohnungsspiegel {
		height: auto !important;
		min-height: 100vh;
		position: relative;
	}
	
	#gitternetzleft {
		display: none;
	}
	
	#gitternetztop {
		display: block;
		position: sticky;
		position: -webkit-sticky;
		top: 0;
		z-index: 40;
		padding-top: 10px;
		padding-bottom: 8px;
		margin: 0 -10px 0 -10px;
		background: var(--go2-color-text);
	}
	
	#gitternetzbox {
		margin-left: 0;
		background-size: contain !important;
		background-position: center top !important;
	}
	
	#wohnungsspiegelbox > table:first-of-type {
		position: sticky;
		position: -webkit-sticky;
		z-index: 35;
		background: var(--go2-color-bg);
	}
	
	#wohnungsspiegelbox > table:first-of-type::before {
		background: var(--go2-color-bg);
		height: calc(100% + 10px);
	}
	
	  #wohnungsspiegelbox > table:first-of-type::after {
		width: calc(100% + 5.3%);
	}
	
	#gitternetzright {
		width: 100%;
		max-width: 100%;
		overflow-x: visible;
	}
	
	#wohnungsspiegelbox {
		margin-bottom: 0;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.PP .accordionrechts {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	#wohnungsspiegelbox td span.kopfgross {
		display: none;
	}
	#wohnungsspiegelbox td span.kopfklein {
		display: block;
	}

	#container-inside {
		padding: 10px 5px !important;
	}
	.select-wrapper {
		clear: both;
		float: none;
		margin: 10px 10px 5px 0 !important;
	}
	.select-wrapper.last {
		margin-bottom: 30px !important;
	}
	#wohnungsspiegelbox tr a img {
		height: 12px !important;
	}
	#wohnungsspiegelbox td:nth-child(8) span.kopfgross {
		display: none;
	}
	#wohnungsspiegelbox td:nth-child(8) span.kopfklein {
		display: block;
	}
	.ce_accordion .accordion {
		padding: 10px !important;
	}
	
	#main h3, #main a.btn {
		font-size: 11px;
		line-height: 1.3rem;
	}
	
	#main .accordionlinks, #main .accordionrechts {
		width: 100%;
		float: none;
	}
	
	#main a.btn {
		width: 200px;
		padding: 10px;
	}
	
	img.tooltip {
		width: 11px;
		height: 11px;
		position: absolute;
		top: -8px;
	}
	
	#wohnungsnavigation td {
		vertical-align: top;
		padding-right: 10px;
	}
	
	#wohnungsspiegelbox h3 {
		font-size: 18px;
		line-height: 24px;
	}
	
	#main #wohnungsspiegelbox a.btn {
		width: 170px;
		padding: 10px;
	}
}

@media screen and (min-width: 430px) and (max-width: 768px) {

	[class*="hint--"]:after {
		font-size: 7px !important;
	}
	.hint--bottom:hover:after {
		-webkit-transform: translateX(-30%) translateY(8px) !important;
		-moz-transform: translateX(-30%) translateY(8px) !important;
		transform: translateX(-30%) translateY(8px) !important;
	}

}

/* Wohnungsspiegel Sticky-Optimierung */

/* Mobile quer / grössere Smartphones: 430–768px */
@media screen and (min-width: 430px) and (max-width: 768px) {

	:root {
		--go2-grid-height: 115px;
		--go2-grid-padding-top: 10px;
		--go2-table-sticky-gap: 8px;
	}

  #gitternetztop {
	display: block;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 40;
	padding-top: 10px;
	padding-bottom: 8px;
	background: var(--go2-color-text);
  }

  #gitternetzbox {
	margin-left: 0;
	background-size: contain !important;
	background-position: center top !important;
  }
  
  #wohnungsnavigation td:nth-child(1),
	#wohnungsspiegelbox tr.zeileeinheit td:nth-child(1),
	#wohnungsspiegelbox tr.zeileverkauft td:nth-child(1) {
	  padding-left: 2px;
	}
  
	#wohnungsspiegelbox .inside {
	  padding-left: 0;
	}
  
	#wohnungsspiegelbox {
	  padding-left: 5px;
	  padding-right: 5px;
	}

  #wohnungsspiegelbox > table:first-of-type {
	position: sticky;
	position: -webkit-sticky;
	z-index: 35;
	background: var(--go2-color-text);
  }
  
  #wohnungsspiegelbox .ce_accordion .toggler {
	  position: relative;
	  padding-right: 0;
	  min-height: 58px;
	  display: flex;
	  align-items: center;
	  margin: 0;
	  background-position: bottom left;
	}
  
	#wohnungsspiegelbox .ce_accordion .toggler table {
	  width: 95%;
	}
  
	#wohnungsspiegelbox tr.zeileeinheit td,
	#wohnungsspiegelbox tr.zeileverkauft td {
	  padding-top: 0;
	  padding-bottom: 0;
	  vertical-align: middle;
	}
  
	#wohnungsspiegelbox .ce_accordion .toggler::before {
	  display: block;
	  position: absolute;
	  right: 0;
	  top: 50%;
	  transform: translateY(-50%);
	  z-index: 5;
	  line-height: 1;
	}
}


/* Tablet / schmale Desktopbreite: 769–854px */
@media screen and (min-width: 769px) and (max-width: 854px) {

	:root {
		--go2-grid-height: 170px;
		--go2-grid-padding-top: 20px;
		--go2-table-sticky-gap: 10px;
	}

  #go2wohnungsspiegel {
	  height: auto !important;
	  min-height: 100vh;
	  position: relative;
	}
  
  #gitternetztop {
	display: block;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 40;
	padding-top: 20px;
	padding-bottom: 10px;
	background: var(--go2-color-text);
  }

  #gitternetzbox {
	margin-left: 20px;
	background-size: contain !important;
	background-position: left top !important;
  }

  #wohnungsspiegelbox > table:first-of-type {
	position: sticky;
	position: -webkit-sticky;
	z-index: 35;
	background: var(--go2-color-text);
  }

  #wohnungsspiegelbox > table:first-of-type::before {
	width: calc(100% + 6%);
	height: calc(100% + 8px);
	background: var(--go2-color-text);
  }

  #wohnungsspiegelbox > table:first-of-type::after {
	width: calc(100% + 5.3%);
  }
}

@media screen and (max-width: 429px) {

	:root {
		--go2-grid-height: 90px;
		--go2-grid-padding-top: 10px;
		--go2-table-sticky-gap: 8px;
	}
	
	#gitternetzbox {
	}
	
	#wohnungsspiegelbox > table:first-of-type {
	}
	
	#wohnungsspiegelbox td, #wohnungsspiegelbox div b {
		font-size: 7px !important;
		line-height: 11px !important;
		hyphens: auto;
		-webkit-hyphens: auto;
	}
	
	#wohnungsnavigation td, #wohnungsnavigation a, #wohnungsnavigation span, #wohnungsnavigation span.kopfgross, #wohnungsnavigation span.kopfklein {
		font-size: 7px !important;
		line-height: 11px !important;
		font-weight: bold !important;
	}
	
	#wohnungsspiegelbox td:nth-child(8) {
		padding-right: 0;
	}
	
	.fortinyscreens {
		display: block;
	}
	
	#wohnungsnavigation td {
		line-height: 0.7rem !important;
		vertical-align: top;
	}
	
	#wohnungsspiegelbox tr.zeileeinheit td:nth-child(8), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(8) {
		padding-right: 2px;
	}
	
	#wohnungsspiegelbox tr.zeileeinheit td:nth-child(9), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(9) {
		padding-right: 2px;	
	}
	
	#main #wohnungsspiegelbox tr a img {
		height: 11px;
	}
	
	img.tooltip {
		position: static;
	}
	
	#main .ce_accordion .toggler {
		margin-top: -20px;
	}
	
	#main .ce_accordion .toggler:before {
		right: -6px;
		top: 28px;
	}
	
	#wohnungsspiegelbox tr.zeileeinheit td, #wohnungsspiegelbox tr.zeileverkauft td {
		padding: 10px 0 20px;
		line-height: 1rem;
	}
	
	#wohnungsspiegelbox tr.zeileeinheit td:nth-child(1), #wohnungsspiegelbox tr.zeileverkauft td:nth-child(1), #wohnungsnavigation td:nth-child(1) {
		padding-left: 2px;
	}
	
	#wohnungsnavigation td:nth-child(2), #wohnungsspiegelbox tr.zeileeinheit td:nth-child(2) {
		width: 15% !important;
	}
	
	#wohnungsnavigation td:nth-child(8), #wohnungsspiegelbox tr.zeileeinheit td:nth-child(8) {
		width: 25% !important;
	}
	
	.zeileeinheit td {
		vertical-align: top;
	}

}
/* Akkordeon
---------------------------------------- */
.ce_accordion {
  margin: 0;
  padding: 0;
  border: 0;
}

.ce_accordionSingle {
	margin-top: 0;
}

.ce_accordion .toggler:before {
	right: 10px;
	top: 7px;
	position: relative;
}
.ui-accordion-header-icon {
	display: none;
}
.ce_accordion .toggler {
  padding: 0;
  margin: -3px 0 0 0;
  background: transparent url('../img/border.svg') repeat-x;
  background-position: bottom left;
  background-size: auto 1px;
  line-height: 18px;
}
.ce_accordion .toggler.ui-accordion-header-active {
	background-color: var(--go2-color-row-active);
}
.ce_accordion .toggler:hover {
  background-color: var(--go2-color-row-hover);
  color: var(--go2-color-text);
}
.ce_accordion .ui-accordion-header-active {
  background-color: var(--go2-color-row-active);
  color: var(--go2-color-text);
}
.toggler.ui-accordion-header-active:hover {
  background-color: var(--go2-color-row-active);
  color: var(--go2-color-text);
}
.ce_accordion .toggler.ui-state-active {
	border-bottom: 0;
	color: var(--go2-color-text);
}
.ce_accordion .toggler.ui-state-active:before {
  color: var(--go2-color-text);
}
.ce_accordion .accordion {
	background-color: var(--go2-color-row-active);
	padding: 30px 40px;
}
.accordionlinks{
	width: 40%;
	float: left;
	font-weight: 400;
	padding-right: 100px;
}

.PP .accordionlinks {
	width: 0;
}

.PP .accordionlinks a.btn {
	display: none !important;
}

.accordionrechts{
	width: 60%;
	float: left;
}

.PP .accordionrechts {
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
}

.ce_accordion .accordion a {
	display: block;
	width: 180px;
	height: 50px;
	background-color: transparent;
	text-align: center;
	padding-top: 15px;
	margin-top: 10px;
}

body, .body, .contentwrapper, #wrapper, #container, #main, .inside, .mod_article, .container {
	overflow: visible !important;
	height: auto !important;
} 

/**********************************************************************************
Formular
**********************************************************************************/
#thsform.formbox{
	float: left;
	width: 100%;
	display: block;
}
#thsform select, #thsform input, #thsform textarea {
	border: 1px solid var(--go2-color-white);
	font-size: 0.7rem;
	line-height: 1rem;
	font-weight: 500;
}
#thsform .select-wrapper {
	  width: 140px;
	  height: 32px;
	  float: left;
	  margin: 15px 30px 30px 0;
}
#thsform select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	width: 140px;
	-moz-padding-start: calc(10px - 3px);
	box-shadow: none;
	border-radius: 5px;
	outline: none;
	cursor: pointer;
	height: 35px;
	background: var(--go2-color-select);
	font-size: 11px;
	color: var(--go2-color-black);
}
#thsform .select-wrapper::after {
	font-family: FontAwesome;
	content: "\f107";
	font-size: 15px;
	position: relative;
	right: -115px !important;
	top: -31px;
	color: var(--go2-color-black);
	pointer-events: none;
}
select::-ms-expand {
	display: none;
}
select option {
	color: #666;
}
select:focus::-ms-value {
	background-color: transparent;
}
#thsform form {
	padding:0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	}
#thsform form label{
	height: 20px;
	float:left;
	margin-top: 5px;
	margin-bottom: 5px;
	width: 180px;	
	display: none;
}
#thsform form input, #thsform form textarea{
	background-color: var(--go2-color-field);
	width:auto;
}
#thsform form input[type="text"]{
	width: 100%;
	height: 50px;
}
#thsform form input[type="text"]:focus{
	border: 1px solid var(--go2-color-dark);
	box-shadow: none;
}
#thsform form textarea{
	width: 100%;
	height: 150px;
}
#thsform form input:focus, #thsform form textarea:focus{
box-shadow:inset 1px 1px 2px #666;
}
#thsform form .text{
	width: 300px;
}
#thsform form .textarea{
	width: 400px;
	border: 1px solid var(--go2-color-black);
	background-color: #f0f0f0;
	height: 60px;
}
#thsform form .submit{
	background: var(--go2-color-dark);
	width: auto;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
}
#thsform form .submit[type="submit"]:hover {
	background: var(--go2-color-dark);
	opacity: 0.7;
}
#thsform p.error, #thsform label.error{
	color: var(--go2-color-error);
	margin: 0;
	padding: 0px;
	height: 8px;
	font-weight: bold;
}
#thsform label.error{
	margin-top: 8px;
}
#thsform input.error{
	border: 1px solid var(--go2-color-error);
}
.usermessage {
	font-weight: bold;
	color: var(--go2-color-error-dark);
	padding: 5px;
	border: 1px solid var(--go2-color-error-border);
}

/**********************************************************************************
ToolTip
**********************************************************************************/
/*! Hint.css (base version) - v2.7.0 - 2021-10-01
* https://kushagra.dev/lab/hint/
* Copyright (c) 2021 Kushagra Gour */

/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*="hint--"] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */
  /**
	 * tooltip body
	 */ }
  [class*="hint--"]:before, [class*="hint--"]:after {
	position: absolute;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	visibility: hidden;
	opacity: 0;
	z-index: 1000000;
	pointer-events: none;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	transition: 0.3s ease;
	-webkit-transition-delay: 0ms;
	-moz-transition-delay: 0ms;
	transition-delay: 0ms; }
  [class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
	visibility: visible;
	opacity: 1; }
  [class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
	-webkit-transition-delay: 100ms;
	-moz-transition-delay: 100ms;
	transition-delay: 100ms; }
  [class*="hint--"]:before {
	content: '';
	position: absolute;
	background: transparent;
	border: 6px solid transparent;
	z-index: 1000001; }
  [class*="hint--"]:after {
	background: var(--go2-color-tooltip);
	color: var(--go2-color-white);
	padding: 8px 10px;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 12px;
	white-space: nowrap; }
  [class*="hint--"][aria-label]:after {
	content: attr(aria-label); }
  [class*="hint--"][data-hint]:after {
	content: attr(data-hint); }

[aria-label='']:before, [aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: var(--go2-color-tooltip); }

.hint--top-right:before {
  border-top-color: var(--go2-color-tooltip); }

.hint--top:before {
  border-top-color: var(--go2-color-tooltip); }

.hint--bottom-left:before {
  border-bottom-color: var(--go2-color-tooltip); }

.hint--bottom-right:before {
  border-bottom-color: var(--go2-color-tooltip); }

.hint--bottom:before {
  border-bottom-color: var(--go2-color-tooltip); }

.hint--left:before {
  border-left-color: var(--go2-color-tooltip); }

.hint--right:before {
  border-right-color: var(--go2-color-tooltip); }

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px; }

.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }

.hint--top:before {
  left: calc(50% - 6px); }

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--top:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px; }

.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%; }

.hint--bottom:before {
  left: calc(50% - 6px); }

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

.hint--bottom:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px; }

.hint--right:after {
  margin-bottom: -14px; }

.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%; }

.hint--right:hover:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--right:hover:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px; }

.hint--left:after {
  margin-bottom: -14px; }

.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%; }

.hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--left:hover:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px; }

.hint--top-left:before, .hint--top-left:after {
  bottom: 100%;
  left: 50%; }

.hint--top-left:before {
  left: calc(50% - 6px); }

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

.hint--top-left:after {
  margin-left: 12px; }

.hint--top-left:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px; }

.hint--top-right:before, .hint--top-right:after {
  bottom: 100%;
  left: 50%; }

.hint--top-right:before {
  left: calc(50% - 6px); }

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.hint--top-right:after {
  margin-left: -12px; }

.hint--top-right:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--top-right:hover:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px; }

.hint--bottom-left:before, .hint--bottom-left:after {
  top: 100%;
  left: 50%; }

.hint--bottom-left:before {
  left: calc(50% - 6px); }

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

.hint--bottom-left:after {
  margin-left: 12px; }

.hint--bottom-left:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px; }

.hint--bottom-right:before, .hint--bottom-right:after {
  top: 100%;
  left: 50%; }

.hint--bottom-right:before {
  left: calc(50% - 6px); }

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

.hint--bottom-right:after {
  margin-left: -12px; }

.hint--bottom-right:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--bottom-right:hover:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word; }

.hint--small:after {
  width: 80px; }

.hint--medium:after {
  width: 150px; }

.hint--large:after {
  width: 300px; }

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }

.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

.hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--top-right:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px); }

.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

.hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--bottom-right:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px); }

.hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--left:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px); }

.hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }

.hint--always.hint--right:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px); }


