@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h5 {
  margin: 0;
}

h6 {
  margin: 0;
}

p {
  margin: 0;
}

.r5 {
  padding: 0 5px;
}

.m5 {
  margin: 0 -5px;
}

.col-blue {
  color: #026bff;
}

.col-grey {
  color: #666;
}

.py-7-5 {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.space {
  line-height: 1.5;
}

.height100 {
  height: 100%;
}

.f-right {
  float: right;
}

.border-grey {
  border: 1px solid #ccc;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 3px 0 #ddd;
}
.navbar li > a {
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.help-wrapper {
  position: relative;
}
.help-wrapper .btn-help {
  position: fixed;
  right: 0;
  bottom: 15px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  box-shadow: 0 2px 2px 0 grey;
  background-color: #4fa4d5;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.help-wrapper .btn-help:hover, .help-wrapper .btn-help:focus, .help-wrapper .btn-help:active {
  outline: unset;
  background-color: #4f88d5;
  box-shadow: 0 2px 3px 0 grey;
}

.modal {
  padding: 0 !important;
  text-align: center;
}
.modal:before {
  content: "";
  margin-right: -4px;
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-content {
  box-shadow: unset;
  border: unset;
}
.modal-header {
  padding-right: 15px;
  padding-top: 15px;
  border: unset;
  padding: unset;
}
.modal-header .close {
  margin-top: 10px;
  margin-right: 15px;
  color: #ddd;
  opacity: 1;
}
.modal-header .close:hover, .modal-header .close:active, .modal-header .close:focus {
  color: #444;
  outline: none;
}
.modal-header span {
  font-size: 32px;
}
.modal-body {
  padding: 0 30px;
  line-height: 1.6;
}
.modal-footer {
  border: unset;
  text-align: center;
}
.modal-footer .btn-agree {
  padding: 5px 15px;
  font-size: 16px;
}

.border-bottom {
  border-bottom: 1px solid #efefef;
}

.border-right {
  border-right: 1px solid #ccc;
}

.align-vertical {
  align-items: center;
}

.title-blue {
  font-weight: 700;
  color: #3682b3;
}

/*
  TYPE OF QUESTION :
  1. type1 : choices based on row;
  2. type2 : choices based on column;
  3. type3 : ;
*/
.choices-wrapper .choice {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.choices-wrapper .choice input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.choices-wrapper .choice input[type=radio]:checked ~ .check {
  background-color: #4da5d3;
  border: unset;
}
.choices-wrapper .choice input[type=radio]:checked ~ .check:after {
  display: block;
}
.choices-wrapper .choice .check {
  position: absolute;
  top: 50%;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: transparent;
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 2px solid #4da5d3;
}
.choices-wrapper .choice .check.left {
  left: 0;
}
.choices-wrapper .choice .check.right {
  right: 0;
}
.choices-wrapper .choice .check:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 1.5px;
  width: 10px;
  height: 15px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.choices-wrapper .choice:hover input[type=radio] ~ .check {
  background-color: #4fa4d5;
}
.choices-wrapper .choice .text-label {
  display: inline-block;
  margin-left: 45px;
  font-size: 16px;
  color: #666;
}
.choices-wrapper .choice .text-label.text-right {
  margin-right: 45px;
  margin-left: unset;
}

.choices-wrapper-2 .choice {
  position: relative;
  width: 100%;
}
.choices-wrapper-2 .choice input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.choices-wrapper-2 .choice input[type=radio]:checked ~ .check {
  border: unset;
}
.choices-wrapper-2 .choice input[type=radio]:checked ~ .check.left {
  background-color: #4da5d3;
}
.choices-wrapper-2 .choice input[type=radio]:checked ~ .check.right {
  background-color: #d54f4f;
}
.choices-wrapper-2 .choice input[type=radio]:checked ~ .check:after {
  display: block;
}
.choices-wrapper-2 .choice .check {
  position: absolute;
  top: 50%;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: transparent;
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
}
.choices-wrapper-2 .choice .check:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 1.5px;
  width: 10px;
  height: 15px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.choices-wrapper-2 .choice .check.left {
  border: 2px solid #4da5d3;
}
.choices-wrapper-2 .choice .check.right {
  border: 2px solid #d54f4f;
}
.choices-wrapper-2 .choice:hover input[type=radio] ~ .check.left {
  background-color: #4fa4d5;
}
.choices-wrapper-2 .choice:hover input[type=radio] ~ .check.right {
  background-color: #d54f4f;
}
.choices-wrapper-2 .choice .text-label {
  position: absolute;
  left: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #666;
}

.choices-wrapper .number-wrapper {
  background-color: #f2f2f2;
}
.choices-wrapper .number-wrapper h3 {
  margin: 12.5px 0;
  color: #666;
}
.choices-wrapper-2:not(:first-child) {
  border-top: unset;
}
.choices-wrapper-2:nth-child(even) {
  background-color: #efefef;
}
.choices-wrapper-2 .number-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.choices-wrapper-2 .number-wrapper h3 {
  margin: unset;
  color: #666;
}
.choices-wrapper-2 .quest p {
  margin: unset;
  padding: 15px 0;
  font-size: 16px;
}
.choices-wrapper-2 .--mid {
  left: 50%;
}
main {
  position: relative;
}

.test-body {
  position: relative;
}
.test-body .next-wrapper {
  margin-top: 45px;
}
.test-body .content .center-item {
  align-items: center;
}
.test-body .text-wrapper {
  font-size: 16px;
}
.test-body .span-answer {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  font-weight: bold;
}

.question-image {
  margin-bottom: 45px;
  border-radius: 8px;
  border-width: 2px;
  border: 2px solid #4da5d3;
}
.question-image:last-child {
  margin-bottom: 0;
}
.question-image .num-wrapper {
  margin-top: -20px;
}
.question-image h3 {
  margin: unset;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  background-color: #4da5d3;
  color: #fff;
}
.question-image .img-wrapper {
  padding: 15px 0;
  text-align: center;
}
.question-image .img-wrapper.single-img > img {
  width: 125px;
  display: inline-block;
}
.question-image .img-wrapper img {
  display: inline-block;
  width: 75px;
}
.question-image .ans-img .radio-img {
  font-weight: 300;
  font-size: 16px;
}
.question-image .ans-img .radio-img > input {
  display: none;
  -webkit-transition: all 0.3 ease;
  -moz-transition: all 0.3 ease;
  -ms-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.question-image .ans-img .radio-img:hover {
  cursor: pointer;
}
.question-image .ans-img .radio-img > input:not(:checked) + img {
  border: 5px solid transparent;
}
.question-image .ans-img .radio-img:hover > input:not(:checked) + img {
  border: 5px solid #4da5d3;
}
.question-image .ans-img .radio-img > input:checked + img {
  border: 5px solid #3683b7;
}

.question-image3 {
  margin-bottom: 45px;
  border: 2px solid #4da5d3;
}
.question-image3:last-child {
  margin-bottom: unset;
}
.question-image3 .head-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #4da5d3;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.question-image3 .ans-img p {
  font-size: 16px;
  color: #666;
}
.question-image3 .ans-img .ans-wrapper {
  height: 100%;
}
.question-image3 img {
  display: inline-block;
  width: 50px;
  opacity: 1;
}
.question-image3 .radio-img {
  border: 5px solid transparent;
  border-radius: 50%;
  opacity: 1;
}
.question-image3 .radio-img input {
  display: none;
}
.question-image3 .radio-img input + img {
  border: 5px solid transparent;
  border-radius: 50%;
}
.question-image3 .radio-img:hover {
  cursor: pointer;
}
.question-image3 .radio-img:hover > input:not(:checked) + img {
  border-color: #4da5d3;
}
.question-image3 .radio-img > input:checked + img {
  border: 5px solid #3683b7;
  border-radius: 50%;
  opacity: 0.5;
}

.kraepelin-wrapper {
  overflow: hidden;
  padding: 15px;
  border: 2px solid #4da5d3;
  border-radius: 8px;
  display: inline-block;
}

.wrap {
  display: inline-block;
  animation: 1s ease-out 0s 1 slideInLeft;
}
.wrap > div {
  float: left;
  width: 15px;
}
.wrap .que {
  line-height: 35px;
  font-size: 16px;
  font-weight: 600;
}
.wrap .ans {
  margin-top: 15px;
  margin-right: 5px;
  line-height: 2.5;
}
.wrap .ans input {
  width: 25px;
  height: 25px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ddd;
  text-align: center;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 auto;
}

.multiple-choice {
  color: #666;
  border: 2px solid #4da5d3;
}
.multiple-choice .mulp-head {
  background-color: #4da5d3;
  color: #fff;
}
.multiple-choice .mulp-body {
  font-size: 16px;
  position: relative;
}
.multiple-choice .radio-choice {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
  padding-left: 30px;
  font-weight: 600;
  color: #666;
}
.multiple-choice .radio-choice:not(:last-child) {
  margin-bottom: 10px;
}
.multiple-choice .radio-choice input[type=radio] {
  position: absolute;
  opacity: 0;
}
.multiple-choice .radio-choice input[type=radio]:checked ~ .check {
  border: unset;
  background-color: #4da5d3;
}
.multiple-choice .radio-choice input[type=radio]:checked ~ .check:after {
  display: block;
}
.multiple-choice .radio-choice .check {
  position: absolute;
  top: 50%;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #738bd6;
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
}
.multiple-choice .radio-choice .check:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.multiple-choice .radio-choice:hover input[type=radio] ~ .check {
  background-color: #4fa4d5;
}

.btn-costum {
  padding: 8px 16px;
  border-radius: 25px !important;
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.btn-costum-blue {
  background-color: #4fa4d5;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
}
.btn-costum-blue:hover, .btn-costum-blue:active, .btn-costum-blue:focus {
  background-color: #007EA7;
  color: #fff;
  text-decoration: none;
}
.btn-costum-bordered-grey {
  border: 2px solid #ccc;
  color: #666;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-costum-bordered-grey:hover, .btn-costum-bordered-grey:active, .btn-costum-bordered-grey:focus {
  background-color: #ccc;
  color: #fff;
  text-decoration: none;
}
.btn-costum-bordered-blue {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 2px solid #4da5d3;
  color: #4da5d3;
}
.btn-costum-bordered-blue:hover, .btn-costum-bordered-blue:active, .btn-costum-bordered-blue:focus {
  background-color: #4fa4d5;
  color: #fff;
  text-decoration: none;
}

.form-biodata, .form {
  padding: 30px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 3px 0 #ccc;
}
.form-biodata label, .form label {
  font-size: 16px;
}
.form-biodata .form-control, .form .form-control {
  border-radius: unset;
}
.form-biodata input[type=text], .form-biodata input[type=password], .form-biodata select, .form input[type=text], .form input[type=password], .form select {
  box-shadow: unset;
}
.form-biodata input[type=text]:focus, .form-biodata input[type=password]:focus, .form-biodata select:focus, .form input[type=text]:focus, .form input[type=password]:focus, .form select:focus {
  outline: none;
}
.form-biodata .bootstrap-select > .dropdown-toggle, .form .bootstrap-select > .dropdown-toggle {
  border-radius: unset;
}
.form-biodata a, .form a {
  text-decoration: none;
}

.test-preview {
  padding: 15px;
  border: 2px solid #4da5d3;
  border-radius: 8px;
  color: #666;
}
.test-preview p {
  font-size: 16px;
}

.img-preview {
  display: inline-block;
}

.link-img {
  display: block;
}
.link-img img {
  width: 75px;
}

footer {
  border-top: 1px solid #ddd;
}
footer img {
  margin: 10px 0;
  display: inline-block;
  width: 90px;
}
footer p {
  font-weight: 600;
  font-size: 14px;
  color: #666;
}
footer p a {
  color: #666;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer p a:hover, footer p a:focus, footer p a:active {
  text-decoration: unset;
  color: #297aa9;
}

.form-header img {
  display: inline-block;
  width: 350px;
}
.form-header p {
  color: #666;
  line-height: 1.6;
  font-size: 20px;
}

.list-test .list-test-item {
  padding: 15px;
  border-radius: 4px;
  font-size: 18px;
  box-shadow: 0 2px 3px 0 #ddd;
  border-left: 5px solid #3682b3;
}
.list-test .list-test-item:first-child {
  border-radius: none;
}
.list-test .list-test-item:last-child {
  border-radius: none;
}
.list-test .list-test-item:not(:last-child) {
  margin-bottom: 20px;
}
.list-test .badge-time {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: transparent;
  color: #666;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 25px;
}

.text-cke {
  margin-left: -10px;
  margin-right: -10px;
}
.text-cke img {
  margin-left: auto;
  margin-right: auto;
  padding: 7px 10px;
  max-width: 100%;
  height: auto !important;
  display: block;
}
.text-cke > p {
  padding-left: 10px;
  padding-right: 10px;
}
.text-cke ul {
  list-style-position: inside;
}
.text-cke > ul {
  padding-right: 5px;
  padding-left: 45px;
}
.text-cke blockquote {
  margin: 0 10px !important;
}

.login {
  padding-top: 75px;
}

.bio-body {
  padding-top: 75px;
  padding-bottom: 45px;
}

.test-body {
  padding-top: 160px;
  padding-bottom: 45px;
}

@media (max-width: 768px) {
	.test-body {
	  padding-top: 110px;
	  padding-bottom: 45px;
	}
}


.preview {
  padding-top: 115px;
  padding-bottom: 30px;
}

.display-bl {
  display: block;
}

.py-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.end-form-wrapper h1 {
  font-size: 26px;
}
.end-form-wrapper p {
  font-size: 20px;
}
.end-form-wrapper a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.test-input {
  color: #666;
}
.test-input:not(:first-child) {
  border-top: unset;
}
.test-input:nth-child(even) {
  background-color: #efefef;
}
.test-input .number-wrapper, .test-input .quest {
  padding-top: 10px;
  padding-bottom: 10px;
}
.test-input .number-wrapper, .test-input .quest, .test-input .input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.test-input .number-wrapper p {
  font-size: 24px;
}
.test-input .quest p {
  padding: 5px 0;
  font-size: 18px;
}
.test-input input[type=text] {
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: none;
}
.test-input.width-fit .quest {
  text-align: left;
}

.error-page .d-table {
  display: table;
  width: 100%;
  height: 100%;
}
.error-page .d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.error-page .detail-error {
  margin-top: 15px;
  margin-bottom: 30px;
}
.error-page a {
  text-decoration: none;
}
.error-page .btn-red {
  padding: 8px 15px;
  background-color: #ff0230;
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.error-page .btn-red:focus, .error-page .btn-red:hover, .error-page .btn-red:active {
  background-color: #b50222;
}

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


td.green{
	background-color: #1F7F3D;
	color: #ffffff;
}
td.red{
	background-color: #FF0000;
	color: #ffffff;
}

table#table-progress{ font-size: 10px;}

.question-image3 img.full-img {
  width: 100% !important;
}

html input[disabled] {
	background-color: #dddddd;
}