/** ConfTool Custom CSS File **/

/* hanken-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/hanken-grotesk-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* hanken-grotesk-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/hanken-grotesk-v12-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/** CSS variables for navbar colours **/
:root {
  --navbar-bg: #f79508;
  --navbar-bg-hover: #d8052e;
  --navbar-text: #ffffff;
  --navbar-text-hover: #ffffff;
  --navbar-main-border: transparent;
  --navbar-border: #ffffff;
  --header-bg: #fce4c6;
  --header-height: 161px;
  --title: #000000;
  --subtitle: #ff6614;
  --subtitle2: #ff6614;
  --button-radius: 3px;
  --button-main: #f79508;
}

/** Main Background **/
body {
  margin: 0; /**/
  padding: 0; /**/
  min-height: 100vh; /* stretch bg to full height of window. /**/
  background: linear-gradient(
    180deg,
    var(--header-bg) 0px,
    var(--header-bg) var(--header-height),
    var(--navbar-bg) var(--header-height),
    var(--navbar-bg) calc(var(--header-height) + 40px),
    #ffffff calc(var(--header-height) + 40px),
    #ffffff 100%
  ); /**/
  /*  background-size: auto, 1000px; /**/
  /*  background-attachment: scroll, scroll; /**/
}

/*@media only screen and (min-width: 1000px) {
	body {
		background-size: auto, 100%;  
	}
}/**/

/** Link Colors **/
a:link,
.link_button_logout {
  color: #d8072e;
}
a:visited {
  color: #90051f;
}
a:active {
  color: #f79508;
}
a:hover {
  color: #f79508;
}
/**/

/** Higher main navigation bar **/
.cthead_a,
.link_button_logout,
.navbar_item {
  color: var(--navbar-text) !important;
  transition: all 0.2s ease-in-out;
}
.navbar {
  background: var(--navbar-bg);
  border: 0 solid var(--navbar-main-border);
  width: 100%;
}
.navbar_elements {
  transition: all 0.2s ease-in-out;
}
.navbar_elements_hover:hover {
  background: var(--navbar-bg-hover);
}
.navbar_elements_hover:hover .cthead_a,
.navbar_elements_hover:hover .link_button_logout,
.navbar_elements_hover:hover .navbar_item {
  color: var(--navbar-text-hover) !important;
}
.navbar_elements {
  border-right: 1px solid var(--navbar-main-border);
}
.navbar_elements_right {
  border-right: 0;
  border-left: 1px solid var(--navbar-main-border);
} /**/

/* Define border of session navbar independently of main navbar /**/
.navbar_sessions_table {
  background: var(--navbar-bg);
  border: 1px solid var(--navbar-border) !important;
  width: 100%;
}
.navbar_sessions_table .navbar_elements,
.navbar_sessions_table .navbar_elements_td {
  border-right: 1px solid var(--navbar-border);
}
.navbar_sessions_table .navbar_elements_right {
  border-left: 1px solid var(--navbar-border);
}
.navbar_sessions {
}
.navbar_elements_td {
  transition: all 0.2s ease-in-out;
}
.navbar_elements_td:hover {
}

/* Define borders of admin navbar independently of main navbar /**/
.navbar_adminSessions {
  background: var(--navbar-bg);
  border: 1px solid var(--navbar-border) !important;
  width: 100% !important;
}
.navbar_adminSessions .navbar_elements,
.navbar_adminSessions .navbar_elements_td {
  border-right: 1px solid var(--navbar-border);
  border-left: 0;
}
.navbar_adminSessions .navbar_elements_right {
  border-left: 1px solid var(--navbar-border);
}
.navbar_adminSessions td {
  padding-top: 5px !important;
}
.navbar_adminSessions td:hover {
}
.navbar_adminSessions td:last-child {
  border-right: none;
} /**/

#session_search_wrapper {
  margin-right: 0;
}

/** Sub navigation bar with breadcrumbs /**/
.navbar_breadcrumb {
  /*	border: 1px solid #d2d2d2; /**/
  /*  border-top: none; /**/
  /*	background: #fafafa; /**/
  /*	margin-top: 0; /**/
} /**/

/** Footer navigation bar /**/
/* .navbar_footer {
    border: 1px solid #d2d2d2;
    background: #fafafa;
    border-radius: 2px;
} /**/

/** Login Page **/
.tbldialog {
  background: #ffffff;
} /**/
.td_dlg_title {
  background: #d8072e;
} /**/
.td_dlg_title h3 {
  color: #ffffff;
} /**/
/*	.login_main_div {width: 770px;} /* min 770px /**/

/** Color of Form Separator - White Text! /**/
.form_td_separator_gradient,
.infoview_sep {
  background: #d8072e;
} /**/
.form_separator_label {
  color: #ffffff;
} /**/

.form_td_separator_gradient.form_td_spacer {
  background: #104853;
}

.form_tr_separator > .form_td_subseparator_left:not(.form_td_spacer2) {
  background: #d8072e;
}

/* Image above login title /**/
.login_title {
  padding: 0 !important;
} /**/

.login_title_image,
.login_title_image:before {
  content: url(bg-login.jpg); /**/
  width: 100%; /**/
  /*	padding-bottom: 10px; /**/
  /*	width: 250px; /**/
  /*	margin: 15px 0 25px calc(50% - 125px); /**/
} /**/

/* If you want to hide it on small screens /**/
/*	@media only screen and (max-width: 750px) {
	.login_title_image, 	
	.login_title_image:before {
	content: none}
} /**/

/** Colours for Lists and Details Pages. Please do NOT use Gray or Red. /**/

