.admin .login-form {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin .login-form .form {
  width: 500px;
}
.admin .stat-dashboard .header {
  background-color: #5496eb;
  display: flex;
  justify-content: center;
  color: white;
}
.admin .stat-dashboard .header a {
  color: white;
}
.admin .stat-dashboard .header .wrapper {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
}
.admin .stat-dashboard .header .wrapper .item {
  display: flex;
  align-items: center;
}
.admin .stat-dashboard .header .wrapper .item .logo {
  height: 50px;
}
.admin .stat-dashboard .header .wrapper .item .logo-text {
  font-family: Rubik Bold;
  text-transform: uppercase;
}
.admin .stat-dashboard .content {
  display: flex;
  justify-content: center;
}
.admin .stat-dashboard .content .wrapper {
  width: 1200px;
  display: flex;
  padding: 10px 20px;
  box-sizing: border-box;
}
.admin .stat-dashboard .content .wrapper .left {
  padding-top: 40px;
  flex-grow: 2;
}
.admin .stat-dashboard .content .wrapper .right {
  padding-top: 40px;
  width: 500px;
}
.admin .stat-dashboard .counter-block {
  display: flex;
  align-items: center;
}
.admin .stat-dashboard .counter-block .title {
  width: 300px;
  box-sizing: border-box;
}
.admin .stat-dashboard .counter-block .counter {
  font-family: Rubik Bold;
  font-size: 50px;
}
@media screen and (max-width: 1200px) {
  .admin .header .wrapper {
    width: auto;
  }
  .admin .content .wrapper {
    width: auto;
  }
}
@-webkit-keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
    transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
    transform: translateY(-6.4px);
  }
}
@keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
    transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
    transform: translateY(-6.4px);
  }
}
@-webkit-keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes slide-in-elliptic-left-fwd {
  0% {
    -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
    transform: translateX(-800px) rotateY(30deg) scale(0);
    -webkit-transform-origin: -100% 50%;
    transform-origin: -100% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
    transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: 1800px 50%;
    transform-origin: 1800px 50%;
    opacity: 1;
  }
}
@keyframes slide-in-elliptic-left-fwd {
  0% {
    -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
    transform: translateX(-800px) rotateY(30deg) scale(0);
    -webkit-transform-origin: -100% 50%;
    transform-origin: -100% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
    transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: 1800px 50%;
    transform-origin: 1800px 50%;
    opacity: 1;
  }
}
.autocomplete-view {
  position: relative;
  width: 100%;
  font-size: 17px;
  font-family: Regular;
}
.autocomplete-view .autocomplete-toggle {
  display: flex;
  border-bottom: 1px solid #a9a9a9;
}
.autocomplete-view .autocomplete-toggle .current-text {
  flex-grow: 2;
  box-sizing: border-box;
  margin-right: 25px;
  padding: 5px 0;
  background-color: transparent;
  border: none;
  outline: none;
  color: black;
  letter-spacing: 1px;
  font-size: 17px;
  font-family: Regular;
  position: relative;
}
.autocomplete-view .autocomplete-toggle:after {
  content: '';
  border: 7px solid transparent;
  border-top: 9px solid black;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -3px;
}
.autocomplete-view .autocomplete-toggle.active:after {
  border-top: 1px solid transparent;
  border-bottom: 9px solid black;
}
.autocomplete-view .autocomplete-menu {
  position: absolute;
  left: 0;
  top: 29px;
  border: 1px solid #a9a9a9;
  width: 100%;
  box-sizing: border-box;
  max-height: 350px;
  overflow-y: auto;
  background-color: white;
  z-index: 2;
}
.autocomplete-view .autocomplete-menu .autocomplete-item {
  padding: 5px;
  word-break: break-all;
}
.autocomplete-view .autocomplete-menu .autocomplete-item:hover {
  background-color: #5496eb;
  color: white;
}
@font-face {
  font-family: Thin;
  src: url(/fonts/roboto/Roboto-Thin.ttf);
}
@font-face {
  font-family: Light;
  src: url(/fonts/roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: Regular;
  src: url(/fonts/roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: Medium;
  src: url(/fonts/roboto/Roboto-Medium.ttf);
}
@font-face {
  font-family: Bold;
  src: url(/fonts/roboto/Roboto-Bold.ttf);
}
@font-face {
  font-family: Black;
  src: url(/fonts/roboto/Roboto-Black.ttf);
}
@font-face {
  font-family: Italic;
  src: url(/fonts/roboto/Roboto-Italic.ttf);
}
@font-face {
  font-family: Rubik Bold;
  src: url(/fonts/rubik/Rubik-Bold.ttf);
}
.m-bold {
  font-family: "Bold";
}
.m-light {
  font-family: "Light";
}
.m-thin {
  font-family: "Thin";
}
.m-pointer {
  cursor: pointer;
}
.m-move {
  cursor: move;
}
.m-grab {
  cursor: grab;
}
.m-center {
  text-align: center;
}
.m-right {
  text-align: right;
}
.m-left {
  text-align: left;
}
.pt-10 {
  padding-top: 100px;
}
.pb-1 {
  padding-bottom: 10px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-5 {
  padding-bottom: 50px;
}
.pb-10 {
  padding-bottom: 100px;
}
.pr-2 {
  padding-right: 20px;
}
.pr-3 {
  padding-right: 30px;
}
.pl-2 {
  padding-left: 20px;
}
.pl-3 {
  padding-left: 30px;
}
.m-1 {
  margin: 10px;
}
.m-2 {
  margin: 20px;
}
.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mt-5 {
  margin-top: 50px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-5 {
  margin-bottom: 50px;
}
.ml-1 {
  margin-left: 10px;
}
.ml-2 {
  margin-left: 20px;
}
.ml-3 {
  margin-left: 30px;
}
.ml-4 {
  margin-left: 40px;
}
.ml-5 {
  margin-left: 50px;
}
.ml-9 {
  margin-left: 90px;
}
.mr-1 {
  margin-right: 10px;
}
.mr-2 {
  margin-right: 20px;
}
.mr-3 {
  margin-right: 30px;
}
.mr-4 {
  margin-right: 40px;
}
.mr-9 {
  margin-right: 90px;
}
.sm {
  font-size: 16px;
}
.lg {
  font-size: 18px;
}
.xlg {
  font-size: 24px;
}
.hidden {
  display: none !important;
}
.m-flex-grow {
  flex-grow: 2;
}
.m-flex {
  display: flex;
}
.m-flex-center1 {
  justify-content: center;
}
.m-flex-center2 {
  align-items: center;
}
.m-block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.m-muted {
  color: #a9a9a9;
}
html {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
html body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Regular';
  font-size: 17px;
  color: #303030;
}
html body .main-wrapper {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
}
html body .main-wrapper .content {
  flex-grow: 2;
}
html body .main-wrapper .admin .admin-content {
  margin: 0 auto;
  width: 1200px;
  padding: 10px 20px;
  box-sizing: border-box;
}
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 70px;
  font-family: Bold;
}
a {
  color: #5496eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:visited,
a:active,
a:focus {
  color: #5496eb;
}
a.gray {
  color: #303030;
}
a.gray:visited,
a.gray:active,
a.gray:focus {
  color: #303030;
}
a.m-no-underline:hover {
  text-decoration: none;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  font-family: Bold;
  letter-spacing: 2px;
  padding: 25px 60px;
  background-color: #5496eb;
  text-decoration: none;
  outline: none;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  background-color: #3b86e9;
  text-decoration: none;
}
.btn:hover:active {
  background-color: #5496eb;
  text-decoration: none;
}
.btn:visited,
.btn:active,
.btn:focus {
  color: white;
}
.btn.muted {
  color: #dfdfdf;
  background-color: transparent;
  border: 3px solid #dfdfdf;
}
.btn.muted:hover {
  background-color: transparent;
  text-decoration: none;
  color: #cdcdcd;
  border-color: #cdcdcd;
}
.btn.muted:hover:active {
  background-color: transparent;
  text-decoration: none;
  color: #dfdfdf;
}
.btn.muted:visited,
.btn.muted:active,
.btn.muted:focus {
  color: #cdcdcd;
}
.btn.small {
  font-size: 20px;
  padding: 14px 50px;
}
.text-input {
  padding: 15px 20px;
  border: 1px solid #cdcdcd;
  border-radius: 0;
  outline: 3px solid white;
  background-color: white;
  font-family: 'Regular';
  font-size: 17px;
  color: #303030;
  transition: outline 0.5s, border 0.5s;
  transition-timing-function: ease;
}
.text-input::placeholder {
  color: #cdcdcd;
}
.text-input:hover {
  border: 1px solid #ebebeb;
}
.text-input:focus {
  outline: 3px solid rgba(84, 150, 235, 0.3);
  border: 1px solid #5496eb;
}
.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table tr {
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}
.table tr td,
.table tr th {
  padding: 10px;
  border-top: 1px solid #f3f3f3;
  border-left: 1px solid #f3f3f3;
  text-align: left;
}
.error {
  color: #ef5350;
}
.green {
  color: #74d961;
}
.c-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}
.c-checkbox-wrapper:first-child {
  margin-top: 0;
}
.c-checkbox-wrapper .c-checkbox {
  border: 1px solid #8b91a9;
  background-color: white;
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-checkbox-wrapper .c-checkbox:after {
  content: '';
  width: 0;
  height: 0;
  background-color: black;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-checkbox-wrapper .c-checkbox.active:after {
  width: 14px;
  height: 14px;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-checkbox-wrapper .c-checkbox.muted {
  background-color: #f3f3f3;
}
.c-checkbox-wrapper .description {
  flex-grow: 2;
  padding-left: 18px;
}
.c-radio-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-radio-wrapper .c-radio {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #8b91a9;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-radio-wrapper .c-radio:after {
  content: '';
  width: 0;
  height: 0;
  background-color: black;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-radio-wrapper .c-radio.active {
  position: relative;
}
.c-radio-wrapper .c-radio.active:after {
  width: 14px;
  height: 14px;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-radio-wrapper .description {
  flex-grow: 2;
  padding-left: 18px;
}
.question-text {
  font-size: 22px;
  font-family: Bold;
}
h1 {
  font-size: 30px;
  font-family: Bold;
}
h2 {
  font-size: 20px;
  font-family: Bold;
}
@media screen and (max-width: 1200px) {
  html body .main-wrapper .admin .admin-content {
    width: auto;
  }
}
.header-view .header {
  background-color: #0e0448;
  display: flex;
  justify-content: center;
  color: white;
}
.header-view .header a {
  color: white;
}
.header-view .header .wrapper {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
}
.header-view .header .wrapper .item {
  display: flex;
  align-items: center;
}
.header-view .header .wrapper .item .logo {
  height: 50px;
}
.header-view .header .wrapper .item .logo-text {
  font-family: Rubik Bold;
  text-transform: uppercase;
}
.icon.logo {
  fill: white;
  width: 139px;
  height: 40px;
}
.icon.bulb {
  width: 63px;
  height: 89px;
  fill: #ff6600;
}
.icon.enter {
  width: 24px;
  height: 24px;
  fill: white;
}
.icon.exit {
  width: 24px;
  height: 24px;
  fill: white;
}
.icon.backspace {
  width: 40px;
  height: 27px;
  fill: #3e3e3e;
}
.icon.space {
  width: 31px;
  height: 9px;
  fill: #3e3e3e;
}
.icon.enter-button {
  width: 35px;
  height: 15px;
  fill: #3e3e3e;
}
.icon.wizzard {
  width: 32px;
  height: 47px;
  fill: #3e3e3e;
}
.index-view {
  background: #3f5efb;
  background: radial-gradient(circle, #3f5efb 0%, #040d32 60%);
  color: white;
}
.index-view .index-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/img/bkg-index.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.index-view h1 {
  text-shadow: 0px 0px 8px #01044a;
  text-transform: uppercase;
  font-family: Rubik Bold;
  letter-spacing: 6px;
}
.index-view .start-button {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  color: white;
  font-size: 30px;
  font-family: Bold;
  padding: 30px 70px;
  background-color: rgba(0, 12, 56, 0.95);
  border: 1px solid white;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
.login-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-view .wrapper {
  display: flex;
  flex-direction: column;
  width: 500px;
}
.login-view .wrapper .step {
  display: flex;
  flex-direction: column;
  width: 500px;
}
.login-view .wrapper .options {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.modal-confirm-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  -webkit-perspective: 1000;
}
.modal-confirm-view .mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  opacity: 0.6;
}
.modal-confirm-view .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #303030;
  padding-bottom: 10px;
}
.modal-confirm-view .modal-header .close {
  font-family: Roboto;
  width: 13px;
  height: 13px;
  line-height: 0.5;
  font-size: 26px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.modal-confirm-view .modal-header .close:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.modal-confirm-view .modal-body {
  padding: 30px 0;
  overflow-y: auto;
  background-color: white;
}
.modal-confirm-view .modal-body.custom-padding {
  padding: 10px 30px;
}
.modal-confirm-view .modal-body .title {
  font-size: 18px;
}
.modal-confirm-view .modal-body .controls {
  display: flex;
}
.modal-confirm-view .modal-body .controls .btn-light {
  margin-right: 20px;
}
.modal-confirm-view .modal-body .controls .btn-light:last-child {
  margin-right: 0;
}
.modal-confirm-view .modal-footer {
  display: flex;
}
.modal-confirm-view .modal {
  background-color: white;
  padding: 10px 20px 20px 20px;
  width: 500px;
  box-sizing: border-box;
  max-height: 100%;
  z-index: 1001;
  overflow-y: auto;
  opacity: 0;
  -webkit-box-shadow: 0px 2px 5px 0px #d6d6d6;
  -moz-box-shadow: 0px 2px 5px 0px #d6d6d6;
  box-shadow: 0px 2px 5px 0px #d6d6d6;
}
.modal-confirm-view .modal.x-large {
  width: 100%;
  height: 100%;
}
.modal-confirm-view .modal.large {
  width: 1024px;
}
.modal-confirm-view .modal.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-center 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.modal-confirm-view .modal.slide-out-bck-center {
  -webkit-animation: slide-out-bck-center 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-bck-center 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@-webkit-keyframes slide-out-bck-center {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-1100px);
    transform: translateZ(-1100px);
    opacity: 0;
  }
}
@keyframes slide-out-bck-center {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-1100px);
    transform: translateZ(-1100px);
    opacity: 0;
  }
}
.page-not-found-view {
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader-view {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: fixed;
  padding: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.preloader-view .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.progress-view .canvas {
  width: 400px;
  height: 400px;
}
.question-table-view .answers {
  border-collapse: collapse;
}
.question-table-view .answers td {
  border-top: 1px solid #cdcdcd;
  padding: 10px 5px;
  width: 100px;
  text-align: center;
}
.question-table-view .answers td:first-child {
  text-align: left;
  width: auto;
}
.question-table-view .answers td .wrapper {
  margin: 0 auto;
  width: 22px;
}
.stat-page-view .admin-content .wrapper {
  display: flex;
  box-sizing: border-box;
}
.stat-page-view .admin-content .wrapper .left {
  padding-top: 40px;
  flex-grow: 2;
}
.stat-page-view .admin-content .wrapper .right {
  padding-top: 40px;
  width: 500px;
}
.stat-page-view .counter-block {
  display: flex;
  align-items: center;
}
.stat-page-view .counter-block .title {
  width: 300px;
  box-sizing: border-box;
}
.stat-page-view .counter-block .counter {
  font-family: Rubik Bold;
  font-size: 50px;
}
.stat-page-view .limits .regions {
  display: flex;
  flex-wrap: wrap;
}
.stat-page-view .limits .regions .region {
  padding: 10px;
  border: 1px solid #cdcdcd;
  border-radius: 0;
  font-family: 'Regular';
  font-size: 17px;
  color: #303030;
}
.stat-page-view .limits .regions .region:hover {
  background-color: #f3f3f3;
}
.test-view .test-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/img/bkg-test.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.test-view .test-content .wrapper {
  display: flex;
}
.test-view .controls {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.test-view .controls .submit {
  padding: 25px 120px;
}
.test-view .question-wrapper {
  max-width: 1000px;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
.test-view .question-wrapper .image img {
  max-width: 100%;
}
.test-view .question-wrapper .text-before,
.test-view .question-wrapper .text-after {
  font-family: Italic;
}
.test-view .question-wrapper .add-text {
  flex-grow: 2;
}
