@media (min-width: 40em) {
  .card-container-header {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.card-container-title {
  margin-bottom: 0;
}

.card-container-actions > a:not(:last-child) {
  margin-right: 10px;
}

.card-container-styled > .card-container-body {
  background: #fbfbfb;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 20px 0;
}

.card-group > .card-container-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.card-columns > .card-container-body {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
}
@media (min-width: 40em) {
  .card-columns > .card-container-body {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 60em) {
  .card-columns > .card-container-body {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 80em) {
  .card-columns > .card-container-body {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}
.card-columns > .card-container-body > .card {
  max-width: 100%;
}

.card {
  margin-right: 10px;
  position: relative;
  vertical-align: top;
  width: 100%;
}

.card-back,
.card-front {
  border-radius: 3px;
  position: relative;
}

.card-front {
  width: 100%;
}

.card-image {
  border-radius: 3px;
  display: block;
  height: auto !important;
  width: 100% !important;
}

.card-image:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.card-image-top {
  border-radius: 3px 3px 0 0;
}

.card-image-bottom {
  border-radius: 0 0 3px 3px;
}

.card-content {
  padding: 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.card-actions {
  padding: 15px;
}
.card-actions > a {
  color: #2ea0eb;
  font-size: .8571rem;
  text-decoration: none;
}
.card-actions > a:not(:last-child) {
  margin-right: 10px;
}
.card-actions > a:hover {
  color: #2480bc;
}

.card-flip-container {
  height: 100%;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  position: relative;
  width: 100%;
}
.card-flip-container > .card-back,
.card-flip-container > .card-front {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
          transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.card-flip-container > .card-front {
  -webkit-transform: rotateY(0) translate3d(0, 0, 2px);
          transform: rotateY(0) translate3d(0, 0, 2px);
}
.card-flip-container > .card-back {
  height: 1px;
  margin-top: -2px;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.card-flipped > .card-back {
  height: 100%;
  opacity: 1;
  overflow: visible;
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.card-flipped > .card-front {
  height: 1px;
  overflow: hidden;
  -webkit-transform: rotateY(180deg) translate3d(0, 0, 2px);
          transform: rotateY(180deg) translate3d(0, 0, 2px);
}

.card-flip-button {
  bottom: 2px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 1.25rem;
  position: absolute;
  right: 5px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.card-selected > .card-front {
  background: #2ea0eb;
  border-color: #2788c7;
  box-shadow: inset 0 -4px 0 0 #2788c7;
  color: #fff;
}

.card-selected .card-actions > a {
  color: #fff;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.card-inverse {
  color: #fff;
}

.card-inverse .card-actions > a {
  color: #fff;
}

.card-primary > .card-back,
.card-primary > .card-front {
  background: #2ea0eb;
  border-color: #2788c7;
  box-shadow: inset 0 -4px 0 0 #2788c7;
}

.card-alert > .card-back,
.card-alert > .card-front {
  background: #ffdc73;
  border-color: #d8bb61;
  box-shadow: inset 0 -4px 0 0 #d8bb61;
}

.card-success > .card-back,
.card-success > .card-front {
  background: #89d085;
  border-color: #74b071;
  box-shadow: inset 0 -4px 0 0 #74b071;
}

.card-warning > .card-back,
.card-warning > .card-front {
  background: #f29a4e;
  border-color: #cd8242;
  box-shadow: inset 0 -4px 0 0 #cd8242;
}

.card-danger > .card-back,
.card-danger > .card-front {
  background: #fa5757;
  border-color: #d44949;
  box-shadow: inset 0 -4px 0 0 #d44949;
}

.section {
  background: #f7f7f7;
  border-bottom: 2px solid #ddd;
  padding: 75px 50px;
}
.section:nth-child(even) {
  background: #fff;
}

.section-info {
  text-align: center;
}

@media (min-width: 40em) {
  .section-text {
    margin: auto;
    max-width: 700px;
  }
}

.subtitle {
  color: #999;
}

.btn-quiz {
  background-color: #ff002a;
  color:#ffffff;
  border-radius: 3px;
  border: 0;
  padding: 20px;
  text-align: center;
  font-family: Calibre-Bold;
  font-size: 1.75em;
  width: 95%;
}

.btn-quiz:hover {
  background-color: #000;
}

.btn-quiz:active, .btn-quiz:target {
  background-color: #ff002a;
}

.btn-info {
  box-shadow: 0 3px 0 0 #346E7F;
  border-radius: 3px;
  color: #fff;
  padding: 5px 8px;
  text-align: center;
}

.btn-success {
  box-shadow: 0 3px 0 0 #407F40;
  border-radius: 3px;
  color: #fff;
  padding: 5px 8px;
  text-align: center;
}

.btn-default {
  border: 1px solid #eeeeee;
  box-shadow: 0 3px 0 0 #c5c5c5;
  border-radius: 3px;
  padding: 5px 8px;
  text-align: center;
}

.quizheadline {
  font-family: Calibre-Light;
  color: #c6c6c6;
  margin-top: 0;
  margin-bottom: 1em;
}

.quizsubhead {
  font-size: 14px;
  font-family: "Calibre-Bold";
  color: rgb(7, 7, 7);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 2.286;
}


.quizquestion {
  font-size: 42px;
  font-family: "Calibre-Bold";
  color: rgb(0, 66, 102);
  font-weight: bold;
  line-height: 1;
}
