/* Fonts */
@font-face {
    font-family: "Pericles";
    src: url(../fnt/Pericles-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Rubik";
    src: url(../fnt/Rubik_VariableFont.ttf) format("truetype");
}

body {
  font-family: "Rubik";
}
h2 {
  font-weight: 500;
}
h3 {
  font-weight: 450;
}

/* Classes */
.content_loading {
  display: none;
}
.btn-general {
  font-family: "Rubik";
  margin: 0 1px 5px 1px;
  cursor: pointer;
  border: solid 1px #c7c1c1;
  border-radius: 4px;
  width: 120px;
  height: 24px;
  font-size: 0.75rem;
  text-align: center;
  transition-duration: 0.2s;
  background-color: rgba(239, 239, 239, 0.3);
}
.btn-general:hover {
  background-color: rgba(197, 197, 197, 0.3);
  border: solid 1px #c7c1c1;
  border-radius: 4px;
  color: black;
}
.btn-general:disabled {
  font-family: "Rubik";
  cursor: not-allowed;
  color: rgb(170, 170, 170);
  background-color: rgba(239, 239, 239, 0.3);
}
.btn-answer-choice {
  transition-duration: 0.2s;
  transition-property: background-color;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: "Rubik";
  background-color: rgb(245, 245, 245);
  color: black;
  border: solid 1px #ffffff;
  border-radius: 4px;
  width: 580px;
  height: 50px;
}
.btn-answer-choice:hover {
  background-color: rgba(177, 177, 177, 0.3);
}
.btn-answer-choice:disabled {
  background-color: rgba(239, 239, 239, 0.3);
  cursor: not-allowed;
  color: rgb(170, 170, 170);
}
.btn-answer-choice-right {
  transition-duration: 0.2s;
  transition-property: background-color;
  background-color: #04AA6Ddf !important;
  color: #ffffff !important;
  font-weight: 500;
}
.btn-answer-choice-right:hover {
  background-color: #059862;
  color: #ffffff !important;
  font-weight: 500;
}
.btn-answer-choice-wrong {
  transition-duration: 0.2s;
  transition-property: background-color;
  background-color: #e23225df !important;
  color: #ffffff !important;
  font-weight: 500;
}
.btn-answer-choice-wrong:hover {
  background-color: #d03227;
  color: #ffffff !important;
  font-weight: 500;
}
.txt-setup-heading {
  font-family: "Rubik";
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  text-wrap: left;
}
.txt-setup-description {
  font-family: "Rubik";
  color: black;
  font-size: 0.7rem;
  font-weight: 400;
  text-wrap: left;
}