@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --jumbotron-padding-y: 3rem;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
  }
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  font-weight: 300;
}

.jumbotron .container {
  max-width: 40rem;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: 0.25rem;
}

.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.vertical-align {
  display: flex;
  align-items: center;
}

.content_center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 150px;
  border: 1px solid black;
}

.center-radio-group:before {
  content:"";
  background: #e5e7eb;
  position: absolute;
  bottom: 10%;
  left: 0;
  height: 80%;
  width: 1px;
}

/* WebKit (Chrome, Safari) */
#mobile-range::-webkit-slider-thumb {
  appearance: none; /* Remove the default appearance */
  background-color: white; /* Change the background color of the thumb */
  width: 30px; /* Set the width of the thumb */
  height: 30px; /* Set the height of the thumb */
  border: 2px solid black; /* Add a border to the thumb */
  border-radius: 50%; /* Make the thumb round */
  z-index: 2;
}

/* Firefox */
#mobile-range::-moz-range-thumb {
  appearance: none; /* Remove the default appearance */
  background-color: white; /* Change the background color of the thumb */
  width: 30px; /* Set the width of the thumb */
  height: 30px; /* Set the height of the thumb */
  border: 2px solid black; /* Add a border to the thumb */
  border-radius: 50%; /* Make the thumb round */
  z-index: 2; /* Place the thumb above the pseudo-element */
}

.textcolor-disagree{
  color: #ED0000;
}

.textcolor-slightly-disagree{
  color: #EA5400;
}

.textcolor-slightly-agree{
  color: #FFC700;
}

.textcolor-agree{
  color: #04DF00;
}

form .error {
  color: #ff0000;
  font-family: Manrope, sans-serif;
  font-size: 1em;
  font-weight: 400;
}



