.container_quiz {
  width: 100%;
  min-height: 400px;
  margin: 30px auto;
}

.container_quiz h1 {
  font-size: 35px;
  line-height: 48px;
}

.container_quiz h1 span {
  display: block;
  font-weight: 500;
  font-size: 54px;
}

.result_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.result_box.activeResult {
  opacity: 1;
  z-index: 99999;
  pointer-events: auto;
  transform: translate(-50%, -80%) scale(1);
}

.start_btn {
  margin-top: 40px;
}

.buttons_container {
  display: flex;
  justify-content: center;
  margin: 100px 0 130px;
}

.buttons_container > div {
  width: 50%;
  text-align: center;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.buttons_container p {
  font-size: 14px;
}

.hideIntro {
  display: none;
}

.start_btn button {
  padding: 5px 30px;
  outline: none;
  cursor: pointer;
  transition: 0.1s;
  min-width: 169px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: none;
  color: #234463;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #ffd72f;
  white-space: nowrap;
  margin-right: 30px;
  margin-bottom: 20px;
  width: fit-content;
}

.start_btn button.start_example {
  background-color: var(--primary-bg-color);
}

.start_btn .quiz_wrapper button,
.start_btn button.button_example {
  height: 40px;
}

.start_btn button.start_example:hover,
.start_btn button.start_example:focus {
  background-color: #9ed9fb;
}

.start_btn button:not(:last-child) {
  margin-right: 30px;
}

.start_btn button:hover,
.start_btn button:focus {
  background-color: #ffd232;
}

.quiz_box {
  transition: all 0.3s ease;
}

.quiz_wrapper {
  width: 70%;
  margin: 0 auto;
  padding: 0 0 50px 0;
}

section {
  padding: 55px 30px 0 40px;
  background: #fff;
}

section .que_text,
section .que_text_example {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 20px;
}

section .option_list,
section .option_list_example {
  padding: 20px 0px;
  display: block;
  width: 100%;
}

section .option_list .option,
section .option_list_example .option {
  background: rgba(32, 42, 120, 0.06);
  border: solid 1px #d3d3d3;
  border-radius: 0;
  padding: 8px 15px;
  font-size: 17px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  position: relative;
}

section .option_list .option:last-child,
section .option_list_example .option:last-child {
  margin-bottom: 0px;
}

section .option_list .option:hover,
section .option_list_example .option:hover {
  color: #004085;
  background: #cce5ff;
}

section .option_list .option.selected,
section .option_list_example .option.selected {
  font-weight: bold;
}

section .option_list .option.disabled,
section .option_list_example .option.disabled {
  pointer-events: none;
}

section .option_list .option span:after,
section .option_list_example span:after {
  top: 13px;
  position: absolute;
  content: " ";
  width: 15px;
  height: 15px;
  background-color: white;
  border: solid 1px #d3d3d3;
  border-radius: 10px;
  right: 10px;
}

section .option_list .option.selected span:after,
section .option_list_example .option.selected span:after {
  background-color: hsla(43, 97%, 55%, 1);
}

.quiz_footer {
  height: 60px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.quiz_footer button {
  min-width: 169px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  height: 40px;
  text-align: center;
  text-transform: none;
  color: #234463;
  display: inline-block;
  transition: 0.3s;
  border: 0 none;
  border-radius: 0;
  background-color: #ffd72f;
}

.quiz_footer .next_btn {
  background-color: #ffd72f;
  opacity: 0;
  outline: none;
  pointer-events: none;
  margin-right: 0;
}

.footer_btns a + button + a {
  background-color: #ffd72f;
}

.quiz_footer .next_btn:hover {
  background-color: #005aad;
  border-color: #ffd232;
  color: #fff;
}

.quiz_footer button:hover,
.footer_btns a:hover,
.footer_btns button:hover {
  background: #005aad;
  border-color: #005aad;
}

.footer_btns a + button + a:hover {
  background-color: #ffd232;
  border-color: #ffd232;
}

.footer_btns {
  opacity: 0;
  transition: 0.3s;
  margin-left: 10px;
}

.footer_btns.show {
  opacity: 1;
}

.footer_btns button,
.footer_btns a {
  letter-spacing: 0;
  white-space: nowrap;
  height: 38px;
  line-height: 38px;
  padding: 0 59px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: none;
  color: #234463;
  background-color: var(--primary-bg-color);
  cursor: pointer;
  outline: none;
  border-radius: 0;
}

.footer_btns button:first-child {
  margin-right: 20px;
}

.quiz_footer .show {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.result_box {
  background: #fff;
  border-radius: 0;
  display: flex;
  padding: 25px 30px;
  width: 680px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  margin-top: 90px;
}

.result_box .icon {
  margin-bottom: 30px;
  margin-top: 40px;
}

.result_box .icon img {
  width: 120px;
}

.result_box .complete_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.result_box .result_text {
  margin: 30px 0;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
}

.result_box .info_box .card p {
  text-align: left;
}

.result_box .result_text p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}

.result_text > span {
  margin-bottom: 30px;
  display: block;
}

.result_box .special_case {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.result_box .special_case + p {
  margin-top: 20px;
}

.result_text a {
  color: hsla(213, 46%, 48%, 1);
  font-size: 18px;
  font-weight: 500;
  min-width: 60%;
  display: block;
}

.result_text a:hover {
  color: #ffd72f;
  text-decoration: underline;
}

#info_result_3:hover {
  text-decoration: none;
}

.result_text .info_box {
  margin: 0;
}

.result_text .info_box + .info_box {
  margin-top: 20px;
}

#info_result_3 p {
  text-align: left;
}

.result_text .info_box .card {
  font-size: 16px;
  padding-bottom: 5px;
  padding-top: 10px;
  padding-right: 10px;
}

.result_text ol {
  margin: 0 0 20px 0;
  padding: 0 20px;
}

.result_text li {
  text-align: justify;
}

.result_text ol + p {
  text-align: left;
}

.result_box .buttons {
  display: flex;
  margin: 20px 0;
}

.result_box .buttons button {
  min-width: 169px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  height: 40px;
  text-align: center;
  text-transform: none;
  background-color: var(--active-color);
  transition: 0.3s;
  border: 0 none;
  display: inline-block;
  cursor: pointer;
}

.result_box .buttons button:focus,
.result_box .buttons button:hover {
  background-color: #005aad;
  color: #fff;
}

.buttons button:not(:last-child) {
  margin-right: 20px;
}

.buttons button:hover {
}

/** Hide assistant widget */
.widget {
  display: none !important;
}

.que_text .fa {
  font-size: 1.1rem;
  position: relative;
  top: -2px;
  width: 20px;
  color: #005aad;
  cursor: pointer;
  margin: 0 5px;
}

.que_text .fa:hover {
  color: #ffd72f;
}

.info_box {
  border: solid 1px #d3d3d3;
  border-radius: 0;
  padding: 28px;
  margin: 50px 40px;
  font-size: 14px;
}

.info_box .card {
  border: 0 none;
  font-weight: 400;
  line-height: 1.4;
  background-color: transparent;
}

.info_box .card strong {
  font-weight: 700;
}

.info_box li {
  margin-bottom: 10px;
}

.info_box .card ul.list-cyrylyc {
  list-style: none;
}

.info_box a {
  color: hsla(213, 46%, 48%, 1);
}

.info_box a:hover {
  text-decoration: underline;
  color: #ffd72f;
}

.quiz_footer_example .footer_btns_ button {
  background-color: #005aad;
  color: #fff;
  pointer-events: none;
}

.option_list_example .option {
  pointer-events: none;
}

.quiz_footer_example .footer_btns_ .next_btn_ {
  background-color: #ffd72f;
  color: #000;
}

.footer_btns_ {
  display: flex;
  justify-content: space-between;
  margin: 0 30px 0 40px;
}

.que_text_example a,
.info_example .fa.fa-info-circle {
  pointer-events: none;
  color: hsla(213, 46%, 48%, 1);
}

.info_example + .example_intro .quiz_wrapper {
  padding: 0 0 30px 0;
}

.start_btn p {
  font-size: 16px;
}

.option_example {
  background: rgba(32, 42, 120, 0.06);
  border: solid 1px #d3d3d3;
  border-radius: 0;
  padding: 8px 15px;
  font-size: 17px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  position: relative;
  width: 100px;
}

.option_example span:after {
  top: 10px;
  position: absolute;
  content: " ";
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: solid 1px hsla(0, 6%, 53%, 1);
  border-radius: 8px;
  right: 20px;
}

.button_example,
.option_example {
  pointer-events: none;
  display: inline-block;
  margin: 10px 5px 0;
}

.footer_btns .example_quit {
  background-color: #ffd72f;
  padding-left: 24px;
  padding-right: 24px;
  border: 0 none;
  color: #000;
}

.quiz_footer button:hover,
.footer_btns a:hover,
.footer_btns button:hover,
.quiz_footer button:focus,
.footer_btns a:focus,
.footer_btns button:focus,
.quiz_footer button:hover:focus,
.footer_btns a:hover:focus,
.footer_btns button:hover:focus {
  border: 0 none;
}

.footer_btns button.quit_btn:hover,
.footer_btns .example_quit:hover {
  background-color: #005aad;
  color: #fff;
}

.form_box {
  padding: 30px 20px;
}

.form_box textarea {
  width: 500px;
  height: 200px;
  border: solid 1px #d3d3d3;
  border-radius: 0;
  padding: 5px 15px;
  margin-top: 20px;
  display: block;
  font-size: 16px;
  background-color: #fff;
}

.form_box label {
  margin-left: 15px;
  font-size: 14px;
}

.form_box p {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.form_box button,
.form_box a {
  padding: 5px 30px;
  outline: none;
  cursor: pointer;
  transition: 0.1s;
  min-width: 169px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  height: 30px;
  text-align: center;
  text-transform: none;
  color: #fff;
  transition: 0.5s;
  border-radius: 0;
  margin-top: 30px;
  display: inline-block;
  border: 0 none;
  text-decoration: none;
}

.form_box .add_feedback_test {
  height: 40px;
  background-color: #ffd232;
  color: #005aad;
}

.form_box button:hover {
  background-color: #ffd232;
}

.form_box input[type="radio"] {
  margin-left: 20px;
}

.form_box a {
  background-color: #005aad;
  margin-right: 20px;
  display: inline-block;
  line-height: 28px;
}

.form_box a:hover {
  background-color: #005aad;
}

.form_box_thanks h2 {
  margin-top: 100px;
  margin-left: 20px;
}

.form_wrapper label,
.form_wrapper input[type="radio"] {
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .form_box textarea {
    width: 100%;
  }

  section .option_list {
    width: 100%;
  }

  .container_quiz h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .container_quiz h1 span {
    font-size: 34px;
  }

  .start_btn button {
    font-size: 16px;
  }

  .footer_btns button:first-child {
    margin-bottom: 10px;
  }

  .footer_btns button {
    margin-bottom: 10px;
    margin-top: 20px;
    width: 150px;
  }

  .example_box .footer_btns button {
    width: auto;
  }
}

/* overide base bootstrap styles*/
.lang-item a {
  color: rgba(231, 246, 255, 0.8);
}

.lang-item a:hover {
  color: #fff;
}

a:hover {
  text-decoration: none;
}

.footer__wrap-left > p a,
.footer__bottom p a {
  color: #fff;
}

.footer__wrap-left > p a:hover,
.footer__bottom p a:hover {
  color: #fff;
  text-decoration: underline;
}

.carousel {
  padding-bottom: 70px;
}

.carousel-indicators {
  bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  left: auto;
}

.carousel-indicators li {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.carousel-indicators .active {
  background-color: #000;
}

.carousel-control-next,
.carousel-control-prev {
  align-items: flex-end;
  color: #000;
}

.carousel-inner {
  width: 1200px;
  height: 600px;
  margin-top: 50px;
}

.carousel-item {
  background-image: url(../assets/images/tests/conflict_test_bg.png);
  background-repeat: no-repeat;
  background-size: 1200px auto;
  background-position: left top;
  width: 1200px;
  height: 600px;
  position: relative;
}

.one-example-slide {
  background: transparent;
  width: 1200px;
  height: 600px;
  padding: 0 0 0;
}

.one-example-slide h2 {
  background-color: hsla(0, 0%, 92%, 0.86);
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  padding: 3px 10px;
  display: inline-block;
  margin-left: 35px;
}

.final-slide-box {
  width: 550px;
  height: 340px;
  background-color: white;
  position: relative;
  top: 130px;
  left: 50px;
}

.final-slide {
  background-image: url(../assets/images/tests/conflict-test-end-2.png);
  background-repeat: no-repeat;
  background-size: 386px 261px;
  background-position: left top;
  width: 456px;
  height: 361px;
  margin: 0 auto;
  background-position: center top;
}

.situation {
  font-weight: 300;
  font-size: 18px;
  line-height: 20px;
  width: 550px;
  margin-left: 45px;
}

.example-question {
  font-weight: 700;
  width: 450px;
  margin-top: 100px;
  margin-left: 75px;
  font-size: 16px;
}

.answer-block {
  position: absolute;
  bottom: 255px;
  left: 85px;
}

.answer-item-1 {
  font-weight: bold;
}

.answer-item-2 {
  margin-top: 18px;
  font-weight: 400;
}

.situation-2 .answer-item-2 {
  letter-spacing: -1px;
}

.concerns {
  position: absolute;
  top: 15px;
  right: 70px;
  width: 300px;
  line-height: 20px;
  font-size: 16px;
}

.concerns-1 {
  font-size: 14px;
  line-height: 16px;
}

.concerns-6 {
  font-size: 15px;
  line-height: 17px;
}

.concerns-3 {
  line-height: 26px;
  top: 45px;
  right: 145px;
}

.concerns-5 {
  top: 25px;
}

.concerns-4 {
  top: 20px;
  font-size: 15px;
  line-height: 18px;
}

.concerns-7 {
  top: 50px;
}

.red {
  color: red;
}

.green {
  color: green;
}

.close_button {
  color: red;
  text-align: center;
  display: block;
  margin: 20px auto 0;
}

.concerns-answer {
  border: solid 1px hsla(43, 97%, 55%, 1);
  border-radius: 0;
  padding: 3px 20px;
  display: inline-block;
  margin-left: 5px;
}

.concerns-2 .concerns-answer,
.concerns-6 .concerns-answer {
  margin-left: -2px;
  margin-top: 10px;
}

.concerns-6 .concerns-answer {
  margin-top: 1px;
}

.example_box .footer_btns {
  opacity: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 610px;
  position: relative;
  top: -30px;
}

.example_box .footer_btns a,
.example_box .footer_btns button {
  border-radius: 0;
}

.example_intro {
  border: solid 1px #d3d3d3;
  border-radius: 0;
  margin: 40px auto 60px;
  width: 70%;
}

.example_intro .quiz_wrapper {
  width: 90%;
}

.intro_box .start_btn p a {
  color: #1e5f94;
  text-decoration: underline;
}

.first_buttons {
  display: flex;
  margin: 80px 0 60px 0;
  justify-content: center;
}

.first_buttons button,
.start_btn button {
  color: #005aad;
  background-color: #ffd72f;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8rem;
  padding: 8px 40px;
  transition: 0.8s;
  border-radius: 0;
  border: 0 none;
  cursor: pointer;
  height: auto;
  transition: 0.5s;
}

.first_buttons button:hover,
.start_btn button:hover {
  background-color: #005aad;
  color: #ffd72f;
}

.first_buttons button:first-child,
.start_btn button.start_example,
.footer_btns button,
.footer_btns a {
  background-color: #005aad;
  color: #fff;
  transition: 0.5s;
}

.first_buttons button:first-child:hover,
.start_btn button.start_example:hover,
.footer_btns button:hover,
.footer_btns a:hover {
  background-color: #ffd72f;
  color: #005aad;
}

.first_buttons button:hover {
  background-color: #005aad;
  color: #fff;
}

.tool_header {
  margin-bottom: 30px;
  text-align: center;
}

.tool_header span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 15px;
  font-size: 24px;
}

.tool_header::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: hsla(43, 97%, 55%, 1);
  position: relative;
  top: -14px;
  z-index: 0;
}

#info_44 {
  position: fixed;
  top: 100px;
  width: 30%;
  right: 0px;
  background: white;
  bottom: 10px;
  overflow: auto;
}

