html, body {
  height: 100%;
}

body {
font-family:Arial, Helvetica, sans-serif;
  background-image: url('img/worldglobe.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto; /* auto,cover,contain */
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1;
}
footer {
  background-color: #343a40;
  color: white;
  padding: 1rem;
}
.question { display: none; }
.question.active { display: block; }
.scale-bar {
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, green, red);
  position: relative;
  border-radius: 5px;
  margin-top: 20px;
}
.scale-indicator {
  position: absolute;
  top: -10px;
  width: 0;
  height: 50px;
  border-left: 3px solid black;
}
.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 5px;
}

.radio-wrapper {
  /*display: flex;*/
  align-items: center;
  /*margin: 10px 0;*/
  margin-left:27px;
}

.radio-wrapper input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 2px solid #fc5000;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  transition: border-color 0.2s ease;
}

.radio-wrapper input[type="radio"]:checked {
  border-color: #fc5000;
}

.radio-wrapper input[type="radio"]::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  background-color: #000000;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s ease;

}

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

.radio-wrapper label {
  cursor: pointer;
  font-size: 16px;
  margin-top:3px;
}

footer { 
font-size:0.85rem; 
background-color:#000; 
color: #fff;
}

.swal2-confirm {
background-color:#000; 
color: #fff;
}
.swal2-confirm:hover { 
background-color:#fc5000;
color: #000;
}