html,
body {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  height: 100%;
  min-height: 100%;
}
html {
  overflow-y: scroll;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
a,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
body {
  background: #dadada !important;
  color: #000000;
  font-size: 175%;
}
body .well {
  margin-top: 20px;
  padding: 10px 60px 30px 60px;
  background: white;
  color: #000000;
}
body .well h1,
body .well h2,
body .well h3,
body .well h4,
body .well h5,
body .well h6,
body .well p {
  color: #000000;
}
body > .container {
  background: white;
  min-height: 100vh;
}
#site-content {
  padding-top: 65px;
  padding-bottom: 95px;
}
body.with-extra-footer #site-content {
  padding-bottom: 175px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #909095;
  font-weight: normal;
  display: block;
  text-transform: none;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 20px;
}
.top-buffer-1 {
  margin-top: 10px;
}
.top-buffer-2 {
  margin-top: 20px;
}
.top-buffer-3 {
  margin-top: 30px;
}
.top-buffer-4 {
  margin-top: 40px;
}
.top-buffer-5 {
  margin-top: 50px;
}
.bottom-buffer-1 {
  margin-bottom: 10px;
}
.bottom-buffer-2 {
  margin-bottom: 20px;
}
.bottom-buffer-3 {
  margin-bottom: 30px;
}
.bottom-buffer-4 {
  margin-bottom: 40px;
}
.bottom-buffer-5 {
  margin-bottom: 50px;
}
.row.no-margin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.helper-image {
  width: 100%;
}
.bootstrap-datetimepicker-widget .glyphicon,
.bootstrap-datetimepicker-widget a {
  color: #666666 !important;
}
.bootstrap-datetimepicker-widget table td.today:before {
  border-width: 0 0 10px 10px !important;
}
.btn {
  -webkit-transition: opacity 200ms;
  -moz-transition: opacity 200ms;
  -ms-transition: opacity 200ms;
  -o-transition: opacity 200ms;
  transition: opacity 200ms;
}
.btn.btn-wrap {
  white-space: pre-wrap;
}
.btn.btn-dark,
.btn.btn-green,
.btn.btn-gray {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1em;
  color: #ffffff;
}
.btn.btn-dark:focus,
.btn.btn-green:focus,
.btn.btn-gray:focus,
.btn.btn-dark:hover,
.btn.btn-green:hover,
.btn.btn-gray:hover,
.btn.btn-dark:visited,
.btn.btn-green:visited,
.btn.btn-gray:visited,
.btn.btn-dark:active,
.btn.btn-green:active,
.btn.btn-gray:active {
  color: #ffffff;
}
.btn.btn-wide {
  width: 400px;
  max-width: 100%;
  margin: 20px auto 0 auto;
}
.btn.btn-dark {
  background: #000000;
}
.btn.btn-dark:hover {
  background: #4d4d4d;
}
.btn.btn-light {
  background: #ffffff;
  border: 1px solid #333333;
}
.btn.btn-light:hover {
  background: #e6e6e6;
  border: 1px solid #808080;
}
.btn.btn-icon {
  padding-left: 50px;
  text-align: center;
  position: relative;
}
.btn.btn-icon .fa {
  position: absolute;
  top: 10px;
  left: 10px;
}
.btn.btn-green {
  background: #1FD082;
}
.btn.btn-green:hover {
  background: #40e29b;
}
.btn.btn-gray {
  background: #ADADAD;
}
.btn.btn-gray:hover {
  background: #c7c7c7;
}
.btn.disabled {
  opacity: .3;
}
.checkbox-label {
  /**
   * You still need a workaround for old versions of IE:
   * http://stackoverflow.com/a/5581996/247893
   *
   * For IE, you must use JS or insert attribute in html tag.
   * <div id="foo" unselectable="on" class="unselectable">...</div>
   */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.center-container {
  text-align: center;
}
#login-logo {
  margin: 0 auto;
}
ul.breadcrumb {
  background: none;
  padding: 0;
}
ul.breadcrumb > li + li:before {
  padding: 0 25px;
}
ul.breadcrumb li,
ul.breadcrumb li a {
  color: #ccc;
}
ul.breadcrumb li.active {
  font-weight: bold;
  color: black;
}
ul.breadcrumb li a:hover {
  text-decoration: underline;
}
#site-footer {
  z-index: 10000;
  position: fixed;
  width: 100%;
  border-top: 1px solid #ffffff;
  background: #000000;
  bottom: 0;
  height: 80px;
}
#site-footer .footer-logo {
  height: 100%;
}
#site-footer .footer-logo img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#site-footer #footer-logo-left {
  position: absolute;
  left: 10px;
}
#site-footer #footer-logo-right {
  position: absolute;
  right: 10px;
}
.yii-debug-toolbar_position_bottom {
  bottom: 90px !important;
}
.logo {
  max-width: 100%;
}
#footer-logo {
  margin-top: 50px;
}
/* All the default sidebar styles */
/* toggle button settings */
/* Note: this disables the navbar-toggle class's hide function. set visibility with the bootstrap visible/hidden classes */
/* Note: this also disables the navbar-header class positioning settings in small screens. */
#site-header {
  background: #990000;
}
@media (max-width: 767px) {
  #site-header ul.navbar-nav li {
    padding: 0 0 0 15px;
  }
  #site-header .navbar-collapse {
    background: white;
    max-height: none;
    height: 100vh;
  }
  #site-header .navbar-collapse ul.navbar-nav li.active a {
    color: white !important;
  }
  #site-header .navbar-collapse ul.navbar-nav li a {
    color: black !important;
  }
  #site-header .navbar-collapse ul.navbar-nav li a:hover {
    background: #b3b3b3;
  }
}
#site-header .navbar-collapse.collapse {
  transition: height 0.2s;
}
#site-header .navbar-collapse.collapsing {
  height: 0 !important;
}
#site-header > div.container {
  padding-left: 0;
}
#site-header .navbar-toggle {
  margin: 0 0 0 15px;
  padding: 17px 15px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  float: left;
}
#site-header ul.navbar-nav li a {
  color: white !important;
}
#site-header ul.navbar-nav li a:hover {
  background: #660000;
}
#site-header .menu-username {
  height: 50px;
  padding: 0 15px;
}
#site-header .menu-username > a {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #A35757;
  border: 1px solid white;
  padding: 10px;
  line-height: 0;
  font-weight: bold;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#site-header .menu-username > a .current-username {
  position: relative;
  top: -1px;
}
#site-header .menu-username > a:hover {
  background: #A35757;
}
.navbar-basic .navbar-toggle {
  display: none !important;
}
#registration-days {
  list-style: none;
  padding: 0;
}
#registration-days .registration-day {
  margin-bottom: 10px;
}
#registration-days .registration-day a,
#registration-days .registration-day button {
  padding-left: 38px;
  position: relative;
}
#registration-days .registration-day a .fa,
#registration-days .registration-day button .fa {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 10px;
  font-size: 20px;
  line-height: 34px;
  border-right: 1px solid #ffffff;
}
#registration-days .registration-day a.btn-success,
#registration-days .registration-day button.btn-success {
  /* You can't click on a day that has been put in */
  cursor: default;
}
#registration-days .registration-day a.btn-success:hover,
#registration-days .registration-day button.btn-success:hover,
#registration-days .registration-day a.btn-success:focus,
#registration-days .registration-day button.btn-success:focus,
#registration-days .registration-day a.btn-success:active,
#registration-days .registration-day button.btn-success:active {
  outline: 0;
  background-color: #5cb85c !important;
  border-color: #4cae4c !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.question-with-dependency {
  display: none;
}
.bootstrap-datetimepicker-widget > .row {
  margin-left: -10px;
  margin-right: -10px;
}
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker {
  max-width: 150px;
  margin: 0 auto;
}
.bootstrap-datetimepicker-widget .datepicker td.day {
  font-weight: bold;
}
.bootstrap-datetimepicker-widget .datepicker td.day.disabled {
  color: #bbb;
  font-weight: normal;
  border: 0;
}
.bootstrap-datetimepicker-widget .datepicker td.day.active {
  background: #990000;
  color: #fff;
  text-shadow: 0;
  border: 1px solid #990000;
}
.bootstrap-datetimepicker-widget .datepicker td.day.today:before {
  border-bottom-color: #990000;
}
.alert-open .question-not-alert {
  display: none !important;
}
.alert-open .bx-wrapper {
  display: none !important;
}
#question-form > .row {
  padding-left: 15px;
  padding-right: 15px;
}
#question-form #questionform-howmanysteps {
  text-align: right;
}
.btn-finish-proxy {
  font-weight: bold;
  cursor: pointer;
}
.btn-finish-proxy:hover {
  text-decoration: underline;
}
.step-finish {
  text-align: center;
}
.reset-link {
  color: #000000;
}
.reset-link:hover,
.reset-link:active {
  color: #000000;
}
.reset-link:hover {
  text-decoration: underline;
}
.login-form-inputs input {
  border: 0;
  border-bottom: 1px solid #333333;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset;
}
#markdown-container {
  color: #000000;
}
#markdown-container h1,
#markdown-container h2,
#markdown-container h3,
#markdown-container h4,
#markdown-container h5,
#markdown-container h6 {
  font-weight: bold;
  text-align: left;
  margin-top: 40px;
}
#markdown-container img {
  margin-left: 40px;
}
#markdown-container ol img,
#markdown-container ul img {
  margin-left: 0;
}
