@tailwind base;
@tailwind components;
body {
  font-family: "Source Sans Pro", sans-serif;
}

.btn-primary {
  @apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}

.btn-primary:hover {
  @apply bg-blue-700;
}

.btn-danger {
  @apply bg-red-500 text-white font-bold py-2 px-4 rounded;
}

.btn-danger:hover {
  @apply bg-red-700;
}

.btn-warning {
  @apply bg-orange-500 text-white font-bold py-2 px-4 rounded;
}

.btn-warning:hover {
  @apply bg-orange-700;
}

.btn-success {
  @apply bg-green-500 text-white font-bold py-2 px-4 rounded;
}

.btn-success:hover {
  @apply bg-green-700;
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
  cursor: default;
}

.btn-light {
  @apply bg-gray-100 text-black font-bold py-2 px-4 rounded;
}

.btn-light:hover {
  @apply bg-gray-300;
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

@tailwind utilities;
html, body {
  margin: 0px;
  padding: 0px;
  width: 100vw;
}

.vue_main {
  min-height: 400px;
}

#back_top {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_top.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto auto;
  width: 2200px;
  max-width: 100vw;
  height: 616px;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
}

#back_top.noanimation {
  transition-property: none !important;
}

#back_top.background_to_center {
  margin-top: 0px;
  background-position: center;
}

#back_top.background_to_left {
  transform: translate(0px, -200px);
  transition-duration: 0.5s;
  background-position: -400px 0%;
}

#back_top.background_to_test {
  transform: translate(0px, -510px);
  transition-duration: 0.5s;
  background-position: -1300px 0%;
  overflow-x: hidden;
}

#green_top {
  top: 300px;
  right: -100px;
}

#yellow_middle {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_yellow.svg);
  background-position: left;
  background-repeat: no-repeat;
  position: absolute;
  left: -60px;
  top: 700px;
  width: 332px;
  height: 340px;
}

#green_middle {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_green.svg);
  background-position: right;
  background-repeat: no-repeat;
  right: -220px;
  top: 800px;
  width: 599px;
  height: 602px;
  transition-duration: 0.5s;
}

#green_middle.green_middle_to_top {
  transform: translate(0px, -300px);
}

.loaded #green_middle.green_middle_to_top {
  transform: translate(0px, -300px);
}

.w-240px {
  width: 240px;
}

#back_menu {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_menu2.svg);
  background-position: center;
  background-size: auto auto;
  background-repeat: no-repeat;
  width: 582px;
  max-width: 100vw;
  height: 165px;
  margin-top: -40px;
  margin-left: 880px;
  top: 0px;
}

.back_menu_white {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_menu.svg) !important;
}

.loggedin .back_menu {
  margin-left: 730px;
}

.back_footer {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_footer.svg);
  background-position: center;
  background-size: auto auto;
  width: 1964px;
  max-width: 100vw;
  margin: auto;
  height: 259px;
  overflow-x: hidden;
}

.footer {
  background-color: #05211E;
  z-index: -10;
  min-height: 260px;
}
.footer .footer_circle {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/back_footer_circle.svg);
  background-size: auto auto;
  width: 384px;
  height: 192px;
  position: absolute;
  margin-left: -300px;
  bottom: 0px;
}

.z-999 {
  z-index: 999;
}

