@font-face {
  font-family: TestSohne;
  src: url(../fonts/TestSöhne-Buch.otf);
}

@font-face {
  font-family: TestSohneM;
  src: url(../fonts/TestSöhne-Kräftig.otf);
}

* {
  font-family: TestSohne;
}

:root {
  --color-1: #232D4B;
  --color-green: #56919D;
  --color-2: #8E5795;
  --color-white: #fff;
}

/* body {
  background: url(../images/Homepage.svg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 10px;
} */


.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white) !important;
  width: 40px;
height: 40px;
  margin-bottom: 70px;
  position: absolute;
  left: 10px;
  top: 30px;
}

.btn-cancel svg{
  width:15px;
  height: 15px;
} 
h1 {
  color: var(--color-white);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: TestSohneM;
  font-size: 22px;
}

h2 {
  color: var(--color-white);
  font-size: 26px;
  font-family: TestSohneM;
  margin-top: 40px;
  margin-bottom: 100px;
}

.qimage {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0px -10px 69px -4px rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0px -10px 69px -4px rgba(255, 255, 255, 0.85);
  -moz-box-shadow: 0px -10px 69px -4px rgba(255, 255, 255, 0.85);
}

.random-btn {
  background-color: var(--color-2);
  width: 100%;
  color: var(--color-white);
  font-size: 16px;
  padding: 13px;
  margin-top: 30px;
  border-radius: 8px;
}
.random-btn:hover, .random-btn:active  {
  background-color: var(--color-2) !important;
  color: var(--color-white) !important;
  opacity: .9;
}

/* Start Radio BTN  */

.answers .transition {
  transition: all .3s ease-out;
}

.answers .heading {
  text-align: center;
  font-size: 0.8em;
}

.answers input[type="radio"] {
  position: absolute;
  width: 167px;
  height: 58px;
  opacity: 0;
}

.answers label {
  text-align: center;
  cursor: pointer;
  background-color: var(--color-white);
  color: var(--color-1);
  padding: 17px 10px;
  border-radius: 12px;
  transition: all .3s ease-out;
  display: block;
}

.answers input[type="radio"]:checked + label {
  background-color: var(--color-green);
  color: var(--color-white);
}

.answers input[type="radio"] + label.selected,
.answers input[type="radio"] + label.wrong {
  background-color: var(--color-green);
  color: var(--color-white);
}

.answers input[type="radio"] + label.selected::after,
.answers input[type="radio"] + label.wrong::after {
  content: '\2713';
  display: inline-block;
  margin-left: 9px;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-green);
  font-weight: bold;
  width: 24px;
  height: 24px;
}


/* End Radio BTN  */


.prev-question,
.next-question{
  background: transparent;
  border: none;
  margin-left: 10px;
  margin-right: 10px;
}
button:disabled,
button[disabled]{
  opacity: .4;
}
.question-block {
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 10px;
 
  height: 100vh;
  padding: 16px;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.circle-svg {
  max-height: 100px;
}
.circle-svg text {
  text-align:center;
  font-size:10px;
  fill: #fff;
  font-weight: bold;
}
.circle-svg path.percent {
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}
.circle-svg path.around {
  stroke: rgb(255 255 255 / 46%);
  fill: none;
  stroke-width: 2.8;
  stroke-dasharray: 100; /* Value equal to the circumference of the circle */
}
 