/* ----------------------------------------------- */
/* Fonts */
/* ----------------------------------------------- */

/* ----------------------------------------------- */
/* Sansation - freeware font family (https://www.dafont.com/sansation.font)
/* ----------------------------------------------- */
@font-face {
  font-family: 'Sansation_Regular';
  src: url('fonts/sansation/Sansation_Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Sansation_Light';
  src: url('fonts/sansation/Sansation_Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Sansation_Bold';
  src: url('fonts/sansation/Sansation_Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}



/* ----------------------------------------------- */
/*  Font Awesome free Version 6.7.2  (https://github.com/FortAwesome/Font-Awesome, https://www.fontawesome.com) */
/* ----------------------------------------------- */
/* fa-solid */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url('fonts/font-awesome-6-7-2/fa-solid-900.woff2') format('woff2'),
         url('fonts/font-awesome-6-7-2/fa-solid-900.ttf') format('truetype');
}

/* fa-regular */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('fonts/font-awesome-6-7-2/fa-regular-400.woff2') format('woff2'),
         url('fonts/font-awesome-6-7-2/fa-regular-400.ttf') format('truetype');
}

/* fa-brands */
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('fonts/font-awesome-6-7-2/fa-brands-400.woff2') format('woff2'),
         url('fonts/font-awesome-6-7-2/fa-brands-400.ttf') format('truetype');
}

.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
}

.fa-regular {
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-style: normal;
}

.fa-brands {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    font-style: normal;
}



/* ----------------------------------------------- */
/* Stilvorlagen */
/* ----------------------------------------------- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Sansation_Regular', Arial, sans-serif;
  line-height: 1.3;
  color: #333;
}

p, li {
  font-size: 16px;
}


.grey_top, .grey_bottom {
  display: block;
  width: 100%;
}
.grey {
  width: 100%;
  margin: 0;
  background-color: #C8C8C8;
  line-height: 0;
}

.center {
  display: flex;
  justify-content: center;
}
.center_inner {
  flex: 0 1 auto;
  width: 1030px;
  max-width: 1030px;
}



/* ----------------------------------------------- */
/* IE-Message bei IE <= 9 */
/* ----------------------------------------------- */
#ie_message {
  margin: 10px;
  padding: 10px;
  border: 2px solid #F11924;
  border-radius: 10px;
  background-color: #fff;
}
#ie_message h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #F11924;
}
#ie_message p {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  color: #333;
}



/* ----------------------------------------------- */
/* HEADER */
/* ----------------------------------------------- */
#header {
  height: 70px;
  border-bottom: 2px solid #ea661e;
}
#header.greyLine {
    border-bottom: 2px solid #999;
}


#header_inner {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

#logo {
  flex: none;
  height: 56px;
  width: 250px;
  margin-top: 7px;
  margin-left: 10px;
}

/* NAVI Dekstop */
#navi {
  flex: 1 0 auto;
  margin-right: 10px;
}
#navi ul {
  margin: 26px 0 0 0;
  padding: 0;
  height: 20px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
#navi ul li {
  flex: none;
  display: flex;
  padding: 0 20px;
}
#navi ul li:first-child { padding-left: 0; }
#navi ul li:last-child { padding-right: 0; }

#navi ul li a {
  flex: 0 1 auto;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  text-align: right;
}
#navi ul li a:hover {
  color: #000;
  text-decoration: underline;
}

/* NAVI Mobile */
@media screen and (max-width: 900px) {
  #navi {
    flex: none;
    position: relative;
    height: 40px;
    width: 40px;
    margin-top: 14px;
    border-radius: 4px;
    background-color: #444;
    color: #fff;
    cursor: pointer;
  }
  #navi:before {
    content: url(img/menu.png);
  }
  #navi ul {
    display: none;
    position: absolute;
    top: 40px;
    left: -140px;
    margin: 0;
    width: 180px;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
  }
  #navi:hover, #navi:focus {
    border-radius: 4px 4px 0 0;
  }
  #navi:hover ul, #navi:focus ul {
    display: flex;
  }
  #navi:focus-within {
    border-radius: 4px 4px 0 0;
  }
  #navi:focus-within ul {
    display: flex;
  }
  #navi ul li {
    flex: 1 1 auto;
    padding: 0;
  }
  #navi ul li a {
    width: 180px;
    padding: 4px 10px;
    background-color: #444;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #888;
  }
  #navi ul li:first-child  a { border-radius: 4px 0 0 0; }
  #navi ul li:last-child  a { border-radius: 0 0 4px 4px; border-bottom: 0; }
  #navi ul li a:hover {
    background-color: #666;
    color: #fff;
    text-decoration: none;
  }
}