.z-1200 {
  z-index: 1200;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 9999;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

.ranking_list {
  border-radius: 50px;
  width: 310px;
  padding: 4px;
  border: 1px solid #ddd;
  border-left-color: #e9e9e9;
  border-right-color: #e9e9e9;
  border-top-color: #f0f0f0;
  background-color: #fff;
}

.ranking_list:first-of-type {
  margin-top: 0px;
}

.profile-thumbnail {
  width: 50px;
  height: 50px;
  border: 3px Solid #ffe3e0;
  background-color: #fff;
}

.profile-thumbnail-medium {
  max-width: 97px;
  max-height: 97px;
  border: 10px Solid rgba(255, 204, 0, 0.14);
  background-color: #fff;
}

.profile-thumbnail-big {
  max-width: 180px;
  max-height: 180px;
  border: 1px Solid #ffe3e0;
  background-color: #fff;
}

.test-counters {
  width: 100%;
  max-width: 904px;
  background-color: #000;
  border: 1px Solid #aaa;
  box-shadow: 0px 0px 2px #aaa;
  color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: none;
  padding: 10px;
}

.nav .nav-item {
  cursor: pointer;
  background-color: white;
  border: 1px Solid #ddd;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.18);
}
.nav .nav-item .active {
  font-weight: bold;
  cursor: default;
}
.nav .nav-item a {
  display: block;
  padding: 8px;
  width: 100%;
}
.nav .nav-item:hover {
  border: 1px Solid black;
}
@keyframes spin {
  0% {
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
#loader-wrapper {
  background-color: #ffffff;
}

@keyframes cssAnimation {
  to {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
/* Loaded */
.loaded #loader-wrapper .loader-section.section-left .loader-section.section-right {
  display: none;
}
.loaded #loader {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.loaded #loader-wrapper {
  display: none;
  visibility: hidden;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

.rotate:hover svg {
  /* Chrome, Safari, Opera */
  animation: rote 2s infinite;
}

.rotate-back:hover svg {
  /* Chrome, Safari, Opera */
  animation: rote-back 2s infinite;
}

@keyframes rote {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rote-back {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.go-left:hover svg {
  /* Chrome, Safari, Opera */
  animation: anim-go-left 2s infinite;
}

@keyframes anim-go-left {
  0% {
    transform: scale(1) translateX(0px);
  }
  100% {
    transform: scale(1.5) translateX(-4px);
  }
}
.main_tail {
  height: 260px;
  /* For Safari 3.1 to 6.0 */
  transition: background-color 0.3s;
}
.main_tail img, .main_tail .second_frame {
  /* For Safari 3.1 to 6.0 */
  transition: display 0.3s;
  max-width: 250px;
}

.main_tail:hover {
  background-color: #A7D5D7;
}
.main_tail:hover img {
  display: none;
}
.main_tail:hover .second_frame {
  display: block;
}
.main_tail:hover .second_frame p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.recommendations-component .main_tail {
  height: 330px;
}

.course_tail {
  /* For Safari 3.1 to 6.0 */
  transition: background-color 0.2s;
  box-shadow: 0px 0px 10px #9abbe0;
}

.course_tail:hover {
  background-color: #A7D5D7;
}

.left_submenu {
  margin-left: -75px;
  position: absolute;
}
.left_submenu .round_green_button {
  background-color: #C2E1BA;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  align-content: center;
  align-items: center;
  cursor: pointer;
}
.left_submenu .round_green_button svg {
  width: 100%;
}
.left_submenu .round_green_button:hover {
  background-color: #89C17B;
  border: 3px Solid #ddd;
}

.takeatest, .homepage {
  min-height: 800px;
  max-width: 1280px;
  margin: auto;
}
.takeatest ul, .homepage ul {
  padding-left: 20px;
  list-style: disc;
}
.takeatest ol, .homepage ol {
  padding-left: 15px;
  list-style-type: decimal;
}

.ql-editor ul {
  padding-left: 20px;
  list-style: disc;
}
.ql-editor ol {
  padding-left: 15px;
  list-style-type: decimal;
}

.dragPanel p, .dropPanel p {
  margin: 0px;
}
.dragPanel h1, .dragPanel h2, .dropPanel h1, .dropPanel h2 {
  font-size: 1.7rem;
}
.dragPanel h3, .dropPanel h3 {
  font-size: 1.4rem;
}

.ql-align-center {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex !important;
}

.ql-align-right {
  text-align: right;
  float: right;
  justify-content: right;
  align-items: right;
  display: flex !important;
}

.test-body p {
  margin: 0px;
}
.test-body .answered {
  box-shadow: 0px 0px 5px #278800;
  filter: grayscale(100%);
}
.test-body .activ {
  box-shadow: 0px 0px 5px #2e70ff;
  filter: grayscale(50%);
}

#public_question {
  position: relative;
  border: 1px solid #aaa;
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: none;
  height: 602px;
  max-width: 904px;
}
#public_question p {
  margin: 0px;
}
#public_question h1, #public_question h2 {
  font-size: 1.7rem;
}
#public_question h3 {
  font-size: 1.4rem;
}
#public_question .answered {
  box-shadow: 0px 0px 5px #278800;
  filter: grayscale(100%);
}
#public_question .activ {
  box-shadow: 0px 0px 5px #2e70ff;
  filter: grayscale(50%);
}
#public_question .selected {
  box-shadow: 0px 0px 5px #da0000;
}
#public_question .takeatest_button_container {
  position: absolute;
  width: 0px;
  height: 0px;
}
#public_question .takeatest_button_container .takeatest_button_dropdown {
  position: absolute;
  border-style: solid;
}

#public_question.show_incorrect_responses {
  border-color: red;
}

.takeatest_button_checkbox .input-group-addon {
  width: 60px;
  height: 100%;
  display: block;
  float: left;
}

.test-center-904 {
  width: 904px;
  min-height: 700px;
  overflow-x: auto;
  margin-bottom: 20px;
  overflow-y: hidden;
}

.submit_holder {
  position: relative;
}
.submit_holder div {
  position: absolute;
}

.currentrankinguser {
  background-color: #fff4f4;
  border-bottom-width: 4px;
}

.modal {
  z-index: 9999;
}

.mr-brain {
  max-width: 100%;
}