#info_44 .card-body p a {
  margin-top: 0;
  text-align: left;
}

.link-test {
  font-size: 13px;
  border: solid 1px hsla(43, 97%, 55%, 1);
  width: 300px;
  padding: 20px;
  border-radius: 0;
  background-color: #f2f9fd;
  line-height: 1.3;
  margin: 20px auto 30px;
  color: hsla(213, 46%, 48%, 1);
  display: block;
}

@media (max-width: 1200px) {
  .quiz_wrapper {
    width: 80%;
  }

  .example_intro {
    width: 100%;
  }

  .example_intro .quiz_wrapper {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .start_btn button:not(:last-child) {
    margin-bottom: 10px;
  }

  .quiz_wrapper {
    width: 100%;
  }

  .example_box {
    transform: scale(0.8);
  }

  .footer_btns button,
  .footer_btns a {
    min-width: auto;
    padding: 0 19px;
  }
}

@media (max-width: 992px) {
  .footer_btns a {
    margin-right: 200px;
  }
}

@media (max-width: 768px) {
  .example_box {
    transform: scale(0.6);
  }

  .footer_btns button,
  .footer_btns a,
  .quiz_footer button {
    margin-top: 10px;
  }

  .footer_btns button:first-child {
    margin-right: 10px;
  }

  .footer_btns a {
    margin-right: 0;
  }

  .quiz_wrapper section {
    padding: 25px 30px 0 20px;
    background: transparent;
  }

  .quiz_footer {
    padding-left: 10px;
  }

  .quiz_footer {
    align-items: flex-start;
  }

  .quiz_footer .next_btn {
    align-self: start;
    min-width: 120px;
  }

  .footer_btns_ {
    flex-direction: column;
    margin-left: 20px;
  }

  .info_example + .example_intro .quiz_wrapper {
    padding-bottom: 0;
  }

  .buttons_container {
    flex-direction: column;
  }

  .buttons_container > div {
    width: 100%;
    margin-bottom: 40px;
  }

  .result_box {
    width: 580px;
  }

  #info_44 {
    position: fixed;
    top: 150px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 600px) {
  .example_intro {
    margin-top: 0;
  }

  .start_btn button {
    width: 100%;
    margin-bottom: 20px;
  }

  .start_btn button.button_example,
  .start_btn .footer_btns_ button {
    width: fit-content;
  }

  .start_btn button.start,
  .start_btn button.start_example {
    width: 100%;
    margin-bottom: 20px;
  }

  .example_box {
    transform: scale(0.3);
    position: relative;
    top: -280px;
    left: -130px;
  }

  .carousel-indicators {
    display: none;
  }

  .start_btn {
    flex-direction: column;
  }

  .info_box {
    margin: 10px 20px;
  }

  .first_buttons {
    flex-direction: column;
  }

  .start_btn .buttons_container button.start_example,
  .start_btn .buttons_container button.start {
    margin-right: 0;
  }

  .result_box .buttons {
    flex-direction: column;
  }

  .result_box .buttons button {
    width: 100%;
    margin-bottom: 20px;
  }

  .result_box {
    width: 420px;
  }

  .quiz_wrapper section {
    padding: 25px 20px 0;
    background: transparent;
  }

  section .option_list .option {
    border-radius: 0;
  }

  section .option_list .option span {
    padding-right: 20px;
  }
}

@media (max-width: 400px) {
  .result_box {
    width: 320px;
  }
}

.fade {
  opacity: 0;
}

.show {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse .show {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
}