/* ----------------------------------------------- */
/* VIDEO */
/* ----------------------------------------------- */
#video {
  width: 100%;
}

#video .video_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-image: linear-gradient(#0056ca, #009bd1);
}
#video .video_gradient_l {
  flex: none;
  width: 61px;
  background: url(img/video_gradient_l.png) right top repeat;
}
#video #video_video {
  flex: none;
  display: block;
  height: 100%;
  width: 100%;
  max-width: 1030px;
}
#video .video_gradient_r {
  flex: none;
  width: 61px;
  background: url(img/video_gradient_r.png) left top repeat;
}
#video .video_arch_orange {
  position: relative; /* chrome-murgs */
  display: block;
  margin-top: -6.3%;
  width: 100%;
}
/* Verlaufsbilder unter einer bestimmten Screebreite ausblenden */
@media screen and (max-width: 1170px) {
  #video .video_container {
    background: #0C5687;
  }
  #video .video_gradient_l, #video .video_gradient_r  {
    display: none;
  }
}



/* ----------------------------------------------- */
/* ZITAT */
/* ----------------------------------------------- */
#zitat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 30px 0 20px 0;
}
#zitat q {
  flex: 0 1 350px;
  display: block;
  padding: 9px 14px 13px 0;
  quotes: '' '' '' '';
  font-size: 30px;
  font-weight: normal;
  font-style: italic;
  text-align: center;
}
#zitat .zitat_start {
  flex: none;
  display: flex;
  align-items: flex-start;
  width: 74px;
}
#zitat .zitat_end {
  flex: none;
  display: flex;
  align-items: flex-end;
  width: 74px;
}
#zitat .zitat_start img {
  flex: none;
  margin: 0 0 0 10px;
}
#zitat .zitat_end img {
  flex: none;
  margin: 0 10px 0 0;
}



/* ----------------------------------------------- */
/* HOME */
/* ----------------------------------------------- */
#home{
  
}

#home .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
  margin: 0 0 10px 0;
}

#home h1 {
  margin: 22px 0 14px 0;
  font-size: 25px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  color: #fff;
}

#home .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#home .column {
  flex: 1 1 280px;
  margin: 8px 17.5px;
  padding: 45px 0 0 0;
}

#home .box {
  height: 100%;
  width: 100%;
  padding: 20px 20px 30px 20px;
  border-radius: 10px;
  background-color: #fff;
}
#home .box img {
  display: block;
  width: 90px;
  margin: -65px auto 0 auto;
}

#home .box h2 {
  margin: 10px 0 16px 0;
  font-size: 22px;
  font-weight: bold;
  font-style: italic;
  color: #999;
}

#home .box p {
  margin-bottom: 1em;
}



/* ----------------------------------------------- */
/* MODULE */
/* ----------------------------------------------- */
#module {
  margin: 20px 0 30px 0;
}

#module .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
}

#module h1 {
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  color: #999;
}


#module .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#module .column {
  flex: 1 1 280px;
  margin: 8px 17.5px;
  padding: 0 0 0 0;
}


#module .module_list {
  margin: 0 17.5px 10px 17.5px;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
}

#module .module_list h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: normal;
}

#module .module_list ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 10px;
}

#module .module_list li {
  flex: 1 1 32%;
  min-width: 300px;
  width: 328.5px;
  border-radius: 10px;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
/* IE: wir lieben Dich */
@media (-ms-high-contrast: none) {
  #module .module_list li {
    flex: 0 1 308px;
  }
}

