
	.tinymceflexbox li, .tinymceflexbox h4
	{
		margin-bottom: 10px;
	}

@media only screen and (min-width: 600px)
{
	.tinymceflexbox .tinyflexitem
	{
		margin-left: 10px !important;
		margin-right: 10px !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}

/* alle tinymce flexbox layouts responsive machen */
@media only screen and (max-width: 600px)
{
	.tinymceflexbox
	{
		display: block !important;
		margin-left: 10px;
		margin-right: 10px;
	}
	.tinymceflexbox .tinyflexitem
	{
		margin-top: 40px !important;
	}
}


.iconbutton i
{
	color: #007bff !important;
}
.iconbutton i:hover
{
	color: #0da2ff !important;
}

.dropdown-menu {
    left: auto !important;
}
.dropdown-menu a{
    color: #fff !important;
}
@media only screen and (min-width: 768px) {
	#logoimg {
		max-height: 50px !important;
		margin-top: 20px;
	}
}
@media only screen and (max-width: 768px) {
	#logoimg {
		position: absolute;
		min-width: 200px !important;
		width: 200px !important;

	}

}


/* main button color */
.btn.btn-primary {

    color: #000 !important;
}
/* section headlines*/
.intro-about2 h3, .intro h3 {
    color: #C1C31C !important;
}

/* menu color links */
.navbar-lg .navbar-nav > li > a {
    color: #000 !important;
}
@media only screen and (max-width: 600px) {
.navbar-lg .navbar-nav > li > a  {
		color: #fff !important;
	}
}


/* section count color */
.count {
	color: #000 !important;
}
.stats2-info h2, .stats2-info p {
	color: #000 !important;
}


/* footer links */
.footerP a, .footer-social a {
	color: #000 !important;
}
.footer-social a {
	font-size: 16px !important;
}

@media only screen and (min-width: 600px) {
	.marginclass {
		max-width: 700px;
		margin-right: auto;
		margin-left: auto;
	}
}

.footer-social a:hover {
	color: #fff !important;
}
.footer-copy a:hover {
	color: #fff !important;
}

/* schulung */

.schulungbox {
	background-color: #f3f3f3;
	padding: 20px;
	margin: 20px;
	border-radius: 5px;
}



#langswitch
{
	position: fixed;
	top: 2px;
	right: 2px;
	z-index: 6000;

}




/* ############## Formular ############### */

#kontakt
{
    background-color: white;
}

.checkboxgrid
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.checkboxflex
{
  display: flex;
  align-items: center;

}

.checkboxflex input
{
 padding-right: 10px;

}

input, textarea 
{
    border: none;
    outline: none;
    border-bottom: solid 1px var(--black);
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 20px;;
}



@media only screen and (max-width: 800px)
{
  .check-group {
    display: block;
  }
  .formflexgrid
  {
      display: block;
  }
}

@media only screen and (min-width: 800px) and (max-width: 1100px)
{
  .check-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .formflexgrid
  {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 20px;
  }
}

@media only screen and (min-width: 1100px)
{
  .check-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .formflexgrid
  {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 50px;
  }
}


.check-group > * + * {
  margin-top: 0.75rem;
}


.check-group__result {
  font-weight: bold;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.check-group__result:after {
  content: counter(checked) " / " counter(total);
  padding-left: 1ch;
}

.checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.checkbox__input {
  position: absolute;
  width: 1.375em;
  height: 1.375em;
  opacity: 0;
  cursor: pointer;
}
.checkbox__input:checked + .checkbox__icon .tick {
  stroke-dashoffset: 0;
}
.checkbox__icon {
  width: 1.375em;
  height: 1.375em;
  flex-shrink: 0;
  overflow: visible;
}
.checkbox__icon .tick {
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: stroke-dashoffset 0.2s ease-out;
}
.checkbox__label {
  margin-left: 0.5em;
  color: #555;
  font-size: 14px;
}

