body{
  display: flex;
  justify-content: center;
}
.pricing-section{
  justify-content: center;
  max-width: 1120px;
  padding: var(--spacing-lg);
  width: 100%;
}
.pricing-section h2{
  font-weight: 900;
  font-size: var(--font-size-xxxl);
  text-align: center;
}
.pricing-box-section{
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--spacing-lg);
}
.pricing-box{
  padding: var(--spacing-lg);
  background: var(--color-grey);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-md);
  position: relative;
}

.badge{
  font-size: var(--font-size-sm);
  color: var(--color-blue);
  border: solid 1px var(--color-blue);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xs) var(--spacing-sm);
  position: absolute;
  top: 1.75rem;
  right: var(--spacing-lg);
}
.pricing-title{
  font-weight: 900;
  font-size: var(--font-size-xxxl);
  line-height: 1;
    margin-top: 0.75rem;
}
.pricing-title.free{
  font-size: var(--font-size-xxl);
  margin-top: 1.25rem;
}
.pricing-title span{
  font-size: var(--font-size-md);
}
.pricing-body{
  margin-bottom: var(--spacing-lg);
}
.pricing-body li{
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.cta-black-solid{
  background: var(--color-black);
  border-radius: var(--radius-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  color: var(--color-white);
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.questions{
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  padding: 1.5rem;
  gap: 1.5rem;
}
.questions header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.time, .menu{
  display: flex;
  gap: 10px;
}
.timer{
    display: flex;
    gap: 5px;
    background: #0367fd12;
    width: fit-content;
    padding: 5px 10px;
    align-items: center;
    border-radius: var(--radius-md);
    color: var(--color-blue);
    font-weight: 800;

}
.timer-button, .menu-button{
    display: flex;
    background: #0367fd12;
    padding: 5px 5px;
    align-items: center;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.menu-button{
  background: var(--color-grey);
}

.question-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.question-section h1{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}
.answer-box{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-grey);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
}
.answer-box.selected {
  border-color: var(--color-blue);
}
.answer-box.error {
  border-color: var(--color-error);
  background-color: var(--color-error-background);
}
.answer-box.success {
  border-color: var(--color-success);
  background-color: var(--color-success-background);
}

.answer-box.selected div {
  background: var(--color-blue);
  border-color: var(--color-blue);
}
.answer-box.error div {
  background: var(--color-error);
  border-color: var(--color-error);
}

.answer-box.success div {
  background: var(--color-success);
  border-color: var(--color-success);
}

.answer-box.selected span {
  color: white;
}
.answer-box.error span {
  color: var(--color-error-background);
}
.answer-box.success span {
  color: var(--color-success-background);
}

.answer-box div {
  min-width: 24px;
  height: 24px;
  border: 1px solid var(--color-black);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}
.answer-box span {
font-size: 16px;

}
.question-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.question-list a{
  background: var(--color-grey);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: 600;
}

.question-list a.answered{
  border: 2px solid var(--color-blue);
}

.question-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.question-grid a{
  background: var(--color-grey);
  padding: 5px 10px;
  border-radius: var(--radius-md);
    cursor: pointer;
  width: 40px;
  align-self: center;
  border: 1.5px solid transparent;
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.question-grid a.answered{
  border: 1.5px solid var(--color-blue);
}