#module .grundmodul   { color: #F15A24; border-color: #F15A24; }
#module .hauptmodul   { color: #006837; border-color: #006837; }
#module .zusatzmodul { color: #005BBF; border-color: #005BBF; }
#module .smilemodul   { color: #F3971B; border-color: #F3971B; }
#module .schnittstelle   { color: #8e8e8e; border-color: #8e8e8e; }
#module .cloudhosting   { color: #636363; border-color: #636363; }


#module .module_list.grundmodul h3   { color: #F15A24; }
#module .module_list.hauptmodul h3   { color: #006837; }
#module .module_list.zusatzmodul h3 { color: #005BBF; }
#module .module_list.smilemodul h3   { color: #F3971B; }
#module .module_list.schnittstelle h3   { color: #8e8e8e; }
#module .module_list.cloudhosting h3   { color: #636363; }

#module .module_list.grundmodul  li  { background-color: #F15A24; flex-grow: 1; }
#module .module_list.hauptmodul  li  { background-color: #006837; }
#module .module_list.zusatzmodul li { background-color: #005BBF; }
#module .module_list.smilemodul li   { background-color: #F3971B; }
#module .module_list.schnittstelle li   { background-color: #8e8e8e; }
#module .module_list.cloudhosting li   { background-color: #636363; }

#module .module_list.grundmodul  li:hover  { background-color: #F37D53; }
#module .module_list.hauptmodul  li:hover  { background-color: #009952; }
#module .module_list.zusatzmodul li:hover { background-color: #0078F0; }
#module .module_list.smilemodul li:hover   { background-color: #F3AA4E; }
#module .module_list.schnittstelle li:hover   { background-color: #bbb8b7; }
#module .module_list.cloudhosting li:hover   { background-color: #828282; }


#module p {
  margin-bottom: 1em;
}

#module .column_l {
  flex: 1 1 280px;
  margin: 20px 17.5px 8px 17.5px;
}

#module .column_r {
  flex: 2 2 560px;
  margin: 20px 17.5px 8px 17.5px;
}

#module .column_l ul {
  margin: 1em 0 1em 14px;
}
#module .column_l ul li {
    list-style-position: inside;
}

#module .column_r ul {
  margin: 1em 0 1em 14px;
}
#module .column_r ul li {
    list-style-position: inside;
}

#module .swiss_made {
    margin-left: 17.5px;
    width: 80px;
}



/* ----------------------------------------------- */
/* Referenzen */
/* ----------------------------------------------- */
#referenzen {
  
}

#referenzen .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
  margin: 20px 0 20px 0;
}

#referenzen h1 {
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  color: #fff;
}

#referenzen  .center_inner > p {
  margin: 10px 17.5px 0 17.5px;
}

#referenzen #referenzenKarte {
    padding: 0 17.5px;
    text-align: center;
}
#referenzen #referenzenKarte img {
    width: 80%;
    height: auto;
    max-width: 600px;
}

#referenzen .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 13.5px;
}

#referenzen .columns div {
  display: flex;
  justify-content: center;
  align-items: center;
  
  flex: 0 0 165px;
  width: 165px;
  height: 165px;
  margin: 4px 4px;
  border-radius: 10px;
  border: 3px solid #999;
  background-color:#fff;
  
}

#referenzen .columns div  img {
  max-width: 159px;
  max-height: 159px;
}



/* ----------------------------------------------- */
/* AUSPROBIEREN */
/* ----------------------------------------------- */
#ausprobieren {
  margin: 20px 0 10px 0;
}

#ausprobieren .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
  margin: 0 0 10px 0;
}

#ausprobieren h1 {
  margin: 0 0 8px 0;
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  color: #999;
}
#ausprobieren p {
  margin: 0 17.5px;
  text-align: center;
}

#ausprobieren .columns {
  margin: 0 0 1em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#ausprobieren .column {
  flex: 1 1 200px;
  margin: 8px 17.5px;
  max-width: 227px;
  display: flex;
  flex-direction: column;
}

#ausprobieren .shortcut_icon {
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
#ausprobieren .shortcut_icon:hover {
  background-color: #eee;
}

