.body {
  background-image: url(../pics/meta/kb_sw_4_r.svg);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--body_background);
  color: var(--body_color);
  margin: 0;
}

.bodySmooth {
  transition: color 1s ease, background-color 1s linear;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 220px);
  /* margin-bottom: 73px; */
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.slat-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  background-color: var(--slat-bg_background);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /* box-shadow: 0 2px 4px var(--shadow); */
  padding: 15px 0px;
}

.slat {
  width: 90%;
  max-width: 750px;
  background-color: var(--slat_background);
  border-radius: 10px;
  /* box-shadow: 0 2px 4px var(--shadow); */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(5px);
  padding: 20px;
}

.big-headline {
  /* color: #0592d0; */
  font-family: var(--secondary-font);
  letter-spacing: 2px;
  color: var(--big_headline_color);
  /* text-shadow: var(--big_headline_shadow); */
}

.sub-headline {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.subhead {
  display: flex;
  justify-content: right;
  width: 50%;
  text-align: right;
  letter-spacing: 2px;
  height: 100%;
}

.description, .intro-box, .faq-path {
  line-height: 2em;
  font-size: 16px;
} 

.description, .faq-path p {
  text-align: center;
}

.intro-box {
  /* background-color: var(--eyecatcher_background); */
  opacity: 0.9;
  box-shadow: 0 0 0 10px var(--eyecatcher_background);
  margin: 10px 0;
  /* border: solid;
  border-color: var(--eyecatcher_background);
  border-width: 10px; */
}

.box-text {
  text-align: center;
  font-weight: bold;
  /* color: var(--eyecatcher_color); */
}

.special {
  /* font-weight: bold; */
  text-decoration: underline;
  letter-spacing: 0.15em;
}

.box-button, .path-button, .btn, .contact-button {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
  opacity: 1;
  background-color: var(--button_background);
  color: var(--button_color);
}

/* .btn, .path-button, .box-button  {
  opacity: 0.9;
} */

/* .box-button {
  background-color: var(--dark_background);
  color: var(--wombat_white);
} */

/* .path-button, .contact-button, .btn, .box-button {
  // background-color: rgba(33, 33, 33, 0.9);
  background-color: var(--button_background);
  color: var(--button_color);
} */

/* .box-button {
  background-color: var(--body_background);
  color: var(--big_headline_color);
} */

.issuesHeader {
  text-align: center;
}

.collapsible {
  cursor: pointer;
}

.plus-minus {
  float: right;
}

.content {
  display: none;
}

/* footer */

.footer-links, .footer-cr {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  overflow-wrap: break-word;
  margin: 10px;
  max-width: 750px;
}

.footer-cr {
  width: 35%;
}

@media (min-width: 769px){
  .footer-links {
    display: flex;
    width: 65%;
  }
  .burger-menu  {
    display: none;
  }
}
@media (max-width: 768px){
  .footer-links {
    display: none;
    width: 90%;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 30px;
    height: 20px;
    cursor: pointer;
    align-self: center;
    /* position: fixed; */
    /* bottom: 10px; */
    /* left: 10px; */
    /* z-index: 999; */
  }
  
  .line {
    width: 100%;
    height: 2px;
    background-color: var(--footer_color);
    transition: all 0.3s ease;
  }
  
  .line:last-child {
    margin-bottom: 0;
  }

  .footer-cr {
    width: 75%;
  }
}

/*
@media (min-width: 501px){
  .footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    overflow-wrap: break-word;
    margin-bottom: 10px;
    width: 90%;
    max-width: 750px;
  }
} */

.footer-links a {
  color: var(--footer_link_color);
  text-decoration: none;
  padding: 5px 10px;
  margin-bottom: 5px;;
  transition: color 0.3s ease;
  line-height: 1.5em;
}

.footer-links a:hover {
  color: var(--footer_link_hover);
}

.vertical-line {
  width: 1px;
  height: 20px;
  background-color: var(--footer_link_color);
  margin: 0 10px;
}

.footer-links-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow-wrap: break-word;
}

.footer-link {
  border-right: 1px solid var(--footer_color);
  flex-grow: 1;
}
.footer-link:last-of-type {
  border-right: none;
}

.footer {
  background-color: var(--footer_background);
  opacity: 0.9;
  /* background-color: rgba(33, 33, 33, 0.9); */
  color: var(--footer_color);
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-align: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  /* height: 53px; */
  transition: height 1s;
  /* backdrop-filter: blur(5px); */
}

/* .footer-cr {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  overflow-wrap: break-word;
  flex-wrap: wrap;
  margin-bottom: 10px;
  width: 90%;
  max-width: 750px;
} */

.cr {
  margin: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-grow: 2;
  /* font-size: 1.2vw; */
}

/* theme changer */

.mood {
  margin: 0 10px;
  height: 24px;
}

.mood-button {
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.moon {
  background-color: var(--moon_background);
}

.sun {
  background-color: var(--accent-color);
}

.expanded {
  height: 121px;
}

.estTime {
  float: right;
}

/* zammad chat */

.zammad-chat-header {
  background: var(--chat_header_background) !important;
  opacity: 0.9;
  color: white;
}

.zammad-chat-body {
  background: var(--chat_body_background) !important;
}

.zammad-chat-message--customer .zammad-chat-message-body, 
.zammad-chat-message--agent .zammad-chat-message-body {
  background: white !important;
  color: var(--wombat_black) !important;
  font-weight: normal !important;
  /* font-size: 16px !important; */
}

/* .zammad-chat-input {
  font-size: 16px !important;
  padding: 10px !important;
} */

.zammad-chat-button {
  background: var(--accent-color) !important;
}

/* zammad form */
@keyframes append-animate {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;	
	}
}

@keyframes remove-animate {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;	
	}
}

.zammad-form-modal {
  animation: append-animate .1s linear;
}

.zammad-form-modal:not(:empty){    
  opacity:1;
}

.zammad-form-modal-body {
  max-width: 750px !important;
  background: var(--form_body_background) !important;
}

.zammad-form, .zammad-form-control {
  font-size: 16px !important;
}

.zammad-form label {
  color: var(--form_body_color) !important;
}

.zammad-form label a {
  color: var(--link_color) !important;
}

.zammad-form label a:hover {
  color: var(--link_hover_color) !important;
}

/* contact page */

.respContainer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  line-height: 1.5em;
}

.respRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
}

.respKey, .respVal {
  margin: 10px 10px;
  width: 50%;
}

.respKey {
  font-weight: bolder;
}

.respVal a, .textlink a {
  color: var(--link_color);
  letter-spacing: 2px;
  text-decoration: none;
}

.respVal a:hover {
  color: var(--link_hover_color);
}

.screenshare {
  width: 100%;
  height: calc(100vh - 103px);
}