html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: Roboto;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.section-container {
  max-width: 1008px;
  margin: 0 auto;
}

.header {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 176px;
  }
}
.header__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 1024px) {
  .header__wrap {
    gap: 20px;
  }
}
.header__desc {
  color: #4E4E50;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 630px;
}
@media screen and (max-width: 1024px) {
  .header__desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .header__desc {
    max-width: 230px;
  }
}

.quiz {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .quiz {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.quiz__wrap {
  background-color: #F0F0F0;
}
.quiz__item {
  width: 100%;
}
.quiz__border {
  display: none;
  height: 1px;
  background-color: #D4D4D4;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .quiz__border {
    display: block;
  }
}
.quiz__items {
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
  padding: 70px 170px;
}
@media screen and (max-width: 768px) {
  .quiz__items {
    padding: 30px 20px;
    gap: 60px;
  }
}
.quiz__question-title {
  text-align: center;
  color: #4E4E50;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .quiz__question-title {
    font-size: 14px;
  }
}
.quiz__answers {
  padding: 24px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .quiz__answers {
    padding: 40px 0px;
  }
}
.quiz__answer {
  transition: 0.3s;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  color: #4E4E50;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .quiz__answer {
    width: 20px;
    height: 26px;
    font-size: 16px;
  }
}
.quiz__answer:hover {
  opacity: 0.8;
}
.quiz__answer-input {
  display: none;
}
.quiz__answer-input:checked + .quiz__answer {
  background-color: #3C5BFF;
  color: #fff;
}
.quiz__grades {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8F8F8F;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .quiz__grades {
    font-size: 12px;
  }
}
.quiz__range {
  display: none;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .quiz__range {
    display: block;
  }
}
.quiz__load-line {
  position: relative;
  transition: 0.3s;
  background-color: #A7A7A7;
  border-radius: 4px;
  height: 4px;
  width: 0%;
}
.quiz__load-circle {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid #3C5BFF;
  border-radius: 50%;
  transform: translateY(-50%) translateX(50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.quiz__load-dot {
  z-index: 10;
  width: 10px;
  height: 10px;
  background-color: #3C5BFF;
  border-radius: 50%;
}
.quiz__reviews {
  display: none;
  padding: 0px 130px 70px 130px;
}
@media screen and (max-width: 1024px) {
  .quiz__reviews {
    padding: 20px 20px 50px 20px;
  }
}
.quiz__reviews-show {
  display: block;
}
.quiz__text-desc {
  color: #4E4E50;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .quiz__text-desc {
    font-size: 14px;
  }
}
.quiz__textarea {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .quiz__textarea {
    margin-top: 30px;
  }
}
.quiz__textarea textarea {
  font-family: Roboto;
  resize: none;
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #DFDFDF;
  outline: none;
  color: #8F8F8F;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .quiz__textarea textarea {
    font-size: 12px;
  }
}
.quiz__bottom {
  width: 100%;
  display: flex;
  justify-content: center;
}
.quiz__submit {
  cursor: pointer;
  transition: 0.3s;
  margin-top: 70px;
  padding: 12px 30px;
  border-radius: 30px;
  background: #3C5BFF;
  color: #FFF;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  outline: none;
}
.quiz__submit:hover {
  opacity: 0.8;
}
.quiz__links {
  display: none;
  padding: 0px 85px 50px 85px;
}
@media screen and (max-width: 1024px) {
  .quiz__links {
    padding: 0px 20px 30px 20px;
  }
}
.quiz__links-show {
  display: block;
}
.quiz__links-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.quiz__links-item {
  width: 220px;
  text-decoration: none;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  color: #8F8F8F;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .quiz__links-item {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.quiz__links-desc {
  margin-top: 5px;
  max-width: 130px;
}
@media screen and (max-width: 768px) {
  .quiz__links-desc {
    margin-top: 0px;
    text-align: start;
  }
}

.modal {
  display: flex;
  padding: 70px 100px 60px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 70px;
  background-color: #F0F0F0;
  font-family: Roboto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 70px 20px;
    gap: 40px;
  }
}
.modal__close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .modal__close {
    top: 20px;
    right: 20px;
  }
}

.thanks__title {
  color: #4E4E50;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: norma;
}
@media screen and (max-width: 768px) {
  .thanks__title {
    font-size: 20px;
  }
}
.thanks__desc {
  margin-top: 24px;
  color: #4E4E50;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ------------------------ */

.quiz__answers.disabled .quiz__answer-input:checked + .quiz__answer{
	background-color: #cecece;
}
.quiz__answers.disabled .quiz__answer{
	pointer-events: none;
}
.quiz__wrap {
	position: relative;
}

.page-loader {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 9999;
}
.overlay {
	position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    z-index: 10;
}	
/* Preloader */
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%); 
	z-index: 50;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #5C9FFF;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
.status-color {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;	
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.quiz__bottom {
	padding-bottom: 70px;
}
.quiz__submit:disabled {
	background: #b9b9b9;
    opacity: 0.5;
	cursor: default;
}
.text-left {
	text-align: left;
}

/*# sourceMappingURL=main.css.map */