#ausprobieren .shortcut_icon  img {
  display: block;
  flex: none;
  height: 52px;
  width: 52px;
  margin: 0 4px 0 6px;
}
#ausprobieren .shortcut_icon  span {
  display: block;
  flex: 1 1 auto;
  line-height: 1.1em;
}

#ausprobieren .box {
  height: 100%;
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 10px;
}

#ausprobieren .box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  color: #999;
}

#ausprobieren .box ul {
  margin: 6px 0 1em 14px;
}

#ausprobieren .box li {
  color: #ccc;
}

#ausprobieren .box li span {
  color: #333;
}


#ausprobieren > .center_inner p {
  margin: 0 0 1em 0;
}

#ausprobieren .tel {
  text-decoration: none;
}
#ausprobieren .tel img{
  margin-right: 14px;
  vertical-align: top;
}
#ausprobieren .tel:hover {
  text-decoration: underline;
}



/* ----------------------------------------------- */
/* KONTAKT */
/* ----------------------------------------------- */
#kontakt {

}

#kontakt .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
  margin: 20px 0 10px 0;
}

#kontakt h1 {
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  color: #fff;
}

#kontakt .center_inner > .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#kontakt .center_inner > .columns > .column_l {
  flex: 1 1 200px;
  margin: 8px 17.5px;
}

#kontakt .center_inner > .columns > .column_l > p {
  margin-bottom: 1em;
}

#kontakt .center_inner > .columns > .column_r {
  flex: 2 2 400px;
  margin: 8px 17.5px;
  padding: 20px 20px 30px 20px;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
}

#kontakt .center_inner > .columns > .column_r > .pin {
  position: absolute;
  right: 8px;
  top: 8px;
}

#kontakt .columns > .column_r > .netas_logo {
  display: block;
  margin: 10px 0 0 0;
}

#kontakt .columns > .column_r > .columns {
  margin: 1em 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#kontakt .columns > .column_r > .columns .column_l {
  flex: 1 0 220px;
  margin: 0 0 1em 0;
}

#kontakt .columns > .column_r > .columns .column_l p {
  margin-bottom: 0.5em;
}

#kontakt .columns > .column_r > .columns .column_r {
  flex: 1 0 200px;
}

#kontakt .columns > .column_r > .columns .column_r div {
  display: inline-block;
}

#kontakt a {
  text-decoration: none;
}
#kontakt a:hover, #kontakt a:hover  * {
  text-decoration: underline;
}

#kontakt .url  img{
  margin-right: 10px;
  vertical-align: top;
}
#kontakt .tel img{
  margin-right: 14px;
  vertical-align: top;
}
#kontakt .mail  img{
  margin-right: 10px;
  vertical-align: top;
}
#kontakt .pin  img{
  margin-right: 18px;
  vertical-align: top;
}

#kontakt .grey_bottom {
  background-color: #525252;
}



/* ----------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------- */
footer {
  background-color: #525252;
}
footer .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
}

footer .columns {
  margin: 30px 0 20px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

footer .columns > .column_l {
  margin:0 17.5px;
  flex: 1 1 200px;
  font-size: 14px;
  color: #aaa;
}

footer .columns > .column_r {
  margin:0 17.5px;
  flex: 1 1 200px;
  text-align: right;
  font-size: 14px;
  color: #aaa;
}

footer .columns a {
  text-decoration: none;
  color: #aaa;
}
footer .columns a:hover {
  text-decoration: underline;
}



/* ----------------------------------------------- */
/* Datenschutz */
/* ----------------------------------------------- */
#datenschutz {
    position: fixed;
    overflow: hidden;
    /*display: flex;*/
    /*justify-content: center;*/
    
    max-height: 0px;
    opacity: 0;
    
    left: 4px;
    right: 4px;
    bottom: 4px;
    
    z-index: 500;
    
    background-color: #fff;
    border: 2px solid #999;
    border-radius: 4px;
    
    box-shadow: 4px 4px 4px #ccc;
    
    transition: max-height 1s, opacity 1s;
    
    cursor: pointer;
}
#datenschutz.show {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
}
#datenschutz_content {
    flex: none;
    padding: 10px;
}
#datenschutz_content h4 {
    font: 15px/22px 'SansationBold', Arial, sans-serif; 
    margin: 0;
}
#datenschutz_content p {
    margin: 0.5em 0;
}