.mr-brain-small {
  max-width: 40%;
}

.dropdownclass {
  width: 90%;
  margin-left: 5%;
  height: 80%;
  margin-top: 1%;
  border: none;
}

.button_text {
  border-style: solid;
  position: absolute;
}

.submit_holder {
  position: relative;
}
.submit_holder div {
  position: absolute;
}

.arrow-to-oval {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/arrow-to-oval.png);
  display: inline-block;
  width: 41px;
  height: 31px;
  margin-bottom: -10px;
  margin-left: 3px;
  position: relative;
  /* Safari 4.0 - 8.0 */
  animation: example 5s infinite;
  animation-timing-function: ease-in-out;
}

/* Safari 4.0 - 8.0 */
/* Standard syntax */
@keyframes example {
  0% {
    left: 0px;
    top: 0px;
  }
  100% {
    left: 170px;
    top: 0px;
  }
}
.textarea-grey {
  border-radius: 6px;
  padding: 12px;
  background-color: #F9F9F9;
}

.comments-component .add-comment textarea {
  width: calc(100% - 130px);
  border-radius: 6px;
  padding: 12px;
  background-color: #F9F9F9;
}
.comments-component .comment_content {
  width: calc(100% - 130px);
  float: left;
  min-height: 120px;
}
.comments-component .comment_user_time {
  font-size: 14px;
}
.comments-component .profile-thumbnail {
  float: left;
}
.comments-component .write_reply_text {
  color: #007bff;
  font-size: 14px;
}
.comments-component .view_replies {
  color: #007bff;
}
.comments-component .view_replies p {
  font-size: 14px;
}

.my_shadow {
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.18);
}

.my_light_shadow {
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.18);
}

.my_check {
  background-image: url(https://storage.googleapis.com/blesstest/public/img/icon_check.png);
  width: 47px;
  height: 34px;
}

.modal-content {
  height: 100%;
}

.close_modal_btn {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.h-90p {
  height: 90%;
}

.mh-84p {
  max-height: 84%;
}

.bg-red-50 {
  background-color: #FFF9F9;
}

.bg-green-my {
  background-color: #25AE88;
}

.bg-green-my2 {
  background-color: #C2E1BA;
}

.bg-green-my3 {
  background-color: #F3FEF0;
}

.text-green-my {
  color: #25AE88;
}

.text-blue-my {
  color: #007bff;
}

.text-green-my2 {
  color: #C2E1BA;
}

.border-6 {
  border-width: 6px;
}

.border-green-my2 {
  border-color: #C2E1BA;
}

.test_finished_rating {
  width: 100%;
}
.test_finished_rating > div {
  margin: auto;
  margin-left: 70px;
  justify-content: center;
}

.register_btn:hover {
  color: white;
  background-color: #C2E1BA;
}

.register_btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #88b8ff;
}

.average_good_answers {
  height: 12px;
  border-radius: 4px;
  margin-top: 12px;
  width: 100%;
  background-color: #fff;
  position: relative;
}

.average_good_answers .average_good {
  height: 12px;
  border-radius: 4px;
  background-color: #1900ff;
  background-image: linear-gradient(to bottom, #0084ff, #1900ff);
}

.average_good_answers .average_good:after {
  content: "";
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  z-index: 1;
  background-size: 40px 40px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.login_top {
  top: 0px;
  position: absolute;
  background-color: #A3C5C6;
  width: 100%;
  height: 370px;
  z-index: -1;
}

.bg-smoke-light {
  background-color: rgba(0, 0, 0, 0.4);
}

[v-cloak].main_menu {
  display: none;
}

[v-cloak] > * {
  display: none;
}

.loading {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  min-height: 1000vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  overflow: scroll;
}

.tooltip {
  padding: 4px 8px;
  max-width: 400px;
  background: #000;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transform: translateX(-50%);
  z-index: 9990;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: black;
  z-index: 1;
}
.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}
.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}
.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=right] {
  margin-left: 5px;
}
.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^=left] {
  margin-right: 5px;
}
.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tile_started {
  border-color: #ffc400;
  box-shadow: 0px 0px 10px #ffc400;
}

