/*********************************************************************
 * 0. fonts
 *
 */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.eot");
  src: url("../fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/OpenSans-Bold.woff2") format("woff2"),
    url("../fonts/OpenSans-Bold.woff") format("woff"),
    url("../fonts/OpenSans-Bold.svg#../fonts/OpenSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.eot");
  src: url("../fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/OpenSans-Light.woff2") format("woff2"),
    url("../fonts/OpenSans-Light.woff") format("woff"),
    url("../fonts/OpenSans-Light.svg#../fonts/OpenSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/OpenSans-Regular.woff2") format("woff2"),
    url("../fonts/OpenSans-Regular.woff") format("woff"),
    url("../fonts/OpenSans-Regular.svg#../fonts/OpenSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Italic.eot");
  src: url("../fonts/OpenSans-Italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/OpenSans-Italic.woff2") format("woff2"),
    url("../fonts/OpenSans-Italic.woff") format("woff"),
    url("../fonts/OpenSans-Italic.svg#../fonts/OpenSans-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/*********************************************************************
 * 1. General HTML tags
 *
 */
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

html {
  font-family: "Open Sans", sans-serif;
}

em {
  font-style: normal;
}

/* @media only screen and (max-width: 450px) {
   } */

.warnField {
  display: none;
}

/* Spezial Radiobutton */

.buttonWrapper {
  display: inline-flex;
  //background: #fff;
  /* height: 100px;
	width: 400px; */
  align-items: center;
  justify-content: space-evenly;
  border-radius: 0px;
  /* padding: 20px 15px;
	box-shadow: 5px 5px 30px rgba(0,0,0,0.2); */
}
.buttonWrapper .option {
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0px;
  cursor: pointer;
  padding: 0 5px;
  border: 1px solid lightgrey;
  transition: all 0.3s ease;
}
.buttonWrapper .option .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: none;
  /* border-radius: 50%; */
  position: relative;
  margin: 0 20px 0 10px;
}
.buttonWrapper .option .dot::before {
  position: absolute;
  content: "✓";
  left: 4px;
  bottom: -2px;
  /* border-radius: 50%; */
  opacity: 0;
  transform: scale(4);
  transition: all 0.3s ease;
}
.buttonWrapper input[type="radio"] {
  display: none;
}

.voi_button {
  font-size: 1em !important;
  hyphens: auto;
  margin: 5px;
  color: #808080;
}

#att_VO:checked:checked ~ .option-1,
#att_VI:checked:checked ~ .option-2 {
  border-color: #0069d9;
  background: #0069d9;
}
#att_VO:checked:checked ~ .option-1 .dot,
#att_VI:checked:checked ~ .option-2 .dot {
  background: #fff;
}
#att_VO:checked:checked ~ .option-1 .dot::before,
#att_VI:checked:checked ~ .option-2 .dot::before {
  opacity: 1;
  transform: scale(1);
}
.buttonWrapper .option span {
  font-size: 20px;
  color: #808080;
}
#att_VO:checked:checked ~ .option-1 span,
#att_VI:checked:checked ~ .option-2 span {
  color: #fff;
}

/* Form */

.uk-form-label {
  color: #233e6b;
  font-size: 1rem !important;
}

label {
  position: relative;
  padding-left: 3ch;
  display: block;
}

@media only screen and (max-width: 450px) {
  label {
    position: relative;
    padding-left: 0px;
    display: block;
  }
}

label > input[type="radio"] {
  /* position: absolute; */
  left: 0;
  top: 35%;
}

@media only screen and (max-width: 450px) {
  .uk-legend {
    width: 100%;
    color: inherit;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    text-decoration: underline;
  }
}

.InputfieldCheckbox > .InputfieldContent > p {
	margin-left: 52px;
}
