body {
  background: #870000; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #190A05, #870000);
  color: #fff;
  font-family: Calibri;
}

#hero h1 {
  color: #fff;
}
#hero p {
  color: #eee;
}

#nextBtn, #backBtn {
  border-radius: 5px;
}

#app {
  background-color: #09131d;
  max-width: 600px;
  min-height: 600px;
  margin: auto;
  border-radius: 5px;
}
#app .sectionTitle {
  margin: 20px 0;
}
#app .description {
  margin: 20px 0;
}
#app #startQuiz {
  border-radius: 5px;
}

.radio-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-input * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.radio-input label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0px 20px;
  width: 100%;
  cursor: pointer;
  height: 50px;
  position: relative;
}

.radio-input label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 45px;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 10px;
  border: 2px solid transparent;
}

.radio-input label:hover::before {
  transition: all 0.2s ease;
  background-color: #2a2e3c;
}

.radio-input .label:has(input:checked)::before {
  background-color: #2d3750;
  border-color: #435dd8;
  height: 50px;
}

.radio-input .label .text {
  color: #fff;
}

.radio-input .label input[type=radio] {
  background-color: #202030;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-input .label input[type=radio]:checked {
  background-color: #435dd8;
  animation: pulse 0.7s forwards;
}

.radio-input .label input[type=radio]:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #fff;
  transform: scale(0);
}

.radio-input .label input[type=radio]:checked::before {
  transform: scale(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.label {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  border-radius: 6px;
  border: 2px solid #373737;
  padding: 10px 8px 10px 10px;
  text-align: left;
}
.label .icon {
  position: absolute;
  top: 53%;
  right: 20px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  color: #c5c5c5;
}
.label .input {
  background-color: transparent;
  outline: none;
  border: none;
  color: #c5c5c5;
  font-size: 16px;
}

.bmr-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
}

.bmr-title {
  color: #f1f1f1;
}

.bmr-card .form-control,
.bmr-card .form-select {
  background: #1c1c1c;
  border: 1px solid #333;
  color: #e0e0e0;
}

.bmr-card label {
  color: #b3b3b3;
}

.bmr-card .form-control:focus,
.bmr-card .form-select:focus {
  background: #1c1c1c;
  border-color: #555;
  color: #fff;
  box-shadow: none;
}

.btn-primary {
  background: #0059ff;
  border: none;
}

.btn-primary:hover {
  background: #1a6bff;
}

.alert-info {
  background: #0f1f2a;
  border-color: #1d3a4e;
  color: #cfe8f1;
}

.progress {
  height: 30px;
  border-radius: 5px;
}
.progress .progress-bar {
  font-size: 20px;
}

.loader {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
  position: absolute;
  top: 0;
  content: "";
}

.jimu-primary-loading:before {
  left: -19.992px;
}

.jimu-primary-loading:after {
  left: 19.992px;
  animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
  background: #076fe5;
  animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  width: 13.6px;
  height: 32px;
}

.jimu-primary-loading {
  text-indent: -9999em;
  margin: auto;
  position: absolute;
  right: calc(50% - 6.8px);
  top: calc(50% - 16px);
  animation-delay: 0.16s !important;
}
@keyframes loading-keys-app-loading {
  0%, 80%, 100% {
    opacity: 0.75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }
  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}
/* Tag input container */
.tag-input-container {
  width: 100%;
}

/* Input with add button */
.input-with-add {
  position: relative;
  flex: 1;
}

.input-with-add .input {
  width: 100%;
  padding-right: 40px;
}

/* Tag add button */
.tag-add-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.tag-add-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Tags container */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* Tag styles */
.tag {
  display: inline-flex;
  align-items: center;
  background-color: #2d3750;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #435dd8;
}

.tag:hover {
  background-color: #3a4661;
}

.tag-remove {
  margin-left: 6px;
  color: #a0aec0;
  font-size: 12px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.tag:hover .tag-remove {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}/*# sourceMappingURL=custom.css.map */