.tile_finished {
  border-color: #3bcf00;
  box-shadow: 0px 0px 10px #3bcf00;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-light {
  height: calc(1.5em + .75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-stright {
  display: block;
  width: 100%;
  height: auto;
  padding: 2px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus, .form-control-light:focus, .form-control-stright:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.shadow-green {
  box-shadow: 0 0 8px #48bb78;
}

.shadow-red {
  box-shadow: 0 0 8px #e43e3e;
}

.takeatest_button_container ul, .panel-default .panel-body ul {
  list-style-type: disc;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.takeatest_button_container ol, .panel-default .panel-body ol {
  list-style-type: decimal;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.take-audio .panel-body {
  padding: 4px 0px;
}
.take-audio .panel-body svg {
  font-size: 10vw;
}

.adBanner {
  background-color: transparent;
  height: 1px;
  width: 1px;
}

.super-inline h1, .super-inline h4, .test-explantion h1, .test-explantion h4 {
  display: flex;
}
.super-inline h1 u, .super-inline h1 strong, .super-inline h4 u, .super-inline h4 strong, .test-explantion h1 u, .test-explantion h1 strong, .test-explantion h4 u, .test-explantion h4 strong {
  display: contents;
}
.super-inline h2, .super-inline h3, .super-inline p, .test-explantion h2, .test-explantion h3, .test-explantion p {
  display: contents;
}
.super-inline h2 u, .super-inline h2 strong, .super-inline h3 u, .super-inline h3 strong, .super-inline p u, .super-inline p strong, .test-explantion h2 u, .test-explantion h2 strong, .test-explantion h3 u, .test-explantion h3 strong, .test-explantion p u, .test-explantion p strong {
  display: contents;
}

.contents {
  display: contents !important;
}

.defaulthidden {
  /* Firefox */
  /* Safari and Chrome */
  /* Opera */
  animation: cssShow 4s ease-in 0s;
  animation-fill-mode: forwards;
}

.ql-formula {
  border-color: #555;
}
.ql-formula *, .ql-formula ::before, .ql-formula ::after {
  border-color: #555;
}

.test-explantion .ql-formula {
  border-color: #ccc;
}
.test-explantion .ql-formula *, .test-explantion .ql-formula ::before, .test-explantion .ql-formula ::after {
  border-color: #ccc;
}

@keyframes cssShow {
  0% {
    visibility: hidden;
  }
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
.loaded .defaulthidden {
  visibility: visible;
  animation: none;
}

.mh-150 {
  min-height: 150px;
}

.mh-220 {
  min-height: 220px;
}

.test-header a {
  color: #3182ce;
}

.blesstest_logo {
  width: 204px;
  height: 45px;
}

@media screen and (max-width: 1280px) {
  .back_menu {
    margin-left: 624px;
  }

  #back_menu {
    margin-left: 684px;
  }

  .left_submenu {
    width: 100%;
    position: relative;
    margin-left: 0px;
  }
  .left_submenu .round_green_button {
    float: left;
    display: block;
    margin-right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .back_menu {
    margin-left: 370px;
  }

  #back_menu {
    margin-left: 350px;
  }

  #green_middle, #green_top {
    display: none;
  }

  .container-full {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }

  .left_submenu {
    padding-left: 10px;
  }
}
@media screen and (max-width: 900px) {
  #back_menu {
    margin-left: 225px;
  }

  #public_question.public_question p, #public_question.public_question h5,
#public_question.public_question select,
#public_question.public_question .cloud_content,
#public_question.public_question .cloud,
#public_question.public_question .super-inline {
    font-size: calc(6px + 5 * ((100vw - 250px) / (920 - 250)));
    line-height: calc(1em + (1.4 - 1) * ((100vw - 250px)/(920 - 250)));
  }

  #public_question.public_question h2, .public_question .fas {
    font-size: calc(12px + 5 * ((100vw - 250px) / (920 - 250)));
    line-height: calc(1.1em + (1.4 - 1.0) * ((100vw - 250px)/(920 - 250)));
  }

  #public_question.public_question h3 {
    font-size: calc(10px + 5 * ((100vw - 250px) / (920 - 250)));
    line-height: calc(1.1em + (1.4 - 1.0) * ((100vw - 250px)/(920 - 250)));
  }

  .takeatest_button_checkbox .input-group-addon {
    width: 40px;
  }
  .takeatest_button_checkbox .input-group-addon .h-6 {
    height: 1.1rem;
  }

  .left_submenu {
    padding-left: 10px;
  }

  #loader-wrapper {
    visibility: hidden;
    display: none;
    z-index: -10;
  }
}
@media screen and (max-width: 768px) {
  .container-full {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }

  #back_menu, #green_middle, #green_top {
    display: none;
  }

  .test_finished_rating > div {
    margin-left: 30px;
  }

  .left_submenu {
    padding-left: 10px;
  }
}
@media screen and (max-width: 640px) {
  .container-full {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }

  .blesstest_logo {
    margin-left: 1.25rem;
  }

  #back_menu, #green_middle, #green_top {
    display: none;
  }

  .left_submenu {
    padding-left: 10px;
  }
  .left_submenu .round_green_button {
    border-radius: 15%;
    height: 70px;
    width: 85px;
  }
  .left_submenu .round_green_button p {
    font-size: small;
    padding: 4px;
  }
}
@media screen and (min-width: 640px) {
  .left_submenu .round_green_button p {
    display: none;
  }
}