.oddrow {
  background-color: #f6f4f7;
}
.evenrow {
  background-color: #eceaf0;
}
.oddrow_highlight {
  background-color: #e3dfe8;
}
.evenrow_highlight {
  background-color: #e3dfe8;
}
/**/

/** Modern Inverted Buttons **/
input.button,
button.button,
.smallbutton,
.tinybutton,
.fakeButton {
  color: #fff;
  background: var(--button-main);
  border: 2px solid var(--button-main);
  border-radius: var(--button-radius);
  transition: all ease-in-out 0.2s;
}
input.button:hover,
button.button:hover,
.smallbutton:hover,
.tinybutton:hover,
.fakeButton:hover {
  box-shadow: none !important;
  background: white;
  color: var(--button-main);
}
.button_cancel {
  border: 2px solid #666 !important;
  background: #666 !important;
  color: white !important;
}
.button_cancel:hover {
  border: 2px solid #666 !important;
  background: white !important;
  color: #666 !important;
}
.button_clear {
  border-radius: var(--button-radius);
  border: 2px solid #c82333;
  background: white;
  color: #c82333;
}
.button_clear:hover {
  box-shadow: none !important;
  border: 2px solid #c82333;
  background: #c82333;
  color: white;
}
.waitbutton {
  border-radius: var(--button-radius);
  border: 2px solid #e5e0da !important;
  background: #e5e0da !important;
  color: #7c7872 !important;
} /**/

/** With of centered outer content area including the padding /**/
.main {
  width: 920px;
} /* 900 + 10 + 10 (padding of #main_box) +2 auto padding of #below_siteheader */

/** Outer box for CSS border and padding. /**/
#main_box {
  /*	background: #ffffff; /**/
  /* background: none; /**/
  /* margin: 0; /**/
  padding: 0 10px 10px 10px;
  /* border: 1px solid #cccccc; /**/
  /* border-radius: 8px; /**/
  /* box-shadow: 0 1px 6px #999999; /**/
}

/* inner box, usually do not change this /**/
/* .main_elements {width: auto;} /**/

/* Inner area from #main_box w/o padding /**/
.mainbg {
  background: none;
}

/* below_siteheader: a box with all elements below the siteheader /**/
#below_siteheader {
  /*	background: #ffffff; /**/
}

/* @media only screen and (max-width: 900px) {
	#below_siteheader  {
	margin-left: 0;
	}
}/**/

/* Content area: All that belongs to the page without upper and lower navigation bars /**/
#inner_content {
  /*	background: #ffffff; /**/
  padding-top: 3px;
} /**/

/* Main div for siteheader */
#siteheader {
  height: var(--header-height); /**/
  display: flex;
  align-items: center;
  background: none;
  width: 100%;
}
#siteheader #left {
  display: block;
  width: 300px;
  padding-right: 50px;
  text-align: left;
  /*	align-self: flex-start; /**/
}
#siteheader #left img {
  width: 300px;
}
#siteheader #center {
  /* der center-container nimmt den verfügbaren Platz ein /**/
  width: auto;
  flex-grow: 3;
  text-align: left;
  font-family: "Hanken Grotesk", Arial, Helvetica, sans-serif;
  /*	text-shadow: 0px 0px 1px #000000, 0px 0px 12px #000000; /**/
}
#siteheader #center .title {
  margin: 0;
  margin-top: -10px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
#siteheader #center .title a {
  color: var(--title);
}
#siteheader #center .subtitle,
#siteheader #center .subtitle a {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--subtitle);
}
#siteheader #center .subtitle2,
#siteheader #center .subtitle2 a {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--subtitle2);
}
#siteheader #right {
  display: block;
  width: 140px;
  padding-left: 20px;
  text-align: right;
}
#siteheader #right img {
  width: 140px;
}

/* Falls es nur ein headerbild gibt, siteheader-image.inc.php verwenden /**/
#siteheaderimage {
  height: var(--header-height); /**/
  /*	text-align: center; /**/
}
#siteheaderimage img {
  /*	width: auto; /**/
  /*	max-width: 100%; /**/
  height: var(--header-height); /**/
  /*	height: 150px; /**/
}

/* CSS for sitefooter /**/
/* #sitefooter {
	height: auto;
	text-align: center;
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid #d2d2d2;
} /**/
#sitefooter img {
  /*	max-width: 60%; /**/
}
/* #sitefooter img:nth-of-type(2n) {
/*	margin-top: 20px; /**/
/*	padding-top: 10px; /**/
/* } /**/

/* Some experts settings, block can usually be deleted ---------------------------------------------- */

/* Highlight links on "submissions" page /**/
/* a.link_newpaper{text-decoration: underline;} /**/

/* Show Checkboxes of submission form (topics) in 2 columns /**/
/* @media screen and (min-width: 600px){
  form[name=submission] #submission_topics .form_checkboxes_div fieldset { or
  form[name=submission] #submission_topic_group_1 .form_checkboxes_div fieldset {
      column-count: 2;
}
} /**/

/* Booking text blocks of statements and invoices /**/
/* .bookings_eventtype {display: inline-block; padding-top: 4px;} /**/
/* .bookings_event {} /**/
/* .bookings_date {} /**/
/* .bookings_date_personal {} /**/
/* .bookings_location {} /**/
/* .bookings_info {color: #555555;} /**/
/* .bookings_stay {} /**/
/* .bookings_hint {} /**/

/** Colours for the registration form
#participate_eventtype3 tr td:first-child {border-left: 5px solid #6688ff;}
#participate_eventtype3 tr td {box-shadow: inset 0 0 5000px rgba(102,136,255,0.15);} /**/

/** Modify size of Logos for Invoice and Fax Statement /**/
/*
.invoice_logo{
  max-width: 640px;
  max-height: 80px;
}
/**/