/* ----------------------------------------------- */
/* Detailfenster */
/* ----------------------------------------------- */
body.noscroll {
  overflow: hidden;
}

#detailWindow_mask{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    
  visibility: hidden;
  opacity: 0;
  
  background: rgba(143,27,15,0.8);
  background: rgba(0, 0, 0, 0.8);
  
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#detailWindow_mask.show {
  opacity: 1;
  visibility: visible;
}


#detailWindow_container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: stretch;
  visibility: hidden;
}
#detailWindow_container.show {
  opacity: 1;
  visibility: visible;
}


#detailWindow {
  flex: 0 1 1050px;
  margin: 10px;
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s;
}

#detailWindow_container.show #detailWindow {
  transform: scale(1);
  opacity: 1;
}


#detailWindow_header {
  flex: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px 20px;
  background-color: #aaa;
  display: flex;
  flex-direction: row;
}
#detailWindow_title {
  flex: 1 1 auto;
  color: #fff;
}
#detailWindow_close {
  flex: none;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  padding: 1px 0 0 0;
  text-align: center;
  color: #fff;
  cursor: pointer;
  
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
}
#detailWindow_close:hover {
  background-color:#666;
}

#detailWindow_content {
  flex: 1 1 auto;
  padding: 27.5px 27.5px 18px 27.5px;
  overflow: auto;
}

#detailWindow_footer {
  flex: none;
  padding: 8px 15.5px 8px 15.5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: 1px solid #fff;
  background-color: #ccc;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
}

#detailWindow_prev, #detailWindow_next {
  flex: 0 1 auto;
  margin: 2px 4px;
  border-radius: 10px;
  padding: 4px 20px;
  text-align: center;
  background-color: #aaa;
  color: #fff;
  cursor: pointer;
}

#detailWindow_prev img, #detailWindow_next  img{
  padding: 0;
  vertical-align: middle;
}

#detailWindow_prev img {
  padding: 0 10px 0 0;
}

#detailWindow_next img {
  padding: 0 0 0 10px;
}



/* ----------------------------------------------- */
/* Styles für popupContent */
/* ----------------------------------------------- */
#detailWindow_content h1 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 1em;
}
#detailWindow_content h2 {
  font-size: 24px;
  font-style: italic;
  color: #999;
  margin-bottom: 0;
}
/* Font-Awesome-Icon vor Überschrift*/
#detailWindow_content h2 span {
  margin: 0 4px 0 0;
}

#detailWindow_content h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
}
#detailWindow_content h4 {
  font-size: 15px;
  font-weight: bold;
  color: #999;
  margin-bottom: 0;
}

#detailWindow_content ul {
  margin: 0 0 1em 2em;
}

#detailWindow_content p {
  margin-bottom: 1em;
}
#detailWindow_content p:last-child {
  margin-bottom: 0;
}


/* Geflexte Zeile mit Bild auf der Linken Seite */
#detailWindow_content > .row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 0 0 20px 0;
  /*align-items: stretch;*/
}
#detailWindow_content > .row > * {
  flex: 1;
}
#detailWindow_content > .row > div.image {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border: 2px solid #ccc;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#detailWindow_content > .row > div.image > img {
  flex: none;
  margin: 0;
  height: auto;
  width: auto;
  max-width: 48px;
  max-height: 48px;
}

#detailWindow_content > .row > div.image.flexibleWidth {
 width: auto;
 padding: 0 10px;
}
#detailWindow_content > .row > div.image.flexibleWidth > img {
 max-width: 200px;
}


/* Bilder mit Legende als Thumbnail */
#detailWindow_content > .images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 20px 0;
}
#detailWindow_content > .images > .image {
  flex: none;
  cursor: pointer;
  transition: 0.3s, width 0.3s ease-in;
}
#detailWindow_content > .images > .image:hover {
    transform: scale(1.1);
}
#detailWindow_content > .images > .image > img {
  width: auto;
  height: auto;
  max-height: 150px;
  border: 1px solid #999;
  border-radius: 6px;
}
#detailWindow_content > .images > .image > .legend {
  font-size: 12px;
  font-style: italic;
  color: #999;
}

