@charset "UTF-8";
/*
    2021-08-19: cleaning up the fonts
    The @imports only load the CSS, and it appears that the browser (Chrome, at least) lazily loads the fonts only when they actually appear on the page

    // UI

    Roboto (16.2kB): the main font -- now fetching thin=100 and light=300 as per design doc, plus bold=700 weight for true bold (which was previously faked because a single weight, regular=400, was being downloaded at the time) -- keeping this one -- weight 600 was previously added, but it doesn't exist! -- added medium=500 because Material UI uses it
    
    Material Icons: probably unused, but cannot be 100% certain, keeping it for now

    Saira Extra Condensed: this was only used for the EDUCODE logo in the top bar -- someone thought they would reduce the build size by using an SVG for the logo, but then the client needed to download a 16kB font just to display the text, sigh -- this one is gone (replaced the SVG with the website's version which has text baked in, no font needed)

    // CONTENT

    Handlee (16.2kB): used for some descriptions/context settings of CS-3 (matching text in videos) -- replaced 2021-08-20

    Michroma (17.2kB): used for the description/context setting of Space Solo Tutorial (matching font in game) -- added 2021-08-20

    Press Start 2P (12.4kB): used for the descriptions/context settings of the other tutorials (font in game is Silom, which is not a Google Font) -- added 2021-08-20
*/
.lightText {
  color: #888;
}
.hidden {
  display: none;
}
.disabled-form-control {
  background-color: #eee;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.top {
  vertical-align: top;
}
.FlexButton .btn {
  display: flex;
  align-content: center;
}
.flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
.flex .full {
  flex: 1 1 auto;
}
.flexLeft {
  justify-content: flex-start;
}
.flexCenter {
  justify-content: center;
}
.flexRight {
  justify-content: flex-end;
}
.bottom {
  vertical-align: bottom;
}
.block {
  display: block;
}
.fullwidth {
  width: 100%;
}
.halfwidth {
  width: 50%;
}
.fullheight {
  height: 100%;
}
.width900 {
  max-width: 900px;
}
.absoluteFullSize {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.nowrap {
  white-space: nowrap;
}
.prewrap {
  white-space: pre-wrap;
}
.normalwrap {
  white-space: normal;
}
.verticallyCentered {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.verticalAlignText {
  vertical-align: -webkit-baseline-middle;
  vertical-align: -moz-middle-with-baseline;
}
.horizontallyCentered {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.transformCentered {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.noPadding {
  padding: 0;
}
.noHPadding {
  padding-left: 0;
  padding-right: 0;
}
.noVPadding {
  padding-top: 0;
  padding-bottom: 0;
}
.noPadding_i {
  padding: 0 !important;
}
.noHPadding_i {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.noVPadding_i {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.marginRight5 {
  margin-right: 5px;
}
.marginRight10 {
  margin-right: 10px;
}
.marginRight24 {
  margin-right: 24px;
}
.padRight5 {
  padding-right: 5px;
}
.padRight10 {
  padding-right: 10px;
}
.padRight24 {
  padding-right: 24px;
}
.marginLeft5 {
  margin-left: 5px;
}
.marginLeft10 {
  margin-left: 10px;
}
.marginLeft24 {
  margin-left: 24px;
}
.padLeft5 {
  padding-left: 5px;
}
.padLeft10 {
  padding-left: 10px;
}
.padLeft24 {
  padding-left: 24px;
}
.displayFlex {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.displayTable {
  display: table;
}
.displayCell {
  display: table-cell;
  vertical-align: middle;
}
.pointer {
  cursor: pointer;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.vPad5 {
  margin-top: 5px;
}
.vPad {
  margin-top: 15px;
}
.hPad {
  margin-left: 10px;
  margin-right: 10px;
}
.marginBottom10 {
  margin-bottom: 10px;
}
.rotate {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.size48 {
  width: 48px;
  height: 48px;
}
.size36 {
  width: 36px;
  height: 36px;
}
.size26 {
  width: 26px;
  height: 26px;
}
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
.bold {
  font-weight: bold;
}
.dangerText {
  color: #990000;
}
.littleDangerText {
  color: #f77;
}
.warningText {
  color: #ff9900;
}
.statusNormal {
  color: #050;
}
.statusInfo {
  color: #009;
}
.statusDisabled {
  color: #950;
}
.statusDisabled {
  color: #900;
}
.statusActive {
  color: #0a0;
}
.statusPending {
  color: #00a;
}
.statusPast {
  color: #740;
}
.statusNone {
  font-weight: bold;
  color: #900;
}
.statusFaded {
  opacity: 0.5;
}
.statusFadedImages img {
  opacity: 0.25;
}
.upgradedText {
  font-size: 0.75em;
}
.largerText {
  font-size: larger;
}
.actionButtons .btn {
  margin-left: 1px;
  margin-right: 1px;
}
.actionButtons .btn:first-child {
  margin-left: 2px;
}
.actionButtons .btn:last-child {
  margin-right: 2px;
}
.leftBorder {
  border-left: 1px solid #eee;
}
.control-disabled {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background: #eee none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
@keyframes ShinyAnimationKeyframes {
  0% {
    left: -160px;
  }
  75% {
    left: -160px;
  }
  100% {
    left: 100%;
  }
}
.noBorder {
  border: none;
}
.noBorder-top {
  border-top: none;
}
.noBorder-left {
  border-left: none;
}
.noBorder-right {
  border-right: none;
}
.noBorder-bottom {
  border-bottom: none;
}
.transBorder {
  border-color: transparent;
}
.transBorder-top {
  border-top-color: transparent;
}
.transBorder-left {
  border-left-color: transparent;
}
.transBorder-right {
  border-right-color: transparent;
}
.transBorder-bottom {
  border-bottom-color: transparent;
}
.flatBorder {
  border-radius: 0;
}
.flatBorder-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.flatBorder-bottom {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.flatBorder-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.flatBorder-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.paddingBottom5 {
  padding-bottom: 5.28px !important;
}
.marginBottom20 {
  margin-bottom: 20px;
}
.noMarginChilds > * {
  margin: 0;
}
.marginLR10 {
  margin: 10.81px;
}
.resultsPerPageSelect .Select-control {
  color: #ffffff;
  background-color: #107474;
  border: 1px solid transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  border-radius: 17.8px;
}
.resultsPerPageSelect .Select-control:hover {
  color: #ffffff;
  background-color: #0c5a5a;
  outline: none;
}
.resultsPerPageSelect a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.resultsPerPageSelect a.Select-value-label:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.resultsPerPageSelect .Select-option {
  padding: 4px 16px;
}
.resultsPerPageSelect.Select--single > .Select-control .Select-value {
  padding-left: 16px;
}
.resultsPerPageSelect.is-open > .Select-control .Select-arrow {
  margin-top: -10px;
}
.resultsPerPageSelect .Select-arrow-zone .Select-arrow {
  border: 5px solid transparent;
  border-top-color: #ffffff;
}
.resultsPerPageSelect .is-open .Select-arrow {
  border-bottom-color: #666;
}
.resultsPerPageSelect .is-open .Select-arrow {
  border-bottom-color: #676765;
}
.resultsPerPageSelect .is-open .Select-value-label {
  color: #676765;
}
.resultsPerPageSelect.is-open > .Select-control .Select-value .Select-value-label {
  color: #676765;
  text-shadow: none;
}
.modal-content .Select-control,
.searchBarAdvancedMenu .Select-control {
  border-radius: 17.8px;
  border: 1px solid transparent;
}
.modal-content .Select-control .Select-placeholder,
.searchBarAdvancedMenu .Select-control .Select-placeholder {
  padding-left: 16px;
  padding-right: 16px;
}
.searchBarAdvancedMenu .Select-control {
  border: 1px solid #333;
  padding-left: 16px;
}
.searchBarAdvancedMenu .is-open .Select-control {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 17.8px;
  border-bottom-left-radius: 17.8px;
}
.searchBarAdvancedMenu .Select.is-disabled > .Select-control {
  border: 1px solid #CCC;
}
.modal-content .Select-control {
  border: 1px solid #676765;
}
.modal-content .Select-control .Select-value {
  padding-left: 16px;
}
.baseline {
  vertical-align: baseline;
}
.manageUser .Panel .panel-achievements {
  margin: 0 auto 10px;
}
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/fonts/glyphicons-halflings-regular.eot);
  src: url(/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(/fonts/glyphicons-halflings-regular.woff) format('woff'), url(/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings', sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #E87625;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #ae5312;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  outline: none;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 25px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #E87625;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c55e15;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #E87625;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #c55e15;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 549px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 0 6px 5px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid #707070;
}
.form-control:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #FFF;
  opacity: 1;
  color: #999;
  border-color: #999;
  box-shadow: none;
}
.form-control.disabled-form-control,
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: default;
  color: #999;
  border-color: #999;
  box-shadow: none;
}
textarea.form-control {
  height: auto;
  border: 1px solid #707070;
  padding: 15px;
  border-radius: 10px;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 45px;
  }
}
.form-group {
  margin-bottom: 0px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
  cursor: pointer;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: default;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: default;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: default;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple] .input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 45px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.3333333;
  border-radius: 25px;
}
select.input-lg {
  height: 45px;
  line-height: 45px;
}
textarea.input-lg,
select[multiple] .input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 45px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.3333333;
  border-radius: 25px;
}
.form-group-lg select.form-control {
  height: 45px;
  line-height: 45px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 45px;
  min-height: 37px;
  padding: 11px 16px;
  font-size: 17px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 45px;
  height: 45px;
  line-height: 45px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.ButtonWait {
  box-shadow: none !important;
  outline: none !important;
  position: relative;
}
.ButtonWait img {
  position: absolute;
  height: calc(100% - 4px);
  width: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn {
  /*min-width: 110px;*/
  position: relative;
  pointer-events: all;
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
  font-weight: normal;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 21.19px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #ffffff;
}
.btn:hover,
.btn.hover {
  color: #ffffff;
}
.btn:active,
.btn.active {
  outline: none;
  background-image: none;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: default;
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}
.btn.disabled > *,
.btn[disabled] > *,
fieldset[disabled] .btn > * {
  opacity: 0.55;
  filter: alpha(opacity=55.00000000000001);
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #ffffff;
  background-color: #09A7A7;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-default:focus,
.btn-default.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #ffffff;
  background-color: #087C79;
}
.btn-default:hover,
.btn-default.hover {
  color: #ffffff;
  background-color: #067373;
}
.btn-default:active,
.btn-default.active {
  color: #ffffff;
  background-color: #087C79;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default {
  background-color: rgba(9, 167, 167, 0.45);
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled.hover,
.btn-default[disabled].hover,
fieldset[disabled] .btn-default.hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: rgba(9, 167, 167, 0.45);
}
.btn-primary {
  color: #ffffff;
  background-color: #E87625;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-primary:focus,
.btn-primary.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #ffffff;
  background-color: #E5530A;
}
.btn-primary:hover,
.btn-primary.hover {
  color: #ffffff;
  background-color: #C7501C;
}
.btn-primary:active,
.btn-primary.active {
  color: #ffffff;
  background-color: #E5530A;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary {
  background-color: rgba(232, 118, 37, 0.45);
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: rgba(255, 255, 255, 0.45);
}
.btn-success {
  color: #ffffff;
  background-color: #47A85E;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-success:focus,
.btn-success.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #ffffff;
  background-color: #357C45;
}
.btn-success:hover,
.btn-success.hover {
  color: #ffffff;
  background-color: #2D683A;
}
.btn-success:active,
.btn-success.active {
  color: #ffffff;
  background-color: #357C45;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success {
  background-color: rgba(71, 168, 94, 0.45);
}
.btn-info {
  color: #ffffff;
  background-color: #87CCC7;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-info:focus,
.btn-info.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #ffffff;
  background-color: #6FA8A3;
}
.btn-info:hover,
.btn-info.hover {
  color: #ffffff;
  background-color: #496B68;
}
.btn-info:active,
.btn-info.active {
  color: #ffffff;
  background-color: #6FA8A3;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info {
  background-color: rgba(135, 204, 199, 0.45);
}
.btn-warning {
  color: #FFFFFF;
  background-color: #F39C12;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-warning:focus,
.btn-warning.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #DDA936;
}
.btn-warning:hover,
.btn-warning.hover {
  color: #FFFFFF;
  background-color: #BF7C06;
}
.btn-warning:active,
.btn-warning.active {
  color: #FFFFFF;
  background-color: #DDA936;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning {
  background-color: rgba(243, 156, 18, 0.45);
}
.btn-danger {
  color: #ffffff;
  background-color: #C90303;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-danger:focus,
.btn-danger.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #ffffff;
  background-color: #9E0A23;
}
.btn-danger:hover,
.btn-danger.hover {
  color: #ffffff;
  background-color: #7A081B;
}
.btn-danger:active,
.btn-danger.active {
  color: #ffffff;
  background-color: #9E0A23;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger {
  background-color: rgba(201, 3, 3, 0.45);
}
.btn-white {
  color: #676765;
  background-color: #ffffff;
  border-color: #676765;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-white:focus,
.btn-white.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #676765;
  background-color: #E5E5E5;
}
.btn-white:hover,
.btn-white.hover {
  color: #676765;
  background-color: #CECECE;
}
.btn-white:active,
.btn-white.active {
  color: #676765;
  background-color: #E5E5E5;
}
.btn-white.disabled,
.btn-white[disabled],
fieldset[disabled] .btn-white {
  background-color: rgba(255, 255, 255, 0.45);
}
.btn-light {
  color: #676765;
  background-color: #F4F4F4;
  border-color: transparent;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-light:focus,
.btn-light.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #676765;
  background-color: #C6C6C6;
}
.btn-light:hover,
.btn-light.hover {
  color: #676765;
  background-color: #CECECA;
}
.btn-light:active,
.btn-light.active {
  color: #676765;
  background-color: #C6C6C6;
}
.btn-light.disabled,
.btn-light[disabled],
fieldset[disabled] .btn-light {
  background-color: rgba(244, 244, 244, 0.45);
}
.btn-secondary {
  color: #676765;
  background-color: #D0D0D0;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-secondary:focus,
.btn-secondary.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
  color: #676765;
  background-color: #B7B7B7;
}
.btn-secondary:hover,
.btn-secondary.hover {
  color: #ffffff;
  background-color: #6F6F6F;
}
.btn-secondary:active,
.btn-secondary.active {
  color: #676765;
  background-color: #B7B7B7;
}
.btn-secondary.disabled,
.btn-secondary[disabled],
fieldset[disabled] .btn-secondary {
  background-color: rgba(208, 208, 208, 0.45);
}
.btn-custom1 {
  color: #ffffff;
  background-color: #107474;
  border-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-custom1:active,
.btn-custom1.active {
  background-color: #0f7070;
  outline: none;
  box-shadow: none;
  opacity: 1;
}
.btn-custom1.active:focus {
  background-color: #107474;
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-custom1[disabled],
fieldset[disabled] .btn-custom1 {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
}
.btn-custom1,
.btn-custom1:hover,
.btn-custom1:focus,
.btn-custom1:active {
  outline: none;
}
.btn-custom1:hover {
  background-color: #0c5a5a;
}
.btn-custom1:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-custom1[disabled]:hover,
fieldset[disabled] .btn-custom1:hover,
.btn-custom1[disabled]:focus,
fieldset[disabled] .btn-custom1:focus {
  outline: none;
  opacity: 1;
  pointer-events: none;
}
.btn-custom2 {
  color: #ffffff;
  background-color: #107474;
  border-color: #ffffff;
}
.btn-custom2:focus,
.btn-custom2.focus {
  color: #ffffff;
  background-color: #0a4747;
  border-color: #bfbfbf;
}
.btn-custom2:hover {
  color: #ffffff;
  background-color: #0a4747;
  border-color: #e0e0e0;
}
.btn-custom2:active,
.btn-custom2.active,
.open > .dropdown-toggle.btn-custom2 {
  background-image: none;
  color: #ffffff;
  border-color: #e0e0e0;
}
.btn-custom2:active:hover,
.btn-custom2.active:hover,
.open > .dropdown-toggle.btn-custom2:hover,
.btn-custom2:active:focus,
.btn-custom2.active:focus,
.open > .dropdown-toggle.btn-custom2:focus,
.btn-custom2:active.focus,
.btn-custom2.active.focus,
.open > .dropdown-toggle.btn-custom2.focus {
  color: #ffffff;
  background-color: #052828;
  border-color: #bfbfbf;
}
.btn-custom2.disabled:hover,
.btn-custom2[disabled]:hover,
fieldset[disabled] .btn-custom2:hover,
.btn-custom2.disabled:focus,
.btn-custom2[disabled]:focus,
fieldset[disabled] .btn-custom2:focus,
.btn-custom2.disabled.focus,
.btn-custom2[disabled].focus,
fieldset[disabled] .btn-custom2.focus {
  background-color: #107474;
  border-color: #ffffff;
}
.btn-support {
  color: #676765;
  background-color: #f4f4f4;
  border-color: transparent;
}
.btn-support:focus,
.btn-support.focus {
  color: #676765;
  background-color: #dbdbdb;
  border-color: rgba(0, 0, 0, 0);
}
.btn-support:hover {
  color: #676765;
  background-color: #dbdbdb;
  border-color: rgba(0, 0, 0, 0);
}
.btn-support:active,
.btn-support.active,
.open > .dropdown-toggle.btn-support {
  background-image: none;
  color: #676765;
  border-color: rgba(0, 0, 0, 0);
}
.btn-support:active:hover,
.btn-support.active:hover,
.open > .dropdown-toggle.btn-support:hover,
.btn-support:active:focus,
.btn-support.active:focus,
.open > .dropdown-toggle.btn-support:focus,
.btn-support:active.focus,
.btn-support.active.focus,
.open > .dropdown-toggle.btn-support.focus {
  color: #676765;
  background-color: #c9c9c9;
  border-color: rgba(0, 0, 0, 0);
}
.btn-support.disabled:hover,
.btn-support[disabled]:hover,
fieldset[disabled] .btn-support:hover,
.btn-support.disabled:focus,
.btn-support[disabled]:focus,
fieldset[disabled] .btn-support:focus,
.btn-support.disabled.focus,
.btn-support[disabled].focus,
fieldset[disabled] .btn-support.focus {
  background-color: #f4f4f4;
  border-color: transparent;
}
.btn-grey {
  color: #555;
  background-color: #f4f4f4;
  border-color: #e4e4e4;
}
.btn-grey:focus,
.btn-grey.focus {
  color: #555;
  background-color: #dbdbdb;
  border-color: #a4a4a4;
}
.btn-grey:hover {
  color: #555;
  background-color: #dbdbdb;
  border-color: #c5c5c5;
}
.btn-grey:active,
.btn-grey.active,
.open > .dropdown-toggle.btn-grey {
  background-image: none;
  color: #555;
  border-color: #c5c5c5;
}
.btn-grey:active:hover,
.btn-grey.active:hover,
.open > .dropdown-toggle.btn-grey:hover,
.btn-grey:active:focus,
.btn-grey.active:focus,
.open > .dropdown-toggle.btn-grey:focus,
.btn-grey:active.focus,
.btn-grey.active.focus,
.open > .dropdown-toggle.btn-grey.focus {
  color: #555;
  background-color: #c9c9c9;
  border-color: #a4a4a4;
}
.btn-grey.disabled:hover,
.btn-grey[disabled]:hover,
fieldset[disabled] .btn-grey:hover,
.btn-grey.disabled:focus,
.btn-grey[disabled]:focus,
fieldset[disabled] .btn-grey:focus,
.btn-grey.disabled.focus,
.btn-grey[disabled].focus,
fieldset[disabled] .btn-grey.focus {
  background-color: #f4f4f4;
  border-color: #e4e4e4;
}
.btn-transparentBorderless {
  color: #ffffff;
  background-color: #09A7A7;
  border-color: transparent;
  background-color: transparent;
  border: none;
}
.btn-transparentBorderless:focus,
.btn-transparentBorderless.focus {
  color: #ffffff;
  background-color: #067777;
  border-color: rgba(0, 0, 0, 0);
}
.btn-transparentBorderless:hover {
  color: #ffffff;
  background-color: #067777;
  border-color: rgba(0, 0, 0, 0);
}
.btn-transparentBorderless:active,
.btn-transparentBorderless.active,
.open > .dropdown-toggle.btn-transparentBorderless {
  background-image: none;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0);
}
.btn-transparentBorderless:active:hover,
.btn-transparentBorderless.active:hover,
.open > .dropdown-toggle.btn-transparentBorderless:hover,
.btn-transparentBorderless:active:focus,
.btn-transparentBorderless.active:focus,
.open > .dropdown-toggle.btn-transparentBorderless:focus,
.btn-transparentBorderless:active.focus,
.btn-transparentBorderless.active.focus,
.open > .dropdown-toggle.btn-transparentBorderless.focus {
  color: #ffffff;
  background-color: #055555;
  border-color: rgba(0, 0, 0, 0);
}
.btn-transparentBorderless.disabled:hover,
.btn-transparentBorderless[disabled]:hover,
fieldset[disabled] .btn-transparentBorderless:hover,
.btn-transparentBorderless.disabled:focus,
.btn-transparentBorderless[disabled]:focus,
fieldset[disabled] .btn-transparentBorderless:focus,
.btn-transparentBorderless.disabled.focus,
.btn-transparentBorderless[disabled].focus,
fieldset[disabled] .btn-transparentBorderless.focus {
  background-color: #09A7A7;
  border-color: transparent;
}
.btn-transparentBorderless:focus,
.btn-transparentBorderless.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  text-decoration: none;
  background-color: #067777;
}
.btn-transparentBorderless:hover,
.btn-transparentBorderless.hover {
  background-color: #067777;
}
.btn-transparentBorderless:active,
.btn-transparentBorderless.active {
  background-color: #055555;
}
.btn-transparentBorderless.disabled,
.btn-transparentBorderless[disabled],
fieldset[disabled] .btn-transparentBorderless {
  color: rgba(255, 255, 255, 0.45);
}
.btn-blank {
  color: inherit;
  background-color: transparent;
  border: none  !important;
  box-shadow: none;
  outline: none;
  padding: 0;
  white-space: inherit;
  margin: 0;
  line-height: normal;
  border-radius: 0;
}
.btn-blank:focus,
.btn-blank.focus,
.btn-blank.hover,
.btn-blank:hover,
.btn-blank:active,
.btn-blank.active {
  background-color: transparent !important;
  border: none  !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}
.btn-blank[disabled],
fieldset[disabled] .btn-blank {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
}
.btn-transparent {
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid transparent;
  white-space: inherit;
  line-height: normal;
}
.btn-transparent:focus,
.btn-transparent.focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent.focus {
  color: inherit;
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-transparent:active,
.btn-transparent.active {
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.225);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.225);
  background: rgba(0, 0, 0, 0.15) none;
}
.btn-transparent.disabled,
.btn-transparent[disabled],
fieldset[disabled] .btn-transparent {
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}
.btn-transparentHighlightBorder {
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
  white-space: inherit;
  border: 2px solid transparent;
  line-height: normal;
}
.btn-transparentHighlightBorder:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-transparentHighlightBorder:hover,
.btn-transparentHighlightBorder:focus,
.btn-transparentHighlightBorder.focus {
  outline: none;
  color: inherit;
  text-decoration: none;
}
.btn-transparentHighlightBorder:active,
.btn-transparentHighlightBorder.active {
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.225);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.225);
}
.btn-transparentHighlightBorder.disabled,
.btn-transparentHighlightBorder[disabled],
fieldset[disabled] .btn-transparentHighlightBorder {
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}
.btn-link {
  color: #E87625;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-link,
.btn-link:hover,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #ae5312;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  outline: none;
  color: #777777;
  text-decoration: none;
}
.btn-sideBar {
  color: #ffffff;
  background-color: transparent;
  border-color: transparent;
}
.btn-sideBar:active,
.btn-sideBar.active {
  background-color: #e06a29;
  outline: none;
  box-shadow: none;
  opacity: 1;
}
.btn-sideBar.active:focus {
  background-color: #e06a29;
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-sideBar[disabled],
fieldset[disabled] .btn-sideBar {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
}
.btn-sideBar,
.btn-sideBar:hover,
.btn-sideBar:focus,
.btn-sideBar:active {
  outline: none;
}
.btn-sideBar:hover {
  background-color: rgba(197, 197, 197, 0.26);
}
.btn-sideBar:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.btn-sideBar[disabled]:hover,
fieldset[disabled] .btn-sideBar:hover,
.btn-sideBar[disabled]:focus,
fieldset[disabled] .btn-sideBar:focus {
  outline: none;
  opacity: 1;
  pointer-events: none;
}
.btn-icon {
  height: 31px;
  padding: 3px 10px 3px 6px;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.3333333;
  border-radius: 21.19px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 21.19px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 21.19px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.dropdown-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  max-width: 298px;
  min-width: 156.5px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  text-align: right;
  background-color: #FFF;
  /*border: 1px solid @dropdown-fallback-border; // IE8 fallback
  border: 1px solid @dropdown-border;*/
  /*border-radius: @border-radius-base;*/
  /*.box-shadow(0 6px 12px rgba(0, 0, 0, .175));*/
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  border: 1px solid transparent;
  display: block;
  padding: 10px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #005F5F;
}
.dropdown-menu > li > a:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #9CB9B9;
}
.dropdown-menu > .active > a:focus {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background: transparent none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: default;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  border: none;
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.3333333;
  border-radius: 25px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  line-height: 45px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple] .input-group-lg > .form-control,
select[multiple] .input-group-lg > .input-group-addon,
select[multiple] .input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple] .input-group-sm > .form-control,
select[multiple] .input-group-sm > .input-group-addon,
select[multiple] .input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #333333;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 17px;
  border-radius: 25px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: default;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #E87625;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #E87625;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 17px;
  line-height: 20px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background: transparent none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #E87625;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #ae5312;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #E87625;
  border-color: #E87625;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: default;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: default;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #E87625;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #c55e15;
}
.label-success {
  background-color: #47A85E;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #38844a;
}
.label-info {
  background-color: #87CCC7;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #63bdb6;
}
.label-warning {
  background-color: #F39C12;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #c87f0a;
}
.label-danger {
  background-color: #C90303;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #970202;
}
.badge {
  display: inline-block;
  min-width: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 12px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #E87625;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.badge-icon {
  font-size: 10px;
  line-height: 10px;
  top: 0;
  vertical-align: initial;
}
.badge-primary {
  color: #ffffff;
  background-color: #E87625;
  border: 1px solid transparent;
}
.badge-info {
  color: #ffffff;
  background-color: #87CCC7;
  border: 1px solid transparent;
}
.badge-warning {
  color: #ffffff;
  background-color: #F39C12;
  border: 1px solid transparent;
}
.badge-success {
  color: #ffffff;
  background-color: #47A85E;
  border: 1px solid transparent;
}
.badge-danger {
  color: #ffffff;
  background-color: #C90303;
  border: 1px solid transparent;
  width: 12px;
  height: 12px;
  line-height: 12px;
}
.badge-achievements {
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
  font-size: 11px;
  position: relative;
  margin-top: -30px;
  margin-left: -16px;
  left: 16px;
  padding: 4px 8px;
  text-align: center;
  background-color: #c10303;
}
.badge-unimportant {
  color: #676765;
  background-color: transparent;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 25px;
  padding-left: 15px;
  padding-right: 15px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #E87625;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #E87625;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
  border-radius: 10px;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #47A85E;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #87CCC7;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #F39C12;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #C90303;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: default;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #E87625;
  border-color: #E87625;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #fbeade;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #E87625;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #E87625;
  border-color: #E87625;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #E87625;
}
.panel-primary > .panel-heading .badge {
  color: #E87625;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #E87625;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 25px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: flex !important;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  margin: auto auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: auto auto;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  color: #676765;
  padding: 15px 30px 15px;
  background-color: #ffffff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
  font-weight: bold;
}
.modal-subtitle {
  background-color: #09A7A7;
  font-size: 18px;
  color: #FFF;
  text-transform: capitalize;
  padding: 5px 30px;
  margin-bottom: 15px;
}
.modal-body {
  position: relative;
  padding: 0 30px 10px;
}
.modal-body .FlexRow {
  padding-bottom: 5px;
}
.modal-footer {
  padding: 10px 30px 15px;
  text-align: right;
}
.modal-footer .btn {
  min-width: 100px;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (max-width: 768px) {
  .modal-dialog,
  .modal-fullWidth,
  .modal-large,
  .modal-medium-large,
  .modal-medium,
  .modal-medium-small,
  .modal-small {
    width: 100%;
    margin: 10px auto;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 768px) {
  .modal-fullWidth {
    width: 100%;
    margin: 10px auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  .modal-maxWidth1020 {
    max-width: 1020px;
  }
  .modal-large {
    width: 900px;
  }
  .modal-medium-large {
    width: 750px;
  }
  .modal-medium {
    width: 600px;
  }
  .modal-medium-small {
    width: 450px;
  }
  .modal-small {
    width: 300px;
  }
}
.tooltip {
  position: absolute;
  z-index: 10700000;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 5px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: solid transparent;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 24px 24px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: solid transparent;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 549px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 549px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 549px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 549px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 849px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 849px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 849px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 849px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 549px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 849px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.pagination {
  margin: 0;
}
.container-fluid > .row > [class*='col-'] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.container-fluid-flat {
  padding-left: 0;
  padding-right: 0;
}
.container-fluid-flat > .row {
  margin-left: 0;
  margin-right: 0;
}
.container-fluid-Vflat > .row > [class*='col-'] {
  padding-top: 0;
  padding-bottom: 0;
}
.container-fluid-Vflat {
  padding-top: 0;
  padding-bottom: 0;
}
.container-fluid-Vflat > .row {
  padding-top: 0;
  padding-bottom: 0;
}
.container-fluid-Vflat > .row > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}
.container-fluid-1px {
  padding-left: 1px;
  padding-right: 1px;
}
.container-fluid-1px > .row {
  margin-left: -1px;
  margin-right: -1px;
}
.container-fluid-1px > .row > [class*='col-'] {
  padding-right: 1px;
  padding-left: 1px;
}
.container-fluid-5px {
  padding-left: 5px;
  padding-right: 5px;
}
.container-fluid-5px > .row {
  margin-left: -5px;
  margin-right: -5px;
}
.container-fluid-5px > .row > [class*='col-'] {
  padding-right: 5px;
  padding-left: 5px;
}
.container-fluid-10px {
  padding-left: 10px;
  padding-right: 10px;
}
.container-fluid-10px > .row {
  margin-left: -10px;
  margin-right: -10px;
}
.container-fluid-10px > .row > [class*='col-'] {
  padding-right: 10px;
  padding-left: 10px;
}
.col-sr-1,
.col-ms-1,
.col-ml-1,
.col-sr-2,
.col-ms-2,
.col-ml-2,
.col-sr-3,
.col-ms-3,
.col-ml-3,
.col-sr-4,
.col-ms-4,
.col-ml-4,
.col-sr-5,
.col-ms-5,
.col-ml-5,
.col-sr-6,
.col-ms-6,
.col-ml-6,
.col-sr-7,
.col-ms-7,
.col-ml-7,
.col-sr-8,
.col-ms-8,
.col-ml-8,
.col-sr-9,
.col-ms-9,
.col-ml-9,
.col-sr-10,
.col-ms-10,
.col-ml-10,
.col-sr-11,
.col-ms-11,
.col-ml-11,
.col-sr-12,
.col-ms-12,
.col-ml-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 550px) {
  .col-sr-1,
  .col-sr-2,
  .col-sr-3,
  .col-sr-4,
  .col-sr-5,
  .col-sr-6,
  .col-sr-7,
  .col-sr-8,
  .col-sr-9,
  .col-sr-10,
  .col-sr-11,
  .col-sr-12 {
    float: left;
  }
  .col-sr-12 {
    width: 100%;
  }
  .col-sr-11 {
    width: 91.66666667%;
  }
  .col-sr-10 {
    width: 83.33333333%;
  }
  .col-sr-9 {
    width: 75%;
  }
  .col-sr-8 {
    width: 66.66666667%;
  }
  .col-sr-7 {
    width: 58.33333333%;
  }
  .col-sr-6 {
    width: 50%;
  }
  .col-sr-5 {
    width: 41.66666667%;
  }
  .col-sr-4 {
    width: 33.33333333%;
  }
  .col-sr-3 {
    width: 25%;
  }
  .col-sr-2 {
    width: 16.66666667%;
  }
  .col-sr-1 {
    width: 8.33333333%;
  }
  .col-sr-pull-12 {
    right: 100%;
  }
  .col-sr-pull-11 {
    right: 91.66666667%;
  }
  .col-sr-pull-10 {
    right: 83.33333333%;
  }
  .col-sr-pull-9 {
    right: 75%;
  }
  .col-sr-pull-8 {
    right: 66.66666667%;
  }
  .col-sr-pull-7 {
    right: 58.33333333%;
  }
  .col-sr-pull-6 {
    right: 50%;
  }
  .col-sr-pull-5 {
    right: 41.66666667%;
  }
  .col-sr-pull-4 {
    right: 33.33333333%;
  }
  .col-sr-pull-3 {
    right: 25%;
  }
  .col-sr-pull-2 {
    right: 16.66666667%;
  }
  .col-sr-pull-1 {
    right: 8.33333333%;
  }
  .col-sr-pull-0 {
    right: auto;
  }
  .col-sr-push-12 {
    left: 100%;
  }
  .col-sr-push-11 {
    left: 91.66666667%;
  }
  .col-sr-push-10 {
    left: 83.33333333%;
  }
  .col-sr-push-9 {
    left: 75%;
  }
  .col-sr-push-8 {
    left: 66.66666667%;
  }
  .col-sr-push-7 {
    left: 58.33333333%;
  }
  .col-sr-push-6 {
    left: 50%;
  }
  .col-sr-push-5 {
    left: 41.66666667%;
  }
  .col-sr-push-4 {
    left: 33.33333333%;
  }
  .col-sr-push-3 {
    left: 25%;
  }
  .col-sr-push-2 {
    left: 16.66666667%;
  }
  .col-sr-push-1 {
    left: 8.33333333%;
  }
  .col-sr-push-0 {
    left: auto;
  }
  .col-sr-offset-12 {
    margin-left: 100%;
  }
  .col-sr-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sr-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sr-offset-9 {
    margin-left: 75%;
  }
  .col-sr-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sr-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sr-offset-6 {
    margin-left: 50%;
  }
  .col-sr-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sr-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sr-offset-3 {
    margin-left: 25%;
  }
  .col-sr-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sr-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sr-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 850px) {
  .col-ms-1,
  .col-ms-2,
  .col-ms-3,
  .col-ms-4,
  .col-ms-5,
  .col-ms-6,
  .col-ms-7,
  .col-ms-8,
  .col-ms-9,
  .col-ms-10,
  .col-ms-11,
  .col-ms-12 {
    float: left;
  }
  .col-ms-12 {
    width: 100%;
  }
  .col-ms-11 {
    width: 91.66666667%;
  }
  .col-ms-10 {
    width: 83.33333333%;
  }
  .col-ms-9 {
    width: 75%;
  }
  .col-ms-8 {
    width: 66.66666667%;
  }
  .col-ms-7 {
    width: 58.33333333%;
  }
  .col-ms-6 {
    width: 50%;
  }
  .col-ms-5 {
    width: 41.66666667%;
  }
  .col-ms-4 {
    width: 33.33333333%;
  }
  .col-ms-3 {
    width: 25%;
  }
  .col-ms-2 {
    width: 16.66666667%;
  }
  .col-ms-1 {
    width: 8.33333333%;
  }
  .col-ms-pull-12 {
    right: 100%;
  }
  .col-ms-pull-11 {
    right: 91.66666667%;
  }
  .col-ms-pull-10 {
    right: 83.33333333%;
  }
  .col-ms-pull-9 {
    right: 75%;
  }
  .col-ms-pull-8 {
    right: 66.66666667%;
  }
  .col-ms-pull-7 {
    right: 58.33333333%;
  }
  .col-ms-pull-6 {
    right: 50%;
  }
  .col-ms-pull-5 {
    right: 41.66666667%;
  }
  .col-ms-pull-4 {
    right: 33.33333333%;
  }
  .col-ms-pull-3 {
    right: 25%;
  }
  .col-ms-pull-2 {
    right: 16.66666667%;
  }
  .col-ms-pull-1 {
    right: 8.33333333%;
  }
  .col-ms-pull-0 {
    right: auto;
  }
  .col-ms-push-12 {
    left: 100%;
  }
  .col-ms-push-11 {
    left: 91.66666667%;
  }
  .col-ms-push-10 {
    left: 83.33333333%;
  }
  .col-ms-push-9 {
    left: 75%;
  }
  .col-ms-push-8 {
    left: 66.66666667%;
  }
  .col-ms-push-7 {
    left: 58.33333333%;
  }
  .col-ms-push-6 {
    left: 50%;
  }
  .col-ms-push-5 {
    left: 41.66666667%;
  }
  .col-ms-push-4 {
    left: 33.33333333%;
  }
  .col-ms-push-3 {
    left: 25%;
  }
  .col-ms-push-2 {
    left: 16.66666667%;
  }
  .col-ms-push-1 {
    left: 8.33333333%;
  }
  .col-ms-push-0 {
    left: auto;
  }
  .col-ms-offset-12 {
    margin-left: 100%;
  }
  .col-ms-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-ms-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-ms-offset-9 {
    margin-left: 75%;
  }
  .col-ms-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-ms-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-ms-offset-6 {
    margin-left: 50%;
  }
  .col-ms-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-ms-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-ms-offset-3 {
    margin-left: 25%;
  }
  .col-ms-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-ms-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-ms-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1100px) {
  .col-ml-1,
  .col-ml-2,
  .col-ml-3,
  .col-ml-4,
  .col-ml-5,
  .col-ml-6,
  .col-ml-7,
  .col-ml-8,
  .col-ml-9,
  .col-ml-10,
  .col-ml-11,
  .col-ml-12 {
    float: left;
  }
  .col-ml-12 {
    width: 100%;
  }
  .col-ml-11 {
    width: 91.66666667%;
  }
  .col-ml-10 {
    width: 83.33333333%;
  }
  .col-ml-9 {
    width: 75%;
  }
  .col-ml-8 {
    width: 66.66666667%;
  }
  .col-ml-7 {
    width: 58.33333333%;
  }
  .col-ml-6 {
    width: 50%;
  }
  .col-ml-5 {
    width: 41.66666667%;
  }
  .col-ml-4 {
    width: 33.33333333%;
  }
  .col-ml-3 {
    width: 25%;
  }
  .col-ml-2 {
    width: 16.66666667%;
  }
  .col-ml-1 {
    width: 8.33333333%;
  }
  .col-ml-pull-12 {
    right: 100%;
  }
  .col-ml-pull-11 {
    right: 91.66666667%;
  }
  .col-ml-pull-10 {
    right: 83.33333333%;
  }
  .col-ml-pull-9 {
    right: 75%;
  }
  .col-ml-pull-8 {
    right: 66.66666667%;
  }
  .col-ml-pull-7 {
    right: 58.33333333%;
  }
  .col-ml-pull-6 {
    right: 50%;
  }
  .col-ml-pull-5 {
    right: 41.66666667%;
  }
  .col-ml-pull-4 {
    right: 33.33333333%;
  }
  .col-ml-pull-3 {
    right: 25%;
  }
  .col-ml-pull-2 {
    right: 16.66666667%;
  }
  .col-ml-pull-1 {
    right: 8.33333333%;
  }
  .col-ml-pull-0 {
    right: auto;
  }
  .col-ml-push-12 {
    left: 100%;
  }
  .col-ml-push-11 {
    left: 91.66666667%;
  }
  .col-ml-push-10 {
    left: 83.33333333%;
  }
  .col-ml-push-9 {
    left: 75%;
  }
  .col-ml-push-8 {
    left: 66.66666667%;
  }
  .col-ml-push-7 {
    left: 58.33333333%;
  }
  .col-ml-push-6 {
    left: 50%;
  }
  .col-ml-push-5 {
    left: 41.66666667%;
  }
  .col-ml-push-4 {
    left: 33.33333333%;
  }
  .col-ml-push-3 {
    left: 25%;
  }
  .col-ml-push-2 {
    left: 16.66666667%;
  }
  .col-ml-push-1 {
    left: 8.33333333%;
  }
  .col-ml-push-0 {
    left: auto;
  }
  .col-ml-offset-12 {
    margin-left: 100%;
  }
  .col-ml-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-ml-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-ml-offset-9 {
    margin-left: 75%;
  }
  .col-ml-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-ml-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-ml-offset-6 {
    margin-left: 50%;
  }
  .col-ml-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-ml-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-ml-offset-3 {
    margin-left: 25%;
  }
  .col-ml-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-ml-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-ml-offset-0 {
    margin-left: 0%;
  }
}
.col-xs-5ths,
.col-sr-5ths,
.col-sm-5ths,
.col-ms-5ths,
.col-md-5ths,
.col-ml-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-5ths {
  width: 20%;
}
.RightXSLeft {
  text-align: left;
}
.RightXSLeftFlex {
  text-align: left;
  justify-content: flex-start;
}
@media (min-width: 550px) {
  .RightXSLeft {
    text-align: right;
  }
  .RightXSLeftFlex {
    text-align: right;
    justify-content: flex-end;
  }
  .col-sr-5ths,
  .col-sm-5ths,
  .col-ms-5ths,
  .col-md-5ths,
  .col-ml-5ths,
  .col-lg-5ths {
    width: 33.33333333%;
    float: left;
  }
}
@media (min-width: 850px) {
  .col-sr-5ths,
  .col-sm-5ths,
  .col-ms-5ths,
  .col-md-5ths,
  .col-ml-5ths,
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
.tooltip-inner {
  white-space: pre-wrap;
  background-color: #ffffef;
  color: #000;
  border: 1px solid #444;
  max-width: 1050px;
}
.tooltip.in {
  opacity: 0.99;
}
.MuiInput-underline-9:before {
  border-bottom: 1px solid #000000;
}
.MuiInput-underline-9:after {
  border-bottom: 1px solid #2EE0F8 !important;
  border-bottom-width: 1px !important;
  border-bottom-style: solid !important;
  border-bottom-color: #2EE0F8 !important;
}
.MuiInput-underline-9:hover:not(.MuiInput-disabled-8):not(.MuiInput-focused-7):not(.MuiInput-error-10):before {
  border-bottom: 1px solid #2EE0F8 !important;
}
.MuiInput-underline-9.MuiInput-error-10:after {
  border-bottom-color: #C90303 !important;
}
.Switch .iOSIcon {
  width: 18px;
  height: 18px;
  box-shadow: none;
}
.Switch .iOSBar {
  border-radius: 13px;
  width: 42px;
  height: 22px;
  margin-top: -11px;
  margin-left: -22px;
  border: solid 1px;
  opacity: 1;
  background-color: #254726 !important;
  border: 3px solid #254726 !important;
}
.Switch .iOSChecked {
  color: #fafafa !important;
  height: 38px !important;
}
.Switch .iOSChecked + .iOSBar {
  background-color: #54A058 !important;
  border: 3px solid #54A058 !important;
  opacity: 1;
}
.Switch > span:first-child {
  height: 28.3px !important;
  color: #fafafa !important;
  width: 46px;
}
.FormControlLabel {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
.FormControlLabel.ToggleIosButton {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  margin: 0;
}
.FormControlLabel > span:last-child {
  font-size: 12px !important;
  margin-left: 0;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
* {
  position: initial;
}
html,
body {
  margin: 0;
  padding: 0;
  -webkit-print-color-adjust: exact;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
body {
  font-family: 'Roboto', sans-serif !important;
  font-display: block;
  background-color: #f5f5f5 !important;
  min-width: 320px;
}
.App {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
a {
  cursor: pointer;
  text-decoration: none;
}
a:link {
  color: #0980a7;
}
a:hover {
  color: #5779e7;
}
a:active {
  color: #a70909;
}
a:visited {
  color: #551a8b;
}
.svg-inline--fa {
  outline: none;
}
@media print {
  .no-print,
  .no-print * {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  html,
  body,
  .App {
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    top: unset;
    background-color: transparent !important;
  }
  .tooltip {
    display: none !important;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  font-size: inherit !important;
  transition: background-color 50000s ease-in-out 0s, color 50000s ease-in-out 0s, borderColor 50000s ease-in-out 0s !important;
}
.headerContent {
  position: absolute;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  z-index: 1100;
}
@media (max-width: 767.98px) {
  .headerContent {
    display: none !important;
  }
}
.SystemWideBanner {
  flex: 0 0 auto;
  width: 100%;
  color: #000000;
  background-color: #fFe996;
  border: 1px solid #9a050f;
  font-size: 0.8em;
  text-align: center;
  padding: 5px 10px;
}
.primaryContent {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 25px;
}
.primaryContent.educodeBg {
  background-size: cover;
}
@media (max-width: 767.98px) {
  .primaryContent {
    background-image: none !important;
    background: white !important;
  }
}
.contentChildrenAlone {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}
.contentChildren {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px;
}
.contentChildrenNoPadding {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0;
}
.footer {
  cursor: default;
  text-align: center;
  width: 100%;
  background-color: #f9f9f9;
  padding: 5px 10px;
  color: #555555;
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  font-size: 10px;
  z-index: 9;
}
.footer .Copyright {
  text-overflow: ellipsis;
  flex: auto;
  overflow-x: hidden;
}
.Email {
  overflow: auto;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.Email .EmailPanel {
  width: 100%;
  min-width: 200px;
  min-height: 100px;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print {
  .headerContent {
    display: none;
    position: relative;
  }
  .primaryContent {
    position: relative;
    top: 0;
    bottom: unset;
  }
  .contentChildren {
    position: relative;
  }
  .footer {
    position: relative;
  }
}
.Section {
  padding: 10px;
  max-width: 1600px;
  margin: 0 auto;
}
.tableContentWrapper {
  border-radius: 16.5px;
  padding: 25.81px;
  background-color: rgba(0, 0, 0, 0.15);
}
.tableContentWrapper.noTopRadiusBorder {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media print {
  .Section {
    position: relative !important;
  }
}
.backButton {
  padding: 0;
  margin-right: 10px;
  height: 36px;
}
.PageHeader {
  margin-bottom: 10px;
  min-height: 36px;
}
.MainBackButton.MainBackButton {
  font-size: 22px;
  font-weight: bold;
  height: 36px;
  margin-right: 20px;
}
.ManageSchool .PageHeader,
.ManageDistrict .PageHeader,
.ManageLicensee .PageHeader,
.ManageUser .PageHeader,
.ManageClasses .PageHeader {
  justify-self: flex-start;
  margin: 0 0 10px 0;
}
.ManageSchool .DefaultLocaleField,
.ManageDistrict .DefaultLocaleField,
.ManageLicensee .DefaultLocaleField,
.ManageUser .DefaultLocaleField,
.ManageClasses .DefaultLocaleField {
  width: 100%;
}
.PageHeader .btn {
  margin: 0 2px;
}
.PageHeader .btn.btn-icon {
  margin: 0;
  margin-right: 10px;
}
.PageTitle {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  width: 100%;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding-bottom: 5px;
}
.PageIcon {
  font-size: 26px;
  margin-right: 10px;
  cursor: pointer;
}
.PageAltTitle {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  padding: 3px 2px 3px 10px;
}
.NotSaved {
  font-size: 14px;
  padding: 5px 5px;
  color: #c90303;
}
.PageTitleUnsaved {
  color: #777700;
  font-family: Arial, serif;
  font-size: small;
  text-transform: lowercase;
  vertical-align: middle;
  margin-left: 15px;
}
.localeFlag {
  width: auto;
  height: 14px;
  display: flex;
  margin-right: 5px;
}
.FormControlLabel {
  font-size: 12px;
  color: #444444;
  margin-left: 0;
  margin-right: 0;
}
.validationIconGood {
  color: #006600;
  display: flex;
  align-items: center;
}
.validationIconBad {
  color: #880000;
  opacity: 1;
  -webkit-animation: validationIconBadFade 2s infinite;
  -o-animation: validationIconBadFade 2s infinite;
  animation: validationIconBadFade 2s infinite;
  display: flex;
  align-items: center;
}
.validationIconBad:hover {
  color: #ff0000;
}
@keyframes validationIconBadFade {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
  }
}
.ManagementButtonBar .btn {
  margin: 1px 2px;
}
.ManagementButtonBar .btn:first-child {
  margin-left: 0;
}
.ManagementButtonBar .btn:last-child {
  margin-right: 0;
}
.ManagementButtonBar .hSpacer {
  flex: 1 1 auto;
}
.ActionsCell {
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-overflow: unset;
  width: 100%;
}
.ActionButtons {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ActionButtons .btn {
  padding: 2px 6px;
  margin-left: 1px;
  margin-right: 1px;
  border-radius: 2px;
}
.ActionButtons .btn:first-child {
  margin-left: 2px;
}
.ActionButtons .btn:last-child {
  margin-right: 2px;
}
.DataGridProfilePicture {
  width: 24px;
  height: 24px;
}
.CurriculumIcon {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.CurriculumComingSoonIcon {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: calc(50% - 2px);
  transform: translate(-50%, -50%);
}
.CurriculumComingSoonIcon .ComingSoonIcon {
  font-size: 1.3em;
  color: #0066aa;
}
.CurriculumComingSoonIcon .ComingSoonText {
  font-size: 0.6em;
  text-align: center;
  white-space: pre-wrap;
  color: #0066aa;
  line-height: 1.1em;
}
.PremiumContentListIcon {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: calc(50% - 2px);
  transform: translate(-50%, -50%);
}
.PremiumContentListIcon .PremiumContentIconIcon {
  font-size: 1.3em;
  color: #996677;
}
.PremiumContentListIcon .PremiumContentIconText {
  font-size: 0.6em;
  text-align: center;
  white-space: pre-wrap;
  color: #996677;
  line-height: 1.1em;
}
.userCell {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2px;
  margin-bottom: 2px;
  white-space: nowrap;
  width: 100%;
}
.goButton {
  border-radius: 4px !important;
  min-width: 217px !important;
  font-weight: bold;
}
.differential {
  font-weight: bold;
}
.differential_level1 {
  color: #666666;
}
.differential_level2 {
  color: #222222;
}
.differential_level3 {
  color: #00aaaa;
}
.differential_level4 {
  color: #009900;
}
.differential_level5 {
  color: #999900;
}
.differential_level6 {
  color: #aa4400;
}
.differential_level7 {
  color: #aa0000;
}
.minimizeMaximizeButtonIcon {
  color: #444444;
}
.iconBackgroundSquareGrey {
  color: #f4f4f4;
}
.ButtonMenu {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #777777;
  display: block;
  border-radius: 5px;
  z-index: 50000;
  padding: 8px;
  overflow: auto;
}
.ButtonMenu .btn {
  margin: 1px;
  padding: 3px 6px;
}
.ButtonMenu .CheckContentMenuItem {
  padding: 2px;
}
.SearchBarContainer {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}
.SearchBarContainer > * {
  flex: 1 1 auto;
}
.SearchBarContainer .SearchTitle {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
.SearchBarContainer .SearchBarContainerCreateButton {
  font-size: 22px;
  margin: 5px 0;
}
.instructions {
  word-break: break-word;
}
.instructions .textLine {
  padding: 5px;
  align-items: center;
  justify-content: center;
}
.instructions .textLine .instructionsIcon {
  padding-left: 5px;
  padding-right: 5px;
  width: auto;
}
.form-group {
  display: flex;
  align-items: center;
  width: 100%;
}
.form-group .form-control {
  padding-right: 30px;
  height: 32px;
}
.form-group .form-control-feedback {
  top: unset;
  height: unset;
  display: flex;
  align-items: center;
  width: auto;
  pointer-events: auto;
  cursor: default;
  margin: 0 8px;
  line-height: unset;
}
.form-group .input-group .input-group-btn .btn {
  display: inline;
}
.colorSelector {
  position: absolute;
  display: block;
  width: 200px;
  z-index: 9;
}
.editableProfileImageSmall {
  width: 54px;
  height: 54px;
  position: relative;
}
.password {
  font-family: 'text-security-disc', serif;
  letter-spacing: 1px;
  font-size: larger;
}
.password::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  display: flex;
  height: 34px;
  align-items: center;
  font-family: Roboto, serif;
  letter-spacing: normal;
  position: relative;
  line-height: 34px;
  top: -4px;
  font-size: 14px;
}
.password::-moz-placeholder {
  /* Firefox 19+ */
  font-family: Roboto, serif;
  letter-spacing: normal;
}
.password:-ms-input-placeholder {
  /* IE 10+ */
  font-family: Roboto, serif;
  letter-spacing: normal;
}
.password:-moz-placeholder {
  /* Firefox 18- */
  font-family: Roboto, serif;
  letter-spacing: normal;
}
.point2Transition {
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footnote {
  color: #ffffff;
  display: block;
  font-size: 11px;
}
.resetToDefaults {
  width: 100%;
  display: flex;
}
.updatePanel .form-control {
  border-bottom: 0;
}
.Select .Select-menu-outer {
  padding-top: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 17.8px;
  border-bottom-left-radius: 17.8px;
}
body ::-webkit-scrollbar {
  position: relative;
  border-radius: 16.5px;
  background-color: #e5e5e5;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
body ::-webkit-scrollbar-thumb {
  background-color: #777777;
  border-radius: 16.5px;
}
.row-reverse {
  flex-direction: row-reverse;
}
.whiteText {
  color: #ffffff;
}
.Panel .is-focused:not(.is-open) > .Select-control {
  border-color: #0ec0d8;
  box-shadow: inset 0 -1px 1px -1px #58e2f4;
}
.DataTable.UnitsTable .DataTableContainer .dataCell .wrapCell {
  border-right: 0;
  min-width: auto;
  width: auto;
  padding: auto;
}
.EnableToggle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.promptInputContainer {
  display: flex;
  flex-direction: column;
}
.BannerDialog .BannerImage {
  cursor: pointer;
  max-width: 1136px;
  width: 70vw;
}
.testModeToolbar {
  flex: 0 0 auto;
  position: relative;
  background-color: #fefefe;
  border: 1px dashed #bbb;
}
.DebugToolbarCodeWindow {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  background-color: #FFF;
  border: solid 1px #337;
  overflow: hidden;
}
.DebugToolbarCodeWindow .Controls {
  text-align: left;
  width: 100%;
  height: 25px;
  position: absolute;
  top: 0;
  background-color: #ddd;
  border-bottom: solid 1px #111;
}
.DebugToolbarCodeWindow .Controls .btn {
  padding: 0 8px;
  margin: 0 3px;
  font-size: 15px;
}
.DebugToolbarCodeWindow .ConsoleOutput {
  position: absolute;
  bottom: 0;
  top: 25px;
  left: 0;
  right: 0;
}
.SuccessForm {
  width: 380px;
}
@media (max-width: 767.98px) {
  .SuccessForm {
    width: auto;
  }
}
.SuccessForm .SuccessFormContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0;
  padding: 1.5rem;
}
.SuccessForm .SuccessFormContent .SuccessFormTitle {
  font-weight: bold;
  font-size: 32px;
}
.SuccessForm .SuccessFormContent .AnimatedCheck {
  width: 200px;
  margin-top: 1.5rem;
}
.SuccessForm .SuccessFormContent .SuccessFormDescription {
  margin-top: 1.5rem;
  line-height: 1.5;
}
.SuccessForm .SuccessFormContent .SuccessFormButton {
  margin-top: 2rem;
  min-width: 180px;
}
.MasterForm {
  display: flex;
  flex-direction: column;
  max-width: 925px;
}
@media (max-width: 767.98px) {
  .MasterForm {
    align-items: center;
    max-width: unset;
  }
}
.MasterForm .MasterFormContent {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  padding: 1.5rem;
}
@media (max-width: 767.98px) {
  .MasterForm .MasterFormContent {
    box-shadow: none !important;
  }
}
.MasterForm .MasterFormContent .MasterFormHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.MasterForm .MasterFormContent .MasterFormHeader .MasterFormBrand img {
  width: 346.875px;
}
.MasterForm .MasterFormContent .MasterFormTitle {
  margin-top: 2rem;
  font-weight: bold;
}
.MasterForm .MasterFormContent .MasterFormDescription {
  margin-top: 0.5rem;
  font-size: 14px;
  max-width: 560px;
  line-height: 1.5;
}
.MasterForm .MasterFormContent .MasterFormSubForm {
  margin-top: 1rem;
}
.MasterForm .MasterFormContent .MasterFormErrorMessage {
  align-self: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.5rem;
  text-align: center;
  color: #aa0000;
  font-size: 14px;
}
.MasterForm .MasterFormContent .MasterFormContentAlt {
  margin-top: 1.5rem;
}
.MasterForm .MasterFormContent .MasterFormNavigation {
  margin-top: 1rem;
  align-self: center;
}
.MasterForm .MasterFormExtraContent {
  margin-top: 1rem;
}
@media (max-width: 767.98px) {
  .MasterForm .MasterFormExtraContent {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }
}
.MasterForm.ThinMasterForm {
  max-width: 380px;
}
@media (max-width: 767.98px) {
  .MasterForm.ThinMasterForm {
    max-width: unset;
  }
}
.MasterForm.ThinMasterForm .MasterFormContent .MasterFormHeader .MasterFormHeaderAlt {
  display: none;
}
.MasterForm.ThinMasterForm .MasterFormContent .MasterFormHeader .MasterFormBrand {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex: 1;
}
.MasterForm.ThinMasterForm .MasterFormContent .MasterFormHeader .MasterFormBrand img {
  width: 285px;
}
@media (max-width: 767.98px) {
  .MasterForm {
    max-width: unset;
  }
  .MasterForm .MasterFormContent .MasterFormHeader .MasterFormHeaderAlt {
    display: none;
  }
  .MasterForm .MasterFormContent .MasterFormHeader .MasterFormBrand {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1;
  }
  .MasterForm .MasterFormContent .MasterFormHeader .MasterFormBrand img {
    width: 285px;
  }
}
.AchievementIcon svg {
  width: 150px;
}
.AchievementReachedToast {
  background: linear-gradient(90deg, #FF6A29, #E8A525, #E8A525, #FF6A29);
  animation: animate 6s linear infinite;
  background-size: 400%;
  border-radius: 4px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.AchievementReachedToast .AchievementIcon svg {
  margin-top: 3px;
  width: 75px;
  border-radius: 37.5px;
  box-shadow: 0px 2px 8px white;
}
.AchievementReachedToast .AchievementContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 285px;
}
.AchievementReachedToast .AchievementContent .AchievementHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}
.AchievementReachedToast .AchievementContent .AchievementHeader .AchievementTitle {
  color: white;
  font-size: 80%;
}
.AchievementReachedToast .AchievementContent .AchievementHeader .AchievementAwardedCredits {
  color: white;
  font-size: 80%;
  display: none;
}
.AchievementReachedToast .AchievementContent .AchievementDescription {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: white;
  font-size: 115%;
}
@keyframes animate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 400%;
  }
}
.svg-background {
  background-position: center!important;
  background-repeat: no-repeat !important;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.svg-background.NotStarted {
  filter: grayscale(100%);
}
.svg-background.IsCompleted {
  box-shadow: 0px 0px 10px 0px greenyellow;
}
.svg-background .circle-background {
  fill: none;
}
.svg-background .circle-progress {
  fill: none;
}
.svg-background .circle-shadow {
  background-color: black;
}
.svg-background .circle-text {
  font-size: 0.85em;
  fill: whitesmoke;
  position: relative;
  z-index: 3;
}
.svg-background + .AchievementIcon {
  position: absolute;
  top: 0;
  z-index: 1;
}
.svg-background + .AchievementIcon svg {
  width: 80px;
}
.svg-background.NotStarted + .AchievementIcon svg {
  filter: grayscale(100%);
}
.AchievementProgressPanel .custom-progress-bar {
  height: 8px;
}
.AchievementProgressPanel .custom-progress-bar .progress-bar {
  background-color: #1ca7a7;
}
.AchievementProgressPanel .progress-counter {
  color: #494949;
  font-size: 11pt;
}
.badge-container {
  background-color: #56595d;
  max-width: 100%;
  height: 120px;
  border-radius: 20px;
  padding: 1px;
  box-sizing: content-box;
  box-shadow: 0 1px 1px 0 rgba(42, 41, 41, 0.75);
  position: relative;
}
.badge-container .circular-graph {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translate(0, -50%);
}
.badge-container .description-text {
  position: absolute;
  top: 50%;
  left: 60%;
  text-align: center;
  max-width: 40%;
  transform: translate(-60%, -50%);
  color: #f5f5f5;
  font-size: 13pt;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .badge-container .description-text {
    left: 70%;
    transform: translate(-70%, -50%);
    font-size: 11.5pt;
    width: 70%;
  }
}
.badge-container.NotStarted .circular-graph,
.badge-container.NotStarted .description-text {
  opacity: 0.5;
}
.ActionInput {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.ActionInput .textField {
  position: relative;
  height: 32px;
  z-index: 2;
  flex: 1 1 auto;
}
.ActionInput .withActionButton {
  padding-right: 40px;
  height: 32px;
  text-overflow: ellipsis;
}
.ActionInput .withIcon {
  padding-left: 36px;
}
.ActionInput .labelIcon {
  position: absolute;
  height: 32px;
  display: flex;
  align-items: center;
  left: 5px;
  z-index: 20;
}
.ActionInput .labelIcon > img {
  display: flex;
  width: 24px;
  height: 24px;
  border-radius: 2px;
}
.ActionInput .actionButton {
  position: absolute;
  height: 32px;
  z-index: 12;
  outline: none;
  border-radius: 16px;
  right: 0;
  color: #676765;
}
.ActionInput .additionalButtonsContainer {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.ActionInput .additionalButtonsContainer .additionalButtons {
  position: relative;
  height: 32px;
  z-index: 1;
  flex: 0 0 auto;
  margin-left: -1px;
  color: #676765;
}
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.Select.is-disabled > .Select-control {
  border-bottom: 1px solid #CCC;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.chatLocaleFilter .Select-control {
  background-color: #FFF;
}
.Select-control {
  background-color: #fff;
  border-color: #404040 #333 #1a1a1a;
  border-radius: 0;
  border-bottom: 1px solid #333;
  color: #333;
  cursor: default;
  display: flex;
  border-spacing: 0;
  border-collapse: separate;
  height: 34px;
  min-height: 34px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
}
.is-searchable.is-open > .Select-control {
  cursor: text;
}
.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #1a1a1a #333 #404040;
}
.is-open > .Select-control .Select-arrow {
  margin-top: -5px;
  top: 3px;
  border-color: transparent transparent #FFF;
  border-width: 0 5px 5px;
  border-bottom: 5px solid #666;
}
.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.is-focused:not(.is-open) > .Select-control {
  outline: none;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
  border: 1px solid #2EE0F8 !important;
  text-decoration: none;
}
.Select-placeholder {
  color: #aaa;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  left: 0;
  line-height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 26px;
  padding-left: 16px;
  padding-right: 16px;
  position: absolute;
  top: 0;
}
.Select-input > input {
  width: 100%;
  height: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #333;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  text-align: center;
  height: 100%;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 17px;
  position: relative;
}
.Select--multi .Select-clear-zone {
  width: 20px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  /*width: (@select-arrow-width * 4);*/
  /*padding-right: @select-arrow-width;*/
  padding-right: 16px;
  text-align: center;
  height: 100%;
}
.Select-arrow {
  border: 5px solid transparent;
  border-top-color: #666;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  top: 3px;
}
.is-open .Select-arrow,
.Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.resultsPerPageSelect .Select-arrow-zone .Select-arrow {
  border: 5px solid transparent;
  border-top-color: #ffffff;
}
.Select.resultsPerPageSelect.is-open .Select-arrow {
  border-bottom-color: #666;
}
.Select-multi-value-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.Select-multi-value-wrapper .Select-multi-value-items {
  overflow: auto;
  text-overflow: ellipsis;
}
.Select--multi .Select-multi-value-wrapper {
  position: relative;
  display: block;
  min-height: 26px;
  margin-bottom: 5px;
  flex: 1 1 auto;
  overflow: hidden;
}
.Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
.Select-search-input-container {
  width: 100%;
  height: 100%;
  padding: 0;
}
.Select-search-input {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px 3px 10px;
}
.Select-search-input > input {
  width: 100%;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #555555;
  background: #fff none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.Select-search-input > input::placeholder {
  color: #999;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #fff;
  border: 1px solid #333;
  border-top-color: #999999;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 228px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 50100;
  -webkit-overflow-scrolling: touch;
  padding-top: 8px;
  padding-bottom: 2px;
  overflow: hidden;
}
.Select-menu {
  overflow-y: auto;
}
.Select-menu-maxHeight-normal {
  max-height: 224px;
}
.Select-menu-maxHeight-inputSearch {
  max-height: 194px;
  padding-left: 10px;
  padding-right: 10px;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 4px 0;
}
.Select-option:last-child {
  border-bottom-right-radius: 17.8px;
  border-bottom-left-radius: 17.8px;
}
.Select-option.is-selected {
  background-color: #f7feff;
  /* Fallback color for IE 8 */
  background-color: rgba(46, 224, 248, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #eefdfe;
  /* Fallback color for IE 8 */
  background-color: rgba(46, 224, 248, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 4px 16px;
}
.Select--multi .Select-multi-value-items {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #eefdfe;
  /* Fallback color for IE 8 */
  background-color: rgba(46, 224, 248, 0.08);
  border-radius: 2px;
  border: 1px solid #cdf8fd;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(46, 224, 248, 0.24);
  color: #2EE0F8;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
  max-Width: calc(100% -  5px);
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
  text-overflow: ellipsis;
  overflow: hidden;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
  border-left: 1px solid #cdf8fd;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(46, 224, 248, 0.24);
}
.Select--multi .Select-value-label .SearchResultImageCell img {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}
.Select--multi .Select-value-label .FlexCol {
  padding-left: 1px;
  padding-right: 1px;
}
.Select--multi a.Select-value-label {
  color: #2EE0F8;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  padding: 1px 5px 3px;
  min-width: 17px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #ddfafe;
  /* Fallback color for IE 8 */
  background-color: rgba(21, 220, 247, 0.08);
  color: #15dcf7;
}
.Select--multi .Select-value-icon:active {
  background-color: #cdf8fd;
  /* Fallback color for IE 8 */
  background-color: rgba(46, 224, 248, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}
.AllUserTypeReportCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
.AllUserTypeReportCards .ReportCard {
  width: 250px;
}
.AllUserTypeReportCards .ResellersCard {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.AllUserTypeReportCards .DistrictsCard {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.AllUserTypeReportCards .SchoolsCard {
  grid-column: 3 / span 1;
  grid-row: 1 / span 1;
}
.AllUserTypeReportCards .IndividualsCard {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
.AllUserTypeReportCards .ParentsCard {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.AllUserTypeReportCards .ChildrenCard {
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
}
.AllUserTypeReportCards .EducatorsCard {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}
.AllUserTypeReportCards .StudentsCard {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}
.AllUserTypeReportCards .TotalUsersCard {
  grid-column: 3 / span 1;
  grid-row: 3 / span 1;
}
@-webkit-keyframes AnimatedDashedBorderKeyFrames {
  0% {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes AnimatedDashedBorderKeyFrames {
  0% {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes AnimatedDashedBorderKeyFrames {
  0% {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes AnimatedDashedBorderKeyFrames {
  0% {
    stroke-dashoffset: 0;
  }
}
@keyframes AnimatedDashedBorderKeyFrames {
  0% {
    stroke-dashoffset: 0;
  }
}
.AnimatedDashedBorder {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.AnimatedDashedBorder .AnimatedDashedBorderSvg {
  width: 100%;
  height: 100%;
}
.Announcement .MuiCardContent-root:last-child {
  padding-bottom: 16px;
}
.Announcement .AnnouncementContent {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.Announcement .AnnouncementContent .AnnouncementIcon {
  color: #e06a29;
  margin: 0 1rem;
  font-size: 27px;
}
.Announcement .AnnouncementContent .AnnouncementText {
  flex: auto;
  font-size: 13px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .Announcement .AnnouncementContent .AnnouncementText {
    font-size: 20px;
  }
}
.Announcement .AnnouncementContent .AnnouncementLearnMore {
  margin-right: 1rem;
}
.AreaChart.Error .AreaChartContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: dashed 1px #666;
  background-color: #eee;
}
.AutoSizeComponentBar {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.AutoSizeComponentBar .btn {
  padding: 6px 10px;
  display: block;
}
.AutoSizeComponentBar .AutoSizeComponentBarRow {
  position: absolute;
  top: -10000px;
  height: auto;
  white-space: normal;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: 100%;
}
.AutoSizeComponentBar .AutoSizeComponentBarDisplayed {
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}
.AutoSizeComponentBar .AutoSizeComponentBarDisplayed > * {
  margin-bottom: 5px;
}
.AutoSizeComponentBar .AutoSizeComponentBarFullWidthSpacer {
  flex: 1 1 auto;
}
.AutoSizeComponentBar .ASCBR-Table {
  display: table;
  width: 100%;
}
.AutoSizeComponentBar .ASCBR-TableRow {
  display: table-row;
}
.AutoSizeComponentBar .ASCBR-TableCell-Icon,
.AutoSizeComponentBar .ASCBR-TableCell-Label {
  display: table-cell;
  vertical-align: middle;
}
.RowWrapContent .AutoSizeComponentBarDisplayed {
  display: flex;
  flex-wrap: wrap;
  white-space: normal;
}
.BarChart.Error .BarChartContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: dashed 1px #666;
  background-color: #eee;
}
.ButtonGroupFilter .ButtonGroupFilterButton {
  width: 133px;
  font-size: 70%;
  font-weight: 300;
}
.CategoryCard {
  display: flex;
  justify-content: flex-start;
  background-color: #f3f3f3;
  padding: 1rem 1rem 1rem 0;
  border-radius: 19px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  text-align: left;
  height: 105px;
  transition: background-color 200ms ease-in-out;
  cursor: pointer;
}
.CategoryCard:not(.NoHover):hover {
  background-color: #ccc;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.15), 0px 1px 1px 0px rgba(0, 0, 0, 0.09), 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}
.CategoryCard.ActiveCategoryCard {
  background-color: #d6d6d6;
  border: 1px solid #969696;
  box-shadow: unset;
}
.CategoryCard .CategoryCardIcon {
  margin-right: 0.5rem;
  position: relative;
  left: -1px;
}
.CategoryCard .CategoryCardIcon img {
  position: relative;
  left: -1px;
}
.CategoryCard .CategoryCardContent {
  flex: auto;
  text-overflow: ellipsis;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
  line-height: 1.4;
}
.CategoryCard .CategoryCardContent .CategoryCardTitle {
  font-weight: bold;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}
.CategoryCard .CategoryCardContent .CategoryCardExtraTitleInfo {
  font-size: 14px;
  font-weight: normal;
  color: #4e4e4e;
  margin-left: 4px;
}
.CategoryCard .CategoryCardContent .CategoryCardExtraTitleInfo::before {
  content: '– ';
}
.CategoryCard .CategoryCardContent .CategoryCardTitle + .CategoryCardDescription {
  margin-top: 0.5rem;
}
.CategoryCard .CategoryCardContent .CategoryCardDescription {
  font-size: 15px;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
.CheckButton {
  padding: 0;
  display: flex;
}
.CheckButton .btn {
  padding: 3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  text-align: left;
}
.CheckButton .checkImage {
  width: 36px;
  height: 18px;
}
.CheckButton .checkContent {
  margin-left: 7px;
  margin-right: 7px;
  white-space: normal;
  min-width: 1px;
}
.ClassCodeSignUpForm,
.CompetitionSignUpForm {
  width: 560px;
}
@media (max-width: 767.98px) {
  .ClassCodeSignUpForm,
  .CompetitionSignUpForm {
    width: auto;
  }
}
.ClassCodeSignUpForm .ClassCodeSignUpContent,
.CompetitionSignUpForm .ClassCodeSignUpContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ClassCodeSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpFormField,
.CompetitionSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpFormField {
  width: 100%;
}
.ClassCodeSignUpForm .ClassCodeSignUpContent .BaseTextField,
.CompetitionSignUpForm .ClassCodeSignUpContent .BaseTextField {
  width: 100%;
}
.ClassCodeSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpFormField + .ClassCodeSignUpFormField,
.CompetitionSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpFormField + .ClassCodeSignUpFormField {
  margin-top: 1.7rem;
}
@media (max-width: 767.98px) {
  .ClassCodeSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpFormField + .ClassCodeSignUpFormField,
  .CompetitionSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpFormField + .ClassCodeSignUpFormField {
    margin-top: 1rem;
  }
}
.ClassCodeSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpButtonContainer,
.CompetitionSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpButtonContainer {
  margin-top: 2rem;
}
.ClassCodeSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpButtonContainer .ClassCodeSignUpButton,
.CompetitionSignUpForm .ClassCodeSignUpContent .ClassCodeSignUpButtonContainer .ClassCodeSignUpButton {
  width: 200px;
}
.CompetitionSignUpForm {
  width: 450px;
}
.CompetitionSignUpForm .ClassCodeSignUpFormField + .ClassCodeSignUpFormField {
  margin-top: 0.75rem !important;
}
.CompetitionSignUpForm .ClassCodeSignUpButtonContainer {
  margin-top: 3rem !important;
}
.PlansCountdown {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 2px solid #c10303;
  color: #c10303;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}
.PlansCountdown .PlansCountdownBox {
  font-weight: bold;
  font-size: 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.PlansCountdown .PlansCountdownBox .PlansCountdownNumber {
  margin-bottom: 5px;
}
.PlansCountdown .PlansCountdownBox .PlansCountdownUnit {
  font-size: 0.5em;
}
.PlansCountdown .PlansCountdownDivider {
  margin: 0 5px;
  position: relative;
  top: -9px;
}
.CourseList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.CourseList.EmptyResults {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  border-radius: 10px;
  border: 1px solid #a39591;
  text-align: center;
}
.CourseList.EmptyResults .EmptyText {
  font-weight: 300;
  font-size: 34px;
  line-height: 110px;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.CourseList .CourseListCard {
  width: 100%;
}
.CourseList .CourseListCard .DButton {
  min-width: 170px;
}
@media (min-width: 1200px) {
  .CourseList .CourseListCard .DButton {
    min-width: 220px;
  }
}
.CourseList .CourseListCard .GoButton {
  border-radius: 4px;
}
.CourseList .CourseListCard .GoButton.selected {
  color: #ffffff !important;
  border-color: #e87625 !important;
  background-color: #e87625 !important;
}
.CourseList .CourseListCard .ProgressButton {
  border-radius: 4px;
}
.CourseList .CourseListCard .ProgressButton[disabled] svg {
  opacity: 0.25;
}
.CourseList .CourseListCard .ComingSoonDialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.CourseList .CourseListCard .ComingSoonDialog .ComingSoonDialog-TopIcon {
  margin: 0 auto 30px auto;
  font-size: 3em;
  color: #0066aa;
}
.CourseList .CourseListCard .ComingSoonDialog .ComingSoonDialog-ClassName {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
.CourseList .CourseListCard .ComingSoonDialog .ComingSoonDialog-LongDescription {
  font-size: 90%;
  line-height: 1.7;
  text-align: justify;
}
.CourseList .CourseListCard + .CourseListCard {
  margin-top: 3rem;
}
.CourseList .CourseProgressButtonContent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.CourseList .CourseProgressButtonContent .CourseProgressButtonIcon {
  width: 32px;
}
.CourseList .HorizontalCard .DButton {
  min-width: 70px;
}
@media (min-width: 1200px) {
  .CourseList .HorizontalCard .DButton {
    min-width: 220px;
  }
}
.CourseList .HorizontalCard .CourseProgressButtonText {
  margin-left: 0.5rem;
  font-size: 14px;
  display: none;
}
@media (min-width: 1200px) {
  .CourseList .HorizontalCard .CourseProgressButtonText {
    display: block;
  }
}
.CourseList.VerticalList {
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.CourseList.VerticalList .CourseListCard {
  width: 50%;
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .CourseList.VerticalList .CourseListCard {
    width: 33.33333333%;
  }
}
.CourseList.VerticalList .CourseListCard .VerticalCardButtons {
  justify-content: center;
}
.CourseList.VerticalList .CourseListCard .VerticalCardButtons .CourseProgressButtonContent {
  padding: 0.5rem;
}
.CourseList.VerticalList .CourseListCard + .CourseListCard {
  margin-top: 0;
}
.DailyAccountsChart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.DailyAccountsChart .DailyAccountsChartTitle {
  font-weight: bold;
}
.DailyAccountsChart .RadioGroups {
  display: flex;
  justify-content: space-between;
  width: 800px;
}
.DailyAccountsChart .ButtonGroupFilter {
  margin-top: 1rem;
}
.DailyAccountsChart .HelperInfo {
  margin-top: 1rem;
}
.DailyAccountsChart .HelperInfo .HelperText {
  font-size: 70%;
  font-weight: 300;
  color: gray;
}
.DailyAccountsChart .HelperInfo .HelperText::before {
  content: '* ';
}
.DailyAccountsChart .HelperInfo .HelperText + .HelperText {
  margin-top: 0.5rem;
}
.DateLineChart .SelectedValueContainer {
  display: flex;
  flex-direction: row;
}
.DateLineChart .SelectedValueContainer .SelectedDate {
  flex: auto;
  font-weight: bold;
  margin-right: 2rem;
}
.DateLineChart .SelectedValueContainer .SeriesInfo {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.DateLineChart .SelectedValueContainer .SeriesInfo .SeriesColor {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}
.DateLineChart .SelectedValueContainer .SeriesInfo .SeriesLabel {
  margin-right: 0.5rem;
  font-weight: bold;
  font-size: 85%;
}
.DateLineChart .SelectedValueContainer .SeriesInfo .SeriesValue {
  font-size: 85%;
}
.DateLineChart .SelectedValueContainer .SeriesInfo + .SeriesInfo {
  margin-left: 1rem;
}
.DataTable {
  width: 100%;
}
.DataTable .resizing * {
  cursor: ew-resize;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.DataTable .CheckContentMenuItem a {
  padding: 1px 10px;
}
.DataTable .ColumnSelection {
  white-space: nowrap;
}
.DataTable .resultsPerPageSelect {
  min-width: 74px;
  text-align: left;
}
.DataTable .listTime {
  font-size: 12px;
  font-style: italic;
  color: #555;
}
.DataTable .listTimeValue {
  color: #640;
}
.DataTable .DataTableContainer {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.DataTable .DataTableContainer .DataTableGrid {
  overflow-x: auto;
  overflow-y: hidden;
  display: grid;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #a39591;
}
.DataTable .DataTableContainer .DataTableGrid .cellCommon {
  align-items: center;
  display: flex;
  min-width: 1px;
}
.DataTable .DataTableContainer .DataTableGrid .noData {
  grid-column-start: 1;
  text-align: center;
  justify-content: center;
  padding: 20px 3px;
}
.DataTable .DataTableContainer .DataTableGrid .topLeftCell {
  border-top-left-radius: 5px;
}
.DataTable .DataTableContainer .DataTableGrid .topRightCell {
  border-top-right-radius: 5px;
}
.DataTable .DataTableContainer .DataTableGrid .headerRightBorder {
  border-right: 1px solid #BABABA;
}
.DataTable .DataTableContainer .DataTableGrid .headerCell {
  padding: 4px 8px;
  position: relative;
  background-color: #D0D0D0;
  border-right: 1px solid #BABABA;
}
.DataTable .DataTableContainer .DataTableGrid .headerCell .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 11px;
}
.DataTable .DataTableContainer .DataTableGrid .headerCell .sortCaret {
  padding-left: 6px;
}
.DataTable .DataTableContainer .DataTableGrid .headerCell .dragHandle {
  position: absolute;
  right: -2px;
  top: 0;
  bottom: 0;
  width: 5px;
  cursor: ew-resize;
  padding: 0 1px;
  background-color: #BABABA;
  z-index: 2;
}
.DataTable .DataTableContainer .DataTableGrid .headerCell .dragHandle > div {
  border-left: 1px solid #898989;
  border-right: 1px solid #898989;
  width: 3px;
  height: 100%;
}
.DataTable .DataTableContainer .DataTableGrid .dataCell {
  padding: 16px 0;
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #BABABA;
  min-height: 28px;
  text-align: left;
}
.DataTable .DataTableContainer .DataTableGrid .dataCell .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 11px;
}
.DataTable .DataTableContainer .DataTableGrid .dataCell .wrapCell {
  border-right: 1px solid #BABABA;
  min-height: 28px;
  line-height: 28px;
  width: 100%;
  padding: 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.DataTable .DataTableContainer .DataTableGrid .firstColumn .wrapCell {
  padding: 0 8px;
}
.DataTable .DataTableContainer .DataTableGrid .lastColumn .wrapCell {
  border-right: 0;
}
.DataTable .DataTableTopControlRow {
  padding-bottom: 5px;
  overflow: visible;
}
.DataTable .DataTableBottomControlRow {
  padding-top: 5px;
  overflow: visible;
}
@media print {
  .DataTable .DataTableTopControlRowNoPrint {
    display: none !important;
  }
  .DataTable .DataTableBottomControlRowNoPrint {
    display: none !important;
  }
}
.DataTable .DataTableTopControlRow .AutoSizeComponentBarRow > *,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarRow > *,
.DataTable .DataTableTopControlRow .AutoSizeComponentBarDisplayed > *,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarDisplayed > * {
  margin-left: 3px;
  margin-right: 3px;
}
.DataTable .DataTableTopControlRow .AutoSizeComponentBarRow .AutoSizeComponentBarGroup,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarRow .AutoSizeComponentBarGroup,
.DataTable .DataTableTopControlRow .AutoSizeComponentBarDisplayed .AutoSizeComponentBarGroup,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarDisplayed .AutoSizeComponentBarGroup {
  display: flex;
}
.DataTable .DataTableTopControlRow .AutoSizeComponentBarRow .AutoSizeComponentBarGroup > *,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarRow .AutoSizeComponentBarGroup > *,
.DataTable .DataTableTopControlRow .AutoSizeComponentBarDisplayed .AutoSizeComponentBarGroup > *,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarDisplayed .AutoSizeComponentBarGroup > * {
  margin-left: 3px;
  margin-right: 3px;
}
.DataTable .DataTableTopControlRow .AutoSizeComponentBarRow > *:first-child,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarRow > *:first-child,
.DataTable .DataTableTopControlRow .AutoSizeComponentBarDisplayed > *:first-child,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarDisplayed > *:first-child {
  margin-left: 0;
}
.DataTable .DataTableTopControlRow .AutoSizeComponentBarRow > *:last-child,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarRow > *:last-child,
.DataTable .DataTableTopControlRow .AutoSizeComponentBarDisplayed > *:last-child,
.DataTable .DataTableBottomControlRow .AutoSizeComponentBarDisplayed > *:last-child {
  margin-right: 0;
}
.DateTime {
  overflow: hidden;
  padding: 0;
  max-width: 150px;
  text-align: center;
  border-bottom: 1px solid #707070;
  height: 32px;
}
.DateTime .dtMenuButton {
  padding: 2px 2px;
  height: 100%;
  min-width: auto;
  border-radius: 2px;
}
.DateTime .dtMenuButtonSizingContainer {
  position: absolute;
  top: -99999999999px;
  padding: 2px 2px;
}
.DateTime .dtSeparator {
  white-space: pre;
}
.DateTimeMenu {
  position: absolute;
  top: -999999px;
  z-index: 99999999;
  overflow: hidden;
}
.ScrollSelect {
  display: block;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  font-size: 1.2em;
  -webkit-mask-box-image: linear-gradient(to top, transparent, transparent 1%, white 15%, white 85%, transparent 99%, transparent 100%);
  border: 1px solid #000;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
.ScrollSelect .ScrollSelectContainer {
  transition: 300ms;
  transition-timing-function: ease-out;
}
.ScrollSelect .ScrollSelectContainer .ScrollSelectItem {
  color: #222;
  padding: 0 6px;
  cursor: pointer;
  overflow: hidden;
}
.ScrollSelect .ScrollSelectContainer .ScrollSelectItem .displayedText {
  transition: 300ms;
  transition-timing-function: ease-out;
}
.ScrollSelect .ScrollSelectContainer .ScrollSelectItem-selected {
  color: #003;
}
.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 9200 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}
.rdtPicker .rdtTimeToggle {
  text-align: center;
}
.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtInRange {
  background-color: #e0ffe0;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtInRange:hover {
  background-color: #eeeeee;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}
.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-child th {
  cursor: pointer;
}
.rdtPicker thead tr:first-child th:hover {
  background: #eeeeee;
}
.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}
.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}
.rdtPicker thead button {
  width: 100%;
  height: 100%;
}
td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}
.rdtCounters {
  display: inline-block;
}
.rdtCounters > div {
  float: left;
}
.rdtCounter {
  height: 100px;
}
.rdtCounter {
  width: 40px;
}
.rdtCounterSeparator {
  line-height: 100px;
}
.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}
.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}
.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}
.DisableOverlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 9800;
  background-color: rgba(0, 0, 0, 0.05);
}
.DisableOverlay .DisableOverlayWaitIcon {
  margin: 0 0 20px 0;
  width: 56px;
  height: 56px;
}
.DisableOverlay .DisableOverlayText {
  position: relative;
  border-width: 3px 0 3px 0;
  border-style: solid;
  -webkit-border-image: -webkit-linear-gradient(left, rgba(255, 0, 0, 0) 0%, #047a7a 25%, #047a7a 75%, rgba(255, 0, 0, 0) 100%) 3 3;
  -moz-border-image: -moz-linear-gradient(left, rgba(255, 0, 0, 0) 0%, #047a7a 25%, #047a7a 75%, rgba(255, 0, 0, 0) 100%) 3 3;
  border-image: linear-gradient(to right, rgba(255, 0, 0, 0) 0%, #047a7a 25%, #047a7a 75%, rgba(255, 0, 0, 0) 100%) 3 3;
  background: #3ebca9;
  /* Old browsers */
  background: -moz-linear-gradient(left, rgba(255, 0, 0, 0) 0%, #3ebca9 25%, #3ebca9 75%, rgba(255, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 0, 0, 0) 0%, #3ebca9 25%, #3ebca9 75%, rgba(255, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(255, 0, 0, 0) 0%, #3ebca9 25%, #3ebca9 75%, rgba(255, 0, 0, 0) 100%);
  padding: 20px;
  text-align: center;
  width: 90%;
  color: #fff;
  font-size: 16px;
  text-shadow: 1px 1px #000;
}
.FeedbackModal {
  background-color: white;
  border-radius: 4px;
}
.FeedbackModal .RatingField {
  margin-bottom: 1rem;
  text-align: center;
}
.FeedbackModal .FeedbackInputField {
  background-color: #e6e6e6;
  flex: auto;
  color: black;
  padding: 0.5rem;
  min-height: 6rem;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.FeedbackModal .FeedbackInputField:not(:focus):empty:before {
  content: attr(placeholder);
  display: block;
  color: #9e9e9e;
  cursor: text;
  pointer-events: none;
}
.FeedbackModal .SendButton {
  cursor: pointer;
  border-radius: 4px;
  float: right;
}
.ForgotPassword .ForgotPasswordContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ForgotPassword .ForgotPasswordContent .ForgotPasswordPromptInput {
  margin-top: 1rem;
  width: 100%;
}
.ForgotPassword .ForgotPasswordContent .ForgotPasswordButtons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}
.ForgotPassword .ForgotPasswordContent .ForgotPasswordButtons .SendForgotPasswordButton {
  min-width: 200px;
}
.ForgotPassword .PolliForgotPasswordContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ForgotPassword .PolliForgotPasswordContent .PolliForgotPasswordPromptText {
  font-size: 90%;
}
.FunnelSVG .svg-funnel-js {
  display: inline-block;
  position: relative;
}
.FunnelSVG .svg-funnel-js svg {
  display: block;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.FunnelSVG .svg-funnel-js.svg-funnel-js--vertical .svg-funnel-js__labels {
  flex-direction: column;
}
.FunnelSVG body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.FunnelSVG .svg-funnel-js {
  font-family: "Open Sans", sans-serif;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__container {
  width: 100%;
  height: 100%;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels {
  width: 100%;
  box-sizing: border-box;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label {
  flex: 1 1 0;
  position: relative;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__value {
  font-size: 24px;
  color: #fff;
  line-height: 18px;
  margin-bottom: 6px;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__title {
  font-size: 12px;
  font-weight: bold;
  color: #21ffa2;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__percentage {
  font-size: 16px;
  font-weight: bold;
  color: #9896dc;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__segment-percentages {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  padding: 8px 24px;
  box-sizing: border-box;
  background-color: rgba(8, 7, 48, 0.8);
  margin-top: 24px;
  opacity: 0;
  transition: opacity 0.1s ease;
  cursor: default;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__segment-percentages ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__segment-percentages ul li {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  margin: 18px 0;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__segment-percentages ul li .percentage__list-label {
  font-weight: bold;
  color: #05df9d;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label:hover .label__segment-percentages {
  opacity: 1;
}
.FunnelSVG .svg-funnel-js:not(.svg-funnel-js--vertical) {
  padding-top: 64px;
  padding-bottom: 16px;
}
.FunnelSVG .svg-funnel-js:not(.svg-funnel-js--vertical) .svg-funnel-js__label {
  padding-left: 24px;
}
.FunnelSVG .svg-funnel-js:not(.svg-funnel-js--vertical) .svg-funnel-js__label:not(:first-child) {
  border-left: 1px solid #9896dc;
}
.FunnelSVG .svg-funnel-js.svg-funnel-js--vertical {
  padding-left: 120px;
  padding-right: 16px;
}
.FunnelSVG .svg-funnel-js.svg-funnel-js--vertical .svg-funnel-js__label {
  padding-top: 24px;
}
.FunnelSVG .svg-funnel-js.svg-funnel-js--vertical .svg-funnel-js__label:not(:first-child) {
  border-top: 1px solid #9896dc;
}
.FunnelSVG .svg-funnel-js.svg-funnel-js--vertical .svg-funnel-js__label .label__segment-percentages {
  margin-top: 0;
  margin-left: 106px;
  width: calc(100% - 106px);
}
.FunnelSVG .svg-funnel-js.svg-funnel-js--vertical .svg-funnel-js__label .label__segment-percentages .segment-percentage__list {
  display: flex;
  justify-content: space-around;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__subLabels {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: absolute;
  width: 100%;
  left: 0;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__subLabels .svg-funnel-js__subLabel {
  display: flex;
  font-size: 12px;
  color: #fff;
  line-height: 16px;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__subLabels .svg-funnel-js__subLabel:not(:first-child) {
  margin-left: 16px;
}
.FunnelSVG .svg-funnel-js .svg-funnel-js__subLabels .svg-funnel-js__subLabel .svg-funnel-js__subLabel--color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 2px 8px 2px 0;
}
.HorizontalCard {
  display: flex;
  justify-content: center;
  align-items: center;
}
.HorizontalCard .MuiCardContent-root {
  padding: 0;
}
.HorizontalCard .MuiCardContent-root:last-child {
  padding-bottom: 0px;
}
.HorizontalCard .MuiCardActionArea-root {
  border-radius: 24px;
}
.HorizontalCard .MuiCardActions-root {
  padding: 0;
}
.HorizontalCard.MuiCard-root {
  overflow: visible;
  border-radius: 24px;
}
.HorizontalCard .HorizontalCardContent {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: center;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon {
  width: 226px;
  height: 115px;
  position: relative;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon .HorizontalCardIconImage {
  width: 100%;
  position: absolute;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="creative"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-1A"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-1B"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-2"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-2B"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-3"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-3B"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-4"] .HorizontalCardIconImage {
  top: -25px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardIcon[data-course-id="cs-4B"] .HorizontalCardIconImage {
  top: -26px;
  left: -3px;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo {
  text-align: left;
  padding: 10px;
  position: relative;
}
@media (min-width: 1300px) {
  .HorizontalCard .HorizontalCardContent .HorizontalCardInfo {
    padding: 20px;
  }
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardHeader {
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardHeader {
    font-size: 16px;
  }
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardHeader .HorizontalCardTitle {
  color: black;
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardHeader .HorizontalCardSubtitle {
  font-weight: normal;
  color: #666;
  font-size: 13px;
  margin-left: 4px;
}
@media (min-width: 1200px) {
  .HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardHeader .HorizontalCardSubtitle {
    font-size: 15px;
  }
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardHeader .HorizontalCardSubtitle::before {
  content: '– ';
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardExtraInfo {
  color: gray;
  font-size: 12px;
  margin-top: 4px;
  font-weight: normal;
}
@media (min-width: 1200px) {
  .HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardExtraInfo {
    font-size: 14px;
  }
}
.HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardDescription {
  color: black;
  text-overflow: ellipsis;
  font-weight: normal;
  font-size: 12px;
  margin-top: 4px;
}
@media (min-width: 1200px) {
  .HorizontalCard .HorizontalCardContent .HorizontalCardInfo .HorizontalCardDescription {
    font-size: 14px;
  }
}
.HorizontalCard .HorizontalCardActions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 8px;
}
@media (min-width: 1024px) {
  .HorizontalCard .HorizontalCardActions {
    padding: 0px 10px;
  }
}
@media (min-width: 1300px) {
  .HorizontalCard .HorizontalCardActions {
    padding: 0px 20px;
  }
}
.HorizontalCard .HorizontalCardActions .HorizontalCardButtons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.HorizontalCard .HorizontalCardActions .HorizontalCardButtons .HorizontalCardButton {
  margin: 0px 8px;
}
@media (min-width: 1024px) {
  .HorizontalCard .HorizontalCardActions .HorizontalCardButtons .HorizontalCardButton {
    margin: 0px 10px;
  }
}
@media (min-width: 1300px) {
  .HorizontalCard .HorizontalCardActions .HorizontalCardButtons .HorizontalCardButton {
    margin: 0px 20px;
  }
}
.HorizontalCard .HorizontalCardActions .HorizontalCardProgressBar {
  width: 100%;
  margin-left: 0px;
  padding: 0px 8px;
}
@media (min-width: 1024px) {
  .HorizontalCard .HorizontalCardActions .HorizontalCardProgressBar {
    padding: 0px 10px;
  }
}
@media (min-width: 1300px) {
  .HorizontalCard .HorizontalCardActions .HorizontalCardProgressBar {
    padding: 0px 20px;
  }
}
.HorizontalCard .HorizontalCardActions .HorizontalCardButtons + .HorizontalCardProgressBar {
  margin-top: 0.5rem;
}
.IconText {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: 100%;
  /*padding-left: 4px;*/
}
.IconText .picContainer {
  margin-right: 5px;
}
.IconText .picContainer .pic {
  display: flex;
  width: 24px;
  height: 24px;
  border-radius: 2px;
}
.IconTextArray {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 1px;
}
.IconTextArray div {
  padding-top: 1px;
  padding-bottom: 1px;
}
.IconTextArray :first-child {
  padding-top: 0;
}
.IconTextArray :last-child {
  padding-bottom: 0;
}
.MuiCard-root.ActiveInfoCard {
  background-color: #d6d6d6;
  border: 1px solid #969696;
  box-shadow: unset;
}
.InfoCard {
  display: flex;
  justify-content: flex-start;
}
.InfoCard .InfoCardIcon {
  margin-right: 0.5rem;
  font-size: 32px;
}
@media screen and (min-width: 1281px) {
  .InfoCard .InfoCardIcon {
    margin-right: 1rem;
  }
}
.InfoCard .InfoCardContent {
  flex: auto;
  text-overflow: ellipsis;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.InfoCard .InfoCardContent .InfoCardTitle {
  font-weight: bold;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}
.InfoCard .InfoCardContent .InfoCardExtraTitleInfo {
  color: #9e9e9e;
  margin-left: 4px;
  font-weight: 300;
  font-size: 90%;
}
.InfoCard .InfoCardContent .InfoCardExtraTitleInfo::before {
  content: '– ';
}
.InfoCard .InfoCardContent .InfoCardTitle + .InfoCardSubtitle {
  margin-top: 0.3rem;
}
.InfoCard .InfoCardContent .InfoCardSubtitle {
  font-size: 14px;
  font-weight: 300;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}
.InfoCard .InfoCardContent .InfoCardExtraSubtitleInfo {
  color: #9e9e9e;
  margin-left: 4px;
}
.InfoCard .InfoCardContent .InfoCardExtraSubtitleInfo::before {
  content: '– ';
}
.InfoCard .InfoCardContent .InfoCardTitle + .InfoCardDescription,
.InfoCard .InfoCardContent .InfoCardSubtitle + .InfoCardDescription {
  margin-top: 0.5rem;
}
.InfoCard .InfoCardContent .InfoCardDescription {
  font-size: 15px;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
.InfoCard .InfoCardExtraContent {
  display: flex;
  align-items: center;
}
.InfoCard .InfoCardExtraContent .InfoCardExtraItem + .InfoCardExtraItem {
  margin-left: 1rem;
}
.InfoCard .InfoCardContent + .InfoCardExtraContent {
  margin-left: 1rem;
}
.MoreInformationIndicator {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.MoreInformationIndicator .infoTooltip {
  color: #550;
  position: relative;
  display: flex;
  align-items: center;
}
.MoreInformationIndicator .infoTooltip:hover {
  color: #880;
}
.MoreInformationIndicator .requiredFieldIndicator {
  color: #c30;
  font-size: 0.42em;
  position: relative;
  top: -0.15em;
  display: flex;
  align-items: center;
}
.MoreInformationIndicator .requiredFieldIndicator:hover {
  color: #f63;
}
.MoreInformationIndicator .readOnlyFieldIndicator {
  color: #bbb;
  font-size: 0.8em;
  position: relative;
  display: flex;
  align-items: center;
}
.MoreInformationIndicator .readOnlyFieldIndicator:hover {
  color: #aa0;
}
.MoreInformationIndicator .child {
  flex: 0 1 auto;
  min-width: 1px;
  max-width: 100%;
}
.MoreInformationIndicator .icon {
  flex: 0 1 auto;
  padding-left: 1px;
  padding-right: 1px;
  margin-left: 2px;
}
.requiredFieldIndicatorAddStudents {
  color: #c30;
  font-size: 0.42em;
  position: relative;
  top: -0.85em;
  left: 0.35em;
}
.MobileVersion {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
}
@media (max-height: 414px) {
  .MobileVersion {
    min-height: 600px;
  }
}
@media (max-height: 414px) and (min-width: 640px) {
  .MobileVersion {
    min-height: 700px;
  }
}
@media (max-height: 414px) and (min-width: 800px) {
  .MobileVersion {
    min-height: 800px;
  }
}
.MobileVersion .verticalLine {
  width: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #e77421;
}
@media (min-width: 375px) {
  .MobileVersion .verticalLine {
    width: 12px;
  }
}
.MobileVersion .wrapper {
  background-color: white;
  z-index: 1;
}
.MobileVersion .wrapper .cornerRounder {
  background-color: #e77421;
  border-radius: 50%;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  margin-top: -4px;
}
@media (min-width: 375px) {
  .MobileVersion .wrapper .cornerRounder {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}
.MobileVersion .wrapper .title {
  color: #e77523;
  font-size: 90%;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin: 15px 35px 0 35px;
}
@media (min-width: 360px) {
  .MobileVersion .wrapper .title {
    font-size: 120%;
    margin-top: 25px;
  }
}
@media (min-width: 400px) {
  .MobileVersion .wrapper .title {
    font-size: 140%;
  }
}
.MobileVersion .wrapper .logoWrapper {
  margin: 15px;
  text-align: center;
}
.MobileVersion .wrapper .logoWrapper .companyLogo {
  max-width: 50px;
}
.MobileVersion .wrapper .computerWrapper {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}
@media (min-width: 360px) {
  .MobileVersion .wrapper .computerWrapper {
    padding-bottom: 30px;
  }
}
@media (min-width: 375px) {
  .MobileVersion .wrapper .computerWrapper {
    padding-bottom: 35px;
  }
}
@media (min-width: 400px) {
  .MobileVersion .wrapper .computerWrapper {
    padding-bottom: 30px;
  }
}
.MobileVersion .wrapper .computerWrapper .computerImage {
  max-width: 50%;
  position: relative;
  z-index: 3;
}
@media (min-width: 360px) {
  .MobileVersion .wrapper .computerWrapper .computerImage {
    max-width: 65%;
  }
}
@media (min-width: 375px) {
  .MobileVersion .wrapper .computerWrapper .computerImage {
    max-width: 75%;
  }
}
@media (min-width: 400px) {
  .MobileVersion .wrapper .computerWrapper .computerImage {
    max-width: 70%;
  }
}
.MobileVersion .wrapper .computerWrapper .fadedWrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid #f5f5f5;
  border-top: 1px solid #efefef;
  box-shadow: 0 4px 5px 0 rgba(156, 156, 156, 0.2);
}
.MobileVersion .wrapper .computerWrapper .fadedWrapper .faded {
  height: 115px;
  width: 80%;
  margin: 0 auto;
  background: #c3dedc;
  -webkit-box-shadow: inset 0px -52px 36px 32px #ffffff;
  -moz-box-shadow: inset 0px -52px 36px 32px #ffffff;
  box-shadow: inset 0px -52px 36px 32px #ffffff;
}
.Pager {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 17.8px;
  background-color: #107474;
  padding: 1.65px 5px;
}
.Pager .btn {
  min-width: 25px;
  border-radius: unset;
  background-color: transparent;
}
.Pager .Select {
  margin: 0 5px;
  background-color: #FFF;
  border-radius: 17.8px;
}
.Pager .Select .Select-control {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  font-size: 12px;
  height: 22px;
  min-height: 22px;
  z-index: 4;
  border-radius: 17.8px;
}
.Pager .Select .Select-menu-outer {
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #FFF;
  margin-top: -11px;
  padding-top: 13px;
  padding-bottom: 2px;
  overflow-y: hidden;
  font-size: 12px;
  text-align: center;
  z-index: 3;
}
.Pager .Select .Select-value {
  line-height: 22px;
  padding-left: 18.52px;
  padding-right: 10.52px;
}
.Pager .has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Pager .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Panel {
  display: inline-block;
  width: 100%;
}
.PanelContent {
  padding: 20px 10px;
  color: #000;
  border-radius: 21.19px;
}
.Panel .border {
  /*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);*/
}
.Panel .border-bottom {
  border-bottom-left-radius: 16.5px;
  border-bottom-right-radius: 16.5px;
}
.Panel .border-bottom-left {
  border-bottom-left-radius: 16.5px;
}
.Panel .border-bottom-right {
  border-bottom-right-radius: 16.5px;
}
.Panel .border-top {
  border-top-left-radius: 16.5px;
  border-top-right-radius: 16.5px;
}
.Panel .border-top-left {
  border-top-left-radius: 16.5px;
}
.Panel .border-top-right {
  border-top-right-radius: 16.5px;
}
.Panel .borderBottom {
  border-bottom: 1px solid #ddddee;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.Panel .darkBorder {
  border: 1px solid #a39591;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.Panel .darkBorderBottom {
  border-bottom: 1px solid #a39591;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.Panel .borderNoShadow {
  border: 1px solid #ddddee;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.Panel .top {
  padding: 4px 3px;
  position: relative;
  text-align: left;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.Panel .middle-big-padding {
  padding: 60px 25px;
}
.Panel .middle-medium-padding {
  padding: 25px;
}
.Panel .RoundedCorners {
  border-radius: 5px;
}
.Panel .teal {
  background-color: #499EA6;
}
.Panel .white {
  background-color: #fff;
  padding: 15px;
}
.Panel .green {
  background-color: #39c983;
}
.Panel .red {
  background-color: #ee4130;
}
.Panel .orange {
  background-color: #e18249;
}
.Panel .purple {
  background-color: #A877B5;
}
.Panel .lightGrey {
  background-color: #f5f5f5;
}
.Panel .grey {
  background-color: #eee;
}
.Panel .darkGrey {
  background-color: #777;
}
.Panel .textBlack {
  color: #000;
}
.Panel .textWhite {
  color: #fff;
}
.Panel .textGrey {
  color: #676765;
}
.Panel .textLightGrey {
  color: #777;
}
.Panel .transparent {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.Panel .divider {
  background-color: #f5f5f5;
  padding: 3px 5px;
}
.Panel .minimizeButton {
  text-align: left;
  padding: 0 5px;
  width: 100%;
  display: table-cell;
}
.Panel .minimizeIcon {
  margin-right: 5px;
}
.Panel .actions {
  white-space: nowrap;
  text-align: right;
  display: table-cell;
  width: 1px;
  padding-left: 5px;
}
.Panel .actions .btn {
  padding: 2px 7px;
  margin-left: 2px;
  margin-right: 2px;
}
/*
.Panel{
  .form-control {
    padding: 3px 0 3px;
    height: 26px;
    margin-bottom: 6px;

    &.DateTime{
      height: 34px;
    }
  }
  textarea.form-control{
    height: auto;
    padding: 15px;
  }
}
*/
.PDFContent .iframe-pdf {
  width: 566px;
  height: 400px;
}
.PDFContent .iframe-pdf-loading {
  display: none;
}
.PDFViewerPageWait {
  width: 566px;
  height: 400px;
}
.PieChart.Error .PieChartContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: dashed 1px #666;
  background-color: #eee;
}
.ProgressSliderBar {
  width: 100%;
  height: 22px;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}
.ProgressSliderBar .ContainerBar {
  width: 100%;
  height: 16px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 5px;
  border: 1px solid #888;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.ProgressSliderBar .JumpBar {
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.ProgressSliderBar .primary {
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.ProgressSliderBar .primary-default {
  color: 1px solid transparent;
  background-color: #09A7A7;
}
.ProgressSliderBar .primary-primary {
  color: #ffffff;
  background-color: #E87625;
}
.ProgressSliderBar .primary-success {
  color: #ffffff;
  background-color: #47A85E;
}
.ProgressSliderBar .primary-info {
  color: #ffffff;
  background-color: #87CCC7;
}
.ProgressSliderBar .primary-warning {
  color: #ffffff;
  background-color: #F39C12;
}
.ProgressSliderBar .primary-danger {
  color: #ffffff;
  background-color: #C90303;
}
.ProgressSliderBar .primary-grey {
  color: #666;
  background-color: #eee;
}
.ProgressSliderBar .secondary {
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.ProgressSliderBar .secondary-default {
  color: 1px solid transparent;
  background-color: #09A7A7;
  border-color: #ccc;
}
.ProgressSliderBar .secondary-primary {
  color: #ffffff;
  background-color: #f4be98;
  border-color: transparent;
}
.ProgressSliderBar .secondary-info {
  color: #ffffff;
  background-color: #e0f2f1;
  border-color: transparent;
}
.ProgressSliderBar .secondary-success {
  color: #ffffff;
  background-color: #9ad4a8;
  border-color: transparent;
}
.ProgressSliderBar .secondary-warning {
  color: #ffffff;
  background-color: #f9cf8b;
  border-color: transparent;
}
.ProgressSliderBar .secondary-danger {
  color: #ffffff;
  background-color: #fc4f4f;
  border-color: transparent;
}
.ProgressSliderBar .secondary-grey {
  color: #666;
  background-color: #ffffff;
  border-color: #e4e4e4;
}
.ProgressSliderBar .tertiary {
  height: 16px;
  position: absolute;
  background-color: #e1e1e1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.ProgressSliderBar .handle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 10px;
  height: 25px;
  border-radius: 20px;
  border: 2px solid;
  cursor: ew-resize;
}
.ProgressSliderBar .handle-default {
  color: 1px solid transparent;
  background-color: #09A7A7;
  border-color: #ccc;
}
.ProgressSliderBar .handle-primary {
  color: #ffffff;
  background-color: #ffffff;
  border-color: transparent;
}
.ProgressSliderBar .handle-info {
  color: #ffffff;
  background-color: #ffffff;
  border-color: transparent;
}
.ProgressSliderBar .handle-success {
  color: #ffffff;
  background-color: #f4faf5;
  border-color: transparent;
}
.ProgressSliderBar .handle-warning {
  color: #ffffff;
  background-color: #ffffff;
  border-color: transparent;
}
.ProgressSliderBar .handle-danger {
  color: #ffffff;
  background-color: #fecdcd;
  border-color: transparent;
}
.ProgressSliderBar .handle-grey {
  color: #666;
  background-color: #ffffff;
  border-color: #888;
}
.RatingPicker .RatingIcon {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0.5rem;
  opacity: 0.3;
  user-select: none;
}
.RatingPicker .RatingIcon:hover {
  opacity: 1;
}
.RatingPicker .RatingIcon.selected {
  opacity: 1;
}
.footer .RatingPicker .RatingIcon {
  opacity: 1;
}
.RatingContainer .RatingPicker .RatingIcon {
  font-size: 20px;
  line-height: 20px;
}
.FeedbackModal .RatingPicker {
  margin: 2rem;
}
.FeedbackModal .RatingPicker .RatingIcon {
  font-size: 32px;
}
.ReportCard .Wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.ReportCard .Wrapper .Value {
  font-size: 23px;
  font-weight: bold;
  font-family: Roboto, serif;
  text-align: left;
}
@media (min-width: 1280px) {
  .ReportCard .Wrapper .Value {
    font-size: 35px;
    font-weight: normal;
  }
}
@media (min-width: 1281px) {
  .ReportCard .Wrapper .Value {
    font-size: 41px;
    font-weight: normal;
  }
}
.ReportCard .Wrapper .BottomTitle {
  font-size: 17px;
  font-family: Roboto, serif;
  text-align: left;
  margin-top: 15px;
  font-weight: 300;
}
@media (min-width: 1281px) {
  .ReportCard .Wrapper .BottomTitle {
    font-size: 18px;
  }
}
.ReportCard .Icon {
  position: relative;
}
.ReportCard .Icon img {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
}
.ReportCard.RequiredExercises .Icon img:nth-child(2) {
  width: 31px;
  right: 7px;
  top: 7px;
}
.ReportCard.Challenges .Icon img {
  width: 53px;
  top: -7px;
  right: -7px;
}
.ReportCard.Attempts .Icon img:nth-child(2) {
  width: 27px;
  right: 9px;
  top: 10px;
}
.ReportCard.TimeSpent .Icon img:nth-child(2) {
  top: 1px;
}
.ReportCard.Completion .Icon img:nth-child(2) {
  width: 29px;
  right: 4px;
  top: 8px;
}
.ReportCard.Children .Icon img {
  width: 34px;
  right: 6px;
}
.ReportCard.Districts .Icon img {
  top: 5px;
}
.ReportCard.Individuals .Icon img {
  width: 36px;
  right: 5px;
}
.ReportCard.Resellers .Icon img {
  width: 41px;
  right: 2px;
}
.ReportCard.Schools .Icon img {
  width: 36px;
  top: 2px;
  right: 5px;
}
.ReportCard.Students .Icon img {
  width: 36px;
  right: 5px;
}
.ReportCard.TotalUsers .Icon img {
  top: 2px;
}
.ReportCard.Money .Icon img {
  width: 22px;
  right: 12px;
}
.ReportCard.Monthly .Icon img {
  width: 34px;
  right: 6px;
}
.ReportCard.PayPal .Icon img {
  width: 41px;
  right: 2px;
}
.ReportCard.Stripe .Icon img {
  width: 41px;
  right: 2px;
}
.ReportCard.Yearly .Icon img {
  width: 34px;
  right: 6px;
}
.ReportTable {
  width: 100%;
}
.ReportTable.Empty {
  width: 100%;
  max-width: 800px;
  line-height: 1.5;
  border: 1px solid #ccc;
  color: #666;
  text-align: center;
}
.ReportTable .ReportTableContent {
  width: 100%;
  max-width: 800px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #ccc;
  color: #666;
}
.ReportTable .ReportTableContent thead {
  border-bottom: 2px solid #999;
}
.ReportTable .ReportTableContent th {
  text-align: left;
  border: none;
  padding: 3px;
}
.ReportTable .ReportTableContent th + th {
  border-left: 1px solid #ccc;
}
.ReportTable .ReportTableContent tr {
  border-bottom: 1px solid #ccc;
}
.ReportTable .ReportTableContent td {
  text-align: left;
  padding: 3px;
}
.ReportTable .ReportTableContent td .PercentProgressBar {
  background-color: yellow;
}
.ReportTable .ReportTableContent td + td {
  border-left: 1px solid #ccc;
}
.ResponsiveModal .CloseButton {
  position: absolute;
  right: 1rem;
  top: 0.6rem;
}
.ResponsiveModal .MuiDialogTitle-root .MuiTypography-root {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  text-transform: uppercase;
  color: #777777;
}
.ResponsiveModal .MuiDialogTitle-root .TitleIcon {
  margin-right: 0.7rem;
  color: #777777;
}
.ResponsiveModal .ResponsiveModalFooter.FullFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.ResponsiveModal .ResponsiveModalFooter .ResponsiveModalButtons {
  display: flex;
  flex-direction: row;
}
.ResponsiveModal .ResponsiveModalFooter .ResponsiveModalButtons a {
  color: white;
}
.ResponsiveModal .ResponsiveModalFooter .ResponsiveModalButtons .ResponsiveModalButton + .ResponsiveModalButton {
  margin-left: 1rem;
}
.SelectAccountType {
  width: 850px;
  margin-top: 2rem !important;
}
.SelectAccountType .SelectAccountTypeContent {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .SecondaryAccountTypeCards {
  flex: auto;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .SecondaryAccountTypeCards .MuiCardActionArea-root {
  height: 100%;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard {
  flex: auto;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard .AccountTypeCardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard .AccountTypeCardContent .AccountTypeCardTitle {
  font-weight: bold;
  font-size: 16px;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard .AccountTypeCardContent .AccountTypeCardSubtitle {
  margin-top: 1rem;
  font-size: 13.5px;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard .AccountTypeCardContent .AccountTypeCardDescription {
  margin-top: 1rem;
  font-size: 13.5px;
  line-height: 1.5;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard .AccountTypeCardContent .AccountTypeCardIcon {
  margin-top: 1rem;
  width: 46%;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard .AccountTypeCardContent .AccountTypeCardIcon > img {
  width: 100%;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard.MainAccountTypeCard .AccountTypeCardTitle {
  font-size: 24px;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard.MainAccountTypeCard .AccountTypeCardSubtitle {
  font-size: 15.5px;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard.MainAccountTypeCard .AccountTypeCardDescription {
  text-align: center;
  font-size: 14.5px;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard.MainAccountTypeCard.MuiPaper-outlined {
  border: 1px solid #09a7a7;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .SelectAccountTypeDividerLabel {
  font-weight: 300;
  font-size: 13.6px;
  text-align: center;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .SelectAccountTypeDividerLabel .SelectAccountTypeDividerText + .SelectAccountTypeDividerText {
  margin-top: 0.3rem;
}
.SelectAccountType .SelectAccountTypeContent .SelectAccountTypeColumn .AccountTypeCard + .AccountTypeCard {
  margin-top: 1rem;
}
.SelectAccountType .SelectAccountTypeColumn + .SelectAccountTypeColumn {
  margin-left: 2rem;
}
.SelectClassCode {
  width: 600px;
  margin-top: 2rem !important;
}
@media (max-width: 767.98px) {
  .SelectClassCode {
    width: auto;
  }
}
.SelectClassCode .SelectClassCodeContent {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard {
  flex: auto;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard.MuiPaper-outlined {
  border: 1px solid #09a7a7;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard .ClassCodeCardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 240px;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard .ClassCodeCardContent .ClassCodeCardTitle {
  font-weight: bold;
  font-size: 24px;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard .ClassCodeCardContent .ClassCodeCardSubtitle {
  margin-top: 1rem;
  font-size: 15.5px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .SelectClassCode .SelectClassCodeContent .ClassCodeCard .ClassCodeCardContent .ClassCodeCardSubtitle {
    font-size: 14.5px;
  }
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard .ClassCodeCardContent .ClassCodeCardIcon {
  margin-top: 1rem;
  width: 75%;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard .ClassCodeCardContent .ClassCodeCardIcon img {
  width: 100%;
}
.SelectClassCode .SelectClassCodeContent .ClassCodeCard + .ClassCodeCard {
  margin-left: 2rem;
}
.SelectUserAge {
  width: 330px;
}
.SelectUserAge .SelectUserAgeContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.SelectUserAge .SelectUserAgeContent .SelectUserAgeInput {
  width: 100%;
}
.SelectUserAge .SelectUserAgeContent .SelectUserAgeSubmitButton {
  margin-top: 2rem;
  min-width: 200px;
}
.SignUpForm {
  width: 560px;
}
@media (max-width: 767.98px) {
  .SignUpForm {
    width: auto;
  }
}
.SignUpForm .SignUpContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.SignUpForm .SignUpContent .SignUpFormInput {
  width: 100%;
}
.SignUpForm .SignUpContent .SignUpFormInput + .SignUpFormInput {
  margin-top: 1rem;
}
.SignUpForm .SignUpContent .BaseTextField {
  width: 100%;
}
.SignUpForm .SignUpContent .SignUpButton {
  margin-top: 1rem;
  width: 200px;
}
@media (max-width: 767.98px) {
  .SignUpForm .SignUpContent .SignUpButton {
    margin-top: 1.5rem;
  }
}
.SignUpForm .SignUpContent .SignUpCheckBoxes {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  align-self: flex-start;
  width: 100%;
}
.SignUpForm .SignUpContent .SignUpCheckBoxes .MuiFormControlLabel-root {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}
.SignUpForm .SignUpContent .SignUpCheckBoxes .SignUpCheckBox {
  position: relative;
  left: -7px;
}
.SignUpForm .SignUpContent .SignUpCheckBoxes .SignUpCheckBox .checkBoxText {
  font-size: 80%;
  position: relative;
  top: 1px;
  margin-left: 7px;
}
@media (max-width: 767.98px) {
  .SignUpForm .SignUpContent .SignUpCheckBoxes .SignUpCheckBox .checkBoxText {
    font-size: 12.5px;
  }
}
.SignUpForm .SignUpContent .SignUpCheckBoxes .SignUpCheckBox .resourceLinkText {
  text-decoration: underline;
}
.StartEndDatePicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.StartEndDatePicker .DatePicker {
  margin: 1rem;
}
.headerContent + .SupportWindow {
  background-color: white;
  border: 1px #636363 solid;
  position: fixed;
  width: 400px;
  height: 470px;
  right: 200px;
  top: 63px;
  z-index: 1099;
  /* from plugin:
    * ```css
    * .my-node-enter {
    *   opacity: 0;
    * }
    * .my-node-enter-active {
    *   opacity: 1;
    *   transition: opacity 200ms;
    * }
    * .my-node-exit {
    *   opacity: 1;
    * }
    * .my-node-exit-active {
    *   opacity: 0;
    *   transition: opacity 200ms;
    * }
    * ```
    */
}
@media (min-height: 920px) {
  .headerContent + .SupportWindow {
    height: 600px;
  }
}
.headerContent + .SupportWindow.SupportModule-enter {
  background-color: white;
  opacity: 0;
  transform: translate3d(0, -533px, 0);
}
@media (min-height: 920px) {
  .headerContent + .SupportWindow.SupportModule-enter {
    transform: translate3d(0, -663px, 0);
  }
}
.headerContent + .SupportWindow.SupportModule-enter-active {
  background-color: white;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
}
.headerContent + .SupportWindow.SupportModule-exit {
  background-color: white;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.headerContent + .SupportWindow.SupportModule-exit-active {
  background-color: white;
  opacity: 0;
  transform: translate3d(0, -533px, 0);
  transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
}
@media (min-height: 920px) {
  .headerContent + .SupportWindow.SupportModule-exit-active {
    transform: translate3d(0, -663px, 0);
  }
}
.SupportWindow {
  display: flex;
  flex-direction: column;
}
.SupportWindow .ButtonBar {
  display: flex;
  flex-direction: row;
}
.SupportWindow .ButtonBar .BarButton {
  background-color: #3e98c7;
  text-align: center;
  padding: 1rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  flex: auto;
  border-right: 1px #242424 solid;
  border-bottom: 1px #242424 solid;
}
.SupportWindow .ButtonBar .BarButton.Disabled {
  background-color: #2f7ba3;
}
.SupportWindow .ButtonBar .BarButton:not(.Disabled):hover {
  background-color: #66add2;
}
.SupportWindow .ButtonBar .BarButton:last-child {
  border-right: unset;
}
.SupportWindow .ButtonBar .BarButton .InlineDot {
  position: relative;
  top: -2px;
  left: 15px;
}
.SupportWindow .ButtonBar.BottomButtonBar .BarButton {
  background-color: #f0f0f0;
  padding: 0.65rem;
  color: black;
  font-size: 85%;
}
.SupportWindow .ButtonBar.BottomButtonBar .BarButton:not(.Disabled):hover {
  background-color: #d6d6d6;
}
.SupportWindow .History {
  background-color: white;
  overflow-y: auto;
  flex: auto;
  padding: 0.5rem 0;
}
.SupportWindow .History .Message .Name {
  min-height: 1rem;
  font-weight: 300;
  font-size: 13px;
  margin-left: 1.1rem;
  color: #9e9e9e;
}
.SupportWindow .History .Message .BubbleWrapper {
  display: flex;
  justify-content: flex-start;
}
.SupportWindow .History .Message .BubbleWrapper .Text {
  display: inline-block;
  color: black;
  background-color: #d6d6d6;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  margin-left: 0.5rem;
  margin-right: 5rem;
  padding: 0.7rem;
  border-radius: 1.6rem;
  min-height: 1rem;
  overflow-wrap: anywhere;
}
.SupportWindow .History .Message .BubbleWrapper .Text .OnlineText {
  display: flex;
}
.SupportWindow .History .Message .BubbleWrapper .Text .OnlineText .InlineDot {
  position: relative;
  top: 5px;
  left: 8px;
  margin-right: 8px;
}
.SupportWindow .History .Message.Own .Name {
  display: none;
}
.SupportWindow .History .Message.Own .BubbleWrapper {
  justify-content: flex-end;
}
.SupportWindow .History .Message.Own .BubbleWrapper .Text {
  color: white;
  background-color: #3e98c7;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  margin-left: 5rem;
  margin-right: 0.5rem;
}
.SupportWindow .History .Message .AnimatedDotDotDot .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 3px;
  background-color: #303131;
  animation: dotAnimation 1.3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.SupportWindow .History .Message .AnimatedDotDotDot .dot:nth-child(2) {
  animation-delay: -1.1s;
}
.SupportWindow .History .Message .AnimatedDotDotDot .dot:nth-child(3) {
  animation-delay: -0.9s;
  margin-right: 0;
}
@keyframes dotAnimation {
  0%,
  60%,
  100% {
    transform: initial;
  }
  30% {
    transform: translateY(-4px);
  }
}
.SupportWindow .History .Message:not(.Own) + .Message:not(.Own) .Name {
  display: none;
}
.SupportWindow .InputRow {
  display: flex;
  flex-direction: row;
}
.SupportWindow .InputRow .InputField {
  border-top: 1px #3e98c7 solid;
  border-bottom: 1px #3e98c7 solid;
  border-left: 1px #3e98c7 solid;
  background-color: white;
  min-height: 24px;
  line-height: 24px;
  flex: auto;
  color: black;
  padding: 0.5rem;
  max-height: 72px;
  overflow-y: auto;
}
.SupportWindow .InputRow .InputField:not(:focus):empty:before {
  content: attr(placeholder);
  display: block;
  color: #9e9e9e;
  cursor: text;
  pointer-events: none;
}
.SupportWindow .InputRow .SendButton {
  background-color: #3e98c7;
  min-width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.SupportWindow .InputRow .SendButton.Disabled {
  background-color: #2f7ba3;
}
.SupportWindow .InputRow .SendButton:not(.Disabled):hover {
  background-color: #66add2;
}
.SupportWindow .InputRow .SendButton .SendButtonContent {
  font-weight: bold;
  color: white;
}
.SupportWindow .InputRow .BlockedThread,
.SupportWindow .InputRow .ClosedThread {
  font-size: 85%;
  border-top: 1px #969696 solid;
  border-bottom: 1px #969696 solid;
  border-left: 1px #969696 solid;
  background-color: #e3e3e3;
  color: #969696;
  min-height: 24px;
  line-height: 24px;
  flex: auto;
  padding: 0.5rem;
  max-height: 72px;
  overflow-y: auto;
}
.SupportWindow .ThreadList {
  background-color: white;
  overflow-y: auto;
}
.SupportWindow .ThreadList .NoResults {
  text-align: center;
  margin-top: 1rem;
}
.SupportWindow .ThreadList .UserThread {
  margin: 1rem;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon {
  width: 42px;
  height: 42px;
  border-radius: 26px;
  background-color: #09a7a7;
  font-size: 20px;
  color: white;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon svg {
  position: relative;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon svg[data-icon="question"] {
  left: 13px;
  top: 8px;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon svg[data-icon="coins"] {
  left: 10px;
  top: 9px;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon svg[data-icon="comments"] {
  left: 9px;
  top: 8px;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon svg[data-icon="chalkboard"] {
  left: 8px;
  top: 9px;
}
.SupportWindow .ThreadList .UserThread .InfoCard .CategoryIcon .FilledIcon svg[data-icon="window-restore"] {
  left: 11px;
  top: 9px;
}
.SupportWindow .ThreadList .UserThread .InfoCard .InfoCardDescription {
  padding-left: 0.5rem;
  white-space: nowrap;
}
.SupportWindow .SelectCategory {
  background-color: white;
  overflow-y: auto;
}
.SupportWindow .SelectCategory .NoResults {
  text-align: center;
  margin-top: 1rem;
}
.SupportWindow .SelectCategory .Description {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 15px;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper {
  margin: 1rem;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon {
  width: 42px;
  height: 42px;
  border-radius: 26px;
  background-color: #09a7a7;
  font-size: 20px;
  color: white;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon svg {
  position: relative;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon svg[data-icon="question"] {
  left: 13px;
  top: 8px;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon svg[data-icon="coins"] {
  left: 10px;
  top: 9px;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon svg[data-icon="comments"] {
  left: 9px;
  top: 8px;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon svg[data-icon="chalkboard"] {
  left: 8px;
  top: 9px;
}
.SupportWindow .SelectCategory .SelectCategoryWrapper .InfoCard .CategoryIcon .FilledIcon svg[data-icon="window-restore"] {
  left: 11px;
  top: 9px;
}
.SearchBar {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 17.8px;
  background-color: #FFF;
  padding: 0;
  flex: 1 1 auto;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.SearchBar .vertical-separator {
  height: 22px;
  width: 1px;
  background-color: #BABABA;
}
.SearchBar .SearchInput {
  line-height: 1.5;
  position: relative;
  height: 34px;
  z-index: 2;
  flex: 1 1 auto;
  border: 0;
  padding: 5.65px 10px 5.65px 17.8px;
  width: auto;
  border-top-left-radius: 17.8px;
  border-bottom-left-radius: 17.8px;
}
.SearchBar .SearchInputWithAdvancedButton {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.SearchBar .SearchButton {
  position: relative;
  min-width: 40px;
  width: 40px;
  height: 34px;
  z-index: 12;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  outline: none;
  padding: 0 10px 0 4px;
  color: #676765;
}
.SearchBar .SearchButtonWithAdvancedButton {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 5.65px 0;
}
.SearchBar .AdvancedSearchButton {
  position: relative;
  height: 34px;
  z-index: 1;
  flex: 0 0 auto;
  outline: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 5.65px 17.8px 5.65px 10px;
  color: #676765;
}
.SearchBar .searchBarAdvancedButtonIconOn {
  color: #67ee00;
  font-weight: bold;
}
.searchBarAdvancedMenu {
  padding: 10px 10px;
}
.searchBarAdvancedMenu .advancedMenuOptionHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  /*border-bottom: 1px solid #ccc;*/
  margin-bottom: 5px;
  width: 100%;
}
.searchBarAdvancedMenu .advancedMenuOptionHeader .advancedMenuOptionLabel {
  margin-top: 5px;
  display: block;
  flex: 1 1 auto;
}
.searchBarAdvancedMenu .advancedMenuOptionHeader .advancedMenuOptionLabel {
  margin-top: 8px;
  margin-bottom: 2px;
  display: block;
  flex: 1 1 auto;
}
.searchBarAdvancedMenu .advancedMenuOptionHeader .resetToDefaults {
  flex: 0 0 auto;
}
.searchBarAdvancedMenu .advancedMenuOption {
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.searchBarAdvancedMenu .advancedMenuOption:first-child {
  padding-top: 0;
}
.searchBarAdvancedMenu .advancedMenuOption:last-child {
  padding-bottom: 0;
}
.searchBarAdvancedMenu .advancedMenuOptionCheckbox {
  font-size: 0.9em;
  width: 100%;
}
.searchBarAdvancedMenu .advancedMenuOptionCheckbox label {
  margin-bottom: 1px;
  margin-top: 1px;
  padding: 2px;
  min-height: 12px;
}
.searchBarAdvancedMenu .advancedMenuOptionCheckbox label span:first-child {
  width: fit-content;
  min-height: 12px;
}
.searchBarAdvancedMenu .Select {
  min-width: 160px;
}
.searchBarAdvancedMenu .advancedMenuOptionReset {
  /*border-top: 1px solid #aaa;*/
  margin-top: 5px;
  text-align: center;
  width: 100%;
}
.searchBarAdvancedMenu .advancedMenuOptionReset .resetToDefaults {
  margin-top: 5px;
  padding: 6px 12px;
}
.SideBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.SideBar .SideBarPanel {
  z-index: 99;
  position: absolute;
  top: 0;
  bottom: 0;
  border: 0;
  display: flex;
}
.SideBar .SideBarPanel .SideBarPanelContentContainer {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.SideBar .SideBarPanel .SideBarPanelContentContainer .SideBarPanelHeader {
  flex: 0 0 auto;
  width: 100%;
  justify-self: flex-start;
}
.SideBar .SideBarPanel .SideBarPanelContentContainer .SideBarPanelContent {
  flex: 1 1 auto;
  width: 100%;
  justify-self: flex-start;
  overflow-y: auto;
}
.SideBar .SideBarPanel .SideBarPanelContentContainer .SideBarPanelContent ::-webkit-scrollbar {
  position: relative;
  border-radius: 16.5px;
  background-color: #E5E5E5;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.SideBar .SideBarPanel .SideBarPanelContentContainer .SideBarPanelContent ::-webkit-scrollbar-thumb {
  background-color: #777777;
  border-radius: 16.5px;
}
.SideBar .SideBarPanel .SideBarToggleBar {
  flex: 0 0 auto;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #cdcdcd;
  border: 1px solid #696969;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.SideBar .SideBarPanel .SideBarToggleBar .SideBarToggleHandle {
  position: absolute;
  padding: 2px;
  font-size: 6px;
  color: #FFF;
  background-color: #cdcdcd;
  border: 1px solid #696969;
  text-align: center;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.SideBar .SideBarContent {
  flex: 1 1 auto;
  position: absolute;
  overflow-y: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.SideBar .SideBarContent ::-webkit-scrollbar {
  position: relative;
  border-radius: 16.5px;
  background-color: #E5E5E5;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.SideBar .SideBarContent ::-webkit-scrollbar-thumb {
  background-color: #777777;
  border-radius: 16.5px;
}
.SideBar .SideBarPanelRightBorder {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.SideBar .SideBarTransition {
  -webkit-transition: left 0.3s ease-out, right 0.3s ease-out, width 0.3s ease-out;
  -o-transition: left 0.3s ease-out, right 0.3s ease-out, width 0.3s ease-out;
  transition: left 0.3s ease-out, right 0.3s ease-out, width 0.3s ease-out;
  will-change: transform;
}
.SideBar .SideBarOverlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  background-color: #000;
}
@media print {
  .SideBarNoPrint {
    position: relative !important;
    overflow: visible !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
  }
  .SideBarNoPrint .SideBarOverlay {
    display: none !important;
  }
  .SideBarNoPrint .SideBarPanel {
    display: none !important;
  }
  .SideBarNoPrint .SideBarPanelRightBorder {
    display: none !important;
  }
  .SideBarNoPrint .SideBarToggleBar {
    display: none !important;
  }
  .SideBarNoPrint .SideBarContent {
    left: 0 !important;
    bottom: unset !important;
    right: unset !important;
    top: unset !important;
    position: relative !important;
  }
  .SideBarNoPrint .SideBarTransition {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    will-change: unset !important;
  }
}
.SingleLineText {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.TabbedPanel {
  display: flex;
  flex-direction: column;
}
.TabbedPanel .TabBarContainer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1 1 auto;
}
.TabbedPanel .TabBarChildContent {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.TabbedPanel .TabBarChildContent .TabContent {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.TabbedPanel .tabContentWrapper {
  border-radius: 16.5px;
  padding: 25.81px;
  background-color: rgba(0, 0, 0, 0.15);
}
.TabbedPanel .tabContentWrapper.noTopRadiusBorder {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.TabbedPanel .TabBar {
  overflow-y: visible;
  overflow-x: auto;
  width: 100%;
}
@media print {
  .TabbedPanel .TabBarNoPrint {
    display: none !important;
  }
}
.TabbedPanel .buttonsTop {
  flex: 0 0 auto;
}
.TabbedPanel .buttonsTop .TabBar .tabButton {
  flex-grow: 1;
  border-radius: 0;
}
.TabbedPanel .buttonsTop .TabBar .tabButton .btn {
  border-bottom: none;
}
.TabbedPanel .buttonsMiddle .TabBar {
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #aaa;
}
.TabbedPanel .buttonsMiddle .TabBar .tabButton,
.TabbedPanel .buttonsMiddle .StickyBar .tabButton {
  border-radius: 0 0 0 0;
  color: #676765;
}
.TabbedPanel .buttonsMiddle .TabBar .tabButton .btn,
.TabbedPanel .buttonsMiddle .StickyBar .tabButton .btn {
  border-radius: 0 0 0 0;
  border-bottom: none;
  border-top: none;
}
.TabbedPanel .buttonsBottom .TabBar {
  border-top: 1px solid #aaa;
}
.TabbedPanel .buttonsBottom .TabBar .tabButton,
.TabbedPanel .buttonsBottom .StickyBar .tabButton {
  border-radius: 0 0 8px 8px;
}
.TabbedPanel .buttonsBottom .TabBar .tabButton .btn,
.TabbedPanel .buttonsBottom .StickyBar .tabButton .btn {
  border-radius: 0 0 8px 8px;
  border-top: none;
}
.TabbedPanel .TabBar,
.TabbedPanel .StickyBar {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.TabbedPanel .TabBar .tabButton,
.TabbedPanel .StickyBar .tabButton {
  display: flex;
  min-width: 100px;
  max-width: 100%;
  margin: 0 2px;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.09);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: none;
}
.TabbedPanel .TabBar .tabButton.active,
.TabbedPanel .StickyBar .tabButton.active,
.TabbedPanel .TabBar .tabButton:active,
.TabbedPanel .StickyBar .tabButton:active {
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}
.TabbedPanel .TabBar .tabButton.active:hover,
.TabbedPanel .StickyBar .tabButton.active:hover {
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}
.TabbedPanel .TabBar .tabButton:hover,
.TabbedPanel .StickyBar .tabButton:hover {
  background-color: rgba(0, 0, 0, 0.21);
}
.TabbedPanel .TabBar .tabButton.active:focus,
.TabbedPanel .StickyBar .tabButton.active:focus {
  box-shadow: inset 0 8px 8px -8px rgba(255, 255, 255, 0.6);
}
.TabbedPanel .TabBar .tabButton:first-child,
.TabbedPanel .StickyBar .tabButton:first-child {
  margin-left: 0;
  border-radius: 16.5px 0 0 0;
}
.TabbedPanel .TabBar .stickyButton:first-child,
.TabbedPanel .StickyBar .stickyButton:first-child {
  margin-left: 2px;
}
.TabbedPanel .TabBar .tabButton:last-child,
.TabbedPanel .StickyBar .tabButton:last-child {
  margin-right: 0;
  border-radius: 0 16.5px 0 0;
}
.TabbedPanel .TabBar .stickyButton:last-child,
.TabbedPanel .StickyBar .stickyButton:last-child {
  margin-left: 2px;
  margin-right: 0;
}
.TabbedPanel .TabBar .tabButton:only-child,
.TabbedPanel .StickyBar .tabButton:only-child {
  margin: 0;
  border-radius: 16.5px 16.5px 0 0;
}
.TabbedPanel .TabBar .tabButton .btn,
.TabbedPanel .StickyBar .tabButton .btn,
.TabbedPanel .TabBar .stickyButton .btn,
.TabbedPanel .StickyBar .stickyButton .btn {
  min-width: 100%;
  max-width: 100%;
  padding: 4px 10px;
  min-height: 29px;
}
.TabbedPanel .TabBar .fullSize,
.TabbedPanel .StickyBar .fullSize,
.TabbedPanel .TabBar .fullSize .btn,
.TabbedPanel .StickyBar .fullSize .btn {
  flex: 1 1 auto;
}
.TabbedPanel .TabBar .minSize,
.TabbedPanel .StickyBar .minSize,
.TabbedPanel .TabBar .minSize .btn,
.TabbedPanel .StickyBar .minSize .btn {
  flex: 0 1 auto;
  border-bottom: 0;
}
.TabbedSelect .tabs {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  top: 1px;
  height: 20px;
}
.TabbedSelect .tabs .tabButton {
  flex: 0 1 auto;
  display: flex;
  min-width: 1px;
  max-width: 100%;
}
.TabbedSelect .tabs .tabButton {
  max-width: 100%;
  padding: 0 6px;
  border-radius: 5px 5px 0 0;
  margin-left: 1px;
  flex: 0 1 auto;
}
.TabbedSelect .tabs .hasData {
  color: #0A0;
}
.TabbedSelect .tabContent .Select-control {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.TimePosted {
  white-space: nowrap;
  font-size: 85%;
  font-weight: 300;
}
.TimeElapsed {
  white-space: nowrap;
  font-size: 85%;
  font-weight: 300;
}
.TimeRemaining {
  white-space: nowrap;
  font-size: 85%;
  font-weight: 300;
}
.Toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.Toggle .ToggleLabel {
  display: flex;
  align-items: center;
  pointer-events: none;
}
.Toggle .ToggleLabelLeft {
  padding-right: 6px;
}
.Toggle .ToggleLabelRight {
  padding-left: 6px;
}
.Toggle .ToggleSwitch {
  position: relative;
  width: 30px;
  height: 20px;
  border: 1px solid #e6e5e4;
  border-radius: 20px;
  outline: none;
  display: flex;
  align-items: center;
  padding: 1px;
}
.Toggle .ToggleSwitch .circle {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  position: relative;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border: 1px solid #e6e5e4;
  border-radius: 16px;
}
.Toggle .ToggleSwitch:focus {
  border: 1px solid #2EE0F8 !important;
  box-shadow: inset 0 0 4px #2EE0F8, inset 0 0 3px #2EE0F8 !important;
}
.Toggle .ToggleSwitch-on {
  background-color: #54A058;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.Toggle .ToggleSwitch-on .circle {
  left: calc(100% - 16px);
}
.Toggle .ToggleSwitch-off {
  background-color: #3F493F;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.Toggle .ToggleSwitch-off .circle {
  left: 0;
}
.Toggle:hover .circle {
  background-color: #e6e6e6;
}
.Toggle:disabled {
  opacity: 0.45;
  pointer-events: none;
}
.transparent-toast {
  background-color: transparent;
  box-shadow: none;
  outline: none;
}
.achievement-toast {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  width: 425px;
  margin-left: -52.5px;
}
.TotalAccountsCreatedPerTypeTable .TotalAccountsCreatedPerTypeTitle {
  text-align: center;
  font-weight: bold;
}
.TotalAccountsCreatedPerTypeTable .TotalAccountsCreatedPerTypeContent {
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
}
.TutorialPanel .TutorialPanelContent {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
}
.TutorialPanel .TutorialPanelContent .TutorialPanelIcon {
  width: 150px;
}
.TutorialPanel .TutorialPanelContent .TutorialPanelText {
  flex: auto;
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
}
.TutorialPanel .TutorialPanelContent .TutorialPanelText .TutorialPanelTitle {
  font-size: 2rem;
  font-weight: bold;
}
.TutorialPanel .TutorialPanelContent .TutorialPanelText .TutorialPanelSubtitle {
  margin-top: 1rem;
}
.TutorialPanel .TutorialPanelContent .TutorialPanelButtons {
  display: flex;
  flex-direction: row;
  align-self: flex-end;
  align-items: center;
}
.TutorialPanel .TutorialPanelContent .TutorialPanelButtons .TutorialPanelButton + .TutorialPanelButton {
  margin-left: 1rem;
}
.UpdatePassword .UpdatePasswordSubtitle {
  font-size: 85%;
  margin-top: 0.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  line-height: 1.5;
  color: gray;
}
.UpdatePassword .UpdatePasswordContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.UpdatePassword .UpdatePasswordContent .UpdatePasswordOldInput {
  width: 100%;
}
.UpdatePassword .UpdatePasswordContent .UpdatePasswordNewInput {
  margin-top: 1rem;
  width: 100%;
}
.UpdatePassword .UpdatePasswordContent .UpdatePasswordConfirmNewInput {
  margin-top: 1rem;
  width: 100%;
}
.UpdatePassword .UpdatePasswordContent .UpdatePasswordError {
  color: red;
  font-weight: bold;
  margin-top: 2rem;
}
.UpdatePassword .UpdatePasswordContent .UpdatePasswordButton {
  margin-top: 3rem;
  width: 90%;
  margin-bottom: 1rem;
}
.UpdatePassword .UpdatePasswordContent .AnimatedCheck {
  width: 50%;
}
.UpdatePassword .UpdatePasswordContent .FinishedUpdatePasswordText {
  margin-top: 2rem;
  font-size: 90%;
}
.UpdatePassword .UpdatePasswordSubtitle + .UpdatePasswordContent {
  margin-top: 1rem;
}
.ToRemoveUpdatePassword {
  width: 300px;
}
.ToRemoveUpdatePassword .UpdatePasswordSubtitle {
  font-size: 85%;
  margin-top: 0.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  line-height: 1.5;
  color: gray;
}
.ToRemoveUpdatePassword .UpdatePasswordContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .UpdatePasswordOldInput {
  width: 100%;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .UpdatePasswordNewInput {
  margin-top: 1rem;
  width: 100%;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .UpdatePasswordConfirmNewInput {
  margin-top: 1rem;
  width: 100%;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .UpdatePasswordError {
  color: red;
  font-weight: bold;
  margin-top: 2rem;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .UpdatePasswordButton {
  margin-top: 3rem;
  width: 90%;
  margin-bottom: 1rem;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .AnimatedCheck {
  width: 50%;
}
.ToRemoveUpdatePassword .UpdatePasswordContent .FinishedUpdatePasswordText {
  margin-top: 2rem;
  font-size: 90%;
}
.ToRemoveUpdatePassword .UpdatePasswordSubtitle + .UpdatePasswordContent {
  margin-top: 1rem;
}
.ToRemoveUpdatePassword.CompetitionEvent .MuiInput-underline:after {
  border-bottom: 2px solid #89f54b;
}
.ToRemoveUpdatePassword.CompetitionEvent .MuiFormLabel-root.Mui-focused {
  color: #3f9e09 !important;
}
.ToRemoveUpdatePassword.CompetitionEvent .MuiInputLabel-asterisk {
  color: #89f54b !important;
}
.ToRemoveUpdatePassword.CompetitionEvent .UpdatePasswordButton:not(.Mui-disabled) {
  color: #2a363b !important;
  background-color: #89f54b !important;
}
.UpgradeReportCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
.UpgradeReportCards .ReportCard {
  width: 250px;
}
.UpgradeReportCards .PayPalCard {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.UpgradeReportCards .StripeCard {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.UpgradeReportCards .MRRCard {
  grid-column: 3 / span 1;
  grid-row: 1 / span 1;
}
.UpgradeReportCards .MonthlyCard {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
.UpgradeReportCards .YearlyCard {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.UpgradeReportCards .LTVCard {
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
}
.VerticalCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.VerticalCard .MuiCardContent-root {
  padding: 0;
}
.VerticalCard .MuiCardContent-root:last-child {
  padding-bottom: 0px;
}
.VerticalCard .MuiCardActions-root {
  padding: 0;
}
.VerticalCard .VerticalCardContent {
  display: flex;
  flex-direction: column;
}
.VerticalCard .VerticalCardContent .VerticalCardIcon .VerticalCardIconImage {
  width: 100%;
  border-radius: 4px;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo {
  text-align: left;
  padding: 20px;
  position: relative;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardHeader {
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 16px;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardHeader .VerticalCardTitle {
  color: black;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardHeader .VerticalCardSubtitle {
  font-weight: normal;
  color: #666;
  font-size: 15px;
  margin-left: 4px;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardHeader .VerticalCardSubtitle::before {
  content: '– ';
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardExtraInfo {
  color: gray;
  font-size: 14px;
  margin-top: 4px;
  font-weight: normal;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardLevel {
  margin-top: 8px;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardLevel img {
  width: 24px;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardLevel .LevelText {
  display: inline;
  margin-left: 0.5rem;
  color: gray;
  font-size: 14px;
  font-weight: normal;
}
.VerticalCard .VerticalCardContent .VerticalCardInfo .VerticalCardDescription {
  color: black;
  text-overflow: ellipsis;
  font-weight: normal;
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.8;
}
.VerticalCard .VerticalCardActions {
  width: 100%;
}
.VerticalCard .VerticalCardActions .VerticalCardButtons {
  width: 100%;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.VerticalCard .VerticalCardActions .VerticalCardButtons .VerticalCardButton {
  margin: 10px;
}
.CodeShareCard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.CodeShareCard .MuiCardActionArea-root {
  width: auto;
}
.CodeShareCard .MuiCardContent-root {
  padding: 0;
}
.CodeShareCard .MuiCardContent-root:last-child {
  padding-bottom: 0;
}
.CodeShareCard .MuiCardActions-root {
  padding: 0;
}
.CodeShareCard .CodeShareCardImage {
  width: 151px;
  height: 165px;
}
.CodeShareCard .CodeShareCardContent {
  flex: auto;
}
.CodeShareCard .CodeShareCardContent .CodeShareCardInfo {
  text-align: left;
  padding: 0.5rem 0.8rem;
  padding-bottom: 0;
  position: relative;
}
.CodeShareCard .CodeShareCardContent .CodeShareCardInfo .CodeShareCardHeader {
  text-overflow: ellipsis;
  color: black;
  font-weight: normal;
  font-size: 14px;
}
@media (min-width: 960px) {
  .CodeShareCard .CodeShareCardContent .CodeShareCardInfo .CodeShareCardHeader {
    font-weight: bold;
    font-size: 16px;
  }
}
.CodeShareCard .CodeShareCardContent .CodeShareCardInfo .CodeShareCardExtraInfo {
  color: gray;
  font-size: 14px;
  margin-top: 4px;
  font-weight: normal;
}
.CodeShareCard .CodeShareCardContent .CodeShareCardInfo .CodeShareCardExtraInfo .InfoItem {
  margin-top: 0.45rem;
}
.CodeShareCard .CodeShareCardContent .CodeShareCardInfo .CodeShareCardExtraInfo .InfoItem svg {
  margin-right: 0.25rem;
  margin-left: -2px;
}
.CodeShareCard .CodeShareCardActions {
  width: 100%;
  justify-content: flex-end;
  padding: 0 0.8rem;
}
.StripeComponentContainer {
  width: 100%;
}
.StripeComponentContainer .TestCardContainer {
  position: fixed;
  left: 8px;
  top: 522px;
}
.StripeComponentContainer .TestCardContainer .StripeTestCards {
  font-size: 0.9em;
  line-height: 22px;
  margin: 10px auto;
  text-align: left;
}
.StripeComponentContainer .TestCardContainer .StripeTestCards .StripeTestCards-CardNumber,
.StripeComponentContainer .TestCardContainer .StripeTestCards .StripeTestCards-Description {
  font-size: 14px;
  color: #eee;
}
.StripeComponentContainer .TestCardContainer .StripeTestCards .StripeTestCards-CardNumber:hover,
.StripeComponentContainer .TestCardContainer .StripeTestCards .StripeTestCards-Description:hover {
  color: #666;
  cursor: pointer;
}
.StripeComponentContainer .TestCardContainer .StripeTestCards > * {
  text-align: left;
  padding: 2px 10px;
}
.PayPalComponent .PayPalComponentModeButton {
  margin-bottom: -30px;
}
.PayPalComponent .PayPalSubscriptionButtonParent {
  width: 200px;
}
.PayPalComponent .PayPalSubscriptionButton {
  width: 100%;
  padding: 8px 30px;
}
.PayPalReturnError {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}
.PayPalReturnError .PayPalReturnError-Content {
  width: fit-content;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 25px;
}
.PayPalReturnError .PayPalReturnError-Content .PayPalReturnError-PrimaryText {
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  color: #990000;
  margin-bottom: 15px;
}
.PayPalReturnError .PayPalReturnError-Content .PayPalReturnError-SecondaryText {
  font-size: 1.1em;
  color: #990000;
  margin-bottom: 15px;
}
.PayPalReturnError .PayPalReturnError-Content .PayPalReturnError-Details {
  display: inline-block;
  margin: 20px 0;
}
.SSOCallbackComponent {
  width: 100%;
  max-width: 200px;
}
.SSOCallbackComponent .SSOCallbackComponentModeButton {
  margin-bottom: -30px;
}
.SSOCallbackComponent .SSOCallbackSubscriptionButtonParent {
  width: 100%;
}
.SSOCallbackComponent .SSOCallbackSubscriptionButton {
  width: 100%;
  padding: 8px 30px;
}
.SSOCallbackError {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}
.SSOCallbackError .SSOCallbackError-Content {
  width: fit-content;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 25px;
}
.SSOCallbackError .SSOCallbackError-Content .SSOCallbackError-PrimaryText {
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  color: #990000;
  margin-bottom: 15px;
}
.SSOCallbackError .SSOCallbackError-Content .SSOCallbackError-SecondaryText {
  font-size: 1em;
  margin-bottom: 15px;
}
.SSOCallbackError .SSOCallbackError-Content .SSOCallbackError-Details {
  display: inline-block;
  font-weight: bold;
  color: #990000;
  margin: 20px 0;
}
.PaymentComponent {
  width: 600px;
  margin-top: 2rem !important;
}
.PaymentComponent .PaymentContainer {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #aaaaaa;
  position: relative;
  margin: 40px 0;
  opacity: 1;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.PaymentComponent .PaymentContainer .acceptedCardsText {
  font-weight: 300;
}
.PaymentComponent .PaymentContainer .acceptedCards {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.PaymentComponent .PaymentContainer .acceptedCards img {
  width: 50px;
  display: inline-block;
  margin-right: 5px;
}
.PaymentComponent .PaymentContainer .safe {
  margin-top: 1.5rem;
  font-size: 75%;
}
.PaymentComponent .PaymentContainer .safe svg {
  margin-right: 0.2rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionLabel {
  position: relative;
  overflow: hidden;
  left: 20px;
  max-width: calc(100% - 40px);
  top: -13px;
  display: inline-flex;
  align-items: center;
  margin-bottom: -15px;
  white-space: nowrap;
}
.PaymentComponent .PaymentContainer .PaymentSectionLabel .PaymentLogo {
  position: relative;
  background-color: #ffffff;
  padding: 1px 10px;
  color: black;
  font-weight: bold;
}
.PaymentComponent .PaymentContainer .PaymentSectionLabel .PaymentLogo img {
  width: auto;
  height: 20px;
}
.PaymentComponent .PaymentContainer .PaymentSectionLabel .TestModeWarning {
  background-color: #ffffff;
  margin-left: 10px;
  padding: 0 10px;
  color: #ff4400;
  font-weight: bold;
  white-space: nowrap;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent {
  position: relative;
  width: 100%;
  padding: 20px 30px;
  margin-top: -15px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentDetails {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 95%;
  line-height: 1.5;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentDetails .PriceCoupon {
  font-weight: bold;
  color: #409755;
  font-size: 20px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentDetails .PriceRegular {
  font-weight: bold;
  font-size: 20px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentCouponLabel {
  font-weight: 300;
  margin-top: 1.5rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentCouponContainer {
  width: 50%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentCouponContainer .PaymentCoupon {
  width: 100%;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentCouponContainer .PaymentCoupon > label {
  font-size: 1.1em;
  top: -3px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentCouponContainer .PaymentCoupon > div {
  border-radius: 6px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent .PaymentCouponContainer .PaymentCoupon > div > fieldset {
  border-radius: 6px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.PayPalContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.PayPalContainer .OneCentWarning {
  color: #ff1100;
  font-weight: bold;
  margin-bottom: 10px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 1.65rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .PaymentDetails {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .CardName {
  width: 100%;
  margin-bottom: 3px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .CardName > label {
  font-size: 1.1em;
  top: -3px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .CardName > div {
  border-radius: 6px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .CardName > div > fieldset {
  border-radius: 6px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .StripeElement {
  width: 100%;
  padding: 5px;
  border: 1px solid #444444;
  border-radius: 6px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12);
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .testModeOptions {
  margin-bottom: 10px;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .testModeOptions * {
  font-size: 0.85rem;
}
.PaymentComponent .PaymentContainer .PaymentSectionContent.StripeContainer .PurchaseButton {
  font-size: 1.1em;
}
.PaymentComponent .PaymentContainer .errorMessage {
  color: #aa0000;
  font-weight: bold;
  display: block;
  margin: 30px 20px 10px 20px;
  text-align: center;
}
.PaymentComponent .PaymentContainer .error {
  color: #330000;
  margin: 10px;
  display: block;
  text-align: center;
}
.PaymentComponent :first-child {
  margin-top: 0;
}
.PaymentComponent :last-child {
  margin-bottom: 0;
}
.KidSafeSeal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .KidSafeSeal {
    flex-direction: column;
  }
}
.KidSafeSeal .KidSafeText {
  font-size: 10px;
  margin-left: 1rem;
  max-width: 279px;
}
@media (max-width: 767.98px) {
  .KidSafeSeal .KidSafeText {
    margin-left: 0;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.PaymentMethodPicker {
  width: 600px;
  margin-top: 2rem !important;
}
.PaymentMethodPicker .PaymentMethodPickerContent {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard {
  flex: 1;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard.MuiPaper-outlined {
  border: 1px solid #09a7a7;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent .PaymentMethodCardTitle {
  font-weight: bold;
  font-size: 24px;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent .PaymentMethodCardSubtitle {
  margin-top: 1rem;
  font-size: 15.5px;
  text-align: center;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent .PaymentMethodCardIcon {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent .PaymentMethodCardIcon img {
  width: 50px;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent .PaymentMethodCardIcon img + img {
  margin-left: 0.5rem;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard .PaymentMethodCardContent .PaymentMethodCardIcon.PayPalIcons img {
  width: 150px;
}
.PaymentMethodPicker .PaymentMethodPickerContent .PaymentMethodCard + .PaymentMethodCard {
  margin-left: 2rem;
}
.PaymentInvoice {
  padding: 1rem;
  background-color: rgba(234, 238, 239, 0.47);
}
.PaymentInvoice .Title {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.PaymentInvoice .Title .ProductTitle,
.PaymentInvoice .Title .TrialText {
  font-size: 14px;
  font-weight: bold;
}
.PaymentInvoice .Subtitle {
  font-size: 14px;
  color: #999999;
  margin-top: 0.2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.PaymentInvoice .ProductBilling {
  padding-left: 2rem;
}
.PaymentInvoice .ProductBilling .BillingSection {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.PaymentInvoice .ProductBilling .BillingSection .SubtotalText,
.PaymentInvoice .ProductBilling .BillingSection .SubtotalValue,
.PaymentInvoice .ProductBilling .BillingSection .TotalTodayText,
.PaymentInvoice .ProductBilling .BillingSection .TotalTodayValue {
  font-size: 14px;
  font-weight: bold;
}
.PaymentInvoice .ProductBilling .BillingSection .TotalAfterTrialText,
.PaymentInvoice .ProductBilling .BillingSection .TotalAfterTrialValue {
  font-size: 14px;
}
.PaymentInvoice .ProductBilling .BillingSection .ApplyBtn {
  margin-left: 1rem;
}
.PaymentInvoice .ProductBilling .BillingSection .ChipInfo {
  display: flex;
  flex-direction: column;
}
.PaymentInvoice .ProductBilling .BillingSection .ChipInfo .ChipExtraInfo {
  color: #999999;
  font-size: 14px;
  margin-top: 0.2rem;
}
.PaymentInvoice .ProductBilling .BillingSection .PromotionPrice {
  color: #999999;
  font-size: 14px;
}
.PaymentInvoice .ProductBilling .BillingSection:last-child {
  margin-bottom: 0;
}
.SubscriptionPaymentStripe .StripeHeader .IssueLabel {
  margin-top: 0.5rem;
}
.SubscriptionPaymentStripe .AcceptedCards {
  margin-top: 1rem;
}
.SubscriptionPaymentStripe .PaymentFields {
  margin-top: 1rem;
}
.SubscriptionPaymentStripe .PaymentFields .MuiGrid-item + .MuiGrid-item {
  margin-top: 1rem;
}
.SubscriptionPaymentStripe .ErrorText {
  font-size: 12px;
  margin-top: 0.5rem;
}
.SubscriptionPaymentStripe .StartTrialBtn {
  margin-top: 1.5rem;
  border-radius: 4px;
}
.SubscriptionPaymentStripe .StartTrialBtn.Error {
  margin-top: 0.5rem;
}
.SubscriptionPaymentStripe .StripeElement {
  padding-top: 20.5px;
}
.SubscriptionPaymentStripe .CustomerPermission {
  margin-top: 0.5rem;
}
.BillingProfile .Title {
  font-weight: bold;
}
.BillingProfile .SectionTitle {
  padding: 1rem 0;
  text-transform: uppercase;
}
.BillingProfile .DescriptionText {
  font-size: 14px;
}
.BillingProfile .BaseBtn {
  border-radius: 4px;
  width: 330px;
}
.BillingProfile .ErrorText {
  font-size: 12px;
  margin-top: 0.5rem;
}
.BillingOverview .CurrentProductContainer .ChipSection {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.BillingOverview .CurrentProductContainer .ChipSection .CancelDateChip {
  margin-left: 1rem;
}
.BillingOverview .CurrentProductContainer .ProductPayment {
  margin-top: 1rem;
}
.BillingOverview .CurrentProductContainer .CancelMembershipBtn {
  margin-top: 1rem;
}
.BillingOverview .PaymentMethodContainer .PaymentMethodList {
  margin-top: 1rem;
}
.BillingOverview .BillingHistoryContainer .BillingInvoiceList {
  margin-top: 1rem;
}
.BillingOverview .BillingSection {
  margin-top: 2rem;
}
.BillingOverview .BillingSection + .BillingSection {
  margin-top: 2rem;
}
.SubscriptionCancel .SectionTitle {
  margin-top: 2rem;
}
.SubscriptionCancel .CancelDetails {
  margin-top: 1rem;
}
.SubscriptionCancel .ExtraInfo {
  margin-top: 1.5rem;
}
.SubscriptionCancel .CancelMembershipBtn {
  margin-top: 2rem;
}
.SubscriptionCancel .GoBackBtn {
  margin-top: 1rem;
}
.SubscriptionCancel .BillingTermsAndPrivacy {
  margin-top: 1rem;
}
.SubscriptionRenew .SectionTitle {
  margin-top: 2rem;
}
.SubscriptionRenew .RenewDetails {
  margin-top: 1rem;
}
.SubscriptionRenew .RenewMembershipBtn {
  margin-top: 2rem;
}
.SubscriptionRenew .GoBackBtn {
  margin-top: 1rem;
}
.SubscriptionRenew .BillingTermsAndPrivacy {
  margin-top: 1rem;
}
.AddPayment .StripeCard {
  width: 330px;
  margin-top: 2rem;
}
.AddPayment .DefaultPaymentCheckbox {
  border: none;
  margin-top: 2rem;
  font-size: 13px;
  margin-right: auto;
}
.AddPayment .AcceptedCards {
  margin-top: 1rem;
}
.AddPayment .GoBackBtn {
  margin-top: 1rem;
}
.AddPayment .BillingTermsAndPrivacy {
  margin-top: 1rem;
}
.AddPayment .MuiOutlinedInput-root {
  border-radius: 4px;
}
.AddPayment .MuiInputLabel-outlined {
  transform: translate(14px, 18px) scale(1);
}
.AddPayment .InputElement {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
.AddPayment .CustomerPermission {
  margin-top: 0.5rem;
}
.SubscriptionIssueStripe .StripeHeader .IssueLabel {
  margin-top: 0.5rem;
}
.SubscriptionIssueStripe .AcceptedCards {
  margin-top: 1rem;
}
.SubscriptionIssueStripe .PaymentFields {
  margin-top: 1rem;
}
.SubscriptionIssueStripe .PaymentFields .MuiGrid-item + .MuiGrid-item {
  margin-top: 1rem;
}
.SubscriptionIssueStripe .AddPaymentMethodBtn {
  margin-top: 1.5rem;
}
.SubscriptionIssueStripe .AddPaymentMethodBtn.Error {
  margin-top: 0.5rem;
}
.SubscriptionIssueStripe .StripeCard {
  margin-top: 0.5rem;
}
.SubscriptionIssueStripe .BillingTermsAndPrivacy {
  margin-top: 1rem;
}
.SubscriptionIssueStripe .MuiOutlinedInput-root {
  width: 330px;
  border-radius: 4px;
}
.SubscriptionIssueStripe .MuiInputLabel-outlined {
  transform: translate(14px, 18px) scale(1);
}
.SubscriptionIssueStripe .InputElement {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
.SubscriptionIssueStripe .CustomerPermission {
  margin-top: 0.5rem;
}
.DefaultPaymentMethodPopoverContainer .DefaultPaymentMethodPopoverText {
  padding: 1rem;
  max-width: 250px;
  font-size: 14px;
}
.PaymentMethodCard {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.PaymentMethodCard .CardNumber {
  margin-left: 1rem;
}
.PaymentMethodCard .CardExpiry {
  margin-left: 2rem;
}
.PaymentMethodImage {
  width: 35px;
}
.PaymentMethodImage.svg-inline--fa.fa-w-18 {
  width: 35px;
  height: 22px;
}
.PaymentMethodList {
  display: flex;
  flex-direction: column;
}
.PaymentMethodList .PaymentMethod {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.PaymentMethodList .PaymentMethod .PaymentMethodCard {
  min-width: 290px;
}
.PaymentMethodList .PaymentMethod .DefaultPaymentMethod {
  margin-left: 1rem;
}
.PaymentMethodList .PaymentMethod + .PaymentMethod {
  margin-top: 1rem;
}
.PaymentMethodList .AddPaymentBtn {
  margin-top: 1rem;
}
.MainProductInfo .ProductName {
  margin-top: 1rem;
  font-weight: bold;
}
.MainProductInfo .ProductPriceContainer {
  margin-top: 0.5rem;
  width: 330px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.MainProductInfo .ProductPriceContainer .ToggleCostDetails {
  position: relative;
  top: 1px;
}
.ExtraProductInfo {
  padding: 1rem;
  background-color: rgba(234, 238, 239, 0.47);
  width: 330px;
}
.ExtraProductInfo .PriceRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.ExtraProductInfo .TextLabel {
  font-size: 14px;
}
.ExtraProductInfo .TextLabelBold {
  font-weight: bold;
}
.ExtraProductInfo .PriceRow + .PriceRow {
  margin-top: 1rem;
}
.ExtraProductInfo .MuiDivider-root {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.BillingTermsAndPrivacy.MuiTypography-root {
  font-size: 12px;
}
.BillingTermsAndPrivacy .ResourceLinkText {
  text-decoration: underline;
}
.BillingInvoice {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.BillingInvoice .Date {
  font-weight: bold;
  font-size: 14px;
}
.BillingInvoice .InvoicePDFButtonContainer {
  flex: 0.8;
}
.BillingInvoice .InvoicePDFButtonContainer .InvoicePDFButton svg {
  width: 14px;
  position: relative;
  top: -1px;
}
.BillingInvoice .Price {
  font-size: 14px;
  flex: 1;
}
.BillingInvoice .Description {
  font-size: 14px;
  flex: 5;
}
.BillingInvoiceList {
  display: flex;
  flex-direction: column;
}
.BillingInvoiceList .BillingInvoice + .BillingInvoice {
  margin-top: 0.5rem;
}
.CancellationReasons .Subtitle {
  margin-top: 0.5rem;
}
.CancellationReasons .ReasonsList {
  margin-top: 1.5rem;
}
.CancellationReasons .ReasonsList .GroupTitle {
  font-size: 14px;
}
.CancellationReasons .ReasonsList .ReasonItem {
  font-size: 13px;
  border: none;
  margin-bottom: 0;
}
.CancellationReasons .ReasonsList .ReasonItem .MuiRadio-root {
  min-height: 0;
}
.CancellationReasons .FeedbackInputField {
  margin-top: 1.5rem;
  width: 100%;
}
.CancellationReasons .FeedbackInputField .MuiOutlinedInput-root {
  border-radius: 4px;
}
.CancellationReasons .CancelBtn {
  margin-top: 2rem;
}
.CancellationReasons .BackBtn {
  margin-top: 1rem;
}
.TestimonialCarousel {
  background-color: rgba(238, 238, 238, 0.5);
  position: relative;
}
.TestimonialCarousel .Testimonial {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}
.TestimonialCarousel .Testimonial .Text {
  font-size: 14px;
  font-weight: bold;
}
.TestimonialCarousel .Testimonial .AuthorDetails .Name {
  font-size: 12px;
}
.TestimonialCarousel .Testimonial .AuthorDetails .Title {
  font-size: 12px;
}
.TestimonialCarousel .MobileStepper {
  justify-content: center;
}
.TestimonialCarousel .BackgroundIcon {
  color: white;
  position: absolute;
  top: 5px;
  left: 10px;
}
.AcceptedCards {
  display: flex;
  flex-direction: row;
}
.AcceptedCards .PaymentMethodImage + .PaymentMethodImage {
  margin-left: 0.5rem;
}
.CustomerPermission {
  font-size: 12px;
  color: #777777;
}
.DBar {
  position: relative;
  display: flex;
  width: 100%;
}
.DBar .DBarRow {
  position: absolute;
  top: -10000px;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  display: flex;
  pointer-events: none;
}
.DBar .DBarDisplayed {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
.DBar .DBarSpacer {
  flex: 1 1 auto;
  width: 100%;
}
.DBar .DBarCell {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.DButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
.DButton .whenIconContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.DButton .whenIconContainer .DButton-CircularProgress {
  width: 1em;
  height: 1em;
}
.DButton .DButtonContentContainer {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.DButton .DButtonContentContainer .DButtonCaret {
  display: flex;
  position: relative;
  top: -1px;
  margin-right: -5px;
  padding-left: 2px;
}
.DashboardMainContent {
  padding: 5px;
}
.DashboardSideBar .SideBarPanel {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #005a59;
}
.DashboardSideBar .DashboardSideBarContent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.DashboardSideBar .DashboardSideBarContent .btn {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}
.DashboardSideBar .DashboardSideBarContent .btn .svg-inline--fa.fa-fw {
  height: auto;
  width: 23px;
}
.DashboardSideBar .DashboardSideBarContent .btn .translate {
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-align: left;
  padding-left: 10px;
  width: 100%;
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  will-change: width;
}
.DashboardSideBar .DashboardSideBarFull .btn .translate {
  width: 100%;
}
.DashboardSideBar .DashboardSideBarFull .InlineBadge {
  margin-left: 10px;
}
.DashboardSideBar .DashboardSideBarSmall .btn .translate {
  width: 0;
}
.DashboardSideBar .DashboardSideBarSmall .InlineBadge {
  position: absolute;
  top: 3px;
  left: 29px;
}
.DashboardSideBar .DashboardSideBarBack {
  margin-bottom: 15px;
}
.DashboardSideBar .SideBarToggleBar {
  background-color: #005a59 !important;
  border: 1px solid #005a59 !important;
}
.DashboardSideBar .SideBarToggleBar .SideBarToggleHandle {
  background-color: #005a59 !important;
  border: 1px solid #005a59 !important;
  padding: 0;
}
.LoadingError {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
}
.LoadingError .Content {
  margin-top: 0;
  position: absolute;
  width: 100%;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.LoadingError .Content .icon {
  margin: 0 0 20px 0;
  width: 250px;
  height: 250px;
}
.LoadingError .Content .text {
  font-weight: bold;
  font-size: 22px;
}
.LoadingError .Content .description {
  font-size: 15px;
  margin-top: 0.75rem;
}
.ManagementInterface {
  margin: 0 auto;
}
.ManagementInterface .SectionVSpacing {
  margin-top: 15px;
}
.ManagementInterface .editableProfileImageDisabledUser {
  box-shadow: 0 0 6px #f00, 0 0 6px #f00, 0 0 6px #f00;
  border-radius: 60px;
}
.ManagementInterface .editableProfileImage {
  cursor: pointer;
  width: 118px;
  height: 118px;
  position: relative;
  margin: 10px 0 30px;
}
.ManagementInterface .editableProfileImage .fillPhoto {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.ManagementInterface .editableProfileImage .photo {
  position: relative;
  border-radius: 59px;
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  width: 118px;
  height: 118px;
}
.ManagementInterface .editableProfileImage .editicon {
  font-size: 25px;
  color: #CCC;
  padding: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.95);
  position: absolute;
  width: 25px;
  right: -12px;
  top: 0;
}
.ManagementInterface .list-group-item {
  padding: 0 0;
}
.ManagementInterface .list-group-item .form-control {
  padding: 0 10px;
  height: 28px;
  margin: -2px -1px;
}
.ManagementInterface .StatusText {
  font-weight: bold;
}
.ManagementInterface .StatusBlock .StatusText {
  max-width: 100px;
  text-align: center;
}
.ManagementInterface .UpdateStatusContainer {
  display: flex;
}
.PageWait {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
}
.PageWait .background {
  position: absolute;
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-40%, -50%);
  -ms-transform: translate(-40%, -50%);
  -o-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
}
.PageWait .background img {
  opacity: 0.1;
}
.PageWait .Content {
  margin-top: 0;
  position: absolute;
  width: 100%;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.PageWait .waiticon {
  margin: 0 0 20px 0;
  width: 56px;
  height: 56px;
}
.PageWait .waitmessage {
  font-size: 30px;
}
.PageWait .waitmessage2 {
  font-size: 16px;
}
.RequestTransfer {
  margin-top: 2rem;
}
.RequestTransfer .TitleSection .SectionText {
  margin-bottom: 1px;
}
.RequestTransfer .CustomerInfo {
  display: flex;
  justify-content: center;
}
.RequestTransfer .CustomerInfo .QuoteBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm {
  margin-top: 15px;
  width: 100%;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .InputField .MuiFormControl-root {
  width: 100%;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .FirstNameInput {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .LastNameInput {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .EmailInput {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
.RequestTransfer .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .OrderNumberInput {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.RequestTransfer .CustomerInfo .SubmitButtonArea {
  padding: 30px 30px 10px 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.RequestTransfer .CustomerInfo .SubmitButtonArea .errorMessage {
  color: #aa0000;
  font-weight: bold;
  display: block;
  margin: 20px;
  text-align: center;
}
.RequestTransfer .CustomerInfo .SubmitButtonArea .ConfirmationMessage {
  margin: 5px;
}
.RequestTransfer .Finished .FinishedBox {
  min-width: 250px;
  max-width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.RequestTransfer .Finished .FinishedBox .SectionTitle {
  margin-bottom: 10px;
}
.RequestTransfer .Finished .FinishedBox .SectionSubTitle {
  margin-bottom: 20px;
}
.RequestTransfer .Finished .FinishedBox .animatedCheck {
  width: auto;
  height: 120px;
}
.RequestTransfer .Finished .FinishedBox .FinishedContent {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Quote {
  margin-top: 2rem;
}
.Quote .TitleSection .SectionText {
  margin-bottom: 1px;
}
.Quote .FranchiseRedirectText {
  font-weight: bold;
  font-size: 14px;
  border: solid 1px black;
  padding: 1rem;
  border-radius: 4px;
  width: 100%;
}
.Quote .CustomerInfo {
  display: flex;
  justify-content: center;
}
.Quote .CustomerInfo .QuoteBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm {
  margin-top: 15px;
  width: 100%;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .InputField .MuiFormControl-root {
  width: 100%;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .ContactNameInput {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .EmailInput {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .InstitutionInput {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .CityInput {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .DurationInput {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .AgeRangeInput {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .StudentsInput {
  grid-column: 2 / span 1;
  grid-row: 4 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .HowUsingInput {
  grid-column: 1 / span 1;
  grid-row: 4 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .OtherCommentsInput {
  grid-column: 1 / span 2;
  grid-row: 5 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn .InputField .MuiFormControl-root {
  width: 100%;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn .HowUsingInput {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn .AgeRangeInput {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn .StudentsInput {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn .DurationInput {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.Quote .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid.CustomerInfoGridLoggedIn .OtherCommentsInput {
  grid-column: 1 / span 2;
  grid-row: 3 / span 1;
}
.Quote .CustomerInfo .QuoteBox .errorMessage {
  color: #aa0000;
  font-weight: bold;
  display: block;
  margin: 30px 20px 10px 20px;
  text-align: center;
}
.Quote .CustomerInfo .QuoteBox .error {
  color: #330000;
  margin: 10px;
  display: block;
  text-align: center;
}
.Quote .CustomerInfo .QuoteBox .RequestQuoteButton {
  margin-top: 2rem;
}
.Finished {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Finished .FinishedBox {
  min-width: 250px;
  max-width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.Finished .FinishedBox .SectionTitle {
  margin-bottom: 10px;
}
.Finished .FinishedBox .SectionSubTitle {
  margin-bottom: 20px;
}
.Finished .FinishedBox .animatedCheck {
  width: auto;
  height: 120px;
}
.Finished .FinishedBox .FinishedContent {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Finished .FinishedBox .FinishedContent .ContactSales {
  font-weight: bold;
  margin-bottom: 20px;
}
.AccountExpired {
  margin-top: 2rem;
}
.AccountExpired .Finished {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.AccountExpired .Finished .FinishedBox {
  min-width: 250px;
  max-width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.AccountExpired .Finished .FinishedBox .SectionTitle {
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}
.AccountExpired .Finished .FinishedBox .SectionSubTitle {
  margin-bottom: 20px;
}
.AccountExpired .Finished .FinishedBox .Header {
  text-align: center;
}
.AccountExpired .Finished .FinishedBox .Header svg {
  font-size: 92px;
  color: #d6d6d6;
  margin-top: 20px;
  margin-bottom: 30px;
}
.AccountExpired .Finished .FinishedBox .FinishedContent {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.AccountExpired .Finished .FinishedBox .FinishedContent .ContactSales {
  font-weight: normal;
  margin-bottom: 20px;
}
.ProgressReport {
  width: 100%;
}
.ProgressReport .Pager,
.ProgressReport .Select-control {
  background-color: #3e98c7;
}
.ProgressReport .ReportContainerPanel .ProgressReportInfo .exportButton {
  float: right;
}
.ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportTitle {
  font-size: 29px;
  font-family: Roboto, serif;
  text-align: left;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportTitle {
    font-size: 32px;
  }
}
.ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportSubtitle {
  font-size: 15px;
  font-family: Roboto, serif;
  font-weight: 300;
  text-align: left;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportSubtitle {
    font-size: 17px;
  }
}
.ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportSubtitle .GroupName {
  color: black;
}
.ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportSubtitle .CourseName {
  font-weight: normal;
  color: #666;
  font-size: 15px;
  margin-left: 4px;
}
.ProgressReport .ReportContainerPanel .ProgressReportInfo .ProgressReportSubtitle .CourseName::before {
  content: '– ';
}
.ProgressReport .ReportContainerPanel .overviewButton {
  margin-top: 2rem;
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport {
  margin-top: 1.5rem;
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .MuiGrid-container + .MuiGrid-container {
  margin-top: 12px;
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .MuiCard-root .MuiCardContent-root {
  padding-bottom: 24px;
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .TopTitle {
  font-size: 17px;
  font-family: Roboto, serif;
  text-align: left;
  margin-bottom: 15px;
}
@media (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .TopTitle {
    font-size: 20px;
  }
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .StudentLogins .NoResults {
  height: 315px;
  font-size: 25px;
  font-weight: 300;
  color: #9e9e9e;
  text-align: center;
  padding-top: 3.2rem;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .StudentLogins .NoResults {
    font-size: 31px;
    padding-top: 5.3rem;
  }
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 5%;
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarTitle {
  font-size: 17px;
  font-weight: 300;
}
@media (min-width: 1100px) {
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarTitle {
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarTitle {
    font-size: 32px;
  }
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent {
  width: 30%;
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent .value,
.ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent .CircularProgressbar-text {
  font-size: 20px !important;
  font-weight: bold;
  color: #3e98c7;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent .value,
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent .CircularProgressbar-text {
    font-size: 32px !important;
  }
}
.ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent .desc {
  font-size: 14px;
  margin-top: 5px;
  display: none;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .SummaryProgressReport .CircleProgressBarContainer .CircleProgressBarContent .desc {
    display: initial;
  }
}
.ProgressReport .ReportContainerPanel .UserProgressReport {
  margin-top: 2rem;
}
.ProgressReport .ReportContainerPanel .UserProgressReport .DataTableGrid {
  grid-template-columns: 0.3fr 0.7fr !important;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .UserProgressReport .DataTableGrid {
    grid-template-columns: 0.2fr 0.8fr;
  }
}
.ProgressReport .ReportContainerPanel .UserProgressReport .UserInfo {
  padding-left: 0.5rem;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .UserProgressReport .UserInfo {
    padding-left: 1rem;
  }
}
.ProgressReport .ReportContainerPanel .UserProgressReport .UserInfo .name {
  font-weight: bold;
}
.ProgressReport .ReportContainerPanel .UserProgressReport .UserInfo .username {
  font-size: 85%;
}
.ProgressReport .ReportContainerPanel .UserProgressReport .ProgressInfo .progress {
  height: 20px;
  background-color: #d6d6d6;
  border-radius: 10px;
}
.ProgressReport .ReportContainerPanel .UserProgressReport .ProgressInfo .progress .progress-bar {
  background-color: #3e98c7;
}
.ProgressReport .ReportContainerPanel .LoginTable .NoResults {
  font-size: 25px;
  font-weight: 300;
  color: #9e9e9e;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .LoginTable .NoResults {
    font-size: 31px;
  }
}
.ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable {
  height: 315px;
  overflow-y: hidden;
  font-size: 80%;
  font-weight: normal;
}
@media screen and (min-width: 1281px) {
  .ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable {
    font-size: initial;
  }
}
.ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable .TopLoginRow {
  border-bottom: 1px solid #d6d6d6;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.5rem;
}
.ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable .TopLoginRow .NameCellHeader {
  font-weight: bold;
  text-align: left;
}
.ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable .TopLoginRow .LoginCellHeader {
  font-weight: bold;
  text-align: right;
}
.ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable .TopLoginRow .NameCell {
  text-align: left;
}
.ProgressReport .ReportContainerPanel .LoginTable .TopLoginTable .TopLoginRow .LoginCell {
  text-align: right;
}
.ProgressReport[data-course-id="creative"] .AverageQuizScore {
  display: none;
}
.AdminStats .AdminStatsTable tr {
  line-height: 1.5em;
}
.AdminStats .AdminStatsTable .DButton {
  font-size: 12px;
  padding: 2px 12px;
  min-height: 12px;
}
.AdminStats .tableLabel {
  padding-right: 10px;
  text-align: right;
  font-weight: bold;
}
.AdminStats .ConfigRow {
  display: flex;
}
.AdminStats .ConfigRow .ConfigOption {
  flex: 0 1 auto;
  margin: 3px 10px;
}
.AdminStats .ConfigRow .ServerType {
  max-width: 200px;
}
.AdminStats dl.ConnectedUsers {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 10px;
}
.AdminStats dl.ConnectedUsers dt {
  font-weight: bold;
  flex: 1;
  min-width: 50%;
}
.AdminStats dl.ConnectedUsers dd {
  flex: 1;
}
.AddStudentMethods {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel {
  width: 100%;
  max-width: 700px;
  min-height: 150px;
  background-color: white;
  text-align: center;
  padding: 10px 30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #09a7a7;
  box-shadow: 0px 3px 5px rgba(80, 80, 80, 0.5);
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel .AddStudentMethodsHeader {
  margin-bottom: 3rem;
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel .AddStudentMethodsHeader .AddStudentMethodsTitle {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.65em;
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel .AddStudentMethodsHeader .AddStudentMethodsPrompt {
  display: block;
  line-height: 22px;
  font-weight: 300;
  color: black;
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel .AddStudentMethodCards {
  margin-bottom: 3rem;
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel .AddStudentMethodCards .AddStudentMethodCardWrapper .CategoryCardIcon {
  margin-right: 0.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 106px;
  width: 106px;
  top: -16px;
  border: 1px solid #afafaf;
  background-color: #cacaca;
  border-radius: 19px;
}
.AddStudentMethods .AddStudentMethodsContent .AddStudentMethodsPanel .AddStudentMethodCards .AddStudentMethodCardWrapper + .AddStudentMethodCardWrapper {
  margin-top: 3.5rem;
}
.AddStudentsManual .tableContentWrapper {
  border-radius: 16.5px;
  padding: 25.81px;
  background-color: rgba(0, 0, 0, 0.15);
  position: relative;
}
.AddStudentsManual .tableContentWrapper .AddStudentsLoadError {
  width: 100%;
  padding: 50px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.AddStudentsManual .tableContentWrapper .Instructions {
  margin: 0 10px 10px 10px;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.05em;
}
.AddStudentsManual .tableContentWrapper .InputContainer {
  border-radius: 16.5px;
  padding: 25.81px;
  background-color: #ffffff;
  margin-bottom: 20px;
}
.AddStudentsManual .tableContentWrapper .InputContainer .InputWrapper {
  margin-bottom: 10px;
}
.AddStudentsManual .tableContentWrapper .InputContainer .InputWrapper .ChangeClassInput input {
  cursor: pointer !important;
}
.AddStudentsManual .tableContentWrapper .InputContainer .InputWrapper .ClassIcon {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.AddStudentsManual .tableContentWrapper .InputContainer .InputWrapper .ClassIcon img {
  width: 100%;
  height: 100%;
}
.AddStudentsManual .AutoGenerateUsernameButton {
  padding: 4px 8px;
  min-height: 22px;
  margin-right: 5px;
}
.AddStudentsManual .RemoveUserButton {
  min-height: 22px;
  padding: 4px 8px;
}
.AddStudentsManual .feedbackIconChecking {
  color: #999;
}
.AddStudentsManual .feedbackIconError {
  color: #aa0000;
}
.AddStudentsManual .feedbackIconNew {
  color: #24542f;
}
.AddStudentsManual .feedbackIconOk {
  color: #24542f;
}
.AddStudentsManual .feedbackIconExists {
  color: #fbc02d;
}
.background-image {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100%;
}
.background-image .title-label {
  color: white;
  font-size: x-large;
  font-weight: bold;
  padding-top: 36px;
  padding-left: 40px;
}
.background-image .achievements-grid {
  margin: 0 auto;
  width: 100%;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto fill, auto);
  grid-column-gap: 90px;
  grid-row-gap: 40px;
}
@media (max-width: 575.98px) {
  .background-image .achievements-grid {
    grid-template-columns: repeat(1, 100%);
    grid-column-gap: 0;
    grid-row-gap: 20px;
    padding: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .background-image .achievements-grid {
    grid-template-columns: repeat(1, 100%);
    grid-column-gap: 0;
    grid-row-gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .background-image .achievements-grid {
    grid-template-columns: repeat(1, 100%);
    grid-column-gap: 0;
    grid-row-gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .background-image .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 20px;
    display: grid;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
@media (min-width: 1022px) and (max-width: 1025px) {
  .background-image .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 40px;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1367px) {
  .background-image .achievements-grid {
    margin: 0 auto;
    max-width: 1400px;
    padding: 40px;
  }
}
.background-image .achievements-grid .achievement-container {
  width: 100%;
}
.Billing .BillingContainer {
  border-radius: 4px;
  padding: 2rem;
  max-width: 708px;
  margin: auto;
}
.ConfirmEmailView {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 700px;
}
@media (max-width: 767.98px) {
  .ConfirmEmailView {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
@media (max-width: 767.98px) {
  .ConfirmEmailView .SuccessFormContent {
    box-shadow: none !important;
  }
  .ConfirmEmailView .SuccessFormContent .SuccessFormDescription {
    text-align: center;
  }
}
.ConfirmEmailViewModalDescription {
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .ConfirmEmailViewModalDescription {
    font-size: 13.5px;
  }
}
.StartTrial {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 900px;
}
@media (max-width: 767.98px) {
  .StartTrial {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.StartTrial .MasterForm {
  width: 715px;
}
.StartTrial .PaymentForm.MasterFormSubForm {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
}
.StartTrial .PaymentForm.MasterFormSubForm .Column {
  flex: 1;
  padding: 1rem;
}
.StartTrial .PaymentForm.MasterFormSubForm .Header .Title {
  font-size: 18px;
}
.StartTrial .PaymentForm.MasterFormSubForm .Header .TrialLabel {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.StartTrial .PaymentForm.MasterFormSubForm .Header .RecurringPayment {
  margin-top: 0.2rem;
  font-size: 14px;
  color: #999999;
}
.StartTrial .TestimonialCarousel {
  margin-top: 1rem;
}
.StartTrial .MuiOutlinedInput-root {
  border-radius: 4px;
}
.StartTrial .MuiInputLabel-outlined {
  transform: translate(14px, 18px) scale(1);
}
.StartTrial .InputElement {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
/*
    the theming is code language-specific and is performed according to these rules:
    
    HTML
    ====
    tags = var (red=#f92672)
    attribute names = concept (green=#a6e22e)
    attribute values = string (yellow=#e6db74)
    text content = string (yellow=#e6db74)

    CSS
    ===
    selectors = var (red=#f92672)
    property names = concept (green=#a6e22e)
    property values = string (yellow=#e6db74)

    JAVASCRIPT
    ==========
    identifiers = var (green=#a6e22e)
    functions (and keywords) = concept (blue=#66d9ef)
    literals = string (yellow=#e6db74)

    PYTHON
    ======
    identifiers = var (green=#a6e22e)
    functions (and keywords) = concept (blue=#66d9ef)
    literals = string (yellow=#e6db74)
*/
.DisplayClassCode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel {
  width: 100%;
  max-width: 700px;
  min-height: 150px;
  background-color: white;
  text-align: center;
  padding: 10px 30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #09a7a7;
  box-shadow: 0px 3px 5px rgba(80, 80, 80, 0.5);
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeHeader {
  margin-bottom: 2rem;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeHeader .DisplayClassCodeTitle {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.65em;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeHeader .DisplayClassCodePrompt {
  display: block;
  line-height: 22px;
  font-weight: 300;
  color: black;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeInstructions .DisplayClassCodeInstruction {
  margin-bottom: 2rem;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeInstructions .DisplayClassCodeInstruction.ClassCodeLink {
  font-weight: bold;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeInstructions .DisplayClassCodeInstruction .TimeRemaining {
  display: inline;
  font-size: initial;
  font-weight: bold;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeInstructions .DisplayClassCodeInstruction.ClassCodeExpiryInstructions {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeInstructions .DisplayClassCodeInstruction .CodeExpiredLine {
  margin-bottom: 1rem;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .DisplayClassCodeInstructions .DisplayClassCodeInstruction .CodeExpiresLine {
  margin-bottom: 1rem;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .ClassCodeContainer {
  margin-bottom: 2rem;
}
.DisplayClassCode .DisplayClassCodeContent .DisplayClassCodePanel .ClassCodeContainer .ClassCodeContainerContent {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 30px;
  font-weight: bold;
  padding: 1rem 4rem;
}
.ClassCodeFullScreen {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 10rem;
}
.HomePage {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 700px;
}
@media (max-width: 767.98px) {
  .HomePage {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.HomePageVersion {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  color: #ddd;
  padding: 3px 10px;
  text-shadow: 1px 1px 1px #000, -1px 1px 1px #000, -1px -1px 1px #000, 1px -1px 1px #000;
}
@media (max-width: 767.98px) {
  .HomePageVersion {
    display: none !important;
  }
}
.SignUp.SelectAccountTypeHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 940px;
}
@media (max-width: 767.98px) {
  .SignUp.SelectAccountTypeHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.individualHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 862px;
}
@media (max-width: 767.98px) {
  .SignUp.individualHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.parentHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 862px;
}
@media (max-width: 767.98px) {
  .SignUp.parentHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.educatorHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 1200px;
}
@media (max-width: 767.98px) {
  .SignUp.educatorHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.parentSingleHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 1100px;
}
@media (max-width: 767.98px) {
  .SignUp.parentSingleHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.SelectClassCodeHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 800px;
}
@media (max-width: 767.98px) {
  .SignUp.SelectClassCodeHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
@media (max-width: 767.98px) {
  .SignUp.SelectClassCodeHack .MasterFormNavigation {
    display: none !important;
  }
  .SignUp.SelectClassCodeHack .MasterFormExtraContent {
    margin-top: 1rem !important;
  }
}
.SignUp.CompetitionSignUpHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 793px;
}
@media (max-width: 767.98px) {
  .SignUp.CompetitionSignUpHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.ClassCodeSignUpHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 938px;
}
@media (max-width: 767.98px) {
  .SignUp.ClassCodeSignUpHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SignUp.SelectUserAgeHack {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 640px;
}
@media (max-width: 767.98px) {
  .SignUp.SelectUserAgeHack {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SSOLogin {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 700px;
}
@media (max-width: 767.98px) {
  .SSOLogin {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.SSOLogin .SSOLoginCard {
  border-radius: 4px;
  padding: 2rem;
  max-width: 708px;
  margin: auto;
}
.SSOLogin .SSOLoginCard .Logo {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.SSOLogin .SSOLoginCard .Logo img {
  width: 300px;
}
.SSOLogin .SSOLoginCard .Message {
  margin-top: 5rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.SSOLogin .SSOLoginCard .ProgressBar {
  margin-top: 2rem;
  margin-bottom: 5rem;
}
.SSOLogin.Error .Message {
  margin-top: 3rem;
  color: #f44336;
}
.SSOLogin.Error .ErrorText {
  margin-top: 0.5rem;
  font-size: 1rem;
  text-align: center;
}
.SSOLogin.Error .BtnContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.SSOLogin.Error .BtnContainer .TryAgainBtn {
  border-radius: 4px;
}
.ManageLicense .ManageLicenseFields {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.Login .LoginFormUsername {
  width: 100%;
}
.Login .LoginFormPassword {
  width: 100%;
  margin-top: 1.7rem;
}
.Login .LoginForgotPasswordContainer {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}
.Login .LoginForgotPasswordContainer .LoginForgotPasswordButton {
  cursor: pointer;
  font-size: 0.75em;
  color: #107474;
}
.Login .LoginForgotPasswordContainer .LoginForgotPasswordButton:hover {
  color: #16a1a1;
}
.Login .LoginButton {
  width: 90%;
  margin-top: 2rem;
  margin-left: 5%;
}
.LoginContentAlt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.LoginContentAlt .LoginHelp {
  font-size: 12.8px;
  text-align: center;
  line-height: 1.5;
  color: #828282;
}
.LoginContentAlt .MulticodeBtn {
  margin-top: 0.5rem;
  margin-bottom: -0.5rem;
}
.MainMenu {
  background-color: #107474;
  height: 63px;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.15);*/
  /* this is displayed in the login page and the enroll page */
}
.MainMenu .MainMenuDBar .DBarRow {
  height: 60px;
}
.MainMenu .MainMenuDBar .DBarRow .DBarCell {
  margin: 0 5px;
}
.MainMenu .MainMenuDBar .DBarRow .DBarCell a {
  color: white;
}
.MainMenu .topLoginText {
  color: white;
  font-family: roboto;
  font-size: 20px;
  margin: 10px;
  padding: 6px 8px;
}
@media (max-width: 500px) {
  .MainMenu .topLoginText {
    display: none;
  }
}
.MainMenu .Logo .LogoButton {
  font-family: 'Saira Extra Condensed', sans-serif;
  color: #ffffff;
  font-size: 32px;
  margin: 10px 10px;
  padding: 6px 8px;
  line-height: 1em;
  box-shadow: none;
}
.MainMenu .Logo .LogoButton .LogoLabel {
  pointer-events: none;
}
.MainMenu .Logo .LogoButton .LogoLabel .LogoImage {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  padding: 5px;
  background-color: #ffffff;
}
.MainMenu .Logo .LogoButton .LogoLabel .LogoImage.EduCodeLogo {
  width: unset;
  height: 64px;
  border-radius: unset;
  background-color: unset;
}
.MainMenu .Logo .LogoButton .LogoLabel .LogoName {
  margin-left: 10px;
  font-weight: normal;
}
.MainMenu .NameBoxCell {
  margin-right: 0 !important;
  max-width: 50%;
}
.MainMenu .NameBoxCell .NameBox {
  height: 60px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}
.MainMenu .NameBoxCell .NameBox .NameBoxContent {
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.MainMenu .NameBoxCell .NameBox .NameBoxContent .NameBoxLabel {
  flex: 1 1 auto;
  text-align: left;
  position: relative;
  width: 100%;
  padding-left: 10px;
  display: grid;
  grid-template-columns: 1fr;
}
.MainMenu .NameBoxCell .NameBox .NameBoxContent .NameBoxLabel .WelcomeText {
  position: relative;
  display: block;
  font-size: 0.8em;
  line-height: 1em;
}
.MainMenu .NameBoxCell .NameBox .NameBoxContent .NameBoxLabel .UserName {
  position: relative;
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.2em;
  width: 100%;
}
.MainMenu .NameBoxCell .NameBox .NameBoxContent .ProfilePicContainer {
  flex: 0 0 auto;
}
.MainMenu .NameBoxCell .NameBox .NameBoxContent .ProfilePicContainer .ProfilePic {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  border-radius: 20px;
  flex: 0 0 auto;
}
.MainMenu .DisplayDisconnected {
  color: #ee1111;
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 1;
  -webkit-animation: fade 1s infinite;
  -o-animation: fade 1s infinite;
  animation: fade 1s infinite;
}
.MainMenu .DemoCurriculumSelectContainer {
  position: relative;
  top: -7px;
  transition: top 0.15s linear;
  display: flex;
  margin-right: -30px;
}
.MainMenu .DemoCurriculumSelectContainer .DemoCurriculumSelect {
  position: relative;
  min-width: 250px;
  max-width: 300px;
  z-index: 1;
}
.MainMenu .DemoCurriculumSelectContainer .DemoCurriculumSelect .DemoCurriculumSelectLabel {
  font-size: 0.7em;
  font-weight: bold;
  top: 2px;
}
.MainMenu .DemoCurriculumSelectContainer .DemoGoButton {
  padding-left: 40px;
  position: relative;
  left: -30px;
  min-height: 35px;
  height: 35px;
  top: 8px;
  line-height: 1em;
}
.MainMenu .TrialCountdown {
  display: flex;
  flex: 0 0 auto;
  color: white;
}
.MainMenu .SupportModuleCell .SupportModuleButton {
  display: flex;
  justify-content: space-between;
}
.MainMenu .SupportModuleCell .DButton .InlineBadge {
  margin-left: 12px;
  margin-right: -5px;
}
.MainMenu .ExtraUserInfo {
  display: flex;
  flex: 0 0 auto;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell {
  padding: 5px;
  text-align: center;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoCellSideBySide {
  display: flex;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoLabel {
  font-size: 0.7em;
  color: #cccccc;
  text-align: center;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoLabelLeft {
  text-align: left;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoData {
  color: #ffffff;
  text-align: center;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoDataSmall {
  font-size: 0.8em;
  padding-left: 5px;
}
.MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoDataLeft {
  text-align: left;
}
@keyframes fade {
  0% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.45;
  }
}
.manageClasses {
  min-width: 500px;
}
.manageClasses .Instructions {
  margin: 10px 10px 15px 10px;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.05em;
}
.manageClasses .GoAsUserContainer {
  margin: 1px 5px;
}
.manageClasses .GoAsUserContainer .GoAsUser {
  font-size: 1.1em;
  font-weight: bold;
}
.manageClasses .OpenClassHeader {
  min-width: 350px;
  margin-bottom: 10px;
}
.manageClasses .OpenClassHeader .TextContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.manageClasses .OpenClassHeader .TextContainer .ClassName {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.manageClasses .OpenClassHeader .TextContainer .HeaderTagLine {
  font-size: 1.2em;
  margin-top: 10px;
}
.manageClasses .ClassSettingsCreativeMode .PanelContent {
  padding: 15px;
}
.manageClasses .ClassSettingsCreativeMode .MuiFormControl-root {
  min-width: 100%;
}
@media (min-width: 1000px) {
  .manageClasses .ClassSettingsCreativeMode .MuiFormControl-root {
    min-width: 40%;
  }
}
.manageClasses .ClassSettingsCreativeMode .InputField + .InputField {
  margin-top: 2rem;
}
.manageClasses .ClassSettingsCreativeMode .Requirements {
  margin-top: 2rem;
  font-size: 13.5px;
  line-height: 1.8;
  color: #6d6d6d;
  max-width: 100%;
}
@media (min-width: 1000px) {
  .manageClasses .ClassSettingsCreativeMode .Requirements {
    max-width: 40%;
  }
}
.manageClasses .ClassSettingsCreativeMode .Requirements svg {
  color: #f39c12;
  margin-right: 0.5rem;
  font-size: 16px;
}
.manageClasses .ClassNameDisplayPanel {
  margin-bottom: 15px;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent {
  padding: 7px 16px;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent .ClassNameDisplay {
  display: flex;
  flex-wrap: nowrap;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  text-align: left;
  align-items: baseline;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent .ClassNameDisplay .NameLabel {
  flex: 0 0 auto;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent .ClassNameDisplay .NameDisplay {
  padding-left: 10px;
  font-size: 16px;
  text-align: left;
  justify-self: left;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent .ClassNameText {
  display: flex;
  flex-wrap: nowrap;
  text-align: left;
  align-items: baseline;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent .ClassNameText .NameLabel {
  flex: 0 0 auto;
}
.manageClasses .ClassNameDisplayPanel .ClassNameDisplayPanelContent .ClassNameText .NameDisplay {
  padding-left: 10px;
  font-size: 16px;
  text-align: left;
  justify-self: left;
}
.manageClasses .avgRequiredComplete,
.manageClasses .avgRequiredTime {
  color: #006666;
  font-weight: bold;
}
.manageClasses .avgChallengesComplete,
.manageClasses .avgChallengesTime {
  color: #996622;
  font-weight: bold;
}
.manageClasses .avgTotalComplete,
.manageClasses .avgTotalTime {
  color: #229922;
  font-weight: bold;
}
.manageClasses .UnitsTable .progressLimiter {
  border-bottom: solid 5px #ff0000 !important;
}
.manageClasses .UnitsTable .progressLimiterProject {
  border-bottom: double 3px #ff0000 !important;
}
.manageClasses .UnitsTable .durationCell {
  height: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 11px;
  min-width: 36px;
  width: auto;
}
.manageClasses .UnitsTable .durationCell .durationInput .form-control {
  padding: 4px 6px;
  text-align: center;
}
.manageClasses .UnitsTable .itemModifiedCell {
  background-color: #f4f4f4;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  height: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 11px;
  max-width: 76px;
  min-width: 76px;
  width: auto;
}
.manageClasses .projectOptions {
  display: flex;
  align-items: center;
}
.manageClasses .projectOptions .projectOptionsLabel {
  padding-right: 4px;
}
.manageClasses .projectOptions .projectOptionsSelection {
  height: 24px;
  padding: 2px 10px;
}
.manageClasses .ManageClassHeader .ManageClassAddStudentsButton {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
  margin-top: -40px;
}
.manageClasses .ManageClassHeader .ManageClassAddStudentsButton .ManageClassAddStudentButtonIcon {
  margin-right: 0.5rem;
}
@media print {
  .manageClasses {
    position: relative !important;
  }
}
.MyProfile .MyProfileContent {
  display: flex;
  flex-direction: column;
}
.MyProfile .MyProfileContent .MuiPaper-rounded {
  border-radius: 4px;
  padding: 16px;
}
.MyProfile .MyProfileContent .MuiSelect-root {
  min-width: 200px;
}
.MyProfile .MyProfileContent .AchievementProgress + .ProfileContainer {
  margin-top: 1rem;
}
.MyProfile .MyProfileContent .ProfileContainer {
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
.MyProfile .MyProfileContent .ProfileContainer .Content {
  display: flex;
  flex-direction: row;
  /* Taken from: ManagementInterface.less*/
}
.MyProfile .MyProfileContent .ProfileContainer .Content .editableProfileImage {
  position: relative;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .editableProfileImage ._react-file-reader-input {
  cursor: pointer;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .editableProfileImage .fillPhoto {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .editableProfileImage .photo {
  position: relative;
  border-radius: 59px;
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  width: 118px;
  height: 118px;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .editableProfileImage .editicon {
  font-size: 25px;
  color: #CCC;
  padding: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.95);
  position: absolute;
  width: 25px;
  right: -12px;
  top: 0;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .InputFields {
  margin-left: 4rem;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .InputFields .InputField {
  width: 100%;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .InputFields .InputField + .InputField {
  margin-top: 2rem;
}
.MyProfile .MyProfileContent .ProfileContainer .Content .InputFields .MoreInformationIndicator .icon {
  margin-left: 0.25rem;
}
.MyProfile .MyProfileContent .ProfileContainer .Footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.MyProfile .MyProfileContent .ProfileContainer .Footer .ErrorText {
  flex: auto;
  font-size: 14px;
}
.MyProfile .MyProfileContent .ProfileContainer .Footer .FooterButtons {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.MyProfile .MyProfileContent .ProfileContainer .Footer .FooterButtons .FooterButton {
  padding: 6px 20px;
  white-space: nowrap;
}
.MyProfile .MyProfileContent .ProfileContainer .Footer .FooterButtons .FooterButton .Text {
  margin-left: 0.5rem;
}
.MyProfile .MyProfileContent .ProfileContainer .Footer .FooterButtons .FooterButton + .FooterButton {
  margin-left: 0.5rem;
}
.CustomerSupport .SupportWindow {
  background-color: white;
  width: 400px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 1920px) {
  .CustomerSupport .SupportWindow {
    width: 500px;
  }
}
.CustomerSupport {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.CustomerSupport .Header {
  border-bottom: 1px solid #d8d8d8;
}
.CustomerSupport .Header .SectionTitle {
  font-size: 32px;
  font-family: Roboto, serif;
  text-align: left;
  color: black;
  padding: 1rem;
}
.CustomerSupport .Header .ToggleSupportSoundBtn {
  float: right;
  margin-top: 1.2rem;
  margin-right: 1rem;
}
.CustomerSupport .Content {
  flex: auto;
  position: relative;
}
.CustomerSupport .Content .Threads {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}
.CustomerSupport .Content .Threads h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin: 0;
  padding: 1rem;
  border-right: 1px solid #d8d8d8;
}
.CustomerSupport .Content .Threads h4.WaitingThreadsHeader {
  border-bottom: 1px solid #d8d8d8;
  font-weight: bold;
}
.CustomerSupport .Content .Threads h4.IdleThreadsHeader {
  border-top: 1px solid #d8d8d8;
  cursor: pointer;
  font-weight: 300;
}
.CustomerSupport .Content .Threads .Thread {
  margin: 1rem;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardIcon .UserIcon .FilledIcon {
  width: 42px;
  height: 42px;
  border-radius: 26px;
  background-color: #09a7a7;
  font-size: 20px;
  color: white;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardIcon .UserIcon .FilledIcon svg {
  position: relative;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardIcon .UserIcon .FilledIcon svg[data-icon="users"] {
  left: 12px;
  top: 8px;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardIcon .UserIcon .FilledIcon svg[data-icon="chalkboard-teacher"] {
  left: 7px;
  top: 10px;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardIcon .UserIcon.PayingUser .FilledIcon {
  background-color: #f8c14a;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardSubtitle .description {
  font-weight: 300;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardSubtitle .description .Category {
  color: #9e9e9e;
  margin-left: 4px;
}
.CustomerSupport .Content .Threads .Thread .InfoCard .InfoCardSubtitle .description .Category::before {
  content: '– ';
}
.CustomerSupport .Content .Threads .Thread .InfoCard .Badge > * {
  margin-right: 0.7rem;
  margin-left: 1rem;
}
.CustomerSupport .Content .Threads .WaitingThreads {
  flex: auto;
  border-right: 1px solid #d8d8d8;
  overflow-y: auto;
}
.CustomerSupport .Content .Threads .WaitingThreads .NoResults {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 300;
}
.CustomerSupport .Content .Threads .WaitingThreads::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.CustomerSupport .Content .Threads .IdleThreads {
  flex: auto;
  border-right: 1px solid #d8d8d8;
  display: none;
  overflow-y: auto;
}
.CustomerSupport .Content .Threads .IdleThreads .NoResults {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 300;
}
.CustomerSupport .Content .Threads .IdleThreads::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.CustomerSupport .Content .Threads.WithActiveThread {
  margin-right: 400px;
}
@media (min-width: 1920px) {
  .CustomerSupport .Content .Threads.WithActiveThread {
    margin-right: 500px;
  }
}
.CustomerSupport .Content .Threads.WithIdleThreads .WaitingThreadsHeader {
  cursor: pointer;
  font-weight: 300;
}
.CustomerSupport .Content .Threads.WithIdleThreads .WaitingThreads {
  display: none;
}
.CustomerSupport .Content .Threads.WithIdleThreads .IdleThreadsHeader {
  border-top: none;
  border-bottom: 1px solid #d8d8d8;
  font-weight: bold;
}
.CustomerSupport .Content .Threads.WithIdleThreads .IdleThreads {
  display: initial;
}
.ReportMenu-ReportPanel-Icon .ReportMenu-ReportPanel-Icon-Back {
  color: #4490b0;
}
.ReportMenu-ReportPanel-Icon .ReportMenu-ReportPanel-Icon-Front {
  color: #08c625;
}
.Reports .ReportHeaderIcon {
  font-size: 1.3em;
  padding: 10px;
  margin-right: 10px;
  border-radius: 25px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.Reports .ReportMenuFlexCol .ReportMenu {
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin: 10px;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.Reports .ReportMenuFlexCol .ReportMenu .ReportMenu-ReportPanel {
  border-radius: 17px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  font-size: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 175px;
  margin: 15px;
  line-height: 18px;
  text-transform: none;
  min-height: 114px;
}
.Reports .ReportMenuFlexCol .ReportMenu .ReportMenu-ReportPanel .ReportMenu-ReportPanel-Icon {
  font-size: 2.4em;
  margin-bottom: 10px;
}
.Reports .ReportMenuFlexCol .ReportMenu .ReportMenu-ReportPanel .ReportMenu-ReportPanel-Name {
  font-weight: bold;
}
.Reports .ReportMenuFlexCol-small .ReportMenu-small {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
.Reports .ReportMenuFlexCol-small .ReportMenu-small .ReportMenuSelect {
  position: relative;
  min-width: 240px;
  z-index: 2;
}
.Reports .ReportsContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.Reports .ReportsContainer .ReportComponent {
  width: 100%;
  flex: 1 1 auto;
}
.Reports .ReportsContainer .ReportComponent .instructions {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: rgba(255, 255, 200, 0.85);
  border: 1px solid rgba(155, 155, 100, 0.85);
  border-radius: 8px;
  padding: 5px 10px;
  margin: 10px 5px;
  line-height: 20px;
}
.Reports .ReportsContainer .ReportComponent .instructions .instructions-label {
  color: #222200;
  font-weight: bold;
  font-style: italic;
  margin-right: 10px;
}
.Reports .ReportsContainer .ReportComponent .instructions .instructions-text {
  color: #000000;
}
.Reports .ReportsContainer .ReportComponent .controlBar {
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 6px 12px;
  margin: 2px 10px;
  display: flex;
  flex-wrap: wrap;
}
.Reports .ReportsContainer .ReportComponent .controlBar .controlButton {
  margin: 5px;
}
.ReportMenuLabel {
  display: flex;
}
.ReportMenuLabel .ReportMenu-ReportPanel-Icon {
  margin-right: 10px;
}
.SpecialReports {
  padding: 25px;
}
.UserReports,
.MailingList {
  width: 100%;
  min-width: 340px;
}
.UserReports .PaperContainer,
.MailingList .PaperContainer {
  padding: 20px 25px;
  width: 100%;
}
.UserReports .header-info,
.MailingList .header-info {
  font-size: 90%;
  text-align: center;
  margin-top: 3rem;
  line-height: 1.75;
}
.UserReports .ReportTypeTitle,
.MailingList .ReportTypeTitle {
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
}
.UserReports .ReportTypeSubtitle,
.MailingList .ReportTypeSubtitle {
  text-align: center;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 80%;
  color: #666;
}
.UserReports .fullwidth.mtop,
.MailingList .fullwidth.mtop {
  margin-top: 2rem;
}
.UserReports .fullwidth.mbottom,
.MailingList .fullwidth.mbottom {
  margin-bottom: 2rem;
}
.UserReports .fullwidth .ReportTypeChart,
.MailingList .fullwidth .ReportTypeChart {
  display: flex;
  justify-content: center;
}
.UserReports .type-selector,
.MailingList .type-selector {
  margin-bottom: 1rem;
}
.UserReports .type-selector label,
.MailingList .type-selector label {
  font-size: 90%;
}
.UserReports .type-selector select.dropdown,
.MailingList .type-selector select.dropdown {
  margin-left: 0.6rem;
  font-size: 90%;
}
.UserReports .ReportData,
.MailingList .ReportData {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.UserReports .ReportData .ReportTypesList,
.MailingList .ReportData .ReportTypesList {
  flex: 0 0 auto;
  padding: 1px 20px;
  grid-row-gap: 5px;
  min-width: 310px;
  max-width: 500px;
}
.UserReports .ReportData .ReportTypesList .ReportTypeLabel,
.MailingList .ReportData .ReportTypesList .ReportTypeLabel {
  text-align: right;
  padding-right: 20px;
  height: 36px;
  font-weight: bold;
}
.UserReports .ReportData .ReportTypesList .ReportTypeCount,
.MailingList .ReportData .ReportTypesList .ReportTypeCount {
  text-align: center;
  font-weight: bold;
  padding-right: 20px;
  height: 36px;
}
.UserReports .ReportData .ReportTypesList .ReportTypePercentage,
.MailingList .ReportData .ReportTypesList .ReportTypePercentage {
  text-align: center;
  height: 36px;
}
.UserReports .ReportData .ReportTypesList .ReportType-total,
.MailingList .ReportData .ReportTypesList .ReportType-total {
  border-top: 1px solid #666666;
  padding-top: 15px;
}
.UserReports .ReportData .ReportTypeChart,
.MailingList .ReportData .ReportTypeChart {
  flex: 0 0 auto;
  padding: 1px 20px;
}
.UserReports .ReportTypeTable,
.MailingList .ReportTypeTable {
  width: 100%;
  max-width: 1100px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #ccc;
  color: #666;
}
.UserReports .ReportTypeTable.HeatMap,
.MailingList .ReportTypeTable.HeatMap {
  font-size: 11.5px;
  line-height: 1;
}
.UserReports .ReportTypeTable thead,
.MailingList .ReportTypeTable thead {
  border-bottom: 2px solid #999;
}
.UserReports .ReportTypeTable th,
.MailingList .ReportTypeTable th {
  text-align: center;
  border: none;
  padding: 3px;
}
.UserReports .ReportTypeTable.HeatMap tr:nth-of-type(12) td,
.MailingList .ReportTypeTable.HeatMap tr:nth-of-type(12) td {
  border-bottom: 1px dashed #ddd;
}
.UserReports .ReportTypeTable td,
.MailingList .ReportTypeTable td {
  text-align: center;
  padding: 3px;
}
.UserReports .ReportTypeTable td.head,
.MailingList .ReportTypeTable td.head {
  background-color: white !important;
  color: #666;
}
.UserReports .ReportTypeTable td.data,
.MailingList .ReportTypeTable td.data {
  border-left: 1px solid #ddd;
}
.UserReports .ReportTypeTable td.data:last-of-type,
.MailingList .ReportTypeTable td.data:last-of-type {
  border-left: 2px solid #999;
}
.UserReports .ReportTypeTable td.data.empty,
.MailingList .ReportTypeTable td.data.empty {
  background-color: white !important;
  color: #ccc;
}
.UserReports .ReportTypeTable.alignLeft th,
.MailingList .ReportTypeTable.alignLeft th,
.UserReports .ReportTypeTable.alignLeft td,
.MailingList .ReportTypeTable.alignLeft td {
  text-align: left;
}
.SalesReport {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  padding: 1.5rem;
  min-height: 100%;
}
.SalesReport .SalesReportHeader {
  display: flex;
  flex-direction: row;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #a9a5a5;
}
.SalesReport .SalesReportHeader .SalesReportInfo {
  flex: auto;
}
.SalesReport .SalesReportHeader .SalesReportInfo .SalesReportTitle {
  font-size: 29px;
  font-family: Roboto, serif;
}
@media screen and (min-width: 1281px) {
  .SalesReport .SalesReportHeader .SalesReportInfo .SalesReportTitle {
    font-size: 32px;
  }
}
.SalesReport .SalesReportHeader .SalesReportInfo .SalesReportSubtitle {
  font-size: 15px;
  font-family: Roboto, serif;
  font-weight: 300;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1281px) {
  .SalesReport .SalesReportHeader .SalesReportInfo .SalesReportSubtitle {
    font-size: 17px;
  }
}
.SalesReport .SalesReportHeader .SalesGenerateButton {
  align-self: center;
}
.SalesReport .NoReportText,
.SalesReport .NoResults {
  font-weight: 300;
  text-align: center;
  margin-top: 1.5rem;
}
.SalesReport .ReportSection {
  margin-top: 1.5rem;
}
.SalesReport.UsersRatingReport .SalesReportHeader .UsersRatingDatePicker {
  align-self: center;
}
.SalesReport.UsersRatingReport .SalesReportHeader .UsersRatingButton {
  align-self: center;
}
.SalesReport.UsersRatingReport .ReportSection .AverageRating {
  margin-bottom: 1rem;
  width: 300px;
}
.SalesReport.UsersRatingReport .ReportSection .AverageRating .AverageRatingInfo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.SalesReport.UsersRatingReport .ReportSection .AverageRating .AverageRatingInfo .AverageRatingValue {
  font-size: 36px;
  font-weight: bold;
}
.SalesReport.UsersRatingReport .ReportSection .AverageRating .AverageRatingInfo .AverageRatingIcon {
  font-size: 32px;
}
.SalesReport.UsersRatingReport .ReportSection .AverageRating .AverageRatingTitle {
  font-size: 22px;
}
.SalesReport.UsersRatingReport .ReportSection .UserRatings .UserRating + .UserRating {
  margin-top: 1rem;
}
.SalesReport.SalesMailingListReport .SalesReportHeader .SalesMailingListFilters {
  display: flex;
  flex-direction: row;
  margin: 0 1rem;
}
.SalesReport.SalesMailingListReport .SalesReportHeader .SalesMailingListFilters .SalesMailingListFilter .MuiInputBase-root.MuiInput-root.MuiInput-underline.MuiInputBase-formControl.MuiInput-formControl {
  width: 100px;
}
.SalesReport.SalesMailingListReport .SalesReportHeader .SalesMailingListFilters .SalesMailingListFilter + .SalesMailingListFilter {
  margin-left: 1.5rem;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable {
  width: 100%;
  max-width: 1100px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #ccc;
  color: #666;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable thead,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable thead {
  border-bottom: 2px solid #999;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable th,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable th {
  text-align: center;
  border: none;
  padding: 3px;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable .TableDataRow,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable .TableDataRow {
  cursor: pointer;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable .TableDataRow:hover,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable .TableDataRow:hover {
  background-color: #cccccc;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable td,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable td {
  text-align: center;
  padding: 3px;
}
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable.alignLeft th,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable.alignLeft th,
.SalesReport.SalesMailingListReport .ReportSection .ReportTypeTable.alignLeft td,
.SalesReport.SubscriptionReport .ReportSection .ReportTypeTable.alignLeft td {
  text-align: left;
}
.SalesReport.AccountsReport .ReportSection {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.SalesReport.AccountsReport .ReportSection .UpgradeReportCards {
  margin-top: 3rem;
}
.SalesReport.AccountsReport .ReportSection .DailyAccountsChart {
  margin-top: 3rem;
}
.SalesReport.AccountsReport .ReportSection .TotalAccountsCreatedPerTypeTable {
  margin-top: 3rem;
}
.SignUpsAndUpgrades {
  width: 100%;
  min-width: 340px;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer {
  padding: 20px 25px;
  width: 100%;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .BlockTitle {
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: bold;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData {
  display: flex;
  justify-content: center;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData .ReportTypesList {
  flex: 0 0 auto;
  padding: 1px 20px;
  grid-row-gap: 5px;
  min-width: 310px;
  max-width: 500px;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData .ReportTypesList .ReportTypeLabel {
  text-align: right;
  padding-right: 20px;
  height: 36px;
  font-weight: bold;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData .ReportTypesList .ReportTypeCount {
  text-align: center;
  font-weight: bold;
  padding-right: 20px;
  height: 36px;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData .ReportTypesList .ReportTypePercentage {
  text-align: center;
  height: 36px;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData .ReportTypesList .ReportType-total {
  border-top: 1px solid #666666;
  padding-top: 15px;
}
.SignUpsAndUpgrades .SignUpsAndUpgradesPaperContainer .DataBlock .ReportData .ReportTypeChart {
  flex: 0 0 auto;
  padding: 1px 20px;
}
.CommonReportClasses .ReportOptions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}
.CommonReportClasses .ReportOptions .ReportInput {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  margin: 10px;
  width: 260px;
}
.CommonReportClasses .ReportOptions .ReportInput .OptionInput {
  flex: 1 1 auto;
  position: relative;
}
.CommonReportClasses .ReportButtonBar {
  width: 100%;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.CommonReportClasses .ReportButtonBar > * {
  margin: 0 5px;
}
.CommonReportClasses .ReportError {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.CommonReportClasses .ReportError .ReportErrorTitle {
  font-weight: bold;
  color: #aa0000;
}
.CommonReportClasses .ReportError .ReportErrorMessage {
  color: #550000;
  margin-top: 10px;
}
.CommonReportClasses .ReportNoResults {
  font-weight: bold;
  margin: 0 20px 15px 20px;
  color: #8C5900;
  display: block;
  text-align: center;
  width: 100%;
}
/* Media Prints */
@media print {
  -webkit-print-color-adjust: exact;
  .reporting-module {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .reporting-module .no-display-on-print {
    display: none !important;
  }
  .reporting-module .reports-report-panel {
    margin-top: 10px;
    margin-bottom: 100px;
    height: 100% !important;
    background: #fafafa !important;
  }
  .reporting-module .reports-report-panel .reports-report-body {
    min-height: 100%;
    height: 100% !important;
    background-color: #fafafa !important;
  }
  .reporting-module .reports-report-panel .reports-report-body .reports-class-progress-report .progress,
  .reporting-module .reports-report-panel .reports-report-body .reports-student-progress-report .progress {
    display: none !important;
  }
  .reporting-module .reports-report-panel .reports-report-body .reports-class-progress-report .progress-hidden-span,
  .reporting-module .reports-report-panel .reports-report-body .reports-student-progress-report .progress-hidden-span {
    display: inline-block;
    margin-left: 15px;
  }
  .reporting-module .reports-report-panel .reports-report-body .table.no-border tr td,
  .reporting-module .reports-report-panel .reports-report-body .table.no-border tr th {
    background: #fafafa !important;
    align-items: center;
    text-align: center;
    border-width: 0;
  }
  .reporting-module .reports-report-panel .reports-report-body .progress {
    -webkit-print-color-adjust: exact;
    border-radius: 16.5px;
    height: 15px;
    text-align: center;
    margin: 5px;
  }
  .reporting-module .reports-report-panel .reports-report-body .progress .progress-bar {
    width: inherit;
    background: #107474;
    font-size: 10px;
  }
  .reporting-module .reports-report-panel .reports-report-body .progress .progress-info p {
    font-size: 14px;
    font-weight: bold;
  }
  .reporting-module .reports-report-panel .reports-report-body .reports-student-class-list .DataTableContainer {
    width: 100%;
    text-overflow: ellipsis;
  }
  .reporting-module .reports-report-panel .reports-report-body .reports-student-class-list .DataTableContainer .headerCell {
    padding: 0;
  }
  .reporting-module .reports-report-panel .reports-report-body .reports-student-class-list .DataTableContainer .headerCell .sortCaret {
    display: none !important;
  }
  .reporting-module .reports-report-panel .reports-report-body .reports-student-class-list .DataTableTopControlRow {
    display: none !important;
  }
}
.UsersRatingReport .MuiCard-root.ActiveInfoCard {
  opacity: 0.2;
}
.opaqueDisabled .DNewInput-Input {
  opacity: 1 !important;
}
.Demo {
  background-color: #f5f5f5 !important;
  padding: 0 0 1px 0;
  max-width: unset;
  background-repeat: repeat;
}
.Demo .WelcomeSection {
  background-color: #2c2736;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 400px;
  margin-bottom: 10px;
}
.Demo .WelcomeSection .WelcomeTextParentContainer {
  position: relative;
  flex: 1 1 auto;
  z-index: 1;
  height: 100%;
  padding: 20px 50px;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  transform-origin: left center;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer {
  max-height: calc(100vh * 0.7);
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextTop {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 25%;
  flex-direction: column;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextTop .WelcomeTitle {
  font-size: 3em;
  margin-bottom: 5px;
  text-shadow: 2px 2px 2px #000000, 2px 2px 2px #000000;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextTop .WelcomeDate {
  text-transform: uppercase;
  text-shadow: 2px 2px 2px #000000, 2px 2px 2px #000000;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextMiddle {
  display: flex;
  height: 25%;
  align-items: center;
  justify-content: flex-start;
  min-height: 160px;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextMiddle .WelcomeStartCodingButton {
  font-size: 2em;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextBottom {
  display: flex;
  height: 50%;
  align-items: center;
  justify-content: flex-start;
  max-width: 300px;
}
.Demo .WelcomeSection .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextBottom .WelcomeTextDescriptionContainer {
  text-align: left;
}
.Demo .WelcomeSection .WelcomeBar {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  min-height: 10vh;
  background-color: rgba(63, 192, 187, 0.75);
}
.Demo .WelcomeSection .WelcomeBar .WelcomeBarIcon {
  color: #ffffff;
  font-size: 2em;
  margin: 16px 2px 5px 2px;
}
.Demo .WelcomeSection .WelcomeBar .WelcomeBarText {
  font-size: 1em;
  color: #ffffff;
  margin: 5px 2px 16px 2px;
  white-space: normal;
  text-align: center;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer {
  transform-origin: center;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer {
  align-items: center;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextTop {
  align-items: center;
  justify-content: center;
  height: 33%;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextTop .WelcomeTitle {
  align-items: center;
  text-shadow: 2px 2px 2px #000000, 2px 2px 2px #000000, 0 0 8px #000000, 0 0 8px #000000;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextTop .WelcomeDate {
  align-items: center;
  text-shadow: 2px 2px 2px #000000, 2px 2px 2px #000000, 0 0 8px #000000, 0 0 8px #000000;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextMiddle {
  align-items: center;
  height: 33%;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextMiddle .WelcomeStartCodingButton {
  box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.9);
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextBottom {
  align-items: center;
  justify-content: center;
  height: 33%;
  max-width: 85%;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextBottom .WelcomeTextDescriptionContainer {
  background-color: rgba(44, 40, 54, 0.95);
  padding: 16px 20px;
  border-radius: 20px;
  text-align: center;
}
.Demo .WelcomeSectionSmall .WelcomeTextParentContainer .WelcomeTextContainer .WelcomeTextBottom .WelcomeTextDescriptionContainer .WelcomeDescription {
  text-align: center;
}
.Demo .Courses {
  margin-top: 30px;
  max-width: 1200px;
  justify-content: center;
}
.Demo .WhatIsHourOfCode {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 1200px;
}
.Demo .AfterResources {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  max-width: 1200px;
}
.Demo .AfterResources .AfterResourcesTextContainer {
  display: block;
  width: 100%;
}
.Demo .AfterResources .AfterResourcesTextContainer .AfterResourcesTitle {
  display: block;
  color: #007464;
  font-size: 1.3em;
  margin-bottom: 20px;
  width: 100%;
  font-weight: bold;
}
.Demo .AfterResources .AfterResourcesTextContainer .AfterResourcesDescription {
  display: block;
  width: 100%;
}
.Demo .AfterResources .AfterResourcesTextContainer .AfterResourcesLearnMore {
  margin: 20px 0 0 0;
}
.Demo .AfterResources .smallMode .AfterResourcesTextContainer .AfterResourcesLearnMore {
  margin: 20px auto 0 auto;
}
.Demo .AfterResources .AfterResourcesImage {
  width: 300px;
  height: auto;
}
.Demo .CardsWrapper {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 30px;
}
.Demo .CardsWrapper .CardsContainer {
  flex: 1 1 auto;
  margin: 5px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.Demo .CardsWrapper .CardsContainer .CardPlaceholder {
  flex: 0 0 auto;
  margin: 0 15px 0 15px;
  width: 250px;
  height: 1px;
  opacity: 0;
}
.Demo .CardsLoadingError {
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 10px 30px 10px;
  white-space: pre;
  text-align: center;
  width: 100%;
  font-size: 1.5em;
  color: #990000;
  font-weight: bold;
}
.CourseCard {
  position: relative;
  flex: 0 0 auto;
  margin: 40px 15px 5px 15px;
  width: 250px;
  height: 410px;
}
.CourseCard .CourseCardButton {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  border-radius: 28px;
}
.CourseCard .CourseCardButton > * {
  text-transform: none;
}
.CourseCard .CourseCardButton > span:first-child {
  position: relative;
  height: 100%;
}
.CourseCard .CourseCardButton > span:last-child {
  overflow: hidden;
}
.CourseCard .CourseCardButton > span:last-child * {
  border-radius: 80px !important;
  height: calc(100% + 60px);
  top: -30px;
}
.CourseCard .CourseCardButton.deactivated {
  pointer-events: none;
}
.CourseCard .CourseCardButton.CourseCard .CourseCardButton .DButton {
  align-items: flex-start;
}
.CourseCard .CourseCardButton .CardImage {
  position: relative;
  flex: 0 0 auto;
  width: 258px;
  height: 165px;
  margin: -28px -4px -10px 0;
}
.CourseCard .CourseCardButton .CardProgress {
  height: 40px;
  margin-top: -20px;
  width: calc(100% - 6px);
  background-color: #f5f5f5;
  overflow: hidden;
}
.CourseCard .CourseCardButton .CardProgress .CardProgressFill {
  height: 40px;
}
.CourseCard .CourseCardButton .CardImageCaption {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px 5px 10px;
  font-size: 0.9em;
  flex-wrap: nowrap;
  overflow: hidden;
}
.CourseCard .CourseCardButton .CardImageCaption .CardTarget {
  flex: 1 1 auto;
  text-align: left;
}
.CourseCard .CourseCardButton .CardImageCaption .CardPlatformContainer {
  flex: 0 0 auto;
}
.CourseCard .CourseCardButton .CardImageCaption .CardPlatformContainer .CardPlatformIcon {
  margin: 1px 3px;
}
.CourseCard .CourseCardButton .CardTitle {
  flex: 0 0 auto;
  font-weight: bold;
  margin: 15px 10px 10px 10px;
  line-height: 20px;
  color: #1a1a1a;
}
.CourseCard .CourseCardButton .CardActivities {
  flex: 0 0 auto;
  font-size: 0.86em;
  font-style: italic;
  margin: 5px;
  color: #1a1a1a;
}
.CourseCard .CourseCardButton .CardDescription {
  flex: 1 1 auto;
  margin: 5px 10px;
  line-height: 20px;
  color: #1a1a1a;
}
.CourseCard .CourseCardButton .CardLearnMoreButton {
  flex: 0 0 auto;
  border-radius: 50px;
  padding: 4px 16px;
  background-color: #47a85e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px 20px 20px 20px;
}
.ClassListNameCell {
  width: 100%;
  overflow: hidden;
}
.ClassListNameCell .ClassListName {
  text-overflow: ellipsis;
  font-weight: bold;
}
.ClassListNameCell .ClassListCurriculumDescription {
  white-space: normal;
  font-size: 0.8em;
  line-height: 18px;
  margin-top: 5px;
}
.ClassListIconCell {
  padding: 0 10px;
  text-align: center;
}
.ClassListIconCell .goButton {
  border-radius: 50px;
  padding: 0 10px;
  min-width: 50px;
}
.ClassListIconCell .selectButton {
  border-radius: 50px;
  padding: 0 10px;
  min-width: 50px;
  font-size: 1.4em !important;
}
.ClassListIconCell .ClassListIcon {
  font-size: 1.4em;
}
.ClassListIconCell .ClassListIcon .ClassListIconImage {
  width: 42px;
  height: 42px;
  border-radius: 100px;
}
.ClassListIconCell .ClassListIconText {
  font-size: 0.6em;
  text-align: center;
  white-space: pre;
}
.ClassListIconCell .ComingSoon {
  color: #0066aa;
}
.ClassListIconCell .Disabled {
  color: #ff3300;
}
.ClassListTopContainer {
  margin-bottom: 10px;
}
.ClassListTopContainer .createClassTip {
  font-size: 1.5em;
  font-weight: 300;
}
.ClassListTopContainer .CreateClassButtonContainer .AddStudentsButton {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.2em;
  font-weight: bold;
}
.ClassListTopContainer .CreateClassButtonContainer .AddStudentsButton .DLabel-spacer {
  width: 15px;
}
.ClassListTopContainer .CreateClassButtonContainer .CreateClassButtonRoot {
  max-width: 100%;
  overflow: hidden;
}
.ClassListTopContainer .CreateClassButtonContainer .CreateClassButton {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.5em;
  font-weight: bold;
}
.ClassListTopContainer .CreateClassButtonContainer .CreateClassButton .DLabel-spacer {
  width: 15px;
}
.ComingSoonDialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.ComingSoonDialog .ComingSoonDialog-TopIcon {
  margin: 0 auto 30px auto;
  font-size: 3em;
  color: #0066aa;
}
.ComingSoonDialog .ComingSoonDialog-ClassName {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
.ComingSoonDialog .ComingSoonDialog-LongDescription {
  font-size: 90%;
  line-height: 1.7;
  text-align: justify;
}
.PremiumContentDialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.PremiumContentDialog .PremiumContentDialog-ClassName {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
.PremiumContentDialog .PremiumContentDialog-LongDescription {
  margin-bottom: 30px;
}
.PremiumContentDialog .PremiumContentDialog-PostDescription {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  color: #107410;
}
.CreateClass .tableContentWrapper {
  border-radius: 16.5px;
  padding: 25.81px;
  background-color: rgba(0, 0, 0, 0.15);
}
.CreateClass .tableContentWrapper .CreateButtonArea {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
.CreateClass .tableContentWrapper .CreateButtonArea .CreateButton {
  border-radius: 4px;
}
.CreateClass .tableContentWrapper .Instructions {
  margin: 0 10px 10px 10px;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.05em;
}
.CreateClass .tableContentWrapper .InputContainer {
  border-radius: 16.5px;
  padding: 25.81px;
  background-color: #ffffff;
  margin-bottom: 20px;
}
.CreateClass .tableContentWrapper .InputContainer .InputWrapper {
  margin-bottom: 10px;
}
.CreateClass .tableContentWrapper .InputContainer .InputWrapper .CreateClassInput input {
  cursor: pointer !important;
}
.CreateClass .tableContentWrapper .InputContainer .InputWrapper .classDescription {
  margin-top: 10px;
}
.Upgrade:not(.StartTrial) {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Upgrade:not(.StartTrial) .PlanBoxes .PlanCol {
  margin: 10px;
}
.Upgrade .Instructions {
  margin: 0 10px 40px 10px;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.35em;
}
.Upgrade .PlanBoxes {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  padding: 0.5rem;
}
.Upgrade .PlanBoxes .PlanCol {
  display: flex;
  width: 350px;
  padding: 0 1rem;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
  background-color: #ffffff;
  border: 1px #b9b9b9 solid;
  z-index: 5;
  -webkit-transform-origin: "center center";
  -moz-transform-origin: "center center";
  -ms-transform-origin: "center center";
  transform-origin: "center center";
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: "transform";
  transition-property: "transform";
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: "ease-out";
  transition-timing-function: "ease-out";
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanTitle {
  font-size: 1.3em;
  font-weight: bold;
  width: 100%;
  padding: 10px;
  color: #ffffff;
  text-transform: uppercase;
  flex: 0 0 auto;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: #5bc1c2;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanTitle.MonthlyPlan {
  background-color: #f37b20;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .SaveBanner {
  position: absolute;
  top: 30px;
  right: -17px;
  /* transform: rotate(45deg); */
  color: black;
  font-size: 0.9em;
  font-weight: bold;
  padding: 6px 15px;
  transform-origin: center;
  z-index: 999;
  width: 118px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .SaveBanner img {
  position: absolute;
  top: 0;
  left: 0;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .SaveBanner span {
  position: relative;
  top: 12px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  margin: 2px 10px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanSwitchLabel {
  color: #135f6f;
  font-size: 0.8em;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanSwitchLabelLeft {
  justify-self: right;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer {
  position: relative;
  transform-origin: center;
  transform: scale(1.6);
  margin: 0 12px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div {
  position: relative;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label {
  padding: 0;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label > span > span > span:first-child {
  color: #fbc02d;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label > span > :last-child {
  border-radius: 15px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label > span > span > span:last-child * {
  box-shadow: none;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label > span > span:first-child:hover {
  background-color: transparent;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label > span > span > span > span {
  box-shadow: 0 0 3px 0 rgba(255, 255, 255, 0.7), 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.21), 0 2px 1px -1px rgba(0, 0, 0, 0.13), inset 1px 1px 0px 1px rgba(255, 255, 255, 0.7), inset -1px -1px 0px 0.25px rgba(0, 0, 0, 0.2);
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanSwitchContainer .PlanFrequencySwitchContainer > div > label > span > span:last-child {
  background-color: rgba(35, 18, 6, 0.4);
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .ExtensionEnds {
  display: block;
  margin-top: 25px;
  margin-bottom: 5px;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  color: #c10303;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanRegularly {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 5px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanRegularly .PlanRegularlyText {
  color: #666666;
  margin-right: 5px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanRegularly .PlanRegularlyPrice {
  color: #666666;
  text-decoration: line-through;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanPriceContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanPriceContainer .PlanPrice {
  font-size: 1.8em;
  color: #135f6f;
  flex: 0 0 auto;
  font-weight: bold;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanPriceContainer .PlanFrequency {
  text-align: left;
  white-space: pre;
  margin-left: 6px;
  font-size: 0.8em;
  flex: 0 0 auto;
  color: #135f6f;
  font-weight: bold;
  line-height: 14px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanBilledContainer {
  width: 100%;
  margin-top: 5px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanBilledContainer .PlanBilled {
  font-size: 1em;
  color: #407d8a;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanQuantityContainer {
  width: 100%;
  margin-top: 5px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanQuantityContainer .PlanQuantity {
  font-size: 1em;
  color: #407d8a;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanDescriptionContainer {
  display: block;
  flex: 0 0 auto;
  margin: 10px 10px 10px 10px;
  text-align: center;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanDescriptionContainer .PlanDescription {
  display: inline-block;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .IndividualPremiumDescriptionContainer {
  margin-top: 17px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanEnterpriseDescriptionContainer {
  font-size: 0.9em;
  margin-top: 17px;
  margin-bottom: 0;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanEnterpriseEnterpriseDescriptionContainer {
  margin-top: 22px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanQuoteButtonContainer {
  display: flex;
  justify-content: center;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanContent .PlanQuoteButtonContainer .PlanQuoteButton {
  min-height: 12px;
  font-size: 0.75em;
  padding: 1px 6px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanBoxButtons {
  flex: 0 0 auto;
  margin-bottom: 20px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanBoxButtons .PlanBoxButton {
  width: 100%;
  max-width: 170px;
  flex: 0 0 auto;
  margin: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: 42px;
  padding: 0 2px;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanBoxButtons .PlanBoxButton .ButtonIcon {
  flex: 0 0 auto;
  font-size: 38px;
  font-weight: bold;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .PlanBoxButtons .PlanBoxButton .ButtonText {
  text-align: center;
  flex: 1 1 auto;
  font-size: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Upgrade .PlanBoxes .PlanCol .PlanBox .IndividualPremiumButtons {
  margin-top: 20px;
}
.Upgrade .PlanBoxes .PlanCol .SelectedBox {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.Upgrade .PlanBoxes .PlanCol .SelectedBox .PlanTitle {
  background-color: #f37b20;
}
.Upgrade .PlanBoxes .PlanCol .IndividualPremium {
  width: 600px;
}
.Upgrade .PlanBoxes .PlanCol .IndividualPremiumYearly .PlanContent .PlanPriceContainer {
  margin-top: 15px;
}
.Upgrade .PlanBoxes .PlanCol .IndividualPremiumWithCountDown {
  min-height: 354px;
}
.Upgrade .PlanBoxes .PlanCol .IndividualPremiumWithCountDown .IndividualPremiumButtons {
  margin-top: 0;
}
.Upgrade .PlanBoxes .PlanCol .PlanFillerContent {
  padding: 15px 20px 5px 20px;
  font-size: 1.3em;
  text-align: center;
  color: #135f6f;
  width: 100%;
}
.Upgrade .PlanBoxes .PlanCol .EnterpriseEnterprise {
  height: 310px;
}
.Upgrade .PlanBoxes .PlanCol .EnterpriseClassroom {
  height: 310px;
}
.Upgrade .PlanFeatures {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  padding-top: 1rem;
  padding-right: 1rem;
  margin-bottom: -1rem;
}
.Upgrade .PlanFeatures .PlanFeatureItem {
  display: flex;
  flex-direction: row;
}
.Upgrade .PlanFeatures .PlanFeatureItem .CircleCheck {
  position: relative;
  top: 3px;
  font-size: 0.9em;
  margin-right: 9px;
  color: #5bc1c2;
}
.Upgrade .PlanFeatures .PlanFeatureItem + .PlanFeatureItem {
  margin-top: 0.5rem;
}
.ConfirmEmail {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 700px;
}
@media (max-width: 767.98px) {
  .ConfirmEmail {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.ConfirmEmail .ConfirmEmailContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ConfirmEmail .ConfirmEmailContent .ReturnToLoginButton {
  width: 100%;
  margin-top: 1rem;
}
.ConfirmEmailHelp {
  font-size: 80%;
  text-align: center;
  line-height: 1.5;
  color: #828282;
}
.SelectClass,
.ManageClasses,
.CreateClass,
.ClassList {
  /* Taken from ClassList.less */
}
.SelectClass .EmptyResults,
.ManageClasses .EmptyResults,
.CreateClass .EmptyResults,
.ClassList .EmptyResults {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  border-radius: 10px;
  border: 1px solid #a39591;
  text-align: center;
}
.SelectClass .EmptyResults .EmptyText,
.ManageClasses .EmptyResults .EmptyText,
.CreateClass .EmptyResults .EmptyText,
.ClassList .EmptyResults .EmptyText {
  font-weight: 300;
  font-size: 34px;
  line-height: 110px;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid,
.CreateClass .DataTable .DataTableContainer .DataTableGrid,
.ClassList .DataTable .DataTableContainer .DataTableGrid {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid.ProgressLimiterTable,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid.ProgressLimiterTable,
.CreateClass .DataTable .DataTableContainer .DataTableGrid.ProgressLimiterTable,
.ClassList .DataTable .DataTableContainer .DataTableGrid.ProgressLimiterTable,
.SelectClass .DataTable .DataTableContainer .DataTableGrid.ClassListTable,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid.ClassListTable,
.CreateClass .DataTable .DataTableContainer .DataTableGrid.ClassListTable,
.ClassList .DataTable .DataTableContainer .DataTableGrid.ClassListTable {
  grid-template-columns: auto 1fr auto auto;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataGridCell,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataGridCell,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataGridCell,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataGridCell {
  display: flex;
  align-items: center;
  justify-content: center;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell {
  padding: 20px;
  border-bottom: 1px solid #BABABA;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage {
  width: 42px;
  height: 42px;
  border-radius: 26px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon {
  background-color: #09a7a7;
  font-size: 20px;
  color: white;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon svg,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon svg,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon svg,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon svg {
  position: relative;
  left: 7px;
  top: 10px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Creative svg,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Creative svg,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Creative svg,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Creative svg {
  left: 11px;
  top: 9px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled {
  background-color: #f6c13d;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled svg,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled svg,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled svg,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage.FilledIcon.Disabled svg {
  font-size: 42px;
  position: relative;
  top: 0;
  left: 0;
  opacity: 0.85;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconText,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconText,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconText,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconText {
  font-size: 14px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell {
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #BABABA;
  position: relative;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.NoPaddingLeft,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.NoPaddingLeft,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.NoPaddingLeft,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.NoPaddingLeft {
  padding-left: 0;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo {
  width: 100%;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName {
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 16px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .ClassName,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .ClassName,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .ClassName,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .ClassName {
  color: black;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName {
  font-weight: normal;
  color: #666;
  font-size: 15px;
  margin-left: 4px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName::before,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName::before,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName::before,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableName .CourseName::before {
  content: '– ';
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .CoursePrerequisite,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .CoursePrerequisite,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .CoursePrerequisite,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .CoursePrerequisite {
  color: gray;
  font-size: 14px;
  margin-top: 4px;
  font-weight: normal;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription {
  color: black;
  text-overflow: ellipsis;
  font-weight: normal;
  font-size: 14px;
  margin-top: 4px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassDescription,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassDescription,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassDescription,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassDescription,
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassCourses,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassCourses,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassCourses,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassCourses,
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassSharing,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassSharing,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassSharing,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell .DataTableInfo .DataTableDescription .ClassSharing {
  margin-top: 0.5rem;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell {
  padding: 20px;
  border-bottom: 1px solid #BABABA;
  position: relative;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton {
  min-width: 170px;
}
@media (min-width: 1024px) {
  .SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton,
  .ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton,
  .CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton,
  .ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .DButton {
    min-width: 220px;
  }
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton {
  border-radius: 4px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton.selected,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton.selected,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton.selected,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .GoButton.selected {
  color: #ffffff !important;
  border-color: #e87625 !important;
  background-color: #e87625 !important;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton,
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton {
  border-radius: 4px;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton[disabled] svg,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton[disabled] svg,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton[disabled] svg,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ProgressButton[disabled] svg,
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton[disabled] svg,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton[disabled] svg,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton[disabled] svg,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell .CellButtons .ViewSharedGamesButton[disabled] svg {
  opacity: 0.25;
}
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.BorderRight::after,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.BorderRight::after,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.BorderRight::after,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableInfoGridCell.BorderRight::after,
.SelectClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell.BorderRight::after,
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell.BorderRight::after,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell.BorderRight::after,
.ClassList .DataTable .DataTableContainer .DataTableGrid .DataTableButtonGridCell.BorderRight::after {
  content: '';
  position: absolute;
  width: 0;
  border-right: 1px solid #BABABA;
  top: 20px;
  bottom: 20px;
  right: 0;
}
.SelectClass .ComingSoonDialog,
.ManageClasses .ComingSoonDialog,
.CreateClass .ComingSoonDialog,
.ClassList .ComingSoonDialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.SelectClass .ComingSoonDialog .ComingSoonDialog-TopIcon,
.ManageClasses .ComingSoonDialog .ComingSoonDialog-TopIcon,
.CreateClass .ComingSoonDialog .ComingSoonDialog-TopIcon,
.ClassList .ComingSoonDialog .ComingSoonDialog-TopIcon {
  margin: 0 auto 30px auto;
  font-size: 3em;
  color: #0066aa;
}
.SelectClass .ComingSoonDialog .ComingSoonDialog-ClassName,
.ManageClasses .ComingSoonDialog .ComingSoonDialog-ClassName,
.CreateClass .ComingSoonDialog .ComingSoonDialog-ClassName,
.ClassList .ComingSoonDialog .ComingSoonDialog-ClassName {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
.SelectClass .ComingSoonDialog .ComingSoonDialog-LongDescription,
.ManageClasses .ComingSoonDialog .ComingSoonDialog-LongDescription,
.CreateClass .ComingSoonDialog .ComingSoonDialog-LongDescription,
.ClassList .ComingSoonDialog .ComingSoonDialog-LongDescription {
  font-size: 90%;
  line-height: 1.7;
  text-align: justify;
}
.ManageClasses .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage,
.CreateClass .DataTable .DataTableContainer .DataTableGrid .DataTableIconGridCell .DataTableIcon .DataTableIconImage {
  width: initial;
  height: 50px;
  border-radius: 0;
}
.CreateClass .CreateButtonArea .DButton[disabled] {
  color: rgba(17, 17, 17, 0.5);
  border-color: rgba(232, 118, 37, 0.55);
  background-color: rgba(232, 118, 37, 0.35);
}
.CoursePage .CoursesAnnouncement {
  margin-bottom: 1.5rem;
}
.CoursePage .CoursesAchievements {
  margin-bottom: 3rem;
}
.CoursePage .CoursesAchievements .MuiCardContent-root:last-child {
  padding-bottom: 16px;
}
.CoursePage .CoursesAchievements .CoursesAchievementsContent {
  display: flex;
  align-items: center;
  justify-content: center;
}
.CoursePage .CoursesAchievements .CoursesAchievementsContent .CoursesExtraButton {
  margin-right: 1rem;
}
.CoursePage .CoursesAchievements .CoursesAchievementsContent .CoursesAchievementsProgress {
  width: 100%;
}
.CoursePage:not(.HourOfCodePage) .CourseListCard:last-of-type {
  margin-bottom: 2.5rem;
}
.CoursesAnnouncementModal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.CoursesAnnouncementModal .CoursesAnnouncementModalColumn {
  margin: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 0;
}
.CoursesAnnouncementModal .CoursesAnnouncementModalColumn .CoursesAnnouncementModalImage {
  margin-bottom: 1.5rem;
}
.CoursesAnnouncementModal .CoursesAnnouncementModalColumn .CoursesAnnouncementModalImage > img {
  width: 160px;
  border: 1px solid #585858;
  border-radius: 4px;
}
@media (min-width: 1000px) {
  .CoursesAnnouncementModal .CoursesAnnouncementModalColumn .CoursesAnnouncementModalImage > img {
    width: 200px;
  }
}
.CoursesAnnouncementModal .CoursesAnnouncementModalColumn .CoursesAnnouncementModalTitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.CoursesAnnouncementModal .CoursesAnnouncementModalColumn .CoursesAnnouncementModalSubtitle {
  font-weight: 300;
  font-size: 85%;
}
@media (min-width: 1000px) {
  .CoursesAnnouncementModal .CoursesAnnouncementModalColumn .CoursesAnnouncementModalSubtitle {
    font-size: 100%;
  }
}
.CompetitionPage.Section {
  max-width: 960px;
}
.CompetitionPage .PageHeader .Title {
  font-weight: bold;
  font-size: 34px;
  color: #2a363b;
  text-align: center;
  text-transform: uppercase;
  margin-top: 2rem;
}
.CompetitionPage .PageHeader .Subtitle {
  font-weight: normal;
  font-size: 21px;
  color: #2a363b;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.CompetitionPage .PageHeader .Navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1.5rem;
}
.CompetitionPage .PageHeader .Navigation .CompetitionBackButton {
  color: #da1205;
}
.CompetitionPage .EmptyResults {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  border-radius: 10px;
  border: 1px solid #a39591;
  text-align: center;
  margin-top: 2rem;
}
.CompetitionPage .EmptyResults .EmptyText {
  font-weight: 300;
  font-size: 34px;
  line-height: 110px;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.CompetitionPage .CompetitionActions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 3rem;
}
.CompetitionPage .CompetitionActions .Action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 295px;
}
.CompetitionPage .CompetitionActions .Action .ActionContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.5rem;
}
.CompetitionPage .CompetitionActions .Action .ActionContent .Title {
  font-weight: bold;
  font-size: 37px;
  color: #2a363b;
  text-align: center;
  margin-top: 2.5rem;
  text-transform: uppercase;
}
.CompetitionPage .CompetitionActions .Action .ActionContent .Subtitle {
  font-weight: normal;
  font-size: 14px;
  color: #2a363b;
  text-align: center;
  margin-top: 0.5rem;
}
.CompetitionPage .CompetitionActions .Action.Disabled {
  opacity: 0.5;
}
.CompetitionPage .CompetitionActions .Action:not(.Disabled) .Icon {
  filter: invert(64%) sepia(13%) saturate(1090%) hue-rotate(324deg) brightness(100%) contrast(123%);
}
.CompetitionPage .CompetitionActions[data-ui-locale="zh-CN"] .Action .Title {
  font-size: 47px;
}
.CompetitionPage .CompetitionActions[data-ui-locale="zh-CN"] .Action .Subtitle {
  margin-top: 0.75rem;
}
.CompetitionPage .CompetitionLeaderboard {
  margin-top: 1.5rem;
}
.CompetitionPage .CompetitionLeaderboard .EmptyResults {
  margin-top: 0;
}
.CompetitionPage .CompetitionLeaderboard .LeaderboardResults .MuiTableHead-root .MuiTableCell-head {
  font-weight: bold;
  text-transform: uppercase;
}
.CompetitionPage .CompetitionLeaderboard .LeaderboardResults .MuiTableBody-root .MuiTableRow-root:nth-of-type(even) {
  background-color: #fdfdfd;
}
.CompetitionPage .CompetitionLeaderboard .LeaderboardResults .MuiTableBody-root .Winner svg {
  color: #fa2618;
  margin-left: 0.5rem;
}
.CompetitionPage .CompetitionLeaderboard .LeaderboardResults .MuiTableBody-root .Winner .MuiTableCell-body {
  font-weight: bold;
}
.CompetitionPage .CompetitionLeaderboard .LeaderboardResults .MuiTableBody-root .Self .MuiTableCell-body {
  font-weight: bold;
  color: #fa2618;
}
.CompetitionPage .CompetitionFooter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.CompetitionPage .CompetitionFooter .CompetitionRulesButton,
.CompetitionPage .CompetitionFooter .CompetitionBackButton {
  color: #da1205;
}
.CompetitionRulesModal .MuiDialogContent-root {
  max-height: 460px;
}
.CompetitionRulesModal .ModalContent ol {
  display: block;
  position: relative;
}
.CompetitionRulesModal .ModalContent ol.Sections {
  counter-reset: section;
  padding-left: 1rem;
}
.CompetitionRulesModal .ModalContent ol.Sections .SectionTitle {
  text-transform: uppercase;
  font-weight: bold;
}
.CompetitionRulesModal .ModalContent ol.Sections li {
  counter-increment: section;
  list-style-type: none;
}
.CompetitionRulesModal .ModalContent ol.Sections li:before {
  content: counters(section, ".", upper-alpha) ".";
  position: absolute;
  margin-right: 100%;
  right: -1rem;
  font-weight: bold;
}
.CompetitionRulesModal .ModalContent ol.Rules {
  counter-reset: rule;
  padding-left: 0.5rem;
  font-size: 14px;
}
.CompetitionRulesModal .ModalContent ol.Rules li {
  counter-increment: rule;
  list-style-type: none;
  margin-top: 1rem;
  font-weight: normal;
}
.CompetitionRulesModal .ModalContent ol.Rules li:before {
  content: counters(section, ".", upper-alpha) "." counters(rule, ".", decimal) ".";
  position: absolute;
  margin-right: 100%;
  right: 0;
  font-weight: normal;
}
.CompetitionRulesModal .ModalContent .Footer {
  font-size: 14px;
  font-weight: normal;
  margin-top: 1rem;
  padding-bottom: 10px;
  line-height: 1.5;
}
.CompetitionRulesModal .MuiButton-outlined:not(.Mui-disabled) {
  color: #2a363b;
  border: 1px solid #fc847c;
}
.CompetitionRulesModal .MuiButton-outlined:not(.Mui-disabled):hover {
  background-color: rgba(252, 132, 124, 0.15);
}
.CompetitionRulesModal .MuiButton-contained:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.CompetitionRulesModal .MuiButton-text:not(.Mui-disabled) {
  color: #2a363b;
}
.HourOfCodePage .HourOfCodeDescription {
  color: white;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 1rem;
}
.HourOfCodePage .VerticalCard.MuiCard-root {
  min-height: 480px;
}
.CreativePage .Category {
  border-radius: 0;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.98);
}
.CreativePage .Category .CategoryTitle {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-weight: bold;
}
.CreativePage .Category .CategoryDescription {
  margin-bottom: 1rem;
  font-size: 16.5px;
}
.CreativePage .Category .NoResults {
  opacity: 0.9;
}
.CreativePage .Category + .Category {
  margin-top: 1.5rem;
}
.CreativePage .Category:last-of-type {
  margin-bottom: 2rem;
}
.CreativePage .VerticalCardButtons {
  justify-content: center !important;
}
.CreativePage .GoButton {
  border-radius: 4px;
  min-width: 170px;
}
@media (min-width: 1200px) {
  .CreativePage .GoButton {
    min-width: 220px;
  }
}
.CreativePage .GoButton .ButtonContent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
}
.CreativePage .GoButton .ButtonContent .ButtonIcon {
  width: 32px;
}
.CreativePage .VerticalCardDescription {
  line-height: 1.8;
}
.CreativeSharedPage .Category {
  border-radius: 0;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.98);
}
.CreativeSharedPage .Category .CategoryTitle {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-weight: bold;
}
.CreativeSharedPage .Category .CategoryDescription {
  margin-bottom: 1rem;
  font-size: 16.5px;
}
.CreativeSharedPage .Category .NoResults {
  opacity: 0.9;
}
.CreativeSharedPage .Category + .Category {
  margin-top: 1.5rem;
}
.CreativeSharedPage .Category:last-of-type {
  margin-bottom: 2rem;
}
.CreativeSharedPage .VerticalCardButtons {
  justify-content: center !important;
}
.CreativeSharedPage .GoButton {
  border-radius: 4px;
  min-width: 170px;
}
@media (min-width: 1200px) {
  .CreativeSharedPage .GoButton {
    min-width: 220px;
  }
}
.CreativeSharedPage .GoButton .ButtonContent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
}
.CreativeSharedPage .GoButton .ButtonContent .ButtonIcon {
  width: 32px;
}
.ResetPassword {
  background: no-repeat fixed center;
  -webkit-background-: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 700px;
}
@media (max-width: 767.98px) {
  .ResetPassword {
    display: block;
    min-height: calc(100vh - 34px);
  }
}
.ResetPassword .ResetPasswordContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.7rem;
}
.ResetPassword .ResetPasswordContent .ResetPasswordNewInput {
  width: 100%;
}
.ResetPassword .ResetPasswordContent .ResetPasswordConfirmNewInput {
  margin-top: 1rem;
  width: 100%;
}
.ResetPassword .ResetPasswordContent .ResetPasswordButton {
  margin-top: 3rem;
  width: 90%;
  margin-bottom: 1rem;
}
.RequestFranchiseOpportunity {
  margin-top: 2rem;
}
.RequestFranchiseOpportunity .TitleSection .SectionText {
  margin-bottom: 1px;
  width: 50%;
  margin: auto;
}
.RequestFranchiseOpportunity .CustomerInfo {
  display: flex;
  justify-content: center;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm {
  margin-top: 15px;
  width: 100%;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .InputField .MuiFormControl-root {
  width: 100%;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .ContactNameInput {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .ContactEmailInput {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .ContactPhoneInput {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .CompanyNameInput {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .CompanyWebsiteUrlInput {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .CompanySizeInput {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .TargetAgeInput {
  grid-column: 1 / span 1;
  grid-row: 4 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .TargetMarketInput {
  grid-column: 2 / span 1;
  grid-row: 4 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .QuoteBox .CustomerInfoForm .CustomerInfoGrid .TargetTypeInput {
  grid-column: 1 / span 1;
  grid-row: 5 / span 1;
}
.RequestFranchiseOpportunity .CustomerInfo .SubmitButtonArea {
  padding: 30px 30px 10px 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.RequestFranchiseOpportunity .CustomerInfo .SubmitButtonArea .errorMessage {
  color: #aa0000;
  font-weight: bold;
  display: block;
  margin: 20px;
  text-align: center;
}
.RequestFranchiseOpportunity .CustomerInfo .SubmitButtonArea .ConfirmationMessage {
  margin: 5px;
}
.RequestFranchiseOpportunity .Finished .FinishedBox {
  min-width: 250px;
  max-width: 700px;
  border-radius: 12px;
  border: 1px solid #055454;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
.RequestFranchiseOpportunity .Finished .FinishedBox .SectionTitle {
  margin-bottom: 10px;
}
.RequestFranchiseOpportunity .Finished .FinishedBox .SectionSubTitle {
  margin-bottom: 20px;
}
.RequestFranchiseOpportunity .Finished .FinishedBox .animatedCheck {
  width: auto;
  height: 120px;
}
.RequestFranchiseOpportunity .Finished .FinishedBox .FinishedContent {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.UnitRatingPicker .UnitRatingPickerIcon {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0.5rem;
  opacity: 0.3;
  user-select: none;
}
.UnitRatingPicker .UnitRatingPickerIcon:hover {
  opacity: 1;
}
.UnitRatingPicker .UnitRatingPickerIcon.Selected {
  opacity: 1;
}
.CodeViewer {
  margin: 0.5rem 0;
  position: relative;
}
.CodeViewer .prism-code {
  border: 1px solid #4b4b4b;
  background-color: #141414;
  text-align: left;
  text-shadow: none;
  tab-size: 4;
  position: relative;
  font-size: 14px;
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  line-height: 1.4;
  margin: 0;
  padding: 0.75rem 1rem;
}
.CodeViewer .prism-code .token-line > span:last-of-type {
  margin-right: 1rem;
}
.CodeViewer .prism-code .token-line::selection,
.CodeViewer .prism-code .token::selection {
  background: #4c4c4c;
}
.CodeViewer .prism-code .swatch {
  display: none;
}
.CodeViewer.very-small .prism-code {
  font-size: 12px;
}
.CodeViewer.small .prism-code {
  font-size: 14px;
}
.CodeViewer.medium .prism-code {
  font-size: 16px;
}
.CodeViewer.large .prism-code {
  font-size: 18px;
}
.CodeViewer.very-large .prism-code {
  font-size: 20px;
}
.CodeViewer.LineNumbers .prism-code::before {
  content: ' ';
  background-color: #1c1c1c;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2rem;
}
.CodeViewer.LineNumbers .token-line {
  padding-left: 2rem;
  position: relative;
  counter-increment: lineNo;
}
.CodeViewer.LineNumbers .token-line::before {
  content: counter(lineNo);
  position: absolute;
  left: -1.4rem;
  text-align: right;
  width: 2rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.35);
}
.CodeViewer.Language::before {
  content: attr(data-language-name);
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-color: #939393;
  color: #141414;
  font-size: 12px;
  padding: 0.15rem 0.7rem 0.1rem 0.7rem;
  border-radius: 0.4rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}
.CodeViewer.Language:hover::before {
  opacity: 1;
}
.CodeViewer.CssColors .prism-code .swatch {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  position: relative;
  top: 0.2rem;
  margin-left: 0.5rem;
  margin-right: -0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.CodeViewer.Clipboard .CopyToClipboard {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 2.7rem;
  height: 2.7rem;
  background-color: #4b4b4b;
  text-align: center;
  line-height: 2.7rem;
  z-index: 10;
  cursor: pointer;
  transition: background-color 200ms linear;
}
.CodeViewer.Clipboard .CopyToClipboard:hover {
  background-color: #656565;
}
.CodeViewer.Clipboard .CopyToClipboard.Copied {
  background-color: green;
}
.CodeViewer.Clipboard .CopyToClipboard.MultiLine {
  border-bottom-left-radius: 0.3rem;
}
.CodeViewer.Clipboard .prism-code .token-line > span:last-of-type {
  margin-right: 3.7rem;
}
.CodeViewer .prism-code.language-html .token.comment {
  color: #8292a2;
}
.CodeViewer .prism-code.language-html .token.plain {
  color: #e6db74;
}
.CodeViewer .prism-code.language-html .token.punctuation {
  color: #f8f8f2;
}
.CodeViewer .prism-code.language-html .token.attr-value.punctuation {
  color: #e6db74;
}
.CodeViewer .prism-code.language-html .token.attr-value.punctuation.attr-equals {
  color: #f8f8f2;
}
.CodeViewer .prism-code.language-css .token.comment {
  color: #8292a2;
}
.CodeViewer .prism-code.language-css .token.plain {
  color: #e6db74;
}
.CodeViewer .prism-code.language-css .token.selector,
.CodeViewer .prism-code.language-css .token.attr-name,
.CodeViewer .prism-code.language-css .token.string,
.CodeViewer .prism-code.language-css .token.char,
.CodeViewer .prism-code.language-css .token.builtin,
.CodeViewer .prism-code.language-css .token.inserted {
  color: #f92672;
}
.CodeViewer .prism-code.language-css .token.property,
.CodeViewer .prism-code.language-css .token.tag,
.CodeViewer .prism-code.language-css .token.constant,
.CodeViewer .prism-code.language-css .token.symbol,
.CodeViewer .prism-code.language-css .token.deleted {
  color: #a6e22e;
}
.CodeViewer .prism-code.language-css .token.atrule,
.CodeViewer .prism-code.language-css .token.attr-value,
.CodeViewer .prism-code.language-css .token.function,
.CodeViewer .prism-code.language-css .token.class-name {
  color: #66d9ef;
}
.CodeViewer .prism-code.language-javascript .token.comment {
  color: #8292a2;
}
.CodeViewer .prism-code.language-javascript .token.plain {
  color: #a6e22e;
}
.CodeViewer .prism-code.language-javascript .token.selector,
.CodeViewer .prism-code.language-javascript .token.attr-name,
.CodeViewer .prism-code.language-javascript .token.string,
.CodeViewer .prism-code.language-javascript .token.char,
.CodeViewer .prism-code.language-javascript .token.builtin,
.CodeViewer .prism-code.language-javascript .token.inserted {
  color: #e6db74;
}
.CodeViewer .prism-code.language-javascript .token.boolean,
.CodeViewer .prism-code.language-javascript .token.number {
  color: #e6db74;
}
.CodeViewer .prism-code.language-javascript .token.special {
  color: #e6db74;
}
.CodeViewer .prism-code.language-javascript .token.atrule,
.CodeViewer .prism-code.language-javascript .token.attr-value,
.CodeViewer .prism-code.language-javascript .token.function,
.CodeViewer .prism-code.language-javascript .token.class-name {
  color: #66d9ef;
}
.CodeViewer .prism-code.language-javascript .token.parameter {
  color: #a6e22e;
}
.CodeViewer .prism-code.language-python .token.comment {
  color: #8292a2;
}
.CodeViewer .prism-code.language-python .token.plain {
  color: #a6e22e;
}
.CodeViewer .prism-code.language-python .token.selector,
.CodeViewer .prism-code.language-python .token.attr-name,
.CodeViewer .prism-code.language-python .token.string,
.CodeViewer .prism-code.language-python .token.char,
.CodeViewer .prism-code.language-python .token.builtin,
.CodeViewer .prism-code.language-python .token.inserted {
  color: #e6db74;
}
.CodeViewer .prism-code.language-python .token.builtin {
  color: #66d9ef;
}
.CodeViewer .prism-code.language-python .token.boolean,
.CodeViewer .prism-code.language-python .token.number {
  color: #e6db74;
}
.CodeViewer .prism-code.language-python .token.atrule,
.CodeViewer .prism-code.language-python .token.attr-value,
.CodeViewer .prism-code.language-python .token.function,
.CodeViewer .prism-code.language-python .token.class-name {
  color: #66d9ef;
}
.CodeViewer .prism-code.language-java .token.comment {
  color: #8292a2;
}
.CodeViewer .prism-code.language-csharp .token.comment {
  color: #8292a2;
}
.CodeMirrorEditor {
  height: 100%;
}
.CodeMirrorEditor .ReactCodeMirror {
  height: 100%;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror {
  font-size: 14px;
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  line-height: 1.4;
  text-align: left;
  background-color: #141414;
  height: 100%;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-lines {
  padding-top: 0 !important;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .line-highlight {
  background-color: rgba(255, 0, 64, 0.2);
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .game-error-marker {
  color: #ff0040;
  font-size: 16px;
  transition: opacity 300ms ease-in-out;
  text-align: right;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-simplescroll-vertical,
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-simplescroll-horizontal {
  background: #c2c2c2;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-simplescroll-vertical div,
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-simplescroll-horizontal div {
  background: #6e7377;
  border: 1px solid #6e7377;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-simplescroll-vertical {
  width: 9px;
}
.CodeMirrorEditor .ReactCodeMirror .CodeMirror .CodeMirror-simplescroll-horizontal {
  height: 9px;
}
.CodeMirrorEditor.very-small .CodeMirror {
  font-size: 12px;
}
.CodeMirrorEditor.very-small .CodeMirror .game-error-marker {
  line-height: 16px;
}
.CodeMirrorEditor.small .CodeMirror {
  font-size: 14px;
}
.CodeMirrorEditor.small .CodeMirror .game-error-marker {
  line-height: 19px;
}
.CodeMirrorEditor.medium .CodeMirror {
  font-size: 16px;
}
.CodeMirrorEditor.medium .CodeMirror .game-error-marker {
  line-height: 22px;
}
.CodeMirrorEditor.large .CodeMirror {
  font-size: 18px;
}
.CodeMirrorEditor.large .CodeMirror .game-error-marker {
  line-height: 24px;
}
.CodeMirrorEditor.very-large .CodeMirror {
  font-size: 20px;
}
.CodeMirrorEditor.very-large .CodeMirror .game-error-marker {
  line-height: 27px;
}
.CodeMirrorEditor .cm-s-monokai.CodeMirror {
  background: #141414;
  color: #f8f8f2;
}
.CodeMirrorEditor .cm-s-monokai div.CodeMirror-selected {
  background: #4c4c4c;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-line::selection,
.CodeMirrorEditor .cm-s-monokai .CodeMirror-line > span::selection,
.CodeMirrorEditor .cm-s-monokai .CodeMirror-line > span > span::selection {
  background: #4c4c4c;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-line::-moz-selection,
.CodeMirrorEditor .cm-s-monokai .CodeMirror-line > span::-moz-selection,
.CodeMirrorEditor .cm-s-monokai .CodeMirror-line > span > span::-moz-selection {
  background: #4c4c4c;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-gutters {
  background: #1c1c1c;
  border-right: 0;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-guttermarker {
  color: #f8f8f2;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-guttermarker-subtle {
  color: #e6e6d1;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-linenumber {
  color: rgba(255, 255, 255, 0.35);
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-cursor {
  border-left: 1px solid #fcfcf9;
}
.CodeMirrorEditor .cm-s-monokai span.cm-error {
  background: #f92672;
  color: #f8f8f0;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-activeline-background {
  background-color: #212121;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-activeline-gutter {
  background-color: #212121;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-matchingbracket {
  background-color: #545454;
  color: #e6db74 !important;
  font-weight: bolder;
  text-decoration: none;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-nonmatchingbracket {
  background: #f92672;
  color: #f8f8f0;
}
.CodeMirrorEditor .cm-s-monokai .CodeMirror-matchingtag {
  background-color: #2d2d2d;
  font-weight: bolder;
}
.CodeMirrorEditor .CodeMirror-hints.monokai {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
  color: #9C9E9E;
  background-color: #3B3E3F !important;
}
.CodeMirrorEditor .CodeMirror-hints.monokai .CodeMirror-hint-active {
  background-color: #494D4E !important;
  color: #9C9E9E !important;
}
.CodeMirrorEditor.language-html .cm-s-monokai .CodeMirror-line {
  color: #e6db74;
}
.CodeMirrorEditor.language-html .cm-s-monokai span.cm-bracket {
  color: #f8f8f2;
}
.CodeMirrorEditor.language-html .cm-s-monokai span.cm-equals {
  color: #f8f8f2;
}
.CodeMirrorEditor.language-html .cm-s-monokai span.cm-comment {
  color: #8292a2;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-atom {
  color: #e6db74;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-number {
  color: #e6db74;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-keyword {
  color: #e6db74;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-callee {
  color: #66d9ef;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-builtin {
  color: #f92672;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-qualifier {
  color: #f92672;
}
.CodeMirrorEditor.language-css .cm-s-monokai span.cm-comment {
  color: #8292a2;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-keyword {
  color: #66d9ef;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-number {
  color: #e6db74;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-atom {
  color: #e6db74;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-variable,
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-variable-2 {
  color: #a6e22e;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-def {
  color: #a6e22e;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-callee {
  color: #66d9ef;
}
.CodeMirrorEditor.language-javascript .cm-s-monokai span.cm-comment {
  color: #8292a2;
}
.CodeMirrorEditor.language-python .cm-s-monokai span.cm-keyword {
  color: #66d9ef;
}
.CodeMirrorEditor.language-python .cm-s-monokai span.cm-number {
  color: #e6db74;
}
.CodeMirrorEditor.language-python .cm-s-monokai span.cm-special {
  color: #e6db74;
}
.CodeMirrorEditor.language-python .cm-s-monokai span.cm-variable {
  color: #a6e22e;
}
.CodeMirrorEditor.language-python .cm-s-monokai span.cm-callee {
  color: #66d9ef;
}
.CodeMirrorEditor.language-python .cm-s-monokai span.cm-comment {
  color: #8292a2;
}
.CodeMirrorEditor.language-json .cm-s-monokai span.cm-string {
  color: #a6e22e;
}
.CodeMirrorEditor.language-json .cm-s-monokai span.cm-attribute,
.CodeMirrorEditor.language-json .cm-s-monokai span.cm-property {
  color: #f92672;
}
.CodeMirrorEditor.language-json .cm-s-monokai span.cm-atom {
  color: #66d9ef;
}
.CodeMirrorEditor.language-java .cm-s-monokai span.cm-comment {
  color: #8292a2;
}
.CodeMirrorEditor.language-csharp .cm-s-monokai span.cm-comment {
  color: #8292a2;
}
.CodeEditorContainer .CodeEditorFontSizePicker {
  display: flex;
  align-items: baseline;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton {
  font-size: 13.5px;
  padding: 0 6px;
  cursor: pointer;
  user-select: none;
  opacity: 0.5;
  color: #f5f5f5;
  transition: color 250ms ease-in-out, opacity 250ms ease-in-out;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton.Selected {
  color: #f6c13d;
  opacity: 1;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton:hover:not(.Selected) {
  color: #f6c13d;
  opacity: 1;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton[data-font-size="very-small"] {
  font-size: 10px;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton[data-font-size="small"] {
  font-size: 12px;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton[data-font-size="medium"] {
  font-size: 14px;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton[data-font-size="large"] {
  font-size: 16px;
}
.CodeEditorContainer .CodeEditorFontSizePicker .CodeFontSizeButton[data-font-size="very-large"] {
  font-size: 18px;
}
.CodeSectionSwitcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #141414;
  color: white;
}
.CodeSectionSwitcher .CodeSectionButton {
  flex: auto;
  font-size: 13.5px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  user-select: none;
  background-color: #272727;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.CodeSectionSwitcher .CodeSectionButton .ErrorIndicator {
  color: #ff0040;
  font-size: 16px;
  transition: opacity 300ms ease-in-out;
  margin-left: 8px;
  opacity: 0;
}
.CodeSectionSwitcher .CodeSectionButton.Selected {
  color: #f6c13d;
  background-color: #141414;
}
.CodeSectionSwitcher .CodeSectionButton.HasError .ErrorIndicator {
  opacity: 1;
}
.VideoPlayer.video-react {
  font-family: 'Roboto', sans-serif;
}
.VideoPlayer.video-react .video-react-video {
  outline: 0;
}
.VideoPlayer.video-react .video-react-menu .video-react-menu-content {
  font-family: 'Roboto', sans-serif;
}
.VideoPlayer.video-react .video-react-control:focus:before,
.VideoPlayer.video-react .video-react-control:hover:before,
.VideoPlayer.video-react .video-react-control:focus {
  text-shadow: none;
}
.VideoPlayer.video-react .video-react-slider:focus {
  box-shadow: none;
}
.VideoPlayer.video-react .video-react-control-bar .video-react-progress-control .video-react-time-tooltip,
.VideoPlayer.video-react .video-react-control-bar .video-react-progress-control .video-react-mouse-display:after,
.VideoPlayer.video-react .video-react-control-bar .video-react-progress-control .video-react-play-progress:after {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 16px;
  padding: 8px 8px 6px 8px;
}
.VideoPlayer.video-react .video-react-big-play-button {
  position: absolute;
  color: white;
  cursor: pointer;
  width: 300px;
  height: 300px;
  background-color: white;
  opacity: 0.75;
  border-radius: 150px;
  border: none;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -150px;
  font-size: 300px !important;
  line-height: 1;
}
.VideoPlayer.video-react .video-react-big-play-button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #313335;
  overflow: visible;
}
.VideoPlayer.video-react:hover .video-react-big-play-button,
.VideoPlayer.video-react .video-react-big-play-button:focus {
  opacity: 0.85;
}
.VideoPlayer.video-react.Large {
  font-size: 16px;
}
.OutputConsoleContainer .OutputConsoleMessage {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 13.5px;
  border-bottom: 1px solid #4a4d50;
}
.OutputConsoleContainer .OutputConsoleMessage .Icon {
  padding: 0.5rem;
  padding-right: 0.2rem;
}
.OutputConsoleContainer .OutputConsoleMessage .Message {
  flex: auto;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.OutputConsoleContainer .OutputConsoleMessage .Message mark {
  background: #e6db74;
  color: #000;
  padding: 0 0.27em;
}
.OutputConsoleContainer .OutputConsoleMessage .Message .ErrorMessage {
  line-height: 1.5;
}
.OutputConsoleContainer .OutputConsoleMessage .Message .MessageItem + .MessageItem {
  margin-left: 0.5rem;
}
.OutputConsoleContainer .OutputConsoleMessage .MessageLocation {
  padding: 0.5rem;
  white-space: nowrap;
}
.OutputConsoleContainer .OutputConsoleMessage .MessageLocation .MessageSection {
  text-transform: uppercase;
}
.OutputConsoleContainer .OutputConsoleMessage.Clickable {
  cursor: pointer;
}
.OutputConsoleContainer .OutputConsoleMessage[data-message-level="log"] {
  color: #8292a2;
}
.OutputConsoleContainer .OutputConsoleMessage[data-message-level="log"] .Icon {
  font-size: 8px;
  width: 28px;
  text-align: center;
}
.OutputConsoleContainer .OutputConsoleMessage[data-message-level="info"] {
  color: #66d9ef;
}
.OutputConsoleContainer .OutputConsoleMessage[data-message-level="warn"] {
  color: #e6db74;
}
.OutputConsoleContainer .OutputConsoleMessage[data-message-level="error"] {
  color: #ff0040;
  border-bottom-color: rgba(255, 0, 64, 0.2);
}
.CourseUnit .TasksContainer .section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #c2c2c2;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
.CourseUnit .TasksContainer .Tasks {
  counter-reset: custom-task-counter;
}
.CourseUnit .TasksContainer .Tasks code {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #2e2e2e;
  color: #f92672;
  border: none;
  border-radius: 4px;
  font-size: 90%;
}
.CourseUnit .TasksContainer .Tasks concept,
.CourseUnit .TasksContainer .Tasks var,
.CourseUnit .TasksContainer .Tasks string {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.CourseUnit .TasksContainer .Tasks .section + .section {
  margin-top: 1rem;
}
.CourseUnit .TasksContainer .Tasks .section.task {
  counter-increment: custom-task-counter;
  position: relative;
  margin-left: 3rem;
  line-height: 2;
}
.CourseUnit .TasksContainer .Tasks .section.task::before {
  content: counter(custom-task-counter);
  color: #313335;
  background-color: #faa922;
  font-size: 75%;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  border-radius: 1rem;
  display: inline-block;
  text-align: center;
  margin-right: 0.75rem;
  position: absolute;
  left: -3rem;
}
.CourseUnit .TasksContainer .Tasks .section.task .sectionIdLabel {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #2e2e2e;
  color: #f6c13d;
  border: none;
  border-radius: 4px;
  font-size: 13.5px;
  font-style: normal;
  font-weight: normal;
  padding: 4px 7px 4px 10px;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.CourseUnit .TasksContainer .Tasks .section.task p {
  display: inline;
}
.CourseUnit .TasksContainer .Tasks .section.task .subtasks {
  counter-reset: custom-subtask-counter;
}
.CourseUnit .TasksContainer .Tasks .section.task .subtasks .subtask {
  counter-increment: custom-subtask-counter;
  position: relative;
  margin-left: 3rem;
  margin-top: 0.5rem;
  line-height: 2;
}
.CourseUnit .TasksContainer .Tasks .section.task .subtasks .subtask::before {
  content: counter(custom-subtask-counter, lower-alpha);
  color: white;
  background-color: blueviolet;
  font-size: 75%;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 1rem;
  display: inline-block;
  text-align: center;
  margin-right: 0.75rem;
  position: absolute;
  left: -2.3rem;
  top: 0.1rem;
}
.CourseUnit .TasksContainer .Tasks .section.task .hints .hint {
  position: relative;
  margin-top: 0.5rem;
  line-height: 2;
  color: #faa922;
}
.CourseUnit .TasksContainer .Tasks .section.task .hints .hint .hint-icon {
  margin-right: 0.5rem;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="javascript"] concept {
  color: #66d9ef;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="javascript"] var {
  color: #a6e22e;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="javascript"] string {
  color: #e6db74;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="html"] concept,
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="css"] concept {
  color: #a6e22e;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="html"] var,
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="css"] var {
  color: #f92672;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="html"] string,
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="css"] string {
  color: #e6db74;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="python"] concept {
  color: #66d9ef;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="python"] var {
  color: #a6e22e;
}
.CourseUnit .TasksContainer .Tasks .section.task[data-code-language="python"] string {
  color: #e6db74;
}
.CourseUnit .TasksContainer .Tasks .section.tasks-image {
  display: flex;
  justify-content: center;
}
.CourseUnit .TasksContainer .Tasks .section.tasks-image img {
  max-width: 50%;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] ltr {
  unicode-bidi: bidi-override;
  direction: ltr !important;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] concept,
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] var,
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] string {
  unicode-bidi: bidi-override;
  direction: ltr !important;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task {
  margin-left: unset;
  margin-right: 3rem;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task::before {
  margin-right: unset;
  margin-left: 0.75rem;
  left: unset;
  right: -3rem;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task .task-content {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task .sectionIdLabel {
  unicode-bidi: bidi-override;
  direction: ltr !important;
  margin-right: unset;
  margin-left: 0.5rem;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task .subtasks .subtask {
  unicode-bidi: bidi-override;
  direction: rtl;
  margin-left: unset !important;
  margin-right: 3rem;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task .subtasks .subtask::before {
  margin-right: unset !important;
  margin-left: 0.75rem;
  left: unset !important;
  right: -2.3rem;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task .hints .hint-content {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.CourseUnit .TasksContainer .Tasks[data-locale-key="ar-PS"] .section.task .hints .hint-content .hint-icon {
  margin-right: unset;
  margin-left: 0.5rem;
}
.CourseUnit[data-source-course-id="cs-4A"]:not(*[data-source-unit-id="exercise-001"]) .section.task .hints,
.CourseUnit[data-source-course-id="cs-4B"]:not(*[data-source-unit-id="exercise-001"]) .section.task .hints {
  display: none !important;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep {
  position: relative;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section-counter {
  color: #313335;
  background-color: #faa922;
  font-size: 75%;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  border-radius: 1rem;
  display: inline-block;
  text-align: center;
  margin-right: 0.75rem;
  position: absolute;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section-subtitle {
  font-size: 17px !important;
  font-weight: 300;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  margin-left: 2.5rem;
  line-height: 1.75rem;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text {
  line-height: 2;
  margin-top: 1rem;
  margin-bottom: 0;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text .sectionIdLabel {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #2e2e2e;
  color: #f6c13d;
  border: none;
  border-radius: 4px;
  font-size: 13.5px;
  font-style: normal;
  font-weight: normal;
  padding: 4px 7px 4px 10px;
  text-transform: uppercase;
  margin-left: 0.15rem;
  margin-right: 0.15rem;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text .sectionIdLabel + p {
  display: inline;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text .ui-element {
  color: #09a7a7;
  font-size: 100%;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  white-space: nowrap;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text .ui-element svg,
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text .ui-element .icon {
  margin: 0 0.1rem;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text concept,
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text var,
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text string {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.text concept {
  font-weight: bold;
  cursor: pointer;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep .section.code {
  margin-top: 1rem;
  margin-bottom: 0;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="javascript"] concept {
  color: #66d9ef;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="javascript"] var {
  color: #a6e22e;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="javascript"] string {
  color: #e6db74;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="html"] concept,
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="css"] concept {
  color: #a6e22e;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="html"] var,
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="css"] var {
  color: #f92672;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="html"] string,
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="css"] string {
  color: #e6db74;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="python"] concept {
  color: #66d9ef;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="python"] var {
  color: #a6e22e;
}
.CourseUnit .TutorialContainer .Tutorial .TutorialStep[data-code-language="python"] string {
  color: #e6db74;
}
.CourseUnit .TipsContainer .Tips .TipsItem h4.title {
  margin-top: 2rem;
  font-size: 15.5px;
  font-weight: bold;
  color: #40d2d2;
}
.CourseUnit .TipsContainer .Tips .TipsItem:first-of-type h4.title {
  margin-top: 0;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.text {
  line-height: 1.5;
  margin-bottom: 1rem;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.text code {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #141414;
  color: #f92672;
  border: none;
  border-radius: 4px;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.text concept {
  font-weight: bold;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.code .code-sample-title {
  margin: 1rem 0;
  font-size: 13px;
  position: relative;
  bottom: -3px;
  left: 3px;
  color: #aaaaaa;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.live-example .live-example-title {
  margin: 1rem 0;
  font-size: 13px;
  position: relative;
  bottom: -3px;
  left: 3px;
  color: #aaaaaa;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.live-example iframe.live-example-content {
  width: 100%;
  min-height: 402px;
  background-color: #141414;
  border: 1px solid #4b4b4b;
  border-radius: 0.3rem;
  margin: 0.5rem 0;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections .section.live-example .live-example-title + iframe.live-example-content {
  margin-top: 0;
}
.CourseUnit .TipsContainer .Tips .TipsItem h4.title[data-locale-key="ar-PS"] {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.CourseUnit .TipsContainer .Tips .TipsItem h4.title[data-locale-key="ar-PS"] ltr {
  unicode-bidi: bidi-override;
  direction: ltr !important;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections[data-locale-key="ar-PS"] ltr {
  unicode-bidi: bidi-override;
  direction: ltr !important;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections[data-locale-key="ar-PS"] .section.text {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections[data-locale-key="ar-PS"] .section.code .code-sample-title {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.CourseUnit .TipsContainer .Tips .TipsItem .Sections[data-locale-key="ar-PS"] .section.live-example .live-example-title {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsRef::before {
  display: block;
  content: " ";
  margin-top: -1rem;
  height: 1rem;
  visibility: hidden;
  pointer-events: none;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsRef.FunctionDefinition::before {
  margin-top: -0.1rem;
  height: 0.1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .Debug {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace !important;
  font-size: 13px !important;
  text-transform: none !important;
  color: white !important;
  opacity: 0.75 !important;
}
.CourseUnit .AutoDocsContainer .AutoDocs .ScrollToDefinitionLink {
  color: #40d2d2;
  font-weight: bold;
}
.CourseUnit .AutoDocsContainer .AutoDocs h4.SectionTitle {
  text-transform: uppercase;
  color: #40d2d2;
  font-weight: bold;
  font-size: 19px;
  margin-top: 3rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer {
  background-color: #141414;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  margin-top: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .FunctionTable .MuiTableCell-root,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .FunctionTable .MuiTableCell-root,
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .ObjectTable .MuiTableCell-root,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .ObjectTable .MuiTableCell-root {
  color: #f8f8f2;
  border-bottom: 1px solid #4b4b4b;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .FunctionTable .MuiTableCell-head,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .FunctionTable .MuiTableCell-head,
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .ObjectTable .MuiTableCell-head,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .ObjectTable .MuiTableCell-head {
  border-bottom-width: 2px;
  font-weight: bold;
  font-size: 14px;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .FunctionTable .MuiTableCell-body,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .FunctionTable .MuiTableCell-body,
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .ObjectTable .MuiTableCell-body,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .ObjectTable .MuiTableCell-body {
  font-size: 14px;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .FunctionTable .MuiTableBody-root .MuiTableRow-root:last-of-type .MuiTableCell-root,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .FunctionTable .MuiTableBody-root .MuiTableRow-root:last-of-type .MuiTableCell-root,
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionTableContainer .ObjectTable .MuiTableBody-root .MuiTableRow-root:last-of-type .MuiTableCell-root,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectTableContainer .ObjectTable .MuiTableBody-root .MuiTableRow-root:last-of-type .MuiTableCell-root {
  border-bottom: none;
}
.CourseUnit .AutoDocsContainer .AutoDocs code {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #141414;
  color: #f92672;
  border: none;
  border-radius: 4px;
}
.CourseUnit .AutoDocsContainer .AutoDocs .code-sample-title {
  margin: 1rem 0;
  font-size: 13px;
  position: relative;
  bottom: -3px;
  left: 3px;
  color: #aaaaaa;
}
.CourseUnit .AutoDocsContainer .AutoDocs .Divider {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .Content {
  line-height: 2;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection {
  margin-top: 1.5rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection:first-of-type {
  margin-top: 0;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection .NavLinks {
  background-color: #141414;
  padding: 1rem;
  margin-top: 0.5rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection .NavLinks .ScrollToDefinitionLink {
  color: #40d2d2;
  font-weight: normal;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection .NavLinks .Separator {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection .NavLinks .ObjectLink a {
  font-weight: bold;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection .NavLinks .FunctionLink {
  margin-left: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .AutoDocsToc .LinkSection .NavLinks .FunctionLink::before {
  content: ">>";
  margin-right: 0.6rem;
  opacity: 0.75;
}
.CourseUnit .AutoDocsContainer .AutoDocs .TypeDefinition,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectDefinition {
  margin-top: 2rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .TypeDefinition h5,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectDefinition h5 {
  text-transform: uppercase;
  color: #40d2d2;
  font-size: 16.5px;
}
.CourseUnit .AutoDocsContainer .AutoDocs .TypeDefinition .TypeItems,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectDefinition .TypeItems {
  margin-top: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .TypeDefinition .TypeItems .TypeItem,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectDefinition .TypeItems .TypeItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .TypeDefinition .TypeItems .TypeItem .TypeValue,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectDefinition .TypeItems .TypeItem .TypeValue {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  text-align: center;
  margin-top: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .TypeDefinition .ObjectProperties,
.CourseUnit .AutoDocsContainer .AutoDocs .ObjectDefinition .ObjectProperties {
  margin-top: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionDefinition h6 {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 15px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  padding-bottom: 1rem;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionDefinition h6::before {
  content: ">>";
  margin-right: 0.8rem;
  opacity: 0.75;
}
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionDefinition .FunctionArguments,
.CourseUnit .AutoDocsContainer .AutoDocs .FunctionDefinition .FunctionReturnValue {
  margin-top: 1rem;
}
.CourseUI {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #313335;
}
.CourseUI > .LoadingError .Content {
  color: #ccccbb;
}
.CourseUI .NavigationTreeBackdrop {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 5;
  display: none;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  background-color: black;
}
.CourseUI .NavigationTree.nav-transition-enter + .NavigationTreeBackdrop {
  display: block;
  opacity: 0;
}
.CourseUI .NavigationTree.nav-transition-enter-active + .NavigationTreeBackdrop {
  display: block;
  opacity: 0.85;
}
.CourseUI .NavigationTree.nav-transition-enter-done + .NavigationTreeBackdrop {
  display: block;
  opacity: 0.85;
}
.CourseUI .NavigationTree.nav-transition-exit + .NavigationTreeBackdrop {
  display: block;
  opacity: 0.85;
}
.CourseUI .NavigationTree.nav-transition-exit-active + .NavigationTreeBackdrop {
  display: block;
  opacity: 0;
}
.CourseUI .NavigationTree.nav-transition-exit-done + .NavigationTreeBackdrop {
  display: none;
  opacity: 0;
}
.CourseUI.TeacherMode .NavigationTree {
  left: 0;
  width: 350px;
}
.CourseUI.TeacherMode .NavigationTree .NavigationTreeToggle {
  display: none;
}
.CourseUI.TeacherMode .CourseTour {
  left: 350px;
}
.CourseUI.TeacherMode .CourseUnit {
  left: 350px;
}
.ModalResetCode.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled) {
  color: #2a363b;
  border: 1px solid #fc847c;
}
.ModalResetCode.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled):hover {
  background-color: rgba(252, 132, 124, 0.15);
}
.ModalResetCode.CompetitionEvent .MuiButton-contained:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.ModalResetCode.CompetitionEvent .MuiButton-text:not(.Mui-disabled) {
  color: #2a363b;
}
.CourseUI .NavigationTree {
  background-color: #d6d6d6;
  position: absolute;
  top: 40px;
  bottom: 0;
  left: -350px;
  width: 370px;
  overflow: hidden;
  z-index: 6;
  transition: left 300ms ease-in-out;
  /* from plugin:
        * ```css
        * .my-node-enter {
        *   opacity: 0;
        * }
        * .my-node-enter-active {
        *   opacity: 1;
        *   transition: opacity 200ms;
        * }
        * .my-node-exit {
        *   opacity: 1;
        * }
        * .my-node-exit-active {
        *   opacity: 0;
        *   transition: opacity 200ms;
        * }
        * ```
        */
}
.CourseUI .NavigationTree.nav-transition-enter {
  left: -350px;
}
.CourseUI .NavigationTree.nav-transition-enter-active {
  left: 0;
}
.CourseUI .NavigationTree.nav-transition-enter-done {
  left: 0;
}
.CourseUI .NavigationTree.nav-transition-exit {
  left: 0;
}
.CourseUI .NavigationTree.nav-transition-exit-active {
  left: -350px;
}
.CourseUI .NavigationTree.nav-transition-exit-done {
  left: -350px;
}
.CourseUI .NavigationTree .NavigationTreeToggle {
  cursor: pointer;
  background-color: #252628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: background-color 250ms ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20px;
}
.CourseUI .NavigationTree .NavigationTreeToggle svg {
  color: #f6c13d;
  transition: color 250ms ease-in-out;
}
.CourseUI .NavigationTree .NavigationTreeToggle:hover {
  background-color: #313335;
}
.CourseUI .NavigationTree .NavigationTreeUnitList {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 350px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .NavigationTree .NavigationTreeUnitList::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeProgressLimiter {
  cursor: pointer;
  height: 5px;
  background-color: #f6c13d;
  background: repeating-linear-gradient(90deg, #dca00a 0, #dca00a 15px, transparent 15px, transparent 20px);
  margin: 15px 0;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit {
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  align-items: center;
  margin-bottom: 4px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit:first-of-type {
  margin-top: 4px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon {
  margin: 0;
  min-width: 34px;
  text-align: center;
  display: inline-block;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .IconSpacer,
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .MinimizeBtn,
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .CompletedCheckmark,
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .PremiumContentGem {
  width: 20px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .MinimizeBtn {
  color: #4a4d50;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .CompletedCheckmark {
  color: #09a7a7;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit > .StatusIcon .PremiumContentGem {
  color: #ac7d08;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper {
  flex: auto;
  padding: 8px;
  background-color: #e8e8e8;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: background-color 250ms ease-in-out;
  position: relative;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon {
  margin: 0;
  margin-left: -8px;
  min-width: 34px;
  text-align: center;
  display: inline-block;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .IconSpacer,
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .MinimizeBtn,
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .CompletedCheckmark,
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .PremiumContentGem {
  width: 20px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .MinimizeBtn {
  color: #4a4d50;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .CompletedCheckmark {
  color: #09a7a7;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper > .StatusIcon .PremiumContentGem {
  color: #ac7d08;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper {
  width: 100%;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .UnitIcon {
  margin: 0;
  min-width: 30px;
  text-align: left;
  display: inline-block;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .UnitIcon img {
  width: 20px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .UnitName {
  margin: 0;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 7px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper .ProgressLimiterBtn {
  min-width: 30px;
  text-align: left;
  display: inline-block;
  margin-left: 2px;
  margin-right: -1px;
  position: relative;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper .ProgressLimiterBtn svg {
  width: 20px;
  color: #95999d;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper .ProgressLimiterBtn.Active::before {
  content: ' ';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background-color: #dca00a;
  top: -3px;
  left: -4px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper .ProgressLimiterBtn.Active svg {
  color: #f5f5f5;
  position: relative;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper .ProgressBar {
  display: inline-block;
  height: 5px;
  flex: auto;
  background-color: rgba(49, 51, 53, 0.2);
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .ProgressWrapper .ProgressBar .MuiLinearProgress-barColorPrimary {
  background-color: #dca00a;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .DEBUG_ToggleUnitCompletedButton {
  position: absolute;
  top: 6px;
  right: 8px;
  color: red;
  border: 2px solid red;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit .UnitWrapper .ContentWrapper .DEBUG_ToggleUnitCompletedButton.Completed {
  color: green;
  border-color: green;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Level0 > .StatusIcon {
  display: none;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Level0 > .UnitWrapper > .ContentWrapper > .UnitIcon {
  margin-left: 8px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Level0 > .UnitWrapper > .ContentWrapper > .ProgressWrapper {
  margin-left: 8px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Level1 > .UnitWrapper > .StatusIcon {
  display: none;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='project'] .UnitWrapper {
  background-color: #ebebeb;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='project'] .UnitWrapper .UnitIcon {
  margin-left: 10px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='project'] .UnitWrapper .UnitIcon img {
  width: 18px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='project'] .UnitWrapper .UnitName {
  font-weight: bold;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='summary'] .UnitWrapper .UnitIcon img {
  position: relative;
  left: 1px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='project'] .UnitWrapper .UnitIcon img {
  position: relative;
  left: 2px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='quiz'] .UnitWrapper .UnitIcon img {
  position: relative;
  left: 1px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='lesson'] .UnitWrapper .UnitIcon img {
  position: relative;
  left: 1px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='practical'] .UnitWrapper .UnitIcon img {
  position: relative;
  left: 1px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='challenge'] .UnitWrapper .UnitIcon img {
  position: relative;
  left: 2px;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Selected .UnitWrapper {
  background-color: rgba(63, 189, 170, 0.25);
  font-weight: bold;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit:hover:not(.Selected) .UnitWrapper {
  background-color: #e1e1e1;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit[data-simple-unit-type='project']:hover:not(.Selected) .UnitWrapper {
  background-color: #f5f5f5;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Disabled:not([data-simple-unit-type='project']) {
  pointer-events: none;
}
.CourseUI .NavigationTree .NavigationTreeUnitList .NavigationTreeUnit.Disabled .UnitName {
  color: #95999d;
}
.CourseUI .CourseTour {
  position: absolute;
  top: 16px;
  height: 24px;
  left: 20px;
  right: 0;
  overflow: hidden;
  z-index: 1;
  background-color: #f6c13d;
  text-align: center;
  font-size: 13.5px;
  line-height: 24px;
  color: black;
  transition: top 300ms ease-in-out;
}
.CourseUI .CourseTour.tour-transition-enter {
  top: 16px;
}
.CourseUI .CourseTour.tour-transition-enter-active {
  top: 40px;
}
.CourseUI .CourseTour.tour-transition-enter-done {
  top: 40px;
}
.CourseUI .CourseTour.tour-transition-exit {
  top: 40px;
}
.CourseUI .CourseTour.tour-transition-exit-active {
  top: 16px;
}
.CourseUI .CourseTour.tour-transition-exit-done {
  top: 16px;
}
.CourseUI .CourseTour .ui-element {
  color: #09a7a7;
  font-size: 100%;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #313335;
}
.CourseUI .CourseTour .ui-element svg,
.CourseUI .CourseTour .ui-element .icon {
  margin: 0 0.1rem;
}
@keyframes button-highlight {
  from {
    color: white;
    transform: scale3d(1, 1, 1);
  }
  to {
    color: #f6c13d;
    transform: scale3d(1.25, 1.25, 1);
  }
}
.CourseUI[data-tour-key="summaryView.firstVideoWatched"] .CourseHeader .ContinueButton:not(.Mui-disabled, :hover) .MuiButton-endIcon,
.CourseUI[data-tour-key="summaryView.videoWatched"] .CourseHeader .ContinueButton:not(.Mui-disabled, :hover) .MuiButton-endIcon {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="lessonView.videoWatched"] .CourseHeader .ContinueButton:not(.Mui-disabled, :hover) .MuiButton-endIcon {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="contextSettingView.readDescriptionPractical"] .CourseHeader .ContinueButton:not(.Mui-disabled, :hover) .MuiButton-endIcon,
.CourseUI[data-tour-key="contextSettingView.readDescriptionChallenge"] .CourseHeader .ContinueButton:not(.Mui-disabled, :hover) .MuiButton-endIcon {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="codeView.enterCodeLesson"] .CodeEditorContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.enterCodeLesson"] .TasksContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.enterCodePractical"] .CodeEditorContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.enterCodePractical"] .TasksContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.enterCodeChallenge"] .CodeEditorContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.enterCodeChallenge"] .TasksContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.enterCodeChallenge"] .CourseHeader .ContinueButton:not(.Mui-disabled, :hover) .MuiButton-endIcon {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="codeView.runCodeWhenDone"] .CodeEditorContainer .CodeToolbarRunCodeButton:not(.disabled, :hover) svg,
.CourseUI[data-tour-key="codeView.runCodeWhenDone"] .GameContainer .CodeToolbarRunCodeButton:not(.disabled, :hover) svg {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="codeView.runCodeWhenDone"] .GameContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.keepPlayingGame"] .GameContainer .ContainerTitle {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #f6c13d;
}
.CourseUI[data-tour-key="codeView.fixError"] .TasksContainer .DocumentationExpandButton:not(.disabled, :hover) svg {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="codeView.fixError"] .CodeEditorContainer .CodeToolbarRunCodeButton:not(.disabled, :hover) svg,
.CourseUI[data-tour-key="codeView.fixError"] .GameContainer .CodeToolbarRunCodeButton:not(.disabled, :hover) svg {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI[data-tour-key="codeView.validateCode"] .CodeEditorContainer .CodeToolbarValidateCodeButton:not(.disabled, :hover) svg {
  animation-name: button-highlight;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.CourseUI .CourseUnit {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 20px;
  right: 0;
  overflow: hidden;
  background-color: #313335;
  transition: top 300ms ease-in-out;
}
.CourseUI .CourseUnit > .LoadingError .Content {
  color: #ccccbb;
}
.CourseUI .CourseUnit .UnitDurationTimer {
  position: fixed;
  top: 16px;
  left: 175px;
  z-index: 2000;
  display: inline-block;
  background: white;
  padding: 0.4rem 0.5rem;
  color: #313335;
  font-weight: normal;
  white-space: nowrap;
  margin: 0 1rem;
  min-width: 9rem;
}
.CourseUI .CourseUnit .UnitDurationTimer svg {
  margin-right: 0.5rem;
}
.CourseUI .CourseUnit .UnitDurationTimer .Time {
  margin-right: 0.5rem;
}
.CourseUI .CourseUnit .UnitDurationTimer .Time .TimeElapsed {
  display: inline;
  font-weight: normal;
  font-size: 100%;
}
.CourseUI .CourseTour.tour-transition-enter + .CourseUnit {
  top: 40px;
}
.CourseUI .CourseTour.tour-transition-enter-active + .CourseUnit {
  top: 64px;
}
.CourseUI .CourseTour.tour-transition-enter-done + .CourseUnit {
  top: 64px;
}
.CourseUI .CourseTour.tour-transition-exit + .CourseUnit {
  top: 64px;
}
.CourseUI .CourseTour.tour-transition-exit-active + .CourseUnit {
  top: 40px;
}
.CourseUI .CourseTour.tour-transition-exit-done + .CourseUnit {
  top: 40px;
}
.CourseUI[data-course-id="hoc-2021-1"] .NavigationTree,
.CourseUI[data-course-id="hoc-2021-2"] .NavigationTree,
.CourseUI[data-course-id="hoc-2021-3"] .NavigationTree,
.CourseUI[data-course-id="hoc-2021-4"] .NavigationTree,
.CourseUI[data-course-id="training"] .NavigationTree,
.CourseUI[data-course-id="competition"] .NavigationTree {
  display: none;
}
.CourseUI[data-course-id="hoc-2021-1"] .CourseTour,
.CourseUI[data-course-id="hoc-2021-2"] .CourseTour,
.CourseUI[data-course-id="hoc-2021-3"] .CourseTour,
.CourseUI[data-course-id="hoc-2021-4"] .CourseTour,
.CourseUI[data-course-id="training"] .CourseTour,
.CourseUI[data-course-id="competition"] .CourseTour {
  left: 0;
}
.CourseUI[data-course-id="hoc-2021-1"] .CourseUnit,
.CourseUI[data-course-id="hoc-2021-2"] .CourseUnit,
.CourseUI[data-course-id="hoc-2021-3"] .CourseUnit,
.CourseUI[data-course-id="hoc-2021-4"] .CourseUnit,
.CourseUI[data-course-id="training"] .CourseUnit,
.CourseUI[data-course-id="competition"] .CourseUnit {
  left: 0;
}
.UnitView {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: clip;
  background-color: #313335;
}
.UnitContainer {
  position: absolute;
  overflow: hidden;
}
.UnitContainer .ContainerHeader {
  position: absolute;
  top: 0;
  height: 30px;
  left: 0;
  right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem;
  background-color: #313335;
}
.UnitContainer .ContainerHeader .ContainerTitle {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerTitle {
  font-size: 16.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar {
  display: flex;
  flex-direction: row;
  color: white;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton {
  height: 30px;
  line-height: 30px;
  padding: 0 0.5rem;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: transparent;
  transition: background-color 250ms ease-in-out;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton svg {
  font-size: 16px;
  margin-right: 0.5rem;
  vertical-align: text-top;
  color: white;
  transition: color 250ms ease-in-out;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton .Label {
  color: white;
  display: none;
  transition: color 250ms ease-in-out;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton:last-of-type {
  padding-right: 0;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton.selected svg {
  color: #f6c13d;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton.selected .Label {
  color: #f6c13d;
}
.UnitContainer .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton:hover:not(.selected):not(.disabled) .Label {
  color: #f6c13d;
}
.UnitContainer .ContainerHeader.ContainerHeaderTall {
  height: 48px;
}
.UnitContainer .ContainerHeader.ContainerHeaderTall .ContainerToolbar .MuiButton-root {
  display: inline-flex;
  border-radius: 4px;
}
.UnitContainer .ContainerHeader.ContainerHeaderTall .ContainerToolbar .MuiButton-root svg {
  color: #f6c13d;
}
.UnitContainer .ContainerHeader.ContainerHeaderTall .ContainerToolbar .MuiButton-root.Mui-disabled {
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.2);
}
.UnitContainer .ContainerHeader.ContainerHeaderTall .ContainerToolbar .MuiButton-root.Mui-disabled svg {
  color: inherit;
}
.UnitContainer .ContainerContent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.UnitContainer .ContainerHeader + .ContainerContent {
  top: 30px;
}
.UnitContainer .ContainerHeader.ContainerHeaderTall + .ContainerContent {
  top: 48px;
}
@media screen and (min-width: 1150px) {
  .CourseUI:not(.TeacherMode) .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton {
    padding: 0 0.75rem;
  }
  .CourseUI:not(.TeacherMode) .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton:last-of-type {
    padding-right: 0.5rem;
  }
  .CourseUI:not(.TeacherMode) .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton svg {
    color: #f6c13d;
  }
  .CourseUI:not(.TeacherMode) .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton .Label {
    display: inline;
  }
}
@media screen and (min-width: 1760px) {
  .CourseUI.TeacherMode .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton {
    padding: 0 0.75rem;
  }
  .CourseUI.TeacherMode .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton:last-of-type {
    padding-right: 0.5rem;
  }
  .CourseUI.TeacherMode .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton svg {
    color: #f6c13d;
  }
  .CourseUI.TeacherMode .ContainerHeader.ContainerHeaderShort .ContainerToolbar .ContainerToolbarButton .Label {
    display: inline;
  }
}
.CourseUI .PremiumContentUnit .Wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .PremiumContentUnit .Wrapper::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .PremiumContentUnit .Wrapper::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .PremiumContentUnit .Wrapper .Centered {
  text-align: center;
  min-height: 0;
}
.CourseUI .PremiumContentUnit .Wrapper .Centered .Title {
  font-size: 2rem;
  font-weight: bold;
  color: #107474;
  margin-top: 2rem;
}
@media screen and (min-width: 1366px) {
  .CourseUI .PremiumContentUnit .Wrapper .Centered .Title {
    font-size: 3.1rem;
  }
}
.CourseUI .PremiumContentUnit .Wrapper .Centered .TopLine {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1366px) {
  .CourseUI .PremiumContentUnit .Wrapper .Centered .TopLine {
    font-size: 1.6rem;
  }
}
.CourseUI .PremiumContentUnit .Wrapper .Centered .Content {
  margin: 2rem auto 0;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 70%;
}
@media (min-width: 1366px) {
  .CourseUI .PremiumContentUnit .Wrapper .Centered .Content {
    max-width: 45%;
    font-size: 1.2rem;
  }
}
.CourseUI .PremiumContentUnit .Wrapper .Centered .PricingBtn {
  margin: 2rem auto;
}
.ModalCourseCompleted .ModalContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ModalCourseCompleted .ModalContent .CourseCompletedLabel {
  font-size: 38px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}
.ModalCourseCompleted .ModalContent .CourseCompletedLabel .Emoji {
  font-weight: 400;
  margin: 0 0.75rem;
}
.ModalCourseCompleted .ModalContent .CourseCompletedCertificate {
  margin-top: 2rem;
}
.ModalCourseCompleted .ModalContent .CourseCompletedDescription {
  margin-top: 2rem;
}
.ModalProjectCompleted .ModalContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ModalProjectCompleted .ModalContent .ProjectCompletedLabel {
  font-size: 38px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}
.ModalProjectCompleted .ModalContent .ProjectCompletedLabel .Emoji {
  font-weight: 400;
  margin: 0 0.75rem;
}
.ModalProjectCompleted .ModalContent .ProjectCompletedDescription {
  margin-top: 2rem;
}
.ModalExerciseCompleted .ModalContent .AnimationContainer {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes PassedScaleFrames {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes PassedCheckFrames {
  0% {
    transform: translateX(-200px) rotate(-320deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes PassedTextFrames {
  0% {
    transform: translateX(400px) skewX(-35deg);
  }
  90% {
    transform: translateX(0px) skewX(-35deg);
  }
  100% {
    transform: translateX(0px) skewX(0deg);
  }
}
.ModalExerciseCompleted .ModalContent .PassedAnimation {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  -webkit-animation: PassedScaleFrames 0.5s linear 0.5s;
  -o-animation: PassedScaleFrames 0.5s linear 0.5s;
  animation: PassedScaleFrames 0.5s linear 0.5s;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  height: 160px;
}
.ModalExerciseCompleted .ModalContent .PassedAnimation .check {
  display: block;
  font-size: 80px;
  position: relative;
  color: #107474;
  -webkit-animation: PassedCheckFrames 0.5s linear;
  -o-animation: PassedCheckFrames 0.5s linear;
  animation: PassedCheckFrames 0.5s linear;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.ModalExerciseCompleted .ModalContent .PassedAnimation .text {
  display: block;
  font-size: 100px;
  font-weight: bold;
  position: relative;
  color: #107474;
  padding-left: 10px;
  top: -4px;
  transform-origin: 0 100%;
  -webkit-animation: PassedTextFrames 0.5s linear;
  -o-animation: PassedTextFrames 0.5s linear;
  animation: PassedTextFrames 0.5s linear;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.ModalExerciseCompleted .ResponsiveModalFooter .RatingContainer .RatingTitle {
  font-size: 12px;
  margin-bottom: 1rem;
  margin-left: 0.7rem;
}
.ModalExerciseCompleted .ResponsiveModalFooter .RatingContainer .UnitRatingPickerIcon {
  font-size: 20px;
  line-height: 20px;
}
.ModalShareCode .ModalContent {
  min-width: 400px;
}
.ModalShareCode .ModalContent .MuiTextField-root .MuiInputLabel-root {
  line-height: 1.1;
}
.ModalShareCode .ModalContent .MuiTextField-root .MuiOutlinedInput-root {
  border-radius: 4px;
}
.ModalShareCode .ModalContent .ShareCodeImage + .MuiTextField-root {
  margin-top: 1rem;
}
.ModalCompetitionStarting .ModalContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ModalCompetitionStarting .ModalContent .CompetitionStartingLabel {
  font-size: 38px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding-right: 0.75rem;
}
.ModalCompetitionStarting .ModalContent .CompetitionStartingLabel .Emoji {
  font-weight: 400;
  margin: 0 0.75rem;
}
.ModalCompetitionStarting .ModalContent .CompetitionStartingDescription {
  margin-top: 2rem;
}
.ModalCompetitionStarting.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled) {
  color: #2a363b;
  border: 1px solid #fc847c;
}
.ModalCompetitionStarting.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled):hover {
  background-color: rgba(252, 132, 124, 0.15);
}
.ModalCompetitionStarting.CompetitionEvent .MuiButton-contained:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.ModalCompetitionStarting.CompetitionEvent .MuiButton-text:not(.Mui-disabled) {
  color: #2a363b;
}
.ModalCompetitionOver .ModalContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ModalCompetitionOver .ModalContent .CompetitionOverLabel {
  font-size: 38px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding-right: 0.75rem;
}
.ModalCompetitionOver .ModalContent .CompetitionOverLabel .Emoji {
  font-weight: 400;
  margin: 0 0.75rem;
}
.ModalCompetitionOver .ModalContent .CompetitionOverDescription {
  margin-top: 2rem;
}
.ModalCompetitionOver.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled) {
  color: #2a363b;
  border: 1px solid #fc847c;
}
.ModalCompetitionOver.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled):hover {
  background-color: rgba(252, 132, 124, 0.15);
}
.ModalCompetitionOver.CompetitionEvent .MuiButton-contained:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.ModalCompetitionOver.CompetitionEvent .MuiButton-text:not(.Mui-disabled) {
  color: #2a363b;
}
.ModalCompetitionEntrySubmitted .ModalContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ModalCompetitionEntrySubmitted .ModalContent .CompetitionCompletedLabel {
  font-size: 38px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}
.ModalCompetitionEntrySubmitted .ModalContent .CompetitionCompletedLabel .Emoji {
  font-weight: 400;
  margin: 0 0.75rem;
}
.ModalCompetitionEntrySubmitted .ModalContent .CompetitionCompletedDescription {
  margin-top: 2rem;
}
.ModalCompetitionEntrySubmitted.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled) {
  color: #2a363b;
  border: 1px solid #fc847c;
}
.ModalCompetitionEntrySubmitted.CompetitionEvent .MuiButton-outlined:not(.Mui-disabled):hover {
  background-color: rgba(252, 132, 124, 0.15);
}
.ModalCompetitionEntrySubmitted.CompetitionEvent .MuiButton-contained:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.ModalCompetitionEntrySubmitted.CompetitionEvent .MuiButton-text:not(.Mui-disabled) {
  color: #2a363b;
}
.CourseUI .CourseUnit[data-source-course-id="cs-1A"] .VideoPlayer.video-react,
.CourseUI .CourseUnit[data-source-course-id="cs-1B"] .VideoPlayer.video-react {
  background-color: white;
}
.CourseUI .CourseUnit .ContextSettingContainer {
  background-color: #313335;
  background-image: url(/assets/general/you_got_this.svg);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: calc(100% - 32px) 32px;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Title {
  font-size: 31px;
  font-weight: bold;
  color: white;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-right: 264px;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content {
  font-size: 19px;
  line-height: 1.5;
  color: white;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-right: 264px;
  margin-bottom: 2rem;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content pre {
  background-color: #252628;
  border: 1px solid #4a4d50;
  color: white;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content br + pre {
  margin-top: 0;
  margin-bottom: 0;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content table {
  border: 1px solid #c2c2c2;
  width: 70%;
  margin-top: 2rem;
  font-size: 15px;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content table thead th {
  text-align: left;
  padding: 5px;
  border: 1px solid #c2c2c2;
  background-color: #181a1b;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content table tbody td {
  text-align: left;
  padding: 5px;
  border: 1px solid #c2c2c2;
  background-color: #252628;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content ul.algorithm,
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content ol.algorithm {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 2;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content div + div {
  margin-top: 1rem;
}
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content var,
.CourseUI .CourseUnit .ContextSettingContainer .ContainerContent .Content concept {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
  font-style: normal;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer {
  background: #121112;
  background-image: url(/assets/general/music-scroller-star-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent {
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.07) 30%, rgba(255, 255, 255, 0.07) 70%, transparent 100%);
  overflow: hidden !important;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent .Title {
  display: none !important;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent .Content {
  font-family: 'Michroma', sans-serif;
  position: absolute;
  top: 64px;
  bottom: 64px;
  left: 64px;
  right: 64px;
  margin: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white #424242;
  scrollbar-width: thin;
  padding: 0.5rem;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar {
  border-radius: 0;
  background-color: #424242;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 0;
}
@media screen and (min-width: 1366px) {
  .CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent .Content {
    font-size: 26px;
  }
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-005"] .ContextSettingContainer .ContainerContent .Content div + div {
  margin-top: 0;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer {
  background: #121112;
  box-shadow: inset 0 0 65px 20px rgba(0, 0, 0, 0.7);
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent {
  overflow: hidden !important;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Title {
  display: none !important;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content {
  font-family: 'Press Start 2P', cursive;
  position: absolute;
  top: 64px;
  bottom: 64px;
  left: 64px;
  right: 64px;
  margin: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white #424242;
  scrollbar-width: thin;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar {
  border-radius: 0;
  background-color: #424242;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 0;
}
@media screen and (min-width: 1366px) {
  .CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content,
  .CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content,
  .CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent .Content,
  .CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent .Content,
  .CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content,
  .CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content {
    font-size: 26px;
  }
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer .ContainerContent .Content div + div {
  margin-top: 0;
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-002"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"] .ContextSettingContainer {
  background-image: url(/assets/general/temple-of-horus-background.jpg);
}
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-003"][data-class-id="b545ccf5-678e-487e-bae4-9602067ad08d"] .ContextSettingContainer {
  background-image: url(/assets/general/frosted-forest-background.jpg);
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-003"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-002"] .ContextSettingContainer {
  background-image: url(/assets/general/chiropteras-lair-background.jpg);
}
.CourseUI .CourseUnit[data-source-course-id="creative"][data-source-unit-id="exercise-004"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="competition"][data-source-unit-id="exercise-001"] .ContextSettingContainer {
  background-image: url(/assets/general/frosted-forest-background.jpg);
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer {
  background: #121112;
  background: linear-gradient(100deg, #121112 0%, #2d2c2d 30%, #2d2c2d 70%, #121112 100%);
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent {
  background-image: url(/assets/general/cs-3-description.svg);
  background-repeat: no-repeat;
  background-size: calc(100% - 2 * 32px) calc(100% - 2 * 32px);
  background-position: center;
  overflow: hidden !important;
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent .Title {
  display: none !important;
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent .Content {
  font-family: 'Handlee', cursive;
  font-size: 23px;
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 80px;
  right: 80px;
  margin: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white #424242;
  scrollbar-width: thin;
  padding: 0.5rem;
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar {
  border-radius: 0;
  background-color: #424242;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 0;
}
@media screen and (min-width: 1366px) {
  .CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent .Content,
  .CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent .Content {
    top: 128px;
    bottom: 128px;
    left: 128px;
    right: 128px;
    font-size: 29px;
  }
}
.CourseUI .CourseUnit[data-source-course-id="cs-3A"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="cs-3B"] .ContextSettingContainer .ContainerContent .Content div + div {
  margin-top: 0;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer {
  background: black;
  background: repeating-linear-gradient(-45deg, #ed274a 0, #ed274a 30px, black 30px, black 60px);
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent {
  overflow: hidden !important;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Title,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Title {
  display: none !important;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 17px;
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  margin: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white #1d242e;
  scrollbar-width: thin;
  border: 2px solid #ed274a;
  background-color: #1d242e;
  padding: 2rem;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar {
  border-radius: 0;
  background-color: #1d242e;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 0;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content pre,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content pre {
  background: #27303e;
  border: 1px solid #3b495d;
  margin-top: 0;
  margin-bottom: 0;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content div + div,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content div + div {
  margin-top: 0;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message {
  position: relative;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .from,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .from {
  font-weight: bold;
  border-bottom: 2px solid #ed274a;
  padding-bottom: 1rem;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .from::before,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .from::before {
  content: 'CLASSIFIED';
  position: absolute;
  top: -2rem;
  right: 0;
  color: #ed274a;
  font-weight: bold;
  font-size: 48px;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .body,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .body {
  margin-top: 1.5rem;
  width: 30em;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .body .indent-left-1,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .body .indent-left-1 {
  margin-left: 0.95rem;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .body .indent-left-1 + br,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .body .indent-left-1 + br {
  display: none;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .signature,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .signature {
  font-style: italic;
  color: white;
  margin-top: 1.5rem;
  margin-left: 3rem;
}
.CourseUI .CourseUnit[data-source-course-id="cs-4A"] .ContextSettingContainer .ContainerContent .Content .email-message .email-footer,
.CourseUI .CourseUnit[data-source-course-id="cs-4B"] .ContextSettingContainer .ContainerContent .Content .email-message .email-footer {
  margin-top: 2rem;
  font-weight: bold;
  text-align: center;
  color: #ed274a;
  padding: 0.5rem;
  background: #27303e;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerHeader,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerHeader {
  color: #f6c13d;
  font-size: 19px;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionPrompt,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionPrompt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 49%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
  color: #f5f5f5;
  font-size: 18px;
  line-height: 1.7;
  padding: 2rem;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionPrompt::-webkit-scrollbar,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionPrompt::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionPrompt::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionPrompt::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionPrompt,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionPrompt {
    font-size: 21px;
  }
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 49%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
  padding: 2rem;
  counter-reset: answers;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers::-webkit-scrollbar,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers::-webkit-scrollbar-thumb,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset {
  display: block;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label .Counter,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label .Counter {
  position: relative;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label .Counter::before,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label .Counter::before {
  counter-increment: answers;
  content: counter(answers, upper-alpha);
  position: absolute;
  left: -95px;
  top: -30px;
  font-size: 50px;
  font-weight: 100;
  color: rgba(245, 245, 245, 0.2);
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel.MuiFormControlLabel-root,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel.MuiFormControlLabel-root {
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  margin-left: 40px;
  margin-bottom: 0;
  color: #f5f5f5;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiSvgIcon-root,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiSvgIcon-root {
  fill: #7a8085;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label.Mui-disabled,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label.Mui-disabled {
  font-size: 16px;
  margin-left: 15px;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label,
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label.Mui-disabled,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label.Mui-disabled {
    font-size: 19px;
  }
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label {
  color: #f5f5f5;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label.Mui-disabled,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel .MuiFormControlLabel-label.Mui-disabled {
  color: rgba(245, 245, 245, 0.5);
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel.Mui-disabled .CodeViewer,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel.Mui-disabled .CodeViewer,
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel.Mui-disabled .section.samp,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel.Mui-disabled .section.samp {
  opacity: 0.75;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation {
  color: #f6c13d;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.7;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation svg {
  margin-right: 8px;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation {
    font-size: 16px;
  }
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation svg,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerExplanation svg {
    margin-right: 10px;
  }
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel + .AnswerExplanation,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer .AnswerLabel + .AnswerExplanation {
  padding-left: 95px;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.Selected::before,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.Selected::before {
  color: rgba(245, 245, 245, 0.3);
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.Selected .AnswerLabel .MuiSvgIcon-root,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.Selected .AnswerLabel .MuiSvgIcon-root {
  fill: #f5f5f5;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .MuiSvgIcon-root,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .MuiSvgIcon-root {
  fill: #f6c13d !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .MuiFormControlLabel-label {
  color: rgba(245, 245, 245, 0.8) !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .CodeViewer,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .CodeViewer,
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .section.samp,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.AnswerCorrect .section.samp {
  opacity: 1 !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .MuiSvgIcon-root,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .MuiSvgIcon-root {
  fill: #4bff00 !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .MuiFormControlLabel-label {
  color: rgba(245, 245, 245, 0.8) !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .CodeViewer,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .CodeViewer,
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .section.samp,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserCorrect .section.samp {
  opacity: 1 !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserIncorrect .MuiSvgIcon-root,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserIncorrect .MuiSvgIcon-root {
  fill: #ff0040 !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserIncorrect .MuiFormControlLabel-label,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer.UserIncorrect .MuiFormControlLabel-label {
  color: rgba(245, 245, 245, 0.8) !important;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer + .QuizQuestionAnswer,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers fieldset .QuizQuestionAnswer + .QuizQuestionAnswer {
  margin-top: 1rem;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton {
  margin-top: 2rem;
  margin-left: 53px;
  display: inline-flex;
  border-radius: 4px;
  font-size: 1.15em;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton {
    font-size: 1.35rem;
  }
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton svg {
  color: #f6c13d;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton.Mui-disabled,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton.Mui-disabled {
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.2);
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton.Mui-disabled svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizQuestionSubmitButton.Mui-disabled svg {
  color: inherit;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton {
  margin-top: 2rem;
  margin-left: 53px;
  display: inline-flex;
  border-radius: 4px;
  font-size: 1.15em;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton {
    font-size: 1.35rem;
  }
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton svg {
  color: #f6c13d;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton.Mui-disabled,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton.Mui-disabled {
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.2);
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton.Mui-disabled svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewPrevButton.Mui-disabled svg {
  color: inherit;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton {
  margin-top: 2rem;
  margin-left: 2rem;
  display: inline-flex;
  border-radius: 4px;
  font-size: 1.15em;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton,
  .CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton {
    font-size: 1.35rem;
  }
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton svg {
  color: #f6c13d;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton.Mui-disabled,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton.Mui-disabled {
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.2);
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton.Mui-disabled svg,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .QuizReviewNextButton.Mui-disabled svg {
  color: inherit;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent code,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent code,
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent var,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent var {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #141414;
  color: #f92672;
  border: none;
  border-radius: 4px;
  font-size: 90%;
  font-style: normal;
  font-weight: normal;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .section + .section,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .section + .section {
  margin-top: 1rem;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .section.text,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .section.text {
  line-height: 1.7;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .section.text p,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .section.text p {
  margin: 0;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .section.samp,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .section.samp {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  background-color: #141414;
  color: #66d9ef;
  border: 1px solid #4b4b4b;
  border-radius: 0.3rem;
  font-size: 14px;
  margin: 0;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .section.samp samp,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .section.samp samp {
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .section.samp samp p,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .section.samp samp p {
  margin: 0;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .section.code .CodeViewer .prism-code,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .section.code .CodeViewer .prism-code {
  white-space: pre-wrap;
}
.CourseUI .CourseUnit .QuizAnsweringContainer .ContainerContent .QuizQuestionAnswers .section.samp samp,
.CourseUI .CourseUnit .QuizReviewingContainer .ContainerContent .QuizQuestionAnswers .section.samp samp {
  white-space: pre-wrap;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerHeader {
  color: #f6c13d;
  font-size: 19px;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizImage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 49%;
  margin-top: 1rem;
  overflow: hidden;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizImage img {
  max-height: calc(100vh - 250px);
  text-align: center;
  margin: auto;
  display: block;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 49%;
  margin-top: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
  text-align: center;
  color: #f5f5f5;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
@media screen and (min-width: 1700px) {
  .CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore {
    margin-top: 2rem;
  }
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .UserScoreTitle {
  font-size: 35px;
  font-weight: 100;
  color: rgba(245, 245, 245, 0.8);
}
@media screen and (min-height: 720px) {
  .CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .UserScoreTitle {
    font-size: 55px;
  }
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .UserScore {
  font-size: 90px;
  font-weight: bold;
}
@media screen and (min-height: 720px) {
  .CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .UserScore {
    font-size: 195px;
  }
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .TotalScore {
  font-size: 20px;
  font-weight: 100;
  color: rgba(245, 245, 245, 0.8);
}
@media screen and (min-height: 720px) {
  .CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .TotalScore {
    font-size: 30px;
  }
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizReviewButton {
  margin-top: 2rem;
  display: inline-flex;
  border-radius: 4px;
  font-size: 1.15em;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizReviewButton {
    font-size: 1.35rem;
  }
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizReviewButton svg {
  color: #f6c13d;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizReviewButton.Mui-disabled {
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.2);
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizReviewButton.Mui-disabled svg {
  color: inherit;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizContinueButton {
  margin-top: 2rem;
  margin-left: 2rem;
  display: inline-flex;
  border-radius: 4px;
  font-size: 1.15em;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizContinueButton {
    font-size: 1.35rem;
  }
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizContinueButton svg {
  color: #f6c13d;
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizContinueButton.Mui-disabled {
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.2);
}
.CourseUI .CourseUnit .QuizCompletedContainer .ContainerContent .QuizScore .QuizContinueButton.Mui-disabled svg {
  color: inherit;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerHeader,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerHeader {
  z-index: 2;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerHeader .ContainerToolbar .CodeEditorFontSizePicker,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerHeader .ContainerToolbar .CodeEditorFontSizePicker {
  height: 30px;
  line-height: 30px;
  margin-right: 0.75rem;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .ViewingSolutionWarning {
  position: absolute;
  top: -24px;
  height: 24px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #f6c13d;
  font-size: 13.5px;
  color: #313335;
  overflow: hidden;
  transition: top 300ms ease-in-out;
  z-index: 1;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: top 300ms ease-in-out;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper .CodeAutoSaver,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper .CodeAutoSaver {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 300;
  display: inline-block;
  background: white;
  padding: 0.4rem 0.5rem;
  color: #313335;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper .CodeAutoSaver svg,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper .CodeAutoSaver svg {
  margin-right: 0.5rem;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper .CodeSectionSwitcher,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper .CodeSectionSwitcher {
  position: absolute;
  top: 0;
  height: 30px;
  left: 0;
  right: 0;
  overflow: hidden;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper .CodeMirrorEditor,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper .CodeMirrorEditor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: auto;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper .CodeSectionSwitcher + .CodeMirrorEditor,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper .CodeSectionSwitcher + .CodeMirrorEditor {
  top: 30px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent .EditorWrapper.WithCodeSwitcher .CodeAutoSaver,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent .EditorWrapper.WithCodeSwitcher .CodeAutoSaver {
  top: calc(2rem + 30px);
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter .ViewingSolutionWarning {
  top: -24px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter .EditorWrapper {
  top: 0;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-active .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-active .ViewingSolutionWarning {
  top: 0;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-active .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-active .EditorWrapper {
  top: 24px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-done .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-done .ViewingSolutionWarning {
  top: 0;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-done .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-enter-done .EditorWrapper {
  top: 24px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit .ViewingSolutionWarning {
  top: 0;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit .EditorWrapper {
  top: 24px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-active .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-active .ViewingSolutionWarning {
  top: -24px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-active .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-active .EditorWrapper {
  top: 0;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-done .ViewingSolutionWarning,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-done .ViewingSolutionWarning {
  top: -24px;
}
.CourseUI .CourseUnit .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-done .EditorWrapper,
.ShareUI .ShareCodeTeacherView .CodeEditorContainer .ContainerContent.viewing-solution-transition-exit-done .EditorWrapper {
  top: 0;
}
.CourseUI .CourseUnit .GameContainer .ContainerContent,
.ShareUI .ShareCodeStudentView .GameContainer .ContainerContent,
.ShareUI .ShareCodeTeacherView .GameContainer .ContainerContent {
  background-color: black;
}
.CourseUI .CourseUnit .GameContainer .ContainerContent .LoadingError .Content,
.ShareUI .ShareCodeStudentView .GameContainer .ContainerContent .LoadingError .Content,
.ShareUI .ShareCodeTeacherView .GameContainer .ContainerContent .LoadingError .Content {
  color: #ccccbb;
  padding: 4vh;
}
.CourseUI .CourseUnit .GameContainer .ContainerContent .LoadingError .Content img,
.ShareUI .ShareCodeStudentView .GameContainer .ContainerContent .LoadingError .Content img,
.ShareUI .ShareCodeTeacherView .GameContainer .ContainerContent .LoadingError .Content img {
  width: 15vh;
  height: 15vh;
}
.CourseUI .CourseUnit .GameContainer .ContainerContent .LoadingError .Content .text,
.ShareUI .ShareCodeStudentView .GameContainer .ContainerContent .LoadingError .Content .text,
.ShareUI .ShareCodeTeacherView .GameContainer .ContainerContent .LoadingError .Content .text {
  font-size: 1.2vw;
}
.CourseUI .CourseUnit .GameContainer .ContainerContent .LoadingError .Content .description,
.ShareUI .ShareCodeStudentView .GameContainer .ContainerContent .LoadingError .Content .description,
.ShareUI .ShareCodeTeacherView .GameContainer .ContainerContent .LoadingError .Content .description {
  font-size: 0.9vw;
}
.CourseUI .CourseUnit .GameContainer .ContainerContent .GameIframe,
.ShareUI .ShareCodeStudentView .GameContainer .ContainerContent .GameIframe,
.ShareUI .ShareCodeTeacherView .GameContainer .ContainerContent .GameIframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: none;
}
.CourseUI .CourseUnit .GameContainer.Loading .GameIframe,
.ShareUI .ShareCodeStudentView .GameContainer.Loading .GameIframe,
.ShareUI .ShareCodeTeacherView .GameContainer.Loading .GameIframe {
  visibility: hidden;
}
.CourseUI .CourseUnit .OutputConsoleContainer .ContainerHeader .ContainerTitle .ErrorIndicator,
.ShareUI .ShareCodeTeacherView .OutputConsoleContainer .ContainerHeader .ContainerTitle .ErrorIndicator {
  color: #ff0040;
  font-size: 16px;
  transition: opacity 300ms ease-in-out;
  margin-left: 8px;
  position: relative;
  top: -2px;
  opacity: 0;
}
.CourseUI .CourseUnit .OutputConsoleContainer .ContainerContent,
.ShareUI .ShareCodeTeacherView .OutputConsoleContainer .ContainerContent {
  background-color: #181a1b;
}
.CourseUI .CourseUnit .OutputConsoleContainer .ContainerContent .Messages,
.ShareUI .ShareCodeTeacherView .OutputConsoleContainer .ContainerContent .Messages {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .CourseUnit .OutputConsoleContainer .ContainerContent .Messages::-webkit-scrollbar,
.ShareUI .ShareCodeTeacherView .OutputConsoleContainer .ContainerContent .Messages::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .OutputConsoleContainer .ContainerContent .Messages::-webkit-scrollbar-thumb,
.ShareUI .ShareCodeTeacherView .OutputConsoleContainer .ContainerContent .Messages::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .CourseUnit .OutputConsoleContainer.HasError .ContainerTitle .ErrorIndicator,
.ShareUI .ShareCodeTeacherView .OutputConsoleContainer.HasError .ContainerTitle .ErrorIndicator {
  opacity: 1;
}
.CourseUI .CourseUnit .TasksContainer .ContainerContent {
  padding: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #c2c2c2;
  background-color: #181a1b;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .CourseUnit .TasksContainer .ContainerContent::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .TasksContainer .ContainerContent::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI[data-course-id="competition"] .TasksContainer .ContainerContent .Tasks {
  margin-top: 0.75rem;
}
.CourseUI[data-course-id="competition"] .sectionIdLabel {
  display: none !important;
}
.CourseUI .CourseUnit .TutorialContainer .ContainerContent {
  padding: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #c2c2c2;
  background-color: #181a1b;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .CourseUnit .TutorialContainer .ContainerContent::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .TutorialContainer .ContainerContent::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .CourseUnit .TipsContainer .ContainerContent {
  padding: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #c2c2c2;
  background-color: #181a1b;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .CourseUnit .TipsContainer .ContainerContent::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .TipsContainer .ContainerContent::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .CourseUnit .AutoDocsContainer .ContainerContent {
  padding: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #c2c2c2;
  background-color: #181a1b;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #6e7377 #c2c2c2;
  scrollbar-width: thin;
}
.CourseUI .CourseUnit .AutoDocsContainer .ContainerContent::-webkit-scrollbar {
  border-radius: 0;
  background-color: #c2c2c2;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: 8px;
}
.CourseUI .CourseUnit .AutoDocsContainer .ContainerContent::-webkit-scrollbar-thumb {
  background-color: #6e7377;
  border-radius: 0;
}
.CourseUI .VideoSummaryView .UnitContainer.UnitVideoContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.CourseUI .VideoLessonView .UnitContainer.UnitVideoContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.CourseUI .ContextSettingView .UnitContainer.ContextSettingContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.CourseUI .QuizAnsweringView .UnitContainer.QuizAnsweringContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.CourseUI .QuizCompletedView .UnitContainer.QuizCompletedContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.CourseUI .QuizReviewingView .UnitContainer.QuizReviewingContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.CourseUI .CodeView .UnitContainer.CodeEditorContainer {
  top: 0;
  bottom: 30px;
  left: 0;
  width: 50%;
  transition: bottom 300ms ease-in-out;
  z-index: 1;
}
.CourseUI .CodeView .UnitContainer.OutputConsoleContainer {
  bottom: calc(-50% + 30px);
  height: 50%;
  left: 0;
  width: 50%;
  transition: bottom 300ms ease-in-out;
  z-index: 2;
}
.CourseUI .CodeView .UnitContainer.InstructionsContainer {
  top: 0;
  bottom: 50%;
  right: 0;
  width: 50%;
  z-index: 1;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer {
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  z-index: 4;
  transition: left 300ms ease-in-out;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-enter {
  left: 100%;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-enter-active {
  left: 0%;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-enter-done {
  left: 0%;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-exit {
  left: 0%;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-exit-active {
  left: 100%;
}
.CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-exit-done {
  left: 100%;
}
@media screen and (min-width: 1920px) {
  .CourseUI .CodeView .UnitContainer.DocumentationContainer {
    width: 50%;
  }
  .CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-enter {
    left: 100%;
  }
  .CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-enter-active {
    left: 50%;
  }
  .CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-enter-done {
    left: 50%;
  }
  .CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-exit {
    left: 50%;
  }
  .CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-exit-active {
    left: 100%;
  }
  .CourseUI .CodeView .UnitContainer.DocumentationContainer.documentation-transition-exit-done {
    left: 100%;
  }
}
.CourseUI .CodeView .UnitContainer.GameContainer {
  top: 50%;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: 3;
  transition: top 300ms ease-in-out, width 300ms ease-in-out;
}
.CourseUI .CodeView .UnitContainer.GameContainer.game-transition-enter {
  top: 50%;
  width: 50%;
}
.CourseUI .CodeView .UnitContainer.GameContainer.game-transition-enter-active {
  top: 0;
  width: 100%;
}
.CourseUI .CodeView .UnitContainer.GameContainer.game-transition-enter-done {
  top: 0;
  width: 100%;
}
.CourseUI .CodeView .UnitContainer.GameContainer.game-transition-exit {
  top: 0;
  width: 100%;
}
.CourseUI .CodeView .UnitContainer.GameContainer.game-transition-exit-active {
  top: 50%;
  width: 50%;
}
.CourseUI .CodeView .UnitContainer.GameContainer.game-transition-exit-done {
  top: 50%;
  width: 50%;
}
.CourseUI .CodeView.output-transition-enter .OutputConsoleContainer {
  bottom: calc(-50% + 30px);
}
.CourseUI .CodeView.output-transition-enter .CodeEditorContainer {
  bottom: 30px;
}
.CourseUI .CodeView.output-transition-enter-active .OutputConsoleContainer {
  bottom: 0;
}
.CourseUI .CodeView.output-transition-enter-active .CodeEditorContainer {
  bottom: 50%;
}
.CourseUI .CodeView.output-transition-enter-done .OutputConsoleContainer {
  bottom: 0;
}
.CourseUI .CodeView.output-transition-enter-done .CodeEditorContainer {
  bottom: 50%;
}
.CourseUI .CodeView.output-transition-exit .OutputConsoleContainer {
  bottom: 0;
}
.CourseUI .CodeView.output-transition-exit .CodeEditorContainer {
  bottom: 50%;
}
.CourseUI .CodeView.output-transition-exit-active .OutputConsoleContainer {
  bottom: calc(-50% + 30px);
}
.CourseUI .CodeView.output-transition-exit-active .CodeEditorContainer {
  bottom: 30px;
}
.CourseUI .CodeView.output-transition-exit-done .OutputConsoleContainer {
  bottom: calc(-50% + 30px);
}
.CourseUI .CodeView.output-transition-exit-done .CodeEditorContainer {
  bottom: 30px;
}
.CourseUI .CourseHeader {
  position: absolute;
  top: 0;
  height: 40px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 6;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #0c0d0d;
}
.CourseUI .CourseHeader .UnitIcon {
  margin-left: 1rem;
}
.CourseUI .CourseHeader .UnitIcon img {
  width: 2.15rem;
}
.CourseUI .CourseHeader .UnitTitle {
  padding: 8px;
  font-size: 23px;
  font-weight: 500;
  color: #f5f5f5;
}
.CourseUI .CourseHeader .HeaderSpacer {
  flex: auto;
}
.CourseUI .CourseHeader .DEBUG_HeaderButton {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 1rem;
  cursor: pointer;
  display: none;
}
@media screen and (min-width: 1025px) {
  .CourseUI .CourseHeader .DEBUG_HeaderButton {
    display: block;
  }
}
.CourseUI .CourseBackButton {
  background-color: transparent;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  cursor: pointer;
  transition: background-color 250ms ease-in-out;
}
.CourseUI .CourseBackButton svg {
  color: #f6c13d;
  transition: color 250ms ease-in-out;
}
.CourseUI .CourseBackButton .ButtonText {
  text-transform: uppercase;
}
.CourseUI .CourseBackButton:hover {
  background-color: #313335;
}
.CourseUI .CourseNavigation {
  background-color: transparent;
}
.CourseUI .CourseNavigation .MuiMobileStepper-dot {
  background-color: rgba(255, 255, 255, 0.5);
}
.CourseUI .CourseNavigation .MuiMobileStepper-dot.MuiMobileStepper-dotActive {
  background-color: #f6c13d;
}
.CourseUI .CourseNavigation .MuiButton-root {
  font-weight: 400;
  color: white;
  transition: color 250ms ease-in-out;
}
.CourseUI .CourseNavigation .MuiButton-root .MuiButton-startIcon,
.CourseUI .CourseNavigation .MuiButton-root .MuiButton-endIcon {
  color: #f6c13d;
}
.CourseUI .CourseNavigation .MuiButton-root.Mui-disabled {
  color: rgba(255, 255, 255, 0.5);
}
.CourseUI .CourseNavigation .MuiButton-root.Mui-disabled .MuiButton-startIcon,
.CourseUI .CourseNavigation .MuiButton-root.Mui-disabled .MuiButton-endIcon {
  color: rgba(255, 255, 255, 0.5);
}
.CourseUI .CourseNavigation .MuiButton-root:hover {
  color: #f6c13d;
}
.ShareUI .ShareHeader {
  position: absolute;
  top: 0;
  height: 40px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 6;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #0c0d0d;
}
.ShareUI .ShareHeader .UnitTitle {
  padding: 8px;
  font-size: 23px;
  font-weight: 500;
  color: #f5f5f5;
}
.ShareUI .ShareHeader .UnitCreator {
  color: #f5f5f5;
  font-weight: 400;
}
.ShareUI .ShareHeader .HeaderSpacer {
  flex: auto;
}
.ShareUI .ShareHeader .HeaderButton {
  height: 30px;
  line-height: 30px;
  padding: 0 0.75rem;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: transparent;
  transition: background-color 250ms ease-in-out;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
}
.ShareUI .ShareHeader .HeaderButton svg {
  font-size: 16px;
  margin-right: 0.5rem;
  vertical-align: text-top;
  color: #f6c13d;
  transition: color 250ms ease-in-out;
}
.ShareUI .ShareHeader .HeaderButton .Label {
  color: white;
  display: inline;
  transition: color 250ms ease-in-out;
}
.ShareUI .ShareHeader .HeaderButton.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.ShareUI .ShareHeader .HeaderButton.selected svg {
  color: #f6c13d;
}
.ShareUI .ShareHeader .HeaderButton.selected .Label {
  color: #f6c13d;
}
.ShareUI .ShareHeader .HeaderButton:hover:not(.selected):not(.disabled) .Label {
  color: #f6c13d;
}
.ShareUI .ShareBackButton {
  background-color: transparent;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  cursor: pointer;
  transition: background-color 250ms ease-in-out;
}
.ShareUI .ShareBackButton svg {
  color: #f6c13d;
  transition: color 250ms ease-in-out;
}
.ShareUI .ShareBackButton .ButtonText {
  text-transform: uppercase;
}
.ShareUI .ShareBackButton:hover {
  background-color: #313335;
}
.ShareUI {
  background-color: #313335;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.ShareUI > .LoadingError .Content {
  color: #ccccbb;
}
.ShareUI .ShareCodeTeacherView {
  top: 40px;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.CodeEditorContainer {
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  z-index: 1;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.OutputConsoleContainer {
  top: 0;
  height: 50%;
  right: 0;
  width: 50%;
  z-index: 2;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer {
  top: 50%;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: 3;
  transition: top 300ms ease-in-out, width 300ms ease-in-out;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer.game-transition-enter {
  top: 50%;
  width: 50%;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer.game-transition-enter-active {
  top: 0;
  width: 100%;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer.game-transition-enter-done {
  top: 0;
  width: 100%;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer.game-transition-exit {
  top: 0;
  width: 100%;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer.game-transition-exit-active {
  top: 50%;
  width: 50%;
}
.ShareUI .ShareCodeTeacherView .UnitContainer.GameContainer.game-transition-exit-done {
  top: 50%;
  width: 50%;
}
.ShareUI .ShareCodeStudentView {
  top: 40px;
}
.ShareUI .ShareCodeStudentView .UnitContainer.GameContainer {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.ShareUI .ShareCodeStudentView .UnitContainer.GameContainer .ContainerHeader {
  display: none;
}
.ShareUI .ShareCodeStudentView .UnitContainer.GameContainer .ContainerContent {
  top: 0;
}
.ShareUI .ShareCodeStudentView .Overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  opacity: 0.85;
}
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton {
  position: absolute;
  color: white;
  cursor: pointer;
  width: 300px;
  height: 300px;
  background-color: white;
  opacity: 0.75;
  border-radius: 150px;
  border: none;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -150px;
}
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #313335;
  overflow: visible;
}
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton::before {
  content: " ";
  width: 0;
  height: 0;
  border-top: 86px solid transparent;
  border-bottom: 86px solid transparent;
  border-left: 136px solid #313335;
  top: 64px;
  left: 100px;
}
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton svg,
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton .Label {
  display: none;
}
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton.disabled {
  opacity: 0.25;
}
.ShareUI .ShareCodeStudentView .Overlay:hover .ShareRunCodeButton:not(.disabled),
.ShareUI .ShareCodeStudentView .Overlay .ShareRunCodeButton:focus:not(.disabled) {
  opacity: 0.85;
}
.ShareUI .GameContainer.Loading + .Overlay {
  opacity: 0;
}
.ShareUI .GameContainer.Loading + .Overlay .ShareRunCodeButton {
  display: none;
}
.HOCTrackingPixel {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  display: block !important;
  visibility: hidden !important;
  position: fixed !important;
  pointer-events: none !important;
  user-select: none !important;
}
.ModalHOCWelcome .MuiDialogContent-root {
  padding: 0;
}
.ModalHOCWelcome .MuiDialogContent-root .ModalContent .Header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 225px;
  position: relative;
}
.ModalHOCWelcome .MuiDialogContent-root .ModalContent .Header::before {
  content: " ";
  background: url(/assets/general/tutorial-modal-image.png);
  position: absolute;
  left: -89px;
  bottom: -54px;
  width: 277px;
  height: 288px;
  transform: rotate(45deg);
}
.ModalHOCWelcome .MuiDialogContent-root .ModalContent .Header .Greeting {
  font-size: 48px;
  font-weight: 100;
  position: relative;
  top: -10px;
  left: 20px;
}
.ModalHOCWelcome .MuiDialogContent-root .ModalContent .Content {
  display: block;
  background: #f7f7f7;
  font-size: 16px;
  line-height: 1.5;
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
  position: relative;
  z-index: 1000;
}
.ModalHOCWelcome .MuiDialogContent-root .ModalContent .Content .ButtonLink {
  font-size: 14px;
  font-weight: bold;
}
.ModalHOCWelcome .MuiDialogActions-root .TutorialFooterButton .MuiButton-label {
  color: #56595d;
}
.HOCTeacher .PageContent {
  border-radius: 0;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.98);
}
.HOCTeacher .PageContent .DownloadButton {
  padding: 8px 16px;
  border-radius: 8px;
  float: right;
}
.HOCTeacher .PageContent .ActivityImage {
  margin-top: 0.5rem;
}
.HOCTeacher .PageContent .ActivityImage > img {
  width: 300px;
  max-width: 100%;
}
.HOCTeacher .PageContent .SubPageTitle {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 24.5px;
  font-weight: bold;
}
.HOCTeacher .PageContent .Title {
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 22.5px;
  font-weight: bold;
}
.HOCTeacher .PageContent .SubTitle {
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 17.5px;
  font-weight: bold;
}
.HOCTeacher .PageContent .SubSubTitle {
  margin-bottom: 0.5rem;
  font-size: 16.5px;
  font-weight: bold;
}
.HOCTeacher .PageContent .Body {
  margin-bottom: 1rem;
  font-size: 16.5px;
}
.HOCTeacher .PageContent .Body ul + div {
  margin-top: 1rem;
}
.HOCTeacher .PageContent .Body .WithSpace {
  margin-top: 1rem;
}
.HOCTeacher .PageContent .Body .ObjectiveLabel {
  color: #555;
  white-space: pre;
  font-family: Consolas, "Lucida Console", "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 85%;
  margin-right: 0.5rem;
}
.HOCTeacher .PageContent .Body .ObjectiveLabel::before {
  content: "[";
}
.HOCTeacher .PageContent .Body .ObjectiveLabel::after {
  content: "]";
}
.SectionBackground {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.SectionBackground .SectionBackground {
  position: relative;
  flex: 0 0 auto;
}
.SectionBackground .SectionContent {
  position: relative;
  flex: 1 1 auto;
}
.SectionCurves {
  margin-top: 60px;
  margin-bottom: 60px;
}
.SectionCurves.FirstCurve {
  margin-top: 80px;
}
.SectionCurves.SmallFirstCurve {
  margin-top: 20px;
}
.SectionCurves.LastCurve {
  margin-bottom: 0;
}
.SectionContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.DemoSection {
  text-align: center;
  align-self: center;
  width: 100%;
  color: #000000;
}
.DemoSection .SectionTitle {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
}
.DemoSection .SectionText {
  font-size: 1.2em;
  line-height: 1.6em;
  display: block;
  margin-bottom: 20px;
}
.DemoSection .SectionSubTitle {
  font-size: 1.15em;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}
.DemoSection .SectionSubText {
  font-size: 1.05em;
  line-height: 1.15em;
  display: block;
  margin-bottom: 20px;
}
.App[data-client-id="conceptx"] .LoginButton {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
.App[data-client-id="brilliantlabs"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage,
.App[data-client-id="Brilliant Labs"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage {
  width: 150px !important;
  padding: 5px !important;
  height: unset !important;
  border-radius: unset !important;
  background-color: unset !important;
}
.App[data-client-id="multicode"] .primaryContent,
.App[data-client-id="Multi Code Academy"] .primaryContent {
  background-color: #cccccc !important;
  background-image: unset !important;
}
.App[data-client-id="multicode"] .primaryContent .DashboardSideBar .SideBarPanel,
.App[data-client-id="Multi Code Academy"] .primaryContent .DashboardSideBar .SideBarPanel {
  background-color: #222222 !important;
}
.App[data-client-id="multicode"] .primaryContent .SideBarToggleBar,
.App[data-client-id="Multi Code Academy"] .primaryContent .SideBarToggleBar {
  background-color: #222222 !important;
  border: 1px solid #222222 !important;
}
.App[data-client-id="multicode"] .primaryContent .SideBarToggleBar .SideBarToggleHandle,
.App[data-client-id="Multi Code Academy"] .primaryContent .SideBarToggleBar .SideBarToggleHandle {
  background-color: #222222 !important;
  border: 1px solid #222222 !important;
}
.App[data-client-id="multicode"] .primaryContent .SuccessForm .SuccessFormButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .SuccessForm .SuccessFormButton {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .HomePageVersion,
.App[data-client-id="Multi Code Academy"] .primaryContent .HomePageVersion {
  color: #000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="multicode"] .primaryContent .MasterForm .MasterFormContent,
.App[data-client-id="Multi Code Academy"] .primaryContent .MasterForm .MasterFormContent {
  border: 1px solid #fe8d1b !important;
  box-shadow: 0px 3px 5px rgba(187, 187, 187, 0.7) !important;
}
.App[data-client-id="multicode"] .primaryContent .MasterForm .MasterFormContent .MasterFormNavigationButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .MasterForm .MasterFormContent .MasterFormNavigationButton {
  color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .MasterForm.ThinMasterForm .MasterFormContent .MasterFormBrand img,
.App[data-client-id="Multi Code Academy"] .primaryContent .MasterForm.ThinMasterForm .MasterFormContent .MasterFormBrand img {
  left: -2px;
  position: relative;
}
.App[data-client-id="multicode"] .primaryContent .SignUp,
.App[data-client-id="Multi Code Academy"] .primaryContent .SignUp {
  background-image: unset !important;
}
.App[data-client-id="multicode"] .primaryContent .SignUp .MasterFormContent .MasterFormNavigationButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .SignUp .MasterFormContent .MasterFormNavigationButton {
  color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .SignUp .SignUpForm .SignUpButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .SignUp .SignUpForm .SignUpButton {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .SignUp .SignUpForm .SignUpCheckBox .MuiCheckbox-colorPrimary.Mui-checked,
.App[data-client-id="Multi Code Academy"] .primaryContent .SignUp .SignUpForm .SignUpCheckBox .MuiCheckbox-colorPrimary.Mui-checked {
  color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .SignUp .ClassCodeSignUpForm .ClassCodeSignUpButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .SignUp .ClassCodeSignUpForm .ClassCodeSignUpButton {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .SignUp .SelectUserAge .SelectUserAgeSubmitButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .SignUp .SelectUserAge .SelectUserAgeSubmitButton {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .ConfirmEmail,
.App[data-client-id="Multi Code Academy"] .primaryContent .ConfirmEmail {
  background-image: unset !important;
}
.App[data-client-id="multicode"] .primaryContent .ConfirmEmail .ReturnToLoginButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .ConfirmEmail .ReturnToLoginButton {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .ResetPassword,
.App[data-client-id="Multi Code Academy"] .primaryContent .ResetPassword {
  background-image: unset !important;
}
.App[data-client-id="multicode"] .primaryContent .ResetPassword .ResetPasswordButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .ResetPassword .ResetPasswordButton {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.App[data-client-id="multicode"] .primaryContent .manageClasses .Instructions,
.App[data-client-id="Multi Code Academy"] .primaryContent .manageClasses .Instructions,
.App[data-client-id="multicode"] .primaryContent .CreateClass .Instructions,
.App[data-client-id="Multi Code Academy"] .primaryContent .CreateClass .Instructions,
.App[data-client-id="multicode"] .primaryContent .Upgrade .Instructions,
.App[data-client-id="Multi Code Academy"] .primaryContent .Upgrade .Instructions {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="multicode"] .primaryContent .ClassList .CreateClassButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .ClassList .CreateClassButton,
.App[data-client-id="multicode"] .primaryContent .Courses .CreateClassButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .Courses .CreateClassButton {
  background-color: #fe8d1b !important;
  border-color: #fe8d1b !important;
}
.App[data-client-id="multicode"] .primaryContent .ManagementInterface .Panel .PanelContent,
.App[data-client-id="Multi Code Academy"] .primaryContent .ManagementInterface .Panel .PanelContent,
.App[data-client-id="multicode"] .primaryContent .ManageUser .Panel .PanelContent,
.App[data-client-id="Multi Code Academy"] .primaryContent .ManageUser .Panel .PanelContent,
.App[data-client-id="multicode"] .primaryContent .ClassList .Panel .PanelContent,
.App[data-client-id="Multi Code Academy"] .primaryContent .ClassList .Panel .PanelContent,
.App[data-client-id="multicode"] .primaryContent .Courses .Panel .PanelContent,
.App[data-client-id="Multi Code Academy"] .primaryContent .Courses .Panel .PanelContent {
  border: 1px solid #fe8d1b !important;
  box-shadow: 0px 3px 5px rgba(187, 187, 187, 0.7) !important;
}
.App[data-client-id="multicode"] .primaryContent .CreateClass .CreateButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .CreateClass .CreateButton {
  background-color: #fe8d1b !important;
  border-color: #fe8d1b !important;
  color: #ffffff !important;
}
.App[data-client-id="multicode"] .primaryContent .CreateClass .CreateButton:disabled,
.App[data-client-id="Multi Code Academy"] .primaryContent .CreateClass .CreateButton:disabled {
  opacity: 0.5 !important;
}
.App[data-client-id="multicode"] .primaryContent .TabbedPanel .TabBarContainer .TabBar .tabButton,
.App[data-client-id="Multi Code Academy"] .primaryContent .TabbedPanel .TabBarContainer .TabBar .tabButton {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="multicode"] .HomePage,
.App[data-client-id="Multi Code Academy"] .HomePage {
  background-image: unset !important;
}
.App[data-client-id="multicode"] .HomePage .MasterFormContent .ResetPasswordButton,
.App[data-client-id="Multi Code Academy"] .HomePage .MasterFormContent .ResetPasswordButton,
.App[data-client-id="multicode"] .HomePage .MasterFormContent .LoginButton,
.App[data-client-id="Multi Code Academy"] .HomePage .MasterFormContent .LoginButton {
  border-color: #cccccc !important;
  background-color: #cccccc !important;
}
.App[data-client-id="multicode"] .HomePage .ForgotPasswordButtons .FinishedForgotPassword,
.App[data-client-id="Multi Code Academy"] .HomePage .ForgotPasswordButtons .FinishedForgotPassword,
.App[data-client-id="multicode"] .HomePage .ForgotPasswordButtons .SendForgotPasswordButton,
.App[data-client-id="Multi Code Academy"] .HomePage .ForgotPasswordButtons .SendForgotPasswordButton {
  background-color: #cccccc !important;
}
.App[data-client-id="multicode"] .HomePage.MobileVersion .verticalLine,
.App[data-client-id="Multi Code Academy"] .HomePage.MobileVersion .verticalLine {
  background-color: #cccccc !important;
}
.App[data-client-id="multicode"] .HomePage.MobileVersion .wrapper .title,
.App[data-client-id="Multi Code Academy"] .HomePage.MobileVersion .wrapper .title {
  color: #fe8d1b !important;
}
.App[data-client-id="multicode"] .HomePage.MobileVersion .wrapper .cornerRounder,
.App[data-client-id="Multi Code Academy"] .HomePage.MobileVersion .wrapper .cornerRounder {
  background-color: #cccccc !important;
}
.App[data-client-id="multicode"] .MainMenu,
.App[data-client-id="Multi Code Academy"] .MainMenu {
  background-color: #ffffff !important;
}
.App[data-client-id="multicode"] .MainMenu .Logo .LogoButton,
.App[data-client-id="Multi Code Academy"] .MainMenu .Logo .LogoButton {
  border-color: #ffffff !important;
  background-color: #ffffff !important;
}
.App[data-client-id="multicode"] .MainMenu .Logo .LogoButton:hover,
.App[data-client-id="Multi Code Academy"] .MainMenu .Logo .LogoButton:hover {
  background-color: rgba(197, 197, 197, 0.15) !important;
}
.App[data-client-id="multicode"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage,
.App[data-client-id="Multi Code Academy"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage {
  width: 150px !important;
  padding: 5px !important;
  height: unset !important;
  border-radius: unset !important;
  background-color: unset !important;
}
.App[data-client-id="multicode"] .MainMenu .topLoginText,
.App[data-client-id="Multi Code Academy"] .MainMenu .topLoginText {
  color: #222222 !important;
}
.App[data-client-id="multicode"] .MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoData,
.App[data-client-id="Multi Code Academy"] .MainMenu .ExtraUserInfo .ExtraUserInfoCell .ExtraUserInfoData {
  color: #222222 !important;
}
.App[data-client-id="multicode"] .MainMenu .NameBoxCell .NameBox,
.App[data-client-id="Multi Code Academy"] .MainMenu .NameBoxCell .NameBox {
  border-color: #ffffff !important;
  background-color: #ffffff !important;
}
.App[data-client-id="multicode"] .MainMenu .NameBoxCell .NameBox:hover,
.App[data-client-id="Multi Code Academy"] .MainMenu .NameBoxCell .NameBox:hover {
  background-color: rgba(197, 197, 197, 0.15) !important;
}
.App[data-client-id="multicode"] .MainMenu .NameBoxCell .NameBox .NameBoxLabel,
.App[data-client-id="Multi Code Academy"] .MainMenu .NameBoxCell .NameBox .NameBoxLabel {
  color: #222222 !important;
}
.App[data-client-id="multicode"] .MainMenu .NameBoxCell .NameBox .DButtonCaret,
.App[data-client-id="Multi Code Academy"] .MainMenu .NameBoxCell .NameBox .DButtonCaret {
  color: #222222 !important;
}
.App[data-client-id="multicode"] .MainMenu .RequestQuoteButton,
.App[data-client-id="Multi Code Academy"] .MainMenu .RequestQuoteButton,
.App[data-client-id="multicode"] .MainMenu .UpgradeButton,
.App[data-client-id="Multi Code Academy"] .MainMenu .UpgradeButton,
.App[data-client-id="multicode"] .MainMenu .SupportButton,
.App[data-client-id="Multi Code Academy"] .MainMenu .SupportButton {
  background-color: #fe8d1b !important;
  border-color: #fe8d1b !important;
}
.App[data-client-id="multicode"] .btn-sideBar:active,
.App[data-client-id="Multi Code Academy"] .btn-sideBar:active,
.App[data-client-id="multicode"] .btn-sideBar.active,
.App[data-client-id="Multi Code Academy"] .btn-sideBar.active {
  background-color: #2591fe !important;
}
.App[data-client-id="multicode"] .progress-bar,
.App[data-client-id="Multi Code Academy"] .progress-bar {
  background-color: #1b8cfe !important;
}
.App[data-client-id="multicode"] .btn-general-achievements,
.App[data-client-id="Multi Code Academy"] .btn-general-achievements {
  background-color: #fe8d1b !important;
}
.App[data-client-id="multicode"] .PageTitle,
.App[data-client-id="Multi Code Academy"] .PageTitle {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="multicode"] .TabbedPanel .tabContentWrapper,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .tabContentWrapper {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="multicode"] .TabbedPanel .TabBar .tabButton,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .TabBar .tabButton,
.App[data-client-id="multicode"] .TabbedPanel .StickyBar .tabButton,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .StickyBar .tabButton {
  background-color: rgba(128, 128, 128, 0.09);
  border-top: 1px solid rgba(111, 111, 111, 0.15);
  border-right: 1px solid rgba(111, 111, 111, 0.15);
  border-left: 1px solid rgba(111, 111, 111, 0.15);
}
.App[data-client-id="multicode"] .TabbedPanel .TabBar .tabButton.active,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .TabBar .tabButton.active,
.App[data-client-id="multicode"] .TabbedPanel .StickyBar .tabButton.active,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .StickyBar .tabButton.active,
.App[data-client-id="multicode"] .TabbedPanel .TabBar .tabButton:active,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .TabBar .tabButton:active,
.App[data-client-id="multicode"] .TabbedPanel .StickyBar .tabButton:active,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .StickyBar .tabButton:active {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="multicode"] .TabbedPanel .TabBar .tabButton.active:hover,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .TabBar .tabButton.active:hover,
.App[data-client-id="multicode"] .TabbedPanel .StickyBar .tabButton.active:hover,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .StickyBar .tabButton.active:hover {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="multicode"] .TabbedPanel .TabBar .tabButton:hover,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .TabBar .tabButton:hover,
.App[data-client-id="multicode"] .TabbedPanel .StickyBar .tabButton:hover,
.App[data-client-id="Multi Code Academy"] .TabbedPanel .StickyBar .tabButton:hover {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="multicode"] .tableContentWrapper,
.App[data-client-id="Multi Code Academy"] .tableContentWrapper {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="levelup"] .primaryContent,
.App[data-client-id="Level Up Learning Centers"] .primaryContent {
  background-color: #ececec !important;
  background-image: unset !important;
}
.App[data-client-id="levelup"] .primaryContent .DashboardSideBar .SideBarPanel,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .DashboardSideBar .SideBarPanel {
  background-color: #19566e !important;
}
.App[data-client-id="levelup"] .primaryContent .SideBarToggleBar,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SideBarToggleBar {
  background-color: #19566e !important;
  border: 1px solid #19566e !important;
}
.App[data-client-id="levelup"] .primaryContent .SideBarToggleBar .SideBarToggleHandle,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SideBarToggleBar .SideBarToggleHandle {
  background-color: #19566e !important;
  border: 1px solid #19566e !important;
}
.App[data-client-id="levelup"] .primaryContent .SuccessForm .SuccessFormButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SuccessForm .SuccessFormButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .HomePageVersion,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .HomePageVersion {
  color: #000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="levelup"] .primaryContent .MasterForm .MasterFormContent,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .MasterForm .MasterFormContent {
  border: 1px solid #237797 !important;
  box-shadow: 0px 3px 5px rgba(187, 187, 187, 0.7) !important;
}
.App[data-client-id="levelup"] .primaryContent .MasterForm .MasterFormContent .MasterFormBrand img,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .MasterForm .MasterFormContent .MasterFormBrand img {
  left: -45px;
  position: relative;
}
.App[data-client-id="levelup"] .primaryContent .MasterForm .MasterFormContent .MasterFormNavigationButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .MasterForm .MasterFormContent .MasterFormNavigationButton {
  color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .MasterForm.ThinMasterForm .MasterFormContent .MasterFormBrand img,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .MasterForm.ThinMasterForm .MasterFormContent .MasterFormBrand img {
  left: -2px;
  position: relative;
}
.App[data-client-id="levelup"] .primaryContent .SignUp,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SignUp {
  background-image: unset !important;
}
.App[data-client-id="levelup"] .primaryContent .SignUp .MasterFormContent .MasterFormNavigationButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SignUp .MasterFormContent .MasterFormNavigationButton {
  color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .SignUp .SignUpForm .SignUpButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SignUp .SignUpForm .SignUpButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .SignUp .SignUpForm .SignUpCheckBox .MuiCheckbox-colorPrimary.Mui-checked,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SignUp .SignUpForm .SignUpCheckBox .MuiCheckbox-colorPrimary.Mui-checked {
  color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .SignUp .ClassCodeSignUpForm .ClassCodeSignUpButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SignUp .ClassCodeSignUpForm .ClassCodeSignUpButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .SignUp .SelectUserAge .SelectUserAgeSubmitButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .SignUp .SelectUserAge .SelectUserAgeSubmitButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .ConfirmEmail,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ConfirmEmail {
  background-image: unset !important;
}
.App[data-client-id="levelup"] .primaryContent .ConfirmEmail .ReturnToLoginButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ConfirmEmail .ReturnToLoginButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .ResetPassword,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ResetPassword {
  background-image: unset !important;
}
.App[data-client-id="levelup"] .primaryContent .ResetPassword .ResetPasswordButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ResetPassword .ResetPasswordButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .primaryContent .manageClasses .Instructions,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .manageClasses .Instructions,
.App[data-client-id="levelup"] .primaryContent .CreateClass .Instructions,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .CreateClass .Instructions,
.App[data-client-id="levelup"] .primaryContent .Upgrade .Instructions,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .Upgrade .Instructions {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="levelup"] .primaryContent .ClassList .CreateClassButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ClassList .CreateClassButton,
.App[data-client-id="levelup"] .primaryContent .Courses .CreateClassButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .Courses .CreateClassButton {
  background-color: #237797 !important;
  border-color: #237797 !important;
}
.App[data-client-id="levelup"] .primaryContent .ManagementInterface .Panel .PanelContent,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ManagementInterface .Panel .PanelContent,
.App[data-client-id="levelup"] .primaryContent .ManageUser .Panel .PanelContent,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ManageUser .Panel .PanelContent,
.App[data-client-id="levelup"] .primaryContent .ClassList .Panel .PanelContent,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .ClassList .Panel .PanelContent,
.App[data-client-id="levelup"] .primaryContent .Courses .Panel .PanelContent,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .Courses .Panel .PanelContent {
  border: 1px solid #237797 !important;
  box-shadow: 0px 3px 5px rgba(187, 187, 187, 0.7) !important;
}
.App[data-client-id="levelup"] .primaryContent .CreateClass .CreateButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .CreateClass .CreateButton {
  background-color: #237797 !important;
  border-color: #237797 !important;
  color: #ffffff !important;
}
.App[data-client-id="levelup"] .primaryContent .CreateClass .CreateButton:disabled,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .CreateClass .CreateButton:disabled {
  opacity: 0.5 !important;
}
.App[data-client-id="levelup"] .primaryContent .TabbedPanel .TabBarContainer .TabBar .tabButton,
.App[data-client-id="Level Up Learning Centers"] .primaryContent .TabbedPanel .TabBarContainer .TabBar .tabButton {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="levelup"] .HomePage,
.App[data-client-id="Level Up Learning Centers"] .HomePage {
  background-image: unset !important;
}
.App[data-client-id="levelup"] .HomePage .MasterFormContent .ResetPasswordButton,
.App[data-client-id="Level Up Learning Centers"] .HomePage .MasterFormContent .ResetPasswordButton,
.App[data-client-id="levelup"] .HomePage .MasterFormContent .LoginButton,
.App[data-client-id="Level Up Learning Centers"] .HomePage .MasterFormContent .LoginButton {
  border-color: #93c461 !important;
  background-color: #93c461 !important;
}
.App[data-client-id="levelup"] .HomePage .ForgotPasswordButtons .FinishedForgotPassword,
.App[data-client-id="Level Up Learning Centers"] .HomePage .ForgotPasswordButtons .FinishedForgotPassword,
.App[data-client-id="levelup"] .HomePage .ForgotPasswordButtons .SendForgotPasswordButton,
.App[data-client-id="Level Up Learning Centers"] .HomePage .ForgotPasswordButtons .SendForgotPasswordButton {
  background-color: #93c461 !important;
}
.App[data-client-id="levelup"] .HomePage.MobileVersion .verticalLine,
.App[data-client-id="Level Up Learning Centers"] .HomePage.MobileVersion .verticalLine {
  background-color: #93c461 !important;
}
.App[data-client-id="levelup"] .HomePage.MobileVersion .wrapper .title,
.App[data-client-id="Level Up Learning Centers"] .HomePage.MobileVersion .wrapper .title {
  color: #237797 !important;
}
.App[data-client-id="levelup"] .HomePage.MobileVersion .wrapper .cornerRounder,
.App[data-client-id="Level Up Learning Centers"] .HomePage.MobileVersion .wrapper .cornerRounder {
  background-color: #93c461 !important;
}
.App[data-client-id="levelup"] .MainMenu,
.App[data-client-id="Level Up Learning Centers"] .MainMenu {
  background-color: #237797 !important;
}
.App[data-client-id="levelup"] .MainMenu .Logo .LogoButton,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .Logo .LogoButton {
  border-color: #237797 !important;
  background-color: #237797 !important;
}
.App[data-client-id="levelup"] .MainMenu .Logo .LogoButton:hover,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .Logo .LogoButton:hover {
  background-color: rgba(197, 197, 197, 0.15) !important;
}
.App[data-client-id="levelup"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage {
  width: 150px !important;
  padding: 5px !important;
  height: unset !important;
  border-radius: unset !important;
  background-color: unset !important;
}
.App[data-client-id="levelup"] .MainMenu .NameBoxCell .NameBox,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .NameBoxCell .NameBox {
  border-color: #237797 !important;
  background-color: #237797 !important;
}
.App[data-client-id="levelup"] .MainMenu .NameBoxCell .NameBox:hover,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .NameBoxCell .NameBox:hover {
  background-color: rgba(197, 197, 197, 0.15) !important;
}
.App[data-client-id="levelup"] .MainMenu .RequestQuoteButton,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .RequestQuoteButton,
.App[data-client-id="levelup"] .MainMenu .UpgradeButton,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .UpgradeButton,
.App[data-client-id="levelup"] .MainMenu .SupportButton,
.App[data-client-id="Level Up Learning Centers"] .MainMenu .SupportButton {
  background-color: #93c461 !important;
  border-color: #93c461 !important;
}
.App[data-client-id="levelup"] .btn-sideBar:active,
.App[data-client-id="Level Up Learning Centers"] .btn-sideBar:active,
.App[data-client-id="levelup"] .btn-sideBar.active,
.App[data-client-id="Level Up Learning Centers"] .btn-sideBar.active {
  background-color: #93c461 !important;
}
.App[data-client-id="levelup"] .progress-bar,
.App[data-client-id="Level Up Learning Centers"] .progress-bar {
  background-color: #93c461 !important;
}
.App[data-client-id="levelup"] .btn-general-achievements,
.App[data-client-id="Level Up Learning Centers"] .btn-general-achievements {
  background-color: #237797 !important;
}
.App[data-client-id="levelup"] .PageTitle,
.App[data-client-id="Level Up Learning Centers"] .PageTitle {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="levelup"] .TabbedPanel .tabContentWrapper,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .tabContentWrapper {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="levelup"] .TabbedPanel .TabBar .tabButton,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .TabBar .tabButton,
.App[data-client-id="levelup"] .TabbedPanel .StickyBar .tabButton,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .StickyBar .tabButton {
  background-color: rgba(128, 128, 128, 0.09);
  border-top: 1px solid rgba(111, 111, 111, 0.15);
  border-right: 1px solid rgba(111, 111, 111, 0.15);
  border-left: 1px solid rgba(111, 111, 111, 0.15);
}
.App[data-client-id="levelup"] .TabbedPanel .TabBar .tabButton.active,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .TabBar .tabButton.active,
.App[data-client-id="levelup"] .TabbedPanel .StickyBar .tabButton.active,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .StickyBar .tabButton.active,
.App[data-client-id="levelup"] .TabbedPanel .TabBar .tabButton:active,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .TabBar .tabButton:active,
.App[data-client-id="levelup"] .TabbedPanel .StickyBar .tabButton:active,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .StickyBar .tabButton:active {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="levelup"] .TabbedPanel .TabBar .tabButton.active:hover,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .TabBar .tabButton.active:hover,
.App[data-client-id="levelup"] .TabbedPanel .StickyBar .tabButton.active:hover,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .StickyBar .tabButton.active:hover {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="levelup"] .TabbedPanel .TabBar .tabButton:hover,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .TabBar .tabButton:hover,
.App[data-client-id="levelup"] .TabbedPanel .StickyBar .tabButton:hover,
.App[data-client-id="Level Up Learning Centers"] .TabbedPanel .StickyBar .tabButton:hover {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="levelup"] .tableContentWrapper,
.App[data-client-id="Level Up Learning Centers"] .tableContentWrapper {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .primaryContent,
.App[data-client-id="COMPETITIONS"] .primaryContent {
  background-color: #cbcbcb !important;
  background-image: url("/assets/general/background-pattern.png") !important;
  background-repeat: repeat !important;
  background-size: initial !important;
}
.App[data-client-id="compete"] .primaryContent .DashboardSideBar .SideBarPanel,
.App[data-client-id="COMPETITIONS"] .primaryContent .DashboardSideBar .SideBarPanel {
  background-color: #5d4055 !important;
}
.App[data-client-id="compete"] .primaryContent .DashboardSideBar .SideBarPanel .DashboardSideBarFull.active,
.App[data-client-id="COMPETITIONS"] .primaryContent .DashboardSideBar .SideBarPanel .DashboardSideBarFull.active {
  background-color: #8a5f7e !important;
}
.App[data-client-id="compete"] .SignUp .MasterForm .MasterFormHeader,
.App[data-client-id="COMPETITIONS"] .SignUp .MasterForm .MasterFormHeader,
.App[data-client-id="compete"] .HomePage .MasterForm .MasterFormHeader,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterForm .MasterFormHeader {
  display: block;
}
.App[data-client-id="compete"] .SignUp .MasterForm .MasterFormHeader .MasterFormBrand,
.App[data-client-id="COMPETITIONS"] .SignUp .MasterForm .MasterFormHeader .MasterFormBrand,
.App[data-client-id="compete"] .HomePage .MasterForm .MasterFormHeader .MasterFormBrand,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterForm .MasterFormHeader .MasterFormBrand {
  background-color: #fc847c;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}
.App[data-client-id="compete"] .SignUp .MasterForm .MasterFormHeader .MasterFormBrand > img,
.App[data-client-id="COMPETITIONS"] .SignUp .MasterForm .MasterFormHeader .MasterFormBrand > img,
.App[data-client-id="compete"] .HomePage .MasterForm .MasterFormHeader .MasterFormBrand > img,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterForm .MasterFormHeader .MasterFormBrand > img {
  height: 165px;
  position: relative;
  top: 18px;
}
.App[data-client-id="compete"] .SignUp .MasterForm .MasterFormNavigation .MasterFormNavigationButton,
.App[data-client-id="COMPETITIONS"] .SignUp .MasterForm .MasterFormNavigation .MasterFormNavigationButton,
.App[data-client-id="compete"] .HomePage .MasterForm .MasterFormNavigation .MasterFormNavigationButton,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterForm .MasterFormNavigation .MasterFormNavigationButton {
  color: #da1205;
}
.App[data-client-id="compete"] .SignUp .CompetitionSignUpForm .MuiInput-underline:after,
.App[data-client-id="COMPETITIONS"] .SignUp .CompetitionSignUpForm .MuiInput-underline:after {
  border-bottom: 2px solid #fc847c;
}
.App[data-client-id="compete"] .SignUp .CompetitionSignUpForm .MuiFormLabel-root.Mui-focused,
.App[data-client-id="COMPETITIONS"] .SignUp .CompetitionSignUpForm .MuiFormLabel-root.Mui-focused {
  color: #da1205;
}
.App[data-client-id="compete"] .SignUp .CompetitionSignUpForm .MuiInputLabel-asterisk,
.App[data-client-id="COMPETITIONS"] .SignUp .CompetitionSignUpForm .MuiInputLabel-asterisk {
  color: #fc847c !important;
}
.App[data-client-id="compete"] .SignUp .CompetitionSignUpForm .ClassCodeSignUpButtonContainer .ClassCodeSignUpButton:not(.Mui-disabled),
.App[data-client-id="COMPETITIONS"] .SignUp .CompetitionSignUpForm .ClassCodeSignUpButtonContainer .ClassCodeSignUpButton:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.App[data-client-id="compete"] .HomePage,
.App[data-client-id="COMPETITIONS"] .HomePage {
  background: unset !important;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .LoginFormPassword,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .LoginFormPassword {
  margin-top: 0.75rem !important;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .MuiInput-underline:after,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .MuiInput-underline:after {
  border-bottom: 2px solid #fc847c;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .MuiFormLabel-root.Mui-focused,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .MuiFormLabel-root.Mui-focused {
  color: #da1205;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .MuiInputLabel-asterisk,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .MuiInputLabel-asterisk {
  color: #fc847c !important;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .LoginButtonContainer,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .LoginButtonContainer {
  margin-top: 3rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .LoginButtonContainer .LoginButton,
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .LoginButtonContainer .LoginButton {
  width: 200px !important;
  margin: 0 !important;
}
.App[data-client-id="compete"] .HomePage .MasterFormSubForm.Login .LoginButtonContainer .LoginButton:not(.Mui-disabled),
.App[data-client-id="COMPETITIONS"] .HomePage .MasterFormSubForm.Login .LoginButtonContainer .LoginButton:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.App[data-client-id="compete"] .MainMenu,
.App[data-client-id="COMPETITIONS"] .MainMenu {
  background-color: #fc847c !important;
}
.App[data-client-id="compete"] .MainMenu .Logo .LogoButton,
.App[data-client-id="COMPETITIONS"] .MainMenu .Logo .LogoButton {
  border-color: #fc847c !important;
  background-color: #fc847c !important;
}
.App[data-client-id="compete"] .MainMenu .Logo .LogoButton:hover,
.App[data-client-id="COMPETITIONS"] .MainMenu .Logo .LogoButton:hover {
  background-color: rgba(197, 197, 197, 0.15) !important;
}
.App[data-client-id="compete"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage,
.App[data-client-id="COMPETITIONS"] .MainMenu .Logo .LogoButton .LogoLabel .LogoImage {
  width: 150px !important;
  padding: 5px !important;
  height: unset !important;
  border-radius: unset !important;
  background-color: unset !important;
}
.App[data-client-id="compete"] .MainMenu .NameBoxCell .NameBox,
.App[data-client-id="COMPETITIONS"] .MainMenu .NameBoxCell .NameBox {
  border-color: #fc847c !important;
  background-color: #fc847c !important;
  color: #2a363b !important;
}
.App[data-client-id="compete"] .MainMenu .NameBoxCell .NameBox:hover,
.App[data-client-id="COMPETITIONS"] .MainMenu .NameBoxCell .NameBox:hover {
  background-color: rgba(197, 197, 197, 0.15) !important;
}
.App[data-client-id="compete"] .MainMenu .RequestQuoteButton,
.App[data-client-id="COMPETITIONS"] .MainMenu .RequestQuoteButton,
.App[data-client-id="compete"] .MainMenu .UpgradeButton,
.App[data-client-id="COMPETITIONS"] .MainMenu .UpgradeButton,
.App[data-client-id="compete"] .MainMenu .SupportButton,
.App[data-client-id="COMPETITIONS"] .MainMenu .SupportButton {
  border: 1px solid #2a363b !important;
  background-color: transparent !important;
  color: #2a363b !important;
  box-shadow: none !important;
}
.App[data-client-id="compete"] .PageTitle,
.App[data-client-id="COMPETITIONS"] .PageTitle {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="compete"] .MyProfile .AchievementProgress,
.App[data-client-id="COMPETITIONS"] .MyProfile .AchievementProgress {
  display: none !important;
}
.App[data-client-id="compete"] .MyProfile .AchievementProgress + .ProfileContainer,
.App[data-client-id="COMPETITIONS"] .MyProfile .AchievementProgress + .ProfileContainer {
  margin-top: 0;
}
.App[data-client-id="compete"] .MyProfile .MuiInput-underline:after,
.App[data-client-id="COMPETITIONS"] .MyProfile .MuiInput-underline:after {
  border-bottom: 2px solid #fc847c;
}
.App[data-client-id="compete"] .MyProfile .MuiFormLabel-root.Mui-focused,
.App[data-client-id="COMPETITIONS"] .MyProfile .MuiFormLabel-root.Mui-focused {
  color: #da1205;
}
.App[data-client-id="compete"] .MyProfile .MuiInputLabel-asterisk,
.App[data-client-id="COMPETITIONS"] .MyProfile .MuiInputLabel-asterisk {
  color: #fc847c !important;
}
.App[data-client-id="compete"] .MyProfile .UpdateProfileButton:not(.Mui-disabled),
.App[data-client-id="COMPETITIONS"] .MyProfile .UpdateProfileButton:not(.Mui-disabled) {
  color: #2a363b;
  background-color: #fc847c;
}
.App[data-client-id="compete"] .CoursePage .CreateClassButton,
.App[data-client-id="COMPETITIONS"] .CoursePage .CreateClassButton {
  background-color: #fc847c !important;
  border-color: #fc847c !important;
  color: #2a363b !important;
}
.App[data-client-id="compete"] .AchievementProgressPanel .btn-general-achievements,
.App[data-client-id="COMPETITIONS"] .AchievementProgressPanel .btn-general-achievements {
  background-color: #fc847c !important;
  border-color: #fc847c !important;
  color: #2a363b !important;
  text-shadow: none !important;
}
.App[data-client-id="compete"] .ManagementInterface .Panel .PanelContent,
.App[data-client-id="COMPETITIONS"] .ManagementInterface .Panel .PanelContent,
.App[data-client-id="compete"] .ManageUser .Panel .PanelContent,
.App[data-client-id="COMPETITIONS"] .ManageUser .Panel .PanelContent,
.App[data-client-id="compete"] .ClassList .Panel .PanelContent,
.App[data-client-id="COMPETITIONS"] .ClassList .Panel .PanelContent,
.App[data-client-id="compete"] .Courses .Panel .PanelContent,
.App[data-client-id="COMPETITIONS"] .Courses .Panel .PanelContent {
  border: 1px solid #bababa !important;
  box-shadow: 0px 3px 5px rgba(187, 187, 187, 0.7) !important;
}
.App[data-client-id="compete"] .ManagementInterface .CreateClassButton,
.App[data-client-id="COMPETITIONS"] .ManagementInterface .CreateClassButton,
.App[data-client-id="compete"] .ManageUser .CreateClassButton,
.App[data-client-id="COMPETITIONS"] .ManageUser .CreateClassButton,
.App[data-client-id="compete"] .ClassList .CreateClassButton,
.App[data-client-id="COMPETITIONS"] .ClassList .CreateClassButton,
.App[data-client-id="compete"] .Courses .CreateClassButton,
.App[data-client-id="COMPETITIONS"] .Courses .CreateClassButton {
  background-color: #fc847c !important;
  border-color: #fc847c !important;
  color: #2a363b !important;
}
.App[data-client-id="compete"] .CreateClass .CreateButton,
.App[data-client-id="COMPETITIONS"] .CreateClass .CreateButton {
  background-color: #fc847c !important;
  border-color: #fc847c !important;
  color: #ffffff !important;
}
.App[data-client-id="compete"] .CreateClass .CreateButton:disabled,
.App[data-client-id="COMPETITIONS"] .CreateClass .CreateButton:disabled {
  opacity: 0.5 !important;
}
.App[data-client-id="compete"] .manageClasses .ManageClassAddStudentsButton .MuiButton-root,
.App[data-client-id="COMPETITIONS"] .manageClasses .ManageClassAddStudentsButton .MuiButton-root {
  background-color: #fc847c !important;
  border-color: #fc847c !important;
  color: #ffffff !important;
}
.App[data-client-id="compete"] .TabbedPanel .TabBarContainer .TabBar .tabButton,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .TabBarContainer .TabBar .tabButton {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="compete"] .btn-sideBar:active,
.App[data-client-id="COMPETITIONS"] .btn-sideBar:active,
.App[data-client-id="compete"] .btn-sideBar.active,
.App[data-client-id="COMPETITIONS"] .btn-sideBar.active {
  background-color: #63445b !important;
}
.App[data-client-id="compete"] .progress-bar,
.App[data-client-id="COMPETITIONS"] .progress-bar {
  background-color: #5d4055 !important;
}
.App[data-client-id="compete"] .btn-general-achievements,
.App[data-client-id="COMPETITIONS"] .btn-general-achievements {
  background-color: #fc847c !important;
}
.App[data-client-id="compete"] .PageTitle,
.App[data-client-id="COMPETITIONS"] .PageTitle {
  color: #000000 !important;
  text-shadow: unset !important;
}
.App[data-client-id="compete"] .TabbedPanel .tabContentWrapper,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .tabContentWrapper {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .TabbedPanel .TabBar .tabButton,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .TabBar .tabButton,
.App[data-client-id="compete"] .TabbedPanel .StickyBar .tabButton,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .StickyBar .tabButton {
  background-color: rgba(128, 128, 128, 0.09);
  border-top: 1px solid rgba(111, 111, 111, 0.15);
  border-right: 1px solid rgba(111, 111, 111, 0.15);
  border-left: 1px solid rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .TabbedPanel .TabBar .tabButton.active,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .TabBar .tabButton.active,
.App[data-client-id="compete"] .TabbedPanel .StickyBar .tabButton.active,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .StickyBar .tabButton.active,
.App[data-client-id="compete"] .TabbedPanel .TabBar .tabButton:active,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .TabBar .tabButton:active,
.App[data-client-id="compete"] .TabbedPanel .StickyBar .tabButton:active,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .StickyBar .tabButton:active {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .TabbedPanel .TabBar .tabButton.active:hover,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .TabBar .tabButton.active:hover,
.App[data-client-id="compete"] .TabbedPanel .StickyBar .tabButton.active:hover,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .StickyBar .tabButton.active:hover {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .TabbedPanel .TabBar .tabButton:hover,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .TabBar .tabButton:hover,
.App[data-client-id="compete"] .TabbedPanel .StickyBar .tabButton:hover,
.App[data-client-id="COMPETITIONS"] .TabbedPanel .StickyBar .tabButton:hover {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .tableContentWrapper,
.App[data-client-id="COMPETITIONS"] .tableContentWrapper {
  background-color: rgba(111, 111, 111, 0.15);
}
.App[data-client-id="compete"] .EmptyResults .EmptyText,
.App[data-client-id="COMPETITIONS"] .EmptyResults .EmptyText {
  color: #2a363b !important;
}
.App[data-client-id="compete"] .Pager,
.App[data-client-id="COMPETITIONS"] .Pager {
  background-color: #5d4055 !important;
}
.App[data-client-id="compete"] .resultsPerPageSelect .Select-control,
.App[data-client-id="COMPETITIONS"] .resultsPerPageSelect .Select-control {
  background-color: #5d4055 !important;
  color: white !important;
  text-shadow: none !important;
}
.App[data-client-id="compete"] .ColumnSelection,
.App[data-client-id="COMPETITIONS"] .ColumnSelection {
  background-color: #5d4055 !important;
  color: white !important;
  text-shadow: none !important;
}

