#quiz-form {
  /* margin: 20px 0px 40px 0px; */
}

#the-canvas {
  margin: 20px 0px 0px 0px;
}

h3 {
  font-size: 2.3rem;
  margin: 5px 0px !important;
  color: #6a7ca2;
}

h4 {
  margin: 5px 0px !important;
  color: #6a7ca2;
}

#quiz-description {
  text-align: justify;
  padding: 0px 12px;
  font-size: 20px;
}

#quiz-description-subtitle {
    text-align: justify;
    padding: 0px 12px;
    font-size: 16px;
}

.io1-btn {
  background-color: #6A7CA2;
  border-color: #6A7CA2;
}

.io1-btn:hover, .io1-btn:visited, .io1-btn:active {
  background-color: #6A7CBE;
  border-color: #6A7CA2;
}

.divider {
    display: table;
    font-size: 24px;
    text-align: center;
    width: 75%; 						/* divider width */
    margin: 40px auto 0px auto;					/* spacing above/below */
}
.divider span { display: table-cell; position: relative; }
.divider span:first-child, .divider span:last-child {
    width: 50%;
    top: 27px;							/* adjust vertical align */
    -moz-background-size: 100% 2px; 	/* line width */
    background-size: 100% 2px; 			/* line width */
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
}
.divider span:first-child {				/* color changes in here */
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#6a7ca2));
    background-image: -webkit-linear-gradient(180deg, transparent, #6a7ca2);
    background-image: -moz-linear-gradient(180deg, transparent, #6a7ca2);
    background-image: -o-linear-gradient(180deg, transparent, #6a7ca2);
    background-image: linear-gradient(90deg, transparent, #6a7ca2);
}
.divider span:nth-child(2) {
    color: #000;
    padding: 0px 5px;
    width: auto;
    white-space: nowrap;
}
.divider span:last-child {				/* color changes in here */
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6a7ca2), to(transparent));
    background-image: -webkit-linear-gradient(180deg, #6a7ca2, transparent);
    background-image: -moz-linear-gradient(180deg, #6a7ca2, transparent);
    background-image: -o-linear-gradient(180deg, #6a7ca2, transparent);
    background-image: linear-gradient(90deg, #6a7ca2, transparent);
}