/* Vollbildansicht */
#elDivMask {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 600;
    background-color: #333;
}
#elDivFullScreen {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 601;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#elDivFullScreen > #elImage {
    flex: none;
    width: auto;
    height: auto;
    max-width: calc(100vw - 10px);
    max-height: calc(100vh - 40px);
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
#elDivFullScreen > #elImageLegend {
    flex: none;
    color: #fff;
}

#elDivPrevious,
#elDivNext {
    position: fixed;
    overflow: hidden;
    top: 0px;
    bottom: 0px;
    width: 33vw;
    min-width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 602;
    cursor: pointer;
}
#elDivPrevious { left: 0px; }
#elDivNext { right: 0px; }

#elDivPrevious > div,
#elDivNext > div {
    flex: none;
    width:48px;
    height:48px;
    border-radius: 24px;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    background-color: #666;
    color: #bbb;
    transition: 0.3s, width 0.3s ease-in;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
}
#elDivPrevious:hover > div,
#elDivNext:hover > div {
    opacity: 0.6;
    transform: scale(1.1);
}

#elDivClose {
    position: fixed;
    overflow: hidden;
    top: 10px;
    right: 10px;
    width:48px;
    height:48px;
    border-radius: 24px;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    background-color: #666;
    color: #bbb;
    transition: 0.3s, width 0.3s ease-in;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.4;
    z-index: 603;
    cursor: pointer;
}
#elDivClose:hover {
    opacity: 1;
    transform: scale(1.1);
}



/* ----------------------------------------------- */
/* Lizenzrechner */
/* ----------------------------------------------- */
#lizenzrechner {

}

#lizenzrechner .center_inner {
  flex: 0 1 auto;
  width: 1065px;
  max-width: 1065px;
  margin: 20px 0 40px 0;
  padding: 0 17.5px;
}

#lizenzrechner .group {
  border: 2px solid #ddd;
  border-radius: 10px;
  margin: 0 0 10px 0;
  padding: 10px;
}

#lizenzrechner .group label {
  margin: 0 4px;
}

#lizenzrechner .group input {
  margin: 0 4px 0 10px;
}

#lizenzrechner .group .groupCaption {
  margin: -4px 0 4px 0;
}

#lizenzrechner  select {
  margin-left: 10px;
  height: 25px;
  width: 50px;
  /*border: 1px solid #999;
  border-radius: 2px;*/
}

#lizenzrechner .output {
  margin: 10px 0;
}


#lizenzrechner h1 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.5em 0;
}
#lizenzrechner .output h1 {
  margin: 1em 0 -0.5em 0;
}
#lizenzrechner h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 1.5em 0 0 0;
}
#lizenzrechner h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 1em 0 0 0;
}
#lizenzrechner h4 {
  font-size: 20px;
  font-weight: normal;
  font-style: italic;
  color: #999;
  margin: 1em 0 0 0;
}


#lizenzrechner .output table {
  margin: 0 0 1em 0;
  border-spacing: 10px;
  border-collapse: separate;
  background-color: #efefef;
  border-radius: 10px;
}

#lizenzrechner .output table th {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-align: left;
  vertical-align: bottom;
}

#lizenzrechner .output table td {
  font-size: 16px;
  color: #333;
  font-weight: normal;
  text-align: left;
  vertical-align: bottom;
}

#lizenzrechner .output table .colAnz {
  text-align: right;
  width: 60px;
}

#lizenzrechner .output table .colBez {
  text-align: left;
}

#lizenzrechner .output table .colBet {
  text-align: right;
  width: 100px;
}

#lizenzrechner .output table .b {
  font-weight: bold;
}
#lizenzrechner .output table .colAnz.b {
  text-align: left;
}
#lizenzrechner .output table .colBet.b {
  border-top: 1px solid #333;
  border-bottom: 2px solid #333;
}
