@font-face {
  font-family: Main Font Regular;
  src: url(/fonts/main-font/main-font-regular.woff2);
}
@font-face {
  font-family: Main Font Bold;
  src: url(/fonts/main-font/main-font-bold.woff2);
}
@font-face {
  font-family: Main Font Italic;
  src: url(/fonts/main-font/main-font-italic.woff2);
}
@font-face {
  font-family: Text Font Regular;
  src: url(/fonts/text-font/text-font-regular.woff2);
}
@font-face {
  font-family: Ptsans bold;
  src: url(/fonts/ptsans/PTSans-Bold.ttf);
}
.m-bold {
  font-family: "Main Font Bold";
}
.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-3 {
  padding-right: 30px;
}
.pl-3 {
  padding-left: 30px;
}
.mt-1 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-5 {
  margin-top: 50px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-5 {
  margin-bottom: 50px;
}
.ml-1 {
  margin-left: 10px;
}
.ml-2 {
  margin-left: 20px;
}
.sm {
  font-size: 16px;
}
.lg {
  font-size: 18px;
}
.xlg {
  font-size: 24px;
}
.hidden {
  display: none;
}
html {
  height: 100%;
}
body {
  min-width: 850px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Text Font Regular';
  font-size: 17px;
  color: black;
  background-color: #f1f2f5;
  display: flex;
  flex-direction: column;
}
body .main-wrapper {
  min-width: 850px;
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}
body .main-content {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
}
body .main-column {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 54px;
  box-sizing: border-box;
}
body.freezing {
  padding-right: 15px;
  overflow: hidden;
}
ul {
  list-style: none;
  padding-left: 0;
}
p {
  margin: 0;
}
a {
  color: #3347f2;
}
a:hover,
a:active,
a:visited {
  color: #3347f2;
}
h1,
h2,
h3 {
  font-family: Text Font Regular;
  font-weight: normal;
  margin: 0;
}
.error {
  color: #ee5253;
}
.btn {
  color: black !important;
  padding: 15px 20px;
  border: 1px solid #8b91a9;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 20px;
  outline: none;
}
.btn:hover {
  background-color: #8b91a9;
  color: white !important;
}
.btn:active,
.btn:focused,
.btn:visited {
  color: black !important;
  text-decoration: none;
}
.btn.alert:hover {
  border: 1px solid #ee5253;
  background-color: #ee5253;
  color: white;
}
.light-input {
  border: none;
  border-bottom: 1px solid #e4e9ef;
  outline: none;
  padding: 3px 5px;
  font-size: 17px;
  min-width: 250px;
  font-family: Text Font Regular;
}
.light-input::placeholder {
  color: #f1f2f5;
}
.light-input.large {
  padding: 3px 10px;
  font-size: 26px;
  font-family: Text Font Regular;
}
.message-alert {
  color: #ee5253;
  font-size: 14px;
  font-family: Text Font Bold;
  padding: 10px 0;
}
.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;
  margin-top: 30px;
  cursor: pointer;
}
.c-radio-wrapper:first-child {
  margin-top: 0;
}
.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;
}
.c-text-input {
  padding: 5px 10px;
  border: 1px solid #f1f2f5;
  border-bottom: none;
  box-shadow: 0px 2px 0px 0px #252526;
  outline: none;
}
.c-text-input[disabled] {
  background-color: #f3f3f3;
}
.c-textarea {
  padding: 5px 10px;
  border: 1px solid #8b91a9;
  border-bottom: none;
  box-shadow: 0px 2px 0px 0px #252526;
  outline: none;
  font-size: 18px;
}
.c-textarea[disabled] {
  background-color: #f3f3f3;
}
.m-text-input {
  padding: 10px 15px;
  border: 1px solid #e1e1ed;
  border-radius: 5px;
  outline: none;
  color: #1e1e21;
  font-size: 20px;
}
.m-text-input.block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.m-toggler {
  background-color: #e1e1ed;
  border-radius: 15px;
  width: 65px;
  height: 26px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: all 0s;
  transition-delay: 0.05s;
}
.m-toggler:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -17px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #b6bcc3;
  background-color: white;
  transition: all 0.1s;
}
.m-toggler.checked {
  background-color: #b1ff7d;
  transition: all 0s;
  transition-delay: 0.05s;
}
.m-toggler.checked:after {
  left: 32px;
  transition: all 0.1s;
}
.index-view,
.landing-view {
  flex-grow: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-view .center-block,
.landing-view .center-block {
  text-align: center;
}
.index-view .center-block .promo-text,
.landing-view .center-block .promo-text {
  padding-bottom: 70px;
}
.header-view {
  background-color: #04092a;
  height: 80px;
}
.header-view .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.header-view .header .logo {
  display: inline-flex;
  color: white;
  text-decoration: none;
}
.header-view .header .logo:visited,
.header-view .header .logo:active {
  color: white;
}
.header-view .header .logo .logo-title-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
}
.header-view .header .logo .logo-title-wrapper .logo-title1 {
  font-family: Main Font Bold;
}
.header-view .header .logo .logo-title-wrapper .logo-title2 {
  font-family: Main Font Italic;
}
.modal-confirm-view {
  position: fixed;
  opacity: 0;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-confirm-view.centered {
  top: 0;
  transition: all 0.2s;
  opacity: 1;
}
.modal-confirm-view .mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  opacity: 0.6;
}
.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;
  border: 1px solid #f3f3f3;
}
.modal-confirm-view .modal.x-large {
  width: 100%;
}
.modal-confirm-view .modal.large {
  width: 1024px;
}
.modal-confirm-view .modal.dark {
  padding: 0;
}
.modal-confirm-view .modal.dark .modal-header {
  color: white;
  background-color: #04092a;
  padding: 10px 30px;
  border-bottom: 2px solid #04092a;
}
.modal-confirm-view .modal.dark .modal-header h2 {
  font-family: Ptsans bold;
  font-size: 30px;
}
.modal-confirm-view .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #04092a;
  padding-bottom: 10px;
}
.modal-confirm-view .modal-header .close {
  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;
  color: #04092a;
}
.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;
}
.test-page-view {
  padding-top: 50px;
  padding-bottom: 50px;
}
.test-page-view .wrapper {
  max-width: 1350px;
  margin: 0 20px;
  box-sizing: border-box;
  position: relative;
}
.test-page-view .wrapper .timer {
  position: absolute;
  top: -27px;
  right: 0;
  font-family: Ptsans bold;
  font-size: 16px;
  color: #717171;
}
.test-page-view .wrapper .subtitle {
  font-family: Main Font Regular;
  font-size: 16px;
  padding-bottom: 10px;
  color: #717171;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.test-page-view .wrapper .question-text {
  font-size: 26px;
  padding-bottom: 20px;
  letter-spacing: 1px;
}
.test-page-view .wrapper .image {
  padding-bottom: 20px;
}
.test-page-view .wrapper .image img {
  max-width: 1350px;
}
.test-page-view .wrapper .answers {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  letter-spacing: 1px;
}
.test-page-view .wrapper .answers .c-checkbox {
  margin-top: 6px;
}
.test-page-view .wrapper .answers .c-text-input {
  min-width: 400px;
  font-size: 20px;
}
.test-page-view .wrapper .answers .answer-position {
  font-family: Main Font Bold;
  font-size: 20px;
  color: #717171;
}
.test-page-view .wrapper .controls {
  padding-top: 70px;
}
.test-page-view .wrapper .controls .btn {
  font-family: Text Font Regular;
  font-size: 28px;
  border-radius: 4px;
  letter-spacing: 1px;
  padding: 18px 100px 22px 100px;
}
.test-page-view .wrapper .controls.finish-controls {
  text-align: center;
}
.test-page-view .wrapper .finish-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 1px;
  padding-top: 100px;
}
.page-not-found-view {
  padding: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
